From a46521ed85a9abd1b0951ed1c6d833090b43df3d Mon Sep 17 00:00:00 2001 From: harrydb Date: Mon, 23 Dec 2019 12:47:32 +0000 Subject: [PATCH 01/10] Making some progress --- .../companieshouse/CompaniesHouseProxy.kt | 8 +- ...paniesHouseDocumentHttpMessageConverter.kt | 2 +- .../domain/CompaniesHouseFilingHistoryList.kt | 1 + .../companyinfo/CompanyInfoTest.kt | 64 + .../domain/CompanyInfoCompanyDataParseTest.kt | 72 + .../src/test/resources/soap_doclit.wsdl.xml | 17812 ++++++++++++++++ 6 files changed, 17954 insertions(+), 5 deletions(-) create mode 100644 company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyInfoTest.kt create mode 100644 company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyInfoCompanyDataParseTest.kt create mode 100644 company-data-finder-lib/src/test/resources/soap_doclit.wsdl.xml diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/CompaniesHouseProxy.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/CompaniesHouseProxy.kt index 871ae6e..5401fb2 100644 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/CompaniesHouseProxy.kt +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/CompaniesHouseProxy.kt @@ -10,11 +10,11 @@ import org.springframework.http.client.SimpleClientHttpRequestFactory import org.springframework.web.client.RestTemplate import org.suggs.companydatafinderlib.companieshouse.converters.CompaniesHouseDocumentHttpMessageConverter import org.suggs.companydatafinderlib.companieshouse.domain.CompaniesHouseCompanyProfile -import org.suggs.companydatafinderlib.companieshouse.domain.CompaniesHouseDocument +import org.suggs.companydatafinderlib.companyinfo.CompaniesHouseDocument import org.suggs.companydatafinderlib.companieshouse.domain.CompaniesHouseDocumentMetadata -import org.suggs.companydatafinderlib.companieshouse.domain.CompaniesHouseFilingHistoryList -import org.suggs.companydatafinderlib.companieshouse.interceptors.CompaniesHouseAuthInterceptor -import org.suggs.companydatafinderlib.companieshouse.interceptors.RequestResponseLoggingInterceptor +import org.suggs.companydatafinderlib.companyinfo.CompaniesHouseFilingHistoryList +import org.suggs.companydatafinderlib.companyinfo.interceptors.CompaniesHouseAuthInterceptor +import org.suggs.companydatafinderlib.companyinfo.interceptors.RequestResponseLoggingInterceptor class CompaniesHouseProxy(private val authUsername: String) { diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/converters/CompaniesHouseDocumentHttpMessageConverter.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/converters/CompaniesHouseDocumentHttpMessageConverter.kt index 43eb82b..c7aa558 100644 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/converters/CompaniesHouseDocumentHttpMessageConverter.kt +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/converters/CompaniesHouseDocumentHttpMessageConverter.kt @@ -5,7 +5,7 @@ import org.springframework.http.HttpOutputMessage import org.springframework.http.MediaType import org.springframework.http.converter.AbstractHttpMessageConverter import org.springframework.util.StreamUtils -import org.suggs.companydatafinderlib.companieshouse.domain.CompaniesHouseDocument +import org.suggs.companydatafinderlib.companyinfo.CompaniesHouseDocument import java.io.ByteArrayOutputStream diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/domain/CompaniesHouseFilingHistoryList.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/domain/CompaniesHouseFilingHistoryList.kt index da113c0..fe38caf 100644 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/domain/CompaniesHouseFilingHistoryList.kt +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/domain/CompaniesHouseFilingHistoryList.kt @@ -3,6 +3,7 @@ package org.suggs.companydatafinderlib.companieshouse.domain import com.fasterxml.jackson.annotation.JsonIgnoreProperties import com.fasterxml.jackson.annotation.JsonInclude import com.fasterxml.jackson.annotation.JsonProperty +import org.suggs.companydatafinderlib.companyinfo.FilingHistoryItem import java.util.* /** diff --git a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyInfoTest.kt b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyInfoTest.kt new file mode 100644 index 0000000..89902f1 --- /dev/null +++ b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyInfoTest.kt @@ -0,0 +1,64 @@ +package org.suggs.companydatafinderlib.companyinfo + +import org.assertj.core.api.Assertions.assertThat +import org.junit.jupiter.api.DisplayName +import org.junit.jupiter.api.Test +import org.slf4j.LoggerFactory +import org.yaml.snakeyaml.Yaml + +@DisplayName("Companyinfo Proxy allows us to") +class CompanyInfoTest { + + private val log = LoggerFactory.getLogger(this::class.java) + private val config = loadConfig() + private var companyinfo = CompanyinfoProxy(config.get("auth")) + + @Test fun `retrieve data using ID`() { + val companyData = companyinfo.getCompanyDataFor("02868209") + log.debug("Companies House Data: $companyData") + assertThat(companyData).isNotNull + } + + @Test fun `retrieve incorporation filing history using companies house ID`() { + val filingHistory = companyinfo.getCompanyFilingHistoryFor("02868209", "incorporation") + log.debug("Filing History: $filingHistory") + assertThat(filingHistory).isNotNull + } + + @Test fun `retrieves address filing history using companies house ID`() { + val filingHistory = companyinfo.getCompanyFilingHistoryFor("02868209", "address") + log.debug("Filing History: $filingHistory") + assertThat(filingHistory).isNotNull + } + + @Test fun `read document metadata from the last filed incorporation information to retrieve the document`() { + val document = companyinfo.getLatestFiledDocumentForCategory("02868209", "incorporation") + log.debug(document.toString()) + //document.writeTo("/tmp/02868209-incorporation.pdf") + } + + @Test fun `read document metadata from the last filed address information to retrieve the document`() { + val document = companyinfo.getLatestFiledDocumentForCategory("02868209", "address") + log.debug(document.toString()) + //document.writeTo("/tmp/02868209-address.pdf") + } + + @Test fun `read a document from companies house`() { + val document = companyinfo.getDocumentFor("https://document-api.companieshouse.gov.uk/document/lakwoqyUeDVLMpj-Xg6XbD0C318iqLfKE-W0pG3npgY/content") + assertThat(document.contentLength).isGreaterThan(0) + log.debug(document.toString()) + } + + private fun loadConfig(): AppConfig { + return AppConfig(Yaml().load(this.javaClass.classLoader.getResourceAsStream("application.yml"))) + } +} + +data class AppConfig(val configData: Map) { + fun get(key: String): String { + return when (val data = configData[key]) { + null -> throw IllegalStateException("Could not locate configuration data for key: $key") + else -> data + } + } +} \ No newline at end of file diff --git a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyInfoCompanyDataParseTest.kt b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyInfoCompanyDataParseTest.kt new file mode 100644 index 0000000..654abc2 --- /dev/null +++ b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyInfoCompanyDataParseTest.kt @@ -0,0 +1,72 @@ +package org.suggs.companydatafinderlib.companyinfo.domain + +import com.fasterxml.jackson.databind.ObjectMapper +import com.fasterxml.jackson.module.kotlin.KotlinModule +import com.fasterxml.jackson.module.kotlin.readValue +import org.assertj.core.api.Assertions.assertThat +import org.junit.jupiter.api.Assertions.assertAll +import org.junit.jupiter.api.DisplayName +import org.junit.jupiter.api.Test +import org.junit.jupiter.api.function.Executable +import org.slf4j.LoggerFactory + +@DisplayName("Companyinfo Response contains company data directly from KVK") +class CompanyInfoCompanyDataParseTest { + + private val JSON = """{ + |"company_number":"00000006", + |"date_of_creation":"1862-10-25", + |"last_full_members_list_date":"1986-07-02", + |"type":"private-unlimited-nsc", + |"jurisdiction":"england-wales", + |"company_name":"MARINE AND GENERAL MUTUAL LIFE ASSURANCE SOCIETY", + |"registered_office_address":{ + |"postal_code":"EC4N 6AF", + |"address_line_2":"78 Cannon Street", + |"country":"England", + |"address_line_1":"Cms Cameron Mckenna Llp Cannon Place", + |"locality":"London" + |}, + |"accounts":{ + |"accounting_reference_date":{ + |"month":"12", + |"day":"31" + |}, + |"last_accounts":{ + |"made_up_to":"2014-12-31", + |"type":"full", + |"period_end_on":"2014-12-31" + |} + |}, + |"sic_codes":["65110"], + |"undeliverable_registered_office_address":false, + |"has_insolvency_history":false, + |"company_status":"dissolved", + |"etag":"0f74ad6c3c366269ac39899e0939851b2ebd15e3", + |"has_charges":true, + |"links":{ + |"self":"/company/00000006", + |"filing_history":"/company/00000006/filing-history", + |"officers":"/company/00000006/officers", + |"charges":"/company/00000006/charges" + |}, + |"registered_office_is_in_dispute":false, + |"date_of_cessation":"2018-07-10", + |"can_file":false}""".trimMargin() + + private val mapper = ObjectMapper().registerModule(KotlinModule()) + private val log = LoggerFactory.getLogger(this::class.java) + + @Test + fun `can create companies house response from JSON`() { + val response = mapper.readValue(JSON) + log.debug(response.toString()) + assertAll( + Executable { assertThat(response.companyName).isNotNull() }, + Executable { assertThat(response.companyNumber).isEqualTo("00000006") }, + Executable { assertThat(response.dateOfCreation).isNotNull() }, + Executable { assertThat(response.registeredAddress).isNotNull() } + + ) + } +} \ No newline at end of file diff --git a/company-data-finder-lib/src/test/resources/soap_doclit.wsdl.xml b/company-data-finder-lib/src/test/resources/soap_doclit.wsdl.xml new file mode 100644 index 0000000..0cfd727 --- /dev/null +++ b/company-data-finder-lib/src/test/resources/soap_doclit.wsdl.xml @@ -0,0 +1,17812 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Retrieve a token with which a new account may be created via the Webview + + + + + Get the id of an account created with a token retrieved using accountGetCreationToken + + + + + Retrieve a token that can be used order account balance via the <Webview Interface> + + + + + Removes all sessions of a user, or just a single session if reactid is not 0 + + + + + Lists all the current sessions of a user + + + + + Returns the users balance + + + + + Change the user's balance + + + + + Returns the accounts balance + + + + + View users details + + + + + Edit a users details, the users current password is required + + + + + Edit details only an admin may change, such as a users nickname and password.notificationrecipients must have one of the following values: accountcontact, user, + accountcontact_and_user. Otherwise it will default to accountcontact. + + + + + Create and notify a new user + + + + + Create a WebservicesNl test user + + + + + Change a users password + + + + + Deletes a user + + + + + Activates the user and sends user login information to users email address + + + + + Returns a list of all groups the user may assign to other users + + + + + Add a user to a group + + + + + Remove a user from a group + + + + + View the account details + + + + + Edit an accounts details + + + + + Returns a list of all users in the account + + + + + Returns a list of users that are in the account and match the search phrase + + + + + Sets host restrictions for the account + + + + + Gets host restrictions for the account + + + + + Edit host restrictions for this user + + + + + View host restrictions for this user + + + + + Get an address by providing its complete postcode (including house number). This is a reeks level function. + + + + + Get an address by providing the address, postcode, city. This is a reeks level function. + + + + + Look for an address by province, municipality, city, street, house number and house number addition. Returns a list of matches. This is a reeks level function. + + + + + Look for an address by province, municipality, city, street, house number and house number addition. Returns a list of matches. This is a reeks level function. + + + + + Look for an perceel address by simply providing a phrase such as "Somestreet 123". Returns a list of matches. This is a perceel level function (more accurate than reeks level). + + + + + Look for an perceel address by province, municipality, city, street, house number and house number addition. Returns a list of matches This is a perceel level function (more accurate than reeks level). + + + + + Returns a list of all neighborhood codes in the province + + + + + Returns a list of municipalities which are in the specified province + + + + + Returns a list of all provinces + + + + + Returns a list of provinces which match the given name + + + + + Returns a list of municipalities which match the given name + + + + + Returns a list of cities which are in the specified municipality + + + + + Returns a list of all neighborhood codes in the municipality + + + + + Search for all cities that match a phrase. Cities are also matched if input matches a commonly used alternative city name. Exact matches on the official name are listed first, the rest of the results is sorted alphabetically. + + + + + Returns a list of all neighborhood codes in the city + + + + + This is a deprecated function. Please use "addressPerceelFullParameterSearchV2" instead. + + + + + This is a deprecated function. Please use "addressPerceelFullParameterSearchV2" or "addressPerceelPhraseSearch" instead. + + + + + This function is deprecated and will not be available in the future. Use "addressReeksAddressSearch" or "addressReeksFullParameterSearch" instead. + + + + + This function is about to be removed! + + + + + This function is about to be removed! + + + + + Get the telephone area codes belonging to the neighborhood + + + + + Get the neighborhood codes of the neighborhoods that have the specified area code + + + + + Get the telephone areacodes related to a given postcode + + + + + Logs the user in using username and password, returns a reactid for authentication in further requests + + + + + Logs the user out, destroys the session associated with the reactid + + + + + Retrieve data on a belgian business establishment + + + + + Retrieve a Bovag member using a Bovag identifier. + + + + + Retrieve a Bovag member using a DutchBusiness identifiers. + + + + + Retrieve the establishment number (Dutch 'Vestigingsnummer') for a business. + + + + + Look up a BIK ('Bedrijfsindeling kamers van koophandel') code, which is the type of code returned in a <BusinessDossier> as the Primary or Secondary activity code. The description for all levels of the BIK code is returned, even if the full length BIK code does not exist. Descriptions of the section associated with the BIK code is also returned. + + + + + Look up a SBI ('Standaard Bedrijfs Indeling 2008') code. + + + + + + + + + + + + + Look up a business Dossier. The subdossierno parameter can be left empty to get all Sub Dossiers of one Dossier. + + + + + Look up an extended business Dossier. + + + + + Look up a business using its dossier number. + + + + + Look up a business using its postcode address. nbcode is required, other parameters may be left empty. + + + + + Lookup a business using its address. Specified parameters are compared against both establishment and correspondence addresses to find a match. Parameters may be left empty. + + + + + Lookup a business using its name. + + + + + Look up a business by a number of parameters. At least a tradename, neighborhood code, street, city or telephone number is required. Lookups based on postbus address are possible by specifying streetname "Postbus" and specifying the postbus number in the houseno parameter. Specified address parameters are compared against both establishment and correspondence addresses to find a match. + + + + + Look up a business by a number of parameters. At least a tradename, neighborhood code, street, city or telephone number is required. Lookups based on postbus address are possible by specifying streetname "Postbus" and specifying the postbus number in the houseno parameter. Specified address parameters are compared against both establishment and correspondence addresses to find a match. + + + + + Look up a business using its location and SBI code. + + + + + Look up a business using its location and SBI code. + + + + + Returns the SBI codes and their descriptions for a dossier. + + + + + + + + + Retrieve dossier numbers for all dossiers changed since the given date. + + + + + Returns a list of all dossiers that have been updated since they were last retrieved by the user + + + + + Add a dossier to the list of dossiers for which the user (the user whose credentials are used to make the call) wants to receive updates + + + + + Remove a dossier from the list of dossiers for which the user (the user whose credentials are used to make the call) wants to receive updates. + + + + + Look up a business by a number of parameters. At least a tradename, neighborhood code, street, city or telephone number is required. Lookups based on postbus address are possible by specifying streetname "Postbus" and specifying the postbus number in the houseno parameter. Specified address parameters are compared against both establishment and correspondence addresses to find a match. + + + + + Check the validity of a license plate and check code ('meldcode') combination + + + + + Retrieves data of a car with a Dutch license plate, including a list of types matched if more information is available. + + + + + Find a specific Dutch car's data, including BPM and power and types + + + + + Find a specific Dutch car's data, including European Approval Mark + + + + + Retrieves data of a car with a Dutch license plate, including catalog price. + + + + + Find a specific Dutch car's data, including information about extra options + + + + + Check the validity of a license plate and check code ('meldcode') combination + + + + + + + + + + + + + Retrieve options of a specific model of a car + + + + + + + + + + + + + + + + + + + + + Retrieve photos of a specific model of a car + + + + + Retrieve Autodisk price information + + + + + Find a specific Dutch car's data + + + + + Retrieves data of a car with a Dutch license plate, including a list of types matched if more information is available. + + + + + Find a specific Dutch car's data, including BPM and power + + + + + Retrieve a list of person entities based on search criteria + + + + + Retrieve a person entity based on a provided id + + + + + Retrieve a list of business entities based on search criteria + + + + + Retrieve a business based on a provided id + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Look up a business and return basic information about the business. + + + + + Retrieve a DNBBusinessReference with name, address and D&B business key for a specific business. + + + + + Retrieve basic WorldBase business information + + + + + Retrieve detailed WorldBase business information + + + + + Detailed WorldBase information, including information on a business' family tree + + + + + Do a D&B Quick Check on a business. + + + + + Do a D&B Business Verification on a business. + + + + + Retrieve D&B Enterprise Management for a business. + + + + + Look up a business and return basic information about the business. + + + + + Given two neighborhood codes, the drive distance in meters between the neighborhoodsis returned, for both the fastest and the shortest route + + + + + Given two neighborhood codes, the drivetime in minutes between the neighborhoods is returned, for both the fastest and the shortest route + + + + + Validate and complete an address based on postcode and house number. + + + + + Retrieve data on a business establishment + + + + + Retrieve data on a business establishment + + + + + Retrieve data on a business establishment + + + + + Retrieve SBI Information on a company + + + + + Retrieve data on a business establishment + + + + + Retrieve position data on a business establishment + + + + + Retrieve legal entity data on a business establishment + + + + + Retrieve the organization tree of a company + + + + + Determine if a Company has non-marketing indicator + + + + + Search for business establishments using a known identifier + + + + + Search for an overview of Corporate Group Relationships aka 'concern relaties' for specified dossier number + + + + + Get all known details of a Corporate Group Relationships (concernrelaties) for specified dossier number + + + + + Find business establishments using a variety of parameters + + + + + Find business establishments using a variety of parameters + + + + + Search for business establishments using a known identifier + + + + + Find business establishments based on postcode and house number + + + + + Search for businesses matching all of the given criteria. + + + + + Simple search for businesses matching all of the given criteria. + + + + + Look up a SBI ('Standaard Bedrijfs Indeling 2008') code. + + + + + Get an annual financial statement for a dutch-business + + + + + Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) + + + + + Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) + + + + + Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) + + + + + Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) + + + + + Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) + + + + + Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) + + + + + Retrieve a list of extract document references + + + + + Retrieve a list of extract document references + + + + + Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) + + + + + Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) + + + + + Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) + + + + + Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) + + + + + Get a list of logged updates for a specific business dossier + + + + + Returns a list of all dossiers (that have been added to the users follow list) thathave been updated since they were last retrieved by the user (the user whose credentials are used to make the call). + + + + + Retrieve information on the last change to a company. + + + + + Retrieve dossier numbers for all companies that changed since the given date. + + + + + Add a company to the follow list for which the user (the user whose credentials are used to make the call) wants to receive updates. + + + + + Remove a company from the follow list for which the user (the user whose credentials are used to make the call) wants to receive updates. + + + + + Get a complete overview of all the companies that are on the follow list for the user (the user whose credentials are used to make the call). + + + + + Get a paged result of all news items found. + + + + + Starts a UBO investigation for given dossierNumber and establishmentNumber + + + + + Checks the status of a UBO investigation + + + + + Pickup the result of a UBO investigation + + + + + Return the costs of a finished UBO investigation + + + + + Labels the natural persons found in an UBO Investigation according to a set of rules. + + + + + Retrieve Lei information for a business using the Chamber of Commerce number + + + + + Find business establishments using a variety of parameters + + + + + Retrieves the positions, current and historical, of a functionary. + + + + + Get the information of a dutch vehicle + + + + + Get the price information of a dutch vehicle + + + + + Get all the (previous) owners of a dutch vehicle + + + + + Get all the current market value of a vehicle + + + + + Get the information of a dutch vehicle + + + + + Provides a credit score for a person identified by a set of parameters. + + + + + Returns the coordinates in the RD system of the neighborhood, given the neighborhood code + + + + + Returns the coordinates of the given postcode in the RD system. + + + + + Returns the coordinates in degrees of latitude/longitude of the neighborhood, given the neighborhood code + + + + + Returns the coordinates of the given postcode in degrees of latitude/longitude. + + + + + Returns the coordinates of the given address in degrees of latitude/longitude. Address may be specified by postcode + house number or by city + street + house number. + + + + + Returns the coordinates of the given address in the RD system. Address may be specified by postcode + house number or by city + street + house number. + + + + + Returns the postcode of the address closest to the specified latitude/longitude coordinate in the Netherlands. + + + + + Returns the address closest to the specified latitude/longitude coordinate in the Netherlands. The returned x, y, latitude and logitude values are the coordinates of the retrieved address. Distance is the distance between these coordinates and the input coordinate in meters + + + + + Returns the postcode of the address closest to the specified Rijksdriehoeksmeting coordinate in the Netherlands. + + + + + Returns the address closest to the specified Rijksdriehoeksmeting coordinate in the Netherlands. The returned x, y, latitude and logitude values are the coordinates of the retrieved address. Distance is the distance between these coordinates and the input coordinate in meters + + + + + Returns the coordinates of the given postcode in degrees of latitude/longitude. Most countries are supported in the function. Accuracy of the result may vary between countries. + + + + + Returns the coordinates of the given address in degrees of latitude/longitude. Most countries are supported in the function. Accuracy of the result may vary between countries. Since the street and city have to contain the complete name and since this method acts with international data, we recommend to use <geoLocationInternationalPostcodeCoordinatesLatLon> if you know the postcode, since working with postcodes is less error prone. + + + + + Returns the coordinates of the given address in degrees of latitude/longitude. Most countries are supported in the function. Accuracy of the result may vary between countries. + + + + + Returns the address closest to the specified latitude/longitude coordinate. The returned latitude and logitude values make up the coordinate of the retrieved address. Distance is the distance between this coordinate and the input coordinate in meters + + + + + Returns the estimated distance in meters (in a direct line) between the two neighborhoods, given the neighborhood codes + + + + + Returns the estimated distance in meters (in a direct line) between the two postcodes. + + + + + Returns the distance in meters (in a direct line) between two latitude/longitude coordinates + + + + + Returns the neighborhood codes list sorted in order of increasing distance from a given neighborhood. + + + + + Returns the neighborhood codes list sorted in order of increasing distance from a given neighborhood, within a given radius (in meters). + + + + + Returns a list of postcodes sorted in order of increasing distance from a given postcode, within a given radius (in meters). If the radius is larger than 1500 meters, the result will be based on neighborhood codes + + + + + Returns a given postcode list sorted in order of increasingdistance from a given postcode. + + + + + Convert a latitude/longitude coordinate to a RD ('Rijksdriehoeksmeting') coordinate. + + + + + Convert a RD ('Rijksdriehoeksmeting') coordinate to a latitude/longitude coordinate. + + + + + Retrieve a Graydon credit report of a company registered in the Netherlands. + + + + + Search international Graydon credit report databases for a company using an identifier. + + + + + Search international Graydon credit report database for a company by name. + + + + + Search international Graydon credit report database for a company using postcode. + + + + + Retrieve a Graydon pd ratings and credit flag of a company registered in the Netherlands. + + + + + Retrieve various Graydon credit ratings of a company registered in the Netherlands. + + + + + Retrieve the BTW (VAT) number of a company registered in the Netherlands. + + + + + Retrieve top-parent, parent and sibling companies of a company registered in the Netherlands. + + + + + Retrieve company management credit scores of a company registered in the Netherlands. + + + + + Fetch a insolvency case from a given publication. + + + + + Search for insolvency publication for a business + + + + + Search for insolvency publication for a person + + + + + Returns up to 20 suggestions of valid addresses using the partial or full address data given. Returns more data than internationalAddressSearch. + + + + + Returns up to 20 suggestions of valid addresses using the partial or full address data given. Returns more data than internationalAddressSearch. + + + + + Find a 'Eigendomsbericht' by parcel details. Returns the result in a file of the specified format. If the input matches more than one parcel, a list of the parcels found is returned instead. + + + + + Find a 'Eigendomsbericht' by postcode and house number. Returns the result in a file of the specified format. If the input matches more than one parcel, a list of the parcels found is returned instead. + + + + + Find a 'Eigendomsbericht' by parcel details. Returns the result as a <BerichtObjectResultaatV2>. In addition to the structured result, a file of the specified format is returned. If the input matches more than one parcel, a list of the parcels found is returned instead. + + + + + Find a 'Eigendomsbericht' by postcode and house number. Returns the result as a <BerichtObjectResultaatV2>. In addition to the structured result, a file of the specified format is returned. If the input matches more than one parcel, a list of the parcels found is returned instead. + + + + + Returns a koopsommenoverzicht (in English: real estate transactions overview), which is a list of all transactions of the past five years in the given postcode range. + + + + + Returns a 'Uittreksel Kadastrale Kaart' (a map showing the boundaries of a parcel and buildings on that parcel) in the specified format. + + + + + Returns a 'Uittreksel Kadastrale Kaart' (a map showing the boundaries of a parcel and buildings on that parcel) in the specified format. + + + + + Find a 'Hypothecair bericht' by postcode and house number. If the input matches more than one parcel, a list of the parcels found is returned instead. + + + + + Find a 'Hypothecair bericht' by parcel details. + + + + + Find a 'brondocument', a document which is the basis for an ascription. + + + + + + + + + + + + + Returns the coordinates of the given address in both the RD system and the latitude/longitude system. The lat/lon coordinates are derived from the RD coordinates.The address may be specified by giving the postcode, house number & house number addition or by giving the cityname, streetname, house number & house number addition. + + + + + Returns a 'Kadata WMS De Kadastrale Kaart' map in the specified format. + + + + + Returns a 'Kadata WMS De Kadastrale Kaart' map in the specified format. + + + + + This function is deprecated and will not be available in the future. Use "kadasterUittrekselKadastraleKaartPerceelV2" instead. + + + + + This function is deprecated and will not be available in the future. Use "kadasterUittrekselKadastraleKaartPostcodeV2" instead. + + + + + Find a 'Hypothecair bericht' by postcode and house number. If the input matches more than one parcel, a list of the parcels found is returned instead. + + + + + Find a 'Hypothecair bericht' by parcel details. + + + + + Find a 'Eigendomsbericht' by parcel details. Returns the result as a <BerichtObjectResultaat>. In addition to the structured result, a file of the specified format is returned. If the input matches more than one parcel, a list of the parcels found is returned instead. + + + + + Find a 'Eigendomsbericht' by postcode and house number. Returns the result as a <BerichtObjectResultaat>. In addition to the structured result, a file of the specified format is returned. If the input matches more than one parcel, a list of the parcels found is returned instead. + + + + + Returns a 'Uittreksel Kadastrale Kaart' (a map showing the boundaries of a parcel and buildings on that parcel) in the specified format. + + + + + Returns a 'Uittreksel Kadastrale Kaart' (a map showing the boundaries of a parcel and buildings on that parcel) in the specified format. + + + + + Returns a 'Kadata WMS De Kadastrale Kaart' map in the specified format. + + + + + Returns a 'Kadata WMS De Kadastrale Kaart' map in the specified format. + + + + + Find a 'Hypothecair bericht' by postcode and house number. If the input matches more than one parcel, a list of the parcels found is returned instead. + + + + + Find a 'Hypothecair bericht' by parcel details. + + + + + Returns a koopsommenoverzicht (in English: real estate transactions overview), which is a list of all transactions of the past five years in the given postcode range. + + + + + Fetch a "KadastraalBerichtObject" using an address + + + + + Fetch a "KadastraalBerichtObject" using a designation for the parcel + + + + + Fetch a "KadastraalBerichtObject" using its identifier + + + + + Fetch a "HypothecairBerichtObject" using an address + + + + + Fetch a "HypothecairBerichtObject" using a designation for the parcel + + + + + Fetch a "HypothecairBerichtObject" using its identifier + + + + + Fetch an "UittrekselKadastraleKaart" using an address + + + + + Fetch an "UittrekselKadastraleKaart" using a designation for the parcel + + + + + Fetch an "UittrekselKadastraleKaart" using its identifier + + + + + Fetch a list of "Koopsommen" using an address + + + + + Fetch a "KadasterV2BronDocumentResponse" + + + + + Retrieve data on a business establishment + + + + + Search for business establishments using a known identifier + + + + + Find business establishments using a variety of parameters + + + + + Find business establishments based on postcode and house number + + + + + Search for businesses matching all of the given criteria. + + + + + Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) + + + + + Retrieve information on the last change of a business establishment + + + + + Retrieve all dossiers changed since the given date. + + + + + Returns a list of all dossiers that have been updated since they were last retrieved by the user + + + + + Add a dossier to the list of dossiers for which the user (the user whose credentials are used to make the call) wants to receive updates + + + + + Remove a dossier from the list of dossiers for which the user (the user whose credentials are used to make the call) wants to receive updates. + + + + + Returns a map in JPG or PNG format showing the location of the given postcode + + + + + Returns a map showing the location of the given coordinate (centerlat, centerlon). extra_latlon is an array of other locations to be shown. format can be 'jpg' or 'png' (default). The width and height parameters can be [1 - 2048]. Scale in meters per pixel [0.298 - 156412] + + + + + Returns a map showing the location of the given Rijksdriehoeksmeting coordinate (centerx, centery). extra_xy is an array of other locations to be shown. format can be 'jpg' or 'png' (default). The width and height parameters can be [1-2048]. Scale in meters per pixel [0.298 - 156412] + + + + + Returns a map showing the location of the given coordinate (latitude, longitude) + + + + + Fetch a list of all Webservices.nl endpoints (interfaces). Provide interface parameter [optional] for specific binding + + + + + Returns a list of methods for provided webservice (Endpoint) + + + + + Returns a detailed overview of the requested method + + + + + Returns a value estimate for the real estate at the specified address + + + + + Determines the creditworthiness of a person, address and postcode area. + The creditworthiness is expressed as a number between 0 and 11. + A credit score of 0 indicates that there is no information available for the given search. + A score between 1 and 11 indicates the creditworthiness, where a higher score means less creditworthiness, + thus higher risk. + + + + + Retrieve information about a persons creditworthiness based on his/her business ownerships and insolvency registrations. + + + + + Get description and image for a route between two addresses + + + + + Summary information about a route calculated between two addresses + + + + + Detailed information about a route calculated between two addresses + + + + + Returns a description of the fastest route between two postcodes. For every part of the route the drivetime in seconds and drivedistance in meters are given as well. If the english argument is true the description will be in english, otherwise it will be in dutch. + + + + + Returns a description of the shortest route between two postcodes. For every part of the route the drivetime in seconds and drivedistance in meters are given as well. If the english argument is true the description will be in english, otherwise it will be in dutch. + + + + + Returns a description of the route between two dutch postcodes, including the RD coordinates along the route. For every part of the route the drivetime in seconds and drivedistance in meters are given as well. The routetype can be shortest or fastest. By default the fastest route will be calculated. If the english argument is true the description will be in english, otherwise it will be in dutch. + + + + + Returns information (drivetime in seconds and drivedistance in meters) of the route between two postcodes. The routetype can be shortest or fastest. By default the fastest route will be calculated. + + + + + Returns a description of the route between two coordinates in the RD (Rijksdriehoeksmeting) coordinate system. For every part of the route the drivetime in seconds and drivedistance in meters are given as well. The description is available in dutch and english, depending on the english parameter toggle. The fastest or shortest route can be calculated depending on theroutetype parameter. + + + + + Returns the route distance and drive time between two coordinates in the RD (Rijksdriehoeksmeting) coordinate system. The fastest or shorted route can be calculated depending on the routetypeparameter. + + + + + Returns a description of the route between two coordinates in the RD (Rijksdriehoeksmeting) coordinate system, including the RD coordinates along the route. For every part of the route the drivetime in seconds and drivedistance in meters are given as well. The fastest or shortest route can be calculated depending on the routetype parameter. The description is available in dutch and english, depending on the english parameter toggle. + + + + + Summary information about a route calculated between two dutch-addresses + + + + + Detailed information about a route calculated between two dutch-addresses + + + + + Returns a description of the route between two latitude/longitude coordinates in Europe. For every part of the route the drivetime and drivedistance are given as well. The description is available in several languages depending on the language parameter. The fastest or shortest route is be calculated depending on the routetype parameter. + + + + + Returns the route distance and drive time for the route between two latitude/longitude coordinates in Europe. The fastest or shortest route can be calculated depending on the routetype parameter. + + + + + Returns a description of the route between two latitude/longitude coordinates in Europe, including the latitude/longitude coordinates along the route. For every part of the route the drivetime in seconds and drivedistance in meters are given as well. The routetype can be shortest or fastest. By default information on the fastest route will be returned. The description is available in several languages depending on the language parameter. + + + + + Returns a map showing the route between two latitude/longitude coordinates in Europe. + + + + + Convert a bank account number, bank code and country code to an IBAN number + + + + + Validate format of an International Bank Account Number (IBAN) + + + + + Validate and display values of IBAN values + + + + + Verify IBAN-name combinations + + + + + Convert a local Basic Bank Account Number (BBAN) number to its International Bank Account Number (IBAN) counterpart. + + + + + Check if a VAT number is valid + + + + + Check if a VAT number is valid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file From af41bf42851566abf63fadf6781b4cfea2e6bfc9 Mon Sep 17 00:00:00 2001 From: harrydb Date: Mon, 23 Dec 2019 12:51:13 +0000 Subject: [PATCH 02/10] Making some progress --- .../companyinfo/CompanyinfoProxy.kt | 98 +++++++++++++++++++ .../companyinfo/README.md | 6 ++ ...CompanyinfoDocumentHttpMessageConverter.kt | 41 ++++++++ .../domain/CompanyinfoCompanyProfile.kt | 27 +++++ .../companyinfo/domain/CompanyinfoDocument.kt | 29 ++++++ .../domain/CompanyinfoDocumentMetadata.kt | 19 ++++ .../domain/CompanyinfoFilingHistoryList.kt | 34 +++++++ .../CompanyInfoAuthInterceptor.kt | 16 +++ .../RequestResponseLoggingInterceptor.kt | 52 ++++++++++ 9 files changed, 322 insertions(+) create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyinfoProxy.kt create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/README.md create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/converters/CompanyinfoDocumentHttpMessageConverter.kt create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoCompanyProfile.kt create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoDocument.kt create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoDocumentMetadata.kt create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoFilingHistoryList.kt create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/interceptors/CompanyInfoAuthInterceptor.kt create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/interceptors/RequestResponseLoggingInterceptor.kt diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyinfoProxy.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyinfoProxy.kt new file mode 100644 index 0000000..da4a34f --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyinfoProxy.kt @@ -0,0 +1,98 @@ +package org.suggs.companydatafinderlib.companyinfo + +import org.slf4j.LoggerFactory +import org.springframework.http.HttpEntity +import org.springframework.http.HttpHeaders +import org.springframework.http.HttpMethod +import org.springframework.http.MediaType.APPLICATION_PDF +import org.springframework.http.client.BufferingClientHttpRequestFactory +import org.springframework.http.client.SimpleClientHttpRequestFactory +import org.springframework.web.client.RestTemplate +import org.suggs.companydatafinderlib.companyinfo.domain.CompanyinfoCompanyProfile +import org.suggs.companydatafinderlib.companyinfo.domain.CompanyinfoDocumentMetadata +import org.suggs.companydatafinderlib.companyinfo.converters.CompanyinfoDocumentHttpMessageConverter +import org.suggs.companydatafinderlib.companyinfo.domain.CompanyinfoDocument +import org.suggs.companydatafinderlib.companyinfo.domain.CompanyinfoFilingHistoryList +import org.suggs.companydatafinderlib.companyinfo.interceptors.CompanyInfoAuthInterceptor +import org.suggs.companydatafinderlib.companyinfo.interceptors.RequestResponseLoggingInterceptor + +class CompanyinfoProxy(private val authUsername: String) { + + private val restTemplate = createRestTemplateWithInterceptorsForAuthentication() + private val log = LoggerFactory.getLogger(this::class.java) + + private fun createRestTemplateWithInterceptorsForAuthentication(): RestTemplate { + val factory = BufferingClientHttpRequestFactory(SimpleClientHttpRequestFactory()) + val template = RestTemplate(factory) + template.interceptors = listOf( + RequestResponseLoggingInterceptor(), + CompanyInfoAuthInterceptor(authUsername)) + template.messageConverters.add(CompanyinfoDocumentHttpMessageConverter()) + return template + } + + /** + * Retrieves company profile data for a given companies house company id + */ + fun getCompanyDataFor(companyId: String): CompanyinfoCompanyProfile { + log.debug("Retrieving company profile data for company id $companyId") + val url = "https://api.companieshouse.gov.uk/company/$companyId" + return when (val profile = restTemplate.getForObject(url, CompanyinfoCompanyProfile::class.java)) { + null -> throw IllegalStateException("Could not create company profile for company number $companyId") + else -> profile + } + } + + /** + * Retrieves company filings history by for a given category. Category types can be found at + * @see FilingHistoryList + */ + fun getCompanyFilingHistoryFor(companyId: String, category: String, itemsPerPage: Int = 1): CompanyinfoFilingHistoryList { + log.debug("Retrieving $category filing history for company number $companyId") + val url = "https://api.companieshouse.gov.uk/company/$companyId/filing-history?category=$category&items_per_page=$itemsPerPage" + return when (val filingHistory = restTemplate.getForObject(url, CompanyinfoFilingHistoryList::class.java)) { + null -> throw IllegalStateException("Could not create filing history list for company number $companyId") + else -> filingHistory + } + } + + /** + * Retrieves document metadata from a defined url. Document metadata url can be found from a @see CompaniesHouseFilingHistoryList + */ + fun getDocumentMetadataFor(documentMetadataUrl: String): CompanyinfoDocumentMetadata { + log.debug("Retrieving document metadata from url $documentMetadataUrl") + return when (val documentMetadata = restTemplate.getForObject(documentMetadataUrl, CompanyinfoDocumentMetadata::class.java)) { + null -> throw IllegalStateException("Could not build CompaniesHouseDocumentMetadata from url [$documentMetadataUrl]") + else -> documentMetadata + } + } + + /** + * Retrieves a document based on a defined url. + */ + fun getDocumentFor(documentUrl: String): CompanyinfoDocument { + log.debug("Retrieving document from url $documentUrl") + return when (val document = restTemplate.exchange(documentUrl, HttpMethod.GET, createPdfAcceptingHeaders(), CompanyinfoDocument::class.java).body) { + null -> throw java.lang.IllegalStateException("Could not retrieve document from url $documentUrl") + else -> document + } + } + + /** + * Navigates the various interfaces to find the latest filed document for a given company and criteria. + */ + fun getLatestFiledDocumentForCategory(companyId: String, category: String): CompanyinfoDocument { + val documentMetadataLink = getCompanyFilingHistoryFor(companyId, category).latestFiledItemUrl() + val documentUrl = getDocumentMetadataFor(documentMetadataLink).documentUrl() + return getDocumentFor(documentUrl) + } + + private fun createPdfAcceptingHeaders(): HttpEntity { + val headers = HttpHeaders() + headers.accept = listOf(APPLICATION_PDF) + return HttpEntity(headers) + } +} + + + diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/README.md b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/README.md new file mode 100644 index 0000000..b25994e --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/README.md @@ -0,0 +1,6 @@ +# Companyinfo API +Use this API for accessing data and documents from the Netherlands based Companyinfo website + (NL registered companies). +See the tests for details on how to use the api and simplified api access. +API access is directly to Companies House. +Details for connection etc can be found at the [Companyinfo API](https://testclient.webservices.nl/advanced) pages. diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/converters/CompanyinfoDocumentHttpMessageConverter.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/converters/CompanyinfoDocumentHttpMessageConverter.kt new file mode 100644 index 0000000..0795119 --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/converters/CompanyinfoDocumentHttpMessageConverter.kt @@ -0,0 +1,41 @@ +package org.suggs.companydatafinderlib.companyinfo.converters + +import org.springframework.http.HttpInputMessage +import org.springframework.http.HttpOutputMessage +import org.springframework.http.MediaType +import org.springframework.http.converter.AbstractHttpMessageConverter +import org.springframework.util.StreamUtils +import org.suggs.companydatafinderlib.companyinfo.domain.CompanyinfoDocument +import java.io.ByteArrayOutputStream + + +/** + * HttpMessageConverter specifically for PDF documents. + */ +class CompanyinfoDocumentHttpMessageConverter : AbstractHttpMessageConverter(MediaType.APPLICATION_PDF) { + + override fun supports(clazz: Class<*>): Boolean { + return CompanyinfoDocument::class.java == clazz + } + + override fun writeInternal(document: CompanyinfoDocument, outputMessage: HttpOutputMessage) { + StreamUtils.copy(document.bytes, outputMessage.body) + } + + override fun readInternal(clazz: Class, inputMessage: HttpInputMessage): CompanyinfoDocument { + val contentLength = inputMessage.headers.contentLength.toInt() + val bos = ByteArrayOutputStream(if (contentLength >= 0) contentLength else StreamUtils.BUFFER_SIZE) + StreamUtils.copy(inputMessage.body, bos) + return CompanyinfoDocument(bos.toByteArray(), + inputMessage.headers.contentType, + inputMessage.headers.contentLength, + inputMessage.headers.eTag, + inputMessage.headers.lastModified, + inputMessage.headers.date) + } + + override fun getContentLength(document: CompanyinfoDocument, contentType: MediaType?): Long? { + return document.bytes.size.toLong() + } + +} \ No newline at end of file diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoCompanyProfile.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoCompanyProfile.kt new file mode 100644 index 0000000..323e684 --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoCompanyProfile.kt @@ -0,0 +1,27 @@ +package org.suggs.companydatafinderlib.companyinfo.domain + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties +import com.fasterxml.jackson.annotation.JsonInclude +import com.fasterxml.jackson.annotation.JsonProperty +import java.util.* + +@JsonIgnoreProperties(ignoreUnknown = true) +@JsonInclude(JsonInclude.Include.NON_EMPTY) +data class CompanyinfoCompanyProfile(@JsonProperty("company_number") val companyNumber: String, + @JsonProperty("date_of_creation") val dateOfCreation: Date, + @JsonProperty("type") val type: String, + @JsonProperty("jurisdiction") val jurisdiction: String, + @JsonProperty("company_name") val companyName: String, + @JsonProperty("registered_office_address") val registeredAddress: RegisteredAddress, + @JsonProperty("sic_codes") val sicCodes: List, + @JsonProperty("company_status") val companyStatus: String, + @JsonProperty("etag") val etag: String, + @JsonProperty("links") val links: Map) + +@JsonIgnoreProperties(ignoreUnknown = true) +@JsonInclude(JsonInclude.Include.NON_EMPTY) +data class RegisteredAddress(@JsonProperty("address_line_1") val addressLine1: String?, + @JsonProperty("address_line_2") val addressLine2: String?, + @JsonProperty("locality") val locality: String?, + @JsonProperty("postal_code") val postCode: String?, + @JsonProperty("country") val country: String?) \ No newline at end of file diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoDocument.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoDocument.kt new file mode 100644 index 0000000..1148310 --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoDocument.kt @@ -0,0 +1,29 @@ +package org.suggs.companydatafinderlib.companyinfo.domain + +import org.slf4j.LoggerFactory +import org.springframework.http.MediaType +import java.io.File + +data class CompanyinfoDocument(val bytes: ByteArray, + val contentType: MediaType?, + val contentLength: Long, + val eTag: String?, + val lastModified: Long, + val retrievedDate: Long) { + + private val log = LoggerFactory.getLogger(this::class.java) + + fun writeTo(fileLocation: String) { + File(fileLocation).writeBytes(bytes) + log.debug("Written ${bytes.size} to $fileLocation") + } + + override fun toString(): String { + return "CompanyinfoDocument(bytes=${bytes.size}, " + + "contentType=$contentType, " + + "contentLength=$contentLength, " + + "eTag=$eTag, " + + "lastModified=$lastModified, " + + "retrievedDate=$retrievedDate)" + } +} diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoDocumentMetadata.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoDocumentMetadata.kt new file mode 100644 index 0000000..154fa74 --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoDocumentMetadata.kt @@ -0,0 +1,19 @@ +package org.suggs.companydatafinderlib.companyinfo.domain + +import com.fasterxml.jackson.annotation.JsonProperty +import java.util.* + +data class CompanyinfoDocumentMetadata(@JsonProperty("company_number") val companyNumber: String, + @JsonProperty("barcode") val barcode: String, + @JsonProperty("created_at") val createdAt: Date, + @JsonProperty("category") val category: String, + @JsonProperty("etag") val etag: String, + @JsonProperty("links") val links: Map) { + + fun documentUrl(): String { + return when (val documentLink = links["document"]) { + null -> throw IllegalStateException("Could not find document link in document metadata") + else -> documentLink + } + } +} diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoFilingHistoryList.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoFilingHistoryList.kt new file mode 100644 index 0000000..debaae8 --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoFilingHistoryList.kt @@ -0,0 +1,34 @@ +package org.suggs.companydatafinderlib.companyinfo.domain + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties +import com.fasterxml.jackson.annotation.JsonInclude +import com.fasterxml.jackson.annotation.JsonProperty +import java.util.* + +/** + * @see FilingHistoryList + * for details of available fields for mapping + */ +@JsonIgnoreProperties(ignoreUnknown = true) +@JsonInclude(JsonInclude.Include.NON_EMPTY) +data class CompanyinfoFilingHistoryList(@JsonProperty("start_index") val startIndex: Int, + @JsonProperty("filing_history_status") val filingHistoryStatus: String, + @JsonProperty("items_per_page") val itemsPerPage: Int, + @JsonProperty("items") val items: List) { + + fun latestFiledItemUrl(): String { + return when (val url = items.maxBy { it.date }!!.links["document_metadata"]) { + null -> throw IllegalStateException("Could not extract document metadata link from filing history list") + else -> url + } + } +} + +/** + * @see FilingHistoryItem + * for details of available fields for mapping + */ +@JsonIgnoreProperties(ignoreUnknown = true) +@JsonInclude(JsonInclude.Include.NON_EMPTY) +data class FilingHistoryItem(@JsonProperty("date") val date: Date, + @JsonProperty("links") val links: Map) \ No newline at end of file diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/interceptors/CompanyInfoAuthInterceptor.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/interceptors/CompanyInfoAuthInterceptor.kt new file mode 100644 index 0000000..d49ab5b --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/interceptors/CompanyInfoAuthInterceptor.kt @@ -0,0 +1,16 @@ +package org.suggs.companydatafinderlib.companyinfo.interceptors + +import org.springframework.http.HttpRequest +import org.springframework.http.client.ClientHttpRequestExecution +import org.springframework.http.client.ClientHttpRequestInterceptor +import org.springframework.http.client.ClientHttpResponse +import java.util.* + +class CompanyInfoAuthInterceptor(private val username: String) : ClientHttpRequestInterceptor { + override fun intercept(request: HttpRequest, body: ByteArray, execution: ClientHttpRequestExecution): ClientHttpResponse { + val auth = "$username:" + val encodedAuth = Base64.getEncoder().encodeToString(auth.toByteArray()) + request.headers.add("Authorization", "Basic $encodedAuth") + return execution.execute(request, body) + } +} \ No newline at end of file diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/interceptors/RequestResponseLoggingInterceptor.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/interceptors/RequestResponseLoggingInterceptor.kt new file mode 100644 index 0000000..20d524a --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/interceptors/RequestResponseLoggingInterceptor.kt @@ -0,0 +1,52 @@ +package org.suggs.companydatafinderlib.companyinfo.interceptors + +import org.slf4j.LoggerFactory +import org.springframework.http.HttpRequest +import org.springframework.http.MediaType +import org.springframework.http.client.ClientHttpRequestExecution +import org.springframework.http.client.ClientHttpRequestInterceptor +import org.springframework.http.client.ClientHttpResponse +import org.springframework.util.StreamUtils +import java.io.IOException +import java.nio.charset.Charset + +class RequestResponseLoggingInterceptor : ClientHttpRequestInterceptor { + + private val log = LoggerFactory.getLogger(this::class.java) + + override fun intercept(request: HttpRequest, body: ByteArray, execution: ClientHttpRequestExecution): ClientHttpResponse { + logRequest(request, body) + val response = execution.execute(request, body) + logResponse(response) + return response + } + + @Throws(IOException::class) + private fun logRequest(request: HttpRequest, body: ByteArray) { + if (log.isDebugEnabled) { + log.debug("===========================request begin================================================") + log.debug("URI : ${request.uri}") + log.debug("Method : ${request.method}") + log.debug("Headers : ${request.headers}") + log.debug("Request body: ${String(body, Charset.forName("UTF-8"))}") + log.debug("==========================request end================================================") + } + } + + @Throws(IOException::class) + private fun logResponse(response: ClientHttpResponse) { + if (log.isDebugEnabled) { + log.debug("============================response begin==========================================") + log.debug("Status code : ${response.statusCode}") + log.debug("Status text : ${response.statusText}") + log.debug("Headers : ${response.headers}") + if (response.headers.contentType!!.compareTo(MediaType.APPLICATION_JSON) == 0) { + log.debug("Response body: ${StreamUtils.copyToString(response.body, Charset.defaultCharset())}") + } else { + log.debug("Response body: {huge blob of data}") + } + log.debug("=======================response end=================================================") + } + } + +} \ No newline at end of file From 6bab326a47fe7bf851293b7e501a3122046ffd34 Mon Sep 17 00:00:00 2001 From: harrydb Date: Thu, 2 Jan 2020 08:26:22 +0000 Subject: [PATCH 03/10] Making some progress --- build.gradle | 11 ++++ company-data-finder-lib/build.gradle | 51 +++++++++++++++++++ company-data-finder-lib/settings.gradle | 3 ++ .../companieshouse/CompaniesHouseProxy.kt | 8 +-- ...paniesHouseDocumentHttpMessageConverter.kt | 2 +- .../domain/CompaniesHouseFilingHistoryList.kt | 1 - company-data-finder-lib/src/test/build.gradle | 3 ++ .../CompaniesHouseCompanyDataParseTest.kt | 1 + .../companyinfo/CompanyInfoTest.kt | 1 + .../domain/CompanyInfoCompanyDataParseTest.kt | 1 + dependencies.gradle | 4 +- gradle/wrapper/gradle-wrapper.properties | 3 +- settings.gradle | 2 +- 13 files changed, 82 insertions(+), 9 deletions(-) create mode 100644 company-data-finder-lib/settings.gradle create mode 100644 company-data-finder-lib/src/test/build.gradle diff --git a/build.gradle b/build.gradle index a96ea47..81da840 100644 --- a/build.gradle +++ b/build.gradle @@ -20,13 +20,16 @@ subprojects{ apply from: "$rootDir/dependencies.gradle" apply plugin: 'kotlin' + apply plugin: 'io.spring.dependency-management' group = 'org.suggs.companydatafinder' repositories { clear() jcenter() + mavenCentral() } + dependencies { implementation libs.kotlin, @@ -40,6 +43,13 @@ subprojects{ testRuntimeOnly libs.test.junitEngine, libs.logback + + implementation ("org.springframework.boot:spring-boot-starter-web-services:${springBootVersion}") { + exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat' + } + + implementation 'org.springframework.ws:spring-ws-core' + compile group: 'org.jvnet.mimepull', name: 'mimepull', version: '1.9.12' } ext { @@ -51,6 +61,7 @@ subprojects{ useJUnitPlatform() } + compileKotlin { kotlinOptions { freeCompilerArgs = ["-Xjsr305=strict"] diff --git a/company-data-finder-lib/build.gradle b/company-data-finder-lib/build.gradle index b3547bc..a9f5ebd 100644 --- a/company-data-finder-lib/build.gradle +++ b/company-data-finder-lib/build.gradle @@ -3,8 +3,59 @@ jar { version = '0.0.1' } +configurations { + jaxb +} + +task genJaxb { + ext.sourcesDir = "${buildDir}/generated-sources/jaxb" + ext.classesDir = "${buildDir}/classes/jaxb" + ext.schema = "https://ws1.webservices.nl/soap_doclit?wsdl" + + outputs.dir classesDir + + doLast() { + project.ant { + taskdef name: "xjc", classname: "com.sun.tools.xjc.XJCTask", + classpath: configurations.jaxb.asPath + mkdir(dir: sourcesDir) + mkdir(dir: classesDir) + + xjc(destdir: sourcesDir, schema: schema, + package: "org.suggs.companydatafinderlib.companyinfo.wsdl") { + arg(value: "-wsdl") + produces(dir: sourcesDir, includes: "**/*.java") + } + + javac(destdir: classesDir, source: 1.8, target: 1.8, debug: true, + debugLevel: "lines,vars,source", + classpath: configurations.jaxb.asPath) { + src(path: sourcesDir) + include(name: "**/*.java") + include(name: "*.java") + } + + copy(todir: classesDir) { + fileset(dir: sourcesDir, erroronmissingdir: false) { + exclude(name: "**/*.java") + } + } + } + } +} + dependencies { implementation libs.springBootStarterWeb testImplementation libs.snakeYaml + + compile(files(genJaxb.classesDir).builtBy(genJaxb)) + + implementation "com.sun.xml.bind:jaxb-xjc:2.1.7" + jaxb 'com.sun.xml.bind:jaxb-xjc:2.2.7-b41' + jaxb 'com.sun.xml.bind:jaxb-impl:2.2.7-b41' + jaxb 'javax.xml.bind:jaxb-api:2.2.7' + jaxb 'com.sun.activation:javax.activation:1.2.0' + compile project(':company-data-finder-lib:main') } + diff --git a/company-data-finder-lib/settings.gradle b/company-data-finder-lib/settings.gradle new file mode 100644 index 0000000..b699c16 --- /dev/null +++ b/company-data-finder-lib/settings.gradle @@ -0,0 +1,3 @@ +rootProject.name = 'company-data-finder-lib' +include ':main', + ':test' \ No newline at end of file diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/CompaniesHouseProxy.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/CompaniesHouseProxy.kt index 5401fb2..871ae6e 100644 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/CompaniesHouseProxy.kt +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/CompaniesHouseProxy.kt @@ -10,11 +10,11 @@ import org.springframework.http.client.SimpleClientHttpRequestFactory import org.springframework.web.client.RestTemplate import org.suggs.companydatafinderlib.companieshouse.converters.CompaniesHouseDocumentHttpMessageConverter import org.suggs.companydatafinderlib.companieshouse.domain.CompaniesHouseCompanyProfile -import org.suggs.companydatafinderlib.companyinfo.CompaniesHouseDocument +import org.suggs.companydatafinderlib.companieshouse.domain.CompaniesHouseDocument import org.suggs.companydatafinderlib.companieshouse.domain.CompaniesHouseDocumentMetadata -import org.suggs.companydatafinderlib.companyinfo.CompaniesHouseFilingHistoryList -import org.suggs.companydatafinderlib.companyinfo.interceptors.CompaniesHouseAuthInterceptor -import org.suggs.companydatafinderlib.companyinfo.interceptors.RequestResponseLoggingInterceptor +import org.suggs.companydatafinderlib.companieshouse.domain.CompaniesHouseFilingHistoryList +import org.suggs.companydatafinderlib.companieshouse.interceptors.CompaniesHouseAuthInterceptor +import org.suggs.companydatafinderlib.companieshouse.interceptors.RequestResponseLoggingInterceptor class CompaniesHouseProxy(private val authUsername: String) { diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/converters/CompaniesHouseDocumentHttpMessageConverter.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/converters/CompaniesHouseDocumentHttpMessageConverter.kt index c7aa558..43eb82b 100644 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/converters/CompaniesHouseDocumentHttpMessageConverter.kt +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/converters/CompaniesHouseDocumentHttpMessageConverter.kt @@ -5,7 +5,7 @@ import org.springframework.http.HttpOutputMessage import org.springframework.http.MediaType import org.springframework.http.converter.AbstractHttpMessageConverter import org.springframework.util.StreamUtils -import org.suggs.companydatafinderlib.companyinfo.CompaniesHouseDocument +import org.suggs.companydatafinderlib.companieshouse.domain.CompaniesHouseDocument import java.io.ByteArrayOutputStream diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/domain/CompaniesHouseFilingHistoryList.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/domain/CompaniesHouseFilingHistoryList.kt index fe38caf..da113c0 100644 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/domain/CompaniesHouseFilingHistoryList.kt +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companieshouse/domain/CompaniesHouseFilingHistoryList.kt @@ -3,7 +3,6 @@ package org.suggs.companydatafinderlib.companieshouse.domain import com.fasterxml.jackson.annotation.JsonIgnoreProperties import com.fasterxml.jackson.annotation.JsonInclude import com.fasterxml.jackson.annotation.JsonProperty -import org.suggs.companydatafinderlib.companyinfo.FilingHistoryItem import java.util.* /** diff --git a/company-data-finder-lib/src/test/build.gradle b/company-data-finder-lib/src/test/build.gradle new file mode 100644 index 0000000..bdc5dd9 --- /dev/null +++ b/company-data-finder-lib/src/test/build.gradle @@ -0,0 +1,3 @@ +dependencies { + compile project(':main') +} \ No newline at end of file diff --git a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companieshouse/domain/CompaniesHouseCompanyDataParseTest.kt b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companieshouse/domain/CompaniesHouseCompanyDataParseTest.kt index 2dcc28c..2edb725 100644 --- a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companieshouse/domain/CompaniesHouseCompanyDataParseTest.kt +++ b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companieshouse/domain/CompaniesHouseCompanyDataParseTest.kt @@ -9,6 +9,7 @@ import org.junit.jupiter.api.DisplayName import org.junit.jupiter.api.Test import org.junit.jupiter.api.function.Executable import org.slf4j.LoggerFactory +import org.suggs.companydatafinderlib.companieshouse.domain.CompaniesHouseCompanyProfile @DisplayName("Companies House Response contains company data directly from CH") class CompaniesHouseCompanyDataParseTest { diff --git a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyInfoTest.kt b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyInfoTest.kt index 89902f1..cc1c523 100644 --- a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyInfoTest.kt +++ b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyInfoTest.kt @@ -4,6 +4,7 @@ import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.DisplayName import org.junit.jupiter.api.Test import org.slf4j.LoggerFactory +import org.suggs.companydatafinderlib.companyinfo.CompanyinfoProxy import org.yaml.snakeyaml.Yaml @DisplayName("Companyinfo Proxy allows us to") diff --git a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyInfoCompanyDataParseTest.kt b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyInfoCompanyDataParseTest.kt index 654abc2..c3ba7ab 100644 --- a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyInfoCompanyDataParseTest.kt +++ b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyInfoCompanyDataParseTest.kt @@ -9,6 +9,7 @@ import org.junit.jupiter.api.DisplayName import org.junit.jupiter.api.Test import org.junit.jupiter.api.function.Executable import org.slf4j.LoggerFactory +import org.suggs.companydatafinderlib.companyinfo.domain.CompanyinfoCompanyProfile @DisplayName("Companyinfo Response contains company data directly from KVK") class CompanyInfoCompanyDataParseTest { diff --git a/dependencies.gradle b/dependencies.gradle index be7cace..fda4db2 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -1,7 +1,8 @@ ext { kotlinVersion = '1.3.41' - + springBootVersion = '2.1.7.RELEASE' + libs = [ kotlin : "org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}", @@ -29,6 +30,7 @@ ext { restAssured : 'io.rest-assured:rest-assured:3.3.0', springBootStarterTest: "org.springframework.boot:spring-boot-starter-test:${springBootVersion}" + ] ] } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index ef9a9e0..ea7627b 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,6 @@ +#Mon Dec 23 13:10:46 GMT 2019 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-5.6-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-5.6-all.zip diff --git a/settings.gradle b/settings.gradle index a504e64..0d26a84 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,2 +1,2 @@ include 'company-data-finder-lib', -'company-data-finder-app' +'company-data-finder-app', 'company-data-finder-lib:main', 'company-data-finder-lib:test' From 5c983106bbe62b17ac6638aabd1e15132f9b50d4 Mon Sep 17 00:00:00 2001 From: harrydb Date: Thu, 2 Jan 2020 09:21:59 +0000 Subject: [PATCH 04/10] Auto-Gen Companyinfo SOAP api --- company-data-finder-lib/build.gradle | 3 +- .../wsdl/AantekeningKadastraalObject.java | 150 + .../AantekeningKadastraalObjectArray.java | 74 + .../AantekeningKadastraalObjectLijst.java | 88 + .../companyinfo/wsdl/AantekeningRecht.java | 180 + .../wsdl/AantekeningRechtArray.java | 74 + .../wsdl/AantekeningRechtLijst.java | 88 + .../wsdl/AantekeningenKadastraalObject.java | 95 + .../companyinfo/wsdl/Account.java | 465 + .../companyinfo/wsdl/AccountArray.java | 74 + .../wsdl/AccountCreationToken.java | 96 + ...ccountEditHostRestrictionsRequestType.java | 87 + ...countEditHostRestrictionsResponseType.java | 37 + .../wsdl/AccountEditV2RequestType.java | 240 + .../wsdl/AccountEditV2ResponseType.java | 37 + .../AccountGetCreationStatusRequestType.java | 69 + .../AccountGetCreationStatusResponseType.java | 59 + .../AccountGetCreationTokenRequestType.java | 69 + .../AccountGetCreationTokenResponseType.java | 69 + .../wsdl/AccountGetOrderTokenRequestType.java | 87 + .../AccountGetOrderTokenResponseType.java | 69 + .../companyinfo/wsdl/AccountOrderToken.java | 96 + .../companyinfo/wsdl/AccountPagedResult.java | 96 + .../wsdl/AccountUserListV2RequestType.java | 77 + .../wsdl/AccountUserListV2ResponseType.java | 69 + .../wsdl/AccountUserSearchV2RequestType.java | 105 + .../wsdl/AccountUserSearchV2ResponseType.java | 69 + .../companyinfo/wsdl/AccountV2.java | 465 + .../companyinfo/wsdl/AccountV2Array.java | 74 + .../wsdl/AccountV2PagedResult.java | 96 + .../wsdl/AccountViewBalanceRequestType.java | 59 + .../wsdl/AccountViewBalanceResponseType.java | 59 + ...ccountViewHostRestrictionsRequestType.java | 59 + ...countViewHostRestrictionsResponseType.java | 69 + .../wsdl/AccountViewV2RequestType.java | 59 + .../wsdl/AccountViewV2ResponseType.java | 69 + ...dressCityListNeighborhoodsRequestType.java | 105 + ...ressCityListNeighborhoodsResponseType.java | 69 + .../wsdl/AddressCitySearchV2RequestType.java | 87 + .../wsdl/AddressCitySearchV2ResponseType.java | 69 + .../AddressDistrictListCitiesRequestType.java | 87 + ...AddressDistrictListCitiesResponseType.java | 69 + ...sDistrictListNeighborhoodsRequestType.java | 105 + ...DistrictListNeighborhoodsResponseType.java | 69 + .../AddressDistrictSearchRequestType.java | 87 + .../AddressDistrictSearchResponseType.java | 69 + .../AddressNeighborhoodNameRequestType.java | 69 + .../AddressNeighborhoodNameResponseType.java | 69 + ...ssNeighborhoodPhraseSearchRequestType.java | 87 + ...sNeighborhoodPhraseSearchResponseType.java | 69 + ...PerceelFullParameterSearchRequestType.java | 294 + ...erceelFullParameterSearchResponseType.java | 69 + ...rceelFullParameterSearchV2RequestType.java | 294 + ...ceelFullParameterSearchV2ResponseType.java | 69 + ...ressPerceelParameterSearchRequestType.java | 213 + ...essPerceelParameterSearchResponseType.java | 69 + ...AddressPerceelPhraseSearchRequestType.java | 87 + ...ddressPerceelPhraseSearchResponseType.java | 69 + ...dressProvinceListDistrictsRequestType.java | 87 + ...ressProvinceListDistrictsResponseType.java | 69 + ...sProvinceListNeighborhoodsRequestType.java | 105 + ...ProvinceListNeighborhoodsResponseType.java | 69 + .../wsdl/AddressProvinceListRequestType.java | 59 + .../wsdl/AddressProvinceListResponseType.java | 69 + .../AddressProvinceSearchRequestType.java | 87 + .../AddressProvinceSearchResponseType.java | 69 + .../AddressReeksAddressSearchRequestType.java | 141 + ...AddressReeksAddressSearchResponseType.java | 69 + ...ssReeksFullParameterSearchRequestType.java | 294 + ...sReeksFullParameterSearchResponseType.java | 69 + ...ddressReeksParameterSearchRequestType.java | 213 + ...dressReeksParameterSearchResponseType.java | 69 + .../AddressReeksPhraseSearchRequestType.java | 87 + .../AddressReeksPhraseSearchResponseType.java | 69 + ...AddressReeksPostcodeSearchRequestType.java | 69 + ...ddressReeksPostcodeSearchResponseType.java | 69 + .../companyinfo/wsdl/AreaCode.java | 69 + .../companyinfo/wsdl/AreaCodeArray.java | 74 + .../wsdl/AreaCodeLookupRequestType.java | 87 + .../wsdl/AreaCodeLookupResponseType.java | 69 + .../companyinfo/wsdl/AreaCodePagedResult.java | 96 + .../AreaCodePostcodeLookupRequestType.java | 69 + .../AreaCodePostcodeLookupResponseType.java | 69 + ...AreaCodeToNeighborhoodcodeRequestType.java | 87 + ...reaCodeToNeighborhoodcodeResponseType.java | 69 + .../companyinfo/wsdl/Base64BinaryArray.java | 73 + .../companyinfo/wsdl/BbanDetails.java | 339 + .../wsdl/BelgianBusinessAddress.java | 194 + .../wsdl/BelgianBusinessAddressArray.java | 74 + ...lgianBusinessAnnualFinancialStatement.java | 562 + ...BusinessAnnualFinancialStatementArray.java | 74 + .../wsdl/BelgianBusinessBankAccount.java | 142 + .../wsdl/BelgianBusinessBankAccountArray.java | 74 + .../wsdl/BelgianBusinessCompany.java | 384 + .../companyinfo/wsdl/BelgianBusinessDate.java | 119 + .../wsdl/BelgianBusinessDatedItem.java | 149 + .../wsdl/BelgianBusinessDatedItemArray.java | 74 + .../wsdl/BelgianBusinessDossier.java | 230 + .../wsdl/BelgianBusinessDossierErrors.java | 177 + .../wsdl/BelgianBusinessFinancialValues.java | 3141 +++ .../BelgianBusinessGetDossierRequestType.java | 69 + ...BelgianBusinessGetDossierResponseType.java | 69 + .../BelgianBusinessInternationalAddress.java | 194 + ...gianBusinessInternationalAddressArray.java | 74 + .../BelgianBusinessLegalRepresentative.java | 149 + ...lgianBusinessLegalRepresentativeArray.java | 74 + ...ianBusinessLegalRepresentativeCompany.java | 121 + ...sinessLegalRepresentativeCompanyArray.java | 74 + .../wsdl/BelgianBusinessRatios.java | 904 + .../wsdl/BelgianBusinessRevisor.java | 254 + .../wsdl/BelgianBusinessRevisorArray.java | 74 + .../wsdl/BelgianBusinessSocialBalance.java | 744 + .../wsdl/BelgianBusinessStakeHolder.java | 281 + .../wsdl/BelgianBusinessStakeHolderArray.java | 74 + .../companyinfo/wsdl/BerichtObject.java | 231 + .../wsdl/BerichtObjectDocument.java | 229 + .../wsdl/BerichtObjectDocumentResultaat.java | 93 + .../wsdl/BerichtObjectResultaat.java | 93 + .../wsdl/BerichtObjectResultaatV2.java | 93 + .../companyinfo/wsdl/BerichtObjectV2.java | 231 + .../companyinfo/wsdl/BovagDepartment.java | 95 + .../wsdl/BovagDepartmentArray.java | 74 + .../BovagGetMemberByBovagIdRequestType.java | 69 + .../BovagGetMemberByBovagIdResponseType.java | 69 + ...agGetMemberByDutchBusinessRequestType.java | 96 + ...gGetMemberByDutchBusinessResponseType.java | 69 + .../companyinfo/wsdl/BovagMember.java | 177 + .../companyinfo/wsdl/BusinessBIKCode.java | 96 + .../wsdl/BusinessBIKCodeArray.java | 74 + .../companyinfo/wsdl/BusinessBIKCodeInfo.java | 96 + .../companyinfo/wsdl/BusinessBIKSection.java | 96 + .../wsdl/BusinessBIKSectionArray.java | 74 + .../wsdl/BusinessBIKToSBIRequestType.java | 69 + .../wsdl/BusinessBIKToSBIResponseType.java | 69 + .../companyinfo/wsdl/BusinessDate.java | 126 + .../companyinfo/wsdl/BusinessDossier.java | 1106 + .../wsdl/BusinessDossierArray.java | 74 + .../wsdl/BusinessDossierExtended.java | 96 + .../wsdl/BusinessDossierExtendedPart.java | 609 + .../wsdl/BusinessDossierPagedResult.java | 96 + .../companyinfo/wsdl/BusinessDossierSBI.java | 204 + .../companyinfo/wsdl/BusinessDossierV2.java | 1004 + .../wsdl/BusinessDossierV2Array.java | 74 + .../wsdl/BusinessDossierV2PagedResult.java | 96 + .../companyinfo/wsdl/BusinessDossierV3.java | 923 + .../wsdl/BusinessDossierV3Array.java | 74 + .../wsdl/BusinessDossierV3PagedResult.java | 96 + .../BusinessGetBIKDescriptionRequestType.java | 69 + ...BusinessGetBIKDescriptionResponseType.java | 69 + ...BusinessGetDossierExtendedRequestType.java | 96 + ...usinessGetDossierExtendedResponseType.java | 69 + .../BusinessGetDossierSBIRequestType.java | 96 + .../BusinessGetDossierSBIResponseType.java | 69 + .../wsdl/BusinessGetDossierV3RequestType.java | 114 + .../BusinessGetDossierV3ResponseType.java | 69 + ...nessGetEstablishmentNumberRequestType.java | 96 + ...essGetEstablishmentNumberResponseType.java | 69 + .../BusinessGetSBIDescriptionRequestType.java | 69 + ...BusinessGetSBIDescriptionResponseType.java | 69 + .../companyinfo/wsdl/BusinessReference.java | 177 + .../wsdl/BusinessReferenceArray.java | 74 + .../wsdl/BusinessReferencePagedResult.java | 96 + .../companyinfo/wsdl/BusinessReferenceV2.java | 231 + .../wsdl/BusinessReferenceV2Array.java | 74 + .../wsdl/BusinessReferenceV2PagedResult.java | 96 + .../companyinfo/wsdl/BusinessReferenceV3.java | 250 + .../wsdl/BusinessReferenceV3Array.java | 74 + .../wsdl/BusinessReferenceV3PagedResult.java | 96 + .../companyinfo/wsdl/BusinessSBICode.java | 96 + .../wsdl/BusinessSBICodeArray.java | 74 + .../companyinfo/wsdl/BusinessSBICodeInfo.java | 96 + .../companyinfo/wsdl/BusinessSBISection.java | 96 + .../wsdl/BusinessSBISectionArray.java | 74 + .../wsdl/BusinessSBIToBIKRequestType.java | 69 + .../wsdl/BusinessSBIToBIKResponseType.java | 69 + .../BusinessSearchAddressRequestType.java | 159 + .../BusinessSearchAddressResponseType.java | 69 + ...usinessSearchDossierNumberRequestType.java | 114 + ...sinessSearchDossierNumberResponseType.java | 69 + .../wsdl/BusinessSearchNameRequestType.java | 87 + .../wsdl/BusinessSearchNameResponseType.java | 69 + .../BusinessSearchParametersRequestType.java | 267 + .../BusinessSearchParametersResponseType.java | 69 + ...BusinessSearchParametersV2RequestType.java | 240 + ...usinessSearchParametersV2ResponseType.java | 69 + ...BusinessSearchParametersV3RequestType.java | 240 + ...usinessSearchParametersV3ResponseType.java | 69 + .../BusinessSearchPostcodeRequestType.java | 159 + .../BusinessSearchPostcodeResponseType.java | 69 + .../BusinessSearchSelectionRequestType.java | 306 + .../BusinessSearchSelectionResponseType.java | 69 + .../BusinessSearchSelectionV2RequestType.java | 333 + ...BusinessSearchSelectionV2ResponseType.java | 69 + .../BusinessUpdateAddDossierRequestType.java | 96 + .../BusinessUpdateAddDossierResponseType.java | 37 + ...BusinessUpdateCheckDossierRequestType.java | 123 + ...usinessUpdateCheckDossierResponseType.java | 69 + ...ssUpdateGetChangedDossiersRequestType.java | 117 + ...sUpdateGetChangedDossiersResponseType.java | 69 + .../BusinessUpdateGetDossiersRequestType.java | 87 + ...BusinessUpdateGetDossiersResponseType.java | 69 + .../wsdl/BusinessUpdateReference.java | 153 + .../wsdl/BusinessUpdateReferenceArray.java | 74 + .../BusinessUpdateReferencePagedResult.java | 96 + ...usinessUpdateRemoveDossierRequestType.java | 96 + ...sinessUpdateRemoveDossierResponseType.java | 37 + .../companyinfo/wsdl/Car.java | 557 + .../wsdl/CarATDPriceRequestType.java | 69 + .../wsdl/CarATDPriceResponseType.java | 69 + .../companyinfo/wsdl/CarATDPrices.java | 150 + .../companyinfo/wsdl/CarATDValuation.java | 145 + .../wsdl/CarATDValuationArray.java | 74 + .../companyinfo/wsdl/CarBP.java | 593 + .../companyinfo/wsdl/CarBPV2.java | 95 + .../companyinfo/wsdl/CarBody.java | 119 + .../companyinfo/wsdl/CarBodyArray.java | 74 + .../companyinfo/wsdl/CarCheckCode.java | 105 + .../companyinfo/wsdl/CarDataV3Result.java | 96 + .../companyinfo/wsdl/CarEnvironment.java | 232 + .../companyinfo/wsdl/CarExtended.java | 1082 + .../companyinfo/wsdl/CarOption.java | 150 + .../companyinfo/wsdl/CarOptions.java | 5448 +++++ .../wsdl/CarRDWCarCheckCodeRequestType.java | 96 + .../wsdl/CarRDWCarCheckCodeResponseType.java | 69 + .../wsdl/CarRDWCarDataBPRequestType.java | 69 + .../wsdl/CarRDWCarDataBPResponseType.java | 69 + .../wsdl/CarRDWCarDataBPV2RequestType.java | 69 + .../wsdl/CarRDWCarDataBPV2ResponseType.java | 69 + .../CarRDWCarDataExtendedRequestType.java | 96 + .../CarRDWCarDataExtendedResponseType.java | 69 + .../wsdl/CarRDWCarDataOptionsRequestType.java | 69 + .../CarRDWCarDataOptionsResponseType.java | 69 + .../companyinfo/wsdl/CarRDWCarDataPrice.java | 284 + .../wsdl/CarRDWCarDataPriceRequestType.java | 69 + .../wsdl/CarRDWCarDataPriceResponseType.java | 69 + .../wsdl/CarRDWCarDataRequestType.java | 69 + .../wsdl/CarRDWCarDataResponseType.java | 69 + .../wsdl/CarRDWCarDataV2RequestType.java | 69 + .../wsdl/CarRDWCarDataV2ResponseType.java | 69 + .../wsdl/CarRDWCarDataV3RequestType.java | 69 + .../wsdl/CarRDWCarDataV3ResponseType.java | 69 + .../companyinfo/wsdl/CarStatus.java | 147 + .../companyinfo/wsdl/CarType.java | 215 + .../companyinfo/wsdl/CarTypeArray.java | 74 + .../companyinfo/wsdl/CarV2.java | 96 + .../companyinfo/wsdl/CarV3.java | 576 + .../companyinfo/wsdl/CarVWEBasicTypeData.java | 1040 + .../wsdl/CarVWEBasicTypeDataRequestType.java | 69 + .../wsdl/CarVWEBasicTypeDataResponseType.java | 69 + .../companyinfo/wsdl/CarVWEBrand.java | 88 + .../companyinfo/wsdl/CarVWEBrandArray.java | 74 + .../wsdl/CarVWEBrandPagedResult.java | 96 + .../wsdl/CarVWEListBrandsRequestType.java | 98 + .../wsdl/CarVWEListBrandsResponseType.java | 69 + .../wsdl/CarVWEListModelsRequestType.java | 117 + .../wsdl/CarVWEListModelsResponseType.java | 69 + .../wsdl/CarVWEListVersionsRequestType.java | 211 + .../wsdl/CarVWEListVersionsResponseType.java | 69 + .../companyinfo/wsdl/CarVWEMeldcodeCheck.java | 87 + .../wsdl/CarVWEMeldcodeCheckRequestType.java | 96 + .../wsdl/CarVWEMeldcodeCheckResponseType.java | 69 + .../companyinfo/wsdl/CarVWEModel.java | 88 + .../companyinfo/wsdl/CarVWEModelArray.java | 74 + .../wsdl/CarVWEModelPagedResult.java | 96 + .../companyinfo/wsdl/CarVWEOption.java | 141 + .../companyinfo/wsdl/CarVWEOptionArray.java | 74 + .../companyinfo/wsdl/CarVWEOptionPackage.java | 133 + .../wsdl/CarVWEOptionPackageArray.java | 74 + .../companyinfo/wsdl/CarVWEOptions.java | 123 + .../wsdl/CarVWEOptionsManufacture.java | 115 + .../wsdl/CarVWEOptionsPackage.java | 115 + .../wsdl/CarVWEOptionsRequestType.java | 88 + .../wsdl/CarVWEOptionsResponseType.java | 69 + .../wsdl/CarVWEOptionsStandard.java | 115 + .../companyinfo/wsdl/CarVWEPhoto.java | 121 + .../companyinfo/wsdl/CarVWEPhotoArray.java | 74 + .../wsdl/CarVWEPhotosRequestType.java | 61 + .../wsdl/CarVWEPhotosResponseType.java | 69 + .../companyinfo/wsdl/CarVWEPrices.java | 342 + .../companyinfo/wsdl/CarVWEVersion.java | 320 + .../companyinfo/wsdl/CarVWEVersionArray.java | 74 + .../wsdl/CarVWEVersionPagedResult.java | 96 + .../companyinfo/wsdl/CarVWEVersionPrice.java | 575 + .../wsdl/CarVWEVersionPriceReference.java | 107 + .../CarVWEVersionPriceReferenceArray.java | 74 + .../wsdl/CarVWEVersionPriceRequestType.java | 88 + .../wsdl/CarVWEVersionPriceResponseType.java | 69 + .../wsdl/CarVWEVersionYearData.java | 603 + .../CarVWEVersionYearDataRequestType.java | 80 + .../CarVWEVersionYearDataResponseType.java | 69 + .../companyinfo/wsdl/City.java | 159 + .../companyinfo/wsdl/CityArray.java | 74 + .../companyinfo/wsdl/CityPagedResult.java | 96 + .../companyinfo/wsdl/CityV2.java | 276 + .../companyinfo/wsdl/CityV2Array.java | 74 + .../companyinfo/wsdl/CityV2PagedResult.java | 96 + .../wsdl/ComplianceAddressReference.java | 174 + .../wsdl/ComplianceAddressReferenceArray.java | 74 + .../companyinfo/wsdl/ComplianceBusiness.java | 394 + .../wsdl/ComplianceBusinessReference.java | 124 + .../ComplianceBusinessReferenceArray.java | 74 + .../ComplianceBusinessSearchReference.java | 177 + ...omplianceBusinessSearchReferenceArray.java | 74 + ...nceBusinessSearchReferencePagedResult.java | 96 + .../companyinfo/wsdl/ComplianceDate.java | 111 + .../wsdl/ComplianceDocumentReference.java | 153 + .../ComplianceDocumentReferenceArray.java | 74 + .../ComplianceGetBusinessRequestType.java | 69 + .../ComplianceGetBusinessResponseType.java | 69 + .../wsdl/ComplianceGetPersonRequestType.java | 69 + .../wsdl/ComplianceGetPersonResponseType.java | 69 + .../wsdl/ComplianceNoteReference.java | 95 + .../wsdl/ComplianceNoteReferenceArray.java | 74 + .../companyinfo/wsdl/CompliancePerson.java | 691 + .../wsdl/CompliancePersonReference.java | 181 + .../wsdl/CompliancePersonReferenceArray.java | 74 + .../wsdl/CompliancePersonSearchReference.java | 234 + .../CompliancePersonSearchReferenceArray.java | 74 + ...iancePersonSearchReferencePagedResult.java | 96 + .../wsdl/ComplianceRoleReference.java | 149 + .../wsdl/ComplianceRoleReferenceArray.java | 74 + .../wsdl/ComplianceSanctionReference.java | 87 + .../ComplianceSanctionReferenceArray.java | 74 + ...ComplianceSearchBusinessesRequestType.java | 241 + ...omplianceSearchBusinessesResponseType.java | 69 + .../ComplianceSearchPersonsRequestType.java | 144 + .../ComplianceSearchPersonsResponseType.java | 69 + .../wsdl/CreateTestUserRequestType.java | 177 + .../wsdl/CreateTestUserResponseType.java | 69 + .../wsdl/CreditsafeAdditionalInformation.java | 93 + .../companyinfo/wsdl/CreditsafeAddressV2.java | 227 + .../wsdl/CreditsafeAddressV2Array.java | 74 + .../companyinfo/wsdl/CreditsafeAdvisor.java | 96 + .../wsdl/CreditsafeAdvisorArray.java | 74 + .../wsdl/CreditsafeBalanceSheet.java | 1359 ++ .../companyinfo/wsdl/CreditsafeBanker.java | 122 + .../wsdl/CreditsafeBankerArray.java | 74 + .../CreditsafeBeAdditionalInformation.java | 229 + .../wsdl/CreditsafeBeBankruptcyEvent.java | 478 + .../CreditsafeBeBankruptcyEventArray.java | 74 + .../companyinfo/wsdl/CreditsafeBeEvent.java | 97 + .../wsdl/CreditsafeBeEventArray.java | 74 + .../wsdl/CreditsafeBeIndustryComparison.java | 180 + .../companyinfo/wsdl/CreditsafeBeMisc.java | 69 + .../wsdl/CreditsafeBeNSSODetail.java | 180 + .../wsdl/CreditsafeBeNSSODetailArray.java | 74 + .../wsdl/CreditsafeBeNegativeInformation.java | 123 + ...reditsafeBePaymentExpectationsSummary.java | 97 + .../wsdl/CreditsafeBeProtestedBill.java | 262 + .../wsdl/CreditsafeBeProtestedBillArray.java | 74 + .../CreditsafeBeRegisteredContractor.java | 127 + ...CreditsafeBeRegisteredContractorArray.java | 74 + .../wsdl/CreditsafeChangedString.java | 99 + .../wsdl/CreditsafeChangedStringArray.java | 74 + .../companyinfo/wsdl/CreditsafeCompany.java | 328 + .../wsdl/CreditsafeCompanyActivity.java | 96 + .../wsdl/CreditsafeCompanyActivityArray.java | 74 + ...itsafeCompanyActivityClassificationV2.java | 93 + ...eCompanyActivityClassificationV2Array.java | 74 + .../wsdl/CreditsafeCompanyActivityV2.java | 122 + .../CreditsafeCompanyActivityV2Array.java | 74 + ...CompanyAdditionalInformationCommentV2.java | 93 + ...nyAdditionalInformationCommentV2Array.java | 74 + ...lInformationDEAdditionalInformationV2.java | 202 + ...rmationDEAdditionalInformationV2Array.java | 74 + ...AdditionalInformationDEImageAccountV2.java | 209 + ...ionalInformationDEImageAccountV2Array.java | 74 + ...dditionalInformationDEMiscellaneousV2.java | 393 + ...onalInformationDEMiscellaneousV2Array.java | 74 + ...CompanyAdditionalInformationDEOwnerV2.java | 174 + ...nyAdditionalInformationDEOwnerV2Array.java | 74 + ...dditionalInformationDETurnoverRangeV2.java | 94 + ...onalInformationDETurnoverRangeV2Array.java | 74 + ...dditionalInformationHistoricalEventV2.java | 151 + ...onalInformationHistoricalEventV2Array.java | 74 + ...lInformationNLAdditionalInformationV2.java | 283 + ...rmationNLAdditionalInformationV2Array.java | 74 + ...dditionalInformationNLFinancialItemV2.java | 125 + ...onalInformationNLFinancialItemV2Array.java | 74 + ...onalInformationNLIndustryComparisonV2.java | 96 + ...nformationNLIndustryComparisonV2Array.java | 74 + ...mationNLIndustryQuartileAnalysisDayV2.java | 119 + ...nNLIndustryQuartileAnalysisDayV2Array.java | 74 + ...formationNLIndustryQuartileAnalysisV2.java | 96 + ...tionNLIndustryQuartileAnalysisV2Array.java | 74 + ...anyAdditionalInformationNLKvkFilingV2.java | 96 + ...ditionalInformationNLKvkFilingV2Array.java | 74 + ...onNLLetterOfLiabilityInformation403V2.java | 602 + ...etterOfLiabilityInformation403V2Array.java | 74 + ...dditionalInformationNLMiscellaneousV2.java | 234 + ...onalInformationNLMiscellaneousV2Array.java | 74 + ...rmationNLPaymentExpectationsSummaryV2.java | 178 + ...onNLPaymentExpectationsSummaryV2Array.java | 74 + ...ditsafeCompanyAdditionalInformationV2.java | 119 + ...feCompanyAdditionalInformationV2Array.java | 74 + .../wsdl/CreditsafeCompanyAdvisorV2.java | 96 + .../wsdl/CreditsafeCompanyAdvisorV2Array.java | 74 + .../wsdl/CreditsafeCompanyArray.java | 74 + .../wsdl/CreditsafeCompanyBalanceSheetV2.java | 1281 ++ .../CreditsafeCompanyBalanceSheetV2Array.java | 74 + .../wsdl/CreditsafeCompanyBankerV2.java | 121 + .../wsdl/CreditsafeCompanyBankerV2Array.java | 74 + .../CreditsafeCompanyBasicInformationV2.java | 342 + ...ditsafeCompanyBasicInformationV2Array.java | 74 + .../wsdl/CreditsafeCompanyCompanyV2.java | 391 + .../wsdl/CreditsafeCompanyCompanyV2Array.java | 74 + ...CreditsafeCompanyContactInformationV2.java | 96 + ...tsafeCompanyContactInformationV2Array.java | 74 + .../wsdl/CreditsafeCompanyCreditRatingV2.java | 177 + .../CreditsafeCompanyCreditRatingV2Array.java | 74 + .../wsdl/CreditsafeCompanyCreditScoreV2.java | 96 + .../CreditsafeCompanyCreditScoreV2Array.java | 74 + ...reditsafeCompanyEmployeeInformationV2.java | 96 + ...safeCompanyEmployeeInformationV2Array.java | 74 + ...CreditsafeCompanyFinancialStatementV2.java | 286 + ...tsafeCompanyFinancialStatementV2Array.java | 74 + .../CreditsafeCompanyGroupStructureV2.java | 150 + ...reditsafeCompanyGroupStructureV2Array.java | 74 + .../CreditsafeCompanyIdentificationV2.java | 96 + ...reditsafeCompanyIdentificationV2Array.java | 74 + .../wsdl/CreditsafeCompanyKeyValueV2.java | 93 + .../CreditsafeCompanyKeyValueV2Array.java | 74 + .../wsdl/CreditsafeCompanyListEntry.java | 148 + .../wsdl/CreditsafeCompanyListEntryArray.java | 74 + ...panyNegativeInformationDEBankruptcyV2.java | 69 + ...egativeInformationDEBankruptcyV2Array.java | 74 + ...yNegativeInformationDEDirectorEventV2.java | 174 + ...tiveInformationDEDirectorEventV2Array.java | 74 + ...egativeInformationDEInsolvencyEventV2.java | 99 + ...veInformationDEInsolvencyEventV2Array.java | 74 + ...eInformationDEInsolvencyInformationV2.java | 122 + ...rmationDEInsolvencyInformationV2Array.java | 74 + ...CompanyNegativeInformationDETrusteeV2.java | 281 + ...nyNegativeInformationDETrusteeV2Array.java | 74 + ...ditsafeCompanyNegativeInformationDEV2.java | 122 + ...feCompanyNegativeInformationDEV2Array.java | 74 + ...mpanyNegativeInformationNLCourtItemV2.java | 125 + ...NegativeInformationNLCourtItemV2Array.java | 74 + ...ditsafeCompanyNegativeInformationNLV2.java | 69 + ...feCompanyNegativeInformationNLV2Array.java | 74 + ...reditsafeCompanyNegativeInformationV2.java | 119 + ...safeCompanyNegativeInformationV2Array.java | 74 + .../CreditsafeCompanyOtherFinancialsV2.java | 97 + ...editsafeCompanyOtherFinancialsV2Array.java | 74 + .../CreditsafeCompanyOtherInformationV2.java | 121 + ...ditsafeCompanyOtherInformationV2Array.java | 74 + .../wsdl/CreditsafeCompanyPagedResult.java | 96 + .../wsdl/CreditsafeCompanyPaymentDataV2.java | 67 + .../CreditsafeCompanyPaymentDataV2Array.java | 74 + .../CreditsafeCompanyProfitAndLossV2.java | 416 + ...CreditsafeCompanyProfitAndLossV2Array.java | 74 + .../wsdl/CreditsafeCompanyRatiosV2.java | 419 + .../wsdl/CreditsafeCompanyRatiosV2Array.java | 74 + .../wsdl/CreditsafeCompanyReportFull.java | 420 + .../wsdl/CreditsafeCompanyReportFullV2.java | 472 + .../CreditsafeCompanyReportFullV2Array.java | 74 + ...ditsafeCompanyShareCapitalStructureV2.java | 123 + ...feCompanyShareCapitalStructureV2Array.java | 74 + .../wsdl/CreditsafeCompanyShareHolderV2.java | 122 + .../CreditsafeCompanyShareHolderV2Array.java | 74 + .../wsdl/CreditsafeCompanyStatusV2.java | 93 + .../wsdl/CreditsafeCompanyStatusV2Array.java | 74 + .../wsdl/CreditsafeCompanySummaryV2.java | 283 + .../wsdl/CreditsafeCompanySummaryV2Array.java | 74 + .../wsdl/CreditsafeCompanyUpdate.java | 126 + .../wsdl/CreditsafeCompanyUpdateArray.java | 74 + .../CreditsafeCompanyUpdatePagedResult.java | 96 + .../companyinfo/wsdl/CreditsafeCompanyV2.java | 391 + .../wsdl/CreditsafeCompanyV2Array.java | 74 + .../wsdl/CreditsafeDescriptionV2.java | 119 + .../wsdl/CreditsafeDescriptionV2Array.java | 74 + .../companyinfo/wsdl/CreditsafeDirector.java | 205 + .../wsdl/CreditsafeDirectorArray.java | 74 + .../wsdl/CreditsafeEmployeeInformation.java | 97 + .../CreditsafeEmployeeInformationArray.java | 74 + .../wsdl/CreditsafeFinancialRatios.java | 420 + .../CreditsafeGetReportFullRequestType.java | 123 + .../CreditsafeGetReportFullResponseType.java | 69 + .../CreditsafeGetReportFullV2RequestType.java | 123 + ...CreditsafeGetReportFullV2ResponseType.java | 69 + .../CreditsafeIndustryQuartilyAnalysis.java | 96 + .../CreditsafeLtdCompanyBasicInformation.java | 479 + .../CreditsafeLtdCompanyIdentification.java | 149 + .../wsdl/CreditsafeLtdCompanySummary.java | 339 + .../wsdl/CreditsafeLtdContactInformation.java | 176 + .../wsdl/CreditsafeLtdCreditScore.java | 262 + .../wsdl/CreditsafeLtdDirectors.java | 96 + .../wsdl/CreditsafeLtdFinancialStatement.java | 149 + .../CreditsafeLtdFinancialStatementArray.java | 74 + .../wsdl/CreditsafeLtdGroupStructure.java | 150 + .../wsdl/CreditsafeLtdOtherInformation.java | 121 + .../CreditsafeLtdShareCapitalStructure.java | 124 + ...reditsafeMonitorAddCompanyRequestType.java | 69 + ...editsafeMonitorAddCompanyResponseType.java | 37 + ...MonitorGetUpdatedCompaniesRequestType.java | 90 + ...onitorGetUpdatedCompaniesResponseType.java | 69 + ...itsafeMonitorRemoveCompanyRequestType.java | 69 + ...tsafeMonitorRemoveCompanyResponseType.java | 37 + .../CreditsafeNlAdditionalInformation.java | 176 + .../wsdl/CreditsafeNlCourtData.java | 95 + .../wsdl/CreditsafeNlCourtDataFacts.java | 125 + .../wsdl/CreditsafeNlCourtDataReceiver.java | 93 + .../wsdl/CreditsafeNlLettersOfLiability.java | 156 + .../CreditsafeNlLettersOfLiabilityArray.java | 74 + ...afeNlLettersOfLiabilityInformation403.java | 209 + .../companyinfo/wsdl/CreditsafeNlMisc.java | 124 + .../wsdl/CreditsafeNlNegativeInformation.java | 69 + ...reditsafeNlPaymentExpectationsSummary.java | 178 + .../wsdl/CreditsafeOtherFinancials.java | 124 + .../wsdl/CreditsafePersonDirectorV2.java | 229 + .../wsdl/CreditsafePersonDirectorV2Array.java | 74 + .../wsdl/CreditsafePersonDirectorsV2.java | 96 + .../CreditsafePersonDirectorsV2Array.java | 74 + .../wsdl/CreditsafePersonPositionV2.java | 98 + .../wsdl/CreditsafePersonPositionV2Array.java | 74 + .../CreditsafePersonPreviousDirectorV2.java | 257 + ...editsafePersonPreviousDirectorV2Array.java | 74 + .../wsdl/CreditsafePreviousDirector.java | 99 + .../wsdl/CreditsafePreviousDirectorArray.java | 74 + .../wsdl/CreditsafeProfitAndLossFigures.java | 628 + .../companyinfo/wsdl/CreditsafeQuartiles.java | 120 + .../wsdl/CreditsafeSearchCriteria.java | 123 + .../CreditsafeSearchCriteriaCombination.java | 69 + ...ditsafeSearchCriteriaCombinationArray.java | 74 + .../wsdl/CreditsafeSearchCriteriaParam.java | 197 + .../CreditsafeSearchCriteriaParamArray.java | 74 + .../CreditsafeSearchCriteriaRequestType.java | 69 + .../CreditsafeSearchCriteriaResponseType.java | 69 + .../wsdl/CreditsafeSearchRequestType.java | 465 + .../wsdl/CreditsafeSearchResponseType.java | 69 + .../wsdl/CreditsafeSearchResultV2.java | 67 + .../wsdl/CreditsafeSearchV2RequestType.java | 339 + .../wsdl/CreditsafeSearchV2ResponseType.java | 69 + .../wsdl/CreditsafeShareHolder.java | 122 + .../wsdl/CreditsafeShareHolderArray.java | 74 + .../wsdl/CreditsafeStreetAddress.java | 95 + .../wsdl/CreditsafeStreetAddressArray.java | 74 + .../CreditsafeStreetAddressWithTelephone.java | 121 + ...itsafeStreetAddressWithTelephoneArray.java | 74 + .../companyinfo/wsdl/CreditsafeValueV2.java | 122 + .../wsdl/CreditsafeValueV2Array.java | 74 + .../companyinfo/wsdl/DNBAddress.java | 276 + .../wsdl/DNBBusinessReference.java | 296 + .../wsdl/DNBBusinessReferenceArray.java | 74 + .../wsdl/DNBBusinessReferencePagedResult.java | 96 + .../wsdl/DNBBusinessReferenceV2.java | 314 + .../wsdl/DNBBusinessReferenceV2Array.java | 74 + .../DNBBusinessReferenceV2PagedResult.java | 96 + .../wsdl/DNBBusinessVerification.java | 688 + .../companyinfo/wsdl/DNBCommentary.java | 95 + .../companyinfo/wsdl/DNBCommentaryArray.java | 74 + .../companyinfo/wsdl/DNBEmployeeCount.java | 175 + .../wsdl/DNBEnterpriseManagement.java | 1363 ++ .../companyinfo/wsdl/DNBMarketing.java | 358 + .../companyinfo/wsdl/DNBMarketingPlus.java | 958 + .../wsdl/DNBMarketingPlusLinkage.java | 366 + .../wsdl/DNBMarketingPlusLinkageResult.java | 123 + .../wsdl/DNBMarketingPlusResult.java | 96 + .../companyinfo/wsdl/DNBMonetaryAmount.java | 173 + .../companyinfo/wsdl/DNBQuickCheck.java | 1712 ++ .../companyinfo/wsdl/DNBRelatedBusiness.java | 150 + .../companyinfo/wsdl/DNBSICCode.java | 96 + .../companyinfo/wsdl/DNBSICCodeArray.java | 74 + .../companyinfo/wsdl/DNBScoreGroup.java | 365 + .../companyinfo/wsdl/DNBScoreGroupArray.java | 74 + .../companyinfo/wsdl/District.java | 132 + .../companyinfo/wsdl/DistrictArray.java | 74 + .../companyinfo/wsdl/DistrictPagedResult.java | 96 + .../DnbBusinessVerificationRequestType.java | 96 + .../DnbBusinessVerificationResponseType.java | 69 + .../DnbEnterpriseManagementRequestType.java | 96 + .../DnbEnterpriseManagementResponseType.java | 69 + .../wsdl/DnbGetReferenceRequestType.java | 96 + .../wsdl/DnbGetReferenceResponseType.java | 69 + .../wsdl/DnbQuickCheckRequestType.java | 96 + .../wsdl/DnbQuickCheckResponseType.java | 69 + .../wsdl/DnbSearchReferenceRequestType.java | 249 + .../wsdl/DnbSearchReferenceResponseType.java | 69 + .../wsdl/DnbSearchReferenceV2RequestType.java | 276 + .../DnbSearchReferenceV2ResponseType.java | 69 + ...ldbaseMarketingPlusLinkageRequestType.java | 96 + ...dbaseMarketingPlusLinkageResponseType.java | 69 + .../DnbWorldbaseMarketingPlusRequestType.java | 96 + ...DnbWorldbaseMarketingPlusResponseType.java | 69 + .../DnbWorldbaseMarketingRequestType.java | 96 + .../DnbWorldbaseMarketingResponseType.java | 69 + .../companyinfo/wsdl/DocumentOverzicht.java | 69 + .../companyinfo/wsdl/DriveInfo.java | 77 + .../DriveInfoDistanceLookupRequestType.java | 96 + .../DriveInfoDistanceLookupResponseType.java | 69 + .../wsdl/DriveInfoTimeLookupRequestType.java | 96 + .../wsdl/DriveInfoTimeLookupResponseType.java | 69 + .../wsdl/DutchAddressPostcodeRange.java | 361 + ...AddressRangePostcodeSearchRequestType.java | 69 + ...ddressRangePostcodeSearchResponseType.java | 69 + .../wsdl/DutchBusinessAdditionalPosition.java | 261 + .../DutchBusinessAdditionalPositionArray.java | 74 + ...BusinessAdditionalPositionFunctionary.java | 261 + .../wsdl/DutchBusinessAddressV2.java | 200 + .../wsdl/DutchBusinessAddressV3.java | 226 + ...DutchBusinessAnnualFinancialStatement.java | 139 + ...sinessAnnualFinancialStatementSummary.java | 145 + .../wsdl/DutchBusinessChangeSet.java | 96 + .../companyinfo/wsdl/DutchBusinessDate.java | 115 + .../companyinfo/wsdl/DutchBusinessDateV2.java | 119 + .../companyinfo/wsdl/DutchBusinessDateV3.java | 119 + .../wsdl/DutchBusinessDossier.java | 1573 ++ .../wsdl/DutchBusinessDossierHistory.java | 69 + .../wsdl/DutchBusinessDossierReference.java | 99 + .../DutchBusinessDossierReferenceArray.java | 74 + .../wsdl/DutchBusinessDossierV2.java | 1745 ++ .../wsdl/DutchBusinessDossierV3.java | 1544 ++ .../wsdl/DutchBusinessEnterprise.java | 900 + .../wsdl/DutchBusinessEnterpriseV2.java | 387 + .../wsdl/DutchBusinessEnterpriseV3.java | 387 + .../wsdl/DutchBusinessEstablishment.java | 956 + .../wsdl/DutchBusinessEstablishmentArray.java | 74 + .../DutchBusinessEstablishmentReference.java | 312 + ...chBusinessEstablishmentReferenceArray.java | 74 + ...nessEstablishmentReferencePagedResult.java | 96 + .../wsdl/DutchBusinessEstablishmentV2.java | 497 + .../DutchBusinessEstablishmentV2Array.java | 74 + .../wsdl/DutchBusinessEstablishmentV3.java | 497 + .../DutchBusinessEstablishmentV3Array.java | 74 + .../DutchBusinessExtractChangeForecast.java | 69 + .../wsdl/DutchBusinessExtractChangeSet.java | 96 + .../wsdl/DutchBusinessExtractDataV2.java | 256 + .../wsdl/DutchBusinessExtractDataV3.java | 256 + .../wsdl/DutchBusinessExtractDocument.java | 97 + .../DutchBusinessExtractDocumentData.java | 307 + .../DutchBusinessExtractDocumentDataV2.java | 93 + .../DutchBusinessExtractDocumentDataV3.java | 117 + .../wsdl/DutchBusinessExtractHistory.java | 96 + .../wsdl/DutchBusinessExtractReference.java | 126 + .../DutchBusinessExtractReferenceArray.java | 74 + .../wsdl/DutchBusinessFormattedAddress.java | 119 + ...nessGetAdditionalPositionsRequestType.java | 153 + ...essGetAdditionalPositionsResponseType.java | 69 + ...hBusinessGetAdditionalPositionsResult.java | 177 + ...etAnnualFinancialStatementRequestType.java | 114 + ...tAnnualFinancialStatementResponseType.java | 69 + ...sinessGetConcernRelationsDetailsGraph.java | 96 + ...ssGetConcernRelationsDetailsGraphLink.java | 123 + ...ConcernRelationsDetailsGraphLinkArray.java | 74 + ...ssGetConcernRelationsDetailsGraphNode.java | 96 + ...ConcernRelationsDetailsGraphNodeArray.java | 74 + ...GetConcernRelationsDetailsRequestType.java | 88 + ...etConcernRelationsDetailsResponseType.java | 69 + ...inessGetConcernRelationsDetailsResult.java | 145 + ...sGetConcernRelationsOverviewReference.java | 151 + ...oncernRelationsOverviewReferenceArray.java | 74 + ...etConcernRelationsOverviewRequestType.java | 69 + ...tConcernRelationsOverviewResponseType.java | 69 + ...nessGetConcernRelationsOverviewResult.java | 69 + ...hBusinessGetDossierHistoryRequestType.java | 127 + ...BusinessGetDossierHistoryResponseType.java | 69 + .../DutchBusinessGetDossierRequestType.java | 96 + .../DutchBusinessGetDossierResponseType.java | 69 + .../DutchBusinessGetDossierV2RequestType.java | 96 + ...DutchBusinessGetDossierV2ResponseType.java | 69 + .../DutchBusinessGetDossierV3RequestType.java | 96 + ...DutchBusinessGetDossierV3ResponseType.java | 69 + ...nessGetExtractDocumentDataRequestType.java | 88 + ...essGetExtractDocumentDataResponseType.java | 69 + ...ssGetExtractDocumentDataV2RequestType.java | 69 + ...sGetExtractDocumentDataV2ResponseType.java | 69 + ...ssGetExtractDocumentDataV3RequestType.java | 88 + ...sGetExtractDocumentDataV3ResponseType.java | 69 + ...BusinessGetExtractDocumentRequestType.java | 88 + ...usinessGetExtractDocumentResponseType.java | 69 + ...ssGetExtractHistoryChangedRequestType.java | 127 + ...sGetExtractHistoryChangedResponseType.java | 69 + ...ExtractHistoryDocumentDataRequestType.java | 69 + ...xtractHistoryDocumentDataResponseType.java | 69 + ...tractHistoryDocumentDataV2RequestType.java | 69 + ...ractHistoryDocumentDataV2ResponseType.java | 69 + ...oryDocumentDataV3ByDossierRequestType.java | 146 + ...ryDocumentDataV3ByDossierResponseType.java | 69 + ...tractHistoryDocumentDataV3RequestType.java | 88 + ...ractHistoryDocumentDataV3ResponseType.java | 69 + ...hBusinessGetExtractHistoryRequestType.java | 127 + ...BusinessGetExtractHistoryResponseType.java | 69 + ...utchBusinessGetLegalEntityRequestType.java | 69 + ...tchBusinessGetLegalEntityResponseType.java | 69 + ...LegalExtractDocumentDataV2RequestType.java | 69 + ...egalExtractDocumentDataV2ResponseType.java | 69 + ...LegalExtractDocumentDataV3RequestType.java | 88 + ...egalExtractDocumentDataV3ResponseType.java | 69 + .../wsdl/DutchBusinessGetLeiRequestType.java | 69 + .../wsdl/DutchBusinessGetLeiResponseType.java | 69 + .../wsdl/DutchBusinessGetLeiResult.java | 123 + ...ssGetNonMarketingIndicatorRequestType.java | 96 + ...sGetNonMarketingIndicatorResponseType.java | 69 + ...usinessGetOrganizationTreeRequestType.java | 69 + ...sinessGetOrganizationTreeResponseType.java | 69 + .../DutchBusinessGetPositionsRequestType.java | 69 + ...DutchBusinessGetPositionsResponseType.java | 69 + ...hBusinessGetSBIDescriptionRequestType.java | 96 + ...BusinessGetSBIDescriptionResponseType.java | 69 + .../wsdl/DutchBusinessGetSBIRequestType.java | 123 + .../wsdl/DutchBusinessGetSBIResponseType.java | 69 + .../DutchBusinessGetVatNumberRequestType.java | 69 + ...DutchBusinessGetVatNumberResponseType.java | 69 + .../wsdl/DutchBusinessIdentifiers.java | 123 + .../wsdl/DutchBusinessInsolvency.java | 95 + .../wsdl/DutchBusinessInsolvencyArray.java | 74 + .../DutchBusinessInsolvencyPublication.java | 121 + ...tchBusinessInsolvencyPublicationArray.java | 74 + .../wsdl/DutchBusinessLegalEntity.java | 1574 ++ .../wsdl/DutchBusinessLegalEntityData.java | 126 + .../wsdl/DutchBusinessLegalEntityV2.java | 1196 + .../wsdl/DutchBusinessLegalEntityV3.java | 1196 + .../wsdl/DutchBusinessLeiAddress.java | 176 + .../wsdl/DutchBusinessLeiBusinessEntity.java | 287 + .../wsdl/DutchBusinessLeiLegalForm.java | 69 + .../wsdl/DutchBusinessLeiRegistration.java | 209 + ...DutchBusinessLeiRegistrationAuthority.java | 96 + .../wsdl/DutchBusinessLeiSuccessor.java | 95 + .../wsdl/DutchBusinessMoneyV2.java | 119 + .../wsdl/DutchBusinessMoneyV3.java | 119 + .../wsdl/DutchBusinessNewsCompany.java | 96 + .../wsdl/DutchBusinessNewsCompanyArray.java | 74 + .../wsdl/DutchBusinessNewsItem.java | 289 + .../wsdl/DutchBusinessNewsItemArray.java | 74 + .../DutchBusinessNewsItemPagedResult.java | 96 + .../DutchBusinessNonMarketingIndicator.java | 144 + .../wsdl/DutchBusinessOrganizationNode.java | 148 + .../DutchBusinessOrganizationNodeArray.java | 74 + .../DutchBusinessOrganizationReferenceV2.java | 148 + .../DutchBusinessOrganizationReferenceV3.java | 148 + .../wsdl/DutchBusinessOrganizationTree.java | 123 + .../wsdl/DutchBusinessPartnership.java | 551 + .../wsdl/DutchBusinessPartnershipArray.java | 74 + .../wsdl/DutchBusinessPartnershipV2.java | 416 + .../wsdl/DutchBusinessPartnershipV3.java | 416 + .../companyinfo/wsdl/DutchBusinessPeriod.java | 100 + .../wsdl/DutchBusinessPersonV2.java | 309 + .../wsdl/DutchBusinessPersonV3.java | 309 + .../wsdl/DutchBusinessPersonnelInfoV2.java | 119 + .../wsdl/DutchBusinessPersonnelInfoV3.java | 119 + .../wsdl/DutchBusinessPosition.java | 1221 + .../wsdl/DutchBusinessPositionArray.java | 74 + .../DutchBusinessPositionAuthorization.java | 154 + ...tchBusinessPositionAuthorizationArray.java | 74 + .../wsdl/DutchBusinessPositionCompany.java | 204 + .../wsdl/DutchBusinessPositionV2.java | 929 + .../wsdl/DutchBusinessPositionV2Array.java | 74 + .../wsdl/DutchBusinessPositionV3.java | 929 + .../wsdl/DutchBusinessPositionV3Array.java | 74 + .../wsdl/DutchBusinessPositions.java | 125 + .../wsdl/DutchBusinessReference.java | 250 + .../wsdl/DutchBusinessReferenceArray.java | 74 + .../DutchBusinessReferencePagedResult.java | 96 + .../wsdl/DutchBusinessReferenceV2.java | 277 + .../wsdl/DutchBusinessReferenceV2Array.java | 74 + .../DutchBusinessReferenceV2PagedResult.java | 96 + .../wsdl/DutchBusinessSBICode.java | 96 + .../wsdl/DutchBusinessSBICodeArray.java | 74 + .../wsdl/DutchBusinessSBICodeInfo.java | 96 + .../wsdl/DutchBusinessSBICollection.java | 96 + .../wsdl/DutchBusinessSBICollectionArray.java | 74 + .../wsdl/DutchBusinessSBISection.java | 96 + .../wsdl/DutchBusinessSbiCodeV2.java | 95 + .../wsdl/DutchBusinessSbiCodeV2Array.java | 74 + .../wsdl/DutchBusinessSbiCodeV3.java | 95 + .../wsdl/DutchBusinessSbiCodeV3Array.java | 74 + ...usinessSearchDossierNumberRequestType.java | 141 + ...sinessSearchDossierNumberResponseType.java | 69 + ...sinessSearchEstablishmentsRequestType.java | 141 + ...inessSearchEstablishmentsResponseType.java | 69 + ...usinessSearchNewsByDossierRequestType.java | 172 + ...sinessSearchNewsByDossierResponseType.java | 69 + ...chBusinessSearchParametersRequestType.java | 287 + ...hBusinessSearchParametersResponseType.java | 69 + ...BusinessSearchParametersV2RequestType.java | 287 + ...usinessSearchParametersV2ResponseType.java | 69 + ...utchBusinessSearchPostcodeRequestType.java | 133 + ...tchBusinessSearchPostcodeResponseType.java | 69 + .../wsdl/DutchBusinessSearchRequestType.java | 314 + .../wsdl/DutchBusinessSearchResponseType.java | 69 + ...tchBusinessSearchSelectionRequestType.java | 387 + ...chBusinessSearchSelectionResponseType.java | 69 + ...inessSearchSelectionSimpleRequestType.java | 360 + ...nessSearchSelectionSimpleResponseType.java | 69 + .../wsdl/DutchBusinessStructure.java | 122 + ...inessUBOCheckInvestigationRequestType.java | 69 + ...nessUBOCheckInvestigationResponseType.java | 69 + .../DutchBusinessUBOClassificationResult.java | 123 + .../DutchBusinessUBOClassifiedPerson.java | 126 + .../wsdl/DutchBusinessUBOClassifiedRole.java | 149 + .../DutchBusinessUBOClassifiedSuspect.java | 150 + ...utchBusinessUBOClassifiedSuspectArray.java | 74 + ...ssUBOClassifyInvestigationRequestType.java | 96 + ...sUBOClassifyInvestigationResponseType.java | 69 + ...inessUBOCostsInvestigationRequestType.java | 69 + ...nessUBOCostsInvestigationResponseType.java | 69 + ...chBusinessUBOCostsInvestigationResult.java | 150 + .../wsdl/DutchBusinessUBOExtract.java | 150 + .../DutchBusinessUBOInvestigationResult.java | 177 + .../DutchBusinessUBOInvestigationStatus.java | 125 + .../DutchBusinessUBOInvestigationToken.java | 69 + .../wsdl/DutchBusinessUBOOrganisation.java | 201 + .../DutchBusinessUBOOrganisationArray.java | 74 + .../DutchBusinessUBOOrganizationNode.java | 231 + ...DutchBusinessUBOOrganizationNodeArray.java | 74 + .../wsdl/DutchBusinessUBOPayment.java | 123 + .../wsdl/DutchBusinessUBOPerson.java | 315 + .../wsdl/DutchBusinessUBOPersonArray.java | 74 + ...nessUBOPickupInvestigationRequestType.java | 88 + ...essUBOPickupInvestigationResponseType.java | 69 + .../wsdl/DutchBusinessUBOReceipt.java | 96 + .../wsdl/DutchBusinessUBOReceiptItem.java | 141 + .../DutchBusinessUBOReceiptItemArray.java | 74 + .../wsdl/DutchBusinessUBORole.java | 178 + .../wsdl/DutchBusinessUBORoleArray.java | 74 + ...inessUBOStartInvestigationRequestType.java | 118 + ...nessUBOStartInvestigationResponseType.java | 69 + ...chBusinessUpdateAddDossierRequestType.java | 96 + ...hBusinessUpdateAddDossierResponseType.java | 37 + ...BusinessUpdateCheckDossierRequestType.java | 123 + ...usinessUpdateCheckDossierResponseType.java | 69 + ...ssUpdateGetChangedDossiersRequestType.java | 117 + ...sUpdateGetChangedDossiersResponseType.java | 69 + ...hBusinessUpdateGetDossiersRequestType.java | 87 + ...BusinessUpdateGetDossiersResponseType.java | 69 + ...hBusinessUpdateGetOverviewRequestType.java | 59 + ...BusinessUpdateGetOverviewResponseType.java | 69 + .../wsdl/DutchBusinessUpdateReference.java | 153 + .../DutchBusinessUpdateReferenceArray.java | 74 + ...tchBusinessUpdateReferencePagedResult.java | 96 + ...usinessUpdateRemoveDossierRequestType.java | 96 + ...sinessUpdateRemoveDossierResponseType.java | 37 + .../wsdl/DutchBusinessUpdateSubscription.java | 142 + .../DutchBusinessUpdateSubscriptionArray.java | 74 + ...BusinessUpdateSubscriptionPagedResult.java | 96 + .../wsdl/DutchBusinessVatNumber.java | 126 + .../companyinfo/wsdl/DutchVehicle.java | 386 + .../companyinfo/wsdl/DutchVehicleAxle.java | 284 + .../wsdl/DutchVehicleAxleArray.java | 74 + .../wsdl/DutchVehicleBodyApproval.java | 122 + .../wsdl/DutchVehicleBodyApprovalArray.java | 74 + .../companyinfo/wsdl/DutchVehicleData.java | 334 + .../companyinfo/wsdl/DutchVehicleEngine.java | 149 + .../wsdl/DutchVehicleEnvironment.java | 502 + .../wsdl/DutchVehicleEnvironmentArray.java | 74 + .../companyinfo/wsdl/DutchVehicleFeature.java | 359 + ...DutchVehicleGetMarketValueRequestType.java | 69 + ...utchVehicleGetMarketValueResponseType.java | 69 + ...utchVehicleGetOwnerHistoryRequestType.java | 69 + ...tchVehicleGetOwnerHistoryResponseType.java | 69 + ...ehicleGetPurchaseReferenceRequestType.java | 69 + ...hicleGetPurchaseReferenceResponseType.java | 69 + .../DutchVehicleGetVehicleRequestType.java | 69 + .../DutchVehicleGetVehicleResponseType.java | 69 + .../DutchVehicleGetVehicleV2RequestType.java | 69 + .../DutchVehicleGetVehicleV2ResponseType.java | 69 + .../wsdl/DutchVehicleMarketValue.java | 67 + .../companyinfo/wsdl/DutchVehicleMileage.java | 115 + .../wsdl/DutchVehicleOwnerHistory.java | 67 + .../wsdl/DutchVehicleOwnership.java | 145 + .../wsdl/DutchVehicleOwnershipArray.java | 74 + .../companyinfo/wsdl/DutchVehiclePrice.java | 178 + .../wsdl/DutchVehiclePriceValuation.java | 226 + .../wsdl/DutchVehiclePriceValuationArray.java | 74 + .../wsdl/DutchVehiclePurchase.java | 99 + .../wsdl/DutchVehiclePurchaseReference.java | 123 + .../companyinfo/wsdl/DutchVehicleRecall.java | 93 + .../wsdl/DutchVehicleReference.java | 205 + .../wsdl/DutchVehicleRegistration.java | 238 + .../companyinfo/wsdl/DutchVehicleRemark.java | 122 + .../wsdl/DutchVehicleRemarkArray.java | 74 + .../companyinfo/wsdl/DutchVehicleStatus.java | 199 + .../companyinfo/wsdl/DutchVehicleTaxData.java | 93 + .../wsdl/DutchVehicleTechnicalWeight.java | 258 + .../wsdl/DutchVehicleTypeApproval.java | 123 + .../companyinfo/wsdl/DutchVehicleV2.java | 412 + .../companyinfo/wsdl/EDRScore.java | 118 + .../wsdl/EdrGetScoreRequestType.java | 285 + .../wsdl/EdrGetScoreResponseType.java | 69 + .../companyinfo/wsdl/GCRAddress.java | 393 + .../companyinfo/wsdl/GCRAddressArray.java | 74 + .../companyinfo/wsdl/GCRAlarm.java | 88 + .../wsdl/GCRAlarmContactDetails.java | 122 + .../companyinfo/wsdl/GCRAnnualFigures.java | 124 + .../wsdl/GCRAnnualFiguresArray.java | 74 + .../companyinfo/wsdl/GCRAssets.java | 178 + .../companyinfo/wsdl/GCRBalanceSheet.java | 119 + .../wsdl/GCRBankAndInsurerData.java | 503 + .../wsdl/GCRBankAndInsurerDataArray.java | 74 + .../wsdl/GCRBankAndInsurerKeyFigures.java | 580 + .../companyinfo/wsdl/GCRBankruptcy.java | 235 + .../companyinfo/wsdl/GCRBirthInformation.java | 151 + .../companyinfo/wsdl/GCRBranchOffice.java | 259 + .../wsdl/GCRBranchOfficeArray.java | 74 + .../companyinfo/wsdl/GCRCalamity.java | 96 + .../companyinfo/wsdl/GCRCalamityEvent.java | 282 + .../wsdl/GCRCalamityEventArray.java | 74 + .../companyinfo/wsdl/GCRCalamityOther.java | 118 + .../wsdl/GCRCalamityOtherArray.java | 74 + .../companyinfo/wsdl/GCRCapital.java | 234 + .../companyinfo/wsdl/GCRCapitalArray.java | 74 + .../wsdl/GCRChamberOfCommerce.java | 177 + .../companyinfo/wsdl/GCRCompany.java | 285 + .../wsdl/GCRCompanyAnnualAccount.java | 557 + .../wsdl/GCRCompanyAnnualAccountArray.java | 74 + .../companyinfo/wsdl/GCRCompanyArray.java | 74 + .../wsdl/GCRCompanyContinuedUnder.java | 154 + .../wsdl/GCRCompanyContinuedUnderArray.java | 74 + .../companyinfo/wsdl/GCRCompanyItself.java | 472 + .../wsdl/GCRCompanyItselfAlarm.java | 150 + .../wsdl/GCRCompanyItselfCalamity.java | 392 + .../wsdl/GCRCompanyManagement.java | 95 + .../companyinfo/wsdl/GCRCompanyRelations.java | 93 + .../wsdl/GCRCompanyRelationsSimple.java | 93 + .../companyinfo/wsdl/GCRCompanySimple.java | 177 + .../wsdl/GCRCompanySimpleArray.java | 74 + .../companyinfo/wsdl/GCRContactDetails.java | 149 + .../companyinfo/wsdl/GCRContinuation.java | 152 + .../wsdl/GCRContinuationArray.java | 74 + .../companyinfo/wsdl/GCRCountry.java | 88 + .../companyinfo/wsdl/GCRCountryArray.java | 74 + .../companyinfo/wsdl/GCRCreditAdvice.java | 178 + .../companyinfo/wsdl/GCRCreditAdviceData.java | 142 + .../wsdl/GCRCreditAdviceMother.java | 96 + .../companyinfo/wsdl/GCRCreditFactor.java | 114 + .../wsdl/GCRCreditFactorArray.java | 74 + .../companyinfo/wsdl/GCRCreditRating.java | 311 + .../companyinfo/wsdl/GCRCurator.java | 100 + .../companyinfo/wsdl/GCRCuratorArray.java | 74 + .../GCRDebtRestructuringPrivatePersons.java | 372 + .../wsdl/GCRDeclarationOfLiability.java | 155 + .../wsdl/GCRDeclarationOfLiabilityArray.java | 74 + .../companyinfo/wsdl/GCRDiscontinuance.java | 122 + .../companyinfo/wsdl/GCRFiling.java | 153 + .../wsdl/GCRFinancialCalamity.java | 121 + .../wsdl/GCRFinancialCalamityArray.java | 74 + .../wsdl/GCRFinancialDetailValue.java | 194 + .../wsdl/GCRFinancialDetailValueArray.java | 74 + .../companyinfo/wsdl/GCRFinancialDetails.java | 122 + .../companyinfo/wsdl/GCRFirstDirector.java | 209 + .../wsdl/GCRFirstDirectorArray.java | 74 + .../companyinfo/wsdl/GCRFounded.java | 208 + .../companyinfo/wsdl/GCRFoundedArray.java | 74 + .../companyinfo/wsdl/GCRHistory.java | 122 + .../wsdl/GCRHistoryAdvisedLimit.java | 99 + .../wsdl/GCRHistoryAdvisedLimitArray.java | 74 + .../companyinfo/wsdl/GCRImportExport.java | 96 + .../companyinfo/wsdl/GCRItem.java | 204 + .../companyinfo/wsdl/GCRItemArray.java | 74 + .../companyinfo/wsdl/GCRJobTitle.java | 263 + .../companyinfo/wsdl/GCRJobTitleArray.java | 74 + .../companyinfo/wsdl/GCRLiabilities.java | 97 + .../companyinfo/wsdl/GCRLiaison.java | 124 + .../companyinfo/wsdl/GCRLiaisonArray.java | 74 + .../companyinfo/wsdl/GCRLiaisonCompany.java | 151 + .../wsdl/GCRLiaisonCompanyArray.java | 74 + .../wsdl/GCRLiaisonContactDetails.java | 122 + .../wsdl/GCRLiaisonOfficialData.java | 123 + .../companyinfo/wsdl/GCRManagement.java | 151 + .../companyinfo/wsdl/GCRManagementArray.java | 74 + .../companyinfo/wsdl/GCRMoratorium.java | 455 + .../wsdl/GCRNumberOfEmployees.java | 79 + .../wsdl/GCRNumberOfEmployeesArray.java | 74 + .../companyinfo/wsdl/GCROfficialData.java | 363 + .../companyinfo/wsdl/GCROriginatedFrom.java | 146 + .../wsdl/GCROriginatedFromArray.java | 74 + .../companyinfo/wsdl/GCRParticipation.java | 182 + .../wsdl/GCRParticipationArray.java | 74 + .../wsdl/GCRPaymentInformation.java | 98 + .../wsdl/GCRPaymentInformationArray.java | 74 + .../wsdl/GCRPercentageHistory.java | 98 + .../wsdl/GCRPercentageHistoryArray.java | 74 + .../companyinfo/wsdl/GCRPerson.java | 231 + .../companyinfo/wsdl/GCRPersonArray.java | 74 + .../companyinfo/wsdl/GCRPersonSimple.java | 150 + .../wsdl/GCRPersonSimpleArray.java | 74 + .../companyinfo/wsdl/GCRPersonalDetails.java | 200 + .../companyinfo/wsdl/GCRPersonnel.java | 151 + .../companyinfo/wsdl/GCRRating.java | 123 + .../companyinfo/wsdl/GCRRatingArray.java | 74 + .../companyinfo/wsdl/GCRRatingHistory.java | 98 + .../wsdl/GCRRatingHistoryArray.java | 74 + .../companyinfo/wsdl/GCRRatio.java | 123 + .../companyinfo/wsdl/GCRRatioArray.java | 74 + .../companyinfo/wsdl/GCRReceiver.java | 100 + .../companyinfo/wsdl/GCRReceiverArray.java | 74 + .../companyinfo/wsdl/GCRSectorOfIndustry.java | 123 + .../wsdl/GCRSectorOfIndustryArray.java | 74 + .../companyinfo/wsdl/GCRShareHolder.java | 209 + .../companyinfo/wsdl/GCRShareHolderArray.java | 74 + .../wsdl/GCRSpecialCompanyInformation.java | 122 + .../GCRSpecialCompanyInformationArray.java | 74 + .../companyinfo/wsdl/GCRTelephoneNumber.java | 169 + .../wsdl/GCRTelephoneNumberArray.java | 74 + .../companyinfo/wsdl/GCRTextSequence.java | 96 + .../wsdl/GCRTextSequenceArray.java | 74 + .../companyinfo/wsdl/GCRTitle.java | 88 + .../companyinfo/wsdl/GCRTitleArray.java | 74 + .../companyinfo/wsdl/GCRTradeName.java | 154 + .../companyinfo/wsdl/GCRTradeNameArray.java | 74 + .../companyinfo/wsdl/GemeenteStuk.java | 126 + .../companyinfo/wsdl/GemeenteStukArray.java | 74 + .../companyinfo/wsdl/GeoLocationAddress.java | 305 + ...onAddressCoordinatesLatLonRequestType.java | 141 + ...nAddressCoordinatesLatLonResponseType.java | 69 + ...cationAddressCoordinatesRDRequestType.java | 141 + ...ationAddressCoordinatesRDResponseType.java | 69 + .../wsdl/GeoLocationAddressV2.java | 313 + ...tedNeighborhoodCodesRadiusRequestType.java | 124 + ...edNeighborhoodCodesRadiusResponseType.java | 69 + ...nceSortedNeighborhoodCodesRequestType.java | 96 + ...ceSortedNeighborhoodCodesResponseType.java | 69 + ...tanceSortedPostcodesRadiusRequestType.java | 124 + ...anceSortedPostcodesRadiusResponseType.java | 69 + ...ionDistanceSortedPostcodesRequestType.java | 96 + ...onDistanceSortedPostcodesResponseType.java | 69 + ...oLocationHaversineDistanceRequestType.java | 137 + ...LocationHaversineDistanceResponseType.java | 59 + .../wsdl/GeoLocationInternationalAddress.java | 258 + ...alAddressCoordinatesLatLonRequestType.java | 195 + ...lAddressCoordinatesLatLonResponseType.java | 69 + ...AddressCoordinatesLatLonV2RequestType.java | 240 + ...ddressCoordinatesLatLonV2ResponseType.java | 69 + ...ternationalLatLonToAddressRequestType.java | 77 + ...ernationalLatLonToAddressResponseType.java | 69 + ...lPostcodeCoordinatesLatLonRequestType.java | 96 + ...PostcodeCoordinatesLatLonResponseType.java | 69 + ...oLocationLatLonToAddressV2RequestType.java | 77 + ...LocationLatLonToAddressV2ResponseType.java | 69 + ...eoLocationLatLonToPostcodeRequestType.java | 77 + ...oLocationLatLonToPostcodeResponseType.java | 69 + .../GeoLocationLatLonToRDRequestType.java | 77 + .../GeoLocationLatLonToRDResponseType.java | 69 + ...ghborhoodCoordinatesLatLonRequestType.java | 69 + ...hborhoodCoordinatesLatLonResponseType.java | 69 + ...nNeighborhoodCoordinatesRDRequestType.java | 69 + ...NeighborhoodCoordinatesRDResponseType.java | 69 + ...cationNeighborhoodDistanceRequestType.java | 96 + ...ationNeighborhoodDistanceResponseType.java | 59 + ...nPostcodeCoordinatesLatLonRequestType.java | 69 + ...PostcodeCoordinatesLatLonResponseType.java | 69 + ...ationPostcodeCoordinatesRDRequestType.java | 69 + ...tionPostcodeCoordinatesRDResponseType.java | 69 + ...eoLocationPostcodeDistanceRequestType.java | 96 + ...oLocationPostcodeDistanceResponseType.java | 59 + .../GeoLocationRDToAddressV2RequestType.java | 77 + .../GeoLocationRDToAddressV2ResponseType.java | 69 + .../GeoLocationRDToLatLonRequestType.java | 77 + .../GeoLocationRDToLatLonResponseType.java | 69 + .../GeoLocationRDToPostcodeRequestType.java | 77 + .../GeoLocationRDToPostcodeResponseType.java | 69 + ...aydonCreditCompanyLiaisonsRequestType.java | 70 + ...ydonCreditCompanyLiaisonsResponseType.java | 69 + .../GraydonCreditGetReportRequestType.java | 97 + .../GraydonCreditGetReportResponseType.java | 69 + .../GraydonCreditManagementRequestType.java | 70 + .../GraydonCreditManagementResponseType.java | 69 + .../GraydonCreditQuickscanRequestType.java | 70 + .../GraydonCreditQuickscanResponseType.java | 69 + .../wsdl/GraydonCreditRatingsRequestType.java | 70 + .../GraydonCreditRatingsResponseType.java | 69 + .../companyinfo/wsdl/GraydonCreditReport.java | 173 + .../wsdl/GraydonCreditReportAlarm.java | 69 + .../wsdl/GraydonCreditReportCalamity.java | 96 + .../GraydonCreditReportCompanyLiaisons.java | 121 + .../wsdl/GraydonCreditReportManagement.java | 121 + .../wsdl/GraydonCreditReportNormal.java | 123 + .../wsdl/GraydonCreditReportQuickscan.java | 149 + .../wsdl/GraydonCreditReportRatings.java | 229 + .../wsdl/GraydonCreditReportVatNumber.java | 95 + ...CreditSearchIdentificationRequestType.java | 123 + ...reditSearchIdentificationResponseType.java | 69 + .../GraydonCreditSearchNameRequestType.java | 123 + .../GraydonCreditSearchNameResponseType.java | 69 + ...raydonCreditSearchPostcodeRequestType.java | 142 + ...aydonCreditSearchPostcodeResponseType.java | 69 + .../GraydonCreditVatNumberRequestType.java | 70 + .../GraydonCreditVatNumberResponseType.java | 69 + .../companyinfo/wsdl/GraydonReference.java | 331 + .../wsdl/GraydonReferenceArray.java | 74 + .../wsdl/HeaderAuthenticateType.java | 69 + .../companyinfo/wsdl/HeaderLoginType.java | 96 + .../companyinfo/wsdl/InsolvencyAddress.java | 257 + .../wsdl/InsolvencyAddressArray.java | 74 + .../companyinfo/wsdl/InsolvencyAddresses.java | 93 + .../wsdl/InsolvencyAffectedCompany.java | 176 + .../wsdl/InsolvencyAffectedCompanyArray.java | 74 + .../companyinfo/wsdl/InsolvencyCase.java | 438 + .../wsdl/InsolvencyConcernedPerson.java | 286 + .../wsdl/InsolvencyCourtSession.java | 150 + .../companyinfo/wsdl/InsolvencyCurators.java | 69 + ...lvencyGetCaseByPublicationRequestType.java | 69 + ...vencyGetCaseByPublicationResponseType.java | 69 + .../wsdl/InsolvencyLegalPerformingPerson.java | 232 + .../InsolvencyLegalPerformingPersonArray.java | 74 + .../wsdl/InsolvencyLegalSubject.java | 96 + .../wsdl/InsolvencyPublication.java | 208 + .../wsdl/InsolvencyPublicationArray.java | 74 + .../wsdl/InsolvencyPublicationList.java | 99 + .../wsdl/InsolvencyPublications.java | 88 + .../companyinfo/wsdl/InsolvencyReceivers.java | 69 + .../companyinfo/wsdl/InsolvencyReport.java | 145 + .../wsdl/InsolvencyReportArray.java | 74 + ...rchPublicationsByCoCNumberRequestType.java | 69 + ...chPublicationsByCoCNumberResponseType.java | 69 + ...SearchPublicationsByPersonRequestType.java | 172 + ...earchPublicationsByPersonResponseType.java | 69 + .../wsdl/InsolvencyTreatingAuthority.java | 151 + .../companyinfo/wsdl/IntArray.java | 76 + .../companyinfo/wsdl/International.java | 249 + ...alAddressSearchInteractiveRequestType.java | 339 + ...lAddressSearchInteractiveResponseType.java | 69 + ...ternationalAddressSearchV2RequestType.java | 339 + ...ernationalAddressSearchV2ResponseType.java | 69 + .../InternationalAddressSearchV2Result.java | 123 + .../companyinfo/wsdl/InternationalArray.java | 74 + .../wsdl/InternationalFormattedAddress.java | 438 + .../InternationalFormattedAddressArray.java | 74 + ...ernationalFormattedAddressPagedResult.java | 96 + .../wsdl/InternationalPagedResult.java | 96 + .../companyinfo/wsdl/InternationalV2.java | 123 + .../wsdl/InternationalV2Array.java | 74 + ...KadasterAddressCoordinatesRequestType.java | 168 + ...adasterAddressCoordinatesResponseType.java | 69 + .../companyinfo/wsdl/KadasterBedrag.java | 87 + .../wsdl/KadasterBeknoptOnroerendeZaak.java | 284 + .../KadasterBeknoptOnroerendeZaakArray.java | 74 + .../wsdl/KadasterBerichtObjectDocument.java | 93 + .../wsdl/KadasterBronDocument.java | 93 + .../wsdl/KadasterBronDocumentRequestType.java | 177 + .../KadasterBronDocumentResponseType.java | 69 + .../companyinfo/wsdl/KadasterCoordinates.java | 133 + .../wsdl/KadasterDomicilieKeuze.java | 145 + .../wsdl/KadasterDomicilieKeuzeArray.java | 74 + .../wsdl/KadasterDomicilieKeuzeLijst.java | 96 + ...domsBerichtDocumentPerceelRequestType.java | 231 + ...omsBerichtDocumentPerceelResponseType.java | 69 + ...omsBerichtDocumentPostcodeRequestType.java | 141 + ...msBerichtDocumentPostcodeResponseType.java | 69 + ...terEigendomsBerichtPerceelRequestType.java | 204 + ...erEigendomsBerichtPerceelResponseType.java | 69 + ...rEigendomsBerichtPerceelV2RequestType.java | 204 + ...EigendomsBerichtPerceelV2ResponseType.java | 69 + ...erEigendomsBerichtPostcodeRequestType.java | 114 + ...rEigendomsBerichtPostcodeResponseType.java | 69 + ...EigendomsBerichtPostcodeV2RequestType.java | 114 + ...igendomsBerichtPostcodeV2ResponseType.java | 69 + .../wsdl/KadasterGerelateerdStukdeel.java | 121 + .../KadasterGerelateerdStukdeelArray.java | 74 + .../KadasterHypothecairBerichtObject.java | 150 + ...rHypothecairBerichtPerceelRequestType.java | 231 + ...HypothecairBerichtPerceelResponseType.java | 69 + ...ypothecairBerichtPerceelV2RequestType.java | 231 + ...pothecairBerichtPerceelV2ResponseType.java | 69 + ...ypothecairBerichtPerceelV3RequestType.java | 231 + ...pothecairBerichtPerceelV3ResponseType.java | 69 + ...HypothecairBerichtPostcodeRequestType.java | 141 + ...ypothecairBerichtPostcodeResponseType.java | 69 + ...pothecairBerichtPostcodeV2RequestType.java | 141 + ...othecairBerichtPostcodeV2ResponseType.java | 69 + ...pothecairBerichtPostcodeV3RequestType.java | 141 + ...othecairBerichtPostcodeV3ResponseType.java | 69 + .../KadasterHypothecairBerichtResultaat.java | 93 + ...KadasterHypothecairBerichtResultaatV2.java | 93 + .../companyinfo/wsdl/KadasterHypotheek.java | 122 + .../wsdl/KadasterHypotheekStuk.java | 256 + .../wsdl/KadasterHypotheekStukArray.java | 74 + .../wsdl/KadasterHypotheekStukLijst.java | 88 + .../wsdl/KadasterKadastraleKaart.java | 111 + ...sterKadastraleKaartPerceelRequestType.java | 249 + ...terKadastraleKaartPerceelResponseType.java | 69 + ...erKadastraleKaartPerceelV2RequestType.java | 249 + ...rKadastraleKaartPerceelV2ResponseType.java | 69 + ...terKadastraleKaartPostcodeRequestType.java | 159 + ...erKadastraleKaartPostcodeResponseType.java | 69 + ...rKadastraleKaartPostcodeV2RequestType.java | 159 + ...KadastraleKaartPostcodeV2ResponseType.java | 69 + .../KadasterKadastraleKaartResultaat.java | 95 + .../KadasterKadastraleKaartResultaatV2.java | 95 + ...adasterKoopsommenOverzichtRequestType.java | 87 + ...dasterKoopsommenOverzichtResponseType.java | 69 + ...asterKoopsommenOverzichtV2RequestType.java | 114 + ...sterKoopsommenOverzichtV2ResponseType.java | 69 + .../companyinfo/wsdl/KadasterListValue.java | 95 + .../wsdl/KadasterListValueArray.java | 74 + .../companyinfo/wsdl/KadasterLocatie.java | 96 + .../wsdl/KadasterLocatieBinnenland.java | 225 + .../wsdl/KadasterLocatieBinnenlandArray.java | 74 + .../wsdl/KadasterLocatieBuitenland.java | 147 + .../wsdl/KadasterNatuurlijkPersoon.java | 310 + .../wsdl/KadasterNietNatuurlijkPersoon.java | 149 + .../companyinfo/wsdl/KadasterOverzicht.java | 123 + .../KadasterOverzichtNatuurlijkPersoon.java | 174 + ...adasterOverzichtNietNatuurlijkPersoon.java | 122 + .../wsdl/KadasterOverzichtOnroerendeZaak.java | 175 + .../KadasterOverzichtOnroerendeZaakArray.java | 74 + .../wsdl/KadasterOverzichtPersoon.java | 150 + .../wsdl/KadasterOverzichtPersoonArray.java | 74 + .../wsdl/KadasterOverzichtPersoonV2.java | 176 + .../wsdl/KadasterOverzichtPersoonV2Array.java | 74 + .../wsdl/KadasterOverzichtRecht.java | 123 + .../wsdl/KadasterOverzichtRechtArray.java | 74 + .../companyinfo/wsdl/KadasterOverzichtV2.java | 123 + .../companyinfo/wsdl/KadasterPersoon.java | 256 + .../wsdl/KadasterPersoonArray.java | 74 + .../wsdl/KadasterPersoonLijst.java | 88 + .../companyinfo/wsdl/KadasterStukdeel.java | 308 + .../wsdl/KadasterStukdeelArray.java | 74 + .../wsdl/KadasterStukdeelRecht.java | 230 + .../wsdl/KadasterStukdeelRechtArray.java | 74 + .../KadasterStukdeelReferentiesLijst.java | 96 + ...kselKadastraleKaartPerceelRequestType.java | 231 + ...selKadastraleKaartPerceelResponseType.java | 69 + ...elKadastraleKaartPerceelV2RequestType.java | 231 + ...lKadastraleKaartPerceelV2ResponseType.java | 69 + ...elKadastraleKaartPerceelV3RequestType.java | 231 + ...lKadastraleKaartPerceelV3ResponseType.java | 69 + ...selKadastraleKaartPostcodeRequestType.java | 141 + ...elKadastraleKaartPostcodeResponseType.java | 69 + ...lKadastraleKaartPostcodeV2RequestType.java | 141 + ...KadastraleKaartPostcodeV2ResponseType.java | 69 + ...lKadastraleKaartPostcodeV3RequestType.java | 141 + ...KadastraleKaartPostcodeV3ResponseType.java | 69 + ...terUittrekselKadastraleKaartResultaat.java | 95 + ...rUittrekselKadastraleKaartResultaatV2.java | 95 + .../KadasterUittrekselKadastraleKaartV2.java | 93 + .../wsdl/KadasterV2AangebodenStuk.java | 340 + .../wsdl/KadasterV2AangebodenStukArray.java | 74 + .../wsdl/KadasterV2Aantekening.java | 391 + .../wsdl/KadasterV2AantekeningArray.java | 74 + .../wsdl/KadasterV2AantekeningWKPB.java | 175 + .../wsdl/KadasterV2AantekeningWKPBArray.java | 74 + .../wsdl/KadasterV2Aanvulling.java | 96 + .../wsdl/KadasterV2AanvullingArray.java | 74 + .../wsdl/KadasterV2AcgIdentificatie.java | 124 + .../wsdl/KadasterV2AdresLocatie.java | 123 + .../wsdl/KadasterV2AdresLocatieArray.java | 74 + .../companyinfo/wsdl/KadasterV2Bedrag.java | 87 + .../wsdl/KadasterV2Beslaglegging.java | 257 + .../wsdl/KadasterV2BeslagleggingArray.java | 74 + .../companyinfo/wsdl/KadasterV2Bijlage.java | 98 + .../wsdl/KadasterV2BijlageArray.java | 74 + .../companyinfo/wsdl/KadasterV2Breuk.java | 94 + .../wsdl/KadasterV2BronDocumentResponse.java | 65 + .../wsdl/KadasterV2Coordinaat.java | 148 + .../wsdl/KadasterV2DeelEnNummer.java | 173 + .../wsdl/KadasterV2ErfpachtCanon.java | 259 + .../wsdl/KadasterV2ErfpachtCanonArray.java | 74 + .../KadasterV2GerelateerdeOpenbareRuimte.java | 123 + .../KadasterV2GetBronDocumentRequestType.java | 177 + ...KadasterV2GetBronDocumentResponseType.java | 69 + ...hecairBerichtObjectByAdresRequestType.java | 168 + ...ecairBerichtObjectByAdresResponseType.java | 69 + ...jectByKadastraleAanduidingRequestType.java | 159 + ...ectByKadastraleAanduidingResponseType.java | 69 + ...airBerichtObjectByObjectIdRequestType.java | 96 + ...irBerichtObjectByObjectIdResponseType.java | 69 + ...straalBerichtObjectByAdresRequestType.java | 168 + ...traalBerichtObjectByAdresResponseType.java | 69 + ...jectByKadastraleAanduidingRequestType.java | 159 + ...ectByKadastraleAanduidingResponseType.java | 69 + ...aalBerichtObjectByObjectIdRequestType.java | 96 + ...alBerichtObjectByObjectIdResponseType.java | 69 + ...erV2GetKoopsommenOverzichtRequestType.java | 168 + ...rV2GetKoopsommenOverzichtResponseType.java | 69 + ...kselKadastraleKaartByAdresRequestType.java | 141 + ...selKadastraleKaartByAdresResponseType.java | 69 + ...aartByKadastraleAanduidingRequestType.java | 132 + ...artByKadastraleAanduidingResponseType.java | 69 + ...lKadastraleKaartByObjectIdRequestType.java | 69 + ...KadastraleKaartByObjectIdResponseType.java | 69 + .../wsdl/KadasterV2GevraagdGebied.java | 228 + .../wsdl/KadasterV2GezamenlijkAandeel.java | 95 + .../KadasterV2GezamenlijkAandeelArray.java | 74 + .../companyinfo/wsdl/KadasterV2Historie.java | 210 + .../companyinfo/wsdl/KadasterV2Hoofdzaak.java | 95 + .../wsdl/KadasterV2HoofdzaakArray.java | 74 + .../wsdl/KadasterV2HypothecairBericht.java | 398 + .../KadasterV2HypothecairBerichtResponse.java | 146 + .../companyinfo/wsdl/KadasterV2Hypotheek.java | 230 + .../wsdl/KadasterV2HypotheekArray.java | 74 + .../wsdl/KadasterV2JaarlijksBedrag.java | 95 + .../wsdl/KadasterV2JaarlijksBedragArray.java | 74 + .../wsdl/KadasterV2KadastraalBericht.java | 397 + .../KadasterV2KadastraalBerichtResponse.java | 146 + .../wsdl/KadasterV2KadastraleAanduiding.java | 149 + .../wsdl/KadasterV2KadastraleGrootte.java | 95 + .../companyinfo/wsdl/KadasterV2Koopsom.java | 150 + .../wsdl/KadasterV2KoopsomGegeven.java | 175 + .../wsdl/KadasterV2KoopsomGegevenArray.java | 74 + .../wsdl/KadasterV2KoopsommenOverzicht.java | 207 + ...KadasterV2KoopsommenOverzichtResponse.java | 91 + .../wsdl/KadasterV2LandinrichtingsRente.java | 94 + .../KadasterV2LandinrichtingsRenteArray.java | 74 + .../wsdl/KadasterV2LocatieBinnenland.java | 253 + .../KadasterV2LocatieBinnenlandArray.java | 74 + .../wsdl/KadasterV2LocatieBuitenland.java | 200 + .../KadasterV2LocatieBuitenlandArray.java | 74 + .../wsdl/KadasterV2LocatiePostbus.java | 148 + .../wsdl/KadasterV2LocatiePostbusArray.java | 74 + .../wsdl/KadasterV2Mandeligheid.java | 122 + .../wsdl/KadasterV2MandeligheidArray.java | 74 + .../wsdl/KadasterV2NatuurlijkPersoon.java | 577 + .../KadasterV2NatuurlijkPersoonArray.java | 74 + .../wsdl/KadasterV2NietNatuurlijkPersoon.java | 333 + .../KadasterV2NietNatuurlijkPersoonArray.java | 74 + .../wsdl/KadasterV2OnroerendeZaak.java | 790 + .../wsdl/KadasterV2OnroerendeZaakArray.java | 74 + .../KadasterV2OnroerendeZaakFiliatie.java | 119 + ...KadasterV2OnroerendeZaakFiliatieArray.java | 74 + .../KadasterV2OnroerendeZaakReference.java | 121 + ...adasterV2OnroerendeZaakReferenceArray.java | 74 + .../wsdl/KadasterV2OvergegaanIn.java | 318 + .../companyinfo/wsdl/KadasterV2Personen.java | 96 + .../wsdl/KadasterV2PostcodeTreffers.java | 266 + .../wsdl/KadasterV2RDCoordinaat.java | 96 + .../wsdl/KadasterV2RedenVerzoek.java | 95 + .../wsdl/KadasterV2RedenVerzoekArray.java | 74 + .../companyinfo/wsdl/KadasterV2Splitsing.java | 148 + .../wsdl/KadasterV2SplitsingArray.java | 74 + .../companyinfo/wsdl/KadasterV2Stuk.java | 201 + .../companyinfo/wsdl/KadasterV2StukArray.java | 74 + .../companyinfo/wsdl/KadasterV2Stukdeel.java | 283 + .../wsdl/KadasterV2StukdeelArray.java | 74 + .../companyinfo/wsdl/KadasterV2Stukken.java | 95 + .../wsdl/KadasterV2Tenaamstelling.java | 389 + .../wsdl/KadasterV2TenaamstellingArray.java | 74 + ...erV2UittrekselKadastraleKaartResponse.java | 120 + .../companyinfo/wsdl/KadasterV2Verzoek.java | 121 + .../wsdl/KadasterV2VerzoekArray.java | 74 + .../wsdl/KadasterV2ZakelijkRecht.java | 283 + .../wsdl/KadasterV2ZakelijkRechtArray.java | 74 + .../companyinfo/wsdl/KadasterValueList.java | 69 + ...ValueListGetMunicipalitiesRequestType.java | 37 + ...alueListGetMunicipalitiesResponseType.java | 69 + ...KadasterValueListGetRangesRequestType.java | 37 + ...adasterValueListGetRangesResponseType.java | 69 + .../companyinfo/wsdl/KadastraalPerceel.java | 142 + .../wsdl/KadastraleAanduiding.java | 200 + .../wsdl/KadastraleAanduidingArray.java | 74 + .../wsdl/KadastraleAanduidingLijst.java | 88 + .../companyinfo/wsdl/Koopsom.java | 199 + .../companyinfo/wsdl/KoopsomArray.java | 74 + .../companyinfo/wsdl/KoopsommenOverzicht.java | 218 + .../wsdl/KoopsommenOverzichtV2.java | 93 + .../companyinfo/wsdl/KvkDate.java | 115 + .../companyinfo/wsdl/KvkDossier.java | 1573 ++ .../companyinfo/wsdl/KvkExtractDocument.java | 97 + .../wsdl/KvkGetDossierRequestType.java | 96 + .../wsdl/KvkGetDossierResponseType.java | 69 + .../KvkGetExtractDocumentRequestType.java | 88 + .../KvkGetExtractDocumentResponseType.java | 69 + .../companyinfo/wsdl/KvkReference.java | 250 + .../companyinfo/wsdl/KvkReferenceArray.java | 74 + .../wsdl/KvkReferencePagedResult.java | 96 + .../KvkSearchDossierNumberRequestType.java | 141 + .../KvkSearchDossierNumberResponseType.java | 69 + .../wsdl/KvkSearchParametersRequestType.java | 287 + .../wsdl/KvkSearchParametersResponseType.java | 69 + .../wsdl/KvkSearchPostcodeRequestType.java | 133 + .../wsdl/KvkSearchPostcodeResponseType.java | 69 + .../wsdl/KvkSearchSelectionRequestType.java | 333 + .../wsdl/KvkSearchSelectionResponseType.java | 69 + .../wsdl/KvkUpdateAddDossierRequestType.java | 96 + .../wsdl/KvkUpdateAddDossierResponseType.java | 37 + .../KvkUpdateCheckDossierRequestType.java | 123 + .../KvkUpdateCheckDossierResponseType.java | 69 + ...vkUpdateGetChangedDossiersRequestType.java | 117 + ...kUpdateGetChangedDossiersResponseType.java | 69 + .../wsdl/KvkUpdateGetDossiersRequestType.java | 87 + .../KvkUpdateGetDossiersResponseType.java | 69 + .../companyinfo/wsdl/KvkUpdateReference.java | 153 + .../wsdl/KvkUpdateReferenceArray.java | 74 + .../wsdl/KvkUpdateReferencePagedResult.java | 96 + .../KvkUpdateRemoveDossierRequestType.java | 96 + .../KvkUpdateRemoveDossierResponseType.java | 37 + .../wsdl/Landinrichtingsrente.java | 96 + .../companyinfo/wsdl/LatLonCoordinates.java | 77 + .../wsdl/LatLonCoordinatesArray.java | 74 + ...LatLonCoordinatesInternationalAddress.java | 213 + ...nCoordinatesInternationalAddressArray.java | 74 + .../wsdl/LatLonCoordinatesMatch.java | 132 + .../companyinfo/wsdl/Lid.java | 96 + .../companyinfo/wsdl/LidArray.java | 74 + .../companyinfo/wsdl/LidLijst.java | 88 + .../companyinfo/wsdl/Locatie.java | 96 + .../companyinfo/wsdl/LocatieBinnenland.java | 199 + .../wsdl/LocatieBinnenlandArray.java | 74 + .../wsdl/LocatieBinnenlandLijst.java | 88 + .../companyinfo/wsdl/LocatieBuitenland.java | 149 + .../companyinfo/wsdl/LoginRequestType.java | 96 + .../companyinfo/wsdl/LoginResponseType.java | 69 + .../companyinfo/wsdl/LogoutRequestType.java | 37 + .../companyinfo/wsdl/LogoutResponseType.java | 37 + .../companyinfo/wsdl/Mandeligheid.java | 96 + ...MapViewInternationalLatLonRequestType.java | 159 + ...apViewInternationalLatLonResponseType.java | 67 + .../wsdl/MapViewLatLonRequestType.java | 188 + .../wsdl/MapViewLatLonResponseType.java | 67 + .../wsdl/MapViewPostcodeV2RequestType.java | 150 + .../wsdl/MapViewPostcodeV2ResponseType.java | 67 + .../wsdl/MapViewRDRequestType.java | 188 + .../wsdl/MapViewRDResponseType.java | 67 + .../wsdl/MetaElementDefinition.java | 221 + .../wsdl/MetaElementDefinitionArray.java | 74 + .../wsdl/MetaGetMethodRequestType.java | 96 + .../wsdl/MetaGetMethodResponseType.java | 69 + .../wsdl/MetaGetServiceRequestType.java | 69 + .../wsdl/MetaGetServiceResponseType.java | 69 + .../wsdl/MetaGetServicesRequestType.java | 37 + .../wsdl/MetaGetServicesResponseType.java | 69 + .../wsdl/MetaMethodDefinition.java | 294 + .../wsdl/MetaMethodDefinitionArray.java | 74 + .../companyinfo/wsdl/MetaMethodReference.java | 158 + .../wsdl/MetaMethodReferenceArray.java | 74 + .../wsdl/MetaProtocolDefinition.java | 123 + .../wsdl/MetaProtocolDefinitionArray.java | 74 + .../wsdl/MetaServiceDefinition.java | 227 + .../wsdl/MetaServiceDefinitionArray.java | 74 + .../wsdl/MetaServiceReference.java | 176 + .../wsdl/MetaServiceReferenceArray.java | 74 + .../wsdl/MetaValidationDefinition.java | 96 + .../wsdl/MetaValidationDefinitionArray.java | 74 + .../companyinfo/wsdl/NatuurlijkPersoon.java | 322 + .../companyinfo/wsdl/NatuurlijkPersoonV2.java | 376 + .../wsdl/NbwoEstimateValueRequestType.java | 204 + .../wsdl/NbwoEstimateValueResponseType.java | 69 + .../wsdl/NbwoKenmerkenModelResultaat.java | 95 + .../NbwoPostcodeStraatModelResultaat.java | 207 + .../wsdl/NbwoVorigeVerkoopModelResultaat.java | 181 + .../companyinfo/wsdl/NbwoWaarde.java | 644 + .../companyinfo/wsdl/NbwoWaardeVerdeling.java | 98 + .../wsdl/NbwoWaardeVerdelingArray.java | 74 + .../companyinfo/wsdl/Neighborhood.java | 69 + .../companyinfo/wsdl/NeighborhoodArray.java | 74 + .../companyinfo/wsdl/NeighborhoodName.java | 96 + .../wsdl/NeighborhoodNameArray.java | 74 + .../wsdl/NeighborhoodNamePagedResult.java | 96 + .../wsdl/NeighborhoodPagedResult.java | 96 + .../wsdl/NietNatuurlijkPersoon.java | 149 + .../companyinfo/wsdl/ObjectFactory.java | 19024 ++++++++++++++++ .../companyinfo/wsdl/OnroerendeZaak.java | 474 + .../companyinfo/wsdl/Overzicht.java | 122 + .../wsdl/OverzichtNatuurlijkPersoon.java | 122 + .../wsdl/OverzichtNietNatuurlijkPersoon.java | 96 + .../wsdl/OverzichtOnroerendeZaak.java | 148 + .../wsdl/OverzichtOnroerendeZaakArray.java | 74 + .../companyinfo/wsdl/OverzichtPersoon.java | 122 + .../wsdl/OverzichtPersoonArray.java | 74 + .../companyinfo/wsdl/OverzichtPersoonV2.java | 148 + .../wsdl/OverzichtPersoonV2Array.java | 74 + .../companyinfo/wsdl/OverzichtRecht.java | 96 + .../companyinfo/wsdl/OverzichtRechtArray.java | 74 + .../companyinfo/wsdl/OverzichtV2.java | 122 + .../companyinfo/wsdl/PCReeks.java | 539 + .../companyinfo/wsdl/PCReeksArray.java | 74 + .../wsdl/PCReeksSearchPartsPagedResult.java | 123 + .../companyinfo/wsdl/PRBeperking.java | 231 + .../companyinfo/wsdl/PRBeperkingArray.java | 74 + .../companyinfo/wsdl/PRBeperkingLijst.java | 88 + .../wsdl/PRBeperkingenKadastraalObject.java | 95 + .../companyinfo/wsdl/Perceel.java | 620 + .../companyinfo/wsdl/PerceelArray.java | 74 + .../companyinfo/wsdl/PerceelDetails.java | 93 + .../wsdl/PerceelSearchPartsPagedResult.java | 123 + .../companyinfo/wsdl/Persoon.java | 267 + .../companyinfo/wsdl/PersoonArray.java | 74 + .../companyinfo/wsdl/PersoonV2.java | 267 + .../companyinfo/wsdl/PersoonV2Array.java | 74 + .../companyinfo/wsdl/Province.java | 96 + .../companyinfo/wsdl/ProvinceArray.java | 74 + .../companyinfo/wsdl/ProvincePagedResult.java | 96 + .../companyinfo/wsdl/RDCoordinates.java | 77 + .../companyinfo/wsdl/RDCoordinatesArray.java | 74 + .../companyinfo/wsdl/RDCoordinatesMatch.java | 132 + .../companyinfo/wsdl/RangeAddress.java | 122 + .../companyinfo/wsdl/RangeAddressArray.java | 74 + .../wsdl/RangeAddressPagedResult.java | 96 + .../companyinfo/wsdl/Recht.java | 307 + .../companyinfo/wsdl/RechtArray.java | 74 + .../companyinfo/wsdl/RechtenLijst.java | 88 + .../companyinfo/wsdl/ResultInfo.java | 131 + .../companyinfo/wsdl/RiskAddress.java | 279 + ...GetRiskPersonCompanyReportRequestType.java | 304 + ...etRiskPersonCompanyReportResponseType.java | 69 + .../wsdl/RiskCheckPersonRequestType.java | 439 + .../wsdl/RiskCheckPersonResponseType.java | 69 + .../companyinfo/wsdl/RiskCompany.java | 313 + .../companyinfo/wsdl/RiskCompanyAddress.java | 96 + .../wsdl/RiskCompanyAddressArray.java | 74 + .../companyinfo/wsdl/RiskCompanyArray.java | 74 + .../companyinfo/wsdl/RiskCompanyReport.java | 121 + .../companyinfo/wsdl/RiskInsolvency.java | 145 + .../companyinfo/wsdl/RiskInsolvencyArray.java | 74 + .../wsdl/RiskInsolvencyCurator.java | 284 + .../wsdl/RiskInsolvencyCuratorArray.java | 74 + .../companyinfo/wsdl/RiskInsolvencyJudge.java | 147 + .../wsdl/RiskInsolvencyPublication.java | 151 + .../wsdl/RiskInsolvencyPublicationArray.java | 74 + .../wsdl/RiskInsolvencyRegistration.java | 226 + .../companyinfo/wsdl/RiskLegalRestraint.java | 147 + .../wsdl/RiskLegalRestraintAdministrator.java | 119 + .../wsdl/RiskLegalRestraintDecision.java | 226 + .../wsdl/RiskLegalRestraintDecisionArray.java | 74 + .../wsdl/RiskLegalRestraintPerson.java | 152 + .../wsdl/RiskLegalRestraintRegistry.java | 122 + .../companyinfo/wsdl/RiskPerson.java | 230 + .../wsdl/RiskPersonCompanyReport.java | 123 + .../companyinfo/wsdl/RiskResult.java | 124 + .../companyinfo/wsdl/RouteAddress.java | 227 + .../wsdl/RouteCoordinateLatLong.java | 77 + .../companyinfo/wsdl/RouteCoordinateRD.java | 77 + .../companyinfo/wsdl/RouteCoordinates.java | 95 + .../wsdl/RouteCoordinatesLatLon.java | 87 + .../companyinfo/wsdl/RouteCoordinatesRD.java | 87 + .../RouteDescriptionCoordinatesLatLon.java | 96 + .../wsdl/RouteDescriptionCoordinatesRD.java | 96 + .../companyinfo/wsdl/RouteInfo.java | 77 + .../companyinfo/wsdl/RouteLocation.java | 96 + .../companyinfo/wsdl/RoutePart.java | 105 + .../companyinfo/wsdl/RoutePartArray.java | 74 + ...ePlannerDescriptionAddressRequestType.java | 366 + ...PlannerDescriptionAddressResponseType.java | 69 + ...erDescriptionCoordinatesRDRequestType.java | 141 + ...rDescriptionCoordinatesRDResponseType.java | 69 + ...nerDescriptionDutchAddressRequestType.java | 312 + ...erDescriptionDutchAddressResponseType.java | 69 + .../RoutePlannerDescriptionRequestType.java | 114 + .../RoutePlannerDescriptionResponseType.java | 69 + ...PlannerDescriptionShortestRequestType.java | 114 + ...lannerDescriptionShortestResponseType.java | 69 + ...scriptionCoordinatesLatLonRequestType.java | 168 + ...criptionCoordinatesLatLonResponseType.java | 69 + .../RoutePlannerEUDescriptionRequestType.java | 168 + ...RoutePlannerEUDescriptionResponseType.java | 69 + .../RoutePlannerEUInformationRequestType.java | 141 + ...RoutePlannerEUInformationResponseType.java | 69 + .../wsdl/RoutePlannerEUMapRequestType.java | 258 + .../wsdl/RoutePlannerEUMapResponseType.java | 67 + .../wsdl/RoutePlannerGetRouteRequestType.java | 404 + .../RoutePlannerGetRouteResponseType.java | 69 + ...ePlannerInformationAddressRequestType.java | 339 + ...PlannerInformationAddressResponseType.java | 69 + ...nerInformationDutchAddressRequestType.java | 285 + ...erInformationDutchAddressResponseType.java | 69 + .../RoutePlannerInformationRequestType.java | 123 + .../RoutePlannerInformationResponseType.java | 69 + ...RDDescriptionCoordinatesRDRequestType.java | 159 + ...DDescriptionCoordinatesRDResponseType.java | 69 + .../RoutePlannerRDDescriptionRequestType.java | 159 + ...RoutePlannerRDDescriptionResponseType.java | 69 + .../RoutePlannerRDInformationRequestType.java | 141 + ...RoutePlannerRDInformationResponseType.java | 69 + .../companyinfo/wsdl/RoutePlannerRoute.java | 174 + .../companyinfo/wsdl/RouteSummary.java | 105 + .../companyinfo/wsdl/SearchParts.java | 276 + .../companyinfo/wsdl/SepaBankAccountData.java | 123 + .../wsdl/SepaBankAccountIbanData.java | 142 + .../companyinfo/wsdl/SepaBankDetails.java | 123 + ...paConvertBankAccountNumberRequestType.java | 123 + ...aConvertBankAccountNumberResponseType.java | 69 + ...vertBasicBankAccountNumberRequestType.java | 96 + ...ertBasicBankAccountNumberResponseType.java | 69 + .../companyinfo/wsdl/SepaIbanDetails.java | 150 + .../wsdl/SepaIbanDetailsRequestType.java | 69 + .../wsdl/SepaIbanDetailsResponseType.java | 69 + ...nkAccountNumberFormatValidationReport.java | 87 + .../SepaMatchAccountHolderRequestType.java | 96 + .../SepaMatchAccountHolderResponseType.java | 69 + .../wsdl/SepaMatchAccountHolderResult.java | 169 + .../wsdl/SepaMatchBankAccountDetails.java | 121 + .../wsdl/SepaMatchBankAccountHolder.java | 149 + .../wsdl/SepaMatchNameMatchingResult.java | 95 + ...nalBankAccountNumberFormatRequestType.java | 69 + ...alBankAccountNumberFormatResponseType.java | 69 + .../companyinfo/wsdl/Session.java | 214 + .../companyinfo/wsdl/SessionArray.java | 74 + .../companyinfo/wsdl/SessionPagedResult.java | 96 + .../companyinfo/wsdl/SortedPostcode.java | 114 + .../companyinfo/wsdl/SortedPostcodeArray.java | 74 + .../wsdl/SortedPostcodePagedResult.java | 96 + .../companyinfo/wsdl/StringArray.java | 74 + .../companyinfo/wsdl/Stuk.java | 206 + .../companyinfo/wsdl/StukArray.java | 74 + .../wsdl/StukMetKadastraleAanduiding.java | 96 + .../StukMetKadastraleAanduidingArray.java | 74 + .../StukMetKadastraleAanduidingLijst.java | 88 + .../wsdl/StukReferentiesLijst.java | 88 + .../wsdl/UittrekselKadastraleKaart.java | 120 + .../companyinfo/wsdl/User.java | 538 + .../wsdl/UserAddGroupRequestType.java | 77 + .../wsdl/UserAddGroupResponseType.java | 37 + .../wsdl/UserChangePasswordRequestType.java | 114 + .../wsdl/UserChangePasswordResponseType.java | 37 + .../wsdl/UserCreateV2RequestType.java | 384 + .../wsdl/UserCreateV2ResponseType.java | 114 + .../companyinfo/wsdl/UserCredentials.java | 114 + .../wsdl/UserEditBalanceRequestType.java | 77 + .../wsdl/UserEditBalanceResponseType.java | 37 + .../wsdl/UserEditExtendedV2RequestType.java | 420 + .../wsdl/UserEditExtendedV2ResponseType.java | 37 + .../UserEditHostRestrictionsRequestType.java | 87 + .../UserEditHostRestrictionsResponseType.java | 37 + .../wsdl/UserEditV2RequestType.java | 249 + .../wsdl/UserEditV2ResponseType.java | 37 + .../companyinfo/wsdl/UserGroup.java | 87 + .../companyinfo/wsdl/UserGroupArray.java | 74 + .../wsdl/UserGroupPagedResult.java | 96 + .../UserListAssignableGroupsRequestType.java | 77 + .../UserListAssignableGroupsResponseType.java | 69 + .../wsdl/UserNotifyRequestType.java | 87 + .../wsdl/UserNotifyResponseType.java | 69 + .../wsdl/UserRemoveGroupRequestType.java | 77 + .../wsdl/UserRemoveGroupResponseType.java | 37 + .../wsdl/UserRemoveRequestType.java | 59 + .../wsdl/UserRemoveResponseType.java | 37 + .../wsdl/UserSessionListRequestType.java | 77 + .../wsdl/UserSessionListResponseType.java | 69 + .../wsdl/UserSessionRemoveRequestType.java | 87 + .../wsdl/UserSessionRemoveResponseType.java | 37 + .../companyinfo/wsdl/UserV2.java | 534 + .../companyinfo/wsdl/UserV2Array.java | 74 + .../companyinfo/wsdl/UserV2PagedResult.java | 96 + .../wsdl/UserViewBalanceRequestType.java | 59 + .../wsdl/UserViewBalanceResponseType.java | 59 + .../UserViewHostRestrictionsRequestType.java | 59 + .../UserViewHostRestrictionsResponseType.java | 69 + .../wsdl/UserViewV2RequestType.java | 59 + .../wsdl/UserViewV2ResponseType.java | 69 + .../wsdl/VatProxyViesCheckVatResponse.java | 196 + .../wsdl/VatValidateRequestType.java | 69 + .../wsdl/VatValidateResponseType.java | 69 + .../companyinfo/wsdl/VatValidation.java | 87 + .../wsdl/VatViesProxyCheckVatRequestType.java | 69 + .../VatViesProxyCheckVatResponseType.java | 69 + .../wsdl/VerenigingVanEigenaren.java | 96 + .../companyinfo/wsdl/package-info.java | 9 + settings.gradle | 2 +- 1638 files changed, 262247 insertions(+), 3 deletions(-) create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObject.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObjectArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObjectLijst.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRecht.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRechtArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRechtLijst.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningenKadastraalObject.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Account.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountCreationToken.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditHostRestrictionsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditHostRestrictionsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationStatusRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationStatusResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationTokenRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationTokenResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetOrderTokenRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetOrderTokenResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountOrderToken.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserListV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserListV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserSearchV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserSearchV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2PagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewBalanceRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewBalanceResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewHostRestrictionsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewHostRestrictionsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCityListNeighborhoodsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCityListNeighborhoodsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCitySearchV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCitySearchV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListCitiesRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListCitiesResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListNeighborhoodsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListNeighborhoodsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictSearchRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictSearchResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodNameRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodNameResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodPhraseSearchRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodPhraseSearchResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelParameterSearchRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelParameterSearchResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelPhraseSearchRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelPhraseSearchResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListDistrictsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListDistrictsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListNeighborhoodsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListNeighborhoodsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceSearchRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceSearchResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksAddressSearchRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksAddressSearchResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksFullParameterSearchRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksFullParameterSearchResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksParameterSearchRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksParameterSearchResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPhraseSearchRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPhraseSearchResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPostcodeSearchRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPostcodeSearchResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCode.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeLookupRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeLookupResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeToNeighborhoodcodeRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeToNeighborhoodcodeResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Base64BinaryArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BbanDetails.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAddress.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAddressArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAnnualFinancialStatement.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAnnualFinancialStatementArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessBankAccount.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessBankAccountArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessCompany.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDate.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDatedItem.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDatedItemArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDossier.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDossierErrors.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessFinancialValues.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessGetDossierRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessGetDossierResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessInternationalAddress.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessInternationalAddressArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentative.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeCompany.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeCompanyArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRatios.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRevisor.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRevisorArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessSocialBalance.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessStakeHolder.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessStakeHolderArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObject.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectDocument.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectDocumentResultaat.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectResultaat.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectResultaatV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagDepartment.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagDepartmentArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByBovagIdRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByBovagIdResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByDutchBusinessRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByDutchBusinessResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagMember.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCode.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCodeArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCodeInfo.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKSection.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKSectionArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKToSBIRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKToSBIResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDate.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossier.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierExtended.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierExtendedPart.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierSBI.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2PagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3PagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetBIKDescriptionRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetBIKDescriptionResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierExtendedRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierExtendedResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierSBIRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierSBIResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierV3RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierV3ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetEstablishmentNumberRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetEstablishmentNumberResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetSBIDescriptionRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetSBIDescriptionResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferencePagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2PagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3PagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICode.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICodeArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICodeInfo.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBISection.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBISectionArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBIToBIKRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBIToBIKResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchAddressRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchAddressResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchDossierNumberRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchDossierNumberResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchNameRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchNameResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV3RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV3ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchPostcodeRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchPostcodeResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateAddDossierRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateAddDossierResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateCheckDossierRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateCheckDossierResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetChangedDossiersRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetChangedDossiersResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetDossiersRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetDossiersResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReferencePagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateRemoveDossierRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateRemoveDossierResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Car.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPriceRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPriceResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPrices.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDValuation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDValuationArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBP.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBPV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBody.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBodyArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarCheckCode.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarDataV3Result.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarEnvironment.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarExtended.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarOption.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarOptions.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarCheckCodeRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarCheckCodeResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataExtendedRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataExtendedResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataOptionsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataOptionsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPrice.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPriceRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPriceResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV3RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV3ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarStatus.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarTypeArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeData.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeDataRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeDataResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrand.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrandArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrandPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListBrandsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListBrandsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListModelsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListModelsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListVersionsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListVersionsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheck.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheckRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheckResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModel.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModelArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModelPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOption.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionPackage.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionPackageArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptions.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsManufacture.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsPackage.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsStandard.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhoto.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotoArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotosRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotosResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPrices.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersion.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPrice.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearData.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearDataRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearDataResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/City.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2PagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceAddressReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceAddressReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusiness.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReferencePagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDate.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDocumentReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDocumentReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetBusinessRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetBusinessResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetPersonRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetPersonResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceNoteReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceNoteReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePerson.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReferencePagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceRoleReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceRoleReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSanctionReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSanctionReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchBusinessesRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchBusinessesResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchPersonsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchPersonsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreateTestUserRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreateTestUserResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdditionalInformation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAddressV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAddressV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdvisor.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdvisorArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBalanceSheet.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBanker.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBankerArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeAdditionalInformation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeBankruptcyEvent.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeBankruptcyEventArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeEvent.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeEventArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeIndustryComparison.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeMisc.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNSSODetail.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNSSODetailArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNegativeInformation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBePaymentExpectationsSummary.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeProtestedBill.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeProtestedBillArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeRegisteredContractor.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeRegisteredContractorArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeChangedString.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeChangedStringArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompany.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivity.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityClassificationV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityClassificationV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationCommentV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationCommentV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEImageAccountV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEImageAccountV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEMiscellaneousV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEOwnerV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEOwnerV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDETurnoverRangeV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationHistoricalEventV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationHistoricalEventV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLFinancialItemV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLKvkFilingV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLMiscellaneousV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdvisorV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdvisorV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBalanceSheetV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBalanceSheetV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBankerV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBankerV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBasicInformationV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBasicInformationV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCompanyV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCompanyV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyContactInformationV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyContactInformationV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditRatingV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditRatingV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditScoreV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditScoreV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyEmployeeInformationV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyEmployeeInformationV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyFinancialStatementV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyFinancialStatementV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyGroupStructureV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyGroupStructureV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyIdentificationV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyIdentificationV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyKeyValueV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyKeyValueV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyListEntry.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyListEntryArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEBankruptcyV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEBankruptcyV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEDirectorEventV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEDirectorEventV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyEventV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDETrusteeV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDETrusteeV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLCourtItemV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLCourtItemV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherFinancialsV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherFinancialsV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherInformationV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherInformationV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPaymentDataV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPaymentDataV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyProfitAndLossV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyProfitAndLossV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyRatiosV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyRatiosV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFull.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFullV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFullV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareCapitalStructureV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareCapitalStructureV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareHolderV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareHolderV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyStatusV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyStatusV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanySummaryV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanySummaryV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdate.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdateArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdatePagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDescriptionV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDescriptionV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDirector.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDirectorArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeEmployeeInformation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeEmployeeInformationArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeFinancialRatios.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeIndustryQuartilyAnalysis.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanyBasicInformation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanyIdentification.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanySummary.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdContactInformation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCreditScore.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdDirectors.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdFinancialStatement.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdFinancialStatementArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdGroupStructure.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdOtherInformation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdShareCapitalStructure.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorAddCompanyRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorAddCompanyResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorGetUpdatedCompaniesRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorGetUpdatedCompaniesResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorRemoveCompanyRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorRemoveCompanyResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlAdditionalInformation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtData.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtDataFacts.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtDataReceiver.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiability.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiabilityArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiabilityInformation403.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlMisc.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlNegativeInformation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlPaymentExpectationsSummary.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeOtherFinancials.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorsV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorsV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPositionV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPositionV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPreviousDirectorV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPreviousDirectorV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePreviousDirector.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePreviousDirectorArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeProfitAndLossFigures.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeQuartiles.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteria.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaCombination.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaCombinationArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaParam.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaParamArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchResultV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeShareHolder.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeShareHolderArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddress.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressWithTelephone.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressWithTelephoneArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeValueV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeValueV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBAddress.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferencePagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2PagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessVerification.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBCommentary.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBCommentaryArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBEmployeeCount.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBEnterpriseManagement.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketing.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlus.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusLinkage.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusLinkageResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMonetaryAmount.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBQuickCheck.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBRelatedBusiness.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBSICCode.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBSICCodeArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBScoreGroup.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBScoreGroupArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/District.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DistrictArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DistrictPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbBusinessVerificationRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbBusinessVerificationResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbEnterpriseManagementRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbEnterpriseManagementResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbGetReferenceRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbGetReferenceResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbQuickCheckRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbQuickCheckResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusLinkageRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusLinkageResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DocumentOverzicht.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfo.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoDistanceLookupRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoDistanceLookupResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoTimeLookupRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoTimeLookupResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressPostcodeRange.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressRangePostcodeSearchRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressRangePostcodeSearchResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPosition.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPositionArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPositionFunctionary.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAddressV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAddressV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAnnualFinancialStatement.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAnnualFinancialStatementSummary.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessChangeSet.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDate.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDateV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDateV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossier.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierHistory.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterprise.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterpriseV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterpriseV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishment.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReferencePagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV3Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractChangeForecast.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractChangeSet.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDataV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDataV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocument.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentData.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentDataV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentDataV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractHistory.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessFormattedAddress.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAnnualFinancialStatementRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAnnualFinancialStatementResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraph.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphLink.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphLinkArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphNode.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphNodeArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierHistoryRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierHistoryResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV3RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV3ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV3RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV3ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryChangedRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryChangedResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalEntityRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalEntityResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV3RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV3ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetNonMarketingIndicatorRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetNonMarketingIndicatorResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetOrganizationTreeRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetOrganizationTreeResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetPositionsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetPositionsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIDescriptionRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIDescriptionResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetVatNumberRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetVatNumberResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessIdentifiers.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvency.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyPublication.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyPublicationArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntity.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityData.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiAddress.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiBusinessEntity.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiLegalForm.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiRegistration.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiRegistrationAuthority.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiSuccessor.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessMoneyV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessMoneyV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsCompany.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsCompanyArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItem.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItemArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItemPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNonMarketingIndicator.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationNode.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationNodeArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationReferenceV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationReferenceV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationTree.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnership.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPeriod.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonnelInfoV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonnelInfoV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPosition.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionAuthorization.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionAuthorizationArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionCompany.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV3Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositions.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferencePagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2PagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICode.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICodeArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICodeInfo.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICollection.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICollectionArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBISection.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV3.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV3Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchDossierNumberRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchDossierNumberResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchEstablishmentsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchEstablishmentsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchNewsByDossierRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchNewsByDossierResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchPostcodeRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchPostcodeResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionSimpleRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionSimpleResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessStructure.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCheckInvestigationRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCheckInvestigationResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassificationResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedPerson.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedRole.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedSuspect.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedSuspectArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifyInvestigationRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifyInvestigationResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOExtract.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationStatus.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationToken.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganisation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganisationArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganizationNode.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganizationNodeArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPayment.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPerson.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPersonArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPickupInvestigationRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPickupInvestigationResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceipt.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceiptItem.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceiptItemArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBORole.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBORoleArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOStartInvestigationRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOStartInvestigationResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateAddDossierRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateAddDossierResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateCheckDossierRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateCheckDossierResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetChangedDossiersRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetChangedDossiersResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetDossiersRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetDossiersResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetOverviewRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetOverviewResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReferencePagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateRemoveDossierRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateRemoveDossierResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscription.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscriptionArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscriptionPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessVatNumber.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicle.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleAxle.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleAxleArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleBodyApproval.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleBodyApprovalArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleData.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEngine.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEnvironment.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEnvironmentArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleFeature.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetMarketValueRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetMarketValueResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetOwnerHistoryRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetOwnerHistoryResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetPurchaseReferenceRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetPurchaseReferenceResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleMarketValue.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleMileage.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnerHistory.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnership.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnershipArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePrice.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePriceValuation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePriceValuationArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePurchase.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePurchaseReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRecall.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRegistration.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRemark.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRemarkArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleStatus.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTaxData.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTechnicalWeight.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTypeApproval.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EDRScore.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EdrGetScoreRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EdrGetScoreResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAddress.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAddressArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAlarm.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAlarmContactDetails.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAnnualFigures.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAnnualFiguresArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAssets.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBalanceSheet.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerData.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerDataArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerKeyFigures.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankruptcy.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBirthInformation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBranchOffice.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBranchOfficeArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamity.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityEvent.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityEventArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityOther.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityOtherArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCapital.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCapitalArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRChamberOfCommerce.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompany.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyAnnualAccount.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyAnnualAccountArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyContinuedUnder.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyContinuedUnderArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItself.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItselfAlarm.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItselfCalamity.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyManagement.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyRelations.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyRelationsSimple.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanySimple.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanySimpleArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContactDetails.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContinuation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContinuationArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCountry.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCountryArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdvice.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdviceData.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdviceMother.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditFactor.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditFactorArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditRating.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCurator.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCuratorArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDebtRestructuringPrivatePersons.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDeclarationOfLiability.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDeclarationOfLiabilityArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDiscontinuance.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFiling.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialCalamity.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialCalamityArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetailValue.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetailValueArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetails.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFirstDirector.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFirstDirectorArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFounded.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFoundedArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistory.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistoryAdvisedLimit.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistoryAdvisedLimitArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRImportExport.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRItem.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRItemArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRJobTitle.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRJobTitleArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiabilities.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaison.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonCompany.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonCompanyArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonContactDetails.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonOfficialData.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRManagement.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRManagementArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRMoratorium.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRNumberOfEmployees.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRNumberOfEmployeesArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROfficialData.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROriginatedFrom.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROriginatedFromArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRParticipation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRParticipationArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPaymentInformation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPaymentInformationArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPercentageHistory.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPercentageHistoryArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPerson.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonSimple.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonSimpleArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonalDetails.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonnel.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRating.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingHistory.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingHistoryArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatio.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatioArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRReceiver.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRReceiverArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSectorOfIndustry.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSectorOfIndustryArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRShareHolder.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRShareHolderArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSpecialCompanyInformation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSpecialCompanyInformationArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTelephoneNumber.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTelephoneNumberArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTextSequence.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTextSequenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTitle.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTitleArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTradeName.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTradeNameArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GemeenteStuk.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GemeenteStukArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddress.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesLatLonRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesLatLonResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesRDRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesRDResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRadiusRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRadiusResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationHaversineDistanceRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationHaversineDistanceResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddress.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalLatLonToAddressRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalLatLonToAddressResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalPostcodeCoordinatesLatLonRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalPostcodeCoordinatesLatLonResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToAddressV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToAddressV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToPostcodeRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToPostcodeResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToRDRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToRDResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesLatLonRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesLatLonResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesRDRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesRDResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodDistanceRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodDistanceResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesLatLonRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesLatLonResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesRDRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesRDResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeDistanceRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeDistanceResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToAddressV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToAddressV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToLatLonRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToLatLonResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToPostcodeRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToPostcodeResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditCompanyLiaisonsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditCompanyLiaisonsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditGetReportRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditGetReportResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditManagementRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditManagementResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditQuickscanRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditQuickscanResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditRatingsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditRatingsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReport.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportAlarm.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportCalamity.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportCompanyLiaisons.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportManagement.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportNormal.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportQuickscan.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportRatings.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportVatNumber.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchIdentificationRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchIdentificationResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchNameRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchNameResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchPostcodeRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchPostcodeResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditVatNumberRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditVatNumberResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/HeaderAuthenticateType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/HeaderLoginType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddress.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddressArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddresses.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAffectedCompany.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAffectedCompanyArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCase.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyConcernedPerson.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCourtSession.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCurators.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyGetCaseByPublicationRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyGetCaseByPublicationResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalPerformingPerson.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalPerformingPersonArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalSubject.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublication.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublicationArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublicationList.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublications.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReceivers.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReport.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReportArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByCoCNumberRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByCoCNumberResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByPersonRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByPersonResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyTreatingAuthority.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/IntArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/International.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchInteractiveRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchInteractiveResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2Result.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddress.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddressArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddressPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterAddressCoordinatesRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterAddressCoordinatesResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBedrag.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBeknoptOnroerendeZaak.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBeknoptOnroerendeZaakArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBerichtObjectDocument.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocument.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocumentRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocumentResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterCoordinates.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuze.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuzeArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuzeLijst.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPerceelRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPerceelResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPostcodeRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPostcodeResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterGerelateerdStukdeel.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterGerelateerdStukdeelArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtObject.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV3RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV3ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV3RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV3ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtResultaat.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtResultaatV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheek.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStuk.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStukArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStukLijst.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaart.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartResultaat.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartResultaatV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterListValue.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterListValueArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatie.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBinnenland.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBinnenlandArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBuitenland.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterNatuurlijkPersoon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterNietNatuurlijkPersoon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzicht.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtNatuurlijkPersoon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtNietNatuurlijkPersoon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtOnroerendeZaak.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtOnroerendeZaakArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtRecht.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtRechtArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoonArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoonLijst.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeel.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelRecht.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelRechtArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelReferentiesLijst.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV3RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV3ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV3RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV3ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartResultaat.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartResultaatV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AangebodenStuk.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AangebodenStukArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Aantekening.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningWKPB.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningWKPBArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Aanvulling.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AanvullingArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AcgIdentificatie.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AdresLocatie.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AdresLocatieArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Bedrag.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Beslaglegging.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BeslagleggingArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Bijlage.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BijlageArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Breuk.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BronDocumentResponse.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Coordinaat.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2DeelEnNummer.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ErfpachtCanon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ErfpachtCanonArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GerelateerdeOpenbareRuimte.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetBronDocumentRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetBronDocumentResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByAdresRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByAdresResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByAdresRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByAdresResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKoopsommenOverzichtRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKoopsommenOverzichtResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByAdresRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByAdresResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GevraagdGebied.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GezamenlijkAandeel.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GezamenlijkAandeelArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Historie.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Hoofdzaak.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HoofdzaakArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypothecairBericht.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypothecairBerichtResponse.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Hypotheek.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypotheekArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2JaarlijksBedrag.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2JaarlijksBedragArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraalBericht.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraalBerichtResponse.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraleAanduiding.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraleGrootte.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Koopsom.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsomGegeven.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsomGegevenArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsommenOverzicht.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsommenOverzichtResponse.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LandinrichtingsRente.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LandinrichtingsRenteArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBinnenland.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBinnenlandArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBuitenland.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBuitenlandArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatiePostbus.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatiePostbusArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Mandeligheid.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2MandeligheidArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NatuurlijkPersoon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NatuurlijkPersoonArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NietNatuurlijkPersoon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NietNatuurlijkPersoonArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaak.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakFiliatie.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakFiliatieArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OvergegaanIn.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Personen.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2PostcodeTreffers.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RDCoordinaat.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RedenVerzoek.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RedenVerzoekArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Splitsing.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2SplitsingArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stuk.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2StukArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stukdeel.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2StukdeelArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stukken.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Tenaamstelling.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2TenaamstellingArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2UittrekselKadastraleKaartResponse.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Verzoek.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2VerzoekArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ZakelijkRecht.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ZakelijkRechtArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueList.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetMunicipalitiesRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetMunicipalitiesResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetRangesRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetRangesResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraalPerceel.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduiding.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduidingArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduidingLijst.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Koopsom.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsomArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsommenOverzicht.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsommenOverzichtV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkDate.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkDossier.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkExtractDocument.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetDossierRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetDossierResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetExtractDocumentRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetExtractDocumentResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReferencePagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchDossierNumberRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchDossierNumberResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchParametersRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchParametersResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchPostcodeRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchPostcodeResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchSelectionRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchSelectionResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateAddDossierRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateAddDossierResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateCheckDossierRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateCheckDossierResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetChangedDossiersRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetChangedDossiersResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetDossiersRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetDossiersResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReferencePagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateRemoveDossierRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateRemoveDossierResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Landinrichtingsrente.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinates.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesInternationalAddress.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesInternationalAddressArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesMatch.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Lid.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LidArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LidLijst.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Locatie.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenland.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenlandArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenlandLijst.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBuitenland.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LoginRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LoginResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LogoutRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LogoutResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Mandeligheid.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewInternationalLatLonRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewInternationalLatLonResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewLatLonRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewLatLonResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewPostcodeV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewPostcodeV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewRDRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewRDResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaElementDefinition.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaElementDefinitionArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetMethodRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetMethodResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServiceRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServiceResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServicesRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServicesResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodDefinition.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodDefinitionArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaProtocolDefinition.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaProtocolDefinitionArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceDefinition.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceDefinitionArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceReference.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceReferenceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaValidationDefinition.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaValidationDefinitionArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NatuurlijkPersoon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NatuurlijkPersoonV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoEstimateValueRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoEstimateValueResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoKenmerkenModelResultaat.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoPostcodeStraatModelResultaat.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoVorigeVerkoopModelResultaat.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaarde.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaardeVerdeling.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaardeVerdelingArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Neighborhood.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodName.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodNameArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodNamePagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NietNatuurlijkPersoon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ObjectFactory.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OnroerendeZaak.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Overzicht.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtNatuurlijkPersoon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtNietNatuurlijkPersoon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtOnroerendeZaak.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtOnroerendeZaakArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtRecht.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtRechtArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeks.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeksArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeksSearchPartsPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperking.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingLijst.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingenKadastraalObject.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Perceel.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelDetails.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelSearchPartsPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Persoon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Province.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ProvinceArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ProvincePagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinates.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinatesArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinatesMatch.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddress.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddressArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddressPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Recht.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RechtArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RechtenLijst.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ResultInfo.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskAddress.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckGetRiskPersonCompanyReportRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckGetRiskPersonCompanyReportResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckPersonRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckPersonResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompany.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyAddress.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyAddressArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyReport.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvency.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyCurator.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyCuratorArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyJudge.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyPublication.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyPublicationArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyRegistration.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraint.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintAdministrator.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintDecision.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintDecisionArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintPerson.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintRegistry.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskPerson.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskPersonCompanyReport.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteAddress.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinateLatLong.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinateRD.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinates.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinatesLatLon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinatesRD.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteDescriptionCoordinatesLatLon.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteDescriptionCoordinatesRD.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteInfo.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteLocation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePart.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePartArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionAddressRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionAddressResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionCoordinatesRDRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionCoordinatesRDResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionDutchAddressRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionDutchAddressResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionShortestRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionShortestResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionCoordinatesLatLonRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionCoordinatesLatLonResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUInformationRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUInformationResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUMapRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUMapResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerGetRouteRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerGetRouteResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationAddressRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationAddressResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationDutchAddressRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationDutchAddressResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionCoordinatesRDRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionCoordinatesRDResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDInformationRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDInformationResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRoute.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteSummary.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SearchParts.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankAccountData.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankAccountIbanData.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankDetails.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBankAccountNumberRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBankAccountNumberResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBasicBankAccountNumberRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBasicBankAccountNumberResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetails.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetailsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetailsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaInternationalBankAccountNumberFormatValidationReport.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchBankAccountDetails.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchBankAccountHolder.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchNameMatchingResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaValidateInternationalBankAccountNumberFormatRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaValidateInternationalBankAccountNumberFormatResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Session.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SessionArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SessionPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcode.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcodeArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcodePagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StringArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Stuk.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduiding.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduidingArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduidingLijst.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukReferentiesLijst.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UittrekselKadastraleKaart.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/User.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserAddGroupRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserAddGroupResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserChangePasswordRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserChangePasswordResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCreateV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCreateV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCredentials.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditBalanceRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditBalanceResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditExtendedV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditExtendedV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditHostRestrictionsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditHostRestrictionsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroup.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroupArray.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroupPagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserListAssignableGroupsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserListAssignableGroupsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserNotifyRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserNotifyResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveGroupRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveGroupResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionListRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionListResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionRemoveRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionRemoveResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2Array.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2PagedResult.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewBalanceRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewBalanceResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewHostRestrictionsRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewHostRestrictionsResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewV2RequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewV2ResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatProxyViesCheckVatResponse.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidateRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidateResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidation.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatViesProxyCheckVatRequestType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatViesProxyCheckVatResponseType.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VerenigingVanEigenaren.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/package-info.java diff --git a/company-data-finder-lib/build.gradle b/company-data-finder-lib/build.gradle index a9f5ebd..96ed3e4 100644 --- a/company-data-finder-lib/build.gradle +++ b/company-data-finder-lib/build.gradle @@ -8,7 +8,7 @@ configurations { } task genJaxb { - ext.sourcesDir = "${buildDir}/generated-sources/jaxb" + ext.sourcesDir = "$rootDir/company-data-finder-lib/src/main/java/" ext.classesDir = "${buildDir}/classes/jaxb" ext.schema = "https://ws1.webservices.nl/soap_doclit?wsdl" @@ -56,6 +56,5 @@ dependencies { jaxb 'com.sun.xml.bind:jaxb-impl:2.2.7-b41' jaxb 'javax.xml.bind:jaxb-api:2.2.7' jaxb 'com.sun.activation:javax.activation:1.2.0' - compile project(':company-data-finder-lib:main') } diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObject.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObject.java new file mode 100644 index 0000000..74d0fcd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObject.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for AantekeningKadastraalObject complex type. + * + *

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

+ * <complexType name="AantekeningKadastraalObject">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="stuk_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="betrokkene_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="omschrijving_aantekening" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="beschrijving_aantekening" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AantekeningKadastraalObject", propOrder = { + +}) +public class AantekeningKadastraalObject { + + @XmlElement(name = "stuk_id", required = true) + protected String stukId; + @XmlElement(name = "betrokkene_id") + protected String betrokkeneId; + @XmlElement(name = "omschrijving_aantekening", required = true) + protected String omschrijvingAantekening; + @XmlElement(name = "beschrijving_aantekening") + protected String beschrijvingAantekening; + + /** + * Gets the value of the stukId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStukId() { + return stukId; + } + + /** + * Sets the value of the stukId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStukId(String value) { + this.stukId = value; + } + + /** + * Gets the value of the betrokkeneId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBetrokkeneId() { + return betrokkeneId; + } + + /** + * Sets the value of the betrokkeneId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBetrokkeneId(String value) { + this.betrokkeneId = value; + } + + /** + * Gets the value of the omschrijvingAantekening property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijvingAantekening() { + return omschrijvingAantekening; + } + + /** + * Sets the value of the omschrijvingAantekening property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijvingAantekening(String value) { + this.omschrijvingAantekening = value; + } + + /** + * Gets the value of the beschrijvingAantekening property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBeschrijvingAantekening() { + return beschrijvingAantekening; + } + + /** + * Sets the value of the beschrijvingAantekening property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBeschrijvingAantekening(String value) { + this.beschrijvingAantekening = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObjectArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObjectArray.java new file mode 100644 index 0000000..8c6046b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObjectArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for AantekeningKadastraalObjectArray complex type. + * + *

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

+ * <complexType name="AantekeningKadastraalObjectArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}AantekeningKadastraalObject" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AantekeningKadastraalObjectArray", propOrder = { + "item" +}) +public class AantekeningKadastraalObjectArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AantekeningKadastraalObject } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObjectLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObjectLijst.java new file mode 100644 index 0000000..70d0359 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObjectLijst.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for AantekeningKadastraalObjectLijst complex type. + * + *

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

+ * <complexType name="AantekeningKadastraalObjectLijst">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="aantekeningen" type="{http://www.webservices.nl/soap/}AantekeningKadastraalObjectArray"/>
+ *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AantekeningKadastraalObjectLijst", propOrder = { + +}) +public class AantekeningKadastraalObjectLijst { + + @XmlElement(required = true) + protected AantekeningKadastraalObjectArray aantekeningen; + @XmlElement(name = "indicatie_compleet") + protected boolean indicatieCompleet; + + /** + * Gets the value of the aantekeningen property. + * + * @return + * possible object is + * {@link AantekeningKadastraalObjectArray } + * + */ + public AantekeningKadastraalObjectArray getAantekeningen() { + return aantekeningen; + } + + /** + * Sets the value of the aantekeningen property. + * + * @param value + * allowed object is + * {@link AantekeningKadastraalObjectArray } + * + */ + public void setAantekeningen(AantekeningKadastraalObjectArray value) { + this.aantekeningen = value; + } + + /** + * Gets the value of the indicatieCompleet property. + * + */ + public boolean isIndicatieCompleet() { + return indicatieCompleet; + } + + /** + * Sets the value of the indicatieCompleet property. + * + */ + public void setIndicatieCompleet(boolean value) { + this.indicatieCompleet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRecht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRecht.java new file mode 100644 index 0000000..c055765 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRecht.java @@ -0,0 +1,180 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for AantekeningRecht complex type. + * + *

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

+ * <complexType name="AantekeningRecht">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="stuk_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="betrokkene_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="omschrijving_aantekening" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="beschrijving_aantekening" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="einddatum_aantekening" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AantekeningRecht", propOrder = { + +}) +public class AantekeningRecht { + + @XmlElement(name = "stuk_id", required = true) + protected String stukId; + @XmlElement(name = "betrokkene_id") + protected String betrokkeneId; + @XmlElement(name = "omschrijving_aantekening", required = true) + protected String omschrijvingAantekening; + @XmlElement(name = "beschrijving_aantekening") + protected String beschrijvingAantekening; + @XmlElement(name = "einddatum_aantekening") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar einddatumAantekening; + + /** + * Gets the value of the stukId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStukId() { + return stukId; + } + + /** + * Sets the value of the stukId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStukId(String value) { + this.stukId = value; + } + + /** + * Gets the value of the betrokkeneId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBetrokkeneId() { + return betrokkeneId; + } + + /** + * Sets the value of the betrokkeneId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBetrokkeneId(String value) { + this.betrokkeneId = value; + } + + /** + * Gets the value of the omschrijvingAantekening property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijvingAantekening() { + return omschrijvingAantekening; + } + + /** + * Sets the value of the omschrijvingAantekening property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijvingAantekening(String value) { + this.omschrijvingAantekening = value; + } + + /** + * Gets the value of the beschrijvingAantekening property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBeschrijvingAantekening() { + return beschrijvingAantekening; + } + + /** + * Sets the value of the beschrijvingAantekening property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBeschrijvingAantekening(String value) { + this.beschrijvingAantekening = value; + } + + /** + * Gets the value of the einddatumAantekening property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEinddatumAantekening() { + return einddatumAantekening; + } + + /** + * Sets the value of the einddatumAantekening property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEinddatumAantekening(XMLGregorianCalendar value) { + this.einddatumAantekening = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRechtArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRechtArray.java new file mode 100644 index 0000000..4e3a51e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRechtArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for AantekeningRechtArray complex type. + * + *

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

+ * <complexType name="AantekeningRechtArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}AantekeningRecht" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AantekeningRechtArray", propOrder = { + "item" +}) +public class AantekeningRechtArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AantekeningRecht } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRechtLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRechtLijst.java new file mode 100644 index 0000000..5c10bdb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRechtLijst.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for AantekeningRechtLijst complex type. + * + *

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

+ * <complexType name="AantekeningRechtLijst">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="aantekeningen_recht" type="{http://www.webservices.nl/soap/}AantekeningRechtArray"/>
+ *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AantekeningRechtLijst", propOrder = { + +}) +public class AantekeningRechtLijst { + + @XmlElement(name = "aantekeningen_recht", required = true) + protected AantekeningRechtArray aantekeningenRecht; + @XmlElement(name = "indicatie_compleet") + protected boolean indicatieCompleet; + + /** + * Gets the value of the aantekeningenRecht property. + * + * @return + * possible object is + * {@link AantekeningRechtArray } + * + */ + public AantekeningRechtArray getAantekeningenRecht() { + return aantekeningenRecht; + } + + /** + * Sets the value of the aantekeningenRecht property. + * + * @param value + * allowed object is + * {@link AantekeningRechtArray } + * + */ + public void setAantekeningenRecht(AantekeningRechtArray value) { + this.aantekeningenRecht = value; + } + + /** + * Gets the value of the indicatieCompleet property. + * + */ + public boolean isIndicatieCompleet() { + return indicatieCompleet; + } + + /** + * Sets the value of the indicatieCompleet property. + * + */ + public void setIndicatieCompleet(boolean value) { + this.indicatieCompleet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningenKadastraalObject.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningenKadastraalObject.java new file mode 100644 index 0000000..1eabdce --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningenKadastraalObject.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for AantekeningenKadastraalObject complex type. + * + *

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

+ * <complexType name="AantekeningenKadastraalObject">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="aantekeningen_lijst" type="{http://www.webservices.nl/soap/}AantekeningKadastraalObjectLijst" minOccurs="0"/>
+ *         <element name="melding" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AantekeningenKadastraalObject", propOrder = { + +}) +public class AantekeningenKadastraalObject { + + @XmlElement(name = "aantekeningen_lijst") + protected AantekeningKadastraalObjectLijst aantekeningenLijst; + protected String melding; + + /** + * Gets the value of the aantekeningenLijst property. + * + * @return + * possible object is + * {@link AantekeningKadastraalObjectLijst } + * + */ + public AantekeningKadastraalObjectLijst getAantekeningenLijst() { + return aantekeningenLijst; + } + + /** + * Sets the value of the aantekeningenLijst property. + * + * @param value + * allowed object is + * {@link AantekeningKadastraalObjectLijst } + * + */ + public void setAantekeningenLijst(AantekeningKadastraalObjectLijst value) { + this.aantekeningenLijst = value; + } + + /** + * Gets the value of the melding property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMelding() { + return melding; + } + + /** + * Sets the value of the melding property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMelding(String value) { + this.melding = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Account.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Account.java new file mode 100644 index 0000000..f06bef9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Account.java @@ -0,0 +1,465 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for Account complex type. + * + *

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

+ * <complexType name="Account">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="environment" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="reseller" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contactemail" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="creationtime" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="lastmodified" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="credits" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="clientcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="comments" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="usernameprefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="creditthreshold" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Account", propOrder = { + +}) +public class Account { + + protected int id; + @XmlElement(required = true) + protected String name; + @XmlElement(required = true) + protected String address; + @XmlElement(required = true) + protected String environment; + protected boolean reseller; + @XmlElement(required = true) + protected String contactname; + @XmlElement(required = true) + protected String contactemail; + @XmlElement(required = true) + protected String telephone; + @XmlElement(required = true) + protected String fax; + @XmlElement(required = true) + protected String description; + @XmlElement(required = true) + protected String creationtime; + @XmlElement(required = true) + protected String lastmodified; + protected int credits; + @XmlElement(required = true) + protected String clientcode; + @XmlElement(required = true) + protected String comments; + @XmlElement(required = true) + protected String usernameprefix; + protected int creditthreshold; + + /** + * Gets the value of the id property. + * + */ + public int getId() { + return id; + } + + /** + * Sets the value of the id property. + * + */ + public void setId(int value) { + this.id = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the environment property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnvironment() { + return environment; + } + + /** + * Sets the value of the environment property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnvironment(String value) { + this.environment = value; + } + + /** + * Gets the value of the reseller property. + * + */ + public boolean isReseller() { + return reseller; + } + + /** + * Sets the value of the reseller property. + * + */ + public void setReseller(boolean value) { + this.reseller = value; + } + + /** + * Gets the value of the contactname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactname() { + return contactname; + } + + /** + * Sets the value of the contactname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactname(String value) { + this.contactname = value; + } + + /** + * Gets the value of the contactemail property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactemail() { + return contactemail; + } + + /** + * Sets the value of the contactemail property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactemail(String value) { + this.contactemail = value; + } + + /** + * Gets the value of the telephone property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephone() { + return telephone; + } + + /** + * Sets the value of the telephone property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephone(String value) { + this.telephone = value; + } + + /** + * Gets the value of the fax property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFax() { + return fax; + } + + /** + * Sets the value of the fax property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFax(String value) { + this.fax = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the creationtime property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreationtime() { + return creationtime; + } + + /** + * Sets the value of the creationtime property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreationtime(String value) { + this.creationtime = value; + } + + /** + * Gets the value of the lastmodified property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastmodified() { + return lastmodified; + } + + /** + * Sets the value of the lastmodified property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastmodified(String value) { + this.lastmodified = value; + } + + /** + * Gets the value of the credits property. + * + */ + public int getCredits() { + return credits; + } + + /** + * Sets the value of the credits property. + * + */ + public void setCredits(int value) { + this.credits = value; + } + + /** + * Gets the value of the clientcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getClientcode() { + return clientcode; + } + + /** + * Sets the value of the clientcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setClientcode(String value) { + this.clientcode = value; + } + + /** + * Gets the value of the comments property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getComments() { + return comments; + } + + /** + * Sets the value of the comments property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setComments(String value) { + this.comments = value; + } + + /** + * Gets the value of the usernameprefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUsernameprefix() { + return usernameprefix; + } + + /** + * Sets the value of the usernameprefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUsernameprefix(String value) { + this.usernameprefix = value; + } + + /** + * Gets the value of the creditthreshold property. + * + */ + public int getCreditthreshold() { + return creditthreshold; + } + + /** + * Sets the value of the creditthreshold property. + * + */ + public void setCreditthreshold(int value) { + this.creditthreshold = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountArray.java new file mode 100644 index 0000000..1e92544 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for AccountArray complex type. + * + *

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

+ * <complexType name="AccountArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}Account" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AccountArray", propOrder = { + "item" +}) +public class AccountArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Account } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountCreationToken.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountCreationToken.java new file mode 100644 index 0000000..04e1714 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountCreationToken.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for AccountCreationToken complex type. + * + *

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

+ * <complexType name="AccountCreationToken">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AccountCreationToken", propOrder = { + +}) +public class AccountCreationToken { + + @XmlElement(required = true) + protected String token; + @XmlElement(required = true) + protected String url; + + /** + * Gets the value of the token property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToken() { + return token; + } + + /** + * Sets the value of the token property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToken(String value) { + this.token = value; + } + + /** + * Gets the value of the url property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUrl() { + return url; + } + + /** + * Sets the value of the url property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUrl(String value) { + this.url = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditHostRestrictionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditHostRestrictionsRequestType.java new file mode 100644 index 0000000..9f2ec03 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditHostRestrictionsRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountEditHostRestrictionsRequestType complex type. + * + *

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

+ * <complexType name="accountEditHostRestrictionsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="restrictions" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountEditHostRestrictionsRequestType", propOrder = { + +}) +public class AccountEditHostRestrictionsRequestType { + + protected int accountid; + @XmlElement(required = true) + protected String restrictions; + + /** + * Gets the value of the accountid property. + * + */ + public int getAccountid() { + return accountid; + } + + /** + * Sets the value of the accountid property. + * + */ + public void setAccountid(int value) { + this.accountid = value; + } + + /** + * Gets the value of the restrictions property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRestrictions() { + return restrictions; + } + + /** + * Sets the value of the restrictions property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRestrictions(String value) { + this.restrictions = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditHostRestrictionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditHostRestrictionsResponseType.java new file mode 100644 index 0000000..bff8e64 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditHostRestrictionsResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountEditHostRestrictionsResponseType complex type. + * + *

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

+ * <complexType name="accountEditHostRestrictionsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountEditHostRestrictionsResponseType") +public class AccountEditHostRestrictionsResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditV2RequestType.java new file mode 100644 index 0000000..0841efe --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditV2RequestType.java @@ -0,0 +1,240 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountEditV2RequestType complex type. + * + *

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

+ * <complexType name="accountEditV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contactemail" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="balancethreshold" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountEditV2RequestType", propOrder = { + +}) +public class AccountEditV2RequestType { + + protected int accountid; + @XmlElement(required = true) + protected String address; + @XmlElement(required = true) + protected String contactname; + @XmlElement(required = true) + protected String contactemail; + @XmlElement(required = true) + protected String telephone; + @XmlElement(required = true) + protected String fax; + @XmlElement(required = true) + protected String description; + protected float balancethreshold; + + /** + * Gets the value of the accountid property. + * + */ + public int getAccountid() { + return accountid; + } + + /** + * Sets the value of the accountid property. + * + */ + public void setAccountid(int value) { + this.accountid = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the contactname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactname() { + return contactname; + } + + /** + * Sets the value of the contactname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactname(String value) { + this.contactname = value; + } + + /** + * Gets the value of the contactemail property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactemail() { + return contactemail; + } + + /** + * Sets the value of the contactemail property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactemail(String value) { + this.contactemail = value; + } + + /** + * Gets the value of the telephone property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephone() { + return telephone; + } + + /** + * Sets the value of the telephone property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephone(String value) { + this.telephone = value; + } + + /** + * Gets the value of the fax property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFax() { + return fax; + } + + /** + * Sets the value of the fax property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFax(String value) { + this.fax = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the balancethreshold property. + * + */ + public float getBalancethreshold() { + return balancethreshold; + } + + /** + * Sets the value of the balancethreshold property. + * + */ + public void setBalancethreshold(float value) { + this.balancethreshold = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditV2ResponseType.java new file mode 100644 index 0000000..08b4715 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditV2ResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountEditV2ResponseType complex type. + * + *

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

+ * <complexType name="accountEditV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountEditV2ResponseType") +public class AccountEditV2ResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationStatusRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationStatusRequestType.java new file mode 100644 index 0000000..6f971ae --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationStatusRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountGetCreationStatusRequestType complex type. + * + *

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

+ * <complexType name="accountGetCreationStatusRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountGetCreationStatusRequestType", propOrder = { + +}) +public class AccountGetCreationStatusRequestType { + + @XmlElement(required = true) + protected String token; + + /** + * Gets the value of the token property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToken() { + return token; + } + + /** + * Sets the value of the token property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToken(String value) { + this.token = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationStatusResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationStatusResponseType.java new file mode 100644 index 0000000..4d9c253 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationStatusResponseType.java @@ -0,0 +1,59 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountGetCreationStatusResponseType complex type. + * + *

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

+ * <complexType name="accountGetCreationStatusResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountGetCreationStatusResponseType", propOrder = { + +}) +public class AccountGetCreationStatusResponseType { + + protected int accountid; + + /** + * Gets the value of the accountid property. + * + */ + public int getAccountid() { + return accountid; + } + + /** + * Sets the value of the accountid property. + * + */ + public void setAccountid(int value) { + this.accountid = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationTokenRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationTokenRequestType.java new file mode 100644 index 0000000..201d3e1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationTokenRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountGetCreationTokenRequestType complex type. + * + *

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

+ * <complexType name="accountGetCreationTokenRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="return_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountGetCreationTokenRequestType", propOrder = { + +}) +public class AccountGetCreationTokenRequestType { + + @XmlElement(name = "return_url", required = true) + protected String returnUrl; + + /** + * Gets the value of the returnUrl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReturnUrl() { + return returnUrl; + } + + /** + * Sets the value of the returnUrl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReturnUrl(String value) { + this.returnUrl = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationTokenResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationTokenResponseType.java new file mode 100644 index 0000000..a88cffb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationTokenResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountGetCreationTokenResponseType complex type. + * + *

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

+ * <complexType name="accountGetCreationTokenResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}AccountCreationToken"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountGetCreationTokenResponseType", propOrder = { + +}) +public class AccountGetCreationTokenResponseType { + + @XmlElement(required = true) + protected AccountCreationToken out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link AccountCreationToken } + * + */ + public AccountCreationToken getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link AccountCreationToken } + * + */ + public void setOut(AccountCreationToken value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetOrderTokenRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetOrderTokenRequestType.java new file mode 100644 index 0000000..17c8e6a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetOrderTokenRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountGetOrderTokenRequestType complex type. + * + *

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

+ * <complexType name="accountGetOrderTokenRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="return_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountGetOrderTokenRequestType", propOrder = { + +}) +public class AccountGetOrderTokenRequestType { + + protected int accountid; + @XmlElement(name = "return_url", required = true) + protected String returnUrl; + + /** + * Gets the value of the accountid property. + * + */ + public int getAccountid() { + return accountid; + } + + /** + * Sets the value of the accountid property. + * + */ + public void setAccountid(int value) { + this.accountid = value; + } + + /** + * Gets the value of the returnUrl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReturnUrl() { + return returnUrl; + } + + /** + * Sets the value of the returnUrl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReturnUrl(String value) { + this.returnUrl = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetOrderTokenResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetOrderTokenResponseType.java new file mode 100644 index 0000000..2874280 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetOrderTokenResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountGetOrderTokenResponseType complex type. + * + *

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

+ * <complexType name="accountGetOrderTokenResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}AccountOrderToken"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountGetOrderTokenResponseType", propOrder = { + +}) +public class AccountGetOrderTokenResponseType { + + @XmlElement(required = true) + protected AccountOrderToken out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link AccountOrderToken } + * + */ + public AccountOrderToken getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link AccountOrderToken } + * + */ + public void setOut(AccountOrderToken value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountOrderToken.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountOrderToken.java new file mode 100644 index 0000000..a40e5b0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountOrderToken.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for AccountOrderToken complex type. + * + *

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

+ * <complexType name="AccountOrderToken">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AccountOrderToken", propOrder = { + +}) +public class AccountOrderToken { + + @XmlElement(required = true) + protected String token; + @XmlElement(required = true) + protected String url; + + /** + * Gets the value of the token property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToken() { + return token; + } + + /** + * Sets the value of the token property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToken(String value) { + this.token = value; + } + + /** + * Gets the value of the url property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUrl() { + return url; + } + + /** + * Sets the value of the url property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUrl(String value) { + this.url = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountPagedResult.java new file mode 100644 index 0000000..a96b398 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountPagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for AccountPagedResult complex type. + * + *

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

+ * <complexType name="AccountPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}AccountArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AccountPagedResult", propOrder = { + +}) +public class AccountPagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected AccountArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link AccountArray } + * + */ + public AccountArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link AccountArray } + * + */ + public void setResults(AccountArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserListV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserListV2RequestType.java new file mode 100644 index 0000000..87c528c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserListV2RequestType.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountUserListV2RequestType complex type. + * + *

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

+ * <complexType name="accountUserListV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountUserListV2RequestType", propOrder = { + +}) +public class AccountUserListV2RequestType { + + protected int accountid; + protected int page; + + /** + * Gets the value of the accountid property. + * + */ + public int getAccountid() { + return accountid; + } + + /** + * Sets the value of the accountid property. + * + */ + public void setAccountid(int value) { + this.accountid = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserListV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserListV2ResponseType.java new file mode 100644 index 0000000..0b31cc2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserListV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountUserListV2ResponseType complex type. + * + *

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

+ * <complexType name="accountUserListV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}UserV2PagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountUserListV2ResponseType", propOrder = { + +}) +public class AccountUserListV2ResponseType { + + @XmlElement(required = true) + protected UserV2PagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link UserV2PagedResult } + * + */ + public UserV2PagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link UserV2PagedResult } + * + */ + public void setOut(UserV2PagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserSearchV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserSearchV2RequestType.java new file mode 100644 index 0000000..558c5b8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserSearchV2RequestType.java @@ -0,0 +1,105 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountUserSearchV2RequestType complex type. + * + *

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

+ * <complexType name="accountUserSearchV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="phrase" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountUserSearchV2RequestType", propOrder = { + +}) +public class AccountUserSearchV2RequestType { + + protected int accountid; + @XmlElement(required = true) + protected String phrase; + protected int page; + + /** + * Gets the value of the accountid property. + * + */ + public int getAccountid() { + return accountid; + } + + /** + * Sets the value of the accountid property. + * + */ + public void setAccountid(int value) { + this.accountid = value; + } + + /** + * Gets the value of the phrase property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPhrase() { + return phrase; + } + + /** + * Sets the value of the phrase property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPhrase(String value) { + this.phrase = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserSearchV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserSearchV2ResponseType.java new file mode 100644 index 0000000..8573ab9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserSearchV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountUserSearchV2ResponseType complex type. + * + *

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

+ * <complexType name="accountUserSearchV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}UserV2PagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountUserSearchV2ResponseType", propOrder = { + +}) +public class AccountUserSearchV2ResponseType { + + @XmlElement(required = true) + protected UserV2PagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link UserV2PagedResult } + * + */ + public UserV2PagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link UserV2PagedResult } + * + */ + public void setOut(UserV2PagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2.java new file mode 100644 index 0000000..14e2885 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2.java @@ -0,0 +1,465 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for AccountV2 complex type. + * + *

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

+ * <complexType name="AccountV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="environment" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="reseller" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contactemail" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="creationtime" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="lastmodified" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="clientcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="comments" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="usernameprefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="balance" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="balancethreshold" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AccountV2", propOrder = { + +}) +public class AccountV2 { + + protected int id; + @XmlElement(required = true) + protected String name; + @XmlElement(required = true) + protected String address; + @XmlElement(required = true) + protected String environment; + protected boolean reseller; + @XmlElement(required = true) + protected String contactname; + @XmlElement(required = true) + protected String contactemail; + @XmlElement(required = true) + protected String telephone; + @XmlElement(required = true) + protected String fax; + @XmlElement(required = true) + protected String description; + @XmlElement(required = true) + protected String creationtime; + @XmlElement(required = true) + protected String lastmodified; + @XmlElement(required = true) + protected String clientcode; + @XmlElement(required = true) + protected String comments; + @XmlElement(required = true) + protected String usernameprefix; + protected float balance; + protected float balancethreshold; + + /** + * Gets the value of the id property. + * + */ + public int getId() { + return id; + } + + /** + * Sets the value of the id property. + * + */ + public void setId(int value) { + this.id = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the environment property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnvironment() { + return environment; + } + + /** + * Sets the value of the environment property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnvironment(String value) { + this.environment = value; + } + + /** + * Gets the value of the reseller property. + * + */ + public boolean isReseller() { + return reseller; + } + + /** + * Sets the value of the reseller property. + * + */ + public void setReseller(boolean value) { + this.reseller = value; + } + + /** + * Gets the value of the contactname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactname() { + return contactname; + } + + /** + * Sets the value of the contactname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactname(String value) { + this.contactname = value; + } + + /** + * Gets the value of the contactemail property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactemail() { + return contactemail; + } + + /** + * Sets the value of the contactemail property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactemail(String value) { + this.contactemail = value; + } + + /** + * Gets the value of the telephone property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephone() { + return telephone; + } + + /** + * Sets the value of the telephone property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephone(String value) { + this.telephone = value; + } + + /** + * Gets the value of the fax property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFax() { + return fax; + } + + /** + * Sets the value of the fax property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFax(String value) { + this.fax = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the creationtime property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreationtime() { + return creationtime; + } + + /** + * Sets the value of the creationtime property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreationtime(String value) { + this.creationtime = value; + } + + /** + * Gets the value of the lastmodified property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastmodified() { + return lastmodified; + } + + /** + * Sets the value of the lastmodified property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastmodified(String value) { + this.lastmodified = value; + } + + /** + * Gets the value of the clientcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getClientcode() { + return clientcode; + } + + /** + * Sets the value of the clientcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setClientcode(String value) { + this.clientcode = value; + } + + /** + * Gets the value of the comments property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getComments() { + return comments; + } + + /** + * Sets the value of the comments property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setComments(String value) { + this.comments = value; + } + + /** + * Gets the value of the usernameprefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUsernameprefix() { + return usernameprefix; + } + + /** + * Sets the value of the usernameprefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUsernameprefix(String value) { + this.usernameprefix = value; + } + + /** + * Gets the value of the balance property. + * + */ + public float getBalance() { + return balance; + } + + /** + * Sets the value of the balance property. + * + */ + public void setBalance(float value) { + this.balance = value; + } + + /** + * Gets the value of the balancethreshold property. + * + */ + public float getBalancethreshold() { + return balancethreshold; + } + + /** + * Sets the value of the balancethreshold property. + * + */ + public void setBalancethreshold(float value) { + this.balancethreshold = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2Array.java new file mode 100644 index 0000000..376a628 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for AccountV2Array complex type. + * + *

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

+ * <complexType name="AccountV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}AccountV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AccountV2Array", propOrder = { + "item" +}) +public class AccountV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AccountV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2PagedResult.java new file mode 100644 index 0000000..0e08ae5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2PagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for AccountV2PagedResult complex type. + * + *

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

+ * <complexType name="AccountV2PagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}AccountV2Array"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AccountV2PagedResult", propOrder = { + +}) +public class AccountV2PagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected AccountV2Array results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link AccountV2Array } + * + */ + public AccountV2Array getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link AccountV2Array } + * + */ + public void setResults(AccountV2Array value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewBalanceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewBalanceRequestType.java new file mode 100644 index 0000000..c90c1ac --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewBalanceRequestType.java @@ -0,0 +1,59 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountViewBalanceRequestType complex type. + * + *

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

+ * <complexType name="accountViewBalanceRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountViewBalanceRequestType", propOrder = { + +}) +public class AccountViewBalanceRequestType { + + protected int accountid; + + /** + * Gets the value of the accountid property. + * + */ + public int getAccountid() { + return accountid; + } + + /** + * Sets the value of the accountid property. + * + */ + public void setAccountid(int value) { + this.accountid = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewBalanceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewBalanceResponseType.java new file mode 100644 index 0000000..7973be5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewBalanceResponseType.java @@ -0,0 +1,59 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountViewBalanceResponseType complex type. + * + *

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

+ * <complexType name="accountViewBalanceResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="balance" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountViewBalanceResponseType", propOrder = { + +}) +public class AccountViewBalanceResponseType { + + protected float balance; + + /** + * Gets the value of the balance property. + * + */ + public float getBalance() { + return balance; + } + + /** + * Sets the value of the balance property. + * + */ + public void setBalance(float value) { + this.balance = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewHostRestrictionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewHostRestrictionsRequestType.java new file mode 100644 index 0000000..6969cdc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewHostRestrictionsRequestType.java @@ -0,0 +1,59 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountViewHostRestrictionsRequestType complex type. + * + *

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

+ * <complexType name="accountViewHostRestrictionsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountViewHostRestrictionsRequestType", propOrder = { + +}) +public class AccountViewHostRestrictionsRequestType { + + protected int accountid; + + /** + * Gets the value of the accountid property. + * + */ + public int getAccountid() { + return accountid; + } + + /** + * Sets the value of the accountid property. + * + */ + public void setAccountid(int value) { + this.accountid = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewHostRestrictionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewHostRestrictionsResponseType.java new file mode 100644 index 0000000..8916196 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewHostRestrictionsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountViewHostRestrictionsResponseType complex type. + * + *

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

+ * <complexType name="accountViewHostRestrictionsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountViewHostRestrictionsResponseType", propOrder = { + +}) +public class AccountViewHostRestrictionsResponseType { + + @XmlElement(required = true) + protected String out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewV2RequestType.java new file mode 100644 index 0000000..07d5356 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewV2RequestType.java @@ -0,0 +1,59 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountViewV2RequestType complex type. + * + *

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

+ * <complexType name="accountViewV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountViewV2RequestType", propOrder = { + +}) +public class AccountViewV2RequestType { + + protected int accountid; + + /** + * Gets the value of the accountid property. + * + */ + public int getAccountid() { + return accountid; + } + + /** + * Sets the value of the accountid property. + * + */ + public void setAccountid(int value) { + this.accountid = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewV2ResponseType.java new file mode 100644 index 0000000..93d66a3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for accountViewV2ResponseType complex type. + * + *

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

+ * <complexType name="accountViewV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}AccountV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "accountViewV2ResponseType", propOrder = { + +}) +public class AccountViewV2ResponseType { + + @XmlElement(required = true) + protected AccountV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link AccountV2 } + * + */ + public AccountV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link AccountV2 } + * + */ + public void setOut(AccountV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCityListNeighborhoodsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCityListNeighborhoodsRequestType.java new file mode 100644 index 0000000..b986ade --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCityListNeighborhoodsRequestType.java @@ -0,0 +1,105 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressCityListNeighborhoodsRequestType complex type. + * + *

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

+ * <complexType name="addressCityListNeighborhoodsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postbus" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressCityListNeighborhoodsRequestType", propOrder = { + +}) +public class AddressCityListNeighborhoodsRequestType { + + @XmlElement(required = true) + protected String name; + protected boolean postbus; + protected int page; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the postbus property. + * + */ + public boolean isPostbus() { + return postbus; + } + + /** + * Sets the value of the postbus property. + * + */ + public void setPostbus(boolean value) { + this.postbus = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCityListNeighborhoodsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCityListNeighborhoodsResponseType.java new file mode 100644 index 0000000..56fbf36 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCityListNeighborhoodsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressCityListNeighborhoodsResponseType complex type. + * + *

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

+ * <complexType name="addressCityListNeighborhoodsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}NeighborhoodPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressCityListNeighborhoodsResponseType", propOrder = { + +}) +public class AddressCityListNeighborhoodsResponseType { + + @XmlElement(required = true) + protected NeighborhoodPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link NeighborhoodPagedResult } + * + */ + public NeighborhoodPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link NeighborhoodPagedResult } + * + */ + public void setOut(NeighborhoodPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCitySearchV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCitySearchV2RequestType.java new file mode 100644 index 0000000..91c8e84 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCitySearchV2RequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressCitySearchV2RequestType complex type. + * + *

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

+ * <complexType name="addressCitySearchV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressCitySearchV2RequestType", propOrder = { + +}) +public class AddressCitySearchV2RequestType { + + @XmlElement(required = true) + protected String name; + protected int page; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCitySearchV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCitySearchV2ResponseType.java new file mode 100644 index 0000000..bd1106d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCitySearchV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressCitySearchV2ResponseType complex type. + * + *

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

+ * <complexType name="addressCitySearchV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CityV2PagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressCitySearchV2ResponseType", propOrder = { + +}) +public class AddressCitySearchV2ResponseType { + + @XmlElement(required = true) + protected CityV2PagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CityV2PagedResult } + * + */ + public CityV2PagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CityV2PagedResult } + * + */ + public void setOut(CityV2PagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListCitiesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListCitiesRequestType.java new file mode 100644 index 0000000..4412fb6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListCitiesRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressDistrictListCitiesRequestType complex type. + * + *

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

+ * <complexType name="addressDistrictListCitiesRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressDistrictListCitiesRequestType", propOrder = { + +}) +public class AddressDistrictListCitiesRequestType { + + @XmlElement(required = true) + protected String name; + protected int page; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListCitiesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListCitiesResponseType.java new file mode 100644 index 0000000..5cc1658 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListCitiesResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressDistrictListCitiesResponseType complex type. + * + *

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

+ * <complexType name="addressDistrictListCitiesResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CityPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressDistrictListCitiesResponseType", propOrder = { + +}) +public class AddressDistrictListCitiesResponseType { + + @XmlElement(required = true) + protected CityPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CityPagedResult } + * + */ + public CityPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CityPagedResult } + * + */ + public void setOut(CityPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListNeighborhoodsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListNeighborhoodsRequestType.java new file mode 100644 index 0000000..d962b1e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListNeighborhoodsRequestType.java @@ -0,0 +1,105 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressDistrictListNeighborhoodsRequestType complex type. + * + *

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

+ * <complexType name="addressDistrictListNeighborhoodsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postbus" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressDistrictListNeighborhoodsRequestType", propOrder = { + +}) +public class AddressDistrictListNeighborhoodsRequestType { + + @XmlElement(required = true) + protected String name; + protected boolean postbus; + protected int page; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the postbus property. + * + */ + public boolean isPostbus() { + return postbus; + } + + /** + * Sets the value of the postbus property. + * + */ + public void setPostbus(boolean value) { + this.postbus = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListNeighborhoodsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListNeighborhoodsResponseType.java new file mode 100644 index 0000000..b5efaa3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListNeighborhoodsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressDistrictListNeighborhoodsResponseType complex type. + * + *

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

+ * <complexType name="addressDistrictListNeighborhoodsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}NeighborhoodPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressDistrictListNeighborhoodsResponseType", propOrder = { + +}) +public class AddressDistrictListNeighborhoodsResponseType { + + @XmlElement(required = true) + protected NeighborhoodPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link NeighborhoodPagedResult } + * + */ + public NeighborhoodPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link NeighborhoodPagedResult } + * + */ + public void setOut(NeighborhoodPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictSearchRequestType.java new file mode 100644 index 0000000..469440b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictSearchRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressDistrictSearchRequestType complex type. + * + *

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

+ * <complexType name="addressDistrictSearchRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressDistrictSearchRequestType", propOrder = { + +}) +public class AddressDistrictSearchRequestType { + + @XmlElement(required = true) + protected String name; + protected int page; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictSearchResponseType.java new file mode 100644 index 0000000..7b3ceeb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictSearchResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressDistrictSearchResponseType complex type. + * + *

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

+ * <complexType name="addressDistrictSearchResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DistrictPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressDistrictSearchResponseType", propOrder = { + +}) +public class AddressDistrictSearchResponseType { + + @XmlElement(required = true) + protected DistrictPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DistrictPagedResult } + * + */ + public DistrictPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DistrictPagedResult } + * + */ + public void setOut(DistrictPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodNameRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodNameRequestType.java new file mode 100644 index 0000000..462f1cb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodNameRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressNeighborhoodNameRequestType complex type. + * + *

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

+ * <complexType name="addressNeighborhoodNameRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressNeighborhoodNameRequestType", propOrder = { + +}) +public class AddressNeighborhoodNameRequestType { + + @XmlElement(required = true) + protected String nbcode; + + /** + * Gets the value of the nbcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcode() { + return nbcode; + } + + /** + * Sets the value of the nbcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcode(String value) { + this.nbcode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodNameResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodNameResponseType.java new file mode 100644 index 0000000..c47cc55 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodNameResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressNeighborhoodNameResponseType complex type. + * + *

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

+ * <complexType name="addressNeighborhoodNameResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressNeighborhoodNameResponseType", propOrder = { + +}) +public class AddressNeighborhoodNameResponseType { + + @XmlElement(required = true) + protected String name; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodPhraseSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodPhraseSearchRequestType.java new file mode 100644 index 0000000..40c3667 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodPhraseSearchRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressNeighborhoodPhraseSearchRequestType complex type. + * + *

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

+ * <complexType name="addressNeighborhoodPhraseSearchRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressNeighborhoodPhraseSearchRequestType", propOrder = { + +}) +public class AddressNeighborhoodPhraseSearchRequestType { + + @XmlElement(required = true) + protected String name; + protected int page; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodPhraseSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodPhraseSearchResponseType.java new file mode 100644 index 0000000..341bb4c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodPhraseSearchResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressNeighborhoodPhraseSearchResponseType complex type. + * + *

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

+ * <complexType name="addressNeighborhoodPhraseSearchResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}NeighborhoodNamePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressNeighborhoodPhraseSearchResponseType", propOrder = { + +}) +public class AddressNeighborhoodPhraseSearchResponseType { + + @XmlElement(required = true) + protected NeighborhoodNamePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link NeighborhoodNamePagedResult } + * + */ + public NeighborhoodNamePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link NeighborhoodNamePagedResult } + * + */ + public void setOut(NeighborhoodNamePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchRequestType.java new file mode 100644 index 0000000..c1af08b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchRequestType.java @@ -0,0 +1,294 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressPerceelFullParameterSearchRequestType complex type. + * + *

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

+ * <complexType name="addressPerceelFullParameterSearchRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="houseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="lettercombination" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="addresstype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressPerceelFullParameterSearchRequestType", propOrder = { + +}) +public class AddressPerceelFullParameterSearchRequestType { + + @XmlElement(required = true) + protected String province; + @XmlElement(required = true) + protected String district; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String street; + protected int houseNo; + @XmlElement(required = true) + protected String houseNoAddition; + @XmlElement(required = true) + protected String nbcode; + @XmlElement(required = true) + protected String lettercombination; + @XmlElement(required = true) + protected String addresstype; + protected int page; + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the district property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDistrict() { + return district; + } + + /** + * Sets the value of the district property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDistrict(String value) { + this.district = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNo property. + * + */ + public int getHouseNo() { + return houseNo; + } + + /** + * Sets the value of the houseNo property. + * + */ + public void setHouseNo(int value) { + this.houseNo = value; + } + + /** + * Gets the value of the houseNoAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNoAddition() { + return houseNoAddition; + } + + /** + * Sets the value of the houseNoAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNoAddition(String value) { + this.houseNoAddition = value; + } + + /** + * Gets the value of the nbcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcode() { + return nbcode; + } + + /** + * Sets the value of the nbcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcode(String value) { + this.nbcode = value; + } + + /** + * Gets the value of the lettercombination property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLettercombination() { + return lettercombination; + } + + /** + * Sets the value of the lettercombination property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLettercombination(String value) { + this.lettercombination = value; + } + + /** + * Gets the value of the addresstype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddresstype() { + return addresstype; + } + + /** + * Sets the value of the addresstype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddresstype(String value) { + this.addresstype = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchResponseType.java new file mode 100644 index 0000000..308c869 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressPerceelFullParameterSearchResponseType complex type. + * + *

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

+ * <complexType name="addressPerceelFullParameterSearchResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}PerceelSearchPartsPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressPerceelFullParameterSearchResponseType", propOrder = { + +}) +public class AddressPerceelFullParameterSearchResponseType { + + @XmlElement(required = true) + protected PerceelSearchPartsPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link PerceelSearchPartsPagedResult } + * + */ + public PerceelSearchPartsPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link PerceelSearchPartsPagedResult } + * + */ + public void setOut(PerceelSearchPartsPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchV2RequestType.java new file mode 100644 index 0000000..94accd2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchV2RequestType.java @@ -0,0 +1,294 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressPerceelFullParameterSearchV2RequestType complex type. + * + *

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

+ * <complexType name="addressPerceelFullParameterSearchV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="houseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="lettercombination" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="addresstype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressPerceelFullParameterSearchV2RequestType", propOrder = { + +}) +public class AddressPerceelFullParameterSearchV2RequestType { + + @XmlElement(required = true) + protected String province; + @XmlElement(required = true) + protected String district; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String street; + protected int houseNo; + @XmlElement(required = true) + protected String houseNoAddition; + @XmlElement(required = true) + protected String nbcode; + @XmlElement(required = true) + protected String lettercombination; + @XmlElement(required = true) + protected String addresstype; + protected int page; + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the district property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDistrict() { + return district; + } + + /** + * Sets the value of the district property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDistrict(String value) { + this.district = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNo property. + * + */ + public int getHouseNo() { + return houseNo; + } + + /** + * Sets the value of the houseNo property. + * + */ + public void setHouseNo(int value) { + this.houseNo = value; + } + + /** + * Gets the value of the houseNoAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNoAddition() { + return houseNoAddition; + } + + /** + * Sets the value of the houseNoAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNoAddition(String value) { + this.houseNoAddition = value; + } + + /** + * Gets the value of the nbcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcode() { + return nbcode; + } + + /** + * Sets the value of the nbcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcode(String value) { + this.nbcode = value; + } + + /** + * Gets the value of the lettercombination property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLettercombination() { + return lettercombination; + } + + /** + * Sets the value of the lettercombination property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLettercombination(String value) { + this.lettercombination = value; + } + + /** + * Gets the value of the addresstype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddresstype() { + return addresstype; + } + + /** + * Sets the value of the addresstype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddresstype(String value) { + this.addresstype = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchV2ResponseType.java new file mode 100644 index 0000000..fa693d0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressPerceelFullParameterSearchV2ResponseType complex type. + * + *

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

+ * <complexType name="addressPerceelFullParameterSearchV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}PerceelSearchPartsPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressPerceelFullParameterSearchV2ResponseType", propOrder = { + +}) +public class AddressPerceelFullParameterSearchV2ResponseType { + + @XmlElement(required = true) + protected PerceelSearchPartsPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link PerceelSearchPartsPagedResult } + * + */ + public PerceelSearchPartsPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link PerceelSearchPartsPagedResult } + * + */ + public void setOut(PerceelSearchPartsPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelParameterSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelParameterSearchRequestType.java new file mode 100644 index 0000000..856b943 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelParameterSearchRequestType.java @@ -0,0 +1,213 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressPerceelParameterSearchRequestType complex type. + * + *

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

+ * <complexType name="addressPerceelParameterSearchRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="houseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressPerceelParameterSearchRequestType", propOrder = { + +}) +public class AddressPerceelParameterSearchRequestType { + + @XmlElement(required = true) + protected String province; + @XmlElement(required = true) + protected String district; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String street; + protected int houseNo; + @XmlElement(required = true) + protected String houseNoAddition; + protected int page; + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the district property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDistrict() { + return district; + } + + /** + * Sets the value of the district property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDistrict(String value) { + this.district = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNo property. + * + */ + public int getHouseNo() { + return houseNo; + } + + /** + * Sets the value of the houseNo property. + * + */ + public void setHouseNo(int value) { + this.houseNo = value; + } + + /** + * Gets the value of the houseNoAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNoAddition() { + return houseNoAddition; + } + + /** + * Sets the value of the houseNoAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNoAddition(String value) { + this.houseNoAddition = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelParameterSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelParameterSearchResponseType.java new file mode 100644 index 0000000..b40e48f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelParameterSearchResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressPerceelParameterSearchResponseType complex type. + * + *

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

+ * <complexType name="addressPerceelParameterSearchResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}PerceelSearchPartsPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressPerceelParameterSearchResponseType", propOrder = { + +}) +public class AddressPerceelParameterSearchResponseType { + + @XmlElement(required = true) + protected PerceelSearchPartsPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link PerceelSearchPartsPagedResult } + * + */ + public PerceelSearchPartsPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link PerceelSearchPartsPagedResult } + * + */ + public void setOut(PerceelSearchPartsPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelPhraseSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelPhraseSearchRequestType.java new file mode 100644 index 0000000..37c7738 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelPhraseSearchRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressPerceelPhraseSearchRequestType complex type. + * + *

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

+ * <complexType name="addressPerceelPhraseSearchRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressPerceelPhraseSearchRequestType", propOrder = { + +}) +public class AddressPerceelPhraseSearchRequestType { + + @XmlElement(required = true) + protected String address; + protected int page; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelPhraseSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelPhraseSearchResponseType.java new file mode 100644 index 0000000..0c304a4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelPhraseSearchResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressPerceelPhraseSearchResponseType complex type. + * + *

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

+ * <complexType name="addressPerceelPhraseSearchResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}PerceelSearchPartsPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressPerceelPhraseSearchResponseType", propOrder = { + +}) +public class AddressPerceelPhraseSearchResponseType { + + @XmlElement(required = true) + protected PerceelSearchPartsPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link PerceelSearchPartsPagedResult } + * + */ + public PerceelSearchPartsPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link PerceelSearchPartsPagedResult } + * + */ + public void setOut(PerceelSearchPartsPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListDistrictsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListDistrictsRequestType.java new file mode 100644 index 0000000..1eaab27 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListDistrictsRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressProvinceListDistrictsRequestType complex type. + * + *

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

+ * <complexType name="addressProvinceListDistrictsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressProvinceListDistrictsRequestType", propOrder = { + +}) +public class AddressProvinceListDistrictsRequestType { + + @XmlElement(required = true) + protected String name; + protected int page; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListDistrictsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListDistrictsResponseType.java new file mode 100644 index 0000000..f1ab006 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListDistrictsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressProvinceListDistrictsResponseType complex type. + * + *

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

+ * <complexType name="addressProvinceListDistrictsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DistrictPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressProvinceListDistrictsResponseType", propOrder = { + +}) +public class AddressProvinceListDistrictsResponseType { + + @XmlElement(required = true) + protected DistrictPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DistrictPagedResult } + * + */ + public DistrictPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DistrictPagedResult } + * + */ + public void setOut(DistrictPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListNeighborhoodsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListNeighborhoodsRequestType.java new file mode 100644 index 0000000..000b552 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListNeighborhoodsRequestType.java @@ -0,0 +1,105 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressProvinceListNeighborhoodsRequestType complex type. + * + *

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

+ * <complexType name="addressProvinceListNeighborhoodsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postbus" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressProvinceListNeighborhoodsRequestType", propOrder = { + +}) +public class AddressProvinceListNeighborhoodsRequestType { + + @XmlElement(required = true) + protected String name; + protected boolean postbus; + protected int page; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the postbus property. + * + */ + public boolean isPostbus() { + return postbus; + } + + /** + * Sets the value of the postbus property. + * + */ + public void setPostbus(boolean value) { + this.postbus = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListNeighborhoodsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListNeighborhoodsResponseType.java new file mode 100644 index 0000000..484efbd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListNeighborhoodsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressProvinceListNeighborhoodsResponseType complex type. + * + *

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

+ * <complexType name="addressProvinceListNeighborhoodsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}NeighborhoodPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressProvinceListNeighborhoodsResponseType", propOrder = { + +}) +public class AddressProvinceListNeighborhoodsResponseType { + + @XmlElement(required = true) + protected NeighborhoodPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link NeighborhoodPagedResult } + * + */ + public NeighborhoodPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link NeighborhoodPagedResult } + * + */ + public void setOut(NeighborhoodPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListRequestType.java new file mode 100644 index 0000000..91dc02d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListRequestType.java @@ -0,0 +1,59 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressProvinceListRequestType complex type. + * + *

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

+ * <complexType name="addressProvinceListRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressProvinceListRequestType", propOrder = { + +}) +public class AddressProvinceListRequestType { + + protected int page; + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListResponseType.java new file mode 100644 index 0000000..658b395 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressProvinceListResponseType complex type. + * + *

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

+ * <complexType name="addressProvinceListResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}ProvincePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressProvinceListResponseType", propOrder = { + +}) +public class AddressProvinceListResponseType { + + @XmlElement(required = true) + protected ProvincePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link ProvincePagedResult } + * + */ + public ProvincePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link ProvincePagedResult } + * + */ + public void setOut(ProvincePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceSearchRequestType.java new file mode 100644 index 0000000..0b250d4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceSearchRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressProvinceSearchRequestType complex type. + * + *

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

+ * <complexType name="addressProvinceSearchRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressProvinceSearchRequestType", propOrder = { + +}) +public class AddressProvinceSearchRequestType { + + @XmlElement(required = true) + protected String name; + protected int page; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceSearchResponseType.java new file mode 100644 index 0000000..6f4f84e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceSearchResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressProvinceSearchResponseType complex type. + * + *

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

+ * <complexType name="addressProvinceSearchResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}ProvincePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressProvinceSearchResponseType", propOrder = { + +}) +public class AddressProvinceSearchResponseType { + + @XmlElement(required = true) + protected ProvincePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link ProvincePagedResult } + * + */ + public ProvincePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link ProvincePagedResult } + * + */ + public void setOut(ProvincePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksAddressSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksAddressSearchRequestType.java new file mode 100644 index 0000000..dfd02f5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksAddressSearchRequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressReeksAddressSearchRequestType complex type. + * + *

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

+ * <complexType name="addressReeksAddressSearchRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressReeksAddressSearchRequestType", propOrder = { + +}) +public class AddressReeksAddressSearchRequestType { + + @XmlElement(required = true) + protected String address; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String city; + protected int page; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksAddressSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksAddressSearchResponseType.java new file mode 100644 index 0000000..2a41e3c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksAddressSearchResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressReeksAddressSearchResponseType complex type. + * + *

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

+ * <complexType name="addressReeksAddressSearchResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}RangeAddressPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressReeksAddressSearchResponseType", propOrder = { + +}) +public class AddressReeksAddressSearchResponseType { + + @XmlElement(required = true) + protected RangeAddressPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link RangeAddressPagedResult } + * + */ + public RangeAddressPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link RangeAddressPagedResult } + * + */ + public void setOut(RangeAddressPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksFullParameterSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksFullParameterSearchRequestType.java new file mode 100644 index 0000000..2c980d2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksFullParameterSearchRequestType.java @@ -0,0 +1,294 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressReeksFullParameterSearchRequestType complex type. + * + *

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

+ * <complexType name="addressReeksFullParameterSearchRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="houseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="lettercombination" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="addresstype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressReeksFullParameterSearchRequestType", propOrder = { + +}) +public class AddressReeksFullParameterSearchRequestType { + + @XmlElement(required = true) + protected String province; + @XmlElement(required = true) + protected String district; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String street; + protected int houseNo; + @XmlElement(required = true) + protected String houseNoAddition; + @XmlElement(required = true) + protected String nbcode; + @XmlElement(required = true) + protected String lettercombination; + @XmlElement(required = true) + protected String addresstype; + protected int page; + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the district property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDistrict() { + return district; + } + + /** + * Sets the value of the district property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDistrict(String value) { + this.district = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNo property. + * + */ + public int getHouseNo() { + return houseNo; + } + + /** + * Sets the value of the houseNo property. + * + */ + public void setHouseNo(int value) { + this.houseNo = value; + } + + /** + * Gets the value of the houseNoAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNoAddition() { + return houseNoAddition; + } + + /** + * Sets the value of the houseNoAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNoAddition(String value) { + this.houseNoAddition = value; + } + + /** + * Gets the value of the nbcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcode() { + return nbcode; + } + + /** + * Sets the value of the nbcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcode(String value) { + this.nbcode = value; + } + + /** + * Gets the value of the lettercombination property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLettercombination() { + return lettercombination; + } + + /** + * Sets the value of the lettercombination property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLettercombination(String value) { + this.lettercombination = value; + } + + /** + * Gets the value of the addresstype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddresstype() { + return addresstype; + } + + /** + * Sets the value of the addresstype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddresstype(String value) { + this.addresstype = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksFullParameterSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksFullParameterSearchResponseType.java new file mode 100644 index 0000000..d42c37f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksFullParameterSearchResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressReeksFullParameterSearchResponseType complex type. + * + *

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

+ * <complexType name="addressReeksFullParameterSearchResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}PCReeksSearchPartsPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressReeksFullParameterSearchResponseType", propOrder = { + +}) +public class AddressReeksFullParameterSearchResponseType { + + @XmlElement(required = true) + protected PCReeksSearchPartsPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link PCReeksSearchPartsPagedResult } + * + */ + public PCReeksSearchPartsPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link PCReeksSearchPartsPagedResult } + * + */ + public void setOut(PCReeksSearchPartsPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksParameterSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksParameterSearchRequestType.java new file mode 100644 index 0000000..e0f9f5d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksParameterSearchRequestType.java @@ -0,0 +1,213 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressReeksParameterSearchRequestType complex type. + * + *

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

+ * <complexType name="addressReeksParameterSearchRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="houseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressReeksParameterSearchRequestType", propOrder = { + +}) +public class AddressReeksParameterSearchRequestType { + + @XmlElement(required = true) + protected String province; + @XmlElement(required = true) + protected String district; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String street; + protected int houseNo; + @XmlElement(required = true) + protected String houseNoAddition; + protected int page; + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the district property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDistrict() { + return district; + } + + /** + * Sets the value of the district property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDistrict(String value) { + this.district = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNo property. + * + */ + public int getHouseNo() { + return houseNo; + } + + /** + * Sets the value of the houseNo property. + * + */ + public void setHouseNo(int value) { + this.houseNo = value; + } + + /** + * Gets the value of the houseNoAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNoAddition() { + return houseNoAddition; + } + + /** + * Sets the value of the houseNoAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNoAddition(String value) { + this.houseNoAddition = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksParameterSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksParameterSearchResponseType.java new file mode 100644 index 0000000..f302313 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksParameterSearchResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressReeksParameterSearchResponseType complex type. + * + *

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

+ * <complexType name="addressReeksParameterSearchResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}PCReeksSearchPartsPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressReeksParameterSearchResponseType", propOrder = { + +}) +public class AddressReeksParameterSearchResponseType { + + @XmlElement(required = true) + protected PCReeksSearchPartsPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link PCReeksSearchPartsPagedResult } + * + */ + public PCReeksSearchPartsPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link PCReeksSearchPartsPagedResult } + * + */ + public void setOut(PCReeksSearchPartsPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPhraseSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPhraseSearchRequestType.java new file mode 100644 index 0000000..57c85c7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPhraseSearchRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressReeksPhraseSearchRequestType complex type. + * + *

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

+ * <complexType name="addressReeksPhraseSearchRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressReeksPhraseSearchRequestType", propOrder = { + +}) +public class AddressReeksPhraseSearchRequestType { + + @XmlElement(required = true) + protected String address; + protected int page; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPhraseSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPhraseSearchResponseType.java new file mode 100644 index 0000000..28b6a3c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPhraseSearchResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressReeksPhraseSearchResponseType complex type. + * + *

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

+ * <complexType name="addressReeksPhraseSearchResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}PCReeksSearchPartsPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressReeksPhraseSearchResponseType", propOrder = { + +}) +public class AddressReeksPhraseSearchResponseType { + + @XmlElement(required = true) + protected PCReeksSearchPartsPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link PCReeksSearchPartsPagedResult } + * + */ + public PCReeksSearchPartsPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link PCReeksSearchPartsPagedResult } + * + */ + public void setOut(PCReeksSearchPartsPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPostcodeSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPostcodeSearchRequestType.java new file mode 100644 index 0000000..9a165c0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPostcodeSearchRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressReeksPostcodeSearchRequestType complex type. + * + *

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

+ * <complexType name="addressReeksPostcodeSearchRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressReeksPostcodeSearchRequestType", propOrder = { + +}) +public class AddressReeksPostcodeSearchRequestType { + + @XmlElement(required = true) + protected String address; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPostcodeSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPostcodeSearchResponseType.java new file mode 100644 index 0000000..13cc7ff --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPostcodeSearchResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for addressReeksPostcodeSearchResponseType complex type. + * + *

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

+ * <complexType name="addressReeksPostcodeSearchResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}PCReeks"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "addressReeksPostcodeSearchResponseType", propOrder = { + +}) +public class AddressReeksPostcodeSearchResponseType { + + @XmlElement(required = true) + protected PCReeks out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link PCReeks } + * + */ + public PCReeks getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link PCReeks } + * + */ + public void setOut(PCReeks value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCode.java new file mode 100644 index 0000000..ab995b1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCode.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for AreaCode complex type. + * + *

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

+ * <complexType name="AreaCode">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="areacode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AreaCode", propOrder = { + +}) +public class AreaCode { + + @XmlElement(required = true) + protected String areacode; + + /** + * Gets the value of the areacode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAreacode() { + return areacode; + } + + /** + * Sets the value of the areacode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAreacode(String value) { + this.areacode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeArray.java new file mode 100644 index 0000000..8decaf4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for AreaCodeArray complex type. + * + *

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

+ * <complexType name="AreaCodeArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}AreaCode" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AreaCodeArray", propOrder = { + "item" +}) +public class AreaCodeArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link AreaCode } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeLookupRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeLookupRequestType.java new file mode 100644 index 0000000..d1d272c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeLookupRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for areaCodeLookupRequestType complex type. + * + *

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

+ * <complexType name="areaCodeLookupRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="neighborhoodcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "areaCodeLookupRequestType", propOrder = { + +}) +public class AreaCodeLookupRequestType { + + @XmlElement(required = true) + protected String neighborhoodcode; + protected int page; + + /** + * Gets the value of the neighborhoodcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNeighborhoodcode() { + return neighborhoodcode; + } + + /** + * Sets the value of the neighborhoodcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNeighborhoodcode(String value) { + this.neighborhoodcode = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeLookupResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeLookupResponseType.java new file mode 100644 index 0000000..65acda0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeLookupResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for areaCodeLookupResponseType complex type. + * + *

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

+ * <complexType name="areaCodeLookupResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}AreaCodePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "areaCodeLookupResponseType", propOrder = { + +}) +public class AreaCodeLookupResponseType { + + @XmlElement(required = true) + protected AreaCodePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link AreaCodePagedResult } + * + */ + public AreaCodePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link AreaCodePagedResult } + * + */ + public void setOut(AreaCodePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePagedResult.java new file mode 100644 index 0000000..4409316 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for AreaCodePagedResult complex type. + * + *

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

+ * <complexType name="AreaCodePagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}AreaCodeArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "AreaCodePagedResult", propOrder = { + +}) +public class AreaCodePagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected AreaCodeArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link AreaCodeArray } + * + */ + public AreaCodeArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link AreaCodeArray } + * + */ + public void setResults(AreaCodeArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupRequestType.java new file mode 100644 index 0000000..141e6ec --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for areaCodePostcodeLookupRequestType complex type. + * + *

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

+ * <complexType name="areaCodePostcodeLookupRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "areaCodePostcodeLookupRequestType", propOrder = { + +}) +public class AreaCodePostcodeLookupRequestType { + + @XmlElement(required = true) + protected String postcode; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupResponseType.java new file mode 100644 index 0000000..637095c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for areaCodePostcodeLookupResponseType complex type. + * + *

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

+ * <complexType name="areaCodePostcodeLookupResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}AreaCodeArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "areaCodePostcodeLookupResponseType", propOrder = { + +}) +public class AreaCodePostcodeLookupResponseType { + + @XmlElement(required = true) + protected AreaCodeArray out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link AreaCodeArray } + * + */ + public AreaCodeArray getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link AreaCodeArray } + * + */ + public void setOut(AreaCodeArray value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeToNeighborhoodcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeToNeighborhoodcodeRequestType.java new file mode 100644 index 0000000..693ad3e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeToNeighborhoodcodeRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for areaCodeToNeighborhoodcodeRequestType complex type. + * + *

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

+ * <complexType name="areaCodeToNeighborhoodcodeRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="areacode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "areaCodeToNeighborhoodcodeRequestType", propOrder = { + +}) +public class AreaCodeToNeighborhoodcodeRequestType { + + @XmlElement(required = true) + protected String areacode; + protected int page; + + /** + * Gets the value of the areacode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAreacode() { + return areacode; + } + + /** + * Sets the value of the areacode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAreacode(String value) { + this.areacode = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeToNeighborhoodcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeToNeighborhoodcodeResponseType.java new file mode 100644 index 0000000..59032a9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeToNeighborhoodcodeResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for areaCodeToNeighborhoodcodeResponseType complex type. + * + *

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

+ * <complexType name="areaCodeToNeighborhoodcodeResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}NeighborhoodPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "areaCodeToNeighborhoodcodeResponseType", propOrder = { + +}) +public class AreaCodeToNeighborhoodcodeResponseType { + + @XmlElement(required = true) + protected NeighborhoodPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link NeighborhoodPagedResult } + * + */ + public NeighborhoodPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link NeighborhoodPagedResult } + * + */ + public void setOut(NeighborhoodPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Base64BinaryArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Base64BinaryArray.java new file mode 100644 index 0000000..b673120 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Base64BinaryArray.java @@ -0,0 +1,73 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for base64BinaryArray complex type. + * + *

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

+ * <complexType name="base64BinaryArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.w3.org/2001/XMLSchema}base64Binary" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "base64BinaryArray", propOrder = { + "item" +}) +public class Base64BinaryArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * byte[] + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BbanDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BbanDetails.java new file mode 100644 index 0000000..b4ca6e9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BbanDetails.java @@ -0,0 +1,339 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BbanDetails complex type. + * + *

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

+ * <complexType name="BbanDetails">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bban_bank_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bban_branch_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bban_account" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bban_account_prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bban_account_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bban_checksum" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bban_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bban_holder_kennitala" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bban_owner_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bban_sort_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bban_zero" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BbanDetails", propOrder = { + +}) +public class BbanDetails { + + @XmlElement(name = "bban_bank_id") + protected String bbanBankId; + @XmlElement(name = "bban_branch_id") + protected String bbanBranchId; + @XmlElement(name = "bban_account") + protected String bbanAccount; + @XmlElement(name = "bban_account_prefix") + protected String bbanAccountPrefix; + @XmlElement(name = "bban_account_type") + protected String bbanAccountType; + @XmlElement(name = "bban_checksum") + protected String bbanChecksum; + @XmlElement(name = "bban_currency") + protected String bbanCurrency; + @XmlElement(name = "bban_holder_kennitala") + protected String bbanHolderKennitala; + @XmlElement(name = "bban_owner_number") + protected String bbanOwnerNumber; + @XmlElement(name = "bban_sort_code") + protected String bbanSortCode; + @XmlElement(name = "bban_zero") + protected String bbanZero; + + /** + * Gets the value of the bbanBankId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBbanBankId() { + return bbanBankId; + } + + /** + * Sets the value of the bbanBankId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBbanBankId(String value) { + this.bbanBankId = value; + } + + /** + * Gets the value of the bbanBranchId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBbanBranchId() { + return bbanBranchId; + } + + /** + * Sets the value of the bbanBranchId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBbanBranchId(String value) { + this.bbanBranchId = value; + } + + /** + * Gets the value of the bbanAccount property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBbanAccount() { + return bbanAccount; + } + + /** + * Sets the value of the bbanAccount property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBbanAccount(String value) { + this.bbanAccount = value; + } + + /** + * Gets the value of the bbanAccountPrefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBbanAccountPrefix() { + return bbanAccountPrefix; + } + + /** + * Sets the value of the bbanAccountPrefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBbanAccountPrefix(String value) { + this.bbanAccountPrefix = value; + } + + /** + * Gets the value of the bbanAccountType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBbanAccountType() { + return bbanAccountType; + } + + /** + * Sets the value of the bbanAccountType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBbanAccountType(String value) { + this.bbanAccountType = value; + } + + /** + * Gets the value of the bbanChecksum property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBbanChecksum() { + return bbanChecksum; + } + + /** + * Sets the value of the bbanChecksum property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBbanChecksum(String value) { + this.bbanChecksum = value; + } + + /** + * Gets the value of the bbanCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBbanCurrency() { + return bbanCurrency; + } + + /** + * Sets the value of the bbanCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBbanCurrency(String value) { + this.bbanCurrency = value; + } + + /** + * Gets the value of the bbanHolderKennitala property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBbanHolderKennitala() { + return bbanHolderKennitala; + } + + /** + * Sets the value of the bbanHolderKennitala property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBbanHolderKennitala(String value) { + this.bbanHolderKennitala = value; + } + + /** + * Gets the value of the bbanOwnerNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBbanOwnerNumber() { + return bbanOwnerNumber; + } + + /** + * Sets the value of the bbanOwnerNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBbanOwnerNumber(String value) { + this.bbanOwnerNumber = value; + } + + /** + * Gets the value of the bbanSortCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBbanSortCode() { + return bbanSortCode; + } + + /** + * Sets the value of the bbanSortCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBbanSortCode(String value) { + this.bbanSortCode = value; + } + + /** + * Gets the value of the bbanZero property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBbanZero() { + return bbanZero; + } + + /** + * Sets the value of the bbanZero property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBbanZero(String value) { + this.bbanZero = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAddress.java new file mode 100644 index 0000000..42a0ecf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAddress.java @@ -0,0 +1,194 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessAddress complex type. + * + *

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

+ * <complexType name="BelgianBusinessAddress">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="box" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="municipality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="post_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessAddress", propOrder = { + +}) +public class BelgianBusinessAddress { + + @XmlElement(required = true) + protected String street; + @XmlElement(name = "house_number") + protected int houseNumber; + protected String box; + @XmlElement(name = "country_code", required = true) + protected String countryCode; + protected String municipality; + @XmlElement(name = "post_code", required = true) + protected String postCode; + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNumber property. + * + */ + public int getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + */ + public void setHouseNumber(int value) { + this.houseNumber = value; + } + + /** + * Gets the value of the box property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBox() { + return box; + } + + /** + * Sets the value of the box property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBox(String value) { + this.box = value; + } + + /** + * Gets the value of the countryCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryCode() { + return countryCode; + } + + /** + * Sets the value of the countryCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryCode(String value) { + this.countryCode = value; + } + + /** + * Gets the value of the municipality property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMunicipality() { + return municipality; + } + + /** + * Sets the value of the municipality property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMunicipality(String value) { + this.municipality = value; + } + + /** + * Gets the value of the postCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostCode() { + return postCode; + } + + /** + * Sets the value of the postCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostCode(String value) { + this.postCode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAddressArray.java new file mode 100644 index 0000000..ebd5805 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAddressArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessAddressArray complex type. + * + *

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

+ * <complexType name="BelgianBusinessAddressArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessAddress" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessAddressArray", propOrder = { + "item" +}) +public class BelgianBusinessAddressArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BelgianBusinessAddress } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAnnualFinancialStatement.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAnnualFinancialStatement.java new file mode 100644 index 0000000..bf2d924 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAnnualFinancialStatement.java @@ -0,0 +1,562 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessAnnualFinancialStatement complex type. + * + *

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

+ * <complexType name="BelgianBusinessAnnualFinancialStatement">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="number_of_employees" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="turnover" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="equity" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="revisors" type="{http://www.webservices.nl/soap/}BelgianBusinessRevisorArray" minOccurs="0"/>
+ *         <element name="account_date" type="{http://www.webservices.nl/soap/}BelgianBusinessDate" minOccurs="0"/>
+ *         <element name="current_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="gross_operating_margin" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="tangible_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="gain_loss_period" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="current_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="net_cash" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="self_financing_degree" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="return_on_equity" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="added_value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="balance_type" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="ratios" type="{http://www.webservices.nl/soap/}BelgianBusinessRatios"/>
+ *         <element name="social_balance" type="{http://www.webservices.nl/soap/}BelgianBusinessSocialBalance"/>
+ *         <element name="financial_values" type="{http://www.webservices.nl/soap/}BelgianBusinessFinancialValues"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessAnnualFinancialStatement", propOrder = { + +}) +public class BelgianBusinessAnnualFinancialStatement { + + @XmlElement(required = true) + protected String id; + protected int year; + @XmlElement(name = "number_of_employees") + protected Integer numberOfEmployees; + protected Float turnover; + protected float equity; + protected BelgianBusinessRevisorArray revisors; + @XmlElement(name = "account_date") + protected BelgianBusinessDate accountDate; + @XmlElement(name = "current_assets") + protected Float currentAssets; + @XmlElement(name = "gross_operating_margin") + protected Float grossOperatingMargin; + @XmlElement(name = "tangible_fixed_assets") + protected Float tangibleFixedAssets; + @XmlElement(name = "gain_loss_period") + protected Float gainLossPeriod; + @XmlElement(name = "current_ratio") + protected Float currentRatio; + @XmlElement(name = "net_cash") + protected Float netCash; + @XmlElement(name = "self_financing_degree") + protected Float selfFinancingDegree; + @XmlElement(name = "return_on_equity") + protected Float returnOnEquity; + @XmlElement(name = "added_value") + protected Float addedValue; + @XmlElement(name = "balance_type") + protected Float balanceType; + @XmlElement(required = true) + protected BelgianBusinessRatios ratios; + @XmlElement(name = "social_balance", required = true) + protected BelgianBusinessSocialBalance socialBalance; + @XmlElement(name = "financial_values", required = true) + protected BelgianBusinessFinancialValues financialValues; + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the year property. + * + */ + public int getYear() { + return year; + } + + /** + * Sets the value of the year property. + * + */ + public void setYear(int value) { + this.year = value; + } + + /** + * Gets the value of the numberOfEmployees property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getNumberOfEmployees() { + return numberOfEmployees; + } + + /** + * Sets the value of the numberOfEmployees property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setNumberOfEmployees(Integer value) { + this.numberOfEmployees = value; + } + + /** + * Gets the value of the turnover property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getTurnover() { + return turnover; + } + + /** + * Sets the value of the turnover property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setTurnover(Float value) { + this.turnover = value; + } + + /** + * Gets the value of the equity property. + * + */ + public float getEquity() { + return equity; + } + + /** + * Sets the value of the equity property. + * + */ + public void setEquity(float value) { + this.equity = value; + } + + /** + * Gets the value of the revisors property. + * + * @return + * possible object is + * {@link BelgianBusinessRevisorArray } + * + */ + public BelgianBusinessRevisorArray getRevisors() { + return revisors; + } + + /** + * Sets the value of the revisors property. + * + * @param value + * allowed object is + * {@link BelgianBusinessRevisorArray } + * + */ + public void setRevisors(BelgianBusinessRevisorArray value) { + this.revisors = value; + } + + /** + * Gets the value of the accountDate property. + * + * @return + * possible object is + * {@link BelgianBusinessDate } + * + */ + public BelgianBusinessDate getAccountDate() { + return accountDate; + } + + /** + * Sets the value of the accountDate property. + * + * @param value + * allowed object is + * {@link BelgianBusinessDate } + * + */ + public void setAccountDate(BelgianBusinessDate value) { + this.accountDate = value; + } + + /** + * Gets the value of the currentAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getCurrentAssets() { + return currentAssets; + } + + /** + * Sets the value of the currentAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setCurrentAssets(Float value) { + this.currentAssets = value; + } + + /** + * Gets the value of the grossOperatingMargin property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getGrossOperatingMargin() { + return grossOperatingMargin; + } + + /** + * Sets the value of the grossOperatingMargin property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setGrossOperatingMargin(Float value) { + this.grossOperatingMargin = value; + } + + /** + * Gets the value of the tangibleFixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getTangibleFixedAssets() { + return tangibleFixedAssets; + } + + /** + * Sets the value of the tangibleFixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setTangibleFixedAssets(Float value) { + this.tangibleFixedAssets = value; + } + + /** + * Gets the value of the gainLossPeriod property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getGainLossPeriod() { + return gainLossPeriod; + } + + /** + * Sets the value of the gainLossPeriod property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setGainLossPeriod(Float value) { + this.gainLossPeriod = value; + } + + /** + * Gets the value of the currentRatio property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getCurrentRatio() { + return currentRatio; + } + + /** + * Sets the value of the currentRatio property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setCurrentRatio(Float value) { + this.currentRatio = value; + } + + /** + * Gets the value of the netCash property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getNetCash() { + return netCash; + } + + /** + * Sets the value of the netCash property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setNetCash(Float value) { + this.netCash = value; + } + + /** + * Gets the value of the selfFinancingDegree property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getSelfFinancingDegree() { + return selfFinancingDegree; + } + + /** + * Sets the value of the selfFinancingDegree property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setSelfFinancingDegree(Float value) { + this.selfFinancingDegree = value; + } + + /** + * Gets the value of the returnOnEquity property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getReturnOnEquity() { + return returnOnEquity; + } + + /** + * Sets the value of the returnOnEquity property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setReturnOnEquity(Float value) { + this.returnOnEquity = value; + } + + /** + * Gets the value of the addedValue property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAddedValue() { + return addedValue; + } + + /** + * Sets the value of the addedValue property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAddedValue(Float value) { + this.addedValue = value; + } + + /** + * Gets the value of the balanceType property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getBalanceType() { + return balanceType; + } + + /** + * Sets the value of the balanceType property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setBalanceType(Float value) { + this.balanceType = value; + } + + /** + * Gets the value of the ratios property. + * + * @return + * possible object is + * {@link BelgianBusinessRatios } + * + */ + public BelgianBusinessRatios getRatios() { + return ratios; + } + + /** + * Sets the value of the ratios property. + * + * @param value + * allowed object is + * {@link BelgianBusinessRatios } + * + */ + public void setRatios(BelgianBusinessRatios value) { + this.ratios = value; + } + + /** + * Gets the value of the socialBalance property. + * + * @return + * possible object is + * {@link BelgianBusinessSocialBalance } + * + */ + public BelgianBusinessSocialBalance getSocialBalance() { + return socialBalance; + } + + /** + * Sets the value of the socialBalance property. + * + * @param value + * allowed object is + * {@link BelgianBusinessSocialBalance } + * + */ + public void setSocialBalance(BelgianBusinessSocialBalance value) { + this.socialBalance = value; + } + + /** + * Gets the value of the financialValues property. + * + * @return + * possible object is + * {@link BelgianBusinessFinancialValues } + * + */ + public BelgianBusinessFinancialValues getFinancialValues() { + return financialValues; + } + + /** + * Sets the value of the financialValues property. + * + * @param value + * allowed object is + * {@link BelgianBusinessFinancialValues } + * + */ + public void setFinancialValues(BelgianBusinessFinancialValues value) { + this.financialValues = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAnnualFinancialStatementArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAnnualFinancialStatementArray.java new file mode 100644 index 0000000..5a772d6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAnnualFinancialStatementArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessAnnualFinancialStatementArray complex type. + * + *

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

+ * <complexType name="BelgianBusinessAnnualFinancialStatementArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessAnnualFinancialStatement" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessAnnualFinancialStatementArray", propOrder = { + "item" +}) +public class BelgianBusinessAnnualFinancialStatementArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BelgianBusinessAnnualFinancialStatement } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessBankAccount.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessBankAccount.java new file mode 100644 index 0000000..6a795f4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessBankAccount.java @@ -0,0 +1,142 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessBankAccount complex type. + * + *

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

+ * <complexType name="BelgianBusinessBankAccount">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="bic" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="iban_valid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="start_date" type="{http://www.webservices.nl/soap/}BelgianBusinessDate" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessBankAccount", propOrder = { + +}) +public class BelgianBusinessBankAccount { + + @XmlElement(required = true) + protected String iban; + @XmlElement(required = true) + protected String bic; + @XmlElement(name = "iban_valid") + protected boolean ibanValid; + @XmlElement(name = "start_date") + protected BelgianBusinessDate startDate; + + /** + * Gets the value of the iban property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIban() { + return iban; + } + + /** + * Sets the value of the iban property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIban(String value) { + this.iban = value; + } + + /** + * Gets the value of the bic property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBic() { + return bic; + } + + /** + * Sets the value of the bic property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBic(String value) { + this.bic = value; + } + + /** + * Gets the value of the ibanValid property. + * + */ + public boolean isIbanValid() { + return ibanValid; + } + + /** + * Sets the value of the ibanValid property. + * + */ + public void setIbanValid(boolean value) { + this.ibanValid = value; + } + + /** + * Gets the value of the startDate property. + * + * @return + * possible object is + * {@link BelgianBusinessDate } + * + */ + public BelgianBusinessDate getStartDate() { + return startDate; + } + + /** + * Sets the value of the startDate property. + * + * @param value + * allowed object is + * {@link BelgianBusinessDate } + * + */ + public void setStartDate(BelgianBusinessDate value) { + this.startDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessBankAccountArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessBankAccountArray.java new file mode 100644 index 0000000..3a88d9c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessBankAccountArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessBankAccountArray complex type. + * + *

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

+ * <complexType name="BelgianBusinessBankAccountArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessBankAccount" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessBankAccountArray", propOrder = { + "item" +}) +public class BelgianBusinessBankAccountArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BelgianBusinessBankAccount } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessCompany.java new file mode 100644 index 0000000..06ca7e8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessCompany.java @@ -0,0 +1,384 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessCompany complex type. + * + *

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

+ * <complexType name="BelgianBusinessCompany">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="website" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="start_date" type="{http://www.webservices.nl/soap/}BelgianBusinessDate"/>
+ *         <element name="establishment_units" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="type" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItem"/>
+ *         <element name="activities" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItemArray"/>
+ *         <element name="addresses" type="{http://www.webservices.nl/soap/}BelgianBusinessAddressArray"/>
+ *         <element name="juridical_form" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItem"/>
+ *         <element name="juridical_situation" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItem"/>
+ *         <element name="legal_representatives_count" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_representative_companies_count" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessCompany", propOrder = { + +}) +public class BelgianBusinessCompany { + + @XmlElement(name = "vat_number", required = true) + protected String vatNumber; + @XmlElement(required = true) + protected String name; + @XmlElement(name = "phone_number") + protected String phoneNumber; + protected String website; + @XmlElement(name = "start_date", required = true) + protected BelgianBusinessDate startDate; + @XmlElement(name = "establishment_units") + protected int establishmentUnits; + @XmlElement(required = true) + protected BelgianBusinessDatedItem type; + @XmlElement(required = true) + protected BelgianBusinessDatedItemArray activities; + @XmlElement(required = true) + protected BelgianBusinessAddressArray addresses; + @XmlElement(name = "juridical_form", required = true) + protected BelgianBusinessDatedItem juridicalForm; + @XmlElement(name = "juridical_situation", required = true) + protected BelgianBusinessDatedItem juridicalSituation; + @XmlElement(name = "legal_representatives_count", required = true) + protected String legalRepresentativesCount; + @XmlElement(name = "legal_representative_companies_count", required = true) + protected String legalRepresentativeCompaniesCount; + + /** + * Gets the value of the vatNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVatNumber() { + return vatNumber; + } + + /** + * Sets the value of the vatNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVatNumber(String value) { + this.vatNumber = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the phoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPhoneNumber() { + return phoneNumber; + } + + /** + * Sets the value of the phoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPhoneNumber(String value) { + this.phoneNumber = value; + } + + /** + * Gets the value of the website property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWebsite() { + return website; + } + + /** + * Sets the value of the website property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWebsite(String value) { + this.website = value; + } + + /** + * Gets the value of the startDate property. + * + * @return + * possible object is + * {@link BelgianBusinessDate } + * + */ + public BelgianBusinessDate getStartDate() { + return startDate; + } + + /** + * Sets the value of the startDate property. + * + * @param value + * allowed object is + * {@link BelgianBusinessDate } + * + */ + public void setStartDate(BelgianBusinessDate value) { + this.startDate = value; + } + + /** + * Gets the value of the establishmentUnits property. + * + */ + public int getEstablishmentUnits() { + return establishmentUnits; + } + + /** + * Sets the value of the establishmentUnits property. + * + */ + public void setEstablishmentUnits(int value) { + this.establishmentUnits = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link BelgianBusinessDatedItem } + * + */ + public BelgianBusinessDatedItem getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link BelgianBusinessDatedItem } + * + */ + public void setType(BelgianBusinessDatedItem value) { + this.type = value; + } + + /** + * Gets the value of the activities property. + * + * @return + * possible object is + * {@link BelgianBusinessDatedItemArray } + * + */ + public BelgianBusinessDatedItemArray getActivities() { + return activities; + } + + /** + * Sets the value of the activities property. + * + * @param value + * allowed object is + * {@link BelgianBusinessDatedItemArray } + * + */ + public void setActivities(BelgianBusinessDatedItemArray value) { + this.activities = value; + } + + /** + * Gets the value of the addresses property. + * + * @return + * possible object is + * {@link BelgianBusinessAddressArray } + * + */ + public BelgianBusinessAddressArray getAddresses() { + return addresses; + } + + /** + * Sets the value of the addresses property. + * + * @param value + * allowed object is + * {@link BelgianBusinessAddressArray } + * + */ + public void setAddresses(BelgianBusinessAddressArray value) { + this.addresses = value; + } + + /** + * Gets the value of the juridicalForm property. + * + * @return + * possible object is + * {@link BelgianBusinessDatedItem } + * + */ + public BelgianBusinessDatedItem getJuridicalForm() { + return juridicalForm; + } + + /** + * Sets the value of the juridicalForm property. + * + * @param value + * allowed object is + * {@link BelgianBusinessDatedItem } + * + */ + public void setJuridicalForm(BelgianBusinessDatedItem value) { + this.juridicalForm = value; + } + + /** + * Gets the value of the juridicalSituation property. + * + * @return + * possible object is + * {@link BelgianBusinessDatedItem } + * + */ + public BelgianBusinessDatedItem getJuridicalSituation() { + return juridicalSituation; + } + + /** + * Sets the value of the juridicalSituation property. + * + * @param value + * allowed object is + * {@link BelgianBusinessDatedItem } + * + */ + public void setJuridicalSituation(BelgianBusinessDatedItem value) { + this.juridicalSituation = value; + } + + /** + * Gets the value of the legalRepresentativesCount property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalRepresentativesCount() { + return legalRepresentativesCount; + } + + /** + * Sets the value of the legalRepresentativesCount property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalRepresentativesCount(String value) { + this.legalRepresentativesCount = value; + } + + /** + * Gets the value of the legalRepresentativeCompaniesCount property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalRepresentativeCompaniesCount() { + return legalRepresentativeCompaniesCount; + } + + /** + * Sets the value of the legalRepresentativeCompaniesCount property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalRepresentativeCompaniesCount(String value) { + this.legalRepresentativeCompaniesCount = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDate.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDate.java new file mode 100644 index 0000000..2c4f415 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDate.java @@ -0,0 +1,119 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessDate complex type. + * + *

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

+ * <complexType name="BelgianBusinessDate">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessDate", propOrder = { + +}) +public class BelgianBusinessDate { + + protected Integer day; + protected Integer month; + protected Integer year; + + /** + * Gets the value of the day property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDay() { + return day; + } + + /** + * Sets the value of the day property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDay(Integer value) { + this.day = value; + } + + /** + * Gets the value of the month property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMonth() { + return month; + } + + /** + * Sets the value of the month property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMonth(Integer value) { + this.month = value; + } + + /** + * Gets the value of the year property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getYear() { + return year; + } + + /** + * Sets the value of the year property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setYear(Integer value) { + this.year = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDatedItem.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDatedItem.java new file mode 100644 index 0000000..c0bc49d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDatedItem.java @@ -0,0 +1,149 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessDatedItem complex type. + * + *

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

+ * <complexType name="BelgianBusinessDatedItem">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="start_date" type="{http://www.webservices.nl/soap/}BelgianBusinessDate" minOccurs="0"/>
+ *         <element name="end_date" type="{http://www.webservices.nl/soap/}BelgianBusinessDate" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessDatedItem", propOrder = { + +}) +public class BelgianBusinessDatedItem { + + @XmlElement(required = true) + protected String code; + protected String label; + @XmlElement(name = "start_date") + protected BelgianBusinessDate startDate; + @XmlElement(name = "end_date") + protected BelgianBusinessDate endDate; + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCode(String value) { + this.code = value; + } + + /** + * Gets the value of the label property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLabel() { + return label; + } + + /** + * Sets the value of the label property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLabel(String value) { + this.label = value; + } + + /** + * Gets the value of the startDate property. + * + * @return + * possible object is + * {@link BelgianBusinessDate } + * + */ + public BelgianBusinessDate getStartDate() { + return startDate; + } + + /** + * Sets the value of the startDate property. + * + * @param value + * allowed object is + * {@link BelgianBusinessDate } + * + */ + public void setStartDate(BelgianBusinessDate value) { + this.startDate = value; + } + + /** + * Gets the value of the endDate property. + * + * @return + * possible object is + * {@link BelgianBusinessDate } + * + */ + public BelgianBusinessDate getEndDate() { + return endDate; + } + + /** + * Sets the value of the endDate property. + * + * @param value + * allowed object is + * {@link BelgianBusinessDate } + * + */ + public void setEndDate(BelgianBusinessDate value) { + this.endDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDatedItemArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDatedItemArray.java new file mode 100644 index 0000000..ad8bb27 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDatedItemArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessDatedItemArray complex type. + * + *

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

+ * <complexType name="BelgianBusinessDatedItemArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItem" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessDatedItemArray", propOrder = { + "item" +}) +public class BelgianBusinessDatedItemArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BelgianBusinessDatedItem } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDossier.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDossier.java new file mode 100644 index 0000000..fb944f6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDossier.java @@ -0,0 +1,230 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessDossier complex type. + * + *

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

+ * <complexType name="BelgianBusinessDossier">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="errors" type="{http://www.webservices.nl/soap/}BelgianBusinessDossierErrors" minOccurs="0"/>
+ *         <element name="company" type="{http://www.webservices.nl/soap/}BelgianBusinessCompany"/>
+ *         <element name="bank_accounts" type="{http://www.webservices.nl/soap/}BelgianBusinessBankAccountArray"/>
+ *         <element name="annual_financial_statements" type="{http://www.webservices.nl/soap/}BelgianBusinessAnnualFinancialStatementArray"/>
+ *         <element name="legal_representative_companies" type="{http://www.webservices.nl/soap/}BelgianBusinessLegalRepresentativeCompanyArray"/>
+ *         <element name="legal_representatives" type="{http://www.webservices.nl/soap/}BelgianBusinessLegalRepresentativeArray"/>
+ *         <element name="stakeholders" type="{http://www.webservices.nl/soap/}BelgianBusinessStakeHolderArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessDossier", propOrder = { + +}) +public class BelgianBusinessDossier { + + protected BelgianBusinessDossierErrors errors; + @XmlElement(required = true) + protected BelgianBusinessCompany company; + @XmlElement(name = "bank_accounts", required = true) + protected BelgianBusinessBankAccountArray bankAccounts; + @XmlElement(name = "annual_financial_statements", required = true) + protected BelgianBusinessAnnualFinancialStatementArray annualFinancialStatements; + @XmlElement(name = "legal_representative_companies", required = true) + protected BelgianBusinessLegalRepresentativeCompanyArray legalRepresentativeCompanies; + @XmlElement(name = "legal_representatives", required = true) + protected BelgianBusinessLegalRepresentativeArray legalRepresentatives; + @XmlElement(required = true) + protected BelgianBusinessStakeHolderArray stakeholders; + + /** + * Gets the value of the errors property. + * + * @return + * possible object is + * {@link BelgianBusinessDossierErrors } + * + */ + public BelgianBusinessDossierErrors getErrors() { + return errors; + } + + /** + * Sets the value of the errors property. + * + * @param value + * allowed object is + * {@link BelgianBusinessDossierErrors } + * + */ + public void setErrors(BelgianBusinessDossierErrors value) { + this.errors = value; + } + + /** + * Gets the value of the company property. + * + * @return + * possible object is + * {@link BelgianBusinessCompany } + * + */ + public BelgianBusinessCompany getCompany() { + return company; + } + + /** + * Sets the value of the company property. + * + * @param value + * allowed object is + * {@link BelgianBusinessCompany } + * + */ + public void setCompany(BelgianBusinessCompany value) { + this.company = value; + } + + /** + * Gets the value of the bankAccounts property. + * + * @return + * possible object is + * {@link BelgianBusinessBankAccountArray } + * + */ + public BelgianBusinessBankAccountArray getBankAccounts() { + return bankAccounts; + } + + /** + * Sets the value of the bankAccounts property. + * + * @param value + * allowed object is + * {@link BelgianBusinessBankAccountArray } + * + */ + public void setBankAccounts(BelgianBusinessBankAccountArray value) { + this.bankAccounts = value; + } + + /** + * Gets the value of the annualFinancialStatements property. + * + * @return + * possible object is + * {@link BelgianBusinessAnnualFinancialStatementArray } + * + */ + public BelgianBusinessAnnualFinancialStatementArray getAnnualFinancialStatements() { + return annualFinancialStatements; + } + + /** + * Sets the value of the annualFinancialStatements property. + * + * @param value + * allowed object is + * {@link BelgianBusinessAnnualFinancialStatementArray } + * + */ + public void setAnnualFinancialStatements(BelgianBusinessAnnualFinancialStatementArray value) { + this.annualFinancialStatements = value; + } + + /** + * Gets the value of the legalRepresentativeCompanies property. + * + * @return + * possible object is + * {@link BelgianBusinessLegalRepresentativeCompanyArray } + * + */ + public BelgianBusinessLegalRepresentativeCompanyArray getLegalRepresentativeCompanies() { + return legalRepresentativeCompanies; + } + + /** + * Sets the value of the legalRepresentativeCompanies property. + * + * @param value + * allowed object is + * {@link BelgianBusinessLegalRepresentativeCompanyArray } + * + */ + public void setLegalRepresentativeCompanies(BelgianBusinessLegalRepresentativeCompanyArray value) { + this.legalRepresentativeCompanies = value; + } + + /** + * Gets the value of the legalRepresentatives property. + * + * @return + * possible object is + * {@link BelgianBusinessLegalRepresentativeArray } + * + */ + public BelgianBusinessLegalRepresentativeArray getLegalRepresentatives() { + return legalRepresentatives; + } + + /** + * Sets the value of the legalRepresentatives property. + * + * @param value + * allowed object is + * {@link BelgianBusinessLegalRepresentativeArray } + * + */ + public void setLegalRepresentatives(BelgianBusinessLegalRepresentativeArray value) { + this.legalRepresentatives = value; + } + + /** + * Gets the value of the stakeholders property. + * + * @return + * possible object is + * {@link BelgianBusinessStakeHolderArray } + * + */ + public BelgianBusinessStakeHolderArray getStakeholders() { + return stakeholders; + } + + /** + * Sets the value of the stakeholders property. + * + * @param value + * allowed object is + * {@link BelgianBusinessStakeHolderArray } + * + */ + public void setStakeholders(BelgianBusinessStakeHolderArray value) { + this.stakeholders = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDossierErrors.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDossierErrors.java new file mode 100644 index 0000000..e71fba1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDossierErrors.java @@ -0,0 +1,177 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessDossierErrors complex type. + * + *

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

+ * <complexType name="BelgianBusinessDossierErrors">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bank_accounts_error" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="annual_financial_statements_error" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_representative_companies_error" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_representatives_error" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="stakeholders_error" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessDossierErrors", propOrder = { + +}) +public class BelgianBusinessDossierErrors { + + @XmlElement(name = "bank_accounts_error") + protected String bankAccountsError; + @XmlElement(name = "annual_financial_statements_error") + protected String annualFinancialStatementsError; + @XmlElement(name = "legal_representative_companies_error") + protected String legalRepresentativeCompaniesError; + @XmlElement(name = "legal_representatives_error") + protected String legalRepresentativesError; + @XmlElement(name = "stakeholders_error") + protected String stakeholdersError; + + /** + * Gets the value of the bankAccountsError property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBankAccountsError() { + return bankAccountsError; + } + + /** + * Sets the value of the bankAccountsError property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBankAccountsError(String value) { + this.bankAccountsError = value; + } + + /** + * Gets the value of the annualFinancialStatementsError property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAnnualFinancialStatementsError() { + return annualFinancialStatementsError; + } + + /** + * Sets the value of the annualFinancialStatementsError property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAnnualFinancialStatementsError(String value) { + this.annualFinancialStatementsError = value; + } + + /** + * Gets the value of the legalRepresentativeCompaniesError property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalRepresentativeCompaniesError() { + return legalRepresentativeCompaniesError; + } + + /** + * Sets the value of the legalRepresentativeCompaniesError property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalRepresentativeCompaniesError(String value) { + this.legalRepresentativeCompaniesError = value; + } + + /** + * Gets the value of the legalRepresentativesError property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalRepresentativesError() { + return legalRepresentativesError; + } + + /** + * Sets the value of the legalRepresentativesError property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalRepresentativesError(String value) { + this.legalRepresentativesError = value; + } + + /** + * Gets the value of the stakeholdersError property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStakeholdersError() { + return stakeholdersError; + } + + /** + * Sets the value of the stakeholdersError property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStakeholdersError(String value) { + this.stakeholdersError = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessFinancialValues.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessFinancialValues.java new file mode 100644 index 0000000..43ba9aa --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessFinancialValues.java @@ -0,0 +1,3141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessFinancialValues complex type. + * + *

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

+ * <complexType name="BelgianBusinessFinancialValues">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="number_of_employees" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="number_of_employees_men" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="number_of_employees_women" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="capital" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="financial_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="currents_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="amounts_receivable_more_one_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="trade_debtors_within_one_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="equity" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="amounts_payable_within_one_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="trade_debts_payable_within_one_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="turnover" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="gross_operating_margin" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="increase_decrease_stocks_work_contracts_progress" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="contributions_gifts_legacies_grants" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="remuneration_social_security_pensions" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="depreciation_other_amounts_written_down_formation_expenses_intangible_tangible_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="amounts_written_down_stocks_contracts_progress_trade_debtors_appropriations_write_backs" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="provisions_risks_charges_appropriations_write_backs" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="operating_charges" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="operating_profit_loss" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="financial_income" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="financial_charges" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="extraordinary_income" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="extraordinary_charges" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="income_taxes" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="gain_loss_period" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="tangible_fixed_assets_acquisition_including_produced_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="tangible_fixed_assets_revaluation_gains_third_parties" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="tangible_fixed_assets_depreciations_amount_written_down_acquired_third_party" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="outstanding_taxes_payable_due_tax_authorities" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="remuneration_social_security_recipient_national_social_security_office" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="amounts_receivable_within_one_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="accrued_charges_deferred_income" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="current_investments" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="cash_bank_hand" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="equity_liabilities" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="operating_income" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="other_operating_income" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="operating_subsidies_compensatory_amounts" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="capital_subsidies_granted_public_authorities_recorded_income_period" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="raw_materials_consumables" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="services_other_goods" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="hired_temporary_staff_costs_enterprise" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="persons_placed_enterprises_disposal_costs_enterprise" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_recorded_personnel_register_average_number_employees_calculated_full_time_equivalents" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="stock_raw_materials_consumables" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="stock_goods_purchased_resale" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="stock_immovable_property_intended_sale" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="advance_payments_purchases_stocks" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="stocks_contracts_progress" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="deferred_charges_accrued_income" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="own_construction_capitalised" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="stock_work_progress" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="stock_finished_goods" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="contracts_progress" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="personal_guarantees_provided_or_irrevocably_promised_by_enterprise" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="value_added_taxes_charged_by_enterprise" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="purchases_raw_materials_consumables" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="value_added_taxes_charged_to_enterprise" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="amounts_written_down_current_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="provisions_financial_nature_appropriations" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="provisions_financial_nature_uses_write_backs" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="extraordinary_depreciation_extraordinary_amounts_written_down" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="amounts_written_down_financial_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="provisions_extraordinary_liabilities_charges_appropriations_uses" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="write_back_depreciation_amounts_written_down_intangible_tangible_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="write_back_amounts_written_down_financial_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="write_back_provisions_extraordinary_liabilities_charges" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="losses_disposal_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="income_taxes_result_period" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="transfer_from_deferred_taxes" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="transfer_to_deferred_taxes" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="interest_subsidies_granted_public_authorities_recorded_income_period" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="charges_discounting_amounts_receivable" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="debt_charges" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="depreciation_loan_issue_expenses_reimbursement_premiums" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="provisions_pensions_similar_obligations_appropriations_write_backs" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="current_portion_amounts_payable_more_one_year_falling_due_within_one_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="amounts_payable_more_one_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="provisions_deferred_taxes" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="amounts_payable" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="reserves" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="accumulated_profits_losses" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="financial_debts_payable_within_one_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="formation_expenses" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="intangible_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="tangible_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="land_buildings_acquisition_including_produced_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="plant_machinery_equipment_acquisition_including_produced_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="furniture_vehicles_acquisition_including_produced_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="leasing_other_similar_rights_acquisition_including_produced_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="other_tangible_fixed_assets_acquisition_including_produced_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="tangible_fixed_assets_under_construction" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="land_buildings_revaluation_gains_third_parties" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="plant_machinery_equipment_revaluation_gains_third_parties" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="furniture_vehicles_revaluation_gains_third_parties" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="leasing_other_similar_rights_revaluation_gains_third_parties" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="other_tangible_fixed_assets_revaluation_gains_third_parties" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="tangible_fixed_assets_under_construction_advance_payments_revaluation_gains_third_parties" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="land_buildings_depreciations_amount_written_down_acquired_third_party" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="plant_machinery_equipment_depreciations_amount_written_down_acquired_third_party" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="furniture_vehicles_depreciations_amount_written_down_acquired_third_party" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="leasing_other_similar_rights_depreciations_amount_written_down_acquired_third_party" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="other_tangible_fixed_assets_depreciations_amount_written_down_acquired_third_party" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="tangible_fixed_assets_under_construction_advance_payments_depreciations" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_recorded_personnel_register_total_number_closing_date" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="number_employees_personnel_register_closing_date_financial_year_men_full_time" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="number_employees_personnel_register_closing_date_financial_year_women_full_time" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="number_employees_personnel_register_closing_date_financial_year_men_part_time" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="number_employees_personnel_register_closing_date_financial_year_women_part_time" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="investments" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="added_value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessFinancialValues", propOrder = { + +}) +public class BelgianBusinessFinancialValues { + + @XmlElement(name = "fixed_assets") + protected Float fixedAssets; + @XmlElement(name = "number_of_employees") + protected Integer numberOfEmployees; + @XmlElement(name = "number_of_employees_men") + protected Integer numberOfEmployeesMen; + @XmlElement(name = "number_of_employees_women") + protected Integer numberOfEmployeesWomen; + protected Float capital; + @XmlElement(name = "financial_fixed_assets") + protected Float financialFixedAssets; + @XmlElement(name = "currents_assets") + protected Float currentsAssets; + @XmlElement(name = "amounts_receivable_more_one_year") + protected Float amountsReceivableMoreOneYear; + @XmlElement(name = "trade_debtors_within_one_year") + protected Float tradeDebtorsWithinOneYear; + protected Float equity; + @XmlElement(name = "amounts_payable_within_one_year") + protected Float amountsPayableWithinOneYear; + @XmlElement(name = "trade_debts_payable_within_one_year") + protected Float tradeDebtsPayableWithinOneYear; + protected Float turnover; + @XmlElement(name = "gross_operating_margin") + protected Float grossOperatingMargin; + @XmlElement(name = "increase_decrease_stocks_work_contracts_progress") + protected Float increaseDecreaseStocksWorkContractsProgress; + @XmlElement(name = "contributions_gifts_legacies_grants") + protected Float contributionsGiftsLegaciesGrants; + @XmlElement(name = "remuneration_social_security_pensions") + protected Float remunerationSocialSecurityPensions; + @XmlElement(name = "depreciation_other_amounts_written_down_formation_expenses_intangible_tangible_fixed_assets") + protected Float depreciationOtherAmountsWrittenDownFormationExpensesIntangibleTangibleFixedAssets; + @XmlElement(name = "amounts_written_down_stocks_contracts_progress_trade_debtors_appropriations_write_backs") + protected Float amountsWrittenDownStocksContractsProgressTradeDebtorsAppropriationsWriteBacks; + @XmlElement(name = "provisions_risks_charges_appropriations_write_backs") + protected Float provisionsRisksChargesAppropriationsWriteBacks; + @XmlElement(name = "operating_charges") + protected Float operatingCharges; + @XmlElement(name = "operating_profit_loss") + protected Float operatingProfitLoss; + @XmlElement(name = "financial_income") + protected Float financialIncome; + @XmlElement(name = "financial_charges") + protected Float financialCharges; + @XmlElement(name = "extraordinary_income") + protected Float extraordinaryIncome; + @XmlElement(name = "extraordinary_charges") + protected Float extraordinaryCharges; + @XmlElement(name = "income_taxes") + protected Float incomeTaxes; + @XmlElement(name = "gain_loss_period") + protected Float gainLossPeriod; + @XmlElement(name = "tangible_fixed_assets_acquisition_including_produced_fixed_assets") + protected Float tangibleFixedAssetsAcquisitionIncludingProducedFixedAssets; + @XmlElement(name = "tangible_fixed_assets_revaluation_gains_third_parties") + protected Float tangibleFixedAssetsRevaluationGainsThirdParties; + @XmlElement(name = "tangible_fixed_assets_depreciations_amount_written_down_acquired_third_party") + protected Float tangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty; + @XmlElement(name = "outstanding_taxes_payable_due_tax_authorities") + protected Float outstandingTaxesPayableDueTaxAuthorities; + @XmlElement(name = "remuneration_social_security_recipient_national_social_security_office") + protected Float remunerationSocialSecurityRecipientNationalSocialSecurityOffice; + @XmlElement(name = "amounts_receivable_within_one_year") + protected Float amountsReceivableWithinOneYear; + @XmlElement(name = "accrued_charges_deferred_income") + protected Float accruedChargesDeferredIncome; + @XmlElement(name = "current_investments") + protected Float currentInvestments; + @XmlElement(name = "cash_bank_hand") + protected Float cashBankHand; + @XmlElement(name = "equity_liabilities") + protected Float equityLiabilities; + @XmlElement(name = "operating_income") + protected Float operatingIncome; + @XmlElement(name = "other_operating_income") + protected Float otherOperatingIncome; + @XmlElement(name = "operating_subsidies_compensatory_amounts") + protected Float operatingSubsidiesCompensatoryAmounts; + @XmlElement(name = "capital_subsidies_granted_public_authorities_recorded_income_period") + protected Float capitalSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod; + @XmlElement(name = "raw_materials_consumables") + protected Float rawMaterialsConsumables; + @XmlElement(name = "services_other_goods") + protected Float servicesOtherGoods; + @XmlElement(name = "hired_temporary_staff_costs_enterprise") + protected Float hiredTemporaryStaffCostsEnterprise; + @XmlElement(name = "persons_placed_enterprises_disposal_costs_enterprise") + protected Float personsPlacedEnterprisesDisposalCostsEnterprise; + @XmlElement(name = "employees_recorded_personnel_register_average_number_employees_calculated_full_time_equivalents") + protected Float employeesRecordedPersonnelRegisterAverageNumberEmployeesCalculatedFullTimeEquivalents; + @XmlElement(name = "stock_raw_materials_consumables") + protected Float stockRawMaterialsConsumables; + @XmlElement(name = "stock_goods_purchased_resale") + protected Float stockGoodsPurchasedResale; + @XmlElement(name = "stock_immovable_property_intended_sale") + protected Float stockImmovablePropertyIntendedSale; + @XmlElement(name = "advance_payments_purchases_stocks") + protected Float advancePaymentsPurchasesStocks; + @XmlElement(name = "stocks_contracts_progress") + protected Float stocksContractsProgress; + @XmlElement(name = "deferred_charges_accrued_income") + protected Float deferredChargesAccruedIncome; + @XmlElement(name = "own_construction_capitalised") + protected Float ownConstructionCapitalised; + @XmlElement(name = "stock_work_progress") + protected Float stockWorkProgress; + @XmlElement(name = "stock_finished_goods") + protected Float stockFinishedGoods; + @XmlElement(name = "contracts_progress") + protected Float contractsProgress; + @XmlElement(name = "personal_guarantees_provided_or_irrevocably_promised_by_enterprise") + protected Float personalGuaranteesProvidedOrIrrevocablyPromisedByEnterprise; + @XmlElement(name = "value_added_taxes_charged_by_enterprise") + protected Float valueAddedTaxesChargedByEnterprise; + @XmlElement(name = "purchases_raw_materials_consumables") + protected Float purchasesRawMaterialsConsumables; + @XmlElement(name = "value_added_taxes_charged_to_enterprise") + protected Float valueAddedTaxesChargedToEnterprise; + @XmlElement(name = "amounts_written_down_current_assets") + protected Float amountsWrittenDownCurrentAssets; + @XmlElement(name = "provisions_financial_nature_appropriations") + protected Float provisionsFinancialNatureAppropriations; + @XmlElement(name = "provisions_financial_nature_uses_write_backs") + protected Float provisionsFinancialNatureUsesWriteBacks; + @XmlElement(name = "extraordinary_depreciation_extraordinary_amounts_written_down") + protected Float extraordinaryDepreciationExtraordinaryAmountsWrittenDown; + @XmlElement(name = "amounts_written_down_financial_fixed_assets") + protected Float amountsWrittenDownFinancialFixedAssets; + @XmlElement(name = "provisions_extraordinary_liabilities_charges_appropriations_uses") + protected Float provisionsExtraordinaryLiabilitiesChargesAppropriationsUses; + @XmlElement(name = "write_back_depreciation_amounts_written_down_intangible_tangible_fixed_assets") + protected Float writeBackDepreciationAmountsWrittenDownIntangibleTangibleFixedAssets; + @XmlElement(name = "write_back_amounts_written_down_financial_fixed_assets") + protected Float writeBackAmountsWrittenDownFinancialFixedAssets; + @XmlElement(name = "write_back_provisions_extraordinary_liabilities_charges") + protected Float writeBackProvisionsExtraordinaryLiabilitiesCharges; + @XmlElement(name = "losses_disposal_fixed_assets") + protected Float lossesDisposalFixedAssets; + @XmlElement(name = "income_taxes_result_period") + protected Float incomeTaxesResultPeriod; + @XmlElement(name = "transfer_from_deferred_taxes") + protected Float transferFromDeferredTaxes; + @XmlElement(name = "transfer_to_deferred_taxes") + protected Float transferToDeferredTaxes; + protected Float assets; + @XmlElement(name = "interest_subsidies_granted_public_authorities_recorded_income_period") + protected Float interestSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod; + @XmlElement(name = "charges_discounting_amounts_receivable") + protected Float chargesDiscountingAmountsReceivable; + @XmlElement(name = "debt_charges") + protected Float debtCharges; + @XmlElement(name = "depreciation_loan_issue_expenses_reimbursement_premiums") + protected Float depreciationLoanIssueExpensesReimbursementPremiums; + @XmlElement(name = "provisions_pensions_similar_obligations_appropriations_write_backs") + protected Float provisionsPensionsSimilarObligationsAppropriationsWriteBacks; + @XmlElement(name = "current_portion_amounts_payable_more_one_year_falling_due_within_one_year") + protected Float currentPortionAmountsPayableMoreOneYearFallingDueWithinOneYear; + @XmlElement(name = "amounts_payable_more_one_year") + protected Float amountsPayableMoreOneYear; + @XmlElement(name = "provisions_deferred_taxes") + protected Float provisionsDeferredTaxes; + @XmlElement(name = "amounts_payable") + protected Float amountsPayable; + protected Float reserves; + @XmlElement(name = "accumulated_profits_losses") + protected Float accumulatedProfitsLosses; + @XmlElement(name = "financial_debts_payable_within_one_year") + protected Float financialDebtsPayableWithinOneYear; + @XmlElement(name = "formation_expenses") + protected Float formationExpenses; + @XmlElement(name = "intangible_fixed_assets") + protected Float intangibleFixedAssets; + @XmlElement(name = "tangible_fixed_assets") + protected Float tangibleFixedAssets; + @XmlElement(name = "land_buildings_acquisition_including_produced_fixed_assets") + protected Float landBuildingsAcquisitionIncludingProducedFixedAssets; + @XmlElement(name = "plant_machinery_equipment_acquisition_including_produced_fixed_assets") + protected Float plantMachineryEquipmentAcquisitionIncludingProducedFixedAssets; + @XmlElement(name = "furniture_vehicles_acquisition_including_produced_fixed_assets") + protected Float furnitureVehiclesAcquisitionIncludingProducedFixedAssets; + @XmlElement(name = "leasing_other_similar_rights_acquisition_including_produced_fixed_assets") + protected Float leasingOtherSimilarRightsAcquisitionIncludingProducedFixedAssets; + @XmlElement(name = "other_tangible_fixed_assets_acquisition_including_produced_fixed_assets") + protected Float otherTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets; + @XmlElement(name = "tangible_fixed_assets_under_construction") + protected Float tangibleFixedAssetsUnderConstruction; + @XmlElement(name = "land_buildings_revaluation_gains_third_parties") + protected Float landBuildingsRevaluationGainsThirdParties; + @XmlElement(name = "plant_machinery_equipment_revaluation_gains_third_parties") + protected Float plantMachineryEquipmentRevaluationGainsThirdParties; + @XmlElement(name = "furniture_vehicles_revaluation_gains_third_parties") + protected Float furnitureVehiclesRevaluationGainsThirdParties; + @XmlElement(name = "leasing_other_similar_rights_revaluation_gains_third_parties") + protected Float leasingOtherSimilarRightsRevaluationGainsThirdParties; + @XmlElement(name = "other_tangible_fixed_assets_revaluation_gains_third_parties") + protected Float otherTangibleFixedAssetsRevaluationGainsThirdParties; + @XmlElement(name = "tangible_fixed_assets_under_construction_advance_payments_revaluation_gains_third_parties") + protected Float tangibleFixedAssetsUnderConstructionAdvancePaymentsRevaluationGainsThirdParties; + @XmlElement(name = "land_buildings_depreciations_amount_written_down_acquired_third_party") + protected Float landBuildingsDepreciationsAmountWrittenDownAcquiredThirdParty; + @XmlElement(name = "plant_machinery_equipment_depreciations_amount_written_down_acquired_third_party") + protected Float plantMachineryEquipmentDepreciationsAmountWrittenDownAcquiredThirdParty; + @XmlElement(name = "furniture_vehicles_depreciations_amount_written_down_acquired_third_party") + protected Float furnitureVehiclesDepreciationsAmountWrittenDownAcquiredThirdParty; + @XmlElement(name = "leasing_other_similar_rights_depreciations_amount_written_down_acquired_third_party") + protected Float leasingOtherSimilarRightsDepreciationsAmountWrittenDownAcquiredThirdParty; + @XmlElement(name = "other_tangible_fixed_assets_depreciations_amount_written_down_acquired_third_party") + protected Float otherTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty; + @XmlElement(name = "tangible_fixed_assets_under_construction_advance_payments_depreciations") + protected Float tangibleFixedAssetsUnderConstructionAdvancePaymentsDepreciations; + @XmlElement(name = "employees_recorded_personnel_register_total_number_closing_date") + protected Float employeesRecordedPersonnelRegisterTotalNumberClosingDate; + @XmlElement(name = "number_employees_personnel_register_closing_date_financial_year_men_full_time") + protected Float numberEmployeesPersonnelRegisterClosingDateFinancialYearMenFullTime; + @XmlElement(name = "number_employees_personnel_register_closing_date_financial_year_women_full_time") + protected Float numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenFullTime; + @XmlElement(name = "number_employees_personnel_register_closing_date_financial_year_men_part_time") + protected Float numberEmployeesPersonnelRegisterClosingDateFinancialYearMenPartTime; + @XmlElement(name = "number_employees_personnel_register_closing_date_financial_year_women_part_time") + protected Float numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenPartTime; + protected Float investments; + @XmlElement(name = "added_value") + protected Float addedValue; + + /** + * Gets the value of the fixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getFixedAssets() { + return fixedAssets; + } + + /** + * Sets the value of the fixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setFixedAssets(Float value) { + this.fixedAssets = value; + } + + /** + * Gets the value of the numberOfEmployees property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getNumberOfEmployees() { + return numberOfEmployees; + } + + /** + * Sets the value of the numberOfEmployees property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setNumberOfEmployees(Integer value) { + this.numberOfEmployees = value; + } + + /** + * Gets the value of the numberOfEmployeesMen property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getNumberOfEmployeesMen() { + return numberOfEmployeesMen; + } + + /** + * Sets the value of the numberOfEmployeesMen property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setNumberOfEmployeesMen(Integer value) { + this.numberOfEmployeesMen = value; + } + + /** + * Gets the value of the numberOfEmployeesWomen property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getNumberOfEmployeesWomen() { + return numberOfEmployeesWomen; + } + + /** + * Sets the value of the numberOfEmployeesWomen property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setNumberOfEmployeesWomen(Integer value) { + this.numberOfEmployeesWomen = value; + } + + /** + * Gets the value of the capital property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getCapital() { + return capital; + } + + /** + * Sets the value of the capital property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setCapital(Float value) { + this.capital = value; + } + + /** + * Gets the value of the financialFixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getFinancialFixedAssets() { + return financialFixedAssets; + } + + /** + * Sets the value of the financialFixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setFinancialFixedAssets(Float value) { + this.financialFixedAssets = value; + } + + /** + * Gets the value of the currentsAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getCurrentsAssets() { + return currentsAssets; + } + + /** + * Sets the value of the currentsAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setCurrentsAssets(Float value) { + this.currentsAssets = value; + } + + /** + * Gets the value of the amountsReceivableMoreOneYear property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAmountsReceivableMoreOneYear() { + return amountsReceivableMoreOneYear; + } + + /** + * Sets the value of the amountsReceivableMoreOneYear property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAmountsReceivableMoreOneYear(Float value) { + this.amountsReceivableMoreOneYear = value; + } + + /** + * Gets the value of the tradeDebtorsWithinOneYear property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getTradeDebtorsWithinOneYear() { + return tradeDebtorsWithinOneYear; + } + + /** + * Sets the value of the tradeDebtorsWithinOneYear property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setTradeDebtorsWithinOneYear(Float value) { + this.tradeDebtorsWithinOneYear = value; + } + + /** + * Gets the value of the equity property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEquity() { + return equity; + } + + /** + * Sets the value of the equity property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEquity(Float value) { + this.equity = value; + } + + /** + * Gets the value of the amountsPayableWithinOneYear property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAmountsPayableWithinOneYear() { + return amountsPayableWithinOneYear; + } + + /** + * Sets the value of the amountsPayableWithinOneYear property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAmountsPayableWithinOneYear(Float value) { + this.amountsPayableWithinOneYear = value; + } + + /** + * Gets the value of the tradeDebtsPayableWithinOneYear property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getTradeDebtsPayableWithinOneYear() { + return tradeDebtsPayableWithinOneYear; + } + + /** + * Sets the value of the tradeDebtsPayableWithinOneYear property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setTradeDebtsPayableWithinOneYear(Float value) { + this.tradeDebtsPayableWithinOneYear = value; + } + + /** + * Gets the value of the turnover property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getTurnover() { + return turnover; + } + + /** + * Sets the value of the turnover property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setTurnover(Float value) { + this.turnover = value; + } + + /** + * Gets the value of the grossOperatingMargin property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getGrossOperatingMargin() { + return grossOperatingMargin; + } + + /** + * Sets the value of the grossOperatingMargin property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setGrossOperatingMargin(Float value) { + this.grossOperatingMargin = value; + } + + /** + * Gets the value of the increaseDecreaseStocksWorkContractsProgress property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getIncreaseDecreaseStocksWorkContractsProgress() { + return increaseDecreaseStocksWorkContractsProgress; + } + + /** + * Sets the value of the increaseDecreaseStocksWorkContractsProgress property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setIncreaseDecreaseStocksWorkContractsProgress(Float value) { + this.increaseDecreaseStocksWorkContractsProgress = value; + } + + /** + * Gets the value of the contributionsGiftsLegaciesGrants property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getContributionsGiftsLegaciesGrants() { + return contributionsGiftsLegaciesGrants; + } + + /** + * Sets the value of the contributionsGiftsLegaciesGrants property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setContributionsGiftsLegaciesGrants(Float value) { + this.contributionsGiftsLegaciesGrants = value; + } + + /** + * Gets the value of the remunerationSocialSecurityPensions property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getRemunerationSocialSecurityPensions() { + return remunerationSocialSecurityPensions; + } + + /** + * Sets the value of the remunerationSocialSecurityPensions property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setRemunerationSocialSecurityPensions(Float value) { + this.remunerationSocialSecurityPensions = value; + } + + /** + * Gets the value of the depreciationOtherAmountsWrittenDownFormationExpensesIntangibleTangibleFixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getDepreciationOtherAmountsWrittenDownFormationExpensesIntangibleTangibleFixedAssets() { + return depreciationOtherAmountsWrittenDownFormationExpensesIntangibleTangibleFixedAssets; + } + + /** + * Sets the value of the depreciationOtherAmountsWrittenDownFormationExpensesIntangibleTangibleFixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setDepreciationOtherAmountsWrittenDownFormationExpensesIntangibleTangibleFixedAssets(Float value) { + this.depreciationOtherAmountsWrittenDownFormationExpensesIntangibleTangibleFixedAssets = value; + } + + /** + * Gets the value of the amountsWrittenDownStocksContractsProgressTradeDebtorsAppropriationsWriteBacks property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAmountsWrittenDownStocksContractsProgressTradeDebtorsAppropriationsWriteBacks() { + return amountsWrittenDownStocksContractsProgressTradeDebtorsAppropriationsWriteBacks; + } + + /** + * Sets the value of the amountsWrittenDownStocksContractsProgressTradeDebtorsAppropriationsWriteBacks property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAmountsWrittenDownStocksContractsProgressTradeDebtorsAppropriationsWriteBacks(Float value) { + this.amountsWrittenDownStocksContractsProgressTradeDebtorsAppropriationsWriteBacks = value; + } + + /** + * Gets the value of the provisionsRisksChargesAppropriationsWriteBacks property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getProvisionsRisksChargesAppropriationsWriteBacks() { + return provisionsRisksChargesAppropriationsWriteBacks; + } + + /** + * Sets the value of the provisionsRisksChargesAppropriationsWriteBacks property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setProvisionsRisksChargesAppropriationsWriteBacks(Float value) { + this.provisionsRisksChargesAppropriationsWriteBacks = value; + } + + /** + * Gets the value of the operatingCharges property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getOperatingCharges() { + return operatingCharges; + } + + /** + * Sets the value of the operatingCharges property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setOperatingCharges(Float value) { + this.operatingCharges = value; + } + + /** + * Gets the value of the operatingProfitLoss property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getOperatingProfitLoss() { + return operatingProfitLoss; + } + + /** + * Sets the value of the operatingProfitLoss property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setOperatingProfitLoss(Float value) { + this.operatingProfitLoss = value; + } + + /** + * Gets the value of the financialIncome property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getFinancialIncome() { + return financialIncome; + } + + /** + * Sets the value of the financialIncome property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setFinancialIncome(Float value) { + this.financialIncome = value; + } + + /** + * Gets the value of the financialCharges property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getFinancialCharges() { + return financialCharges; + } + + /** + * Sets the value of the financialCharges property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setFinancialCharges(Float value) { + this.financialCharges = value; + } + + /** + * Gets the value of the extraordinaryIncome property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getExtraordinaryIncome() { + return extraordinaryIncome; + } + + /** + * Sets the value of the extraordinaryIncome property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setExtraordinaryIncome(Float value) { + this.extraordinaryIncome = value; + } + + /** + * Gets the value of the extraordinaryCharges property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getExtraordinaryCharges() { + return extraordinaryCharges; + } + + /** + * Sets the value of the extraordinaryCharges property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setExtraordinaryCharges(Float value) { + this.extraordinaryCharges = value; + } + + /** + * Gets the value of the incomeTaxes property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getIncomeTaxes() { + return incomeTaxes; + } + + /** + * Sets the value of the incomeTaxes property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setIncomeTaxes(Float value) { + this.incomeTaxes = value; + } + + /** + * Gets the value of the gainLossPeriod property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getGainLossPeriod() { + return gainLossPeriod; + } + + /** + * Sets the value of the gainLossPeriod property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setGainLossPeriod(Float value) { + this.gainLossPeriod = value; + } + + /** + * Gets the value of the tangibleFixedAssetsAcquisitionIncludingProducedFixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets() { + return tangibleFixedAssetsAcquisitionIncludingProducedFixedAssets; + } + + /** + * Sets the value of the tangibleFixedAssetsAcquisitionIncludingProducedFixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets(Float value) { + this.tangibleFixedAssetsAcquisitionIncludingProducedFixedAssets = value; + } + + /** + * Gets the value of the tangibleFixedAssetsRevaluationGainsThirdParties property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getTangibleFixedAssetsRevaluationGainsThirdParties() { + return tangibleFixedAssetsRevaluationGainsThirdParties; + } + + /** + * Sets the value of the tangibleFixedAssetsRevaluationGainsThirdParties property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setTangibleFixedAssetsRevaluationGainsThirdParties(Float value) { + this.tangibleFixedAssetsRevaluationGainsThirdParties = value; + } + + /** + * Gets the value of the tangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty() { + return tangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty; + } + + /** + * Sets the value of the tangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty(Float value) { + this.tangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty = value; + } + + /** + * Gets the value of the outstandingTaxesPayableDueTaxAuthorities property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getOutstandingTaxesPayableDueTaxAuthorities() { + return outstandingTaxesPayableDueTaxAuthorities; + } + + /** + * Sets the value of the outstandingTaxesPayableDueTaxAuthorities property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setOutstandingTaxesPayableDueTaxAuthorities(Float value) { + this.outstandingTaxesPayableDueTaxAuthorities = value; + } + + /** + * Gets the value of the remunerationSocialSecurityRecipientNationalSocialSecurityOffice property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getRemunerationSocialSecurityRecipientNationalSocialSecurityOffice() { + return remunerationSocialSecurityRecipientNationalSocialSecurityOffice; + } + + /** + * Sets the value of the remunerationSocialSecurityRecipientNationalSocialSecurityOffice property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setRemunerationSocialSecurityRecipientNationalSocialSecurityOffice(Float value) { + this.remunerationSocialSecurityRecipientNationalSocialSecurityOffice = value; + } + + /** + * Gets the value of the amountsReceivableWithinOneYear property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAmountsReceivableWithinOneYear() { + return amountsReceivableWithinOneYear; + } + + /** + * Sets the value of the amountsReceivableWithinOneYear property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAmountsReceivableWithinOneYear(Float value) { + this.amountsReceivableWithinOneYear = value; + } + + /** + * Gets the value of the accruedChargesDeferredIncome property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAccruedChargesDeferredIncome() { + return accruedChargesDeferredIncome; + } + + /** + * Sets the value of the accruedChargesDeferredIncome property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAccruedChargesDeferredIncome(Float value) { + this.accruedChargesDeferredIncome = value; + } + + /** + * Gets the value of the currentInvestments property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getCurrentInvestments() { + return currentInvestments; + } + + /** + * Sets the value of the currentInvestments property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setCurrentInvestments(Float value) { + this.currentInvestments = value; + } + + /** + * Gets the value of the cashBankHand property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getCashBankHand() { + return cashBankHand; + } + + /** + * Sets the value of the cashBankHand property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setCashBankHand(Float value) { + this.cashBankHand = value; + } + + /** + * Gets the value of the equityLiabilities property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEquityLiabilities() { + return equityLiabilities; + } + + /** + * Sets the value of the equityLiabilities property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEquityLiabilities(Float value) { + this.equityLiabilities = value; + } + + /** + * Gets the value of the operatingIncome property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getOperatingIncome() { + return operatingIncome; + } + + /** + * Sets the value of the operatingIncome property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setOperatingIncome(Float value) { + this.operatingIncome = value; + } + + /** + * Gets the value of the otherOperatingIncome property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getOtherOperatingIncome() { + return otherOperatingIncome; + } + + /** + * Sets the value of the otherOperatingIncome property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setOtherOperatingIncome(Float value) { + this.otherOperatingIncome = value; + } + + /** + * Gets the value of the operatingSubsidiesCompensatoryAmounts property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getOperatingSubsidiesCompensatoryAmounts() { + return operatingSubsidiesCompensatoryAmounts; + } + + /** + * Sets the value of the operatingSubsidiesCompensatoryAmounts property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setOperatingSubsidiesCompensatoryAmounts(Float value) { + this.operatingSubsidiesCompensatoryAmounts = value; + } + + /** + * Gets the value of the capitalSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getCapitalSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod() { + return capitalSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod; + } + + /** + * Sets the value of the capitalSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setCapitalSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod(Float value) { + this.capitalSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod = value; + } + + /** + * Gets the value of the rawMaterialsConsumables property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getRawMaterialsConsumables() { + return rawMaterialsConsumables; + } + + /** + * Sets the value of the rawMaterialsConsumables property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setRawMaterialsConsumables(Float value) { + this.rawMaterialsConsumables = value; + } + + /** + * Gets the value of the servicesOtherGoods property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getServicesOtherGoods() { + return servicesOtherGoods; + } + + /** + * Sets the value of the servicesOtherGoods property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setServicesOtherGoods(Float value) { + this.servicesOtherGoods = value; + } + + /** + * Gets the value of the hiredTemporaryStaffCostsEnterprise property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getHiredTemporaryStaffCostsEnterprise() { + return hiredTemporaryStaffCostsEnterprise; + } + + /** + * Sets the value of the hiredTemporaryStaffCostsEnterprise property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setHiredTemporaryStaffCostsEnterprise(Float value) { + this.hiredTemporaryStaffCostsEnterprise = value; + } + + /** + * Gets the value of the personsPlacedEnterprisesDisposalCostsEnterprise property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getPersonsPlacedEnterprisesDisposalCostsEnterprise() { + return personsPlacedEnterprisesDisposalCostsEnterprise; + } + + /** + * Sets the value of the personsPlacedEnterprisesDisposalCostsEnterprise property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setPersonsPlacedEnterprisesDisposalCostsEnterprise(Float value) { + this.personsPlacedEnterprisesDisposalCostsEnterprise = value; + } + + /** + * Gets the value of the employeesRecordedPersonnelRegisterAverageNumberEmployeesCalculatedFullTimeEquivalents property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesRecordedPersonnelRegisterAverageNumberEmployeesCalculatedFullTimeEquivalents() { + return employeesRecordedPersonnelRegisterAverageNumberEmployeesCalculatedFullTimeEquivalents; + } + + /** + * Sets the value of the employeesRecordedPersonnelRegisterAverageNumberEmployeesCalculatedFullTimeEquivalents property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesRecordedPersonnelRegisterAverageNumberEmployeesCalculatedFullTimeEquivalents(Float value) { + this.employeesRecordedPersonnelRegisterAverageNumberEmployeesCalculatedFullTimeEquivalents = value; + } + + /** + * Gets the value of the stockRawMaterialsConsumables property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getStockRawMaterialsConsumables() { + return stockRawMaterialsConsumables; + } + + /** + * Sets the value of the stockRawMaterialsConsumables property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setStockRawMaterialsConsumables(Float value) { + this.stockRawMaterialsConsumables = value; + } + + /** + * Gets the value of the stockGoodsPurchasedResale property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getStockGoodsPurchasedResale() { + return stockGoodsPurchasedResale; + } + + /** + * Sets the value of the stockGoodsPurchasedResale property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setStockGoodsPurchasedResale(Float value) { + this.stockGoodsPurchasedResale = value; + } + + /** + * Gets the value of the stockImmovablePropertyIntendedSale property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getStockImmovablePropertyIntendedSale() { + return stockImmovablePropertyIntendedSale; + } + + /** + * Sets the value of the stockImmovablePropertyIntendedSale property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setStockImmovablePropertyIntendedSale(Float value) { + this.stockImmovablePropertyIntendedSale = value; + } + + /** + * Gets the value of the advancePaymentsPurchasesStocks property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAdvancePaymentsPurchasesStocks() { + return advancePaymentsPurchasesStocks; + } + + /** + * Sets the value of the advancePaymentsPurchasesStocks property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAdvancePaymentsPurchasesStocks(Float value) { + this.advancePaymentsPurchasesStocks = value; + } + + /** + * Gets the value of the stocksContractsProgress property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getStocksContractsProgress() { + return stocksContractsProgress; + } + + /** + * Sets the value of the stocksContractsProgress property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setStocksContractsProgress(Float value) { + this.stocksContractsProgress = value; + } + + /** + * Gets the value of the deferredChargesAccruedIncome property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getDeferredChargesAccruedIncome() { + return deferredChargesAccruedIncome; + } + + /** + * Sets the value of the deferredChargesAccruedIncome property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setDeferredChargesAccruedIncome(Float value) { + this.deferredChargesAccruedIncome = value; + } + + /** + * Gets the value of the ownConstructionCapitalised property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getOwnConstructionCapitalised() { + return ownConstructionCapitalised; + } + + /** + * Sets the value of the ownConstructionCapitalised property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setOwnConstructionCapitalised(Float value) { + this.ownConstructionCapitalised = value; + } + + /** + * Gets the value of the stockWorkProgress property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getStockWorkProgress() { + return stockWorkProgress; + } + + /** + * Sets the value of the stockWorkProgress property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setStockWorkProgress(Float value) { + this.stockWorkProgress = value; + } + + /** + * Gets the value of the stockFinishedGoods property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getStockFinishedGoods() { + return stockFinishedGoods; + } + + /** + * Sets the value of the stockFinishedGoods property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setStockFinishedGoods(Float value) { + this.stockFinishedGoods = value; + } + + /** + * Gets the value of the contractsProgress property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getContractsProgress() { + return contractsProgress; + } + + /** + * Sets the value of the contractsProgress property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setContractsProgress(Float value) { + this.contractsProgress = value; + } + + /** + * Gets the value of the personalGuaranteesProvidedOrIrrevocablyPromisedByEnterprise property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getPersonalGuaranteesProvidedOrIrrevocablyPromisedByEnterprise() { + return personalGuaranteesProvidedOrIrrevocablyPromisedByEnterprise; + } + + /** + * Sets the value of the personalGuaranteesProvidedOrIrrevocablyPromisedByEnterprise property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setPersonalGuaranteesProvidedOrIrrevocablyPromisedByEnterprise(Float value) { + this.personalGuaranteesProvidedOrIrrevocablyPromisedByEnterprise = value; + } + + /** + * Gets the value of the valueAddedTaxesChargedByEnterprise property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getValueAddedTaxesChargedByEnterprise() { + return valueAddedTaxesChargedByEnterprise; + } + + /** + * Sets the value of the valueAddedTaxesChargedByEnterprise property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setValueAddedTaxesChargedByEnterprise(Float value) { + this.valueAddedTaxesChargedByEnterprise = value; + } + + /** + * Gets the value of the purchasesRawMaterialsConsumables property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getPurchasesRawMaterialsConsumables() { + return purchasesRawMaterialsConsumables; + } + + /** + * Sets the value of the purchasesRawMaterialsConsumables property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setPurchasesRawMaterialsConsumables(Float value) { + this.purchasesRawMaterialsConsumables = value; + } + + /** + * Gets the value of the valueAddedTaxesChargedToEnterprise property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getValueAddedTaxesChargedToEnterprise() { + return valueAddedTaxesChargedToEnterprise; + } + + /** + * Sets the value of the valueAddedTaxesChargedToEnterprise property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setValueAddedTaxesChargedToEnterprise(Float value) { + this.valueAddedTaxesChargedToEnterprise = value; + } + + /** + * Gets the value of the amountsWrittenDownCurrentAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAmountsWrittenDownCurrentAssets() { + return amountsWrittenDownCurrentAssets; + } + + /** + * Sets the value of the amountsWrittenDownCurrentAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAmountsWrittenDownCurrentAssets(Float value) { + this.amountsWrittenDownCurrentAssets = value; + } + + /** + * Gets the value of the provisionsFinancialNatureAppropriations property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getProvisionsFinancialNatureAppropriations() { + return provisionsFinancialNatureAppropriations; + } + + /** + * Sets the value of the provisionsFinancialNatureAppropriations property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setProvisionsFinancialNatureAppropriations(Float value) { + this.provisionsFinancialNatureAppropriations = value; + } + + /** + * Gets the value of the provisionsFinancialNatureUsesWriteBacks property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getProvisionsFinancialNatureUsesWriteBacks() { + return provisionsFinancialNatureUsesWriteBacks; + } + + /** + * Sets the value of the provisionsFinancialNatureUsesWriteBacks property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setProvisionsFinancialNatureUsesWriteBacks(Float value) { + this.provisionsFinancialNatureUsesWriteBacks = value; + } + + /** + * Gets the value of the extraordinaryDepreciationExtraordinaryAmountsWrittenDown property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getExtraordinaryDepreciationExtraordinaryAmountsWrittenDown() { + return extraordinaryDepreciationExtraordinaryAmountsWrittenDown; + } + + /** + * Sets the value of the extraordinaryDepreciationExtraordinaryAmountsWrittenDown property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setExtraordinaryDepreciationExtraordinaryAmountsWrittenDown(Float value) { + this.extraordinaryDepreciationExtraordinaryAmountsWrittenDown = value; + } + + /** + * Gets the value of the amountsWrittenDownFinancialFixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAmountsWrittenDownFinancialFixedAssets() { + return amountsWrittenDownFinancialFixedAssets; + } + + /** + * Sets the value of the amountsWrittenDownFinancialFixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAmountsWrittenDownFinancialFixedAssets(Float value) { + this.amountsWrittenDownFinancialFixedAssets = value; + } + + /** + * Gets the value of the provisionsExtraordinaryLiabilitiesChargesAppropriationsUses property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getProvisionsExtraordinaryLiabilitiesChargesAppropriationsUses() { + return provisionsExtraordinaryLiabilitiesChargesAppropriationsUses; + } + + /** + * Sets the value of the provisionsExtraordinaryLiabilitiesChargesAppropriationsUses property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setProvisionsExtraordinaryLiabilitiesChargesAppropriationsUses(Float value) { + this.provisionsExtraordinaryLiabilitiesChargesAppropriationsUses = value; + } + + /** + * Gets the value of the writeBackDepreciationAmountsWrittenDownIntangibleTangibleFixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getWriteBackDepreciationAmountsWrittenDownIntangibleTangibleFixedAssets() { + return writeBackDepreciationAmountsWrittenDownIntangibleTangibleFixedAssets; + } + + /** + * Sets the value of the writeBackDepreciationAmountsWrittenDownIntangibleTangibleFixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setWriteBackDepreciationAmountsWrittenDownIntangibleTangibleFixedAssets(Float value) { + this.writeBackDepreciationAmountsWrittenDownIntangibleTangibleFixedAssets = value; + } + + /** + * Gets the value of the writeBackAmountsWrittenDownFinancialFixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getWriteBackAmountsWrittenDownFinancialFixedAssets() { + return writeBackAmountsWrittenDownFinancialFixedAssets; + } + + /** + * Sets the value of the writeBackAmountsWrittenDownFinancialFixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setWriteBackAmountsWrittenDownFinancialFixedAssets(Float value) { + this.writeBackAmountsWrittenDownFinancialFixedAssets = value; + } + + /** + * Gets the value of the writeBackProvisionsExtraordinaryLiabilitiesCharges property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getWriteBackProvisionsExtraordinaryLiabilitiesCharges() { + return writeBackProvisionsExtraordinaryLiabilitiesCharges; + } + + /** + * Sets the value of the writeBackProvisionsExtraordinaryLiabilitiesCharges property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setWriteBackProvisionsExtraordinaryLiabilitiesCharges(Float value) { + this.writeBackProvisionsExtraordinaryLiabilitiesCharges = value; + } + + /** + * Gets the value of the lossesDisposalFixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getLossesDisposalFixedAssets() { + return lossesDisposalFixedAssets; + } + + /** + * Sets the value of the lossesDisposalFixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setLossesDisposalFixedAssets(Float value) { + this.lossesDisposalFixedAssets = value; + } + + /** + * Gets the value of the incomeTaxesResultPeriod property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getIncomeTaxesResultPeriod() { + return incomeTaxesResultPeriod; + } + + /** + * Sets the value of the incomeTaxesResultPeriod property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setIncomeTaxesResultPeriod(Float value) { + this.incomeTaxesResultPeriod = value; + } + + /** + * Gets the value of the transferFromDeferredTaxes property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getTransferFromDeferredTaxes() { + return transferFromDeferredTaxes; + } + + /** + * Sets the value of the transferFromDeferredTaxes property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setTransferFromDeferredTaxes(Float value) { + this.transferFromDeferredTaxes = value; + } + + /** + * Gets the value of the transferToDeferredTaxes property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getTransferToDeferredTaxes() { + return transferToDeferredTaxes; + } + + /** + * Sets the value of the transferToDeferredTaxes property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setTransferToDeferredTaxes(Float value) { + this.transferToDeferredTaxes = value; + } + + /** + * Gets the value of the assets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAssets() { + return assets; + } + + /** + * Sets the value of the assets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAssets(Float value) { + this.assets = value; + } + + /** + * Gets the value of the interestSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getInterestSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod() { + return interestSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod; + } + + /** + * Sets the value of the interestSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setInterestSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod(Float value) { + this.interestSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod = value; + } + + /** + * Gets the value of the chargesDiscountingAmountsReceivable property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getChargesDiscountingAmountsReceivable() { + return chargesDiscountingAmountsReceivable; + } + + /** + * Sets the value of the chargesDiscountingAmountsReceivable property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setChargesDiscountingAmountsReceivable(Float value) { + this.chargesDiscountingAmountsReceivable = value; + } + + /** + * Gets the value of the debtCharges property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getDebtCharges() { + return debtCharges; + } + + /** + * Sets the value of the debtCharges property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setDebtCharges(Float value) { + this.debtCharges = value; + } + + /** + * Gets the value of the depreciationLoanIssueExpensesReimbursementPremiums property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getDepreciationLoanIssueExpensesReimbursementPremiums() { + return depreciationLoanIssueExpensesReimbursementPremiums; + } + + /** + * Sets the value of the depreciationLoanIssueExpensesReimbursementPremiums property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setDepreciationLoanIssueExpensesReimbursementPremiums(Float value) { + this.depreciationLoanIssueExpensesReimbursementPremiums = value; + } + + /** + * Gets the value of the provisionsPensionsSimilarObligationsAppropriationsWriteBacks property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getProvisionsPensionsSimilarObligationsAppropriationsWriteBacks() { + return provisionsPensionsSimilarObligationsAppropriationsWriteBacks; + } + + /** + * Sets the value of the provisionsPensionsSimilarObligationsAppropriationsWriteBacks property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setProvisionsPensionsSimilarObligationsAppropriationsWriteBacks(Float value) { + this.provisionsPensionsSimilarObligationsAppropriationsWriteBacks = value; + } + + /** + * Gets the value of the currentPortionAmountsPayableMoreOneYearFallingDueWithinOneYear property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getCurrentPortionAmountsPayableMoreOneYearFallingDueWithinOneYear() { + return currentPortionAmountsPayableMoreOneYearFallingDueWithinOneYear; + } + + /** + * Sets the value of the currentPortionAmountsPayableMoreOneYearFallingDueWithinOneYear property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setCurrentPortionAmountsPayableMoreOneYearFallingDueWithinOneYear(Float value) { + this.currentPortionAmountsPayableMoreOneYearFallingDueWithinOneYear = value; + } + + /** + * Gets the value of the amountsPayableMoreOneYear property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAmountsPayableMoreOneYear() { + return amountsPayableMoreOneYear; + } + + /** + * Sets the value of the amountsPayableMoreOneYear property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAmountsPayableMoreOneYear(Float value) { + this.amountsPayableMoreOneYear = value; + } + + /** + * Gets the value of the provisionsDeferredTaxes property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getProvisionsDeferredTaxes() { + return provisionsDeferredTaxes; + } + + /** + * Sets the value of the provisionsDeferredTaxes property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setProvisionsDeferredTaxes(Float value) { + this.provisionsDeferredTaxes = value; + } + + /** + * Gets the value of the amountsPayable property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAmountsPayable() { + return amountsPayable; + } + + /** + * Sets the value of the amountsPayable property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAmountsPayable(Float value) { + this.amountsPayable = value; + } + + /** + * Gets the value of the reserves property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getReserves() { + return reserves; + } + + /** + * Sets the value of the reserves property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setReserves(Float value) { + this.reserves = value; + } + + /** + * Gets the value of the accumulatedProfitsLosses property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAccumulatedProfitsLosses() { + return accumulatedProfitsLosses; + } + + /** + * Sets the value of the accumulatedProfitsLosses property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAccumulatedProfitsLosses(Float value) { + this.accumulatedProfitsLosses = value; + } + + /** + * Gets the value of the financialDebtsPayableWithinOneYear property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getFinancialDebtsPayableWithinOneYear() { + return financialDebtsPayableWithinOneYear; + } + + /** + * Sets the value of the financialDebtsPayableWithinOneYear property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setFinancialDebtsPayableWithinOneYear(Float value) { + this.financialDebtsPayableWithinOneYear = value; + } + + /** + * Gets the value of the formationExpenses property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getFormationExpenses() { + return formationExpenses; + } + + /** + * Sets the value of the formationExpenses property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setFormationExpenses(Float value) { + this.formationExpenses = value; + } + + /** + * Gets the value of the intangibleFixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getIntangibleFixedAssets() { + return intangibleFixedAssets; + } + + /** + * Sets the value of the intangibleFixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setIntangibleFixedAssets(Float value) { + this.intangibleFixedAssets = value; + } + + /** + * Gets the value of the tangibleFixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getTangibleFixedAssets() { + return tangibleFixedAssets; + } + + /** + * Sets the value of the tangibleFixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setTangibleFixedAssets(Float value) { + this.tangibleFixedAssets = value; + } + + /** + * Gets the value of the landBuildingsAcquisitionIncludingProducedFixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getLandBuildingsAcquisitionIncludingProducedFixedAssets() { + return landBuildingsAcquisitionIncludingProducedFixedAssets; + } + + /** + * Sets the value of the landBuildingsAcquisitionIncludingProducedFixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setLandBuildingsAcquisitionIncludingProducedFixedAssets(Float value) { + this.landBuildingsAcquisitionIncludingProducedFixedAssets = value; + } + + /** + * Gets the value of the plantMachineryEquipmentAcquisitionIncludingProducedFixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getPlantMachineryEquipmentAcquisitionIncludingProducedFixedAssets() { + return plantMachineryEquipmentAcquisitionIncludingProducedFixedAssets; + } + + /** + * Sets the value of the plantMachineryEquipmentAcquisitionIncludingProducedFixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setPlantMachineryEquipmentAcquisitionIncludingProducedFixedAssets(Float value) { + this.plantMachineryEquipmentAcquisitionIncludingProducedFixedAssets = value; + } + + /** + * Gets the value of the furnitureVehiclesAcquisitionIncludingProducedFixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getFurnitureVehiclesAcquisitionIncludingProducedFixedAssets() { + return furnitureVehiclesAcquisitionIncludingProducedFixedAssets; + } + + /** + * Sets the value of the furnitureVehiclesAcquisitionIncludingProducedFixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setFurnitureVehiclesAcquisitionIncludingProducedFixedAssets(Float value) { + this.furnitureVehiclesAcquisitionIncludingProducedFixedAssets = value; + } + + /** + * Gets the value of the leasingOtherSimilarRightsAcquisitionIncludingProducedFixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getLeasingOtherSimilarRightsAcquisitionIncludingProducedFixedAssets() { + return leasingOtherSimilarRightsAcquisitionIncludingProducedFixedAssets; + } + + /** + * Sets the value of the leasingOtherSimilarRightsAcquisitionIncludingProducedFixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setLeasingOtherSimilarRightsAcquisitionIncludingProducedFixedAssets(Float value) { + this.leasingOtherSimilarRightsAcquisitionIncludingProducedFixedAssets = value; + } + + /** + * Gets the value of the otherTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getOtherTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets() { + return otherTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets; + } + + /** + * Sets the value of the otherTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setOtherTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets(Float value) { + this.otherTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets = value; + } + + /** + * Gets the value of the tangibleFixedAssetsUnderConstruction property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getTangibleFixedAssetsUnderConstruction() { + return tangibleFixedAssetsUnderConstruction; + } + + /** + * Sets the value of the tangibleFixedAssetsUnderConstruction property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setTangibleFixedAssetsUnderConstruction(Float value) { + this.tangibleFixedAssetsUnderConstruction = value; + } + + /** + * Gets the value of the landBuildingsRevaluationGainsThirdParties property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getLandBuildingsRevaluationGainsThirdParties() { + return landBuildingsRevaluationGainsThirdParties; + } + + /** + * Sets the value of the landBuildingsRevaluationGainsThirdParties property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setLandBuildingsRevaluationGainsThirdParties(Float value) { + this.landBuildingsRevaluationGainsThirdParties = value; + } + + /** + * Gets the value of the plantMachineryEquipmentRevaluationGainsThirdParties property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getPlantMachineryEquipmentRevaluationGainsThirdParties() { + return plantMachineryEquipmentRevaluationGainsThirdParties; + } + + /** + * Sets the value of the plantMachineryEquipmentRevaluationGainsThirdParties property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setPlantMachineryEquipmentRevaluationGainsThirdParties(Float value) { + this.plantMachineryEquipmentRevaluationGainsThirdParties = value; + } + + /** + * Gets the value of the furnitureVehiclesRevaluationGainsThirdParties property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getFurnitureVehiclesRevaluationGainsThirdParties() { + return furnitureVehiclesRevaluationGainsThirdParties; + } + + /** + * Sets the value of the furnitureVehiclesRevaluationGainsThirdParties property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setFurnitureVehiclesRevaluationGainsThirdParties(Float value) { + this.furnitureVehiclesRevaluationGainsThirdParties = value; + } + + /** + * Gets the value of the leasingOtherSimilarRightsRevaluationGainsThirdParties property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getLeasingOtherSimilarRightsRevaluationGainsThirdParties() { + return leasingOtherSimilarRightsRevaluationGainsThirdParties; + } + + /** + * Sets the value of the leasingOtherSimilarRightsRevaluationGainsThirdParties property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setLeasingOtherSimilarRightsRevaluationGainsThirdParties(Float value) { + this.leasingOtherSimilarRightsRevaluationGainsThirdParties = value; + } + + /** + * Gets the value of the otherTangibleFixedAssetsRevaluationGainsThirdParties property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getOtherTangibleFixedAssetsRevaluationGainsThirdParties() { + return otherTangibleFixedAssetsRevaluationGainsThirdParties; + } + + /** + * Sets the value of the otherTangibleFixedAssetsRevaluationGainsThirdParties property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setOtherTangibleFixedAssetsRevaluationGainsThirdParties(Float value) { + this.otherTangibleFixedAssetsRevaluationGainsThirdParties = value; + } + + /** + * Gets the value of the tangibleFixedAssetsUnderConstructionAdvancePaymentsRevaluationGainsThirdParties property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getTangibleFixedAssetsUnderConstructionAdvancePaymentsRevaluationGainsThirdParties() { + return tangibleFixedAssetsUnderConstructionAdvancePaymentsRevaluationGainsThirdParties; + } + + /** + * Sets the value of the tangibleFixedAssetsUnderConstructionAdvancePaymentsRevaluationGainsThirdParties property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setTangibleFixedAssetsUnderConstructionAdvancePaymentsRevaluationGainsThirdParties(Float value) { + this.tangibleFixedAssetsUnderConstructionAdvancePaymentsRevaluationGainsThirdParties = value; + } + + /** + * Gets the value of the landBuildingsDepreciationsAmountWrittenDownAcquiredThirdParty property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getLandBuildingsDepreciationsAmountWrittenDownAcquiredThirdParty() { + return landBuildingsDepreciationsAmountWrittenDownAcquiredThirdParty; + } + + /** + * Sets the value of the landBuildingsDepreciationsAmountWrittenDownAcquiredThirdParty property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setLandBuildingsDepreciationsAmountWrittenDownAcquiredThirdParty(Float value) { + this.landBuildingsDepreciationsAmountWrittenDownAcquiredThirdParty = value; + } + + /** + * Gets the value of the plantMachineryEquipmentDepreciationsAmountWrittenDownAcquiredThirdParty property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getPlantMachineryEquipmentDepreciationsAmountWrittenDownAcquiredThirdParty() { + return plantMachineryEquipmentDepreciationsAmountWrittenDownAcquiredThirdParty; + } + + /** + * Sets the value of the plantMachineryEquipmentDepreciationsAmountWrittenDownAcquiredThirdParty property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setPlantMachineryEquipmentDepreciationsAmountWrittenDownAcquiredThirdParty(Float value) { + this.plantMachineryEquipmentDepreciationsAmountWrittenDownAcquiredThirdParty = value; + } + + /** + * Gets the value of the furnitureVehiclesDepreciationsAmountWrittenDownAcquiredThirdParty property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getFurnitureVehiclesDepreciationsAmountWrittenDownAcquiredThirdParty() { + return furnitureVehiclesDepreciationsAmountWrittenDownAcquiredThirdParty; + } + + /** + * Sets the value of the furnitureVehiclesDepreciationsAmountWrittenDownAcquiredThirdParty property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setFurnitureVehiclesDepreciationsAmountWrittenDownAcquiredThirdParty(Float value) { + this.furnitureVehiclesDepreciationsAmountWrittenDownAcquiredThirdParty = value; + } + + /** + * Gets the value of the leasingOtherSimilarRightsDepreciationsAmountWrittenDownAcquiredThirdParty property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getLeasingOtherSimilarRightsDepreciationsAmountWrittenDownAcquiredThirdParty() { + return leasingOtherSimilarRightsDepreciationsAmountWrittenDownAcquiredThirdParty; + } + + /** + * Sets the value of the leasingOtherSimilarRightsDepreciationsAmountWrittenDownAcquiredThirdParty property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setLeasingOtherSimilarRightsDepreciationsAmountWrittenDownAcquiredThirdParty(Float value) { + this.leasingOtherSimilarRightsDepreciationsAmountWrittenDownAcquiredThirdParty = value; + } + + /** + * Gets the value of the otherTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getOtherTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty() { + return otherTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty; + } + + /** + * Sets the value of the otherTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setOtherTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty(Float value) { + this.otherTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty = value; + } + + /** + * Gets the value of the tangibleFixedAssetsUnderConstructionAdvancePaymentsDepreciations property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getTangibleFixedAssetsUnderConstructionAdvancePaymentsDepreciations() { + return tangibleFixedAssetsUnderConstructionAdvancePaymentsDepreciations; + } + + /** + * Sets the value of the tangibleFixedAssetsUnderConstructionAdvancePaymentsDepreciations property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setTangibleFixedAssetsUnderConstructionAdvancePaymentsDepreciations(Float value) { + this.tangibleFixedAssetsUnderConstructionAdvancePaymentsDepreciations = value; + } + + /** + * Gets the value of the employeesRecordedPersonnelRegisterTotalNumberClosingDate property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesRecordedPersonnelRegisterTotalNumberClosingDate() { + return employeesRecordedPersonnelRegisterTotalNumberClosingDate; + } + + /** + * Sets the value of the employeesRecordedPersonnelRegisterTotalNumberClosingDate property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesRecordedPersonnelRegisterTotalNumberClosingDate(Float value) { + this.employeesRecordedPersonnelRegisterTotalNumberClosingDate = value; + } + + /** + * Gets the value of the numberEmployeesPersonnelRegisterClosingDateFinancialYearMenFullTime property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getNumberEmployeesPersonnelRegisterClosingDateFinancialYearMenFullTime() { + return numberEmployeesPersonnelRegisterClosingDateFinancialYearMenFullTime; + } + + /** + * Sets the value of the numberEmployeesPersonnelRegisterClosingDateFinancialYearMenFullTime property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setNumberEmployeesPersonnelRegisterClosingDateFinancialYearMenFullTime(Float value) { + this.numberEmployeesPersonnelRegisterClosingDateFinancialYearMenFullTime = value; + } + + /** + * Gets the value of the numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenFullTime property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getNumberEmployeesPersonnelRegisterClosingDateFinancialYearWomenFullTime() { + return numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenFullTime; + } + + /** + * Sets the value of the numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenFullTime property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setNumberEmployeesPersonnelRegisterClosingDateFinancialYearWomenFullTime(Float value) { + this.numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenFullTime = value; + } + + /** + * Gets the value of the numberEmployeesPersonnelRegisterClosingDateFinancialYearMenPartTime property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getNumberEmployeesPersonnelRegisterClosingDateFinancialYearMenPartTime() { + return numberEmployeesPersonnelRegisterClosingDateFinancialYearMenPartTime; + } + + /** + * Sets the value of the numberEmployeesPersonnelRegisterClosingDateFinancialYearMenPartTime property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setNumberEmployeesPersonnelRegisterClosingDateFinancialYearMenPartTime(Float value) { + this.numberEmployeesPersonnelRegisterClosingDateFinancialYearMenPartTime = value; + } + + /** + * Gets the value of the numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenPartTime property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getNumberEmployeesPersonnelRegisterClosingDateFinancialYearWomenPartTime() { + return numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenPartTime; + } + + /** + * Sets the value of the numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenPartTime property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setNumberEmployeesPersonnelRegisterClosingDateFinancialYearWomenPartTime(Float value) { + this.numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenPartTime = value; + } + + /** + * Gets the value of the investments property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getInvestments() { + return investments; + } + + /** + * Sets the value of the investments property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setInvestments(Float value) { + this.investments = value; + } + + /** + * Gets the value of the addedValue property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAddedValue() { + return addedValue; + } + + /** + * Sets the value of the addedValue property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAddedValue(Float value) { + this.addedValue = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessGetDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessGetDossierRequestType.java new file mode 100644 index 0000000..41acfd5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessGetDossierRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for belgianBusinessGetDossierRequestType complex type. + * + *

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

+ * <complexType name="belgianBusinessGetDossierRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "belgianBusinessGetDossierRequestType", propOrder = { + +}) +public class BelgianBusinessGetDossierRequestType { + + @XmlElement(name = "vat_number", required = true) + protected String vatNumber; + + /** + * Gets the value of the vatNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVatNumber() { + return vatNumber; + } + + /** + * Sets the value of the vatNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVatNumber(String value) { + this.vatNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessGetDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessGetDossierResponseType.java new file mode 100644 index 0000000..36c7624 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessGetDossierResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for belgianBusinessGetDossierResponseType complex type. + * + *

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

+ * <complexType name="belgianBusinessGetDossierResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BelgianBusinessDossier"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "belgianBusinessGetDossierResponseType", propOrder = { + +}) +public class BelgianBusinessGetDossierResponseType { + + @XmlElement(required = true) + protected BelgianBusinessDossier out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BelgianBusinessDossier } + * + */ + public BelgianBusinessDossier getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BelgianBusinessDossier } + * + */ + public void setOut(BelgianBusinessDossier value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessInternationalAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessInternationalAddress.java new file mode 100644 index 0000000..576e75f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessInternationalAddress.java @@ -0,0 +1,194 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessInternationalAddress complex type. + * + *

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

+ * <complexType name="BelgianBusinessInternationalAddress">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="box" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="municipality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="post_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessInternationalAddress", propOrder = { + +}) +public class BelgianBusinessInternationalAddress { + + @XmlElement(required = true) + protected String street; + @XmlElement(name = "house_number") + protected int houseNumber; + protected String box; + @XmlElement(name = "country_code", required = true) + protected String countryCode; + protected String municipality; + @XmlElement(name = "post_code", required = true) + protected String postCode; + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNumber property. + * + */ + public int getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + */ + public void setHouseNumber(int value) { + this.houseNumber = value; + } + + /** + * Gets the value of the box property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBox() { + return box; + } + + /** + * Sets the value of the box property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBox(String value) { + this.box = value; + } + + /** + * Gets the value of the countryCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryCode() { + return countryCode; + } + + /** + * Sets the value of the countryCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryCode(String value) { + this.countryCode = value; + } + + /** + * Gets the value of the municipality property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMunicipality() { + return municipality; + } + + /** + * Sets the value of the municipality property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMunicipality(String value) { + this.municipality = value; + } + + /** + * Gets the value of the postCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostCode() { + return postCode; + } + + /** + * Sets the value of the postCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostCode(String value) { + this.postCode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessInternationalAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessInternationalAddressArray.java new file mode 100644 index 0000000..1241650 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessInternationalAddressArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessInternationalAddressArray complex type. + * + *

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

+ * <complexType name="BelgianBusinessInternationalAddressArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessInternationalAddress" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessInternationalAddressArray", propOrder = { + "item" +}) +public class BelgianBusinessInternationalAddressArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BelgianBusinessInternationalAddress } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentative.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentative.java new file mode 100644 index 0000000..bbecb91 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentative.java @@ -0,0 +1,149 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessLegalRepresentative complex type. + * + *

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

+ * <complexType name="BelgianBusinessLegalRepresentative">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_vat_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="role" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItem" minOccurs="0"/>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessLegalRepresentative", propOrder = { + +}) +public class BelgianBusinessLegalRepresentative { + + @XmlElement(name = "company_vat_number") + protected String companyVatNumber; + protected BelgianBusinessDatedItem role; + @XmlElement(name = "first_name", required = true) + protected String firstName; + @XmlElement(name = "last_name", required = true) + protected String lastName; + + /** + * Gets the value of the companyVatNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyVatNumber() { + return companyVatNumber; + } + + /** + * Sets the value of the companyVatNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyVatNumber(String value) { + this.companyVatNumber = value; + } + + /** + * Gets the value of the role property. + * + * @return + * possible object is + * {@link BelgianBusinessDatedItem } + * + */ + public BelgianBusinessDatedItem getRole() { + return role; + } + + /** + * Sets the value of the role property. + * + * @param value + * allowed object is + * {@link BelgianBusinessDatedItem } + * + */ + public void setRole(BelgianBusinessDatedItem value) { + this.role = value; + } + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeArray.java new file mode 100644 index 0000000..8db010f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessLegalRepresentativeArray complex type. + * + *

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

+ * <complexType name="BelgianBusinessLegalRepresentativeArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessLegalRepresentative" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessLegalRepresentativeArray", propOrder = { + "item" +}) +public class BelgianBusinessLegalRepresentativeArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BelgianBusinessLegalRepresentative } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeCompany.java new file mode 100644 index 0000000..3a45660 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeCompany.java @@ -0,0 +1,121 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessLegalRepresentativeCompany complex type. + * + *

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

+ * <complexType name="BelgianBusinessLegalRepresentativeCompany">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="role" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItem" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessLegalRepresentativeCompany", propOrder = { + +}) +public class BelgianBusinessLegalRepresentativeCompany { + + @XmlElement(name = "vat_number") + protected String vatNumber; + protected String name; + protected BelgianBusinessDatedItem role; + + /** + * Gets the value of the vatNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVatNumber() { + return vatNumber; + } + + /** + * Sets the value of the vatNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVatNumber(String value) { + this.vatNumber = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the role property. + * + * @return + * possible object is + * {@link BelgianBusinessDatedItem } + * + */ + public BelgianBusinessDatedItem getRole() { + return role; + } + + /** + * Sets the value of the role property. + * + * @param value + * allowed object is + * {@link BelgianBusinessDatedItem } + * + */ + public void setRole(BelgianBusinessDatedItem value) { + this.role = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeCompanyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeCompanyArray.java new file mode 100644 index 0000000..0c8f2be --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeCompanyArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessLegalRepresentativeCompanyArray complex type. + * + *

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

+ * <complexType name="BelgianBusinessLegalRepresentativeCompanyArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessLegalRepresentativeCompany" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessLegalRepresentativeCompanyArray", propOrder = { + "item" +}) +public class BelgianBusinessLegalRepresentativeCompanyArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BelgianBusinessLegalRepresentativeCompany } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRatios.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRatios.java new file mode 100644 index 0000000..9902903 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRatios.java @@ -0,0 +1,904 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessRatios complex type. + * + *

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

+ * <complexType name="BelgianBusinessRatios">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="net_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="return_on_equity" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="gross_operating_sales_margin" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="net_operating_sales_margin" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="rotation_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="total_assets_to_turnover" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="current_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="quick_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="immediate_liquidity" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="write_downs_to_added_value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="net_cash" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="net_cash_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="net_current_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="cash_flow" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="number_days_customer_credit" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="number_days_supplier_credit" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="investments" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="dfl" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="own_assets_to_capital" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="cash_flow_to_debt" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="cash_flow_to_long_term_debt" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="long_term_debt_to_short_term_debt" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="debt_repayment" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="self_financing_degree" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="outstanding_tax_to_liabilities" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="added_value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="payroll_costs_to_added_value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="financial_charges_to_added_value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="net_profit_to_added_value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="added_value_to_operating_income" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="investment_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="added_value_per_employee" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessRatios", propOrder = { + +}) +public class BelgianBusinessRatios { + + @XmlElement(name = "net_assets") + protected Float netAssets; + @XmlElement(name = "return_on_equity") + protected Float returnOnEquity; + @XmlElement(name = "gross_operating_sales_margin") + protected Float grossOperatingSalesMargin; + @XmlElement(name = "net_operating_sales_margin") + protected Float netOperatingSalesMargin; + @XmlElement(name = "rotation_fixed_assets") + protected Float rotationFixedAssets; + @XmlElement(name = "total_assets_to_turnover") + protected Float totalAssetsToTurnover; + @XmlElement(name = "current_ratio") + protected Float currentRatio; + @XmlElement(name = "quick_ratio") + protected Float quickRatio; + @XmlElement(name = "immediate_liquidity") + protected Float immediateLiquidity; + @XmlElement(name = "write_downs_to_added_value") + protected Float writeDownsToAddedValue; + @XmlElement(name = "net_cash") + protected Float netCash; + @XmlElement(name = "net_cash_ratio") + protected Float netCashRatio; + @XmlElement(name = "net_current_assets") + protected Float netCurrentAssets; + @XmlElement(name = "cash_flow") + protected Float cashFlow; + @XmlElement(name = "number_days_customer_credit") + protected Float numberDaysCustomerCredit; + @XmlElement(name = "number_days_supplier_credit") + protected Float numberDaysSupplierCredit; + protected Float investments; + protected Float dfl; + @XmlElement(name = "own_assets_to_capital") + protected Float ownAssetsToCapital; + @XmlElement(name = "cash_flow_to_debt") + protected Float cashFlowToDebt; + @XmlElement(name = "cash_flow_to_long_term_debt") + protected Float cashFlowToLongTermDebt; + @XmlElement(name = "long_term_debt_to_short_term_debt") + protected Float longTermDebtToShortTermDebt; + @XmlElement(name = "debt_repayment") + protected Float debtRepayment; + @XmlElement(name = "self_financing_degree") + protected Float selfFinancingDegree; + @XmlElement(name = "outstanding_tax_to_liabilities") + protected Float outstandingTaxToLiabilities; + @XmlElement(name = "added_value") + protected Float addedValue; + @XmlElement(name = "payroll_costs_to_added_value") + protected Float payrollCostsToAddedValue; + @XmlElement(name = "financial_charges_to_added_value") + protected Float financialChargesToAddedValue; + @XmlElement(name = "net_profit_to_added_value") + protected Float netProfitToAddedValue; + @XmlElement(name = "added_value_to_operating_income") + protected Float addedValueToOperatingIncome; + @XmlElement(name = "investment_ratio") + protected Float investmentRatio; + @XmlElement(name = "added_value_per_employee") + protected Float addedValuePerEmployee; + + /** + * Gets the value of the netAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getNetAssets() { + return netAssets; + } + + /** + * Sets the value of the netAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setNetAssets(Float value) { + this.netAssets = value; + } + + /** + * Gets the value of the returnOnEquity property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getReturnOnEquity() { + return returnOnEquity; + } + + /** + * Sets the value of the returnOnEquity property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setReturnOnEquity(Float value) { + this.returnOnEquity = value; + } + + /** + * Gets the value of the grossOperatingSalesMargin property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getGrossOperatingSalesMargin() { + return grossOperatingSalesMargin; + } + + /** + * Sets the value of the grossOperatingSalesMargin property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setGrossOperatingSalesMargin(Float value) { + this.grossOperatingSalesMargin = value; + } + + /** + * Gets the value of the netOperatingSalesMargin property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getNetOperatingSalesMargin() { + return netOperatingSalesMargin; + } + + /** + * Sets the value of the netOperatingSalesMargin property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setNetOperatingSalesMargin(Float value) { + this.netOperatingSalesMargin = value; + } + + /** + * Gets the value of the rotationFixedAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getRotationFixedAssets() { + return rotationFixedAssets; + } + + /** + * Sets the value of the rotationFixedAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setRotationFixedAssets(Float value) { + this.rotationFixedAssets = value; + } + + /** + * Gets the value of the totalAssetsToTurnover property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getTotalAssetsToTurnover() { + return totalAssetsToTurnover; + } + + /** + * Sets the value of the totalAssetsToTurnover property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setTotalAssetsToTurnover(Float value) { + this.totalAssetsToTurnover = value; + } + + /** + * Gets the value of the currentRatio property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getCurrentRatio() { + return currentRatio; + } + + /** + * Sets the value of the currentRatio property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setCurrentRatio(Float value) { + this.currentRatio = value; + } + + /** + * Gets the value of the quickRatio property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getQuickRatio() { + return quickRatio; + } + + /** + * Sets the value of the quickRatio property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setQuickRatio(Float value) { + this.quickRatio = value; + } + + /** + * Gets the value of the immediateLiquidity property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getImmediateLiquidity() { + return immediateLiquidity; + } + + /** + * Sets the value of the immediateLiquidity property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setImmediateLiquidity(Float value) { + this.immediateLiquidity = value; + } + + /** + * Gets the value of the writeDownsToAddedValue property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getWriteDownsToAddedValue() { + return writeDownsToAddedValue; + } + + /** + * Sets the value of the writeDownsToAddedValue property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setWriteDownsToAddedValue(Float value) { + this.writeDownsToAddedValue = value; + } + + /** + * Gets the value of the netCash property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getNetCash() { + return netCash; + } + + /** + * Sets the value of the netCash property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setNetCash(Float value) { + this.netCash = value; + } + + /** + * Gets the value of the netCashRatio property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getNetCashRatio() { + return netCashRatio; + } + + /** + * Sets the value of the netCashRatio property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setNetCashRatio(Float value) { + this.netCashRatio = value; + } + + /** + * Gets the value of the netCurrentAssets property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getNetCurrentAssets() { + return netCurrentAssets; + } + + /** + * Sets the value of the netCurrentAssets property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setNetCurrentAssets(Float value) { + this.netCurrentAssets = value; + } + + /** + * Gets the value of the cashFlow property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getCashFlow() { + return cashFlow; + } + + /** + * Sets the value of the cashFlow property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setCashFlow(Float value) { + this.cashFlow = value; + } + + /** + * Gets the value of the numberDaysCustomerCredit property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getNumberDaysCustomerCredit() { + return numberDaysCustomerCredit; + } + + /** + * Sets the value of the numberDaysCustomerCredit property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setNumberDaysCustomerCredit(Float value) { + this.numberDaysCustomerCredit = value; + } + + /** + * Gets the value of the numberDaysSupplierCredit property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getNumberDaysSupplierCredit() { + return numberDaysSupplierCredit; + } + + /** + * Sets the value of the numberDaysSupplierCredit property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setNumberDaysSupplierCredit(Float value) { + this.numberDaysSupplierCredit = value; + } + + /** + * Gets the value of the investments property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getInvestments() { + return investments; + } + + /** + * Sets the value of the investments property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setInvestments(Float value) { + this.investments = value; + } + + /** + * Gets the value of the dfl property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getDfl() { + return dfl; + } + + /** + * Sets the value of the dfl property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setDfl(Float value) { + this.dfl = value; + } + + /** + * Gets the value of the ownAssetsToCapital property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getOwnAssetsToCapital() { + return ownAssetsToCapital; + } + + /** + * Sets the value of the ownAssetsToCapital property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setOwnAssetsToCapital(Float value) { + this.ownAssetsToCapital = value; + } + + /** + * Gets the value of the cashFlowToDebt property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getCashFlowToDebt() { + return cashFlowToDebt; + } + + /** + * Sets the value of the cashFlowToDebt property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setCashFlowToDebt(Float value) { + this.cashFlowToDebt = value; + } + + /** + * Gets the value of the cashFlowToLongTermDebt property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getCashFlowToLongTermDebt() { + return cashFlowToLongTermDebt; + } + + /** + * Sets the value of the cashFlowToLongTermDebt property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setCashFlowToLongTermDebt(Float value) { + this.cashFlowToLongTermDebt = value; + } + + /** + * Gets the value of the longTermDebtToShortTermDebt property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getLongTermDebtToShortTermDebt() { + return longTermDebtToShortTermDebt; + } + + /** + * Sets the value of the longTermDebtToShortTermDebt property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setLongTermDebtToShortTermDebt(Float value) { + this.longTermDebtToShortTermDebt = value; + } + + /** + * Gets the value of the debtRepayment property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getDebtRepayment() { + return debtRepayment; + } + + /** + * Sets the value of the debtRepayment property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setDebtRepayment(Float value) { + this.debtRepayment = value; + } + + /** + * Gets the value of the selfFinancingDegree property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getSelfFinancingDegree() { + return selfFinancingDegree; + } + + /** + * Sets the value of the selfFinancingDegree property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setSelfFinancingDegree(Float value) { + this.selfFinancingDegree = value; + } + + /** + * Gets the value of the outstandingTaxToLiabilities property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getOutstandingTaxToLiabilities() { + return outstandingTaxToLiabilities; + } + + /** + * Sets the value of the outstandingTaxToLiabilities property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setOutstandingTaxToLiabilities(Float value) { + this.outstandingTaxToLiabilities = value; + } + + /** + * Gets the value of the addedValue property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAddedValue() { + return addedValue; + } + + /** + * Sets the value of the addedValue property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAddedValue(Float value) { + this.addedValue = value; + } + + /** + * Gets the value of the payrollCostsToAddedValue property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getPayrollCostsToAddedValue() { + return payrollCostsToAddedValue; + } + + /** + * Sets the value of the payrollCostsToAddedValue property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setPayrollCostsToAddedValue(Float value) { + this.payrollCostsToAddedValue = value; + } + + /** + * Gets the value of the financialChargesToAddedValue property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getFinancialChargesToAddedValue() { + return financialChargesToAddedValue; + } + + /** + * Sets the value of the financialChargesToAddedValue property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setFinancialChargesToAddedValue(Float value) { + this.financialChargesToAddedValue = value; + } + + /** + * Gets the value of the netProfitToAddedValue property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getNetProfitToAddedValue() { + return netProfitToAddedValue; + } + + /** + * Sets the value of the netProfitToAddedValue property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setNetProfitToAddedValue(Float value) { + this.netProfitToAddedValue = value; + } + + /** + * Gets the value of the addedValueToOperatingIncome property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAddedValueToOperatingIncome() { + return addedValueToOperatingIncome; + } + + /** + * Sets the value of the addedValueToOperatingIncome property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAddedValueToOperatingIncome(Float value) { + this.addedValueToOperatingIncome = value; + } + + /** + * Gets the value of the investmentRatio property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getInvestmentRatio() { + return investmentRatio; + } + + /** + * Sets the value of the investmentRatio property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setInvestmentRatio(Float value) { + this.investmentRatio = value; + } + + /** + * Gets the value of the addedValuePerEmployee property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAddedValuePerEmployee() { + return addedValuePerEmployee; + } + + /** + * Sets the value of the addedValuePerEmployee property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAddedValuePerEmployee(Float value) { + this.addedValuePerEmployee = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRevisor.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRevisor.java new file mode 100644 index 0000000..4e83d03 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRevisor.java @@ -0,0 +1,254 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessRevisor complex type. + * + *

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

+ * <complexType name="BelgianBusinessRevisor">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="profession" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}BelgianBusinessInternationalAddress" minOccurs="0"/>
+ *         <element name="mandate" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItem" minOccurs="0"/>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessRevisor", propOrder = { + +}) +public class BelgianBusinessRevisor { + + @XmlElement(required = true) + protected String type; + @XmlElement(name = "company_name", required = true) + protected String companyName; + protected String id; + protected String profession; + protected BelgianBusinessInternationalAddress address; + protected BelgianBusinessDatedItem mandate; + @XmlElement(name = "first_name", required = true) + protected String firstName; + @XmlElement(name = "last_name", required = true) + protected String lastName; + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the companyName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyName() { + return companyName; + } + + /** + * Sets the value of the companyName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyName(String value) { + this.companyName = value; + } + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the profession property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProfession() { + return profession; + } + + /** + * Sets the value of the profession property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProfession(String value) { + this.profession = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link BelgianBusinessInternationalAddress } + * + */ + public BelgianBusinessInternationalAddress getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link BelgianBusinessInternationalAddress } + * + */ + public void setAddress(BelgianBusinessInternationalAddress value) { + this.address = value; + } + + /** + * Gets the value of the mandate property. + * + * @return + * possible object is + * {@link BelgianBusinessDatedItem } + * + */ + public BelgianBusinessDatedItem getMandate() { + return mandate; + } + + /** + * Sets the value of the mandate property. + * + * @param value + * allowed object is + * {@link BelgianBusinessDatedItem } + * + */ + public void setMandate(BelgianBusinessDatedItem value) { + this.mandate = value; + } + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRevisorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRevisorArray.java new file mode 100644 index 0000000..4ac10cb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRevisorArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessRevisorArray complex type. + * + *

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

+ * <complexType name="BelgianBusinessRevisorArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessRevisor" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessRevisorArray", propOrder = { + "item" +}) +public class BelgianBusinessRevisorArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BelgianBusinessRevisor } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessSocialBalance.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessSocialBalance.java new file mode 100644 index 0000000..9afb29a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessSocialBalance.java @@ -0,0 +1,744 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessSocialBalance complex type. + * + *

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

+ * <complexType name="BelgianBusinessSocialBalance">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="employees_worked_hours" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="advantages_addition_wages" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="professional_training_hours" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="professional_training_net_costs" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="average_number_of_employees_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_end_of_year_management_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_end_of_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_end_of_year_workers_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_end_of_year_others_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_new_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_end_of_year_men_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_end_of_year_women_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_end_of_year_university_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_end_of_year_non_university_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_end_of_year_secondary_education_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_end_of_year_primary_education_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_contract_indefinite_period_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_contract_definite_period_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_contract_termination_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_contract_termination_retirement_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_contract_termination_early_retirement_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_contract_termination_dismissal" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="employees_contract_termination_other_reason" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="hired_temporary_staff_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="hired_temporary_staff_worked_hours" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="hired_temporary_staff_costs" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessSocialBalance", propOrder = { + +}) +public class BelgianBusinessSocialBalance { + + @XmlElement(name = "employees_worked_hours") + protected Integer employeesWorkedHours; + @XmlElement(name = "advantages_addition_wages") + protected Float advantagesAdditionWages; + @XmlElement(name = "professional_training_hours") + protected Float professionalTrainingHours; + @XmlElement(name = "professional_training_net_costs") + protected Float professionalTrainingNetCosts; + @XmlElement(name = "average_number_of_employees_fte") + protected Float averageNumberOfEmployeesFte; + @XmlElement(name = "employees_end_of_year_management_fte") + protected Float employeesEndOfYearManagementFte; + @XmlElement(name = "employees_end_of_year") + protected Float employeesEndOfYear; + @XmlElement(name = "employees_end_of_year_workers_fte") + protected Float employeesEndOfYearWorkersFte; + @XmlElement(name = "employees_end_of_year_others_fte") + protected Float employeesEndOfYearOthersFte; + @XmlElement(name = "employees_new_fte") + protected Float employeesNewFte; + @XmlElement(name = "employees_end_of_year_men_fte") + protected Float employeesEndOfYearMenFte; + @XmlElement(name = "employees_end_of_year_women_fte") + protected Float employeesEndOfYearWomenFte; + @XmlElement(name = "employees_end_of_year_university_fte") + protected Float employeesEndOfYearUniversityFte; + @XmlElement(name = "employees_end_of_year_non_university_fte") + protected Float employeesEndOfYearNonUniversityFte; + @XmlElement(name = "employees_end_of_year_secondary_education_fte") + protected Float employeesEndOfYearSecondaryEducationFte; + @XmlElement(name = "employees_end_of_year_primary_education_fte") + protected Float employeesEndOfYearPrimaryEducationFte; + @XmlElement(name = "employees_contract_indefinite_period_fte") + protected Float employeesContractIndefinitePeriodFte; + @XmlElement(name = "employees_contract_definite_period_fte") + protected Float employeesContractDefinitePeriodFte; + @XmlElement(name = "employees_contract_termination_fte") + protected Float employeesContractTerminationFte; + @XmlElement(name = "employees_contract_termination_retirement_fte") + protected Float employeesContractTerminationRetirementFte; + @XmlElement(name = "employees_contract_termination_early_retirement_fte") + protected Float employeesContractTerminationEarlyRetirementFte; + @XmlElement(name = "employees_contract_termination_dismissal") + protected Float employeesContractTerminationDismissal; + @XmlElement(name = "employees_contract_termination_other_reason") + protected Float employeesContractTerminationOtherReason; + @XmlElement(name = "hired_temporary_staff_fte") + protected Float hiredTemporaryStaffFte; + @XmlElement(name = "hired_temporary_staff_worked_hours") + protected Float hiredTemporaryStaffWorkedHours; + @XmlElement(name = "hired_temporary_staff_costs") + protected Float hiredTemporaryStaffCosts; + + /** + * Gets the value of the employeesWorkedHours property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getEmployeesWorkedHours() { + return employeesWorkedHours; + } + + /** + * Sets the value of the employeesWorkedHours property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setEmployeesWorkedHours(Integer value) { + this.employeesWorkedHours = value; + } + + /** + * Gets the value of the advantagesAdditionWages property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAdvantagesAdditionWages() { + return advantagesAdditionWages; + } + + /** + * Sets the value of the advantagesAdditionWages property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAdvantagesAdditionWages(Float value) { + this.advantagesAdditionWages = value; + } + + /** + * Gets the value of the professionalTrainingHours property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getProfessionalTrainingHours() { + return professionalTrainingHours; + } + + /** + * Sets the value of the professionalTrainingHours property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setProfessionalTrainingHours(Float value) { + this.professionalTrainingHours = value; + } + + /** + * Gets the value of the professionalTrainingNetCosts property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getProfessionalTrainingNetCosts() { + return professionalTrainingNetCosts; + } + + /** + * Sets the value of the professionalTrainingNetCosts property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setProfessionalTrainingNetCosts(Float value) { + this.professionalTrainingNetCosts = value; + } + + /** + * Gets the value of the averageNumberOfEmployeesFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getAverageNumberOfEmployeesFte() { + return averageNumberOfEmployeesFte; + } + + /** + * Sets the value of the averageNumberOfEmployeesFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setAverageNumberOfEmployeesFte(Float value) { + this.averageNumberOfEmployeesFte = value; + } + + /** + * Gets the value of the employeesEndOfYearManagementFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesEndOfYearManagementFte() { + return employeesEndOfYearManagementFte; + } + + /** + * Sets the value of the employeesEndOfYearManagementFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesEndOfYearManagementFte(Float value) { + this.employeesEndOfYearManagementFte = value; + } + + /** + * Gets the value of the employeesEndOfYear property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesEndOfYear() { + return employeesEndOfYear; + } + + /** + * Sets the value of the employeesEndOfYear property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesEndOfYear(Float value) { + this.employeesEndOfYear = value; + } + + /** + * Gets the value of the employeesEndOfYearWorkersFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesEndOfYearWorkersFte() { + return employeesEndOfYearWorkersFte; + } + + /** + * Sets the value of the employeesEndOfYearWorkersFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesEndOfYearWorkersFte(Float value) { + this.employeesEndOfYearWorkersFte = value; + } + + /** + * Gets the value of the employeesEndOfYearOthersFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesEndOfYearOthersFte() { + return employeesEndOfYearOthersFte; + } + + /** + * Sets the value of the employeesEndOfYearOthersFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesEndOfYearOthersFte(Float value) { + this.employeesEndOfYearOthersFte = value; + } + + /** + * Gets the value of the employeesNewFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesNewFte() { + return employeesNewFte; + } + + /** + * Sets the value of the employeesNewFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesNewFte(Float value) { + this.employeesNewFte = value; + } + + /** + * Gets the value of the employeesEndOfYearMenFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesEndOfYearMenFte() { + return employeesEndOfYearMenFte; + } + + /** + * Sets the value of the employeesEndOfYearMenFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesEndOfYearMenFte(Float value) { + this.employeesEndOfYearMenFte = value; + } + + /** + * Gets the value of the employeesEndOfYearWomenFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesEndOfYearWomenFte() { + return employeesEndOfYearWomenFte; + } + + /** + * Sets the value of the employeesEndOfYearWomenFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesEndOfYearWomenFte(Float value) { + this.employeesEndOfYearWomenFte = value; + } + + /** + * Gets the value of the employeesEndOfYearUniversityFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesEndOfYearUniversityFte() { + return employeesEndOfYearUniversityFte; + } + + /** + * Sets the value of the employeesEndOfYearUniversityFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesEndOfYearUniversityFte(Float value) { + this.employeesEndOfYearUniversityFte = value; + } + + /** + * Gets the value of the employeesEndOfYearNonUniversityFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesEndOfYearNonUniversityFte() { + return employeesEndOfYearNonUniversityFte; + } + + /** + * Sets the value of the employeesEndOfYearNonUniversityFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesEndOfYearNonUniversityFte(Float value) { + this.employeesEndOfYearNonUniversityFte = value; + } + + /** + * Gets the value of the employeesEndOfYearSecondaryEducationFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesEndOfYearSecondaryEducationFte() { + return employeesEndOfYearSecondaryEducationFte; + } + + /** + * Sets the value of the employeesEndOfYearSecondaryEducationFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesEndOfYearSecondaryEducationFte(Float value) { + this.employeesEndOfYearSecondaryEducationFte = value; + } + + /** + * Gets the value of the employeesEndOfYearPrimaryEducationFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesEndOfYearPrimaryEducationFte() { + return employeesEndOfYearPrimaryEducationFte; + } + + /** + * Sets the value of the employeesEndOfYearPrimaryEducationFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesEndOfYearPrimaryEducationFte(Float value) { + this.employeesEndOfYearPrimaryEducationFte = value; + } + + /** + * Gets the value of the employeesContractIndefinitePeriodFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesContractIndefinitePeriodFte() { + return employeesContractIndefinitePeriodFte; + } + + /** + * Sets the value of the employeesContractIndefinitePeriodFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesContractIndefinitePeriodFte(Float value) { + this.employeesContractIndefinitePeriodFte = value; + } + + /** + * Gets the value of the employeesContractDefinitePeriodFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesContractDefinitePeriodFte() { + return employeesContractDefinitePeriodFte; + } + + /** + * Sets the value of the employeesContractDefinitePeriodFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesContractDefinitePeriodFte(Float value) { + this.employeesContractDefinitePeriodFte = value; + } + + /** + * Gets the value of the employeesContractTerminationFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesContractTerminationFte() { + return employeesContractTerminationFte; + } + + /** + * Sets the value of the employeesContractTerminationFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesContractTerminationFte(Float value) { + this.employeesContractTerminationFte = value; + } + + /** + * Gets the value of the employeesContractTerminationRetirementFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesContractTerminationRetirementFte() { + return employeesContractTerminationRetirementFte; + } + + /** + * Sets the value of the employeesContractTerminationRetirementFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesContractTerminationRetirementFte(Float value) { + this.employeesContractTerminationRetirementFte = value; + } + + /** + * Gets the value of the employeesContractTerminationEarlyRetirementFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesContractTerminationEarlyRetirementFte() { + return employeesContractTerminationEarlyRetirementFte; + } + + /** + * Sets the value of the employeesContractTerminationEarlyRetirementFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesContractTerminationEarlyRetirementFte(Float value) { + this.employeesContractTerminationEarlyRetirementFte = value; + } + + /** + * Gets the value of the employeesContractTerminationDismissal property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesContractTerminationDismissal() { + return employeesContractTerminationDismissal; + } + + /** + * Sets the value of the employeesContractTerminationDismissal property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesContractTerminationDismissal(Float value) { + this.employeesContractTerminationDismissal = value; + } + + /** + * Gets the value of the employeesContractTerminationOtherReason property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEmployeesContractTerminationOtherReason() { + return employeesContractTerminationOtherReason; + } + + /** + * Sets the value of the employeesContractTerminationOtherReason property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEmployeesContractTerminationOtherReason(Float value) { + this.employeesContractTerminationOtherReason = value; + } + + /** + * Gets the value of the hiredTemporaryStaffFte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getHiredTemporaryStaffFte() { + return hiredTemporaryStaffFte; + } + + /** + * Sets the value of the hiredTemporaryStaffFte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setHiredTemporaryStaffFte(Float value) { + this.hiredTemporaryStaffFte = value; + } + + /** + * Gets the value of the hiredTemporaryStaffWorkedHours property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getHiredTemporaryStaffWorkedHours() { + return hiredTemporaryStaffWorkedHours; + } + + /** + * Sets the value of the hiredTemporaryStaffWorkedHours property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setHiredTemporaryStaffWorkedHours(Float value) { + this.hiredTemporaryStaffWorkedHours = value; + } + + /** + * Gets the value of the hiredTemporaryStaffCosts property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getHiredTemporaryStaffCosts() { + return hiredTemporaryStaffCosts; + } + + /** + * Sets the value of the hiredTemporaryStaffCosts property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setHiredTemporaryStaffCosts(Float value) { + this.hiredTemporaryStaffCosts = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessStakeHolder.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessStakeHolder.java new file mode 100644 index 0000000..03e0664 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessStakeHolder.java @@ -0,0 +1,281 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessStakeHolder complex type. + * + *

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

+ * <complexType name="BelgianBusinessStakeHolder">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="profession" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}BelgianBusinessInternationalAddress" minOccurs="0"/>
+ *         <element name="mandate" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItem" minOccurs="0"/>
+ *         <element name="source_date" type="{http://www.webservices.nl/soap/}BelgianBusinessDate" minOccurs="0"/>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessStakeHolder", propOrder = { + +}) +public class BelgianBusinessStakeHolder { + + @XmlElement(required = true) + protected String type; + @XmlElement(name = "company_name") + protected String companyName; + protected String id; + protected String profession; + protected BelgianBusinessInternationalAddress address; + protected BelgianBusinessDatedItem mandate; + @XmlElement(name = "source_date") + protected BelgianBusinessDate sourceDate; + @XmlElement(name = "first_name", required = true) + protected String firstName; + @XmlElement(name = "last_name", required = true) + protected String lastName; + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the companyName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyName() { + return companyName; + } + + /** + * Sets the value of the companyName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyName(String value) { + this.companyName = value; + } + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the profession property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProfession() { + return profession; + } + + /** + * Sets the value of the profession property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProfession(String value) { + this.profession = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link BelgianBusinessInternationalAddress } + * + */ + public BelgianBusinessInternationalAddress getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link BelgianBusinessInternationalAddress } + * + */ + public void setAddress(BelgianBusinessInternationalAddress value) { + this.address = value; + } + + /** + * Gets the value of the mandate property. + * + * @return + * possible object is + * {@link BelgianBusinessDatedItem } + * + */ + public BelgianBusinessDatedItem getMandate() { + return mandate; + } + + /** + * Sets the value of the mandate property. + * + * @param value + * allowed object is + * {@link BelgianBusinessDatedItem } + * + */ + public void setMandate(BelgianBusinessDatedItem value) { + this.mandate = value; + } + + /** + * Gets the value of the sourceDate property. + * + * @return + * possible object is + * {@link BelgianBusinessDate } + * + */ + public BelgianBusinessDate getSourceDate() { + return sourceDate; + } + + /** + * Sets the value of the sourceDate property. + * + * @param value + * allowed object is + * {@link BelgianBusinessDate } + * + */ + public void setSourceDate(BelgianBusinessDate value) { + this.sourceDate = value; + } + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessStakeHolderArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessStakeHolderArray.java new file mode 100644 index 0000000..ea6e763 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessStakeHolderArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BelgianBusinessStakeHolderArray complex type. + * + *

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

+ * <complexType name="BelgianBusinessStakeHolderArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessStakeHolder" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BelgianBusinessStakeHolderArray", propOrder = { + "item" +}) +public class BelgianBusinessStakeHolderArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BelgianBusinessStakeHolder } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObject.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObject.java new file mode 100644 index 0000000..2d938a3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObject.java @@ -0,0 +1,231 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for BerichtObject complex type. + * + *

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

+ * <complexType name="BerichtObject">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="datum_bijgewerkt" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="onroerende_zaak" type="{http://www.webservices.nl/soap/}OnroerendeZaak"/>
+ *         <element name="rechten_lijst" type="{http://www.webservices.nl/soap/}RechtenLijst"/>
+ *         <element name="personen" type="{http://www.webservices.nl/soap/}PersoonArray"/>
+ *         <element name="stukken" type="{http://www.webservices.nl/soap/}StukArray"/>
+ *         <element name="gemeentestukken" type="{http://www.webservices.nl/soap/}GemeenteStukArray" minOccurs="0"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BerichtObject", propOrder = { + +}) +public class BerichtObject { + + @XmlElement(name = "datum_bijgewerkt") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar datumBijgewerkt; + @XmlElement(name = "onroerende_zaak", required = true) + protected OnroerendeZaak onroerendeZaak; + @XmlElement(name = "rechten_lijst", required = true) + protected RechtenLijst rechtenLijst; + @XmlElement(required = true) + protected PersoonArray personen; + @XmlElement(required = true) + protected StukArray stukken; + protected GemeenteStukArray gemeentestukken; + @XmlElement(required = true) + protected byte[] document; + + /** + * Gets the value of the datumBijgewerkt property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDatumBijgewerkt() { + return datumBijgewerkt; + } + + /** + * Sets the value of the datumBijgewerkt property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDatumBijgewerkt(XMLGregorianCalendar value) { + this.datumBijgewerkt = value; + } + + /** + * Gets the value of the onroerendeZaak property. + * + * @return + * possible object is + * {@link OnroerendeZaak } + * + */ + public OnroerendeZaak getOnroerendeZaak() { + return onroerendeZaak; + } + + /** + * Sets the value of the onroerendeZaak property. + * + * @param value + * allowed object is + * {@link OnroerendeZaak } + * + */ + public void setOnroerendeZaak(OnroerendeZaak value) { + this.onroerendeZaak = value; + } + + /** + * Gets the value of the rechtenLijst property. + * + * @return + * possible object is + * {@link RechtenLijst } + * + */ + public RechtenLijst getRechtenLijst() { + return rechtenLijst; + } + + /** + * Sets the value of the rechtenLijst property. + * + * @param value + * allowed object is + * {@link RechtenLijst } + * + */ + public void setRechtenLijst(RechtenLijst value) { + this.rechtenLijst = value; + } + + /** + * Gets the value of the personen property. + * + * @return + * possible object is + * {@link PersoonArray } + * + */ + public PersoonArray getPersonen() { + return personen; + } + + /** + * Sets the value of the personen property. + * + * @param value + * allowed object is + * {@link PersoonArray } + * + */ + public void setPersonen(PersoonArray value) { + this.personen = value; + } + + /** + * Gets the value of the stukken property. + * + * @return + * possible object is + * {@link StukArray } + * + */ + public StukArray getStukken() { + return stukken; + } + + /** + * Sets the value of the stukken property. + * + * @param value + * allowed object is + * {@link StukArray } + * + */ + public void setStukken(StukArray value) { + this.stukken = value; + } + + /** + * Gets the value of the gemeentestukken property. + * + * @return + * possible object is + * {@link GemeenteStukArray } + * + */ + public GemeenteStukArray getGemeentestukken() { + return gemeentestukken; + } + + /** + * Sets the value of the gemeentestukken property. + * + * @param value + * allowed object is + * {@link GemeenteStukArray } + * + */ + public void setGemeentestukken(GemeenteStukArray value) { + this.gemeentestukken = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectDocument.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectDocument.java new file mode 100644 index 0000000..3460f5f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectDocument.java @@ -0,0 +1,229 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for BerichtObjectDocument complex type. + * + *

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

+ * <complexType name="BerichtObjectDocument">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="datum_bijgewerkt" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="kadastrale_aanduiding" type="{http://www.webservices.nl/soap/}KadastraleAanduiding"/>
+ *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="locaties" type="{http://www.webservices.nl/soap/}LocatieBinnenlandLijst" minOccurs="0"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *         <element name="afbeeldingen" type="{http://www.webservices.nl/soap/}base64BinaryArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BerichtObjectDocument", propOrder = { + +}) +public class BerichtObjectDocument { + + @XmlElement(name = "datum_bijgewerkt") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar datumBijgewerkt; + @XmlElement(name = "object_id") + protected String objectId; + @XmlElement(name = "kadastrale_aanduiding", required = true) + protected KadastraleAanduiding kadastraleAanduiding; + protected String omschrijving; + protected LocatieBinnenlandLijst locaties; + @XmlElement(required = true) + protected byte[] document; + protected Base64BinaryArray afbeeldingen; + + /** + * Gets the value of the datumBijgewerkt property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDatumBijgewerkt() { + return datumBijgewerkt; + } + + /** + * Sets the value of the datumBijgewerkt property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDatumBijgewerkt(XMLGregorianCalendar value) { + this.datumBijgewerkt = value; + } + + /** + * Gets the value of the objectId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjectId() { + return objectId; + } + + /** + * Sets the value of the objectId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjectId(String value) { + this.objectId = value; + } + + /** + * Gets the value of the kadastraleAanduiding property. + * + * @return + * possible object is + * {@link KadastraleAanduiding } + * + */ + public KadastraleAanduiding getKadastraleAanduiding() { + return kadastraleAanduiding; + } + + /** + * Sets the value of the kadastraleAanduiding property. + * + * @param value + * allowed object is + * {@link KadastraleAanduiding } + * + */ + public void setKadastraleAanduiding(KadastraleAanduiding value) { + this.kadastraleAanduiding = value; + } + + /** + * Gets the value of the omschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijving() { + return omschrijving; + } + + /** + * Sets the value of the omschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijving(String value) { + this.omschrijving = value; + } + + /** + * Gets the value of the locaties property. + * + * @return + * possible object is + * {@link LocatieBinnenlandLijst } + * + */ + public LocatieBinnenlandLijst getLocaties() { + return locaties; + } + + /** + * Sets the value of the locaties property. + * + * @param value + * allowed object is + * {@link LocatieBinnenlandLijst } + * + */ + public void setLocaties(LocatieBinnenlandLijst value) { + this.locaties = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + + /** + * Gets the value of the afbeeldingen property. + * + * @return + * possible object is + * {@link Base64BinaryArray } + * + */ + public Base64BinaryArray getAfbeeldingen() { + return afbeeldingen; + } + + /** + * Sets the value of the afbeeldingen property. + * + * @param value + * allowed object is + * {@link Base64BinaryArray } + * + */ + public void setAfbeeldingen(Base64BinaryArray value) { + this.afbeeldingen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectDocumentResultaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectDocumentResultaat.java new file mode 100644 index 0000000..feea30c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectDocumentResultaat.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BerichtObjectDocumentResultaat complex type. + * + *

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

+ * <complexType name="BerichtObjectDocumentResultaat">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="overzicht" type="{http://www.webservices.nl/soap/}DocumentOverzicht" minOccurs="0"/>
+ *         <element name="eigendomsbericht" type="{http://www.webservices.nl/soap/}BerichtObjectDocument" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BerichtObjectDocumentResultaat", propOrder = { + +}) +public class BerichtObjectDocumentResultaat { + + protected DocumentOverzicht overzicht; + protected BerichtObjectDocument eigendomsbericht; + + /** + * Gets the value of the overzicht property. + * + * @return + * possible object is + * {@link DocumentOverzicht } + * + */ + public DocumentOverzicht getOverzicht() { + return overzicht; + } + + /** + * Sets the value of the overzicht property. + * + * @param value + * allowed object is + * {@link DocumentOverzicht } + * + */ + public void setOverzicht(DocumentOverzicht value) { + this.overzicht = value; + } + + /** + * Gets the value of the eigendomsbericht property. + * + * @return + * possible object is + * {@link BerichtObjectDocument } + * + */ + public BerichtObjectDocument getEigendomsbericht() { + return eigendomsbericht; + } + + /** + * Sets the value of the eigendomsbericht property. + * + * @param value + * allowed object is + * {@link BerichtObjectDocument } + * + */ + public void setEigendomsbericht(BerichtObjectDocument value) { + this.eigendomsbericht = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectResultaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectResultaat.java new file mode 100644 index 0000000..c11a2e9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectResultaat.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BerichtObjectResultaat complex type. + * + *

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

+ * <complexType name="BerichtObjectResultaat">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="overzicht" type="{http://www.webservices.nl/soap/}Overzicht" minOccurs="0"/>
+ *         <element name="eigendomsbericht" type="{http://www.webservices.nl/soap/}BerichtObject" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BerichtObjectResultaat", propOrder = { + +}) +public class BerichtObjectResultaat { + + protected Overzicht overzicht; + protected BerichtObject eigendomsbericht; + + /** + * Gets the value of the overzicht property. + * + * @return + * possible object is + * {@link Overzicht } + * + */ + public Overzicht getOverzicht() { + return overzicht; + } + + /** + * Sets the value of the overzicht property. + * + * @param value + * allowed object is + * {@link Overzicht } + * + */ + public void setOverzicht(Overzicht value) { + this.overzicht = value; + } + + /** + * Gets the value of the eigendomsbericht property. + * + * @return + * possible object is + * {@link BerichtObject } + * + */ + public BerichtObject getEigendomsbericht() { + return eigendomsbericht; + } + + /** + * Sets the value of the eigendomsbericht property. + * + * @param value + * allowed object is + * {@link BerichtObject } + * + */ + public void setEigendomsbericht(BerichtObject value) { + this.eigendomsbericht = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectResultaatV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectResultaatV2.java new file mode 100644 index 0000000..f97bf37 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectResultaatV2.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BerichtObjectResultaatV2 complex type. + * + *

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

+ * <complexType name="BerichtObjectResultaatV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="overzicht" type="{http://www.webservices.nl/soap/}OverzichtV2" minOccurs="0"/>
+ *         <element name="eigendomsbericht" type="{http://www.webservices.nl/soap/}BerichtObjectV2" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BerichtObjectResultaatV2", propOrder = { + +}) +public class BerichtObjectResultaatV2 { + + protected OverzichtV2 overzicht; + protected BerichtObjectV2 eigendomsbericht; + + /** + * Gets the value of the overzicht property. + * + * @return + * possible object is + * {@link OverzichtV2 } + * + */ + public OverzichtV2 getOverzicht() { + return overzicht; + } + + /** + * Sets the value of the overzicht property. + * + * @param value + * allowed object is + * {@link OverzichtV2 } + * + */ + public void setOverzicht(OverzichtV2 value) { + this.overzicht = value; + } + + /** + * Gets the value of the eigendomsbericht property. + * + * @return + * possible object is + * {@link BerichtObjectV2 } + * + */ + public BerichtObjectV2 getEigendomsbericht() { + return eigendomsbericht; + } + + /** + * Sets the value of the eigendomsbericht property. + * + * @param value + * allowed object is + * {@link BerichtObjectV2 } + * + */ + public void setEigendomsbericht(BerichtObjectV2 value) { + this.eigendomsbericht = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectV2.java new file mode 100644 index 0000000..8e9d5b9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectV2.java @@ -0,0 +1,231 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for BerichtObjectV2 complex type. + * + *

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

+ * <complexType name="BerichtObjectV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="datum_bijgewerkt" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="onroerende_zaak" type="{http://www.webservices.nl/soap/}OnroerendeZaak"/>
+ *         <element name="rechten_lijst" type="{http://www.webservices.nl/soap/}RechtenLijst"/>
+ *         <element name="personen" type="{http://www.webservices.nl/soap/}PersoonV2Array"/>
+ *         <element name="stukken" type="{http://www.webservices.nl/soap/}StukArray"/>
+ *         <element name="gemeentestukken" type="{http://www.webservices.nl/soap/}GemeenteStukArray" minOccurs="0"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BerichtObjectV2", propOrder = { + +}) +public class BerichtObjectV2 { + + @XmlElement(name = "datum_bijgewerkt") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar datumBijgewerkt; + @XmlElement(name = "onroerende_zaak", required = true) + protected OnroerendeZaak onroerendeZaak; + @XmlElement(name = "rechten_lijst", required = true) + protected RechtenLijst rechtenLijst; + @XmlElement(required = true) + protected PersoonV2Array personen; + @XmlElement(required = true) + protected StukArray stukken; + protected GemeenteStukArray gemeentestukken; + @XmlElement(required = true) + protected byte[] document; + + /** + * Gets the value of the datumBijgewerkt property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDatumBijgewerkt() { + return datumBijgewerkt; + } + + /** + * Sets the value of the datumBijgewerkt property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDatumBijgewerkt(XMLGregorianCalendar value) { + this.datumBijgewerkt = value; + } + + /** + * Gets the value of the onroerendeZaak property. + * + * @return + * possible object is + * {@link OnroerendeZaak } + * + */ + public OnroerendeZaak getOnroerendeZaak() { + return onroerendeZaak; + } + + /** + * Sets the value of the onroerendeZaak property. + * + * @param value + * allowed object is + * {@link OnroerendeZaak } + * + */ + public void setOnroerendeZaak(OnroerendeZaak value) { + this.onroerendeZaak = value; + } + + /** + * Gets the value of the rechtenLijst property. + * + * @return + * possible object is + * {@link RechtenLijst } + * + */ + public RechtenLijst getRechtenLijst() { + return rechtenLijst; + } + + /** + * Sets the value of the rechtenLijst property. + * + * @param value + * allowed object is + * {@link RechtenLijst } + * + */ + public void setRechtenLijst(RechtenLijst value) { + this.rechtenLijst = value; + } + + /** + * Gets the value of the personen property. + * + * @return + * possible object is + * {@link PersoonV2Array } + * + */ + public PersoonV2Array getPersonen() { + return personen; + } + + /** + * Sets the value of the personen property. + * + * @param value + * allowed object is + * {@link PersoonV2Array } + * + */ + public void setPersonen(PersoonV2Array value) { + this.personen = value; + } + + /** + * Gets the value of the stukken property. + * + * @return + * possible object is + * {@link StukArray } + * + */ + public StukArray getStukken() { + return stukken; + } + + /** + * Sets the value of the stukken property. + * + * @param value + * allowed object is + * {@link StukArray } + * + */ + public void setStukken(StukArray value) { + this.stukken = value; + } + + /** + * Gets the value of the gemeentestukken property. + * + * @return + * possible object is + * {@link GemeenteStukArray } + * + */ + public GemeenteStukArray getGemeentestukken() { + return gemeentestukken; + } + + /** + * Sets the value of the gemeentestukken property. + * + * @param value + * allowed object is + * {@link GemeenteStukArray } + * + */ + public void setGemeentestukken(GemeenteStukArray value) { + this.gemeentestukken = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagDepartment.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagDepartment.java new file mode 100644 index 0000000..7e0d6db --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagDepartment.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BovagDepartment complex type. + * + *

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

+ * <complexType name="BovagDepartment">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BovagDepartment", propOrder = { + +}) +public class BovagDepartment { + + @XmlElement(required = true) + protected String code; + protected String description; + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCode(String value) { + this.code = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagDepartmentArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagDepartmentArray.java new file mode 100644 index 0000000..c6d33b6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagDepartmentArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BovagDepartmentArray complex type. + * + *

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

+ * <complexType name="BovagDepartmentArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BovagDepartment" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BovagDepartmentArray", propOrder = { + "item" +}) +public class BovagDepartmentArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BovagDepartment } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByBovagIdRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByBovagIdRequestType.java new file mode 100644 index 0000000..dfd42d1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByBovagIdRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for bovagGetMemberByBovagIdRequestType complex type. + * + *

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

+ * <complexType name="bovagGetMemberByBovagIdRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bovag_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "bovagGetMemberByBovagIdRequestType", propOrder = { + +}) +public class BovagGetMemberByBovagIdRequestType { + + @XmlElement(name = "bovag_id", required = true) + protected String bovagId; + + /** + * Gets the value of the bovagId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBovagId() { + return bovagId; + } + + /** + * Sets the value of the bovagId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBovagId(String value) { + this.bovagId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByBovagIdResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByBovagIdResponseType.java new file mode 100644 index 0000000..05e5880 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByBovagIdResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for bovagGetMemberByBovagIdResponseType complex type. + * + *

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

+ * <complexType name="bovagGetMemberByBovagIdResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="member" type="{http://www.webservices.nl/soap/}BovagMember"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "bovagGetMemberByBovagIdResponseType", propOrder = { + +}) +public class BovagGetMemberByBovagIdResponseType { + + @XmlElement(required = true) + protected BovagMember member; + + /** + * Gets the value of the member property. + * + * @return + * possible object is + * {@link BovagMember } + * + */ + public BovagMember getMember() { + return member; + } + + /** + * Sets the value of the member property. + * + * @param value + * allowed object is + * {@link BovagMember } + * + */ + public void setMember(BovagMember value) { + this.member = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByDutchBusinessRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByDutchBusinessRequestType.java new file mode 100644 index 0000000..9d96690 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByDutchBusinessRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for bovagGetMemberByDutchBusinessRequestType complex type. + * + *

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

+ * <complexType name="bovagGetMemberByDutchBusinessRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "bovagGetMemberByDutchBusinessRequestType", propOrder = { + +}) +public class BovagGetMemberByDutchBusinessRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number", required = true) + protected String establishmentNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByDutchBusinessResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByDutchBusinessResponseType.java new file mode 100644 index 0000000..60d91f7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByDutchBusinessResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for bovagGetMemberByDutchBusinessResponseType complex type. + * + *

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

+ * <complexType name="bovagGetMemberByDutchBusinessResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="member" type="{http://www.webservices.nl/soap/}BovagMember"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "bovagGetMemberByDutchBusinessResponseType", propOrder = { + +}) +public class BovagGetMemberByDutchBusinessResponseType { + + @XmlElement(required = true) + protected BovagMember member; + + /** + * Gets the value of the member property. + * + * @return + * possible object is + * {@link BovagMember } + * + */ + public BovagMember getMember() { + return member; + } + + /** + * Sets the value of the member property. + * + * @param value + * allowed object is + * {@link BovagMember } + * + */ + public void setMember(BovagMember value) { + this.member = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagMember.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagMember.java new file mode 100644 index 0000000..3d5ff67 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagMember.java @@ -0,0 +1,177 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BovagMember complex type. + * + *

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

+ * <complexType name="BovagMember">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bovag_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="certificate_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="departments" type="{http://www.webservices.nl/soap/}BovagDepartmentArray"/>
+ *         <element name="dutch_business_identifiers" type="{http://www.webservices.nl/soap/}DutchBusinessIdentifiers"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BovagMember", propOrder = { + +}) +public class BovagMember { + + @XmlElement(name = "bovag_id", required = true) + protected String bovagId; + @XmlElement(required = true) + protected String name; + @XmlElement(name = "certificate_url", required = true) + protected String certificateUrl; + @XmlElement(required = true) + protected BovagDepartmentArray departments; + @XmlElement(name = "dutch_business_identifiers", required = true) + protected DutchBusinessIdentifiers dutchBusinessIdentifiers; + + /** + * Gets the value of the bovagId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBovagId() { + return bovagId; + } + + /** + * Sets the value of the bovagId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBovagId(String value) { + this.bovagId = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the certificateUrl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCertificateUrl() { + return certificateUrl; + } + + /** + * Sets the value of the certificateUrl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCertificateUrl(String value) { + this.certificateUrl = value; + } + + /** + * Gets the value of the departments property. + * + * @return + * possible object is + * {@link BovagDepartmentArray } + * + */ + public BovagDepartmentArray getDepartments() { + return departments; + } + + /** + * Sets the value of the departments property. + * + * @param value + * allowed object is + * {@link BovagDepartmentArray } + * + */ + public void setDepartments(BovagDepartmentArray value) { + this.departments = value; + } + + /** + * Gets the value of the dutchBusinessIdentifiers property. + * + * @return + * possible object is + * {@link DutchBusinessIdentifiers } + * + */ + public DutchBusinessIdentifiers getDutchBusinessIdentifiers() { + return dutchBusinessIdentifiers; + } + + /** + * Sets the value of the dutchBusinessIdentifiers property. + * + * @param value + * allowed object is + * {@link DutchBusinessIdentifiers } + * + */ + public void setDutchBusinessIdentifiers(DutchBusinessIdentifiers value) { + this.dutchBusinessIdentifiers = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCode.java new file mode 100644 index 0000000..a3c4ad5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCode.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessBIKCode complex type. + * + *

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

+ * <complexType name="BusinessBIKCode">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bikcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessBIKCode", propOrder = { + +}) +public class BusinessBIKCode { + + @XmlElement(required = true) + protected String bikcode; + @XmlElement(required = true) + protected String description; + + /** + * Gets the value of the bikcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBikcode() { + return bikcode; + } + + /** + * Sets the value of the bikcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBikcode(String value) { + this.bikcode = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCodeArray.java new file mode 100644 index 0000000..6c4839d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCodeArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessBIKCodeArray complex type. + * + *

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

+ * <complexType name="BusinessBIKCodeArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessBIKCode" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessBIKCodeArray", propOrder = { + "item" +}) +public class BusinessBIKCodeArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BusinessBIKCode } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCodeInfo.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCodeInfo.java new file mode 100644 index 0000000..5aaaf10 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCodeInfo.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessBIKCodeInfo complex type. + * + *

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

+ * <complexType name="BusinessBIKCodeInfo">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="sections" type="{http://www.webservices.nl/soap/}BusinessBIKSectionArray"/>
+ *         <element name="bikcodes" type="{http://www.webservices.nl/soap/}BusinessBIKCodeArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessBIKCodeInfo", propOrder = { + +}) +public class BusinessBIKCodeInfo { + + @XmlElement(required = true) + protected BusinessBIKSectionArray sections; + @XmlElement(required = true) + protected BusinessBIKCodeArray bikcodes; + + /** + * Gets the value of the sections property. + * + * @return + * possible object is + * {@link BusinessBIKSectionArray } + * + */ + public BusinessBIKSectionArray getSections() { + return sections; + } + + /** + * Sets the value of the sections property. + * + * @param value + * allowed object is + * {@link BusinessBIKSectionArray } + * + */ + public void setSections(BusinessBIKSectionArray value) { + this.sections = value; + } + + /** + * Gets the value of the bikcodes property. + * + * @return + * possible object is + * {@link BusinessBIKCodeArray } + * + */ + public BusinessBIKCodeArray getBikcodes() { + return bikcodes; + } + + /** + * Sets the value of the bikcodes property. + * + * @param value + * allowed object is + * {@link BusinessBIKCodeArray } + * + */ + public void setBikcodes(BusinessBIKCodeArray value) { + this.bikcodes = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKSection.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKSection.java new file mode 100644 index 0000000..c8b16c5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKSection.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessBIKSection complex type. + * + *

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

+ * <complexType name="BusinessBIKSection">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="sectioncode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessBIKSection", propOrder = { + +}) +public class BusinessBIKSection { + + @XmlElement(required = true) + protected String sectioncode; + @XmlElement(required = true) + protected String description; + + /** + * Gets the value of the sectioncode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectioncode() { + return sectioncode; + } + + /** + * Sets the value of the sectioncode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectioncode(String value) { + this.sectioncode = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKSectionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKSectionArray.java new file mode 100644 index 0000000..5864606 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKSectionArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessBIKSectionArray complex type. + * + *

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

+ * <complexType name="BusinessBIKSectionArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessBIKSection" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessBIKSectionArray", propOrder = { + "item" +}) +public class BusinessBIKSectionArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BusinessBIKSection } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKToSBIRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKToSBIRequestType.java new file mode 100644 index 0000000..980641e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKToSBIRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessBIKToSBIRequestType complex type. + * + *

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

+ * <complexType name="businessBIKToSBIRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bikcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessBIKToSBIRequestType", propOrder = { + +}) +public class BusinessBIKToSBIRequestType { + + @XmlElement(required = true) + protected String bikcode; + + /** + * Gets the value of the bikcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBikcode() { + return bikcode; + } + + /** + * Sets the value of the bikcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBikcode(String value) { + this.bikcode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKToSBIResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKToSBIResponseType.java new file mode 100644 index 0000000..0ebfb38 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKToSBIResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessBIKToSBIResponseType complex type. + * + *

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

+ * <complexType name="businessBIKToSBIResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessSBICodeArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessBIKToSBIResponseType", propOrder = { + +}) +public class BusinessBIKToSBIResponseType { + + @XmlElement(required = true) + protected BusinessSBICodeArray out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessSBICodeArray } + * + */ + public BusinessSBICodeArray getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessSBICodeArray } + * + */ + public void setOut(BusinessSBICodeArray value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDate.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDate.java new file mode 100644 index 0000000..e0483e3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDate.java @@ -0,0 +1,126 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for BusinessDate complex type. + * + *

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

+ * <complexType name="BusinessDate">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="Year" type="{http://www.w3.org/2001/XMLSchema}gYear"/>
+ *         <element name="Month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="Day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessDate", propOrder = { + +}) +public class BusinessDate { + + @XmlElement(name = "Year", required = true) + @XmlSchemaType(name = "gYear") + protected XMLGregorianCalendar year; + @XmlElement(name = "Month") + protected Integer month; + @XmlElement(name = "Day") + protected Integer day; + + /** + * Gets the value of the year property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getYear() { + return year; + } + + /** + * Sets the value of the year property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setYear(XMLGregorianCalendar value) { + this.year = value; + } + + /** + * Gets the value of the month property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMonth() { + return month; + } + + /** + * Sets the value of the month property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMonth(Integer value) { + this.month = value; + } + + /** + * Gets the value of the day property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDay() { + return day; + } + + /** + * Sets the value of the day property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDay(Integer value) { + this.day = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossier.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossier.java new file mode 100644 index 0000000..bfa0c79 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossier.java @@ -0,0 +1,1106 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessDossier complex type. + * + *

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

+ * <complexType name="BusinessDossier">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="RegisterLetter" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="DossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ChamberNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Legalformcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="LegalformcodeText" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PreviousDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PreviousSubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Tradename30" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Tradename1x30" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Tradename2x30" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Tradename45" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="TradenameFull" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentAddress" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentPostcodeCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentHouseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="EstablishmentHouseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentPostcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondenceAddress" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondencePostcodeCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondenceStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondenceHouseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="CorrespondenceHouseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondencePostcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="TelephoneNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Domainname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PrimaryActivitycode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SecondaryActivitycode1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SecondaryActivitycode2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PrimaryActivitycodeText" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SecondaryActivitycode1Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SecondaryActivitycode2Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PersonnelFulltime" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ClassPersonnelFulltime" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="IndicationOrganisationcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="IndicationEconomicallyActive" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="IndicationNonMailing" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="IndicationBankruptcy" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="IndicationDIP" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessDossier", propOrder = { + +}) +public class BusinessDossier { + + @XmlElement(name = "RegisterLetter", required = true) + protected String registerLetter; + @XmlElement(name = "DossierNo", required = true) + protected String dossierNo; + @XmlElement(name = "SubDossierNo", required = true) + protected String subDossierNo; + @XmlElement(name = "ChamberNo", required = true) + protected String chamberNo; + @XmlElement(name = "Legalformcode", required = true) + protected String legalformcode; + @XmlElement(name = "LegalformcodeText", required = true) + protected String legalformcodeText; + @XmlElement(name = "PreviousDossierNo", required = true) + protected String previousDossierNo; + @XmlElement(name = "PreviousSubDossierNo", required = true) + protected String previousSubDossierNo; + @XmlElement(name = "Tradename30", required = true) + protected String tradename30; + @XmlElement(name = "Tradename1x30", required = true) + protected String tradename1X30; + @XmlElement(name = "Tradename2x30", required = true) + protected String tradename2X30; + @XmlElement(name = "Tradename45", required = true) + protected String tradename45; + @XmlElement(name = "TradenameFull", required = true) + protected String tradenameFull; + @XmlElement(name = "EstablishmentAddress", required = true) + protected String establishmentAddress; + @XmlElement(name = "EstablishmentPostcodeCity", required = true) + protected String establishmentPostcodeCity; + @XmlElement(name = "EstablishmentStreetname", required = true) + protected String establishmentStreetname; + @XmlElement(name = "EstablishmentHouseNo") + protected int establishmentHouseNo; + @XmlElement(name = "EstablishmentHouseNoAddition", required = true) + protected String establishmentHouseNoAddition; + @XmlElement(name = "EstablishmentPostcode", required = true) + protected String establishmentPostcode; + @XmlElement(name = "CorrespondenceAddress", required = true) + protected String correspondenceAddress; + @XmlElement(name = "CorrespondencePostcodeCity", required = true) + protected String correspondencePostcodeCity; + @XmlElement(name = "CorrespondenceStreetname", required = true) + protected String correspondenceStreetname; + @XmlElement(name = "CorrespondenceHouseNo") + protected int correspondenceHouseNo; + @XmlElement(name = "CorrespondenceHouseNoAddition", required = true) + protected String correspondenceHouseNoAddition; + @XmlElement(name = "CorrespondencePostcode", required = true) + protected String correspondencePostcode; + @XmlElement(name = "TelephoneNo", required = true) + protected String telephoneNo; + @XmlElement(name = "Domainname", required = true) + protected String domainname; + @XmlElement(name = "PrimaryActivitycode", required = true) + protected String primaryActivitycode; + @XmlElement(name = "SecondaryActivitycode1", required = true) + protected String secondaryActivitycode1; + @XmlElement(name = "SecondaryActivitycode2", required = true) + protected String secondaryActivitycode2; + @XmlElement(name = "PrimaryActivitycodeText", required = true) + protected String primaryActivitycodeText; + @XmlElement(name = "SecondaryActivitycode1Text", required = true) + protected String secondaryActivitycode1Text; + @XmlElement(name = "SecondaryActivitycode2Text", required = true) + protected String secondaryActivitycode2Text; + @XmlElement(name = "PersonnelFulltime", required = true) + protected String personnelFulltime; + @XmlElement(name = "ClassPersonnelFulltime", required = true) + protected String classPersonnelFulltime; + @XmlElement(name = "IndicationOrganisationcode", required = true) + protected String indicationOrganisationcode; + @XmlElement(name = "IndicationEconomicallyActive", required = true) + protected String indicationEconomicallyActive; + @XmlElement(name = "IndicationNonMailing", required = true) + protected String indicationNonMailing; + @XmlElement(name = "IndicationBankruptcy", required = true) + protected String indicationBankruptcy; + @XmlElement(name = "IndicationDIP", required = true) + protected String indicationDIP; + + /** + * Gets the value of the registerLetter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegisterLetter() { + return registerLetter; + } + + /** + * Sets the value of the registerLetter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegisterLetter(String value) { + this.registerLetter = value; + } + + /** + * Gets the value of the dossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNo() { + return dossierNo; + } + + /** + * Sets the value of the dossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNo(String value) { + this.dossierNo = value; + } + + /** + * Gets the value of the subDossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubDossierNo() { + return subDossierNo; + } + + /** + * Sets the value of the subDossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubDossierNo(String value) { + this.subDossierNo = value; + } + + /** + * Gets the value of the chamberNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getChamberNo() { + return chamberNo; + } + + /** + * Sets the value of the chamberNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setChamberNo(String value) { + this.chamberNo = value; + } + + /** + * Gets the value of the legalformcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalformcode() { + return legalformcode; + } + + /** + * Sets the value of the legalformcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalformcode(String value) { + this.legalformcode = value; + } + + /** + * Gets the value of the legalformcodeText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalformcodeText() { + return legalformcodeText; + } + + /** + * Sets the value of the legalformcodeText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalformcodeText(String value) { + this.legalformcodeText = value; + } + + /** + * Gets the value of the previousDossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreviousDossierNo() { + return previousDossierNo; + } + + /** + * Sets the value of the previousDossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreviousDossierNo(String value) { + this.previousDossierNo = value; + } + + /** + * Gets the value of the previousSubDossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreviousSubDossierNo() { + return previousSubDossierNo; + } + + /** + * Sets the value of the previousSubDossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreviousSubDossierNo(String value) { + this.previousSubDossierNo = value; + } + + /** + * Gets the value of the tradename30 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradename30() { + return tradename30; + } + + /** + * Sets the value of the tradename30 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradename30(String value) { + this.tradename30 = value; + } + + /** + * Gets the value of the tradename1X30 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradename1X30() { + return tradename1X30; + } + + /** + * Sets the value of the tradename1X30 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradename1X30(String value) { + this.tradename1X30 = value; + } + + /** + * Gets the value of the tradename2X30 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradename2X30() { + return tradename2X30; + } + + /** + * Sets the value of the tradename2X30 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradename2X30(String value) { + this.tradename2X30 = value; + } + + /** + * Gets the value of the tradename45 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradename45() { + return tradename45; + } + + /** + * Sets the value of the tradename45 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradename45(String value) { + this.tradename45 = value; + } + + /** + * Gets the value of the tradenameFull property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradenameFull() { + return tradenameFull; + } + + /** + * Sets the value of the tradenameFull property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradenameFull(String value) { + this.tradenameFull = value; + } + + /** + * Gets the value of the establishmentAddress property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentAddress() { + return establishmentAddress; + } + + /** + * Sets the value of the establishmentAddress property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentAddress(String value) { + this.establishmentAddress = value; + } + + /** + * Gets the value of the establishmentPostcodeCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentPostcodeCity() { + return establishmentPostcodeCity; + } + + /** + * Sets the value of the establishmentPostcodeCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentPostcodeCity(String value) { + this.establishmentPostcodeCity = value; + } + + /** + * Gets the value of the establishmentStreetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentStreetname() { + return establishmentStreetname; + } + + /** + * Sets the value of the establishmentStreetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentStreetname(String value) { + this.establishmentStreetname = value; + } + + /** + * Gets the value of the establishmentHouseNo property. + * + */ + public int getEstablishmentHouseNo() { + return establishmentHouseNo; + } + + /** + * Sets the value of the establishmentHouseNo property. + * + */ + public void setEstablishmentHouseNo(int value) { + this.establishmentHouseNo = value; + } + + /** + * Gets the value of the establishmentHouseNoAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentHouseNoAddition() { + return establishmentHouseNoAddition; + } + + /** + * Sets the value of the establishmentHouseNoAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentHouseNoAddition(String value) { + this.establishmentHouseNoAddition = value; + } + + /** + * Gets the value of the establishmentPostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentPostcode() { + return establishmentPostcode; + } + + /** + * Sets the value of the establishmentPostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentPostcode(String value) { + this.establishmentPostcode = value; + } + + /** + * Gets the value of the correspondenceAddress property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceAddress() { + return correspondenceAddress; + } + + /** + * Sets the value of the correspondenceAddress property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceAddress(String value) { + this.correspondenceAddress = value; + } + + /** + * Gets the value of the correspondencePostcodeCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondencePostcodeCity() { + return correspondencePostcodeCity; + } + + /** + * Sets the value of the correspondencePostcodeCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondencePostcodeCity(String value) { + this.correspondencePostcodeCity = value; + } + + /** + * Gets the value of the correspondenceStreetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceStreetname() { + return correspondenceStreetname; + } + + /** + * Sets the value of the correspondenceStreetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceStreetname(String value) { + this.correspondenceStreetname = value; + } + + /** + * Gets the value of the correspondenceHouseNo property. + * + */ + public int getCorrespondenceHouseNo() { + return correspondenceHouseNo; + } + + /** + * Sets the value of the correspondenceHouseNo property. + * + */ + public void setCorrespondenceHouseNo(int value) { + this.correspondenceHouseNo = value; + } + + /** + * Gets the value of the correspondenceHouseNoAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceHouseNoAddition() { + return correspondenceHouseNoAddition; + } + + /** + * Sets the value of the correspondenceHouseNoAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceHouseNoAddition(String value) { + this.correspondenceHouseNoAddition = value; + } + + /** + * Gets the value of the correspondencePostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondencePostcode() { + return correspondencePostcode; + } + + /** + * Sets the value of the correspondencePostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondencePostcode(String value) { + this.correspondencePostcode = value; + } + + /** + * Gets the value of the telephoneNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNo() { + return telephoneNo; + } + + /** + * Sets the value of the telephoneNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNo(String value) { + this.telephoneNo = value; + } + + /** + * Gets the value of the domainname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDomainname() { + return domainname; + } + + /** + * Sets the value of the domainname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDomainname(String value) { + this.domainname = value; + } + + /** + * Gets the value of the primaryActivitycode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimaryActivitycode() { + return primaryActivitycode; + } + + /** + * Sets the value of the primaryActivitycode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimaryActivitycode(String value) { + this.primaryActivitycode = value; + } + + /** + * Gets the value of the secondaryActivitycode1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondaryActivitycode1() { + return secondaryActivitycode1; + } + + /** + * Sets the value of the secondaryActivitycode1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondaryActivitycode1(String value) { + this.secondaryActivitycode1 = value; + } + + /** + * Gets the value of the secondaryActivitycode2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondaryActivitycode2() { + return secondaryActivitycode2; + } + + /** + * Sets the value of the secondaryActivitycode2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondaryActivitycode2(String value) { + this.secondaryActivitycode2 = value; + } + + /** + * Gets the value of the primaryActivitycodeText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimaryActivitycodeText() { + return primaryActivitycodeText; + } + + /** + * Sets the value of the primaryActivitycodeText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimaryActivitycodeText(String value) { + this.primaryActivitycodeText = value; + } + + /** + * Gets the value of the secondaryActivitycode1Text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondaryActivitycode1Text() { + return secondaryActivitycode1Text; + } + + /** + * Sets the value of the secondaryActivitycode1Text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondaryActivitycode1Text(String value) { + this.secondaryActivitycode1Text = value; + } + + /** + * Gets the value of the secondaryActivitycode2Text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondaryActivitycode2Text() { + return secondaryActivitycode2Text; + } + + /** + * Sets the value of the secondaryActivitycode2Text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondaryActivitycode2Text(String value) { + this.secondaryActivitycode2Text = value; + } + + /** + * Gets the value of the personnelFulltime property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPersonnelFulltime() { + return personnelFulltime; + } + + /** + * Sets the value of the personnelFulltime property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPersonnelFulltime(String value) { + this.personnelFulltime = value; + } + + /** + * Gets the value of the classPersonnelFulltime property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getClassPersonnelFulltime() { + return classPersonnelFulltime; + } + + /** + * Sets the value of the classPersonnelFulltime property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setClassPersonnelFulltime(String value) { + this.classPersonnelFulltime = value; + } + + /** + * Gets the value of the indicationOrganisationcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIndicationOrganisationcode() { + return indicationOrganisationcode; + } + + /** + * Sets the value of the indicationOrganisationcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIndicationOrganisationcode(String value) { + this.indicationOrganisationcode = value; + } + + /** + * Gets the value of the indicationEconomicallyActive property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIndicationEconomicallyActive() { + return indicationEconomicallyActive; + } + + /** + * Sets the value of the indicationEconomicallyActive property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIndicationEconomicallyActive(String value) { + this.indicationEconomicallyActive = value; + } + + /** + * Gets the value of the indicationNonMailing property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIndicationNonMailing() { + return indicationNonMailing; + } + + /** + * Sets the value of the indicationNonMailing property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIndicationNonMailing(String value) { + this.indicationNonMailing = value; + } + + /** + * Gets the value of the indicationBankruptcy property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIndicationBankruptcy() { + return indicationBankruptcy; + } + + /** + * Sets the value of the indicationBankruptcy property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIndicationBankruptcy(String value) { + this.indicationBankruptcy = value; + } + + /** + * Gets the value of the indicationDIP property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIndicationDIP() { + return indicationDIP; + } + + /** + * Sets the value of the indicationDIP property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIndicationDIP(String value) { + this.indicationDIP = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierArray.java new file mode 100644 index 0000000..c482956 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessDossierArray complex type. + * + *

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

+ * <complexType name="BusinessDossierArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessDossier" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessDossierArray", propOrder = { + "item" +}) +public class BusinessDossierArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BusinessDossier } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierExtended.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierExtended.java new file mode 100644 index 0000000..8a3771a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierExtended.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessDossierExtended complex type. + * + *

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

+ * <complexType name="BusinessDossierExtended">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="BasicDossierPart" type="{http://www.webservices.nl/soap/}BusinessDossierV3"/>
+ *         <element name="ExtendedDossierPart" type="{http://www.webservices.nl/soap/}BusinessDossierExtendedPart"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessDossierExtended", propOrder = { + +}) +public class BusinessDossierExtended { + + @XmlElement(name = "BasicDossierPart", required = true) + protected BusinessDossierV3 basicDossierPart; + @XmlElement(name = "ExtendedDossierPart", required = true) + protected BusinessDossierExtendedPart extendedDossierPart; + + /** + * Gets the value of the basicDossierPart property. + * + * @return + * possible object is + * {@link BusinessDossierV3 } + * + */ + public BusinessDossierV3 getBasicDossierPart() { + return basicDossierPart; + } + + /** + * Sets the value of the basicDossierPart property. + * + * @param value + * allowed object is + * {@link BusinessDossierV3 } + * + */ + public void setBasicDossierPart(BusinessDossierV3 value) { + this.basicDossierPart = value; + } + + /** + * Gets the value of the extendedDossierPart property. + * + * @return + * possible object is + * {@link BusinessDossierExtendedPart } + * + */ + public BusinessDossierExtendedPart getExtendedDossierPart() { + return extendedDossierPart; + } + + /** + * Sets the value of the extendedDossierPart property. + * + * @param value + * allowed object is + * {@link BusinessDossierExtendedPart } + * + */ + public void setExtendedDossierPart(BusinessDossierExtendedPart value) { + this.extendedDossierPart = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierExtendedPart.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierExtendedPart.java new file mode 100644 index 0000000..8d101aa --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierExtendedPart.java @@ -0,0 +1,609 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessDossierExtendedPart complex type. + * + *

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

+ * <complexType name="BusinessDossierExtendedPart">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="MainBranchIndication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="MainBranchDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="MainBranchSubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ImportIndication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="ExportIndication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="LegalName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ContactTitle1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ContactTitle2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ContactInitials" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ContactPrefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ContactSurname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ContactGender" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="AuthorizedShareCapital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="AuthorizedShareCapitalCurrency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="PaidUpShareCapital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="PaidUpShareCapitalCurrency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="IssuedShareCapital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="IssuedShareCapitalCurrency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="FoundingDate" type="{http://www.webservices.nl/soap/}BusinessDate" minOccurs="0"/>
+ *         <element name="ContinuationDate" type="{http://www.webservices.nl/soap/}BusinessDate" minOccurs="0"/>
+ *         <element name="EstablishmentDate" type="{http://www.webservices.nl/soap/}BusinessDate" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessDossierExtendedPart", propOrder = { + +}) +public class BusinessDossierExtendedPart { + + @XmlElement(name = "MainBranchIndication") + protected Boolean mainBranchIndication; + @XmlElement(name = "MainBranchDossierNo", required = true) + protected String mainBranchDossierNo; + @XmlElement(name = "MainBranchSubDossierNo", required = true) + protected String mainBranchSubDossierNo; + @XmlElement(name = "ImportIndication") + protected Boolean importIndication; + @XmlElement(name = "ExportIndication") + protected Boolean exportIndication; + @XmlElement(name = "LegalName", required = true) + protected String legalName; + @XmlElement(name = "ContactTitle1", required = true) + protected String contactTitle1; + @XmlElement(name = "ContactTitle2", required = true) + protected String contactTitle2; + @XmlElement(name = "ContactInitials", required = true) + protected String contactInitials; + @XmlElement(name = "ContactPrefix", required = true) + protected String contactPrefix; + @XmlElement(name = "ContactSurname", required = true) + protected String contactSurname; + @XmlElement(name = "ContactGender", required = true) + protected String contactGender; + @XmlElement(name = "AuthorizedShareCapital") + protected Long authorizedShareCapital; + @XmlElement(name = "AuthorizedShareCapitalCurrency") + protected String authorizedShareCapitalCurrency; + @XmlElement(name = "PaidUpShareCapital") + protected Long paidUpShareCapital; + @XmlElement(name = "PaidUpShareCapitalCurrency") + protected String paidUpShareCapitalCurrency; + @XmlElement(name = "IssuedShareCapital") + protected Long issuedShareCapital; + @XmlElement(name = "IssuedShareCapitalCurrency") + protected String issuedShareCapitalCurrency; + @XmlElement(name = "FoundingDate") + protected BusinessDate foundingDate; + @XmlElement(name = "ContinuationDate") + protected BusinessDate continuationDate; + @XmlElement(name = "EstablishmentDate") + protected BusinessDate establishmentDate; + + /** + * Gets the value of the mainBranchIndication property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isMainBranchIndication() { + return mainBranchIndication; + } + + /** + * Sets the value of the mainBranchIndication property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setMainBranchIndication(Boolean value) { + this.mainBranchIndication = value; + } + + /** + * Gets the value of the mainBranchDossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMainBranchDossierNo() { + return mainBranchDossierNo; + } + + /** + * Sets the value of the mainBranchDossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMainBranchDossierNo(String value) { + this.mainBranchDossierNo = value; + } + + /** + * Gets the value of the mainBranchSubDossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMainBranchSubDossierNo() { + return mainBranchSubDossierNo; + } + + /** + * Sets the value of the mainBranchSubDossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMainBranchSubDossierNo(String value) { + this.mainBranchSubDossierNo = value; + } + + /** + * Gets the value of the importIndication property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isImportIndication() { + return importIndication; + } + + /** + * Sets the value of the importIndication property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setImportIndication(Boolean value) { + this.importIndication = value; + } + + /** + * Gets the value of the exportIndication property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isExportIndication() { + return exportIndication; + } + + /** + * Sets the value of the exportIndication property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setExportIndication(Boolean value) { + this.exportIndication = value; + } + + /** + * Gets the value of the legalName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalName() { + return legalName; + } + + /** + * Sets the value of the legalName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalName(String value) { + this.legalName = value; + } + + /** + * Gets the value of the contactTitle1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactTitle1() { + return contactTitle1; + } + + /** + * Sets the value of the contactTitle1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactTitle1(String value) { + this.contactTitle1 = value; + } + + /** + * Gets the value of the contactTitle2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactTitle2() { + return contactTitle2; + } + + /** + * Sets the value of the contactTitle2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactTitle2(String value) { + this.contactTitle2 = value; + } + + /** + * Gets the value of the contactInitials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactInitials() { + return contactInitials; + } + + /** + * Sets the value of the contactInitials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactInitials(String value) { + this.contactInitials = value; + } + + /** + * Gets the value of the contactPrefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactPrefix() { + return contactPrefix; + } + + /** + * Sets the value of the contactPrefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactPrefix(String value) { + this.contactPrefix = value; + } + + /** + * Gets the value of the contactSurname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactSurname() { + return contactSurname; + } + + /** + * Sets the value of the contactSurname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactSurname(String value) { + this.contactSurname = value; + } + + /** + * Gets the value of the contactGender property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactGender() { + return contactGender; + } + + /** + * Sets the value of the contactGender property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactGender(String value) { + this.contactGender = value; + } + + /** + * Gets the value of the authorizedShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getAuthorizedShareCapital() { + return authorizedShareCapital; + } + + /** + * Sets the value of the authorizedShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setAuthorizedShareCapital(Long value) { + this.authorizedShareCapital = value; + } + + /** + * Gets the value of the authorizedShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAuthorizedShareCapitalCurrency() { + return authorizedShareCapitalCurrency; + } + + /** + * Sets the value of the authorizedShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAuthorizedShareCapitalCurrency(String value) { + this.authorizedShareCapitalCurrency = value; + } + + /** + * Gets the value of the paidUpShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getPaidUpShareCapital() { + return paidUpShareCapital; + } + + /** + * Sets the value of the paidUpShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setPaidUpShareCapital(Long value) { + this.paidUpShareCapital = value; + } + + /** + * Gets the value of the paidUpShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPaidUpShareCapitalCurrency() { + return paidUpShareCapitalCurrency; + } + + /** + * Sets the value of the paidUpShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPaidUpShareCapitalCurrency(String value) { + this.paidUpShareCapitalCurrency = value; + } + + /** + * Gets the value of the issuedShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getIssuedShareCapital() { + return issuedShareCapital; + } + + /** + * Sets the value of the issuedShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setIssuedShareCapital(Long value) { + this.issuedShareCapital = value; + } + + /** + * Gets the value of the issuedShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIssuedShareCapitalCurrency() { + return issuedShareCapitalCurrency; + } + + /** + * Sets the value of the issuedShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIssuedShareCapitalCurrency(String value) { + this.issuedShareCapitalCurrency = value; + } + + /** + * Gets the value of the foundingDate property. + * + * @return + * possible object is + * {@link BusinessDate } + * + */ + public BusinessDate getFoundingDate() { + return foundingDate; + } + + /** + * Sets the value of the foundingDate property. + * + * @param value + * allowed object is + * {@link BusinessDate } + * + */ + public void setFoundingDate(BusinessDate value) { + this.foundingDate = value; + } + + /** + * Gets the value of the continuationDate property. + * + * @return + * possible object is + * {@link BusinessDate } + * + */ + public BusinessDate getContinuationDate() { + return continuationDate; + } + + /** + * Sets the value of the continuationDate property. + * + * @param value + * allowed object is + * {@link BusinessDate } + * + */ + public void setContinuationDate(BusinessDate value) { + this.continuationDate = value; + } + + /** + * Gets the value of the establishmentDate property. + * + * @return + * possible object is + * {@link BusinessDate } + * + */ + public BusinessDate getEstablishmentDate() { + return establishmentDate; + } + + /** + * Sets the value of the establishmentDate property. + * + * @param value + * allowed object is + * {@link BusinessDate } + * + */ + public void setEstablishmentDate(BusinessDate value) { + this.establishmentDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierPagedResult.java new file mode 100644 index 0000000..60d3bc8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierPagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessDossierPagedResult complex type. + * + *

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

+ * <complexType name="BusinessDossierPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}BusinessDossierArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessDossierPagedResult", propOrder = { + +}) +public class BusinessDossierPagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected BusinessDossierArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link BusinessDossierArray } + * + */ + public BusinessDossierArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link BusinessDossierArray } + * + */ + public void setResults(BusinessDossierArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierSBI.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierSBI.java new file mode 100644 index 0000000..e304366 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierSBI.java @@ -0,0 +1,204 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessDossierSBI complex type. + * + *

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

+ * <complexType name="BusinessDossierSBI">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="PrimarySBICode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SecondarySBICode1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SecondarySBICode2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PrimarySBICodeText" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SecondarySBICode1Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SecondarySBICode2Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessDossierSBI", propOrder = { + +}) +public class BusinessDossierSBI { + + @XmlElement(name = "PrimarySBICode", required = true) + protected String primarySBICode; + @XmlElement(name = "SecondarySBICode1", required = true) + protected String secondarySBICode1; + @XmlElement(name = "SecondarySBICode2", required = true) + protected String secondarySBICode2; + @XmlElement(name = "PrimarySBICodeText", required = true) + protected String primarySBICodeText; + @XmlElement(name = "SecondarySBICode1Text", required = true) + protected String secondarySBICode1Text; + @XmlElement(name = "SecondarySBICode2Text", required = true) + protected String secondarySBICode2Text; + + /** + * Gets the value of the primarySBICode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimarySBICode() { + return primarySBICode; + } + + /** + * Sets the value of the primarySBICode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimarySBICode(String value) { + this.primarySBICode = value; + } + + /** + * Gets the value of the secondarySBICode1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySBICode1() { + return secondarySBICode1; + } + + /** + * Sets the value of the secondarySBICode1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySBICode1(String value) { + this.secondarySBICode1 = value; + } + + /** + * Gets the value of the secondarySBICode2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySBICode2() { + return secondarySBICode2; + } + + /** + * Sets the value of the secondarySBICode2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySBICode2(String value) { + this.secondarySBICode2 = value; + } + + /** + * Gets the value of the primarySBICodeText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimarySBICodeText() { + return primarySBICodeText; + } + + /** + * Sets the value of the primarySBICodeText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimarySBICodeText(String value) { + this.primarySBICodeText = value; + } + + /** + * Gets the value of the secondarySBICode1Text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySBICode1Text() { + return secondarySBICode1Text; + } + + /** + * Sets the value of the secondarySBICode1Text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySBICode1Text(String value) { + this.secondarySBICode1Text = value; + } + + /** + * Gets the value of the secondarySBICode2Text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySBICode2Text() { + return secondarySBICode2Text; + } + + /** + * Sets the value of the secondarySBICode2Text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySBICode2Text(String value) { + this.secondarySBICode2Text = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2.java new file mode 100644 index 0000000..6d317ee --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2.java @@ -0,0 +1,1004 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessDossierV2 complex type. + * + *

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

+ * <complexType name="BusinessDossierV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="RegisterLetter" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="DossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ChamberNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Legalformcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="LegalformcodeText" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PreviousDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PreviousSubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Tradename30" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Tradename1x30" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Tradename2x30" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Tradename45" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="TradenameFull" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentPostcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentHouseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="EstablishmentHouseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondencePostcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondenceCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondenceStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondenceHouseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="CorrespondenceHouseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="TelephoneNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Domainname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PrimaryActivitycode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SecondaryActivitycode1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SecondaryActivitycode2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PrimaryActivitycodeText" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SecondaryActivitycode1Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SecondaryActivitycode2Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PersonnelFulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="ClassPersonnelFulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="IndicationOrganisationcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="IndicationEconomicallyActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="IndicationNonMailing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="IndicationBankruptcy" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="IndicationDIP" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessDossierV2", propOrder = { + +}) +public class BusinessDossierV2 { + + @XmlElement(name = "RegisterLetter", required = true) + protected String registerLetter; + @XmlElement(name = "DossierNo", required = true) + protected String dossierNo; + @XmlElement(name = "SubDossierNo", required = true) + protected String subDossierNo; + @XmlElement(name = "ChamberNo", required = true) + protected String chamberNo; + @XmlElement(name = "Legalformcode", required = true) + protected String legalformcode; + @XmlElement(name = "LegalformcodeText", required = true) + protected String legalformcodeText; + @XmlElement(name = "PreviousDossierNo", required = true) + protected String previousDossierNo; + @XmlElement(name = "PreviousSubDossierNo", required = true) + protected String previousSubDossierNo; + @XmlElement(name = "Tradename30", required = true) + protected String tradename30; + @XmlElement(name = "Tradename1x30", required = true) + protected String tradename1X30; + @XmlElement(name = "Tradename2x30", required = true) + protected String tradename2X30; + @XmlElement(name = "Tradename45", required = true) + protected String tradename45; + @XmlElement(name = "TradenameFull", required = true) + protected String tradenameFull; + @XmlElement(name = "EstablishmentPostcode", required = true) + protected String establishmentPostcode; + @XmlElement(name = "EstablishmentCity", required = true) + protected String establishmentCity; + @XmlElement(name = "EstablishmentStreetname", required = true) + protected String establishmentStreetname; + @XmlElement(name = "EstablishmentHouseNo") + protected int establishmentHouseNo; + @XmlElement(name = "EstablishmentHouseNoAddition", required = true) + protected String establishmentHouseNoAddition; + @XmlElement(name = "CorrespondencePostcode", required = true) + protected String correspondencePostcode; + @XmlElement(name = "CorrespondenceCity", required = true) + protected String correspondenceCity; + @XmlElement(name = "CorrespondenceStreetname", required = true) + protected String correspondenceStreetname; + @XmlElement(name = "CorrespondenceHouseNo") + protected int correspondenceHouseNo; + @XmlElement(name = "CorrespondenceHouseNoAddition", required = true) + protected String correspondenceHouseNoAddition; + @XmlElement(name = "TelephoneNo", required = true) + protected String telephoneNo; + @XmlElement(name = "Domainname", required = true) + protected String domainname; + @XmlElement(name = "PrimaryActivitycode", required = true) + protected String primaryActivitycode; + @XmlElement(name = "SecondaryActivitycode1", required = true) + protected String secondaryActivitycode1; + @XmlElement(name = "SecondaryActivitycode2", required = true) + protected String secondaryActivitycode2; + @XmlElement(name = "PrimaryActivitycodeText", required = true) + protected String primaryActivitycodeText; + @XmlElement(name = "SecondaryActivitycode1Text", required = true) + protected String secondaryActivitycode1Text; + @XmlElement(name = "SecondaryActivitycode2Text", required = true) + protected String secondaryActivitycode2Text; + @XmlElement(name = "PersonnelFulltime") + protected int personnelFulltime; + @XmlElement(name = "ClassPersonnelFulltime") + protected int classPersonnelFulltime; + @XmlElement(name = "IndicationOrganisationcode", required = true) + protected String indicationOrganisationcode; + @XmlElement(name = "IndicationEconomicallyActive") + protected boolean indicationEconomicallyActive; + @XmlElement(name = "IndicationNonMailing") + protected boolean indicationNonMailing; + @XmlElement(name = "IndicationBankruptcy") + protected boolean indicationBankruptcy; + @XmlElement(name = "IndicationDIP") + protected boolean indicationDIP; + + /** + * Gets the value of the registerLetter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegisterLetter() { + return registerLetter; + } + + /** + * Sets the value of the registerLetter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegisterLetter(String value) { + this.registerLetter = value; + } + + /** + * Gets the value of the dossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNo() { + return dossierNo; + } + + /** + * Sets the value of the dossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNo(String value) { + this.dossierNo = value; + } + + /** + * Gets the value of the subDossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubDossierNo() { + return subDossierNo; + } + + /** + * Sets the value of the subDossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubDossierNo(String value) { + this.subDossierNo = value; + } + + /** + * Gets the value of the chamberNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getChamberNo() { + return chamberNo; + } + + /** + * Sets the value of the chamberNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setChamberNo(String value) { + this.chamberNo = value; + } + + /** + * Gets the value of the legalformcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalformcode() { + return legalformcode; + } + + /** + * Sets the value of the legalformcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalformcode(String value) { + this.legalformcode = value; + } + + /** + * Gets the value of the legalformcodeText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalformcodeText() { + return legalformcodeText; + } + + /** + * Sets the value of the legalformcodeText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalformcodeText(String value) { + this.legalformcodeText = value; + } + + /** + * Gets the value of the previousDossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreviousDossierNo() { + return previousDossierNo; + } + + /** + * Sets the value of the previousDossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreviousDossierNo(String value) { + this.previousDossierNo = value; + } + + /** + * Gets the value of the previousSubDossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreviousSubDossierNo() { + return previousSubDossierNo; + } + + /** + * Sets the value of the previousSubDossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreviousSubDossierNo(String value) { + this.previousSubDossierNo = value; + } + + /** + * Gets the value of the tradename30 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradename30() { + return tradename30; + } + + /** + * Sets the value of the tradename30 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradename30(String value) { + this.tradename30 = value; + } + + /** + * Gets the value of the tradename1X30 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradename1X30() { + return tradename1X30; + } + + /** + * Sets the value of the tradename1X30 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradename1X30(String value) { + this.tradename1X30 = value; + } + + /** + * Gets the value of the tradename2X30 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradename2X30() { + return tradename2X30; + } + + /** + * Sets the value of the tradename2X30 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradename2X30(String value) { + this.tradename2X30 = value; + } + + /** + * Gets the value of the tradename45 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradename45() { + return tradename45; + } + + /** + * Sets the value of the tradename45 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradename45(String value) { + this.tradename45 = value; + } + + /** + * Gets the value of the tradenameFull property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradenameFull() { + return tradenameFull; + } + + /** + * Sets the value of the tradenameFull property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradenameFull(String value) { + this.tradenameFull = value; + } + + /** + * Gets the value of the establishmentPostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentPostcode() { + return establishmentPostcode; + } + + /** + * Sets the value of the establishmentPostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentPostcode(String value) { + this.establishmentPostcode = value; + } + + /** + * Gets the value of the establishmentCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCity() { + return establishmentCity; + } + + /** + * Sets the value of the establishmentCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCity(String value) { + this.establishmentCity = value; + } + + /** + * Gets the value of the establishmentStreetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentStreetname() { + return establishmentStreetname; + } + + /** + * Sets the value of the establishmentStreetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentStreetname(String value) { + this.establishmentStreetname = value; + } + + /** + * Gets the value of the establishmentHouseNo property. + * + */ + public int getEstablishmentHouseNo() { + return establishmentHouseNo; + } + + /** + * Sets the value of the establishmentHouseNo property. + * + */ + public void setEstablishmentHouseNo(int value) { + this.establishmentHouseNo = value; + } + + /** + * Gets the value of the establishmentHouseNoAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentHouseNoAddition() { + return establishmentHouseNoAddition; + } + + /** + * Sets the value of the establishmentHouseNoAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentHouseNoAddition(String value) { + this.establishmentHouseNoAddition = value; + } + + /** + * Gets the value of the correspondencePostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondencePostcode() { + return correspondencePostcode; + } + + /** + * Sets the value of the correspondencePostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondencePostcode(String value) { + this.correspondencePostcode = value; + } + + /** + * Gets the value of the correspondenceCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCity() { + return correspondenceCity; + } + + /** + * Sets the value of the correspondenceCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCity(String value) { + this.correspondenceCity = value; + } + + /** + * Gets the value of the correspondenceStreetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceStreetname() { + return correspondenceStreetname; + } + + /** + * Sets the value of the correspondenceStreetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceStreetname(String value) { + this.correspondenceStreetname = value; + } + + /** + * Gets the value of the correspondenceHouseNo property. + * + */ + public int getCorrespondenceHouseNo() { + return correspondenceHouseNo; + } + + /** + * Sets the value of the correspondenceHouseNo property. + * + */ + public void setCorrespondenceHouseNo(int value) { + this.correspondenceHouseNo = value; + } + + /** + * Gets the value of the correspondenceHouseNoAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceHouseNoAddition() { + return correspondenceHouseNoAddition; + } + + /** + * Sets the value of the correspondenceHouseNoAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceHouseNoAddition(String value) { + this.correspondenceHouseNoAddition = value; + } + + /** + * Gets the value of the telephoneNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNo() { + return telephoneNo; + } + + /** + * Sets the value of the telephoneNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNo(String value) { + this.telephoneNo = value; + } + + /** + * Gets the value of the domainname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDomainname() { + return domainname; + } + + /** + * Sets the value of the domainname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDomainname(String value) { + this.domainname = value; + } + + /** + * Gets the value of the primaryActivitycode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimaryActivitycode() { + return primaryActivitycode; + } + + /** + * Sets the value of the primaryActivitycode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimaryActivitycode(String value) { + this.primaryActivitycode = value; + } + + /** + * Gets the value of the secondaryActivitycode1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondaryActivitycode1() { + return secondaryActivitycode1; + } + + /** + * Sets the value of the secondaryActivitycode1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondaryActivitycode1(String value) { + this.secondaryActivitycode1 = value; + } + + /** + * Gets the value of the secondaryActivitycode2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondaryActivitycode2() { + return secondaryActivitycode2; + } + + /** + * Sets the value of the secondaryActivitycode2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondaryActivitycode2(String value) { + this.secondaryActivitycode2 = value; + } + + /** + * Gets the value of the primaryActivitycodeText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimaryActivitycodeText() { + return primaryActivitycodeText; + } + + /** + * Sets the value of the primaryActivitycodeText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimaryActivitycodeText(String value) { + this.primaryActivitycodeText = value; + } + + /** + * Gets the value of the secondaryActivitycode1Text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondaryActivitycode1Text() { + return secondaryActivitycode1Text; + } + + /** + * Sets the value of the secondaryActivitycode1Text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondaryActivitycode1Text(String value) { + this.secondaryActivitycode1Text = value; + } + + /** + * Gets the value of the secondaryActivitycode2Text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondaryActivitycode2Text() { + return secondaryActivitycode2Text; + } + + /** + * Sets the value of the secondaryActivitycode2Text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondaryActivitycode2Text(String value) { + this.secondaryActivitycode2Text = value; + } + + /** + * Gets the value of the personnelFulltime property. + * + */ + public int getPersonnelFulltime() { + return personnelFulltime; + } + + /** + * Sets the value of the personnelFulltime property. + * + */ + public void setPersonnelFulltime(int value) { + this.personnelFulltime = value; + } + + /** + * Gets the value of the classPersonnelFulltime property. + * + */ + public int getClassPersonnelFulltime() { + return classPersonnelFulltime; + } + + /** + * Sets the value of the classPersonnelFulltime property. + * + */ + public void setClassPersonnelFulltime(int value) { + this.classPersonnelFulltime = value; + } + + /** + * Gets the value of the indicationOrganisationcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIndicationOrganisationcode() { + return indicationOrganisationcode; + } + + /** + * Sets the value of the indicationOrganisationcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIndicationOrganisationcode(String value) { + this.indicationOrganisationcode = value; + } + + /** + * Gets the value of the indicationEconomicallyActive property. + * + */ + public boolean isIndicationEconomicallyActive() { + return indicationEconomicallyActive; + } + + /** + * Sets the value of the indicationEconomicallyActive property. + * + */ + public void setIndicationEconomicallyActive(boolean value) { + this.indicationEconomicallyActive = value; + } + + /** + * Gets the value of the indicationNonMailing property. + * + */ + public boolean isIndicationNonMailing() { + return indicationNonMailing; + } + + /** + * Sets the value of the indicationNonMailing property. + * + */ + public void setIndicationNonMailing(boolean value) { + this.indicationNonMailing = value; + } + + /** + * Gets the value of the indicationBankruptcy property. + * + */ + public boolean isIndicationBankruptcy() { + return indicationBankruptcy; + } + + /** + * Sets the value of the indicationBankruptcy property. + * + */ + public void setIndicationBankruptcy(boolean value) { + this.indicationBankruptcy = value; + } + + /** + * Gets the value of the indicationDIP property. + * + */ + public boolean isIndicationDIP() { + return indicationDIP; + } + + /** + * Sets the value of the indicationDIP property. + * + */ + public void setIndicationDIP(boolean value) { + this.indicationDIP = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2Array.java new file mode 100644 index 0000000..f62eb80 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessDossierV2Array complex type. + * + *

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

+ * <complexType name="BusinessDossierV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessDossierV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessDossierV2Array", propOrder = { + "item" +}) +public class BusinessDossierV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BusinessDossierV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2PagedResult.java new file mode 100644 index 0000000..440ae15 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2PagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessDossierV2PagedResult complex type. + * + *

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

+ * <complexType name="BusinessDossierV2PagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}BusinessDossierV2Array"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessDossierV2PagedResult", propOrder = { + +}) +public class BusinessDossierV2PagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected BusinessDossierV2Array results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link BusinessDossierV2Array } + * + */ + public BusinessDossierV2Array getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link BusinessDossierV2Array } + * + */ + public void setResults(BusinessDossierV2Array value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3.java new file mode 100644 index 0000000..290017b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3.java @@ -0,0 +1,923 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessDossierV3 complex type. + * + *

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

+ * <complexType name="BusinessDossierV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="RegisterLetter" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="DossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ChamberNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Legalformcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="LegalformcodeText" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PreviousDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PreviousSubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Tradename45" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="TradenameFull" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentPostcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentHouseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="EstablishmentHouseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondencePostcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondenceCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondenceStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondenceHouseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="CorrespondenceHouseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="TelephoneNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Domainname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PrimarySBICode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SecondarySBICode1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SecondarySBICode2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="PrimarySBICodeText" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SecondarySBICode1Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SecondarySBICode2Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="ClassPersonnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="IndicationOrganisationcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="IndicationEconomicallyActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="IndicationNonMailing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="IndicationBankruptcy" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="IndicationDIP" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessDossierV3", propOrder = { + +}) +public class BusinessDossierV3 { + + @XmlElement(name = "RegisterLetter", required = true) + protected String registerLetter; + @XmlElement(name = "DossierNo", required = true) + protected String dossierNo; + @XmlElement(name = "SubDossierNo", required = true) + protected String subDossierNo; + @XmlElement(name = "ChamberNo", required = true) + protected String chamberNo; + @XmlElement(name = "Legalformcode", required = true) + protected String legalformcode; + @XmlElement(name = "LegalformcodeText", required = true) + protected String legalformcodeText; + @XmlElement(name = "PreviousDossierNo", required = true) + protected String previousDossierNo; + @XmlElement(name = "PreviousSubDossierNo", required = true) + protected String previousSubDossierNo; + @XmlElement(name = "Tradename45", required = true) + protected String tradename45; + @XmlElement(name = "TradenameFull", required = true) + protected String tradenameFull; + @XmlElement(name = "EstablishmentPostcode", required = true) + protected String establishmentPostcode; + @XmlElement(name = "EstablishmentCity", required = true) + protected String establishmentCity; + @XmlElement(name = "EstablishmentStreetname", required = true) + protected String establishmentStreetname; + @XmlElement(name = "EstablishmentHouseNo") + protected int establishmentHouseNo; + @XmlElement(name = "EstablishmentHouseNoAddition", required = true) + protected String establishmentHouseNoAddition; + @XmlElement(name = "CorrespondencePostcode", required = true) + protected String correspondencePostcode; + @XmlElement(name = "CorrespondenceCity", required = true) + protected String correspondenceCity; + @XmlElement(name = "CorrespondenceStreetname", required = true) + protected String correspondenceStreetname; + @XmlElement(name = "CorrespondenceHouseNo") + protected int correspondenceHouseNo; + @XmlElement(name = "CorrespondenceHouseNoAddition", required = true) + protected String correspondenceHouseNoAddition; + @XmlElement(name = "TelephoneNo", required = true) + protected String telephoneNo; + @XmlElement(name = "Domainname", required = true) + protected String domainname; + @XmlElement(name = "PrimarySBICode", required = true) + protected String primarySBICode; + @XmlElement(name = "SecondarySBICode1", required = true) + protected String secondarySBICode1; + @XmlElement(name = "SecondarySBICode2", required = true) + protected String secondarySBICode2; + @XmlElement(name = "PrimarySBICodeText", required = true) + protected String primarySBICodeText; + @XmlElement(name = "SecondarySBICode1Text", required = true) + protected String secondarySBICode1Text; + @XmlElement(name = "SecondarySBICode2Text", required = true) + protected String secondarySBICode2Text; + @XmlElement(name = "Personnel") + protected int personnel; + @XmlElement(name = "ClassPersonnel") + protected int classPersonnel; + @XmlElement(name = "IndicationOrganisationcode", required = true) + protected String indicationOrganisationcode; + @XmlElement(name = "IndicationEconomicallyActive") + protected boolean indicationEconomicallyActive; + @XmlElement(name = "IndicationNonMailing") + protected boolean indicationNonMailing; + @XmlElement(name = "IndicationBankruptcy") + protected boolean indicationBankruptcy; + @XmlElement(name = "IndicationDIP") + protected boolean indicationDIP; + + /** + * Gets the value of the registerLetter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegisterLetter() { + return registerLetter; + } + + /** + * Sets the value of the registerLetter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegisterLetter(String value) { + this.registerLetter = value; + } + + /** + * Gets the value of the dossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNo() { + return dossierNo; + } + + /** + * Sets the value of the dossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNo(String value) { + this.dossierNo = value; + } + + /** + * Gets the value of the subDossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubDossierNo() { + return subDossierNo; + } + + /** + * Sets the value of the subDossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubDossierNo(String value) { + this.subDossierNo = value; + } + + /** + * Gets the value of the chamberNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getChamberNo() { + return chamberNo; + } + + /** + * Sets the value of the chamberNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setChamberNo(String value) { + this.chamberNo = value; + } + + /** + * Gets the value of the legalformcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalformcode() { + return legalformcode; + } + + /** + * Sets the value of the legalformcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalformcode(String value) { + this.legalformcode = value; + } + + /** + * Gets the value of the legalformcodeText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalformcodeText() { + return legalformcodeText; + } + + /** + * Sets the value of the legalformcodeText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalformcodeText(String value) { + this.legalformcodeText = value; + } + + /** + * Gets the value of the previousDossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreviousDossierNo() { + return previousDossierNo; + } + + /** + * Sets the value of the previousDossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreviousDossierNo(String value) { + this.previousDossierNo = value; + } + + /** + * Gets the value of the previousSubDossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreviousSubDossierNo() { + return previousSubDossierNo; + } + + /** + * Sets the value of the previousSubDossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreviousSubDossierNo(String value) { + this.previousSubDossierNo = value; + } + + /** + * Gets the value of the tradename45 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradename45() { + return tradename45; + } + + /** + * Sets the value of the tradename45 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradename45(String value) { + this.tradename45 = value; + } + + /** + * Gets the value of the tradenameFull property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradenameFull() { + return tradenameFull; + } + + /** + * Sets the value of the tradenameFull property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradenameFull(String value) { + this.tradenameFull = value; + } + + /** + * Gets the value of the establishmentPostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentPostcode() { + return establishmentPostcode; + } + + /** + * Sets the value of the establishmentPostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentPostcode(String value) { + this.establishmentPostcode = value; + } + + /** + * Gets the value of the establishmentCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCity() { + return establishmentCity; + } + + /** + * Sets the value of the establishmentCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCity(String value) { + this.establishmentCity = value; + } + + /** + * Gets the value of the establishmentStreetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentStreetname() { + return establishmentStreetname; + } + + /** + * Sets the value of the establishmentStreetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentStreetname(String value) { + this.establishmentStreetname = value; + } + + /** + * Gets the value of the establishmentHouseNo property. + * + */ + public int getEstablishmentHouseNo() { + return establishmentHouseNo; + } + + /** + * Sets the value of the establishmentHouseNo property. + * + */ + public void setEstablishmentHouseNo(int value) { + this.establishmentHouseNo = value; + } + + /** + * Gets the value of the establishmentHouseNoAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentHouseNoAddition() { + return establishmentHouseNoAddition; + } + + /** + * Sets the value of the establishmentHouseNoAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentHouseNoAddition(String value) { + this.establishmentHouseNoAddition = value; + } + + /** + * Gets the value of the correspondencePostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondencePostcode() { + return correspondencePostcode; + } + + /** + * Sets the value of the correspondencePostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondencePostcode(String value) { + this.correspondencePostcode = value; + } + + /** + * Gets the value of the correspondenceCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCity() { + return correspondenceCity; + } + + /** + * Sets the value of the correspondenceCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCity(String value) { + this.correspondenceCity = value; + } + + /** + * Gets the value of the correspondenceStreetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceStreetname() { + return correspondenceStreetname; + } + + /** + * Sets the value of the correspondenceStreetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceStreetname(String value) { + this.correspondenceStreetname = value; + } + + /** + * Gets the value of the correspondenceHouseNo property. + * + */ + public int getCorrespondenceHouseNo() { + return correspondenceHouseNo; + } + + /** + * Sets the value of the correspondenceHouseNo property. + * + */ + public void setCorrespondenceHouseNo(int value) { + this.correspondenceHouseNo = value; + } + + /** + * Gets the value of the correspondenceHouseNoAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceHouseNoAddition() { + return correspondenceHouseNoAddition; + } + + /** + * Sets the value of the correspondenceHouseNoAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceHouseNoAddition(String value) { + this.correspondenceHouseNoAddition = value; + } + + /** + * Gets the value of the telephoneNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNo() { + return telephoneNo; + } + + /** + * Sets the value of the telephoneNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNo(String value) { + this.telephoneNo = value; + } + + /** + * Gets the value of the domainname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDomainname() { + return domainname; + } + + /** + * Sets the value of the domainname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDomainname(String value) { + this.domainname = value; + } + + /** + * Gets the value of the primarySBICode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimarySBICode() { + return primarySBICode; + } + + /** + * Sets the value of the primarySBICode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimarySBICode(String value) { + this.primarySBICode = value; + } + + /** + * Gets the value of the secondarySBICode1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySBICode1() { + return secondarySBICode1; + } + + /** + * Sets the value of the secondarySBICode1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySBICode1(String value) { + this.secondarySBICode1 = value; + } + + /** + * Gets the value of the secondarySBICode2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySBICode2() { + return secondarySBICode2; + } + + /** + * Sets the value of the secondarySBICode2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySBICode2(String value) { + this.secondarySBICode2 = value; + } + + /** + * Gets the value of the primarySBICodeText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimarySBICodeText() { + return primarySBICodeText; + } + + /** + * Sets the value of the primarySBICodeText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimarySBICodeText(String value) { + this.primarySBICodeText = value; + } + + /** + * Gets the value of the secondarySBICode1Text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySBICode1Text() { + return secondarySBICode1Text; + } + + /** + * Sets the value of the secondarySBICode1Text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySBICode1Text(String value) { + this.secondarySBICode1Text = value; + } + + /** + * Gets the value of the secondarySBICode2Text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySBICode2Text() { + return secondarySBICode2Text; + } + + /** + * Sets the value of the secondarySBICode2Text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySBICode2Text(String value) { + this.secondarySBICode2Text = value; + } + + /** + * Gets the value of the personnel property. + * + */ + public int getPersonnel() { + return personnel; + } + + /** + * Sets the value of the personnel property. + * + */ + public void setPersonnel(int value) { + this.personnel = value; + } + + /** + * Gets the value of the classPersonnel property. + * + */ + public int getClassPersonnel() { + return classPersonnel; + } + + /** + * Sets the value of the classPersonnel property. + * + */ + public void setClassPersonnel(int value) { + this.classPersonnel = value; + } + + /** + * Gets the value of the indicationOrganisationcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIndicationOrganisationcode() { + return indicationOrganisationcode; + } + + /** + * Sets the value of the indicationOrganisationcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIndicationOrganisationcode(String value) { + this.indicationOrganisationcode = value; + } + + /** + * Gets the value of the indicationEconomicallyActive property. + * + */ + public boolean isIndicationEconomicallyActive() { + return indicationEconomicallyActive; + } + + /** + * Sets the value of the indicationEconomicallyActive property. + * + */ + public void setIndicationEconomicallyActive(boolean value) { + this.indicationEconomicallyActive = value; + } + + /** + * Gets the value of the indicationNonMailing property. + * + */ + public boolean isIndicationNonMailing() { + return indicationNonMailing; + } + + /** + * Sets the value of the indicationNonMailing property. + * + */ + public void setIndicationNonMailing(boolean value) { + this.indicationNonMailing = value; + } + + /** + * Gets the value of the indicationBankruptcy property. + * + */ + public boolean isIndicationBankruptcy() { + return indicationBankruptcy; + } + + /** + * Sets the value of the indicationBankruptcy property. + * + */ + public void setIndicationBankruptcy(boolean value) { + this.indicationBankruptcy = value; + } + + /** + * Gets the value of the indicationDIP property. + * + */ + public boolean isIndicationDIP() { + return indicationDIP; + } + + /** + * Sets the value of the indicationDIP property. + * + */ + public void setIndicationDIP(boolean value) { + this.indicationDIP = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3Array.java new file mode 100644 index 0000000..4639888 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessDossierV3Array complex type. + * + *

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

+ * <complexType name="BusinessDossierV3Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessDossierV3" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessDossierV3Array", propOrder = { + "item" +}) +public class BusinessDossierV3Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BusinessDossierV3 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3PagedResult.java new file mode 100644 index 0000000..a1af437 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3PagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessDossierV3PagedResult complex type. + * + *

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

+ * <complexType name="BusinessDossierV3PagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}BusinessDossierV3Array"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessDossierV3PagedResult", propOrder = { + +}) +public class BusinessDossierV3PagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected BusinessDossierV3Array results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link BusinessDossierV3Array } + * + */ + public BusinessDossierV3Array getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link BusinessDossierV3Array } + * + */ + public void setResults(BusinessDossierV3Array value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetBIKDescriptionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetBIKDescriptionRequestType.java new file mode 100644 index 0000000..b00e6fb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetBIKDescriptionRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessGetBIKDescriptionRequestType complex type. + * + *

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

+ * <complexType name="businessGetBIKDescriptionRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bikcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessGetBIKDescriptionRequestType", propOrder = { + +}) +public class BusinessGetBIKDescriptionRequestType { + + @XmlElement(required = true) + protected String bikcode; + + /** + * Gets the value of the bikcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBikcode() { + return bikcode; + } + + /** + * Sets the value of the bikcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBikcode(String value) { + this.bikcode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetBIKDescriptionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetBIKDescriptionResponseType.java new file mode 100644 index 0000000..c381801 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetBIKDescriptionResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessGetBIKDescriptionResponseType complex type. + * + *

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

+ * <complexType name="businessGetBIKDescriptionResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessBIKCodeInfo"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessGetBIKDescriptionResponseType", propOrder = { + +}) +public class BusinessGetBIKDescriptionResponseType { + + @XmlElement(required = true) + protected BusinessBIKCodeInfo out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessBIKCodeInfo } + * + */ + public BusinessBIKCodeInfo getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessBIKCodeInfo } + * + */ + public void setOut(BusinessBIKCodeInfo value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierExtendedRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierExtendedRequestType.java new file mode 100644 index 0000000..e79b6ba --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierExtendedRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessGetDossierExtendedRequestType complex type. + * + *

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

+ * <complexType name="businessGetDossierExtendedRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="subdossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessGetDossierExtendedRequestType", propOrder = { + +}) +public class BusinessGetDossierExtendedRequestType { + + @XmlElement(required = true) + protected String dossierno; + @XmlElement(required = true) + protected String subdossierno; + + /** + * Gets the value of the dossierno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierno() { + return dossierno; + } + + /** + * Sets the value of the dossierno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierno(String value) { + this.dossierno = value; + } + + /** + * Gets the value of the subdossierno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubdossierno() { + return subdossierno; + } + + /** + * Sets the value of the subdossierno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubdossierno(String value) { + this.subdossierno = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierExtendedResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierExtendedResponseType.java new file mode 100644 index 0000000..e6c8f68 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierExtendedResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessGetDossierExtendedResponseType complex type. + * + *

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

+ * <complexType name="businessGetDossierExtendedResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessDossierExtended"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessGetDossierExtendedResponseType", propOrder = { + +}) +public class BusinessGetDossierExtendedResponseType { + + @XmlElement(required = true) + protected BusinessDossierExtended out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessDossierExtended } + * + */ + public BusinessDossierExtended getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessDossierExtended } + * + */ + public void setOut(BusinessDossierExtended value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierSBIRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierSBIRequestType.java new file mode 100644 index 0000000..5fa47d0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierSBIRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessGetDossierSBIRequestType complex type. + * + *

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

+ * <complexType name="businessGetDossierSBIRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="subdossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessGetDossierSBIRequestType", propOrder = { + +}) +public class BusinessGetDossierSBIRequestType { + + @XmlElement(required = true) + protected String dossierno; + @XmlElement(required = true) + protected String subdossierno; + + /** + * Gets the value of the dossierno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierno() { + return dossierno; + } + + /** + * Sets the value of the dossierno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierno(String value) { + this.dossierno = value; + } + + /** + * Gets the value of the subdossierno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubdossierno() { + return subdossierno; + } + + /** + * Sets the value of the subdossierno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubdossierno(String value) { + this.subdossierno = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierSBIResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierSBIResponseType.java new file mode 100644 index 0000000..1acd431 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierSBIResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessGetDossierSBIResponseType complex type. + * + *

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

+ * <complexType name="businessGetDossierSBIResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessDossierSBI"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessGetDossierSBIResponseType", propOrder = { + +}) +public class BusinessGetDossierSBIResponseType { + + @XmlElement(required = true) + protected BusinessDossierSBI out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessDossierSBI } + * + */ + public BusinessDossierSBI getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessDossierSBI } + * + */ + public void setOut(BusinessDossierSBI value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierV3RequestType.java new file mode 100644 index 0000000..35de2b9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierV3RequestType.java @@ -0,0 +1,114 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessGetDossierV3RequestType complex type. + * + *

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

+ * <complexType name="businessGetDossierV3RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="subdossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessGetDossierV3RequestType", propOrder = { + +}) +public class BusinessGetDossierV3RequestType { + + @XmlElement(required = true) + protected String dossierno; + @XmlElement(required = true) + protected String subdossierno; + protected int page; + + /** + * Gets the value of the dossierno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierno() { + return dossierno; + } + + /** + * Sets the value of the dossierno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierno(String value) { + this.dossierno = value; + } + + /** + * Gets the value of the subdossierno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubdossierno() { + return subdossierno; + } + + /** + * Sets the value of the subdossierno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubdossierno(String value) { + this.subdossierno = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierV3ResponseType.java new file mode 100644 index 0000000..b513581 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierV3ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessGetDossierV3ResponseType complex type. + * + *

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

+ * <complexType name="businessGetDossierV3ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessDossierV3PagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessGetDossierV3ResponseType", propOrder = { + +}) +public class BusinessGetDossierV3ResponseType { + + @XmlElement(required = true) + protected BusinessDossierV3PagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessDossierV3PagedResult } + * + */ + public BusinessDossierV3PagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessDossierV3PagedResult } + * + */ + public void setOut(BusinessDossierV3PagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetEstablishmentNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetEstablishmentNumberRequestType.java new file mode 100644 index 0000000..5e6769a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetEstablishmentNumberRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessGetEstablishmentNumberRequestType complex type. + * + *

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

+ * <complexType name="businessGetEstablishmentNumberRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="subdossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessGetEstablishmentNumberRequestType", propOrder = { + +}) +public class BusinessGetEstablishmentNumberRequestType { + + @XmlElement(required = true) + protected String dossierno; + @XmlElement(required = true) + protected String subdossierno; + + /** + * Gets the value of the dossierno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierno() { + return dossierno; + } + + /** + * Sets the value of the dossierno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierno(String value) { + this.dossierno = value; + } + + /** + * Gets the value of the subdossierno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubdossierno() { + return subdossierno; + } + + /** + * Sets the value of the subdossierno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubdossierno(String value) { + this.subdossierno = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetEstablishmentNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetEstablishmentNumberResponseType.java new file mode 100644 index 0000000..f0542ce --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetEstablishmentNumberResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessGetEstablishmentNumberResponseType complex type. + * + *

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

+ * <complexType name="businessGetEstablishmentNumberResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessGetEstablishmentNumberResponseType", propOrder = { + +}) +public class BusinessGetEstablishmentNumberResponseType { + + @XmlElement(required = true) + protected String out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetSBIDescriptionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetSBIDescriptionRequestType.java new file mode 100644 index 0000000..60d6bd5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetSBIDescriptionRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessGetSBIDescriptionRequestType complex type. + * + *

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

+ * <complexType name="businessGetSBIDescriptionRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="sbicode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessGetSBIDescriptionRequestType", propOrder = { + +}) +public class BusinessGetSBIDescriptionRequestType { + + @XmlElement(required = true) + protected String sbicode; + + /** + * Gets the value of the sbicode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSbicode() { + return sbicode; + } + + /** + * Sets the value of the sbicode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSbicode(String value) { + this.sbicode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetSBIDescriptionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetSBIDescriptionResponseType.java new file mode 100644 index 0000000..0cab176 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetSBIDescriptionResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessGetSBIDescriptionResponseType complex type. + * + *

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

+ * <complexType name="businessGetSBIDescriptionResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessSBICodeInfo"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessGetSBIDescriptionResponseType", propOrder = { + +}) +public class BusinessGetSBIDescriptionResponseType { + + @XmlElement(required = true) + protected BusinessSBICodeInfo out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessSBICodeInfo } + * + */ + public BusinessSBICodeInfo getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessSBICodeInfo } + * + */ + public void setOut(BusinessSBICodeInfo value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReference.java new file mode 100644 index 0000000..2a4a406 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReference.java @@ -0,0 +1,177 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessReference complex type. + * + *

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

+ * <complexType name="BusinessReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="DossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Tradename" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="City" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessReference", propOrder = { + +}) +public class BusinessReference { + + @XmlElement(name = "DossierNo", required = true) + protected String dossierNo; + @XmlElement(name = "SubDossierNo", required = true) + protected String subDossierNo; + @XmlElement(name = "Tradename", required = true) + protected String tradename; + @XmlElement(name = "Streetname", required = true) + protected String streetname; + @XmlElement(name = "City", required = true) + protected String city; + + /** + * Gets the value of the dossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNo() { + return dossierNo; + } + + /** + * Sets the value of the dossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNo(String value) { + this.dossierNo = value; + } + + /** + * Gets the value of the subDossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubDossierNo() { + return subDossierNo; + } + + /** + * Sets the value of the subDossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubDossierNo(String value) { + this.subDossierNo = value; + } + + /** + * Gets the value of the tradename property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradename() { + return tradename; + } + + /** + * Sets the value of the tradename property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradename(String value) { + this.tradename = value; + } + + /** + * Gets the value of the streetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetname() { + return streetname; + } + + /** + * Sets the value of the streetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetname(String value) { + this.streetname = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceArray.java new file mode 100644 index 0000000..753dbab --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessReferenceArray complex type. + * + *

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

+ * <complexType name="BusinessReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessReferenceArray", propOrder = { + "item" +}) +public class BusinessReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BusinessReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferencePagedResult.java new file mode 100644 index 0000000..e0c4be7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferencePagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessReferencePagedResult complex type. + * + *

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

+ * <complexType name="BusinessReferencePagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}BusinessReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessReferencePagedResult", propOrder = { + +}) +public class BusinessReferencePagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected BusinessReferenceArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link BusinessReferenceArray } + * + */ + public BusinessReferenceArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link BusinessReferenceArray } + * + */ + public void setResults(BusinessReferenceArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2.java new file mode 100644 index 0000000..76908e7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2.java @@ -0,0 +1,231 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessReferenceV2 complex type. + * + *

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

+ * <complexType name="BusinessReferenceV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="DossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Tradename" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondenceStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondenceCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessReferenceV2", propOrder = { + +}) +public class BusinessReferenceV2 { + + @XmlElement(name = "DossierNo", required = true) + protected String dossierNo; + @XmlElement(name = "SubDossierNo", required = true) + protected String subDossierNo; + @XmlElement(name = "Tradename", required = true) + protected String tradename; + @XmlElement(name = "EstablishmentStreetname", required = true) + protected String establishmentStreetname; + @XmlElement(name = "EstablishmentCity", required = true) + protected String establishmentCity; + @XmlElement(name = "CorrespondenceStreetname", required = true) + protected String correspondenceStreetname; + @XmlElement(name = "CorrespondenceCity", required = true) + protected String correspondenceCity; + + /** + * Gets the value of the dossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNo() { + return dossierNo; + } + + /** + * Sets the value of the dossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNo(String value) { + this.dossierNo = value; + } + + /** + * Gets the value of the subDossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubDossierNo() { + return subDossierNo; + } + + /** + * Sets the value of the subDossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubDossierNo(String value) { + this.subDossierNo = value; + } + + /** + * Gets the value of the tradename property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradename() { + return tradename; + } + + /** + * Sets the value of the tradename property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradename(String value) { + this.tradename = value; + } + + /** + * Gets the value of the establishmentStreetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentStreetname() { + return establishmentStreetname; + } + + /** + * Sets the value of the establishmentStreetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentStreetname(String value) { + this.establishmentStreetname = value; + } + + /** + * Gets the value of the establishmentCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCity() { + return establishmentCity; + } + + /** + * Sets the value of the establishmentCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCity(String value) { + this.establishmentCity = value; + } + + /** + * Gets the value of the correspondenceStreetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceStreetname() { + return correspondenceStreetname; + } + + /** + * Sets the value of the correspondenceStreetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceStreetname(String value) { + this.correspondenceStreetname = value; + } + + /** + * Gets the value of the correspondenceCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCity() { + return correspondenceCity; + } + + /** + * Sets the value of the correspondenceCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCity(String value) { + this.correspondenceCity = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2Array.java new file mode 100644 index 0000000..1adb8c2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessReferenceV2Array complex type. + * + *

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

+ * <complexType name="BusinessReferenceV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessReferenceV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessReferenceV2Array", propOrder = { + "item" +}) +public class BusinessReferenceV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BusinessReferenceV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2PagedResult.java new file mode 100644 index 0000000..720fa48 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2PagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessReferenceV2PagedResult complex type. + * + *

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

+ * <complexType name="BusinessReferenceV2PagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}BusinessReferenceV2Array"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessReferenceV2PagedResult", propOrder = { + +}) +public class BusinessReferenceV2PagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected BusinessReferenceV2Array results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link BusinessReferenceV2Array } + * + */ + public BusinessReferenceV2Array getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link BusinessReferenceV2Array } + * + */ + public void setResults(BusinessReferenceV2Array value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3.java new file mode 100644 index 0000000..32c246f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3.java @@ -0,0 +1,250 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessReferenceV3 complex type. + * + *

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

+ * <complexType name="BusinessReferenceV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="DossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="Tradename" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="EstablishmentCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondenceStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="CorrespondenceCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="IndicationEconomicallyActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessReferenceV3", propOrder = { + +}) +public class BusinessReferenceV3 { + + @XmlElement(name = "DossierNo", required = true) + protected String dossierNo; + @XmlElement(name = "SubDossierNo", required = true) + protected String subDossierNo; + @XmlElement(name = "Tradename", required = true) + protected String tradename; + @XmlElement(name = "EstablishmentStreetname", required = true) + protected String establishmentStreetname; + @XmlElement(name = "EstablishmentCity", required = true) + protected String establishmentCity; + @XmlElement(name = "CorrespondenceStreetname", required = true) + protected String correspondenceStreetname; + @XmlElement(name = "CorrespondenceCity", required = true) + protected String correspondenceCity; + @XmlElement(name = "IndicationEconomicallyActive") + protected boolean indicationEconomicallyActive; + + /** + * Gets the value of the dossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNo() { + return dossierNo; + } + + /** + * Sets the value of the dossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNo(String value) { + this.dossierNo = value; + } + + /** + * Gets the value of the subDossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubDossierNo() { + return subDossierNo; + } + + /** + * Sets the value of the subDossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubDossierNo(String value) { + this.subDossierNo = value; + } + + /** + * Gets the value of the tradename property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradename() { + return tradename; + } + + /** + * Sets the value of the tradename property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradename(String value) { + this.tradename = value; + } + + /** + * Gets the value of the establishmentStreetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentStreetname() { + return establishmentStreetname; + } + + /** + * Sets the value of the establishmentStreetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentStreetname(String value) { + this.establishmentStreetname = value; + } + + /** + * Gets the value of the establishmentCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCity() { + return establishmentCity; + } + + /** + * Sets the value of the establishmentCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCity(String value) { + this.establishmentCity = value; + } + + /** + * Gets the value of the correspondenceStreetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceStreetname() { + return correspondenceStreetname; + } + + /** + * Sets the value of the correspondenceStreetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceStreetname(String value) { + this.correspondenceStreetname = value; + } + + /** + * Gets the value of the correspondenceCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCity() { + return correspondenceCity; + } + + /** + * Sets the value of the correspondenceCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCity(String value) { + this.correspondenceCity = value; + } + + /** + * Gets the value of the indicationEconomicallyActive property. + * + */ + public boolean isIndicationEconomicallyActive() { + return indicationEconomicallyActive; + } + + /** + * Sets the value of the indicationEconomicallyActive property. + * + */ + public void setIndicationEconomicallyActive(boolean value) { + this.indicationEconomicallyActive = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3Array.java new file mode 100644 index 0000000..7307037 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessReferenceV3Array complex type. + * + *

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

+ * <complexType name="BusinessReferenceV3Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessReferenceV3" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessReferenceV3Array", propOrder = { + "item" +}) +public class BusinessReferenceV3Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BusinessReferenceV3 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3PagedResult.java new file mode 100644 index 0000000..881874f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3PagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessReferenceV3PagedResult complex type. + * + *

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

+ * <complexType name="BusinessReferenceV3PagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}BusinessReferenceV3Array"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessReferenceV3PagedResult", propOrder = { + +}) +public class BusinessReferenceV3PagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected BusinessReferenceV3Array results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link BusinessReferenceV3Array } + * + */ + public BusinessReferenceV3Array getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link BusinessReferenceV3Array } + * + */ + public void setResults(BusinessReferenceV3Array value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICode.java new file mode 100644 index 0000000..aa43873 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICode.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessSBICode complex type. + * + *

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

+ * <complexType name="BusinessSBICode">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="sbicode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessSBICode", propOrder = { + +}) +public class BusinessSBICode { + + @XmlElement(required = true) + protected String sbicode; + @XmlElement(required = true) + protected String description; + + /** + * Gets the value of the sbicode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSbicode() { + return sbicode; + } + + /** + * Sets the value of the sbicode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSbicode(String value) { + this.sbicode = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICodeArray.java new file mode 100644 index 0000000..6576cf6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICodeArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessSBICodeArray complex type. + * + *

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

+ * <complexType name="BusinessSBICodeArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessSBICode" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessSBICodeArray", propOrder = { + "item" +}) +public class BusinessSBICodeArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BusinessSBICode } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICodeInfo.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICodeInfo.java new file mode 100644 index 0000000..749c5c9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICodeInfo.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessSBICodeInfo complex type. + * + *

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

+ * <complexType name="BusinessSBICodeInfo">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="section" type="{http://www.webservices.nl/soap/}BusinessSBISection"/>
+ *         <element name="sbicodes" type="{http://www.webservices.nl/soap/}BusinessSBICodeArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessSBICodeInfo", propOrder = { + +}) +public class BusinessSBICodeInfo { + + @XmlElement(required = true) + protected BusinessSBISection section; + @XmlElement(required = true) + protected BusinessSBICodeArray sbicodes; + + /** + * Gets the value of the section property. + * + * @return + * possible object is + * {@link BusinessSBISection } + * + */ + public BusinessSBISection getSection() { + return section; + } + + /** + * Sets the value of the section property. + * + * @param value + * allowed object is + * {@link BusinessSBISection } + * + */ + public void setSection(BusinessSBISection value) { + this.section = value; + } + + /** + * Gets the value of the sbicodes property. + * + * @return + * possible object is + * {@link BusinessSBICodeArray } + * + */ + public BusinessSBICodeArray getSbicodes() { + return sbicodes; + } + + /** + * Sets the value of the sbicodes property. + * + * @param value + * allowed object is + * {@link BusinessSBICodeArray } + * + */ + public void setSbicodes(BusinessSBICodeArray value) { + this.sbicodes = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBISection.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBISection.java new file mode 100644 index 0000000..8f818d8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBISection.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessSBISection complex type. + * + *

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

+ * <complexType name="BusinessSBISection">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="sectioncode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessSBISection", propOrder = { + +}) +public class BusinessSBISection { + + @XmlElement(required = true) + protected String sectioncode; + @XmlElement(required = true) + protected String description; + + /** + * Gets the value of the sectioncode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectioncode() { + return sectioncode; + } + + /** + * Sets the value of the sectioncode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectioncode(String value) { + this.sectioncode = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBISectionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBISectionArray.java new file mode 100644 index 0000000..401c49b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBISectionArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessSBISectionArray complex type. + * + *

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

+ * <complexType name="BusinessSBISectionArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessSBISection" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessSBISectionArray", propOrder = { + "item" +}) +public class BusinessSBISectionArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BusinessSBISection } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBIToBIKRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBIToBIKRequestType.java new file mode 100644 index 0000000..59ffba8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBIToBIKRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSBIToBIKRequestType complex type. + * + *

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

+ * <complexType name="businessSBIToBIKRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="sbicode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSBIToBIKRequestType", propOrder = { + +}) +public class BusinessSBIToBIKRequestType { + + @XmlElement(required = true) + protected String sbicode; + + /** + * Gets the value of the sbicode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSbicode() { + return sbicode; + } + + /** + * Sets the value of the sbicode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSbicode(String value) { + this.sbicode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBIToBIKResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBIToBIKResponseType.java new file mode 100644 index 0000000..2818fea --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBIToBIKResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSBIToBIKResponseType complex type. + * + *

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

+ * <complexType name="businessSBIToBIKResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessBIKCodeArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSBIToBIKResponseType", propOrder = { + +}) +public class BusinessSBIToBIKResponseType { + + @XmlElement(required = true) + protected BusinessBIKCodeArray out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessBIKCodeArray } + * + */ + public BusinessBIKCodeArray getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessBIKCodeArray } + * + */ + public void setOut(BusinessBIKCodeArray value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchAddressRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchAddressRequestType.java new file mode 100644 index 0000000..c6bdb3d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchAddressRequestType.java @@ -0,0 +1,159 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchAddressRequestType complex type. + * + *

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

+ * <complexType name="businessSearchAddressRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="housenoaddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="cityname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchAddressRequestType", propOrder = { + +}) +public class BusinessSearchAddressRequestType { + + @XmlElement(required = true) + protected String streetname; + protected int houseno; + @XmlElement(required = true) + protected String housenoaddition; + @XmlElement(required = true) + protected String cityname; + protected int page; + + /** + * Gets the value of the streetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetname() { + return streetname; + } + + /** + * Sets the value of the streetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetname(String value) { + this.streetname = value; + } + + /** + * Gets the value of the houseno property. + * + */ + public int getHouseno() { + return houseno; + } + + /** + * Sets the value of the houseno property. + * + */ + public void setHouseno(int value) { + this.houseno = value; + } + + /** + * Gets the value of the housenoaddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHousenoaddition() { + return housenoaddition; + } + + /** + * Sets the value of the housenoaddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHousenoaddition(String value) { + this.housenoaddition = value; + } + + /** + * Gets the value of the cityname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCityname() { + return cityname; + } + + /** + * Sets the value of the cityname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCityname(String value) { + this.cityname = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchAddressResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchAddressResponseType.java new file mode 100644 index 0000000..0c5424b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchAddressResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchAddressResponseType complex type. + * + *

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

+ * <complexType name="businessSearchAddressResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchAddressResponseType", propOrder = { + +}) +public class BusinessSearchAddressResponseType { + + @XmlElement(required = true) + protected BusinessReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessReferencePagedResult } + * + */ + public BusinessReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessReferencePagedResult } + * + */ + public void setOut(BusinessReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchDossierNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchDossierNumberRequestType.java new file mode 100644 index 0000000..5254328 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchDossierNumberRequestType.java @@ -0,0 +1,114 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchDossierNumberRequestType complex type. + * + *

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

+ * <complexType name="businessSearchDossierNumberRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="subdossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchDossierNumberRequestType", propOrder = { + +}) +public class BusinessSearchDossierNumberRequestType { + + @XmlElement(required = true) + protected String dossierno; + @XmlElement(required = true) + protected String subdossierno; + protected int page; + + /** + * Gets the value of the dossierno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierno() { + return dossierno; + } + + /** + * Sets the value of the dossierno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierno(String value) { + this.dossierno = value; + } + + /** + * Gets the value of the subdossierno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubdossierno() { + return subdossierno; + } + + /** + * Sets the value of the subdossierno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubdossierno(String value) { + this.subdossierno = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchDossierNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchDossierNumberResponseType.java new file mode 100644 index 0000000..599eb1a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchDossierNumberResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchDossierNumberResponseType complex type. + * + *

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

+ * <complexType name="businessSearchDossierNumberResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchDossierNumberResponseType", propOrder = { + +}) +public class BusinessSearchDossierNumberResponseType { + + @XmlElement(required = true) + protected BusinessReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessReferencePagedResult } + * + */ + public BusinessReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessReferencePagedResult } + * + */ + public void setOut(BusinessReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchNameRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchNameRequestType.java new file mode 100644 index 0000000..878e3ab --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchNameRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchNameRequestType complex type. + * + *

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

+ * <complexType name="businessSearchNameRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="tradename" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchNameRequestType", propOrder = { + +}) +public class BusinessSearchNameRequestType { + + @XmlElement(required = true) + protected String tradename; + protected int page; + + /** + * Gets the value of the tradename property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradename() { + return tradename; + } + + /** + * Sets the value of the tradename property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradename(String value) { + this.tradename = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchNameResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchNameResponseType.java new file mode 100644 index 0000000..cdd03a6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchNameResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchNameResponseType complex type. + * + *

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

+ * <complexType name="businessSearchNameResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchNameResponseType", propOrder = { + +}) +public class BusinessSearchNameResponseType { + + @XmlElement(required = true) + protected BusinessReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessReferencePagedResult } + * + */ + public BusinessReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessReferencePagedResult } + * + */ + public void setOut(BusinessReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersRequestType.java new file mode 100644 index 0000000..d5e9f6d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersRequestType.java @@ -0,0 +1,267 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchParametersRequestType complex type. + * + *

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

+ * <complexType name="businessSearchParametersRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="tradename" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="cityname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="lettercomb" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="housenoaddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephoneno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchParametersRequestType", propOrder = { + +}) +public class BusinessSearchParametersRequestType { + + @XmlElement(required = true) + protected String tradename; + @XmlElement(required = true) + protected String cityname; + @XmlElement(required = true) + protected String streetname; + @XmlElement(required = true) + protected String nbcode; + @XmlElement(required = true) + protected String lettercomb; + protected int houseno; + @XmlElement(required = true) + protected String housenoaddition; + @XmlElement(required = true) + protected String telephoneno; + protected int page; + + /** + * Gets the value of the tradename property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradename() { + return tradename; + } + + /** + * Sets the value of the tradename property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradename(String value) { + this.tradename = value; + } + + /** + * Gets the value of the cityname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCityname() { + return cityname; + } + + /** + * Sets the value of the cityname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCityname(String value) { + this.cityname = value; + } + + /** + * Gets the value of the streetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetname() { + return streetname; + } + + /** + * Sets the value of the streetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetname(String value) { + this.streetname = value; + } + + /** + * Gets the value of the nbcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcode() { + return nbcode; + } + + /** + * Sets the value of the nbcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcode(String value) { + this.nbcode = value; + } + + /** + * Gets the value of the lettercomb property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLettercomb() { + return lettercomb; + } + + /** + * Sets the value of the lettercomb property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLettercomb(String value) { + this.lettercomb = value; + } + + /** + * Gets the value of the houseno property. + * + */ + public int getHouseno() { + return houseno; + } + + /** + * Sets the value of the houseno property. + * + */ + public void setHouseno(int value) { + this.houseno = value; + } + + /** + * Gets the value of the housenoaddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHousenoaddition() { + return housenoaddition; + } + + /** + * Sets the value of the housenoaddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHousenoaddition(String value) { + this.housenoaddition = value; + } + + /** + * Gets the value of the telephoneno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneno() { + return telephoneno; + } + + /** + * Sets the value of the telephoneno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneno(String value) { + this.telephoneno = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersResponseType.java new file mode 100644 index 0000000..92ac1fc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchParametersResponseType complex type. + * + *

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

+ * <complexType name="businessSearchParametersResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchParametersResponseType", propOrder = { + +}) +public class BusinessSearchParametersResponseType { + + @XmlElement(required = true) + protected BusinessReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessReferencePagedResult } + * + */ + public BusinessReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessReferencePagedResult } + * + */ + public void setOut(BusinessReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV2RequestType.java new file mode 100644 index 0000000..73875c6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV2RequestType.java @@ -0,0 +1,240 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchParametersV2RequestType complex type. + * + *

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

+ * <complexType name="businessSearchParametersV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="tradename" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="cityname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="housenoaddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephoneno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchParametersV2RequestType", propOrder = { + +}) +public class BusinessSearchParametersV2RequestType { + + @XmlElement(required = true) + protected String tradename; + @XmlElement(required = true) + protected String cityname; + @XmlElement(required = true) + protected String streetname; + @XmlElement(required = true) + protected String postcode; + protected int houseno; + @XmlElement(required = true) + protected String housenoaddition; + @XmlElement(required = true) + protected String telephoneno; + protected int page; + + /** + * Gets the value of the tradename property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradename() { + return tradename; + } + + /** + * Sets the value of the tradename property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradename(String value) { + this.tradename = value; + } + + /** + * Gets the value of the cityname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCityname() { + return cityname; + } + + /** + * Sets the value of the cityname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCityname(String value) { + this.cityname = value; + } + + /** + * Gets the value of the streetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetname() { + return streetname; + } + + /** + * Sets the value of the streetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetname(String value) { + this.streetname = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the houseno property. + * + */ + public int getHouseno() { + return houseno; + } + + /** + * Sets the value of the houseno property. + * + */ + public void setHouseno(int value) { + this.houseno = value; + } + + /** + * Gets the value of the housenoaddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHousenoaddition() { + return housenoaddition; + } + + /** + * Sets the value of the housenoaddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHousenoaddition(String value) { + this.housenoaddition = value; + } + + /** + * Gets the value of the telephoneno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneno() { + return telephoneno; + } + + /** + * Sets the value of the telephoneno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneno(String value) { + this.telephoneno = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV2ResponseType.java new file mode 100644 index 0000000..fd440b8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchParametersV2ResponseType complex type. + * + *

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

+ * <complexType name="businessSearchParametersV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferenceV2PagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchParametersV2ResponseType", propOrder = { + +}) +public class BusinessSearchParametersV2ResponseType { + + @XmlElement(required = true) + protected BusinessReferenceV2PagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessReferenceV2PagedResult } + * + */ + public BusinessReferenceV2PagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessReferenceV2PagedResult } + * + */ + public void setOut(BusinessReferenceV2PagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV3RequestType.java new file mode 100644 index 0000000..cd56515 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV3RequestType.java @@ -0,0 +1,240 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchParametersV3RequestType complex type. + * + *

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

+ * <complexType name="businessSearchParametersV3RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="tradename" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="cityname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="housenoaddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephoneno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchParametersV3RequestType", propOrder = { + +}) +public class BusinessSearchParametersV3RequestType { + + @XmlElement(required = true) + protected String tradename; + @XmlElement(required = true) + protected String cityname; + @XmlElement(required = true) + protected String streetname; + @XmlElement(required = true) + protected String postcode; + protected int houseno; + @XmlElement(required = true) + protected String housenoaddition; + @XmlElement(required = true) + protected String telephoneno; + protected int page; + + /** + * Gets the value of the tradename property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradename() { + return tradename; + } + + /** + * Sets the value of the tradename property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradename(String value) { + this.tradename = value; + } + + /** + * Gets the value of the cityname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCityname() { + return cityname; + } + + /** + * Sets the value of the cityname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCityname(String value) { + this.cityname = value; + } + + /** + * Gets the value of the streetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetname() { + return streetname; + } + + /** + * Sets the value of the streetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetname(String value) { + this.streetname = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the houseno property. + * + */ + public int getHouseno() { + return houseno; + } + + /** + * Sets the value of the houseno property. + * + */ + public void setHouseno(int value) { + this.houseno = value; + } + + /** + * Gets the value of the housenoaddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHousenoaddition() { + return housenoaddition; + } + + /** + * Sets the value of the housenoaddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHousenoaddition(String value) { + this.housenoaddition = value; + } + + /** + * Gets the value of the telephoneno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneno() { + return telephoneno; + } + + /** + * Sets the value of the telephoneno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneno(String value) { + this.telephoneno = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV3ResponseType.java new file mode 100644 index 0000000..c1c5839 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV3ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchParametersV3ResponseType complex type. + * + *

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

+ * <complexType name="businessSearchParametersV3ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferenceV3PagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchParametersV3ResponseType", propOrder = { + +}) +public class BusinessSearchParametersV3ResponseType { + + @XmlElement(required = true) + protected BusinessReferenceV3PagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessReferenceV3PagedResult } + * + */ + public BusinessReferenceV3PagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessReferenceV3PagedResult } + * + */ + public void setOut(BusinessReferenceV3PagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchPostcodeRequestType.java new file mode 100644 index 0000000..97bea42 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchPostcodeRequestType.java @@ -0,0 +1,159 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchPostcodeRequestType complex type. + * + *

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

+ * <complexType name="businessSearchPostcodeRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="lettercomb" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="housenoaddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchPostcodeRequestType", propOrder = { + +}) +public class BusinessSearchPostcodeRequestType { + + @XmlElement(required = true) + protected String nbcode; + @XmlElement(required = true) + protected String lettercomb; + protected int houseno; + @XmlElement(required = true) + protected String housenoaddition; + protected int page; + + /** + * Gets the value of the nbcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcode() { + return nbcode; + } + + /** + * Sets the value of the nbcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcode(String value) { + this.nbcode = value; + } + + /** + * Gets the value of the lettercomb property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLettercomb() { + return lettercomb; + } + + /** + * Sets the value of the lettercomb property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLettercomb(String value) { + this.lettercomb = value; + } + + /** + * Gets the value of the houseno property. + * + */ + public int getHouseno() { + return houseno; + } + + /** + * Sets the value of the houseno property. + * + */ + public void setHouseno(int value) { + this.houseno = value; + } + + /** + * Gets the value of the housenoaddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHousenoaddition() { + return housenoaddition; + } + + /** + * Sets the value of the housenoaddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHousenoaddition(String value) { + this.housenoaddition = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchPostcodeResponseType.java new file mode 100644 index 0000000..0ff4113 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchPostcodeResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchPostcodeResponseType complex type. + * + *

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

+ * <complexType name="businessSearchPostcodeResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchPostcodeResponseType", propOrder = { + +}) +public class BusinessSearchPostcodeResponseType { + + @XmlElement(required = true) + protected BusinessReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessReferencePagedResult } + * + */ + public BusinessReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessReferencePagedResult } + * + */ + public void setOut(BusinessReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionRequestType.java new file mode 100644 index 0000000..b12632d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionRequestType.java @@ -0,0 +1,306 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchSelectionRequestType complex type. + * + *

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

+ * <complexType name="businessSearchSelectionRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="city" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="postcode" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="sbi" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="primary_sbi_only" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="legal_forms" type="{http://www.webservices.nl/soap/}intArray"/>
+ *         <element name="employees_min" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="employees_max" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="economically_active" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="financial_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchSelectionRequestType", propOrder = { + +}) +public class BusinessSearchSelectionRequestType { + + @XmlElement(required = true) + protected StringArray city; + @XmlElement(required = true) + protected StringArray postcode; + @XmlElement(required = true) + protected StringArray sbi; + @XmlElement(name = "primary_sbi_only") + protected boolean primarySbiOnly; + @XmlElement(name = "legal_forms", required = true) + protected IntArray legalForms; + @XmlElement(name = "employees_min") + protected int employeesMin; + @XmlElement(name = "employees_max") + protected int employeesMax; + @XmlElement(name = "economically_active", required = true) + protected String economicallyActive; + @XmlElement(name = "financial_status", required = true) + protected String financialStatus; + @XmlElement(name = "changed_since", required = true) + protected String changedSince; + protected int page; + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setCity(StringArray value) { + this.city = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setPostcode(StringArray value) { + this.postcode = value; + } + + /** + * Gets the value of the sbi property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getSbi() { + return sbi; + } + + /** + * Sets the value of the sbi property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setSbi(StringArray value) { + this.sbi = value; + } + + /** + * Gets the value of the primarySbiOnly property. + * + */ + public boolean isPrimarySbiOnly() { + return primarySbiOnly; + } + + /** + * Sets the value of the primarySbiOnly property. + * + */ + public void setPrimarySbiOnly(boolean value) { + this.primarySbiOnly = value; + } + + /** + * Gets the value of the legalForms property. + * + * @return + * possible object is + * {@link IntArray } + * + */ + public IntArray getLegalForms() { + return legalForms; + } + + /** + * Sets the value of the legalForms property. + * + * @param value + * allowed object is + * {@link IntArray } + * + */ + public void setLegalForms(IntArray value) { + this.legalForms = value; + } + + /** + * Gets the value of the employeesMin property. + * + */ + public int getEmployeesMin() { + return employeesMin; + } + + /** + * Sets the value of the employeesMin property. + * + */ + public void setEmployeesMin(int value) { + this.employeesMin = value; + } + + /** + * Gets the value of the employeesMax property. + * + */ + public int getEmployeesMax() { + return employeesMax; + } + + /** + * Sets the value of the employeesMax property. + * + */ + public void setEmployeesMax(int value) { + this.employeesMax = value; + } + + /** + * Gets the value of the economicallyActive property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEconomicallyActive() { + return economicallyActive; + } + + /** + * Sets the value of the economicallyActive property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEconomicallyActive(String value) { + this.economicallyActive = value; + } + + /** + * Gets the value of the financialStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFinancialStatus() { + return financialStatus; + } + + /** + * Sets the value of the financialStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFinancialStatus(String value) { + this.financialStatus = value; + } + + /** + * Gets the value of the changedSince property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getChangedSince() { + return changedSince; + } + + /** + * Sets the value of the changedSince property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setChangedSince(String value) { + this.changedSince = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionResponseType.java new file mode 100644 index 0000000..5c9c58e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchSelectionResponseType complex type. + * + *

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

+ * <complexType name="businessSearchSelectionResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchSelectionResponseType", propOrder = { + +}) +public class BusinessSearchSelectionResponseType { + + @XmlElement(required = true) + protected BusinessReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessReferencePagedResult } + * + */ + public BusinessReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessReferencePagedResult } + * + */ + public void setOut(BusinessReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionV2RequestType.java new file mode 100644 index 0000000..15663c9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionV2RequestType.java @@ -0,0 +1,333 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchSelectionV2RequestType complex type. + * + *

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

+ * <complexType name="businessSearchSelectionV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="city" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="postcode" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="sbi" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="primary_sbi_only" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="legal_forms" type="{http://www.webservices.nl/soap/}intArray"/>
+ *         <element name="employees_min" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="employees_max" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="economically_active" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="financial_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="new_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchSelectionV2RequestType", propOrder = { + +}) +public class BusinessSearchSelectionV2RequestType { + + @XmlElement(required = true) + protected StringArray city; + @XmlElement(required = true) + protected StringArray postcode; + @XmlElement(required = true) + protected StringArray sbi; + @XmlElement(name = "primary_sbi_only") + protected boolean primarySbiOnly; + @XmlElement(name = "legal_forms", required = true) + protected IntArray legalForms; + @XmlElement(name = "employees_min") + protected int employeesMin; + @XmlElement(name = "employees_max") + protected int employeesMax; + @XmlElement(name = "economically_active", required = true) + protected String economicallyActive; + @XmlElement(name = "financial_status", required = true) + protected String financialStatus; + @XmlElement(name = "changed_since", required = true) + protected String changedSince; + @XmlElement(name = "new_since", required = true) + protected String newSince; + protected int page; + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setCity(StringArray value) { + this.city = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setPostcode(StringArray value) { + this.postcode = value; + } + + /** + * Gets the value of the sbi property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getSbi() { + return sbi; + } + + /** + * Sets the value of the sbi property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setSbi(StringArray value) { + this.sbi = value; + } + + /** + * Gets the value of the primarySbiOnly property. + * + */ + public boolean isPrimarySbiOnly() { + return primarySbiOnly; + } + + /** + * Sets the value of the primarySbiOnly property. + * + */ + public void setPrimarySbiOnly(boolean value) { + this.primarySbiOnly = value; + } + + /** + * Gets the value of the legalForms property. + * + * @return + * possible object is + * {@link IntArray } + * + */ + public IntArray getLegalForms() { + return legalForms; + } + + /** + * Sets the value of the legalForms property. + * + * @param value + * allowed object is + * {@link IntArray } + * + */ + public void setLegalForms(IntArray value) { + this.legalForms = value; + } + + /** + * Gets the value of the employeesMin property. + * + */ + public int getEmployeesMin() { + return employeesMin; + } + + /** + * Sets the value of the employeesMin property. + * + */ + public void setEmployeesMin(int value) { + this.employeesMin = value; + } + + /** + * Gets the value of the employeesMax property. + * + */ + public int getEmployeesMax() { + return employeesMax; + } + + /** + * Sets the value of the employeesMax property. + * + */ + public void setEmployeesMax(int value) { + this.employeesMax = value; + } + + /** + * Gets the value of the economicallyActive property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEconomicallyActive() { + return economicallyActive; + } + + /** + * Sets the value of the economicallyActive property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEconomicallyActive(String value) { + this.economicallyActive = value; + } + + /** + * Gets the value of the financialStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFinancialStatus() { + return financialStatus; + } + + /** + * Sets the value of the financialStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFinancialStatus(String value) { + this.financialStatus = value; + } + + /** + * Gets the value of the changedSince property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getChangedSince() { + return changedSince; + } + + /** + * Sets the value of the changedSince property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setChangedSince(String value) { + this.changedSince = value; + } + + /** + * Gets the value of the newSince property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNewSince() { + return newSince; + } + + /** + * Sets the value of the newSince property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNewSince(String value) { + this.newSince = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionV2ResponseType.java new file mode 100644 index 0000000..56ee4b3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessSearchSelectionV2ResponseType complex type. + * + *

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

+ * <complexType name="businessSearchSelectionV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessSearchSelectionV2ResponseType", propOrder = { + +}) +public class BusinessSearchSelectionV2ResponseType { + + @XmlElement(required = true) + protected BusinessReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessReferencePagedResult } + * + */ + public BusinessReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessReferencePagedResult } + * + */ + public void setOut(BusinessReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateAddDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateAddDossierRequestType.java new file mode 100644 index 0000000..52b6e69 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateAddDossierRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessUpdateAddDossierRequestType complex type. + * + *

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

+ * <complexType name="businessUpdateAddDossierRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="subdossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessUpdateAddDossierRequestType", propOrder = { + +}) +public class BusinessUpdateAddDossierRequestType { + + @XmlElement(required = true) + protected String dossierno; + @XmlElement(required = true) + protected String subdossierno; + + /** + * Gets the value of the dossierno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierno() { + return dossierno; + } + + /** + * Sets the value of the dossierno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierno(String value) { + this.dossierno = value; + } + + /** + * Gets the value of the subdossierno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubdossierno() { + return subdossierno; + } + + /** + * Sets the value of the subdossierno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubdossierno(String value) { + this.subdossierno = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateAddDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateAddDossierResponseType.java new file mode 100644 index 0000000..249a0e0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateAddDossierResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessUpdateAddDossierResponseType complex type. + * + *

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

+ * <complexType name="businessUpdateAddDossierResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessUpdateAddDossierResponseType") +public class BusinessUpdateAddDossierResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateCheckDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateCheckDossierRequestType.java new file mode 100644 index 0000000..4a039ab --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateCheckDossierRequestType.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessUpdateCheckDossierRequestType complex type. + * + *

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

+ * <complexType name="businessUpdateCheckDossierRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="subdossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessUpdateCheckDossierRequestType", propOrder = { + +}) +public class BusinessUpdateCheckDossierRequestType { + + @XmlElement(required = true) + protected String dossierno; + @XmlElement(required = true) + protected String subdossierno; + @XmlElement(name = "update_types", required = true) + protected StringArray updateTypes; + + /** + * Gets the value of the dossierno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierno() { + return dossierno; + } + + /** + * Sets the value of the dossierno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierno(String value) { + this.dossierno = value; + } + + /** + * Gets the value of the subdossierno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubdossierno() { + return subdossierno; + } + + /** + * Sets the value of the subdossierno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubdossierno(String value) { + this.subdossierno = value; + } + + /** + * Gets the value of the updateTypes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getUpdateTypes() { + return updateTypes; + } + + /** + * Sets the value of the updateTypes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setUpdateTypes(StringArray value) { + this.updateTypes = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateCheckDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateCheckDossierResponseType.java new file mode 100644 index 0000000..2e3e909 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateCheckDossierResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessUpdateCheckDossierResponseType complex type. + * + *

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

+ * <complexType name="businessUpdateCheckDossierResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessUpdateReference"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessUpdateCheckDossierResponseType", propOrder = { + +}) +public class BusinessUpdateCheckDossierResponseType { + + @XmlElement(required = true) + protected BusinessUpdateReference out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessUpdateReference } + * + */ + public BusinessUpdateReference getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessUpdateReference } + * + */ + public void setOut(BusinessUpdateReference value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetChangedDossiersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetChangedDossiersRequestType.java new file mode 100644 index 0000000..daa9804 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetChangedDossiersRequestType.java @@ -0,0 +1,117 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for businessUpdateGetChangedDossiersRequestType complex type. + * + *

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

+ * <complexType name="businessUpdateGetChangedDossiersRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessUpdateGetChangedDossiersRequestType", propOrder = { + +}) +public class BusinessUpdateGetChangedDossiersRequestType { + + @XmlElement(name = "changed_since", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar changedSince; + @XmlElement(name = "update_types", required = true) + protected StringArray updateTypes; + protected int page; + + /** + * Gets the value of the changedSince property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getChangedSince() { + return changedSince; + } + + /** + * Sets the value of the changedSince property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setChangedSince(XMLGregorianCalendar value) { + this.changedSince = value; + } + + /** + * Gets the value of the updateTypes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getUpdateTypes() { + return updateTypes; + } + + /** + * Sets the value of the updateTypes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setUpdateTypes(StringArray value) { + this.updateTypes = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetChangedDossiersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetChangedDossiersResponseType.java new file mode 100644 index 0000000..c0ecdb5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetChangedDossiersResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessUpdateGetChangedDossiersResponseType complex type. + * + *

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

+ * <complexType name="businessUpdateGetChangedDossiersResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessUpdateReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessUpdateGetChangedDossiersResponseType", propOrder = { + +}) +public class BusinessUpdateGetChangedDossiersResponseType { + + @XmlElement(required = true) + protected BusinessUpdateReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessUpdateReferencePagedResult } + * + */ + public BusinessUpdateReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessUpdateReferencePagedResult } + * + */ + public void setOut(BusinessUpdateReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetDossiersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetDossiersRequestType.java new file mode 100644 index 0000000..7483446 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetDossiersRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessUpdateGetDossiersRequestType complex type. + * + *

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

+ * <complexType name="businessUpdateGetDossiersRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessUpdateGetDossiersRequestType", propOrder = { + +}) +public class BusinessUpdateGetDossiersRequestType { + + @XmlElement(name = "update_types", required = true) + protected StringArray updateTypes; + protected int page; + + /** + * Gets the value of the updateTypes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getUpdateTypes() { + return updateTypes; + } + + /** + * Sets the value of the updateTypes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setUpdateTypes(StringArray value) { + this.updateTypes = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetDossiersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetDossiersResponseType.java new file mode 100644 index 0000000..50f7594 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetDossiersResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessUpdateGetDossiersResponseType complex type. + * + *

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

+ * <complexType name="businessUpdateGetDossiersResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessUpdateReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessUpdateGetDossiersResponseType", propOrder = { + +}) +public class BusinessUpdateGetDossiersResponseType { + + @XmlElement(required = true) + protected BusinessUpdateReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link BusinessUpdateReferencePagedResult } + * + */ + public BusinessUpdateReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link BusinessUpdateReferencePagedResult } + * + */ + public void setOut(BusinessUpdateReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReference.java new file mode 100644 index 0000000..ac9142e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReference.java @@ -0,0 +1,153 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for BusinessUpdateReference complex type. + * + *

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

+ * <complexType name="BusinessUpdateReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="DossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="SubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="UpdateTypes" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="DateLastUpdate" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessUpdateReference", propOrder = { + +}) +public class BusinessUpdateReference { + + @XmlElement(name = "DossierNo", required = true) + protected String dossierNo; + @XmlElement(name = "SubDossierNo", required = true) + protected String subDossierNo; + @XmlElement(name = "UpdateTypes", required = true) + protected StringArray updateTypes; + @XmlElement(name = "DateLastUpdate", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateLastUpdate; + + /** + * Gets the value of the dossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNo() { + return dossierNo; + } + + /** + * Sets the value of the dossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNo(String value) { + this.dossierNo = value; + } + + /** + * Gets the value of the subDossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubDossierNo() { + return subDossierNo; + } + + /** + * Sets the value of the subDossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubDossierNo(String value) { + this.subDossierNo = value; + } + + /** + * Gets the value of the updateTypes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getUpdateTypes() { + return updateTypes; + } + + /** + * Sets the value of the updateTypes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setUpdateTypes(StringArray value) { + this.updateTypes = value; + } + + /** + * Gets the value of the dateLastUpdate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateLastUpdate() { + return dateLastUpdate; + } + + /** + * Sets the value of the dateLastUpdate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateLastUpdate(XMLGregorianCalendar value) { + this.dateLastUpdate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReferenceArray.java new file mode 100644 index 0000000..5451d6a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessUpdateReferenceArray complex type. + * + *

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

+ * <complexType name="BusinessUpdateReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessUpdateReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessUpdateReferenceArray", propOrder = { + "item" +}) +public class BusinessUpdateReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link BusinessUpdateReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReferencePagedResult.java new file mode 100644 index 0000000..9293d65 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReferencePagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for BusinessUpdateReferencePagedResult complex type. + * + *

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

+ * <complexType name="BusinessUpdateReferencePagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}BusinessUpdateReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BusinessUpdateReferencePagedResult", propOrder = { + +}) +public class BusinessUpdateReferencePagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected BusinessUpdateReferenceArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link BusinessUpdateReferenceArray } + * + */ + public BusinessUpdateReferenceArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link BusinessUpdateReferenceArray } + * + */ + public void setResults(BusinessUpdateReferenceArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateRemoveDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateRemoveDossierRequestType.java new file mode 100644 index 0000000..5fcf002 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateRemoveDossierRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessUpdateRemoveDossierRequestType complex type. + * + *

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

+ * <complexType name="businessUpdateRemoveDossierRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="subdossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessUpdateRemoveDossierRequestType", propOrder = { + +}) +public class BusinessUpdateRemoveDossierRequestType { + + @XmlElement(required = true) + protected String dossierno; + @XmlElement(required = true) + protected String subdossierno; + + /** + * Gets the value of the dossierno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierno() { + return dossierno; + } + + /** + * Sets the value of the dossierno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierno(String value) { + this.dossierno = value; + } + + /** + * Gets the value of the subdossierno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubdossierno() { + return subdossierno; + } + + /** + * Sets the value of the subdossierno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubdossierno(String value) { + this.subdossierno = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateRemoveDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateRemoveDossierResponseType.java new file mode 100644 index 0000000..b780909 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateRemoveDossierResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for businessUpdateRemoveDossierResponseType complex type. + * + *

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

+ * <complexType name="businessUpdateRemoveDossierResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "businessUpdateRemoveDossierResponseType") +public class BusinessUpdateRemoveDossierResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Car.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Car.java new file mode 100644 index 0000000..99d93d6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Car.java @@ -0,0 +1,557 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for Car complex type. + * + *

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

+ * <complexType name="Car">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="brand" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="colors" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="fuel_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="cylinders" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="cylinder_capacity" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="seats" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="standing_room" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="unladen_mass" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="gross_vehicle_mass" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="mass_ready" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_payload" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_unbraked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_trailer_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_self_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_axle_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="date_first_issuing" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_first_admission" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_latest_name_registration" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="apk_due_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Car", propOrder = { + +}) +public class Car { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + @XmlElement(required = true) + protected String category; + @XmlElement(required = true) + protected String brand; + @XmlElement(required = true) + protected String model; + @XmlElement(required = true) + protected String colors; + @XmlElement(name = "fuel_type", required = true) + protected String fuelType; + protected int cylinders; + @XmlElement(name = "cylinder_capacity") + protected int cylinderCapacity; + protected int seats; + @XmlElement(name = "standing_room") + protected int standingRoom; + @XmlElement(name = "unladen_mass") + protected int unladenMass; + @XmlElement(name = "gross_vehicle_mass") + protected int grossVehicleMass; + @XmlElement(name = "mass_ready") + protected int massReady; + @XmlElement(name = "maximum_mass_payload") + protected int maximumMassPayload; + @XmlElement(name = "maximum_mass_unbraked") + protected int maximumMassUnbraked; + @XmlElement(name = "maximum_mass_braked") + protected int maximumMassBraked; + @XmlElement(name = "maximum_mass_trailer_braked") + protected int maximumMassTrailerBraked; + @XmlElement(name = "maximum_mass_self_braked") + protected int maximumMassSelfBraked; + @XmlElement(name = "maximum_mass_axle_braked") + protected int maximumMassAxleBraked; + @XmlElement(name = "date_first_issuing", required = true) + protected String dateFirstIssuing; + @XmlElement(name = "date_first_admission", required = true) + protected String dateFirstAdmission; + @XmlElement(name = "date_latest_name_registration", required = true) + protected String dateLatestNameRegistration; + @XmlElement(name = "apk_due_date", required = true) + protected String apkDueDate; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + + /** + * Gets the value of the category property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCategory() { + return category; + } + + /** + * Sets the value of the category property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCategory(String value) { + this.category = value; + } + + /** + * Gets the value of the brand property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrand() { + return brand; + } + + /** + * Sets the value of the brand property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrand(String value) { + this.brand = value; + } + + /** + * Gets the value of the model property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModel() { + return model; + } + + /** + * Sets the value of the model property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModel(String value) { + this.model = value; + } + + /** + * Gets the value of the colors property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getColors() { + return colors; + } + + /** + * Sets the value of the colors property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setColors(String value) { + this.colors = value; + } + + /** + * Gets the value of the fuelType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFuelType() { + return fuelType; + } + + /** + * Sets the value of the fuelType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFuelType(String value) { + this.fuelType = value; + } + + /** + * Gets the value of the cylinders property. + * + */ + public int getCylinders() { + return cylinders; + } + + /** + * Sets the value of the cylinders property. + * + */ + public void setCylinders(int value) { + this.cylinders = value; + } + + /** + * Gets the value of the cylinderCapacity property. + * + */ + public int getCylinderCapacity() { + return cylinderCapacity; + } + + /** + * Sets the value of the cylinderCapacity property. + * + */ + public void setCylinderCapacity(int value) { + this.cylinderCapacity = value; + } + + /** + * Gets the value of the seats property. + * + */ + public int getSeats() { + return seats; + } + + /** + * Sets the value of the seats property. + * + */ + public void setSeats(int value) { + this.seats = value; + } + + /** + * Gets the value of the standingRoom property. + * + */ + public int getStandingRoom() { + return standingRoom; + } + + /** + * Sets the value of the standingRoom property. + * + */ + public void setStandingRoom(int value) { + this.standingRoom = value; + } + + /** + * Gets the value of the unladenMass property. + * + */ + public int getUnladenMass() { + return unladenMass; + } + + /** + * Sets the value of the unladenMass property. + * + */ + public void setUnladenMass(int value) { + this.unladenMass = value; + } + + /** + * Gets the value of the grossVehicleMass property. + * + */ + public int getGrossVehicleMass() { + return grossVehicleMass; + } + + /** + * Sets the value of the grossVehicleMass property. + * + */ + public void setGrossVehicleMass(int value) { + this.grossVehicleMass = value; + } + + /** + * Gets the value of the massReady property. + * + */ + public int getMassReady() { + return massReady; + } + + /** + * Sets the value of the massReady property. + * + */ + public void setMassReady(int value) { + this.massReady = value; + } + + /** + * Gets the value of the maximumMassPayload property. + * + */ + public int getMaximumMassPayload() { + return maximumMassPayload; + } + + /** + * Sets the value of the maximumMassPayload property. + * + */ + public void setMaximumMassPayload(int value) { + this.maximumMassPayload = value; + } + + /** + * Gets the value of the maximumMassUnbraked property. + * + */ + public int getMaximumMassUnbraked() { + return maximumMassUnbraked; + } + + /** + * Sets the value of the maximumMassUnbraked property. + * + */ + public void setMaximumMassUnbraked(int value) { + this.maximumMassUnbraked = value; + } + + /** + * Gets the value of the maximumMassBraked property. + * + */ + public int getMaximumMassBraked() { + return maximumMassBraked; + } + + /** + * Sets the value of the maximumMassBraked property. + * + */ + public void setMaximumMassBraked(int value) { + this.maximumMassBraked = value; + } + + /** + * Gets the value of the maximumMassTrailerBraked property. + * + */ + public int getMaximumMassTrailerBraked() { + return maximumMassTrailerBraked; + } + + /** + * Sets the value of the maximumMassTrailerBraked property. + * + */ + public void setMaximumMassTrailerBraked(int value) { + this.maximumMassTrailerBraked = value; + } + + /** + * Gets the value of the maximumMassSelfBraked property. + * + */ + public int getMaximumMassSelfBraked() { + return maximumMassSelfBraked; + } + + /** + * Sets the value of the maximumMassSelfBraked property. + * + */ + public void setMaximumMassSelfBraked(int value) { + this.maximumMassSelfBraked = value; + } + + /** + * Gets the value of the maximumMassAxleBraked property. + * + */ + public int getMaximumMassAxleBraked() { + return maximumMassAxleBraked; + } + + /** + * Sets the value of the maximumMassAxleBraked property. + * + */ + public void setMaximumMassAxleBraked(int value) { + this.maximumMassAxleBraked = value; + } + + /** + * Gets the value of the dateFirstIssuing property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDateFirstIssuing() { + return dateFirstIssuing; + } + + /** + * Sets the value of the dateFirstIssuing property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDateFirstIssuing(String value) { + this.dateFirstIssuing = value; + } + + /** + * Gets the value of the dateFirstAdmission property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDateFirstAdmission() { + return dateFirstAdmission; + } + + /** + * Sets the value of the dateFirstAdmission property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDateFirstAdmission(String value) { + this.dateFirstAdmission = value; + } + + /** + * Gets the value of the dateLatestNameRegistration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDateLatestNameRegistration() { + return dateLatestNameRegistration; + } + + /** + * Sets the value of the dateLatestNameRegistration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDateLatestNameRegistration(String value) { + this.dateLatestNameRegistration = value; + } + + /** + * Gets the value of the apkDueDate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getApkDueDate() { + return apkDueDate; + } + + /** + * Sets the value of the apkDueDate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setApkDueDate(String value) { + this.apkDueDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPriceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPriceRequestType.java new file mode 100644 index 0000000..368bc46 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPriceRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carATDPriceRequestType complex type. + * + *

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

+ * <complexType name="carATDPriceRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carATDPriceRequestType", propOrder = { + +}) +public class CarATDPriceRequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPriceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPriceResponseType.java new file mode 100644 index 0000000..0727f13 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPriceResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carATDPriceResponseType complex type. + * + *

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

+ * <complexType name="carATDPriceResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarATDPrices"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carATDPriceResponseType", propOrder = { + +}) +public class CarATDPriceResponseType { + + @XmlElement(required = true) + protected CarATDPrices out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarATDPrices } + * + */ + public CarATDPrices getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarATDPrices } + * + */ + public void setOut(CarATDPrices value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPrices.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPrices.java new file mode 100644 index 0000000..71f1d20 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPrices.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarATDPrices complex type. + * + *

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

+ * <complexType name="CarATDPrices">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="brand" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="valuations" type="{http://www.webservices.nl/soap/}CarATDValuationArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarATDPrices", propOrder = { + +}) +public class CarATDPrices { + + @XmlElement(required = true) + protected String brand; + @XmlElement(required = true) + protected String model; + @XmlElement(required = true) + protected String type; + @XmlElement(required = true) + protected CarATDValuationArray valuations; + + /** + * Gets the value of the brand property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrand() { + return brand; + } + + /** + * Sets the value of the brand property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrand(String value) { + this.brand = value; + } + + /** + * Gets the value of the model property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModel() { + return model; + } + + /** + * Sets the value of the model property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModel(String value) { + this.model = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the valuations property. + * + * @return + * possible object is + * {@link CarATDValuationArray } + * + */ + public CarATDValuationArray getValuations() { + return valuations; + } + + /** + * Sets the value of the valuations property. + * + * @param value + * allowed object is + * {@link CarATDValuationArray } + * + */ + public void setValuations(CarATDValuationArray value) { + this.valuations = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDValuation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDValuation.java new file mode 100644 index 0000000..ee2abca --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDValuation.java @@ -0,0 +1,145 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarATDValuation complex type. + * + *

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

+ * <complexType name="CarATDValuation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="type_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="price_retail" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="price_exchange" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="price_trade" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="type_names" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarATDValuation", propOrder = { + +}) +public class CarATDValuation { + + @XmlElement(name = "type_id") + protected int typeId; + @XmlElement(name = "price_retail") + protected int priceRetail; + @XmlElement(name = "price_exchange") + protected int priceExchange; + @XmlElement(name = "price_trade") + protected int priceTrade; + @XmlElement(name = "type_names", required = true) + protected StringArray typeNames; + + /** + * Gets the value of the typeId property. + * + */ + public int getTypeId() { + return typeId; + } + + /** + * Sets the value of the typeId property. + * + */ + public void setTypeId(int value) { + this.typeId = value; + } + + /** + * Gets the value of the priceRetail property. + * + */ + public int getPriceRetail() { + return priceRetail; + } + + /** + * Sets the value of the priceRetail property. + * + */ + public void setPriceRetail(int value) { + this.priceRetail = value; + } + + /** + * Gets the value of the priceExchange property. + * + */ + public int getPriceExchange() { + return priceExchange; + } + + /** + * Sets the value of the priceExchange property. + * + */ + public void setPriceExchange(int value) { + this.priceExchange = value; + } + + /** + * Gets the value of the priceTrade property. + * + */ + public int getPriceTrade() { + return priceTrade; + } + + /** + * Sets the value of the priceTrade property. + * + */ + public void setPriceTrade(int value) { + this.priceTrade = value; + } + + /** + * Gets the value of the typeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTypeNames() { + return typeNames; + } + + /** + * Sets the value of the typeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTypeNames(StringArray value) { + this.typeNames = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDValuationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDValuationArray.java new file mode 100644 index 0000000..67fe95b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDValuationArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarATDValuationArray complex type. + * + *

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

+ * <complexType name="CarATDValuationArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CarATDValuation" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarATDValuationArray", propOrder = { + "item" +}) +public class CarATDValuationArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CarATDValuation } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBP.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBP.java new file mode 100644 index 0000000..a609781 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBP.java @@ -0,0 +1,593 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarBP complex type. + * + *

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

+ * <complexType name="CarBP">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="brand" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="colors" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="fuel_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="cylinders" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="cylinder_capacity" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="seats" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="standing_room" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="unladen_mass" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="gross_vehicle_mass" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="mass_ready" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_payload" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_unbraked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_trailer_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_self_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_axle_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="date_first_issuing" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_first_admission" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_latest_name_registration" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="apk_due_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="bpm" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="power" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarBP", propOrder = { + +}) +public class CarBP { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + @XmlElement(required = true) + protected String category; + @XmlElement(required = true) + protected String brand; + @XmlElement(required = true) + protected String model; + @XmlElement(required = true) + protected String colors; + @XmlElement(name = "fuel_type", required = true) + protected String fuelType; + protected int cylinders; + @XmlElement(name = "cylinder_capacity") + protected int cylinderCapacity; + protected int seats; + @XmlElement(name = "standing_room") + protected int standingRoom; + @XmlElement(name = "unladen_mass") + protected int unladenMass; + @XmlElement(name = "gross_vehicle_mass") + protected int grossVehicleMass; + @XmlElement(name = "mass_ready") + protected int massReady; + @XmlElement(name = "maximum_mass_payload") + protected int maximumMassPayload; + @XmlElement(name = "maximum_mass_unbraked") + protected int maximumMassUnbraked; + @XmlElement(name = "maximum_mass_braked") + protected int maximumMassBraked; + @XmlElement(name = "maximum_mass_trailer_braked") + protected int maximumMassTrailerBraked; + @XmlElement(name = "maximum_mass_self_braked") + protected int maximumMassSelfBraked; + @XmlElement(name = "maximum_mass_axle_braked") + protected int maximumMassAxleBraked; + @XmlElement(name = "date_first_issuing", required = true) + protected String dateFirstIssuing; + @XmlElement(name = "date_first_admission", required = true) + protected String dateFirstAdmission; + @XmlElement(name = "date_latest_name_registration", required = true) + protected String dateLatestNameRegistration; + @XmlElement(name = "apk_due_date", required = true) + protected String apkDueDate; + protected int bpm; + protected int power; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + + /** + * Gets the value of the category property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCategory() { + return category; + } + + /** + * Sets the value of the category property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCategory(String value) { + this.category = value; + } + + /** + * Gets the value of the brand property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrand() { + return brand; + } + + /** + * Sets the value of the brand property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrand(String value) { + this.brand = value; + } + + /** + * Gets the value of the model property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModel() { + return model; + } + + /** + * Sets the value of the model property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModel(String value) { + this.model = value; + } + + /** + * Gets the value of the colors property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getColors() { + return colors; + } + + /** + * Sets the value of the colors property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setColors(String value) { + this.colors = value; + } + + /** + * Gets the value of the fuelType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFuelType() { + return fuelType; + } + + /** + * Sets the value of the fuelType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFuelType(String value) { + this.fuelType = value; + } + + /** + * Gets the value of the cylinders property. + * + */ + public int getCylinders() { + return cylinders; + } + + /** + * Sets the value of the cylinders property. + * + */ + public void setCylinders(int value) { + this.cylinders = value; + } + + /** + * Gets the value of the cylinderCapacity property. + * + */ + public int getCylinderCapacity() { + return cylinderCapacity; + } + + /** + * Sets the value of the cylinderCapacity property. + * + */ + public void setCylinderCapacity(int value) { + this.cylinderCapacity = value; + } + + /** + * Gets the value of the seats property. + * + */ + public int getSeats() { + return seats; + } + + /** + * Sets the value of the seats property. + * + */ + public void setSeats(int value) { + this.seats = value; + } + + /** + * Gets the value of the standingRoom property. + * + */ + public int getStandingRoom() { + return standingRoom; + } + + /** + * Sets the value of the standingRoom property. + * + */ + public void setStandingRoom(int value) { + this.standingRoom = value; + } + + /** + * Gets the value of the unladenMass property. + * + */ + public int getUnladenMass() { + return unladenMass; + } + + /** + * Sets the value of the unladenMass property. + * + */ + public void setUnladenMass(int value) { + this.unladenMass = value; + } + + /** + * Gets the value of the grossVehicleMass property. + * + */ + public int getGrossVehicleMass() { + return grossVehicleMass; + } + + /** + * Sets the value of the grossVehicleMass property. + * + */ + public void setGrossVehicleMass(int value) { + this.grossVehicleMass = value; + } + + /** + * Gets the value of the massReady property. + * + */ + public int getMassReady() { + return massReady; + } + + /** + * Sets the value of the massReady property. + * + */ + public void setMassReady(int value) { + this.massReady = value; + } + + /** + * Gets the value of the maximumMassPayload property. + * + */ + public int getMaximumMassPayload() { + return maximumMassPayload; + } + + /** + * Sets the value of the maximumMassPayload property. + * + */ + public void setMaximumMassPayload(int value) { + this.maximumMassPayload = value; + } + + /** + * Gets the value of the maximumMassUnbraked property. + * + */ + public int getMaximumMassUnbraked() { + return maximumMassUnbraked; + } + + /** + * Sets the value of the maximumMassUnbraked property. + * + */ + public void setMaximumMassUnbraked(int value) { + this.maximumMassUnbraked = value; + } + + /** + * Gets the value of the maximumMassBraked property. + * + */ + public int getMaximumMassBraked() { + return maximumMassBraked; + } + + /** + * Sets the value of the maximumMassBraked property. + * + */ + public void setMaximumMassBraked(int value) { + this.maximumMassBraked = value; + } + + /** + * Gets the value of the maximumMassTrailerBraked property. + * + */ + public int getMaximumMassTrailerBraked() { + return maximumMassTrailerBraked; + } + + /** + * Sets the value of the maximumMassTrailerBraked property. + * + */ + public void setMaximumMassTrailerBraked(int value) { + this.maximumMassTrailerBraked = value; + } + + /** + * Gets the value of the maximumMassSelfBraked property. + * + */ + public int getMaximumMassSelfBraked() { + return maximumMassSelfBraked; + } + + /** + * Sets the value of the maximumMassSelfBraked property. + * + */ + public void setMaximumMassSelfBraked(int value) { + this.maximumMassSelfBraked = value; + } + + /** + * Gets the value of the maximumMassAxleBraked property. + * + */ + public int getMaximumMassAxleBraked() { + return maximumMassAxleBraked; + } + + /** + * Sets the value of the maximumMassAxleBraked property. + * + */ + public void setMaximumMassAxleBraked(int value) { + this.maximumMassAxleBraked = value; + } + + /** + * Gets the value of the dateFirstIssuing property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDateFirstIssuing() { + return dateFirstIssuing; + } + + /** + * Sets the value of the dateFirstIssuing property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDateFirstIssuing(String value) { + this.dateFirstIssuing = value; + } + + /** + * Gets the value of the dateFirstAdmission property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDateFirstAdmission() { + return dateFirstAdmission; + } + + /** + * Sets the value of the dateFirstAdmission property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDateFirstAdmission(String value) { + this.dateFirstAdmission = value; + } + + /** + * Gets the value of the dateLatestNameRegistration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDateLatestNameRegistration() { + return dateLatestNameRegistration; + } + + /** + * Sets the value of the dateLatestNameRegistration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDateLatestNameRegistration(String value) { + this.dateLatestNameRegistration = value; + } + + /** + * Gets the value of the apkDueDate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getApkDueDate() { + return apkDueDate; + } + + /** + * Sets the value of the apkDueDate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setApkDueDate(String value) { + this.apkDueDate = value; + } + + /** + * Gets the value of the bpm property. + * + */ + public int getBpm() { + return bpm; + } + + /** + * Sets the value of the bpm property. + * + */ + public void setBpm(int value) { + this.bpm = value; + } + + /** + * Gets the value of the power property. + * + */ + public int getPower() { + return power; + } + + /** + * Sets the value of the power property. + * + */ + public void setPower(int value) { + this.power = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBPV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBPV2.java new file mode 100644 index 0000000..099f029 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBPV2.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarBPV2 complex type. + * + *

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

+ * <complexType name="CarBPV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="car_data" type="{http://www.webservices.nl/soap/}CarBP"/>
+ *         <element name="types" type="{http://www.webservices.nl/soap/}CarTypeArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarBPV2", propOrder = { + +}) +public class CarBPV2 { + + @XmlElement(name = "car_data", required = true) + protected CarBP carData; + protected CarTypeArray types; + + /** + * Gets the value of the carData property. + * + * @return + * possible object is + * {@link CarBP } + * + */ + public CarBP getCarData() { + return carData; + } + + /** + * Sets the value of the carData property. + * + * @param value + * allowed object is + * {@link CarBP } + * + */ + public void setCarData(CarBP value) { + this.carData = value; + } + + /** + * Gets the value of the types property. + * + * @return + * possible object is + * {@link CarTypeArray } + * + */ + public CarTypeArray getTypes() { + return types; + } + + /** + * Sets the value of the types property. + * + * @param value + * allowed object is + * {@link CarTypeArray } + * + */ + public void setTypes(CarTypeArray value) { + this.types = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBody.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBody.java new file mode 100644 index 0000000..e920b6a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBody.java @@ -0,0 +1,119 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarBody complex type. + * + *

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

+ * <complexType name="CarBody">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarBody", propOrder = { + +}) +public class CarBody { + + protected Integer id; + protected String code; + protected String description; + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setId(Integer value) { + this.id = value; + } + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCode(String value) { + this.code = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBodyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBodyArray.java new file mode 100644 index 0000000..61e69b0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBodyArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarBodyArray complex type. + * + *

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

+ * <complexType name="CarBodyArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CarBody" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarBodyArray", propOrder = { + "item" +}) +public class CarBodyArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CarBody } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarCheckCode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarCheckCode.java new file mode 100644 index 0000000..2af7fe2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarCheckCode.java @@ -0,0 +1,105 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarCheckCode complex type. + * + *

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

+ * <complexType name="CarCheckCode">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correct" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarCheckCode", propOrder = { + +}) +public class CarCheckCode { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + protected boolean correct; + protected boolean active; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + + /** + * Gets the value of the correct property. + * + */ + public boolean isCorrect() { + return correct; + } + + /** + * Sets the value of the correct property. + * + */ + public void setCorrect(boolean value) { + this.correct = value; + } + + /** + * Gets the value of the active property. + * + */ + public boolean isActive() { + return active; + } + + /** + * Sets the value of the active property. + * + */ + public void setActive(boolean value) { + this.active = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarDataV3Result.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarDataV3Result.java new file mode 100644 index 0000000..bd298bc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarDataV3Result.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarDataV3Result complex type. + * + *

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

+ * <complexType name="CarDataV3Result">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="car_data" type="{http://www.webservices.nl/soap/}CarV3"/>
+ *         <element name="types" type="{http://www.webservices.nl/soap/}CarTypeArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarDataV3Result", propOrder = { + +}) +public class CarDataV3Result { + + @XmlElement(name = "car_data", required = true) + protected CarV3 carData; + @XmlElement(required = true) + protected CarTypeArray types; + + /** + * Gets the value of the carData property. + * + * @return + * possible object is + * {@link CarV3 } + * + */ + public CarV3 getCarData() { + return carData; + } + + /** + * Sets the value of the carData property. + * + * @param value + * allowed object is + * {@link CarV3 } + * + */ + public void setCarData(CarV3 value) { + this.carData = value; + } + + /** + * Gets the value of the types property. + * + * @return + * possible object is + * {@link CarTypeArray } + * + */ + public CarTypeArray getTypes() { + return types; + } + + /** + * Sets the value of the types property. + * + * @param value + * allowed object is + * {@link CarTypeArray } + * + */ + public void setTypes(CarTypeArray value) { + this.types = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarEnvironment.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarEnvironment.java new file mode 100644 index 0000000..1dab800 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarEnvironment.java @@ -0,0 +1,232 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarEnvironment complex type. + * + *

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

+ * <complexType name="CarEnvironment">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="emission_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="energy_label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="g3_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="particulate_filter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="fuel_usage_city" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="fuel_usage_highway" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="fuel_usage_combined" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarEnvironment", propOrder = { + +}) +public class CarEnvironment { + + @XmlElement(name = "emission_code") + protected String emissionCode; + @XmlElement(name = "energy_label") + protected String energyLabel; + @XmlElement(name = "g3_indication") + protected Boolean g3Indication; + @XmlElement(name = "particulate_filter") + protected String particulateFilter; + @XmlElement(name = "fuel_usage_city") + protected BigDecimal fuelUsageCity; + @XmlElement(name = "fuel_usage_highway") + protected BigDecimal fuelUsageHighway; + @XmlElement(name = "fuel_usage_combined") + protected BigDecimal fuelUsageCombined; + + /** + * Gets the value of the emissionCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmissionCode() { + return emissionCode; + } + + /** + * Sets the value of the emissionCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmissionCode(String value) { + this.emissionCode = value; + } + + /** + * Gets the value of the energyLabel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnergyLabel() { + return energyLabel; + } + + /** + * Sets the value of the energyLabel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnergyLabel(String value) { + this.energyLabel = value; + } + + /** + * Gets the value of the g3Indication property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isG3Indication() { + return g3Indication; + } + + /** + * Sets the value of the g3Indication property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setG3Indication(Boolean value) { + this.g3Indication = value; + } + + /** + * Gets the value of the particulateFilter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getParticulateFilter() { + return particulateFilter; + } + + /** + * Sets the value of the particulateFilter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setParticulateFilter(String value) { + this.particulateFilter = value; + } + + /** + * Gets the value of the fuelUsageCity property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getFuelUsageCity() { + return fuelUsageCity; + } + + /** + * Sets the value of the fuelUsageCity property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setFuelUsageCity(BigDecimal value) { + this.fuelUsageCity = value; + } + + /** + * Gets the value of the fuelUsageHighway property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getFuelUsageHighway() { + return fuelUsageHighway; + } + + /** + * Sets the value of the fuelUsageHighway property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setFuelUsageHighway(BigDecimal value) { + this.fuelUsageHighway = value; + } + + /** + * Gets the value of the fuelUsageCombined property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getFuelUsageCombined() { + return fuelUsageCombined; + } + + /** + * Sets the value of the fuelUsageCombined property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setFuelUsageCombined(BigDecimal value) { + this.fuelUsageCombined = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarExtended.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarExtended.java new file mode 100644 index 0000000..637eef6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarExtended.java @@ -0,0 +1,1082 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarExtended complex type. + * + *

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

+ * <complexType name="CarExtended">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="check_code_status" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="brand" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="brand_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="model" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="body_style" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="colors" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="fuel_types" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="cylinders" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="cylinder_capacity" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="seats" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="standing_room" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="unladen_mass" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="gross_vehicle_mass" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="mass_ready" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_payload" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_unbraked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_trailer_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_self_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_axle_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="date_first_issuing" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_first_admission" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_latest_name_registration" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="apk_due_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="bpm" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="power" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="g3_indicator" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="particulate_filter" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="co2_emission_combined" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="emission_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="top_speed" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="fuel_consumption_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="fuel_consumption_freeway" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="fuel_consumption_combined" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="energy_label" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="stolen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="insured" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="license_plate_signal" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="awaiting_inspection" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="catalog_price" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="european_type_approval_mark" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="types" type="{http://www.webservices.nl/soap/}CarTypeArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarExtended", propOrder = { + +}) +public class CarExtended { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + @XmlElement(required = true) + protected String code; + @XmlElement(name = "check_code_status") + protected boolean checkCodeStatus; + @XmlElement(required = true) + protected String category; + @XmlElement(required = true) + protected String brand; + @XmlElement(name = "brand_code", required = true) + protected String brandCode; + @XmlElement(required = true) + protected StringArray model; + @XmlElement(name = "body_style", required = true) + protected String bodyStyle; + @XmlElement(required = true) + protected StringArray colors; + @XmlElement(name = "fuel_types", required = true) + protected StringArray fuelTypes; + protected int cylinders; + @XmlElement(name = "cylinder_capacity") + protected int cylinderCapacity; + protected int seats; + @XmlElement(name = "standing_room") + protected int standingRoom; + @XmlElement(name = "unladen_mass") + protected int unladenMass; + @XmlElement(name = "gross_vehicle_mass") + protected int grossVehicleMass; + @XmlElement(name = "mass_ready") + protected int massReady; + @XmlElement(name = "maximum_mass_payload") + protected int maximumMassPayload; + @XmlElement(name = "maximum_mass_unbraked") + protected int maximumMassUnbraked; + @XmlElement(name = "maximum_mass_braked") + protected int maximumMassBraked; + @XmlElement(name = "maximum_mass_trailer_braked") + protected int maximumMassTrailerBraked; + @XmlElement(name = "maximum_mass_self_braked") + protected int maximumMassSelfBraked; + @XmlElement(name = "maximum_mass_axle_braked") + protected int maximumMassAxleBraked; + @XmlElement(name = "date_first_issuing", required = true) + protected String dateFirstIssuing; + @XmlElement(name = "date_first_admission", required = true) + protected String dateFirstAdmission; + @XmlElement(name = "date_latest_name_registration", required = true) + protected String dateLatestNameRegistration; + @XmlElement(name = "apk_due_date", required = true) + protected String apkDueDate; + protected int bpm; + protected int power; + @XmlElement(name = "g3_indicator", required = true) + protected String g3Indicator; + @XmlElement(name = "particulate_filter", required = true) + protected String particulateFilter; + @XmlElement(name = "co2_emission_combined", required = true) + protected String co2EmissionCombined; + @XmlElement(name = "emission_code", required = true) + protected String emissionCode; + @XmlElement(name = "top_speed") + protected int topSpeed; + @XmlElement(name = "fuel_consumption_city", required = true) + protected String fuelConsumptionCity; + @XmlElement(name = "fuel_consumption_freeway", required = true) + protected String fuelConsumptionFreeway; + @XmlElement(name = "fuel_consumption_combined", required = true) + protected String fuelConsumptionCombined; + @XmlElement(name = "energy_label", required = true) + protected String energyLabel; + protected boolean stolen; + protected boolean insured; + @XmlElement(name = "license_plate_signal") + protected boolean licensePlateSignal; + @XmlElement(name = "awaiting_inspection") + protected boolean awaitingInspection; + @XmlElement(name = "catalog_price", required = true) + protected String catalogPrice; + @XmlElement(name = "european_type_approval_mark", required = true) + protected String europeanTypeApprovalMark; + protected CarTypeArray types; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCode(String value) { + this.code = value; + } + + /** + * Gets the value of the checkCodeStatus property. + * + */ + public boolean isCheckCodeStatus() { + return checkCodeStatus; + } + + /** + * Sets the value of the checkCodeStatus property. + * + */ + public void setCheckCodeStatus(boolean value) { + this.checkCodeStatus = value; + } + + /** + * Gets the value of the category property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCategory() { + return category; + } + + /** + * Sets the value of the category property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCategory(String value) { + this.category = value; + } + + /** + * Gets the value of the brand property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrand() { + return brand; + } + + /** + * Sets the value of the brand property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrand(String value) { + this.brand = value; + } + + /** + * Gets the value of the brandCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrandCode() { + return brandCode; + } + + /** + * Sets the value of the brandCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrandCode(String value) { + this.brandCode = value; + } + + /** + * Gets the value of the model property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getModel() { + return model; + } + + /** + * Sets the value of the model property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setModel(StringArray value) { + this.model = value; + } + + /** + * Gets the value of the bodyStyle property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBodyStyle() { + return bodyStyle; + } + + /** + * Sets the value of the bodyStyle property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBodyStyle(String value) { + this.bodyStyle = value; + } + + /** + * Gets the value of the colors property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getColors() { + return colors; + } + + /** + * Sets the value of the colors property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setColors(StringArray value) { + this.colors = value; + } + + /** + * Gets the value of the fuelTypes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getFuelTypes() { + return fuelTypes; + } + + /** + * Sets the value of the fuelTypes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setFuelTypes(StringArray value) { + this.fuelTypes = value; + } + + /** + * Gets the value of the cylinders property. + * + */ + public int getCylinders() { + return cylinders; + } + + /** + * Sets the value of the cylinders property. + * + */ + public void setCylinders(int value) { + this.cylinders = value; + } + + /** + * Gets the value of the cylinderCapacity property. + * + */ + public int getCylinderCapacity() { + return cylinderCapacity; + } + + /** + * Sets the value of the cylinderCapacity property. + * + */ + public void setCylinderCapacity(int value) { + this.cylinderCapacity = value; + } + + /** + * Gets the value of the seats property. + * + */ + public int getSeats() { + return seats; + } + + /** + * Sets the value of the seats property. + * + */ + public void setSeats(int value) { + this.seats = value; + } + + /** + * Gets the value of the standingRoom property. + * + */ + public int getStandingRoom() { + return standingRoom; + } + + /** + * Sets the value of the standingRoom property. + * + */ + public void setStandingRoom(int value) { + this.standingRoom = value; + } + + /** + * Gets the value of the unladenMass property. + * + */ + public int getUnladenMass() { + return unladenMass; + } + + /** + * Sets the value of the unladenMass property. + * + */ + public void setUnladenMass(int value) { + this.unladenMass = value; + } + + /** + * Gets the value of the grossVehicleMass property. + * + */ + public int getGrossVehicleMass() { + return grossVehicleMass; + } + + /** + * Sets the value of the grossVehicleMass property. + * + */ + public void setGrossVehicleMass(int value) { + this.grossVehicleMass = value; + } + + /** + * Gets the value of the massReady property. + * + */ + public int getMassReady() { + return massReady; + } + + /** + * Sets the value of the massReady property. + * + */ + public void setMassReady(int value) { + this.massReady = value; + } + + /** + * Gets the value of the maximumMassPayload property. + * + */ + public int getMaximumMassPayload() { + return maximumMassPayload; + } + + /** + * Sets the value of the maximumMassPayload property. + * + */ + public void setMaximumMassPayload(int value) { + this.maximumMassPayload = value; + } + + /** + * Gets the value of the maximumMassUnbraked property. + * + */ + public int getMaximumMassUnbraked() { + return maximumMassUnbraked; + } + + /** + * Sets the value of the maximumMassUnbraked property. + * + */ + public void setMaximumMassUnbraked(int value) { + this.maximumMassUnbraked = value; + } + + /** + * Gets the value of the maximumMassBraked property. + * + */ + public int getMaximumMassBraked() { + return maximumMassBraked; + } + + /** + * Sets the value of the maximumMassBraked property. + * + */ + public void setMaximumMassBraked(int value) { + this.maximumMassBraked = value; + } + + /** + * Gets the value of the maximumMassTrailerBraked property. + * + */ + public int getMaximumMassTrailerBraked() { + return maximumMassTrailerBraked; + } + + /** + * Sets the value of the maximumMassTrailerBraked property. + * + */ + public void setMaximumMassTrailerBraked(int value) { + this.maximumMassTrailerBraked = value; + } + + /** + * Gets the value of the maximumMassSelfBraked property. + * + */ + public int getMaximumMassSelfBraked() { + return maximumMassSelfBraked; + } + + /** + * Sets the value of the maximumMassSelfBraked property. + * + */ + public void setMaximumMassSelfBraked(int value) { + this.maximumMassSelfBraked = value; + } + + /** + * Gets the value of the maximumMassAxleBraked property. + * + */ + public int getMaximumMassAxleBraked() { + return maximumMassAxleBraked; + } + + /** + * Sets the value of the maximumMassAxleBraked property. + * + */ + public void setMaximumMassAxleBraked(int value) { + this.maximumMassAxleBraked = value; + } + + /** + * Gets the value of the dateFirstIssuing property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDateFirstIssuing() { + return dateFirstIssuing; + } + + /** + * Sets the value of the dateFirstIssuing property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDateFirstIssuing(String value) { + this.dateFirstIssuing = value; + } + + /** + * Gets the value of the dateFirstAdmission property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDateFirstAdmission() { + return dateFirstAdmission; + } + + /** + * Sets the value of the dateFirstAdmission property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDateFirstAdmission(String value) { + this.dateFirstAdmission = value; + } + + /** + * Gets the value of the dateLatestNameRegistration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDateLatestNameRegistration() { + return dateLatestNameRegistration; + } + + /** + * Sets the value of the dateLatestNameRegistration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDateLatestNameRegistration(String value) { + this.dateLatestNameRegistration = value; + } + + /** + * Gets the value of the apkDueDate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getApkDueDate() { + return apkDueDate; + } + + /** + * Sets the value of the apkDueDate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setApkDueDate(String value) { + this.apkDueDate = value; + } + + /** + * Gets the value of the bpm property. + * + */ + public int getBpm() { + return bpm; + } + + /** + * Sets the value of the bpm property. + * + */ + public void setBpm(int value) { + this.bpm = value; + } + + /** + * Gets the value of the power property. + * + */ + public int getPower() { + return power; + } + + /** + * Sets the value of the power property. + * + */ + public void setPower(int value) { + this.power = value; + } + + /** + * Gets the value of the g3Indicator property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getG3Indicator() { + return g3Indicator; + } + + /** + * Sets the value of the g3Indicator property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setG3Indicator(String value) { + this.g3Indicator = value; + } + + /** + * Gets the value of the particulateFilter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getParticulateFilter() { + return particulateFilter; + } + + /** + * Sets the value of the particulateFilter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setParticulateFilter(String value) { + this.particulateFilter = value; + } + + /** + * Gets the value of the co2EmissionCombined property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCo2EmissionCombined() { + return co2EmissionCombined; + } + + /** + * Sets the value of the co2EmissionCombined property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCo2EmissionCombined(String value) { + this.co2EmissionCombined = value; + } + + /** + * Gets the value of the emissionCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmissionCode() { + return emissionCode; + } + + /** + * Sets the value of the emissionCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmissionCode(String value) { + this.emissionCode = value; + } + + /** + * Gets the value of the topSpeed property. + * + */ + public int getTopSpeed() { + return topSpeed; + } + + /** + * Sets the value of the topSpeed property. + * + */ + public void setTopSpeed(int value) { + this.topSpeed = value; + } + + /** + * Gets the value of the fuelConsumptionCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFuelConsumptionCity() { + return fuelConsumptionCity; + } + + /** + * Sets the value of the fuelConsumptionCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFuelConsumptionCity(String value) { + this.fuelConsumptionCity = value; + } + + /** + * Gets the value of the fuelConsumptionFreeway property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFuelConsumptionFreeway() { + return fuelConsumptionFreeway; + } + + /** + * Sets the value of the fuelConsumptionFreeway property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFuelConsumptionFreeway(String value) { + this.fuelConsumptionFreeway = value; + } + + /** + * Gets the value of the fuelConsumptionCombined property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFuelConsumptionCombined() { + return fuelConsumptionCombined; + } + + /** + * Sets the value of the fuelConsumptionCombined property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFuelConsumptionCombined(String value) { + this.fuelConsumptionCombined = value; + } + + /** + * Gets the value of the energyLabel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnergyLabel() { + return energyLabel; + } + + /** + * Sets the value of the energyLabel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnergyLabel(String value) { + this.energyLabel = value; + } + + /** + * Gets the value of the stolen property. + * + */ + public boolean isStolen() { + return stolen; + } + + /** + * Sets the value of the stolen property. + * + */ + public void setStolen(boolean value) { + this.stolen = value; + } + + /** + * Gets the value of the insured property. + * + */ + public boolean isInsured() { + return insured; + } + + /** + * Sets the value of the insured property. + * + */ + public void setInsured(boolean value) { + this.insured = value; + } + + /** + * Gets the value of the licensePlateSignal property. + * + */ + public boolean isLicensePlateSignal() { + return licensePlateSignal; + } + + /** + * Sets the value of the licensePlateSignal property. + * + */ + public void setLicensePlateSignal(boolean value) { + this.licensePlateSignal = value; + } + + /** + * Gets the value of the awaitingInspection property. + * + */ + public boolean isAwaitingInspection() { + return awaitingInspection; + } + + /** + * Sets the value of the awaitingInspection property. + * + */ + public void setAwaitingInspection(boolean value) { + this.awaitingInspection = value; + } + + /** + * Gets the value of the catalogPrice property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCatalogPrice() { + return catalogPrice; + } + + /** + * Sets the value of the catalogPrice property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCatalogPrice(String value) { + this.catalogPrice = value; + } + + /** + * Gets the value of the europeanTypeApprovalMark property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEuropeanTypeApprovalMark() { + return europeanTypeApprovalMark; + } + + /** + * Sets the value of the europeanTypeApprovalMark property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEuropeanTypeApprovalMark(String value) { + this.europeanTypeApprovalMark = value; + } + + /** + * Gets the value of the types property. + * + * @return + * possible object is + * {@link CarTypeArray } + * + */ + public CarTypeArray getTypes() { + return types; + } + + /** + * Sets the value of the types property. + * + * @param value + * allowed object is + * {@link CarTypeArray } + * + */ + public void setTypes(CarTypeArray value) { + this.types = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarOption.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarOption.java new file mode 100644 index 0000000..3f35311 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarOption.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CarOption complex type. + * + *

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

+ * <complexType name="CarOption">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="standaard" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="pakket" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="standaard_sinds_datum" type="{http://www.w3.org/2001/XMLSchema}gYearMonth" minOccurs="0"/>
+ *         <element name="prijs" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarOption", propOrder = { + +}) +public class CarOption { + + protected Boolean standaard; + protected Integer pakket; + @XmlElement(name = "standaard_sinds_datum") + @XmlSchemaType(name = "gYearMonth") + protected XMLGregorianCalendar standaardSindsDatum; + protected Integer prijs; + + /** + * Gets the value of the standaard property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isStandaard() { + return standaard; + } + + /** + * Sets the value of the standaard property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setStandaard(Boolean value) { + this.standaard = value; + } + + /** + * Gets the value of the pakket property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPakket() { + return pakket; + } + + /** + * Sets the value of the pakket property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPakket(Integer value) { + this.pakket = value; + } + + /** + * Gets the value of the standaardSindsDatum property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStandaardSindsDatum() { + return standaardSindsDatum; + } + + /** + * Sets the value of the standaardSindsDatum property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStandaardSindsDatum(XMLGregorianCalendar value) { + this.standaardSindsDatum = value; + } + + /** + * Gets the value of the prijs property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPrijs() { + return prijs; + } + + /** + * Sets the value of the prijs property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPrijs(Integer value) { + this.prijs = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarOptions.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarOptions.java new file mode 100644 index 0000000..4c0e4ca --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarOptions.java @@ -0,0 +1,5448 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarOptions complex type. + * + *

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

+ * <complexType name="CarOptions">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="car_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="merk" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="serie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="serie_jaar_van" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="serie_jaar_tot" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="model_maand_van" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="model_jaar_van" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="model_maand_tot" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="model_jaar_tot" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="belasting_min" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="belasting_max" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="algemene_garantie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="algemene_garantie_km" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="carrosserie_garantie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="deuren" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="carrosserietype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="aantal_versnellingen" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="soort_schakeling" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="aandrijving" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="brandstoftype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="aantal_cilinders" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="bouwwijze" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="kleppen_per_cilinder" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="cilinderinhoud" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="boring" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="slag" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="compressieverhouding" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="vermogen_kw" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="vermogen_pk" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="vermogen_tpm" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="koppel" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="koppel_tpm" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="katalysator" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="brandstofsysteem" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="klepbediening" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="turbo" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="wielophanging_voor" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="wielophanging_achter" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="vering_voor" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="vering_achter" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="stabilisator_voor" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="stabilisator_achter" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="remmen_voor" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="remmen_voor_mm" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="remmen_achter" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="remmen_achter_mm" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="cw_waarde" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="lengte" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="breedte" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="hoogte" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="wielbasis" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="spoorbreedte_voor" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="spoorbreedte_achter" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="draaicirkel" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="bandenmaat_voor" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="bandenmaat_achter" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="massa" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="max_toelaatbare_massa" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="max_aanhanger_geremd" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="max_aanhanger_ongeremd" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="max_kogeldruk" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="max_dakbelasting" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="koffer_min" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="koffer_max" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="tankinhoud" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="topsnelheid" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="acceleratie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="verbruik_binnen_bebouwde_kom" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="verbruik_buiten_bebouwde_kom" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="verbruik_gecombineerd" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="co2_uitstoot" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="verbruik_gemiddeld" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="abs" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="remkrachtverdeling" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="brakeassist" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="tractiecontrole" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="sperdifferentieel" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="stabiliteitsregeling" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="regelbare_schokdemping" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="niveauregeling" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="airbag_bestuurder" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="airbag_passagier" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="airbag_opzijvoor" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="airbag_opzijachter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="airbag_hoofdvoor" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="airbag_hoofdachter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="gordelspanners" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="verstelbare_gordelhoogte" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="startonderbreker" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="inbraakalarm" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="centrale_deurvergrendeling" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="afstandbediening_deurvergrendeling" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="automatische_vergrendeling" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="keyless_entry" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="elektrische_ramen_voor" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="elektrische_ramen_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="stuurbekrachtiging" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="stuurschakeling" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="cruise_control" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="radar_cruise_control" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="airconditioning" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="klimaatregeling" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="gescheiden_temperatuurregeling" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="pollenfilter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="parkeersensor" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="hoofdsteunen_voor" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="hoofdsteunen_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="verstelbare_hoofdsteunen_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="derde_hoofdsteun_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="derde_driepuntsgordel_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="verstelbare_lendensteun_bestuurder" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="verstelbare_lendensteun_passagier" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="hoogteverstelling_bestuurder" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="hoogteverstelling_passagier" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="elektrische_stoelverstelling" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="geheugen_stoelverstelling" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="verwarmde_zitplaatsen_voor" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="verwarmde_zitplaatsen_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="sportstoelen" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="bekledingstof_leer" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="lerenbekleding" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="hoogteverstelling_stuur" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="diepteverstelling_stuur" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="elektrische_stuurverstelling" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="leer_bekleed_stuur" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="middenarmsteun_voor" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="middenarmsteun_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="neerklapbare_achterbank" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="in_delen_neerklapbaar_achterbank" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="opbergvak_linkerportier" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="bekerhouder_voor" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="bekerhouder_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="zonnescherm_achterruit" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="dagteller" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="toerenteller" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="temperatuurmeter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="oliepeilmeter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="oliedrukmeter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="olietemperatuurmeter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="voltmeter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="verbruiksmeter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="turbodrukmeter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="buitentemperatuurmeter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="klokje" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="boardcomputer" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="luidsprekers" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="stereoinstallatie" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="cdspeler" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="cdwisselaar" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="audiostuurbediening" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="bandenspanningssensor" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="navigatiesysteem" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="televisie" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="telefoonvoorbereiding" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="telefoon" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="intervalruitenwisser" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="regelbare_interval" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="regensensor" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="ruitenwisser_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="achterruitverwarming" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="voorruitverwarming" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="verwarmde_ruitensproeiers" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="gelaagde_voorruit" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="getintglas" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="schuifdak" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="elektrisch_schuifdak" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="beschermstrips_opzij" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="bumpers_meegespoten" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="metallic_lak" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="lichtmetalen_velgen" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="rechter_buitenspiegel" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="binnenuit_verstelbare_buitenspiegel" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="elektrische_spiegels" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="verwarmde_spiegels" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="inklapbare_spiegels" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="meegespoten_spiegels" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="dodehoekspiegel_bestuurder" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="dimmende_binnenspiegel" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="dimmende_buitenspiegel" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="dakrails" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="binnenuit_te_openen_tankklep" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="binnenuit_te_openen_bagageklep" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="op_afstand_te_openen_bagageklep" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="halogeen_koplampen" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="xenon_koplampen" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="verstelbare_koplampen" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="koplampsproeiers" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="automatisch_inschakelende_koplampen" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="verstralers" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="mistlampen_voor" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="mistlampen_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="zoemer_vergeten_verlichting" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="verlichte_bagageruimte" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="verlichte_motorruimte" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="verlicht_dashboardkastje" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="regelbare_dashboardverlichting" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="leeslampje_voor" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="leeslampje_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="verlichte_makeupspiegel" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="vertraging_interieurverlichting" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *         <element name="portierverlichting" type="{http://www.webservices.nl/soap/}CarOption"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarOptions", propOrder = { + +}) +public class CarOptions { + + @XmlElement(name = "car_id", required = true) + protected String carId; + @XmlElement(required = true) + protected String merk; + @XmlElement(required = true) + protected String serie; + @XmlElement(name = "serie_jaar_van") + protected int serieJaarVan; + @XmlElement(name = "serie_jaar_tot") + protected int serieJaarTot; + @XmlElement(required = true) + protected String model; + @XmlElement(name = "model_maand_van") + protected int modelMaandVan; + @XmlElement(name = "model_jaar_van") + protected int modelJaarVan; + @XmlElement(name = "model_maand_tot") + protected int modelMaandTot; + @XmlElement(name = "model_jaar_tot") + protected int modelJaarTot; + @XmlElement(name = "belasting_min", required = true) + protected String belastingMin; + @XmlElement(name = "belasting_max", required = true) + protected String belastingMax; + @XmlElement(name = "algemene_garantie", required = true) + protected String algemeneGarantie; + @XmlElement(name = "algemene_garantie_km", required = true) + protected String algemeneGarantieKm; + @XmlElement(name = "carrosserie_garantie", required = true) + protected String carrosserieGarantie; + @XmlElement(required = true) + protected String deuren; + @XmlElement(required = true) + protected String carrosserietype; + @XmlElement(name = "aantal_versnellingen", required = true) + protected String aantalVersnellingen; + @XmlElement(name = "soort_schakeling", required = true) + protected String soortSchakeling; + @XmlElement(required = true) + protected String aandrijving; + @XmlElement(required = true) + protected String brandstoftype; + @XmlElement(name = "aantal_cilinders", required = true) + protected String aantalCilinders; + @XmlElement(required = true) + protected String bouwwijze; + @XmlElement(name = "kleppen_per_cilinder", required = true) + protected String kleppenPerCilinder; + @XmlElement(required = true) + protected String cilinderinhoud; + @XmlElement(required = true) + protected String boring; + @XmlElement(required = true) + protected String slag; + @XmlElement(required = true) + protected String compressieverhouding; + @XmlElement(name = "vermogen_kw", required = true) + protected String vermogenKw; + @XmlElement(name = "vermogen_pk", required = true) + protected String vermogenPk; + @XmlElement(name = "vermogen_tpm", required = true) + protected String vermogenTpm; + @XmlElement(required = true) + protected String koppel; + @XmlElement(name = "koppel_tpm", required = true) + protected String koppelTpm; + @XmlElement(required = true) + protected String katalysator; + @XmlElement(required = true) + protected String brandstofsysteem; + @XmlElement(required = true) + protected String klepbediening; + @XmlElement(required = true) + protected String turbo; + @XmlElement(name = "wielophanging_voor", required = true) + protected String wielophangingVoor; + @XmlElement(name = "wielophanging_achter", required = true) + protected String wielophangingAchter; + @XmlElement(name = "vering_voor", required = true) + protected String veringVoor; + @XmlElement(name = "vering_achter", required = true) + protected String veringAchter; + @XmlElement(name = "stabilisator_voor", required = true) + protected String stabilisatorVoor; + @XmlElement(name = "stabilisator_achter", required = true) + protected String stabilisatorAchter; + @XmlElement(name = "remmen_voor", required = true) + protected String remmenVoor; + @XmlElement(name = "remmen_voor_mm", required = true) + protected String remmenVoorMm; + @XmlElement(name = "remmen_achter", required = true) + protected String remmenAchter; + @XmlElement(name = "remmen_achter_mm", required = true) + protected String remmenAchterMm; + @XmlElement(name = "cw_waarde", required = true) + protected String cwWaarde; + @XmlElement(required = true) + protected String lengte; + @XmlElement(required = true) + protected String breedte; + @XmlElement(required = true) + protected String hoogte; + @XmlElement(required = true) + protected String wielbasis; + @XmlElement(name = "spoorbreedte_voor", required = true) + protected String spoorbreedteVoor; + @XmlElement(name = "spoorbreedte_achter", required = true) + protected String spoorbreedteAchter; + @XmlElement(required = true) + protected String draaicirkel; + @XmlElement(name = "bandenmaat_voor", required = true) + protected String bandenmaatVoor; + @XmlElement(name = "bandenmaat_achter", required = true) + protected String bandenmaatAchter; + @XmlElement(required = true) + protected String massa; + @XmlElement(name = "max_toelaatbare_massa", required = true) + protected String maxToelaatbareMassa; + @XmlElement(name = "max_aanhanger_geremd", required = true) + protected String maxAanhangerGeremd; + @XmlElement(name = "max_aanhanger_ongeremd", required = true) + protected String maxAanhangerOngeremd; + @XmlElement(name = "max_kogeldruk", required = true) + protected String maxKogeldruk; + @XmlElement(name = "max_dakbelasting", required = true) + protected String maxDakbelasting; + @XmlElement(name = "koffer_min", required = true) + protected String kofferMin; + @XmlElement(name = "koffer_max", required = true) + protected String kofferMax; + @XmlElement(required = true) + protected String tankinhoud; + @XmlElement(required = true) + protected String topsnelheid; + @XmlElement(required = true) + protected String acceleratie; + @XmlElement(name = "verbruik_binnen_bebouwde_kom", required = true) + protected String verbruikBinnenBebouwdeKom; + @XmlElement(name = "verbruik_buiten_bebouwde_kom", required = true) + protected String verbruikBuitenBebouwdeKom; + @XmlElement(name = "verbruik_gecombineerd", required = true) + protected String verbruikGecombineerd; + @XmlElement(name = "co2_uitstoot", required = true) + protected String co2Uitstoot; + @XmlElement(name = "verbruik_gemiddeld", required = true) + protected String verbruikGemiddeld; + @XmlElement(required = true) + protected CarOption abs; + @XmlElement(required = true) + protected CarOption remkrachtverdeling; + @XmlElement(required = true) + protected CarOption brakeassist; + @XmlElement(required = true) + protected CarOption tractiecontrole; + @XmlElement(required = true) + protected CarOption sperdifferentieel; + @XmlElement(required = true) + protected CarOption stabiliteitsregeling; + @XmlElement(name = "regelbare_schokdemping", required = true) + protected CarOption regelbareSchokdemping; + @XmlElement(required = true) + protected CarOption niveauregeling; + @XmlElement(name = "airbag_bestuurder", required = true) + protected CarOption airbagBestuurder; + @XmlElement(name = "airbag_passagier", required = true) + protected CarOption airbagPassagier; + @XmlElement(name = "airbag_opzijvoor", required = true) + protected CarOption airbagOpzijvoor; + @XmlElement(name = "airbag_opzijachter", required = true) + protected CarOption airbagOpzijachter; + @XmlElement(name = "airbag_hoofdvoor", required = true) + protected CarOption airbagHoofdvoor; + @XmlElement(name = "airbag_hoofdachter", required = true) + protected CarOption airbagHoofdachter; + @XmlElement(required = true) + protected CarOption gordelspanners; + @XmlElement(name = "verstelbare_gordelhoogte", required = true) + protected CarOption verstelbareGordelhoogte; + @XmlElement(required = true) + protected CarOption startonderbreker; + @XmlElement(required = true) + protected CarOption inbraakalarm; + @XmlElement(name = "centrale_deurvergrendeling", required = true) + protected CarOption centraleDeurvergrendeling; + @XmlElement(name = "afstandbediening_deurvergrendeling", required = true) + protected CarOption afstandbedieningDeurvergrendeling; + @XmlElement(name = "automatische_vergrendeling", required = true) + protected CarOption automatischeVergrendeling; + @XmlElement(name = "keyless_entry", required = true) + protected CarOption keylessEntry; + @XmlElement(name = "elektrische_ramen_voor", required = true) + protected CarOption elektrischeRamenVoor; + @XmlElement(name = "elektrische_ramen_achter", required = true) + protected CarOption elektrischeRamenAchter; + @XmlElement(required = true) + protected CarOption stuurbekrachtiging; + @XmlElement(required = true) + protected CarOption stuurschakeling; + @XmlElement(name = "cruise_control", required = true) + protected CarOption cruiseControl; + @XmlElement(name = "radar_cruise_control", required = true) + protected CarOption radarCruiseControl; + @XmlElement(required = true) + protected CarOption airconditioning; + @XmlElement(required = true) + protected CarOption klimaatregeling; + @XmlElement(name = "gescheiden_temperatuurregeling", required = true) + protected CarOption gescheidenTemperatuurregeling; + @XmlElement(required = true) + protected CarOption pollenfilter; + @XmlElement(required = true) + protected CarOption parkeersensor; + @XmlElement(name = "hoofdsteunen_voor", required = true) + protected CarOption hoofdsteunenVoor; + @XmlElement(name = "hoofdsteunen_achter", required = true) + protected CarOption hoofdsteunenAchter; + @XmlElement(name = "verstelbare_hoofdsteunen_achter", required = true) + protected CarOption verstelbareHoofdsteunenAchter; + @XmlElement(name = "derde_hoofdsteun_achter", required = true) + protected CarOption derdeHoofdsteunAchter; + @XmlElement(name = "derde_driepuntsgordel_achter", required = true) + protected CarOption derdeDriepuntsgordelAchter; + @XmlElement(name = "verstelbare_lendensteun_bestuurder", required = true) + protected CarOption verstelbareLendensteunBestuurder; + @XmlElement(name = "verstelbare_lendensteun_passagier", required = true) + protected CarOption verstelbareLendensteunPassagier; + @XmlElement(name = "hoogteverstelling_bestuurder", required = true) + protected CarOption hoogteverstellingBestuurder; + @XmlElement(name = "hoogteverstelling_passagier", required = true) + protected CarOption hoogteverstellingPassagier; + @XmlElement(name = "elektrische_stoelverstelling", required = true) + protected CarOption elektrischeStoelverstelling; + @XmlElement(name = "geheugen_stoelverstelling", required = true) + protected CarOption geheugenStoelverstelling; + @XmlElement(name = "verwarmde_zitplaatsen_voor", required = true) + protected CarOption verwarmdeZitplaatsenVoor; + @XmlElement(name = "verwarmde_zitplaatsen_achter", required = true) + protected CarOption verwarmdeZitplaatsenAchter; + @XmlElement(required = true) + protected CarOption sportstoelen; + @XmlElement(name = "bekledingstof_leer", required = true) + protected CarOption bekledingstofLeer; + @XmlElement(required = true) + protected CarOption lerenbekleding; + @XmlElement(name = "hoogteverstelling_stuur", required = true) + protected CarOption hoogteverstellingStuur; + @XmlElement(name = "diepteverstelling_stuur", required = true) + protected CarOption diepteverstellingStuur; + @XmlElement(name = "elektrische_stuurverstelling", required = true) + protected CarOption elektrischeStuurverstelling; + @XmlElement(name = "leer_bekleed_stuur", required = true) + protected CarOption leerBekleedStuur; + @XmlElement(name = "middenarmsteun_voor", required = true) + protected CarOption middenarmsteunVoor; + @XmlElement(name = "middenarmsteun_achter", required = true) + protected CarOption middenarmsteunAchter; + @XmlElement(name = "neerklapbare_achterbank", required = true) + protected CarOption neerklapbareAchterbank; + @XmlElement(name = "in_delen_neerklapbaar_achterbank", required = true) + protected CarOption inDelenNeerklapbaarAchterbank; + @XmlElement(name = "opbergvak_linkerportier", required = true) + protected CarOption opbergvakLinkerportier; + @XmlElement(name = "bekerhouder_voor", required = true) + protected CarOption bekerhouderVoor; + @XmlElement(name = "bekerhouder_achter", required = true) + protected CarOption bekerhouderAchter; + @XmlElement(name = "zonnescherm_achterruit", required = true) + protected CarOption zonneschermAchterruit; + @XmlElement(required = true) + protected CarOption dagteller; + @XmlElement(required = true) + protected CarOption toerenteller; + @XmlElement(required = true) + protected CarOption temperatuurmeter; + @XmlElement(required = true) + protected CarOption oliepeilmeter; + @XmlElement(required = true) + protected CarOption oliedrukmeter; + @XmlElement(required = true) + protected CarOption olietemperatuurmeter; + @XmlElement(required = true) + protected CarOption voltmeter; + @XmlElement(required = true) + protected CarOption verbruiksmeter; + @XmlElement(required = true) + protected CarOption turbodrukmeter; + @XmlElement(required = true) + protected CarOption buitentemperatuurmeter; + @XmlElement(required = true) + protected CarOption klokje; + @XmlElement(required = true) + protected CarOption boardcomputer; + @XmlElement(required = true) + protected CarOption luidsprekers; + @XmlElement(required = true) + protected CarOption stereoinstallatie; + @XmlElement(required = true) + protected CarOption cdspeler; + @XmlElement(required = true) + protected CarOption cdwisselaar; + @XmlElement(required = true) + protected CarOption audiostuurbediening; + @XmlElement(required = true) + protected CarOption bandenspanningssensor; + @XmlElement(required = true) + protected CarOption navigatiesysteem; + @XmlElement(required = true) + protected CarOption televisie; + @XmlElement(required = true) + protected CarOption telefoonvoorbereiding; + @XmlElement(required = true) + protected CarOption telefoon; + @XmlElement(required = true) + protected CarOption intervalruitenwisser; + @XmlElement(name = "regelbare_interval", required = true) + protected CarOption regelbareInterval; + @XmlElement(required = true) + protected CarOption regensensor; + @XmlElement(name = "ruitenwisser_achter", required = true) + protected CarOption ruitenwisserAchter; + @XmlElement(required = true) + protected CarOption achterruitverwarming; + @XmlElement(required = true) + protected CarOption voorruitverwarming; + @XmlElement(name = "verwarmde_ruitensproeiers", required = true) + protected CarOption verwarmdeRuitensproeiers; + @XmlElement(name = "gelaagde_voorruit", required = true) + protected CarOption gelaagdeVoorruit; + @XmlElement(required = true) + protected CarOption getintglas; + @XmlElement(required = true) + protected CarOption schuifdak; + @XmlElement(name = "elektrisch_schuifdak", required = true) + protected CarOption elektrischSchuifdak; + @XmlElement(name = "beschermstrips_opzij", required = true) + protected CarOption beschermstripsOpzij; + @XmlElement(name = "bumpers_meegespoten", required = true) + protected CarOption bumpersMeegespoten; + @XmlElement(name = "metallic_lak", required = true) + protected CarOption metallicLak; + @XmlElement(name = "lichtmetalen_velgen", required = true) + protected CarOption lichtmetalenVelgen; + @XmlElement(name = "rechter_buitenspiegel", required = true) + protected CarOption rechterBuitenspiegel; + @XmlElement(name = "binnenuit_verstelbare_buitenspiegel", required = true) + protected CarOption binnenuitVerstelbareBuitenspiegel; + @XmlElement(name = "elektrische_spiegels", required = true) + protected CarOption elektrischeSpiegels; + @XmlElement(name = "verwarmde_spiegels", required = true) + protected CarOption verwarmdeSpiegels; + @XmlElement(name = "inklapbare_spiegels", required = true) + protected CarOption inklapbareSpiegels; + @XmlElement(name = "meegespoten_spiegels", required = true) + protected CarOption meegespotenSpiegels; + @XmlElement(name = "dodehoekspiegel_bestuurder", required = true) + protected CarOption dodehoekspiegelBestuurder; + @XmlElement(name = "dimmende_binnenspiegel", required = true) + protected CarOption dimmendeBinnenspiegel; + @XmlElement(name = "dimmende_buitenspiegel", required = true) + protected CarOption dimmendeBuitenspiegel; + @XmlElement(required = true) + protected CarOption dakrails; + @XmlElement(name = "binnenuit_te_openen_tankklep", required = true) + protected CarOption binnenuitTeOpenenTankklep; + @XmlElement(name = "binnenuit_te_openen_bagageklep", required = true) + protected CarOption binnenuitTeOpenenBagageklep; + @XmlElement(name = "op_afstand_te_openen_bagageklep", required = true) + protected CarOption opAfstandTeOpenenBagageklep; + @XmlElement(name = "halogeen_koplampen", required = true) + protected CarOption halogeenKoplampen; + @XmlElement(name = "xenon_koplampen", required = true) + protected CarOption xenonKoplampen; + @XmlElement(name = "verstelbare_koplampen", required = true) + protected CarOption verstelbareKoplampen; + @XmlElement(required = true) + protected CarOption koplampsproeiers; + @XmlElement(name = "automatisch_inschakelende_koplampen", required = true) + protected CarOption automatischInschakelendeKoplampen; + @XmlElement(required = true) + protected CarOption verstralers; + @XmlElement(name = "mistlampen_voor", required = true) + protected CarOption mistlampenVoor; + @XmlElement(name = "mistlampen_achter", required = true) + protected CarOption mistlampenAchter; + @XmlElement(name = "zoemer_vergeten_verlichting", required = true) + protected CarOption zoemerVergetenVerlichting; + @XmlElement(name = "verlichte_bagageruimte", required = true) + protected CarOption verlichteBagageruimte; + @XmlElement(name = "verlichte_motorruimte", required = true) + protected CarOption verlichteMotorruimte; + @XmlElement(name = "verlicht_dashboardkastje", required = true) + protected CarOption verlichtDashboardkastje; + @XmlElement(name = "regelbare_dashboardverlichting", required = true) + protected CarOption regelbareDashboardverlichting; + @XmlElement(name = "leeslampje_voor", required = true) + protected CarOption leeslampjeVoor; + @XmlElement(name = "leeslampje_achter", required = true) + protected CarOption leeslampjeAchter; + @XmlElement(name = "verlichte_makeupspiegel", required = true) + protected CarOption verlichteMakeupspiegel; + @XmlElement(name = "vertraging_interieurverlichting", required = true) + protected CarOption vertragingInterieurverlichting; + @XmlElement(required = true) + protected CarOption portierverlichting; + + /** + * Gets the value of the carId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCarId() { + return carId; + } + + /** + * Sets the value of the carId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCarId(String value) { + this.carId = value; + } + + /** + * Gets the value of the merk property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMerk() { + return merk; + } + + /** + * Sets the value of the merk property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMerk(String value) { + this.merk = value; + } + + /** + * Gets the value of the serie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSerie() { + return serie; + } + + /** + * Sets the value of the serie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSerie(String value) { + this.serie = value; + } + + /** + * Gets the value of the serieJaarVan property. + * + */ + public int getSerieJaarVan() { + return serieJaarVan; + } + + /** + * Sets the value of the serieJaarVan property. + * + */ + public void setSerieJaarVan(int value) { + this.serieJaarVan = value; + } + + /** + * Gets the value of the serieJaarTot property. + * + */ + public int getSerieJaarTot() { + return serieJaarTot; + } + + /** + * Sets the value of the serieJaarTot property. + * + */ + public void setSerieJaarTot(int value) { + this.serieJaarTot = value; + } + + /** + * Gets the value of the model property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModel() { + return model; + } + + /** + * Sets the value of the model property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModel(String value) { + this.model = value; + } + + /** + * Gets the value of the modelMaandVan property. + * + */ + public int getModelMaandVan() { + return modelMaandVan; + } + + /** + * Sets the value of the modelMaandVan property. + * + */ + public void setModelMaandVan(int value) { + this.modelMaandVan = value; + } + + /** + * Gets the value of the modelJaarVan property. + * + */ + public int getModelJaarVan() { + return modelJaarVan; + } + + /** + * Sets the value of the modelJaarVan property. + * + */ + public void setModelJaarVan(int value) { + this.modelJaarVan = value; + } + + /** + * Gets the value of the modelMaandTot property. + * + */ + public int getModelMaandTot() { + return modelMaandTot; + } + + /** + * Sets the value of the modelMaandTot property. + * + */ + public void setModelMaandTot(int value) { + this.modelMaandTot = value; + } + + /** + * Gets the value of the modelJaarTot property. + * + */ + public int getModelJaarTot() { + return modelJaarTot; + } + + /** + * Sets the value of the modelJaarTot property. + * + */ + public void setModelJaarTot(int value) { + this.modelJaarTot = value; + } + + /** + * Gets the value of the belastingMin property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBelastingMin() { + return belastingMin; + } + + /** + * Sets the value of the belastingMin property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBelastingMin(String value) { + this.belastingMin = value; + } + + /** + * Gets the value of the belastingMax property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBelastingMax() { + return belastingMax; + } + + /** + * Sets the value of the belastingMax property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBelastingMax(String value) { + this.belastingMax = value; + } + + /** + * Gets the value of the algemeneGarantie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAlgemeneGarantie() { + return algemeneGarantie; + } + + /** + * Sets the value of the algemeneGarantie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAlgemeneGarantie(String value) { + this.algemeneGarantie = value; + } + + /** + * Gets the value of the algemeneGarantieKm property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAlgemeneGarantieKm() { + return algemeneGarantieKm; + } + + /** + * Sets the value of the algemeneGarantieKm property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAlgemeneGarantieKm(String value) { + this.algemeneGarantieKm = value; + } + + /** + * Gets the value of the carrosserieGarantie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCarrosserieGarantie() { + return carrosserieGarantie; + } + + /** + * Sets the value of the carrosserieGarantie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCarrosserieGarantie(String value) { + this.carrosserieGarantie = value; + } + + /** + * Gets the value of the deuren property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDeuren() { + return deuren; + } + + /** + * Sets the value of the deuren property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDeuren(String value) { + this.deuren = value; + } + + /** + * Gets the value of the carrosserietype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCarrosserietype() { + return carrosserietype; + } + + /** + * Sets the value of the carrosserietype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCarrosserietype(String value) { + this.carrosserietype = value; + } + + /** + * Gets the value of the aantalVersnellingen property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAantalVersnellingen() { + return aantalVersnellingen; + } + + /** + * Sets the value of the aantalVersnellingen property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAantalVersnellingen(String value) { + this.aantalVersnellingen = value; + } + + /** + * Gets the value of the soortSchakeling property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSoortSchakeling() { + return soortSchakeling; + } + + /** + * Sets the value of the soortSchakeling property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSoortSchakeling(String value) { + this.soortSchakeling = value; + } + + /** + * Gets the value of the aandrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAandrijving() { + return aandrijving; + } + + /** + * Sets the value of the aandrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAandrijving(String value) { + this.aandrijving = value; + } + + /** + * Gets the value of the brandstoftype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrandstoftype() { + return brandstoftype; + } + + /** + * Sets the value of the brandstoftype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrandstoftype(String value) { + this.brandstoftype = value; + } + + /** + * Gets the value of the aantalCilinders property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAantalCilinders() { + return aantalCilinders; + } + + /** + * Sets the value of the aantalCilinders property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAantalCilinders(String value) { + this.aantalCilinders = value; + } + + /** + * Gets the value of the bouwwijze property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBouwwijze() { + return bouwwijze; + } + + /** + * Sets the value of the bouwwijze property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBouwwijze(String value) { + this.bouwwijze = value; + } + + /** + * Gets the value of the kleppenPerCilinder property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKleppenPerCilinder() { + return kleppenPerCilinder; + } + + /** + * Sets the value of the kleppenPerCilinder property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKleppenPerCilinder(String value) { + this.kleppenPerCilinder = value; + } + + /** + * Gets the value of the cilinderinhoud property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCilinderinhoud() { + return cilinderinhoud; + } + + /** + * Sets the value of the cilinderinhoud property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCilinderinhoud(String value) { + this.cilinderinhoud = value; + } + + /** + * Gets the value of the boring property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBoring() { + return boring; + } + + /** + * Sets the value of the boring property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBoring(String value) { + this.boring = value; + } + + /** + * Gets the value of the slag property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSlag() { + return slag; + } + + /** + * Sets the value of the slag property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSlag(String value) { + this.slag = value; + } + + /** + * Gets the value of the compressieverhouding property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompressieverhouding() { + return compressieverhouding; + } + + /** + * Sets the value of the compressieverhouding property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompressieverhouding(String value) { + this.compressieverhouding = value; + } + + /** + * Gets the value of the vermogenKw property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermogenKw() { + return vermogenKw; + } + + /** + * Sets the value of the vermogenKw property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermogenKw(String value) { + this.vermogenKw = value; + } + + /** + * Gets the value of the vermogenPk property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermogenPk() { + return vermogenPk; + } + + /** + * Sets the value of the vermogenPk property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermogenPk(String value) { + this.vermogenPk = value; + } + + /** + * Gets the value of the vermogenTpm property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVermogenTpm() { + return vermogenTpm; + } + + /** + * Sets the value of the vermogenTpm property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVermogenTpm(String value) { + this.vermogenTpm = value; + } + + /** + * Gets the value of the koppel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKoppel() { + return koppel; + } + + /** + * Sets the value of the koppel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKoppel(String value) { + this.koppel = value; + } + + /** + * Gets the value of the koppelTpm property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKoppelTpm() { + return koppelTpm; + } + + /** + * Sets the value of the koppelTpm property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKoppelTpm(String value) { + this.koppelTpm = value; + } + + /** + * Gets the value of the katalysator property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKatalysator() { + return katalysator; + } + + /** + * Sets the value of the katalysator property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKatalysator(String value) { + this.katalysator = value; + } + + /** + * Gets the value of the brandstofsysteem property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrandstofsysteem() { + return brandstofsysteem; + } + + /** + * Sets the value of the brandstofsysteem property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrandstofsysteem(String value) { + this.brandstofsysteem = value; + } + + /** + * Gets the value of the klepbediening property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKlepbediening() { + return klepbediening; + } + + /** + * Sets the value of the klepbediening property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKlepbediening(String value) { + this.klepbediening = value; + } + + /** + * Gets the value of the turbo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTurbo() { + return turbo; + } + + /** + * Sets the value of the turbo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTurbo(String value) { + this.turbo = value; + } + + /** + * Gets the value of the wielophangingVoor property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWielophangingVoor() { + return wielophangingVoor; + } + + /** + * Sets the value of the wielophangingVoor property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWielophangingVoor(String value) { + this.wielophangingVoor = value; + } + + /** + * Gets the value of the wielophangingAchter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWielophangingAchter() { + return wielophangingAchter; + } + + /** + * Sets the value of the wielophangingAchter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWielophangingAchter(String value) { + this.wielophangingAchter = value; + } + + /** + * Gets the value of the veringVoor property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVeringVoor() { + return veringVoor; + } + + /** + * Sets the value of the veringVoor property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVeringVoor(String value) { + this.veringVoor = value; + } + + /** + * Gets the value of the veringAchter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVeringAchter() { + return veringAchter; + } + + /** + * Sets the value of the veringAchter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVeringAchter(String value) { + this.veringAchter = value; + } + + /** + * Gets the value of the stabilisatorVoor property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStabilisatorVoor() { + return stabilisatorVoor; + } + + /** + * Sets the value of the stabilisatorVoor property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStabilisatorVoor(String value) { + this.stabilisatorVoor = value; + } + + /** + * Gets the value of the stabilisatorAchter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStabilisatorAchter() { + return stabilisatorAchter; + } + + /** + * Sets the value of the stabilisatorAchter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStabilisatorAchter(String value) { + this.stabilisatorAchter = value; + } + + /** + * Gets the value of the remmenVoor property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRemmenVoor() { + return remmenVoor; + } + + /** + * Sets the value of the remmenVoor property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRemmenVoor(String value) { + this.remmenVoor = value; + } + + /** + * Gets the value of the remmenVoorMm property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRemmenVoorMm() { + return remmenVoorMm; + } + + /** + * Sets the value of the remmenVoorMm property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRemmenVoorMm(String value) { + this.remmenVoorMm = value; + } + + /** + * Gets the value of the remmenAchter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRemmenAchter() { + return remmenAchter; + } + + /** + * Sets the value of the remmenAchter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRemmenAchter(String value) { + this.remmenAchter = value; + } + + /** + * Gets the value of the remmenAchterMm property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRemmenAchterMm() { + return remmenAchterMm; + } + + /** + * Sets the value of the remmenAchterMm property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRemmenAchterMm(String value) { + this.remmenAchterMm = value; + } + + /** + * Gets the value of the cwWaarde property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCwWaarde() { + return cwWaarde; + } + + /** + * Sets the value of the cwWaarde property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCwWaarde(String value) { + this.cwWaarde = value; + } + + /** + * Gets the value of the lengte property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLengte() { + return lengte; + } + + /** + * Sets the value of the lengte property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLengte(String value) { + this.lengte = value; + } + + /** + * Gets the value of the breedte property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBreedte() { + return breedte; + } + + /** + * Sets the value of the breedte property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBreedte(String value) { + this.breedte = value; + } + + /** + * Gets the value of the hoogte property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHoogte() { + return hoogte; + } + + /** + * Sets the value of the hoogte property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHoogte(String value) { + this.hoogte = value; + } + + /** + * Gets the value of the wielbasis property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWielbasis() { + return wielbasis; + } + + /** + * Sets the value of the wielbasis property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWielbasis(String value) { + this.wielbasis = value; + } + + /** + * Gets the value of the spoorbreedteVoor property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSpoorbreedteVoor() { + return spoorbreedteVoor; + } + + /** + * Sets the value of the spoorbreedteVoor property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSpoorbreedteVoor(String value) { + this.spoorbreedteVoor = value; + } + + /** + * Gets the value of the spoorbreedteAchter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSpoorbreedteAchter() { + return spoorbreedteAchter; + } + + /** + * Sets the value of the spoorbreedteAchter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSpoorbreedteAchter(String value) { + this.spoorbreedteAchter = value; + } + + /** + * Gets the value of the draaicirkel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDraaicirkel() { + return draaicirkel; + } + + /** + * Sets the value of the draaicirkel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDraaicirkel(String value) { + this.draaicirkel = value; + } + + /** + * Gets the value of the bandenmaatVoor property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBandenmaatVoor() { + return bandenmaatVoor; + } + + /** + * Sets the value of the bandenmaatVoor property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBandenmaatVoor(String value) { + this.bandenmaatVoor = value; + } + + /** + * Gets the value of the bandenmaatAchter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBandenmaatAchter() { + return bandenmaatAchter; + } + + /** + * Sets the value of the bandenmaatAchter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBandenmaatAchter(String value) { + this.bandenmaatAchter = value; + } + + /** + * Gets the value of the massa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMassa() { + return massa; + } + + /** + * Sets the value of the massa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMassa(String value) { + this.massa = value; + } + + /** + * Gets the value of the maxToelaatbareMassa property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMaxToelaatbareMassa() { + return maxToelaatbareMassa; + } + + /** + * Sets the value of the maxToelaatbareMassa property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMaxToelaatbareMassa(String value) { + this.maxToelaatbareMassa = value; + } + + /** + * Gets the value of the maxAanhangerGeremd property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMaxAanhangerGeremd() { + return maxAanhangerGeremd; + } + + /** + * Sets the value of the maxAanhangerGeremd property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMaxAanhangerGeremd(String value) { + this.maxAanhangerGeremd = value; + } + + /** + * Gets the value of the maxAanhangerOngeremd property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMaxAanhangerOngeremd() { + return maxAanhangerOngeremd; + } + + /** + * Sets the value of the maxAanhangerOngeremd property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMaxAanhangerOngeremd(String value) { + this.maxAanhangerOngeremd = value; + } + + /** + * Gets the value of the maxKogeldruk property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMaxKogeldruk() { + return maxKogeldruk; + } + + /** + * Sets the value of the maxKogeldruk property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMaxKogeldruk(String value) { + this.maxKogeldruk = value; + } + + /** + * Gets the value of the maxDakbelasting property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMaxDakbelasting() { + return maxDakbelasting; + } + + /** + * Sets the value of the maxDakbelasting property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMaxDakbelasting(String value) { + this.maxDakbelasting = value; + } + + /** + * Gets the value of the kofferMin property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKofferMin() { + return kofferMin; + } + + /** + * Sets the value of the kofferMin property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKofferMin(String value) { + this.kofferMin = value; + } + + /** + * Gets the value of the kofferMax property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKofferMax() { + return kofferMax; + } + + /** + * Sets the value of the kofferMax property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKofferMax(String value) { + this.kofferMax = value; + } + + /** + * Gets the value of the tankinhoud property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTankinhoud() { + return tankinhoud; + } + + /** + * Sets the value of the tankinhoud property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTankinhoud(String value) { + this.tankinhoud = value; + } + + /** + * Gets the value of the topsnelheid property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTopsnelheid() { + return topsnelheid; + } + + /** + * Sets the value of the topsnelheid property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTopsnelheid(String value) { + this.topsnelheid = value; + } + + /** + * Gets the value of the acceleratie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAcceleratie() { + return acceleratie; + } + + /** + * Sets the value of the acceleratie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAcceleratie(String value) { + this.acceleratie = value; + } + + /** + * Gets the value of the verbruikBinnenBebouwdeKom property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerbruikBinnenBebouwdeKom() { + return verbruikBinnenBebouwdeKom; + } + + /** + * Sets the value of the verbruikBinnenBebouwdeKom property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerbruikBinnenBebouwdeKom(String value) { + this.verbruikBinnenBebouwdeKom = value; + } + + /** + * Gets the value of the verbruikBuitenBebouwdeKom property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerbruikBuitenBebouwdeKom() { + return verbruikBuitenBebouwdeKom; + } + + /** + * Sets the value of the verbruikBuitenBebouwdeKom property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerbruikBuitenBebouwdeKom(String value) { + this.verbruikBuitenBebouwdeKom = value; + } + + /** + * Gets the value of the verbruikGecombineerd property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerbruikGecombineerd() { + return verbruikGecombineerd; + } + + /** + * Sets the value of the verbruikGecombineerd property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerbruikGecombineerd(String value) { + this.verbruikGecombineerd = value; + } + + /** + * Gets the value of the co2Uitstoot property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCo2Uitstoot() { + return co2Uitstoot; + } + + /** + * Sets the value of the co2Uitstoot property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCo2Uitstoot(String value) { + this.co2Uitstoot = value; + } + + /** + * Gets the value of the verbruikGemiddeld property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerbruikGemiddeld() { + return verbruikGemiddeld; + } + + /** + * Sets the value of the verbruikGemiddeld property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerbruikGemiddeld(String value) { + this.verbruikGemiddeld = value; + } + + /** + * Gets the value of the abs property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getAbs() { + return abs; + } + + /** + * Sets the value of the abs property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setAbs(CarOption value) { + this.abs = value; + } + + /** + * Gets the value of the remkrachtverdeling property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getRemkrachtverdeling() { + return remkrachtverdeling; + } + + /** + * Sets the value of the remkrachtverdeling property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setRemkrachtverdeling(CarOption value) { + this.remkrachtverdeling = value; + } + + /** + * Gets the value of the brakeassist property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getBrakeassist() { + return brakeassist; + } + + /** + * Sets the value of the brakeassist property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setBrakeassist(CarOption value) { + this.brakeassist = value; + } + + /** + * Gets the value of the tractiecontrole property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getTractiecontrole() { + return tractiecontrole; + } + + /** + * Sets the value of the tractiecontrole property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setTractiecontrole(CarOption value) { + this.tractiecontrole = value; + } + + /** + * Gets the value of the sperdifferentieel property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getSperdifferentieel() { + return sperdifferentieel; + } + + /** + * Sets the value of the sperdifferentieel property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setSperdifferentieel(CarOption value) { + this.sperdifferentieel = value; + } + + /** + * Gets the value of the stabiliteitsregeling property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getStabiliteitsregeling() { + return stabiliteitsregeling; + } + + /** + * Sets the value of the stabiliteitsregeling property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setStabiliteitsregeling(CarOption value) { + this.stabiliteitsregeling = value; + } + + /** + * Gets the value of the regelbareSchokdemping property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getRegelbareSchokdemping() { + return regelbareSchokdemping; + } + + /** + * Sets the value of the regelbareSchokdemping property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setRegelbareSchokdemping(CarOption value) { + this.regelbareSchokdemping = value; + } + + /** + * Gets the value of the niveauregeling property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getNiveauregeling() { + return niveauregeling; + } + + /** + * Sets the value of the niveauregeling property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setNiveauregeling(CarOption value) { + this.niveauregeling = value; + } + + /** + * Gets the value of the airbagBestuurder property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getAirbagBestuurder() { + return airbagBestuurder; + } + + /** + * Sets the value of the airbagBestuurder property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setAirbagBestuurder(CarOption value) { + this.airbagBestuurder = value; + } + + /** + * Gets the value of the airbagPassagier property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getAirbagPassagier() { + return airbagPassagier; + } + + /** + * Sets the value of the airbagPassagier property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setAirbagPassagier(CarOption value) { + this.airbagPassagier = value; + } + + /** + * Gets the value of the airbagOpzijvoor property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getAirbagOpzijvoor() { + return airbagOpzijvoor; + } + + /** + * Sets the value of the airbagOpzijvoor property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setAirbagOpzijvoor(CarOption value) { + this.airbagOpzijvoor = value; + } + + /** + * Gets the value of the airbagOpzijachter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getAirbagOpzijachter() { + return airbagOpzijachter; + } + + /** + * Sets the value of the airbagOpzijachter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setAirbagOpzijachter(CarOption value) { + this.airbagOpzijachter = value; + } + + /** + * Gets the value of the airbagHoofdvoor property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getAirbagHoofdvoor() { + return airbagHoofdvoor; + } + + /** + * Sets the value of the airbagHoofdvoor property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setAirbagHoofdvoor(CarOption value) { + this.airbagHoofdvoor = value; + } + + /** + * Gets the value of the airbagHoofdachter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getAirbagHoofdachter() { + return airbagHoofdachter; + } + + /** + * Sets the value of the airbagHoofdachter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setAirbagHoofdachter(CarOption value) { + this.airbagHoofdachter = value; + } + + /** + * Gets the value of the gordelspanners property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getGordelspanners() { + return gordelspanners; + } + + /** + * Sets the value of the gordelspanners property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setGordelspanners(CarOption value) { + this.gordelspanners = value; + } + + /** + * Gets the value of the verstelbareGordelhoogte property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVerstelbareGordelhoogte() { + return verstelbareGordelhoogte; + } + + /** + * Sets the value of the verstelbareGordelhoogte property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVerstelbareGordelhoogte(CarOption value) { + this.verstelbareGordelhoogte = value; + } + + /** + * Gets the value of the startonderbreker property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getStartonderbreker() { + return startonderbreker; + } + + /** + * Sets the value of the startonderbreker property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setStartonderbreker(CarOption value) { + this.startonderbreker = value; + } + + /** + * Gets the value of the inbraakalarm property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getInbraakalarm() { + return inbraakalarm; + } + + /** + * Sets the value of the inbraakalarm property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setInbraakalarm(CarOption value) { + this.inbraakalarm = value; + } + + /** + * Gets the value of the centraleDeurvergrendeling property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getCentraleDeurvergrendeling() { + return centraleDeurvergrendeling; + } + + /** + * Sets the value of the centraleDeurvergrendeling property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setCentraleDeurvergrendeling(CarOption value) { + this.centraleDeurvergrendeling = value; + } + + /** + * Gets the value of the afstandbedieningDeurvergrendeling property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getAfstandbedieningDeurvergrendeling() { + return afstandbedieningDeurvergrendeling; + } + + /** + * Sets the value of the afstandbedieningDeurvergrendeling property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setAfstandbedieningDeurvergrendeling(CarOption value) { + this.afstandbedieningDeurvergrendeling = value; + } + + /** + * Gets the value of the automatischeVergrendeling property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getAutomatischeVergrendeling() { + return automatischeVergrendeling; + } + + /** + * Sets the value of the automatischeVergrendeling property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setAutomatischeVergrendeling(CarOption value) { + this.automatischeVergrendeling = value; + } + + /** + * Gets the value of the keylessEntry property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getKeylessEntry() { + return keylessEntry; + } + + /** + * Sets the value of the keylessEntry property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setKeylessEntry(CarOption value) { + this.keylessEntry = value; + } + + /** + * Gets the value of the elektrischeRamenVoor property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getElektrischeRamenVoor() { + return elektrischeRamenVoor; + } + + /** + * Sets the value of the elektrischeRamenVoor property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setElektrischeRamenVoor(CarOption value) { + this.elektrischeRamenVoor = value; + } + + /** + * Gets the value of the elektrischeRamenAchter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getElektrischeRamenAchter() { + return elektrischeRamenAchter; + } + + /** + * Sets the value of the elektrischeRamenAchter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setElektrischeRamenAchter(CarOption value) { + this.elektrischeRamenAchter = value; + } + + /** + * Gets the value of the stuurbekrachtiging property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getStuurbekrachtiging() { + return stuurbekrachtiging; + } + + /** + * Sets the value of the stuurbekrachtiging property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setStuurbekrachtiging(CarOption value) { + this.stuurbekrachtiging = value; + } + + /** + * Gets the value of the stuurschakeling property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getStuurschakeling() { + return stuurschakeling; + } + + /** + * Sets the value of the stuurschakeling property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setStuurschakeling(CarOption value) { + this.stuurschakeling = value; + } + + /** + * Gets the value of the cruiseControl property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getCruiseControl() { + return cruiseControl; + } + + /** + * Sets the value of the cruiseControl property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setCruiseControl(CarOption value) { + this.cruiseControl = value; + } + + /** + * Gets the value of the radarCruiseControl property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getRadarCruiseControl() { + return radarCruiseControl; + } + + /** + * Sets the value of the radarCruiseControl property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setRadarCruiseControl(CarOption value) { + this.radarCruiseControl = value; + } + + /** + * Gets the value of the airconditioning property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getAirconditioning() { + return airconditioning; + } + + /** + * Sets the value of the airconditioning property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setAirconditioning(CarOption value) { + this.airconditioning = value; + } + + /** + * Gets the value of the klimaatregeling property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getKlimaatregeling() { + return klimaatregeling; + } + + /** + * Sets the value of the klimaatregeling property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setKlimaatregeling(CarOption value) { + this.klimaatregeling = value; + } + + /** + * Gets the value of the gescheidenTemperatuurregeling property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getGescheidenTemperatuurregeling() { + return gescheidenTemperatuurregeling; + } + + /** + * Sets the value of the gescheidenTemperatuurregeling property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setGescheidenTemperatuurregeling(CarOption value) { + this.gescheidenTemperatuurregeling = value; + } + + /** + * Gets the value of the pollenfilter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getPollenfilter() { + return pollenfilter; + } + + /** + * Sets the value of the pollenfilter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setPollenfilter(CarOption value) { + this.pollenfilter = value; + } + + /** + * Gets the value of the parkeersensor property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getParkeersensor() { + return parkeersensor; + } + + /** + * Sets the value of the parkeersensor property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setParkeersensor(CarOption value) { + this.parkeersensor = value; + } + + /** + * Gets the value of the hoofdsteunenVoor property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getHoofdsteunenVoor() { + return hoofdsteunenVoor; + } + + /** + * Sets the value of the hoofdsteunenVoor property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setHoofdsteunenVoor(CarOption value) { + this.hoofdsteunenVoor = value; + } + + /** + * Gets the value of the hoofdsteunenAchter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getHoofdsteunenAchter() { + return hoofdsteunenAchter; + } + + /** + * Sets the value of the hoofdsteunenAchter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setHoofdsteunenAchter(CarOption value) { + this.hoofdsteunenAchter = value; + } + + /** + * Gets the value of the verstelbareHoofdsteunenAchter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVerstelbareHoofdsteunenAchter() { + return verstelbareHoofdsteunenAchter; + } + + /** + * Sets the value of the verstelbareHoofdsteunenAchter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVerstelbareHoofdsteunenAchter(CarOption value) { + this.verstelbareHoofdsteunenAchter = value; + } + + /** + * Gets the value of the derdeHoofdsteunAchter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getDerdeHoofdsteunAchter() { + return derdeHoofdsteunAchter; + } + + /** + * Sets the value of the derdeHoofdsteunAchter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setDerdeHoofdsteunAchter(CarOption value) { + this.derdeHoofdsteunAchter = value; + } + + /** + * Gets the value of the derdeDriepuntsgordelAchter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getDerdeDriepuntsgordelAchter() { + return derdeDriepuntsgordelAchter; + } + + /** + * Sets the value of the derdeDriepuntsgordelAchter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setDerdeDriepuntsgordelAchter(CarOption value) { + this.derdeDriepuntsgordelAchter = value; + } + + /** + * Gets the value of the verstelbareLendensteunBestuurder property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVerstelbareLendensteunBestuurder() { + return verstelbareLendensteunBestuurder; + } + + /** + * Sets the value of the verstelbareLendensteunBestuurder property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVerstelbareLendensteunBestuurder(CarOption value) { + this.verstelbareLendensteunBestuurder = value; + } + + /** + * Gets the value of the verstelbareLendensteunPassagier property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVerstelbareLendensteunPassagier() { + return verstelbareLendensteunPassagier; + } + + /** + * Sets the value of the verstelbareLendensteunPassagier property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVerstelbareLendensteunPassagier(CarOption value) { + this.verstelbareLendensteunPassagier = value; + } + + /** + * Gets the value of the hoogteverstellingBestuurder property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getHoogteverstellingBestuurder() { + return hoogteverstellingBestuurder; + } + + /** + * Sets the value of the hoogteverstellingBestuurder property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setHoogteverstellingBestuurder(CarOption value) { + this.hoogteverstellingBestuurder = value; + } + + /** + * Gets the value of the hoogteverstellingPassagier property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getHoogteverstellingPassagier() { + return hoogteverstellingPassagier; + } + + /** + * Sets the value of the hoogteverstellingPassagier property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setHoogteverstellingPassagier(CarOption value) { + this.hoogteverstellingPassagier = value; + } + + /** + * Gets the value of the elektrischeStoelverstelling property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getElektrischeStoelverstelling() { + return elektrischeStoelverstelling; + } + + /** + * Sets the value of the elektrischeStoelverstelling property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setElektrischeStoelverstelling(CarOption value) { + this.elektrischeStoelverstelling = value; + } + + /** + * Gets the value of the geheugenStoelverstelling property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getGeheugenStoelverstelling() { + return geheugenStoelverstelling; + } + + /** + * Sets the value of the geheugenStoelverstelling property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setGeheugenStoelverstelling(CarOption value) { + this.geheugenStoelverstelling = value; + } + + /** + * Gets the value of the verwarmdeZitplaatsenVoor property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVerwarmdeZitplaatsenVoor() { + return verwarmdeZitplaatsenVoor; + } + + /** + * Sets the value of the verwarmdeZitplaatsenVoor property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVerwarmdeZitplaatsenVoor(CarOption value) { + this.verwarmdeZitplaatsenVoor = value; + } + + /** + * Gets the value of the verwarmdeZitplaatsenAchter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVerwarmdeZitplaatsenAchter() { + return verwarmdeZitplaatsenAchter; + } + + /** + * Sets the value of the verwarmdeZitplaatsenAchter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVerwarmdeZitplaatsenAchter(CarOption value) { + this.verwarmdeZitplaatsenAchter = value; + } + + /** + * Gets the value of the sportstoelen property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getSportstoelen() { + return sportstoelen; + } + + /** + * Sets the value of the sportstoelen property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setSportstoelen(CarOption value) { + this.sportstoelen = value; + } + + /** + * Gets the value of the bekledingstofLeer property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getBekledingstofLeer() { + return bekledingstofLeer; + } + + /** + * Sets the value of the bekledingstofLeer property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setBekledingstofLeer(CarOption value) { + this.bekledingstofLeer = value; + } + + /** + * Gets the value of the lerenbekleding property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getLerenbekleding() { + return lerenbekleding; + } + + /** + * Sets the value of the lerenbekleding property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setLerenbekleding(CarOption value) { + this.lerenbekleding = value; + } + + /** + * Gets the value of the hoogteverstellingStuur property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getHoogteverstellingStuur() { + return hoogteverstellingStuur; + } + + /** + * Sets the value of the hoogteverstellingStuur property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setHoogteverstellingStuur(CarOption value) { + this.hoogteverstellingStuur = value; + } + + /** + * Gets the value of the diepteverstellingStuur property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getDiepteverstellingStuur() { + return diepteverstellingStuur; + } + + /** + * Sets the value of the diepteverstellingStuur property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setDiepteverstellingStuur(CarOption value) { + this.diepteverstellingStuur = value; + } + + /** + * Gets the value of the elektrischeStuurverstelling property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getElektrischeStuurverstelling() { + return elektrischeStuurverstelling; + } + + /** + * Sets the value of the elektrischeStuurverstelling property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setElektrischeStuurverstelling(CarOption value) { + this.elektrischeStuurverstelling = value; + } + + /** + * Gets the value of the leerBekleedStuur property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getLeerBekleedStuur() { + return leerBekleedStuur; + } + + /** + * Sets the value of the leerBekleedStuur property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setLeerBekleedStuur(CarOption value) { + this.leerBekleedStuur = value; + } + + /** + * Gets the value of the middenarmsteunVoor property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getMiddenarmsteunVoor() { + return middenarmsteunVoor; + } + + /** + * Sets the value of the middenarmsteunVoor property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setMiddenarmsteunVoor(CarOption value) { + this.middenarmsteunVoor = value; + } + + /** + * Gets the value of the middenarmsteunAchter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getMiddenarmsteunAchter() { + return middenarmsteunAchter; + } + + /** + * Sets the value of the middenarmsteunAchter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setMiddenarmsteunAchter(CarOption value) { + this.middenarmsteunAchter = value; + } + + /** + * Gets the value of the neerklapbareAchterbank property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getNeerklapbareAchterbank() { + return neerklapbareAchterbank; + } + + /** + * Sets the value of the neerklapbareAchterbank property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setNeerklapbareAchterbank(CarOption value) { + this.neerklapbareAchterbank = value; + } + + /** + * Gets the value of the inDelenNeerklapbaarAchterbank property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getInDelenNeerklapbaarAchterbank() { + return inDelenNeerklapbaarAchterbank; + } + + /** + * Sets the value of the inDelenNeerklapbaarAchterbank property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setInDelenNeerklapbaarAchterbank(CarOption value) { + this.inDelenNeerklapbaarAchterbank = value; + } + + /** + * Gets the value of the opbergvakLinkerportier property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getOpbergvakLinkerportier() { + return opbergvakLinkerportier; + } + + /** + * Sets the value of the opbergvakLinkerportier property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setOpbergvakLinkerportier(CarOption value) { + this.opbergvakLinkerportier = value; + } + + /** + * Gets the value of the bekerhouderVoor property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getBekerhouderVoor() { + return bekerhouderVoor; + } + + /** + * Sets the value of the bekerhouderVoor property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setBekerhouderVoor(CarOption value) { + this.bekerhouderVoor = value; + } + + /** + * Gets the value of the bekerhouderAchter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getBekerhouderAchter() { + return bekerhouderAchter; + } + + /** + * Sets the value of the bekerhouderAchter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setBekerhouderAchter(CarOption value) { + this.bekerhouderAchter = value; + } + + /** + * Gets the value of the zonneschermAchterruit property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getZonneschermAchterruit() { + return zonneschermAchterruit; + } + + /** + * Sets the value of the zonneschermAchterruit property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setZonneschermAchterruit(CarOption value) { + this.zonneschermAchterruit = value; + } + + /** + * Gets the value of the dagteller property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getDagteller() { + return dagteller; + } + + /** + * Sets the value of the dagteller property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setDagteller(CarOption value) { + this.dagteller = value; + } + + /** + * Gets the value of the toerenteller property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getToerenteller() { + return toerenteller; + } + + /** + * Sets the value of the toerenteller property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setToerenteller(CarOption value) { + this.toerenteller = value; + } + + /** + * Gets the value of the temperatuurmeter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getTemperatuurmeter() { + return temperatuurmeter; + } + + /** + * Sets the value of the temperatuurmeter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setTemperatuurmeter(CarOption value) { + this.temperatuurmeter = value; + } + + /** + * Gets the value of the oliepeilmeter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getOliepeilmeter() { + return oliepeilmeter; + } + + /** + * Sets the value of the oliepeilmeter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setOliepeilmeter(CarOption value) { + this.oliepeilmeter = value; + } + + /** + * Gets the value of the oliedrukmeter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getOliedrukmeter() { + return oliedrukmeter; + } + + /** + * Sets the value of the oliedrukmeter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setOliedrukmeter(CarOption value) { + this.oliedrukmeter = value; + } + + /** + * Gets the value of the olietemperatuurmeter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getOlietemperatuurmeter() { + return olietemperatuurmeter; + } + + /** + * Sets the value of the olietemperatuurmeter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setOlietemperatuurmeter(CarOption value) { + this.olietemperatuurmeter = value; + } + + /** + * Gets the value of the voltmeter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVoltmeter() { + return voltmeter; + } + + /** + * Sets the value of the voltmeter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVoltmeter(CarOption value) { + this.voltmeter = value; + } + + /** + * Gets the value of the verbruiksmeter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVerbruiksmeter() { + return verbruiksmeter; + } + + /** + * Sets the value of the verbruiksmeter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVerbruiksmeter(CarOption value) { + this.verbruiksmeter = value; + } + + /** + * Gets the value of the turbodrukmeter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getTurbodrukmeter() { + return turbodrukmeter; + } + + /** + * Sets the value of the turbodrukmeter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setTurbodrukmeter(CarOption value) { + this.turbodrukmeter = value; + } + + /** + * Gets the value of the buitentemperatuurmeter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getBuitentemperatuurmeter() { + return buitentemperatuurmeter; + } + + /** + * Sets the value of the buitentemperatuurmeter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setBuitentemperatuurmeter(CarOption value) { + this.buitentemperatuurmeter = value; + } + + /** + * Gets the value of the klokje property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getKlokje() { + return klokje; + } + + /** + * Sets the value of the klokje property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setKlokje(CarOption value) { + this.klokje = value; + } + + /** + * Gets the value of the boardcomputer property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getBoardcomputer() { + return boardcomputer; + } + + /** + * Sets the value of the boardcomputer property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setBoardcomputer(CarOption value) { + this.boardcomputer = value; + } + + /** + * Gets the value of the luidsprekers property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getLuidsprekers() { + return luidsprekers; + } + + /** + * Sets the value of the luidsprekers property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setLuidsprekers(CarOption value) { + this.luidsprekers = value; + } + + /** + * Gets the value of the stereoinstallatie property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getStereoinstallatie() { + return stereoinstallatie; + } + + /** + * Sets the value of the stereoinstallatie property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setStereoinstallatie(CarOption value) { + this.stereoinstallatie = value; + } + + /** + * Gets the value of the cdspeler property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getCdspeler() { + return cdspeler; + } + + /** + * Sets the value of the cdspeler property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setCdspeler(CarOption value) { + this.cdspeler = value; + } + + /** + * Gets the value of the cdwisselaar property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getCdwisselaar() { + return cdwisselaar; + } + + /** + * Sets the value of the cdwisselaar property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setCdwisselaar(CarOption value) { + this.cdwisselaar = value; + } + + /** + * Gets the value of the audiostuurbediening property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getAudiostuurbediening() { + return audiostuurbediening; + } + + /** + * Sets the value of the audiostuurbediening property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setAudiostuurbediening(CarOption value) { + this.audiostuurbediening = value; + } + + /** + * Gets the value of the bandenspanningssensor property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getBandenspanningssensor() { + return bandenspanningssensor; + } + + /** + * Sets the value of the bandenspanningssensor property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setBandenspanningssensor(CarOption value) { + this.bandenspanningssensor = value; + } + + /** + * Gets the value of the navigatiesysteem property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getNavigatiesysteem() { + return navigatiesysteem; + } + + /** + * Sets the value of the navigatiesysteem property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setNavigatiesysteem(CarOption value) { + this.navigatiesysteem = value; + } + + /** + * Gets the value of the televisie property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getTelevisie() { + return televisie; + } + + /** + * Sets the value of the televisie property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setTelevisie(CarOption value) { + this.televisie = value; + } + + /** + * Gets the value of the telefoonvoorbereiding property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getTelefoonvoorbereiding() { + return telefoonvoorbereiding; + } + + /** + * Sets the value of the telefoonvoorbereiding property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setTelefoonvoorbereiding(CarOption value) { + this.telefoonvoorbereiding = value; + } + + /** + * Gets the value of the telefoon property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getTelefoon() { + return telefoon; + } + + /** + * Sets the value of the telefoon property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setTelefoon(CarOption value) { + this.telefoon = value; + } + + /** + * Gets the value of the intervalruitenwisser property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getIntervalruitenwisser() { + return intervalruitenwisser; + } + + /** + * Sets the value of the intervalruitenwisser property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setIntervalruitenwisser(CarOption value) { + this.intervalruitenwisser = value; + } + + /** + * Gets the value of the regelbareInterval property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getRegelbareInterval() { + return regelbareInterval; + } + + /** + * Sets the value of the regelbareInterval property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setRegelbareInterval(CarOption value) { + this.regelbareInterval = value; + } + + /** + * Gets the value of the regensensor property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getRegensensor() { + return regensensor; + } + + /** + * Sets the value of the regensensor property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setRegensensor(CarOption value) { + this.regensensor = value; + } + + /** + * Gets the value of the ruitenwisserAchter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getRuitenwisserAchter() { + return ruitenwisserAchter; + } + + /** + * Sets the value of the ruitenwisserAchter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setRuitenwisserAchter(CarOption value) { + this.ruitenwisserAchter = value; + } + + /** + * Gets the value of the achterruitverwarming property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getAchterruitverwarming() { + return achterruitverwarming; + } + + /** + * Sets the value of the achterruitverwarming property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setAchterruitverwarming(CarOption value) { + this.achterruitverwarming = value; + } + + /** + * Gets the value of the voorruitverwarming property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVoorruitverwarming() { + return voorruitverwarming; + } + + /** + * Sets the value of the voorruitverwarming property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVoorruitverwarming(CarOption value) { + this.voorruitverwarming = value; + } + + /** + * Gets the value of the verwarmdeRuitensproeiers property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVerwarmdeRuitensproeiers() { + return verwarmdeRuitensproeiers; + } + + /** + * Sets the value of the verwarmdeRuitensproeiers property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVerwarmdeRuitensproeiers(CarOption value) { + this.verwarmdeRuitensproeiers = value; + } + + /** + * Gets the value of the gelaagdeVoorruit property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getGelaagdeVoorruit() { + return gelaagdeVoorruit; + } + + /** + * Sets the value of the gelaagdeVoorruit property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setGelaagdeVoorruit(CarOption value) { + this.gelaagdeVoorruit = value; + } + + /** + * Gets the value of the getintglas property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getGetintglas() { + return getintglas; + } + + /** + * Sets the value of the getintglas property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setGetintglas(CarOption value) { + this.getintglas = value; + } + + /** + * Gets the value of the schuifdak property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getSchuifdak() { + return schuifdak; + } + + /** + * Sets the value of the schuifdak property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setSchuifdak(CarOption value) { + this.schuifdak = value; + } + + /** + * Gets the value of the elektrischSchuifdak property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getElektrischSchuifdak() { + return elektrischSchuifdak; + } + + /** + * Sets the value of the elektrischSchuifdak property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setElektrischSchuifdak(CarOption value) { + this.elektrischSchuifdak = value; + } + + /** + * Gets the value of the beschermstripsOpzij property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getBeschermstripsOpzij() { + return beschermstripsOpzij; + } + + /** + * Sets the value of the beschermstripsOpzij property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setBeschermstripsOpzij(CarOption value) { + this.beschermstripsOpzij = value; + } + + /** + * Gets the value of the bumpersMeegespoten property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getBumpersMeegespoten() { + return bumpersMeegespoten; + } + + /** + * Sets the value of the bumpersMeegespoten property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setBumpersMeegespoten(CarOption value) { + this.bumpersMeegespoten = value; + } + + /** + * Gets the value of the metallicLak property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getMetallicLak() { + return metallicLak; + } + + /** + * Sets the value of the metallicLak property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setMetallicLak(CarOption value) { + this.metallicLak = value; + } + + /** + * Gets the value of the lichtmetalenVelgen property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getLichtmetalenVelgen() { + return lichtmetalenVelgen; + } + + /** + * Sets the value of the lichtmetalenVelgen property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setLichtmetalenVelgen(CarOption value) { + this.lichtmetalenVelgen = value; + } + + /** + * Gets the value of the rechterBuitenspiegel property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getRechterBuitenspiegel() { + return rechterBuitenspiegel; + } + + /** + * Sets the value of the rechterBuitenspiegel property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setRechterBuitenspiegel(CarOption value) { + this.rechterBuitenspiegel = value; + } + + /** + * Gets the value of the binnenuitVerstelbareBuitenspiegel property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getBinnenuitVerstelbareBuitenspiegel() { + return binnenuitVerstelbareBuitenspiegel; + } + + /** + * Sets the value of the binnenuitVerstelbareBuitenspiegel property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setBinnenuitVerstelbareBuitenspiegel(CarOption value) { + this.binnenuitVerstelbareBuitenspiegel = value; + } + + /** + * Gets the value of the elektrischeSpiegels property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getElektrischeSpiegels() { + return elektrischeSpiegels; + } + + /** + * Sets the value of the elektrischeSpiegels property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setElektrischeSpiegels(CarOption value) { + this.elektrischeSpiegels = value; + } + + /** + * Gets the value of the verwarmdeSpiegels property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVerwarmdeSpiegels() { + return verwarmdeSpiegels; + } + + /** + * Sets the value of the verwarmdeSpiegels property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVerwarmdeSpiegels(CarOption value) { + this.verwarmdeSpiegels = value; + } + + /** + * Gets the value of the inklapbareSpiegels property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getInklapbareSpiegels() { + return inklapbareSpiegels; + } + + /** + * Sets the value of the inklapbareSpiegels property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setInklapbareSpiegels(CarOption value) { + this.inklapbareSpiegels = value; + } + + /** + * Gets the value of the meegespotenSpiegels property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getMeegespotenSpiegels() { + return meegespotenSpiegels; + } + + /** + * Sets the value of the meegespotenSpiegels property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setMeegespotenSpiegels(CarOption value) { + this.meegespotenSpiegels = value; + } + + /** + * Gets the value of the dodehoekspiegelBestuurder property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getDodehoekspiegelBestuurder() { + return dodehoekspiegelBestuurder; + } + + /** + * Sets the value of the dodehoekspiegelBestuurder property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setDodehoekspiegelBestuurder(CarOption value) { + this.dodehoekspiegelBestuurder = value; + } + + /** + * Gets the value of the dimmendeBinnenspiegel property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getDimmendeBinnenspiegel() { + return dimmendeBinnenspiegel; + } + + /** + * Sets the value of the dimmendeBinnenspiegel property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setDimmendeBinnenspiegel(CarOption value) { + this.dimmendeBinnenspiegel = value; + } + + /** + * Gets the value of the dimmendeBuitenspiegel property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getDimmendeBuitenspiegel() { + return dimmendeBuitenspiegel; + } + + /** + * Sets the value of the dimmendeBuitenspiegel property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setDimmendeBuitenspiegel(CarOption value) { + this.dimmendeBuitenspiegel = value; + } + + /** + * Gets the value of the dakrails property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getDakrails() { + return dakrails; + } + + /** + * Sets the value of the dakrails property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setDakrails(CarOption value) { + this.dakrails = value; + } + + /** + * Gets the value of the binnenuitTeOpenenTankklep property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getBinnenuitTeOpenenTankklep() { + return binnenuitTeOpenenTankklep; + } + + /** + * Sets the value of the binnenuitTeOpenenTankklep property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setBinnenuitTeOpenenTankklep(CarOption value) { + this.binnenuitTeOpenenTankklep = value; + } + + /** + * Gets the value of the binnenuitTeOpenenBagageklep property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getBinnenuitTeOpenenBagageklep() { + return binnenuitTeOpenenBagageklep; + } + + /** + * Sets the value of the binnenuitTeOpenenBagageklep property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setBinnenuitTeOpenenBagageklep(CarOption value) { + this.binnenuitTeOpenenBagageklep = value; + } + + /** + * Gets the value of the opAfstandTeOpenenBagageklep property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getOpAfstandTeOpenenBagageklep() { + return opAfstandTeOpenenBagageklep; + } + + /** + * Sets the value of the opAfstandTeOpenenBagageklep property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setOpAfstandTeOpenenBagageklep(CarOption value) { + this.opAfstandTeOpenenBagageklep = value; + } + + /** + * Gets the value of the halogeenKoplampen property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getHalogeenKoplampen() { + return halogeenKoplampen; + } + + /** + * Sets the value of the halogeenKoplampen property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setHalogeenKoplampen(CarOption value) { + this.halogeenKoplampen = value; + } + + /** + * Gets the value of the xenonKoplampen property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getXenonKoplampen() { + return xenonKoplampen; + } + + /** + * Sets the value of the xenonKoplampen property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setXenonKoplampen(CarOption value) { + this.xenonKoplampen = value; + } + + /** + * Gets the value of the verstelbareKoplampen property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVerstelbareKoplampen() { + return verstelbareKoplampen; + } + + /** + * Sets the value of the verstelbareKoplampen property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVerstelbareKoplampen(CarOption value) { + this.verstelbareKoplampen = value; + } + + /** + * Gets the value of the koplampsproeiers property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getKoplampsproeiers() { + return koplampsproeiers; + } + + /** + * Sets the value of the koplampsproeiers property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setKoplampsproeiers(CarOption value) { + this.koplampsproeiers = value; + } + + /** + * Gets the value of the automatischInschakelendeKoplampen property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getAutomatischInschakelendeKoplampen() { + return automatischInschakelendeKoplampen; + } + + /** + * Sets the value of the automatischInschakelendeKoplampen property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setAutomatischInschakelendeKoplampen(CarOption value) { + this.automatischInschakelendeKoplampen = value; + } + + /** + * Gets the value of the verstralers property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVerstralers() { + return verstralers; + } + + /** + * Sets the value of the verstralers property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVerstralers(CarOption value) { + this.verstralers = value; + } + + /** + * Gets the value of the mistlampenVoor property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getMistlampenVoor() { + return mistlampenVoor; + } + + /** + * Sets the value of the mistlampenVoor property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setMistlampenVoor(CarOption value) { + this.mistlampenVoor = value; + } + + /** + * Gets the value of the mistlampenAchter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getMistlampenAchter() { + return mistlampenAchter; + } + + /** + * Sets the value of the mistlampenAchter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setMistlampenAchter(CarOption value) { + this.mistlampenAchter = value; + } + + /** + * Gets the value of the zoemerVergetenVerlichting property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getZoemerVergetenVerlichting() { + return zoemerVergetenVerlichting; + } + + /** + * Sets the value of the zoemerVergetenVerlichting property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setZoemerVergetenVerlichting(CarOption value) { + this.zoemerVergetenVerlichting = value; + } + + /** + * Gets the value of the verlichteBagageruimte property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVerlichteBagageruimte() { + return verlichteBagageruimte; + } + + /** + * Sets the value of the verlichteBagageruimte property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVerlichteBagageruimte(CarOption value) { + this.verlichteBagageruimte = value; + } + + /** + * Gets the value of the verlichteMotorruimte property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVerlichteMotorruimte() { + return verlichteMotorruimte; + } + + /** + * Sets the value of the verlichteMotorruimte property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVerlichteMotorruimte(CarOption value) { + this.verlichteMotorruimte = value; + } + + /** + * Gets the value of the verlichtDashboardkastje property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVerlichtDashboardkastje() { + return verlichtDashboardkastje; + } + + /** + * Sets the value of the verlichtDashboardkastje property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVerlichtDashboardkastje(CarOption value) { + this.verlichtDashboardkastje = value; + } + + /** + * Gets the value of the regelbareDashboardverlichting property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getRegelbareDashboardverlichting() { + return regelbareDashboardverlichting; + } + + /** + * Sets the value of the regelbareDashboardverlichting property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setRegelbareDashboardverlichting(CarOption value) { + this.regelbareDashboardverlichting = value; + } + + /** + * Gets the value of the leeslampjeVoor property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getLeeslampjeVoor() { + return leeslampjeVoor; + } + + /** + * Sets the value of the leeslampjeVoor property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setLeeslampjeVoor(CarOption value) { + this.leeslampjeVoor = value; + } + + /** + * Gets the value of the leeslampjeAchter property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getLeeslampjeAchter() { + return leeslampjeAchter; + } + + /** + * Sets the value of the leeslampjeAchter property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setLeeslampjeAchter(CarOption value) { + this.leeslampjeAchter = value; + } + + /** + * Gets the value of the verlichteMakeupspiegel property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVerlichteMakeupspiegel() { + return verlichteMakeupspiegel; + } + + /** + * Sets the value of the verlichteMakeupspiegel property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVerlichteMakeupspiegel(CarOption value) { + this.verlichteMakeupspiegel = value; + } + + /** + * Gets the value of the vertragingInterieurverlichting property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getVertragingInterieurverlichting() { + return vertragingInterieurverlichting; + } + + /** + * Sets the value of the vertragingInterieurverlichting property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setVertragingInterieurverlichting(CarOption value) { + this.vertragingInterieurverlichting = value; + } + + /** + * Gets the value of the portierverlichting property. + * + * @return + * possible object is + * {@link CarOption } + * + */ + public CarOption getPortierverlichting() { + return portierverlichting; + } + + /** + * Sets the value of the portierverlichting property. + * + * @param value + * allowed object is + * {@link CarOption } + * + */ + public void setPortierverlichting(CarOption value) { + this.portierverlichting = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarCheckCodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarCheckCodeRequestType.java new file mode 100644 index 0000000..da9c670 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarCheckCodeRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarCheckCodeRequestType complex type. + * + *

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

+ * <complexType name="carRDWCarCheckCodeRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarCheckCodeRequestType", propOrder = { + +}) +public class CarRDWCarCheckCodeRequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + @XmlElement(required = true) + protected String code; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCode(String value) { + this.code = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarCheckCodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarCheckCodeResponseType.java new file mode 100644 index 0000000..f3243b1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarCheckCodeResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarCheckCodeResponseType complex type. + * + *

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

+ * <complexType name="carRDWCarCheckCodeResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarCheckCode"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarCheckCodeResponseType", propOrder = { + +}) +public class CarRDWCarCheckCodeResponseType { + + @XmlElement(required = true) + protected CarCheckCode out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarCheckCode } + * + */ + public CarCheckCode getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarCheckCode } + * + */ + public void setOut(CarCheckCode value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPRequestType.java new file mode 100644 index 0000000..367475d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarDataBPRequestType complex type. + * + *

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

+ * <complexType name="carRDWCarDataBPRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarDataBPRequestType", propOrder = { + +}) +public class CarRDWCarDataBPRequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPResponseType.java new file mode 100644 index 0000000..404d22d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarDataBPResponseType complex type. + * + *

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

+ * <complexType name="carRDWCarDataBPResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarBP"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarDataBPResponseType", propOrder = { + +}) +public class CarRDWCarDataBPResponseType { + + @XmlElement(required = true) + protected CarBP out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarBP } + * + */ + public CarBP getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarBP } + * + */ + public void setOut(CarBP value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPV2RequestType.java new file mode 100644 index 0000000..6220e4f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPV2RequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarDataBPV2RequestType complex type. + * + *

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

+ * <complexType name="carRDWCarDataBPV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarDataBPV2RequestType", propOrder = { + +}) +public class CarRDWCarDataBPV2RequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPV2ResponseType.java new file mode 100644 index 0000000..161e08c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarDataBPV2ResponseType complex type. + * + *

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

+ * <complexType name="carRDWCarDataBPV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarBPV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarDataBPV2ResponseType", propOrder = { + +}) +public class CarRDWCarDataBPV2ResponseType { + + @XmlElement(required = true) + protected CarBPV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarBPV2 } + * + */ + public CarBPV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarBPV2 } + * + */ + public void setOut(CarBPV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataExtendedRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataExtendedRequestType.java new file mode 100644 index 0000000..fc32fa7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataExtendedRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarDataExtendedRequestType complex type. + * + *

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

+ * <complexType name="carRDWCarDataExtendedRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarDataExtendedRequestType", propOrder = { + +}) +public class CarRDWCarDataExtendedRequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + @XmlElement(required = true) + protected String code; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCode(String value) { + this.code = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataExtendedResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataExtendedResponseType.java new file mode 100644 index 0000000..da7d60b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataExtendedResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarDataExtendedResponseType complex type. + * + *

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

+ * <complexType name="carRDWCarDataExtendedResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarExtended"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarDataExtendedResponseType", propOrder = { + +}) +public class CarRDWCarDataExtendedResponseType { + + @XmlElement(required = true) + protected CarExtended out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarExtended } + * + */ + public CarExtended getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarExtended } + * + */ + public void setOut(CarExtended value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataOptionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataOptionsRequestType.java new file mode 100644 index 0000000..911ed75 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataOptionsRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarDataOptionsRequestType complex type. + * + *

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

+ * <complexType name="carRDWCarDataOptionsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="car_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarDataOptionsRequestType", propOrder = { + +}) +public class CarRDWCarDataOptionsRequestType { + + @XmlElement(name = "car_id", required = true) + protected String carId; + + /** + * Gets the value of the carId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCarId() { + return carId; + } + + /** + * Sets the value of the carId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCarId(String value) { + this.carId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataOptionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataOptionsResponseType.java new file mode 100644 index 0000000..16d6ac1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataOptionsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarDataOptionsResponseType complex type. + * + *

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

+ * <complexType name="carRDWCarDataOptionsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarOptions"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarDataOptionsResponseType", propOrder = { + +}) +public class CarRDWCarDataOptionsResponseType { + + @XmlElement(required = true) + protected CarOptions out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarOptions } + * + */ + public CarOptions getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarOptions } + * + */ + public void setOut(CarOptions value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPrice.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPrice.java new file mode 100644 index 0000000..c46d4bb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPrice.java @@ -0,0 +1,284 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarRDWCarDataPrice complex type. + * + *

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

+ * <complexType name="CarRDWCarDataPrice">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="basic_car_data" type="{http://www.webservices.nl/soap/}CarV3"/>
+ *         <element name="environment_data" type="{http://www.webservices.nl/soap/}CarEnvironment"/>
+ *         <element name="status_data" type="{http://www.webservices.nl/soap/}CarStatus"/>
+ *         <element name="power" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="fuel_types" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="top_speed" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="catalog_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="bpm" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="bodies" type="{http://www.webservices.nl/soap/}CarBodyArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarRDWCarDataPrice", propOrder = { + +}) +public class CarRDWCarDataPrice { + + @XmlElement(name = "basic_car_data", required = true) + protected CarV3 basicCarData; + @XmlElement(name = "environment_data", required = true) + protected CarEnvironment environmentData; + @XmlElement(name = "status_data", required = true) + protected CarStatus statusData; + protected BigDecimal power; + @XmlElement(name = "fuel_types", required = true) + protected StringArray fuelTypes; + @XmlElement(name = "top_speed") + protected Integer topSpeed; + @XmlElement(name = "catalog_price") + protected Integer catalogPrice; + protected Integer bpm; + @XmlElement(required = true) + protected CarBodyArray bodies; + + /** + * Gets the value of the basicCarData property. + * + * @return + * possible object is + * {@link CarV3 } + * + */ + public CarV3 getBasicCarData() { + return basicCarData; + } + + /** + * Sets the value of the basicCarData property. + * + * @param value + * allowed object is + * {@link CarV3 } + * + */ + public void setBasicCarData(CarV3 value) { + this.basicCarData = value; + } + + /** + * Gets the value of the environmentData property. + * + * @return + * possible object is + * {@link CarEnvironment } + * + */ + public CarEnvironment getEnvironmentData() { + return environmentData; + } + + /** + * Sets the value of the environmentData property. + * + * @param value + * allowed object is + * {@link CarEnvironment } + * + */ + public void setEnvironmentData(CarEnvironment value) { + this.environmentData = value; + } + + /** + * Gets the value of the statusData property. + * + * @return + * possible object is + * {@link CarStatus } + * + */ + public CarStatus getStatusData() { + return statusData; + } + + /** + * Sets the value of the statusData property. + * + * @param value + * allowed object is + * {@link CarStatus } + * + */ + public void setStatusData(CarStatus value) { + this.statusData = value; + } + + /** + * Gets the value of the power property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPower() { + return power; + } + + /** + * Sets the value of the power property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPower(BigDecimal value) { + this.power = value; + } + + /** + * Gets the value of the fuelTypes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getFuelTypes() { + return fuelTypes; + } + + /** + * Sets the value of the fuelTypes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setFuelTypes(StringArray value) { + this.fuelTypes = value; + } + + /** + * Gets the value of the topSpeed property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTopSpeed() { + return topSpeed; + } + + /** + * Sets the value of the topSpeed property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTopSpeed(Integer value) { + this.topSpeed = value; + } + + /** + * Gets the value of the catalogPrice property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCatalogPrice() { + return catalogPrice; + } + + /** + * Sets the value of the catalogPrice property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCatalogPrice(Integer value) { + this.catalogPrice = value; + } + + /** + * Gets the value of the bpm property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getBpm() { + return bpm; + } + + /** + * Sets the value of the bpm property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setBpm(Integer value) { + this.bpm = value; + } + + /** + * Gets the value of the bodies property. + * + * @return + * possible object is + * {@link CarBodyArray } + * + */ + public CarBodyArray getBodies() { + return bodies; + } + + /** + * Sets the value of the bodies property. + * + * @param value + * allowed object is + * {@link CarBodyArray } + * + */ + public void setBodies(CarBodyArray value) { + this.bodies = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPriceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPriceRequestType.java new file mode 100644 index 0000000..38ea89f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPriceRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarDataPriceRequestType complex type. + * + *

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

+ * <complexType name="carRDWCarDataPriceRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarDataPriceRequestType", propOrder = { + +}) +public class CarRDWCarDataPriceRequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPriceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPriceResponseType.java new file mode 100644 index 0000000..b816083 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPriceResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarDataPriceResponseType complex type. + * + *

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

+ * <complexType name="carRDWCarDataPriceResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarRDWCarDataPrice"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarDataPriceResponseType", propOrder = { + +}) +public class CarRDWCarDataPriceResponseType { + + @XmlElement(required = true) + protected CarRDWCarDataPrice out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarRDWCarDataPrice } + * + */ + public CarRDWCarDataPrice getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarRDWCarDataPrice } + * + */ + public void setOut(CarRDWCarDataPrice value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataRequestType.java new file mode 100644 index 0000000..eb5539c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarDataRequestType complex type. + * + *

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

+ * <complexType name="carRDWCarDataRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarDataRequestType", propOrder = { + +}) +public class CarRDWCarDataRequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataResponseType.java new file mode 100644 index 0000000..ef8f168 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarDataResponseType complex type. + * + *

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

+ * <complexType name="carRDWCarDataResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}Car"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarDataResponseType", propOrder = { + +}) +public class CarRDWCarDataResponseType { + + @XmlElement(required = true) + protected Car out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link Car } + * + */ + public Car getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link Car } + * + */ + public void setOut(Car value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV2RequestType.java new file mode 100644 index 0000000..055876e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV2RequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarDataV2RequestType complex type. + * + *

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

+ * <complexType name="carRDWCarDataV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarDataV2RequestType", propOrder = { + +}) +public class CarRDWCarDataV2RequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV2ResponseType.java new file mode 100644 index 0000000..76d8eea --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarDataV2ResponseType complex type. + * + *

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

+ * <complexType name="carRDWCarDataV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarDataV2ResponseType", propOrder = { + +}) +public class CarRDWCarDataV2ResponseType { + + @XmlElement(required = true) + protected CarV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarV2 } + * + */ + public CarV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarV2 } + * + */ + public void setOut(CarV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV3RequestType.java new file mode 100644 index 0000000..cce9e61 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV3RequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarDataV3RequestType complex type. + * + *

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

+ * <complexType name="carRDWCarDataV3RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarDataV3RequestType", propOrder = { + +}) +public class CarRDWCarDataV3RequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV3ResponseType.java new file mode 100644 index 0000000..424febf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV3ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carRDWCarDataV3ResponseType complex type. + * + *

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

+ * <complexType name="carRDWCarDataV3ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarDataV3Result"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carRDWCarDataV3ResponseType", propOrder = { + +}) +public class CarRDWCarDataV3ResponseType { + + @XmlElement(required = true) + protected CarDataV3Result out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarDataV3Result } + * + */ + public CarDataV3Result getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarDataV3Result } + * + */ + public void setOut(CarDataV3Result value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarStatus.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarStatus.java new file mode 100644 index 0000000..dfe9cf5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarStatus.java @@ -0,0 +1,147 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarStatus complex type. + * + *

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

+ * <complexType name="CarStatus">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="insured" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="awaiting_inspection" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="missing" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="stolen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarStatus", propOrder = { + +}) +public class CarStatus { + + protected Boolean insured; + @XmlElement(name = "awaiting_inspection") + protected Boolean awaitingInspection; + protected Boolean missing; + protected Boolean stolen; + + /** + * Gets the value of the insured property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isInsured() { + return insured; + } + + /** + * Sets the value of the insured property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setInsured(Boolean value) { + this.insured = value; + } + + /** + * Gets the value of the awaitingInspection property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isAwaitingInspection() { + return awaitingInspection; + } + + /** + * Sets the value of the awaitingInspection property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setAwaitingInspection(Boolean value) { + this.awaitingInspection = value; + } + + /** + * Gets the value of the missing property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isMissing() { + return missing; + } + + /** + * Sets the value of the missing property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setMissing(Boolean value) { + this.missing = value; + } + + /** + * Gets the value of the stolen property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isStolen() { + return stolen; + } + + /** + * Sets the value of the stolen property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setStolen(Boolean value) { + this.stolen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarType.java new file mode 100644 index 0000000..601e134 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarType.java @@ -0,0 +1,215 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarType complex type. + * + *

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

+ * <complexType name="CarType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="car_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="brand" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gearbox" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="first_year" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="last_year" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarType", propOrder = { + +}) +public class CarType { + + @XmlElement(name = "car_id", required = true) + protected String carId; + @XmlElement(required = true) + protected String brand; + @XmlElement(required = true) + protected String model; + @XmlElement(required = true) + protected String type; + @XmlElement(required = true) + protected String gearbox; + @XmlElement(name = "first_year") + protected int firstYear; + @XmlElement(name = "last_year") + protected int lastYear; + + /** + * Gets the value of the carId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCarId() { + return carId; + } + + /** + * Sets the value of the carId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCarId(String value) { + this.carId = value; + } + + /** + * Gets the value of the brand property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrand() { + return brand; + } + + /** + * Sets the value of the brand property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrand(String value) { + this.brand = value; + } + + /** + * Gets the value of the model property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModel() { + return model; + } + + /** + * Sets the value of the model property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModel(String value) { + this.model = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the gearbox property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGearbox() { + return gearbox; + } + + /** + * Sets the value of the gearbox property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGearbox(String value) { + this.gearbox = value; + } + + /** + * Gets the value of the firstYear property. + * + */ + public int getFirstYear() { + return firstYear; + } + + /** + * Sets the value of the firstYear property. + * + */ + public void setFirstYear(int value) { + this.firstYear = value; + } + + /** + * Gets the value of the lastYear property. + * + */ + public int getLastYear() { + return lastYear; + } + + /** + * Sets the value of the lastYear property. + * + */ + public void setLastYear(int value) { + this.lastYear = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarTypeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarTypeArray.java new file mode 100644 index 0000000..e001ae0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarTypeArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarTypeArray complex type. + * + *

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

+ * <complexType name="CarTypeArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CarType" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarTypeArray", propOrder = { + "item" +}) +public class CarTypeArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CarType } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarV2.java new file mode 100644 index 0000000..d4efd8c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarV2.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarV2 complex type. + * + *

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

+ * <complexType name="CarV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="car_data" type="{http://www.webservices.nl/soap/}Car"/>
+ *         <element name="types" type="{http://www.webservices.nl/soap/}CarTypeArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarV2", propOrder = { + +}) +public class CarV2 { + + @XmlElement(name = "car_data", required = true) + protected Car carData; + @XmlElement(required = true) + protected CarTypeArray types; + + /** + * Gets the value of the carData property. + * + * @return + * possible object is + * {@link Car } + * + */ + public Car getCarData() { + return carData; + } + + /** + * Sets the value of the carData property. + * + * @param value + * allowed object is + * {@link Car } + * + */ + public void setCarData(Car value) { + this.carData = value; + } + + /** + * Gets the value of the types property. + * + * @return + * possible object is + * {@link CarTypeArray } + * + */ + public CarTypeArray getTypes() { + return types; + } + + /** + * Sets the value of the types property. + * + * @param value + * allowed object is + * {@link CarTypeArray } + * + */ + public void setTypes(CarTypeArray value) { + this.types = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarV3.java new file mode 100644 index 0000000..f91ec95 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarV3.java @@ -0,0 +1,576 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarV3 complex type. + * + *

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

+ * <complexType name="CarV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="brand" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="colors" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="fuel_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="cylinders" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="cylinder_capacity" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="seats" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="standing_room" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="unladen_mass" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="gross_vehicle_mass" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="mass_ready" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_payload" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_unbraked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_trailer_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_self_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maximum_mass_axle_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="date_first_issuing" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_first_admission" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_latest_name_registration" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="apk_due_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="co2_emission" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarV3", propOrder = { + +}) +public class CarV3 { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + @XmlElement(required = true) + protected String category; + @XmlElement(required = true) + protected String brand; + @XmlElement(required = true) + protected String model; + @XmlElement(required = true) + protected String colors; + @XmlElement(name = "fuel_type", required = true) + protected String fuelType; + protected int cylinders; + @XmlElement(name = "cylinder_capacity") + protected int cylinderCapacity; + protected int seats; + @XmlElement(name = "standing_room") + protected int standingRoom; + @XmlElement(name = "unladen_mass") + protected int unladenMass; + @XmlElement(name = "gross_vehicle_mass") + protected int grossVehicleMass; + @XmlElement(name = "mass_ready") + protected int massReady; + @XmlElement(name = "maximum_mass_payload") + protected int maximumMassPayload; + @XmlElement(name = "maximum_mass_unbraked") + protected int maximumMassUnbraked; + @XmlElement(name = "maximum_mass_braked") + protected int maximumMassBraked; + @XmlElement(name = "maximum_mass_trailer_braked") + protected int maximumMassTrailerBraked; + @XmlElement(name = "maximum_mass_self_braked") + protected int maximumMassSelfBraked; + @XmlElement(name = "maximum_mass_axle_braked") + protected int maximumMassAxleBraked; + @XmlElement(name = "date_first_issuing", required = true) + protected String dateFirstIssuing; + @XmlElement(name = "date_first_admission", required = true) + protected String dateFirstAdmission; + @XmlElement(name = "date_latest_name_registration", required = true) + protected String dateLatestNameRegistration; + @XmlElement(name = "apk_due_date", required = true) + protected String apkDueDate; + @XmlElement(name = "co2_emission") + protected int co2Emission; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + + /** + * Gets the value of the category property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCategory() { + return category; + } + + /** + * Sets the value of the category property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCategory(String value) { + this.category = value; + } + + /** + * Gets the value of the brand property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrand() { + return brand; + } + + /** + * Sets the value of the brand property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrand(String value) { + this.brand = value; + } + + /** + * Gets the value of the model property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModel() { + return model; + } + + /** + * Sets the value of the model property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModel(String value) { + this.model = value; + } + + /** + * Gets the value of the colors property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getColors() { + return colors; + } + + /** + * Sets the value of the colors property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setColors(String value) { + this.colors = value; + } + + /** + * Gets the value of the fuelType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFuelType() { + return fuelType; + } + + /** + * Sets the value of the fuelType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFuelType(String value) { + this.fuelType = value; + } + + /** + * Gets the value of the cylinders property. + * + */ + public int getCylinders() { + return cylinders; + } + + /** + * Sets the value of the cylinders property. + * + */ + public void setCylinders(int value) { + this.cylinders = value; + } + + /** + * Gets the value of the cylinderCapacity property. + * + */ + public int getCylinderCapacity() { + return cylinderCapacity; + } + + /** + * Sets the value of the cylinderCapacity property. + * + */ + public void setCylinderCapacity(int value) { + this.cylinderCapacity = value; + } + + /** + * Gets the value of the seats property. + * + */ + public int getSeats() { + return seats; + } + + /** + * Sets the value of the seats property. + * + */ + public void setSeats(int value) { + this.seats = value; + } + + /** + * Gets the value of the standingRoom property. + * + */ + public int getStandingRoom() { + return standingRoom; + } + + /** + * Sets the value of the standingRoom property. + * + */ + public void setStandingRoom(int value) { + this.standingRoom = value; + } + + /** + * Gets the value of the unladenMass property. + * + */ + public int getUnladenMass() { + return unladenMass; + } + + /** + * Sets the value of the unladenMass property. + * + */ + public void setUnladenMass(int value) { + this.unladenMass = value; + } + + /** + * Gets the value of the grossVehicleMass property. + * + */ + public int getGrossVehicleMass() { + return grossVehicleMass; + } + + /** + * Sets the value of the grossVehicleMass property. + * + */ + public void setGrossVehicleMass(int value) { + this.grossVehicleMass = value; + } + + /** + * Gets the value of the massReady property. + * + */ + public int getMassReady() { + return massReady; + } + + /** + * Sets the value of the massReady property. + * + */ + public void setMassReady(int value) { + this.massReady = value; + } + + /** + * Gets the value of the maximumMassPayload property. + * + */ + public int getMaximumMassPayload() { + return maximumMassPayload; + } + + /** + * Sets the value of the maximumMassPayload property. + * + */ + public void setMaximumMassPayload(int value) { + this.maximumMassPayload = value; + } + + /** + * Gets the value of the maximumMassUnbraked property. + * + */ + public int getMaximumMassUnbraked() { + return maximumMassUnbraked; + } + + /** + * Sets the value of the maximumMassUnbraked property. + * + */ + public void setMaximumMassUnbraked(int value) { + this.maximumMassUnbraked = value; + } + + /** + * Gets the value of the maximumMassBraked property. + * + */ + public int getMaximumMassBraked() { + return maximumMassBraked; + } + + /** + * Sets the value of the maximumMassBraked property. + * + */ + public void setMaximumMassBraked(int value) { + this.maximumMassBraked = value; + } + + /** + * Gets the value of the maximumMassTrailerBraked property. + * + */ + public int getMaximumMassTrailerBraked() { + return maximumMassTrailerBraked; + } + + /** + * Sets the value of the maximumMassTrailerBraked property. + * + */ + public void setMaximumMassTrailerBraked(int value) { + this.maximumMassTrailerBraked = value; + } + + /** + * Gets the value of the maximumMassSelfBraked property. + * + */ + public int getMaximumMassSelfBraked() { + return maximumMassSelfBraked; + } + + /** + * Sets the value of the maximumMassSelfBraked property. + * + */ + public void setMaximumMassSelfBraked(int value) { + this.maximumMassSelfBraked = value; + } + + /** + * Gets the value of the maximumMassAxleBraked property. + * + */ + public int getMaximumMassAxleBraked() { + return maximumMassAxleBraked; + } + + /** + * Sets the value of the maximumMassAxleBraked property. + * + */ + public void setMaximumMassAxleBraked(int value) { + this.maximumMassAxleBraked = value; + } + + /** + * Gets the value of the dateFirstIssuing property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDateFirstIssuing() { + return dateFirstIssuing; + } + + /** + * Sets the value of the dateFirstIssuing property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDateFirstIssuing(String value) { + this.dateFirstIssuing = value; + } + + /** + * Gets the value of the dateFirstAdmission property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDateFirstAdmission() { + return dateFirstAdmission; + } + + /** + * Sets the value of the dateFirstAdmission property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDateFirstAdmission(String value) { + this.dateFirstAdmission = value; + } + + /** + * Gets the value of the dateLatestNameRegistration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDateLatestNameRegistration() { + return dateLatestNameRegistration; + } + + /** + * Sets the value of the dateLatestNameRegistration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDateLatestNameRegistration(String value) { + this.dateLatestNameRegistration = value; + } + + /** + * Gets the value of the apkDueDate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getApkDueDate() { + return apkDueDate; + } + + /** + * Sets the value of the apkDueDate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setApkDueDate(String value) { + this.apkDueDate = value; + } + + /** + * Gets the value of the co2Emission property. + * + */ + public int getCo2Emission() { + return co2Emission; + } + + /** + * Sets the value of the co2Emission property. + * + */ + public void setCo2Emission(int value) { + this.co2Emission = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeData.java new file mode 100644 index 0000000..e665b3a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeData.java @@ -0,0 +1,1040 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CarVWEBasicTypeData complex type. + * + *

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

+ * <complexType name="CarVWEBasicTypeData">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="brand_rdw" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="brand_atl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="model_rdw" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="model_atl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="short_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="colors" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="fuel_types" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="cylinders" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="cylinder_capacity" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="seats" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="standing_room" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="unladen_mass" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="gross_vehicle_mass" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="maximum_mass_payload" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="date_first_issuing" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="date_first_admission" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="date_latest_name_registration" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="apk_due_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="bpm" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="bpm_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="power" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="g3_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="co2_emission" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="emission_particles" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="energy_label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="emission_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="interior_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="interior_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="doors" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="tax_write_off" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="parallel_import" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="license_plate_signal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="gear" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="brand_approval" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="top_speed" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="types" type="{http://www.webservices.nl/soap/}CarVWEVersionPriceReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEBasicTypeData", propOrder = { + +}) +public class CarVWEBasicTypeData { + + protected String category; + @XmlElement(name = "brand_rdw") + protected String brandRdw; + @XmlElement(name = "brand_atl") + protected String brandAtl; + @XmlElement(name = "model_rdw") + protected String modelRdw; + @XmlElement(name = "model_atl") + protected String modelAtl; + @XmlElement(name = "short_type") + protected String shortType; + @XmlElement(required = true) + protected StringArray colors; + @XmlElement(name = "fuel_types", required = true) + protected StringArray fuelTypes; + protected Integer cylinders; + @XmlElement(name = "cylinder_capacity") + protected Integer cylinderCapacity; + protected Integer seats; + @XmlElement(name = "standing_room") + protected Integer standingRoom; + @XmlElement(name = "unladen_mass") + protected Integer unladenMass; + @XmlElement(name = "gross_vehicle_mass") + protected Integer grossVehicleMass; + @XmlElement(name = "maximum_mass_payload") + protected Integer maximumMassPayload; + @XmlElement(name = "date_first_issuing") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFirstIssuing; + @XmlElement(name = "date_first_admission") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFirstAdmission; + @XmlElement(name = "date_latest_name_registration") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateLatestNameRegistration; + @XmlElement(name = "apk_due_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar apkDueDate; + protected Integer bpm; + @XmlElement(name = "bpm_currency") + protected String bpmCurrency; + protected Integer power; + @XmlElement(name = "g3_indication") + protected Boolean g3Indication; + @XmlElement(name = "co2_emission") + protected Integer co2Emission; + @XmlElement(name = "emission_particles") + protected String emissionParticles; + @XmlElement(name = "energy_label") + protected String energyLabel; + @XmlElement(name = "emission_code") + protected String emissionCode; + @XmlElement(name = "interior_code") + protected String interiorCode; + @XmlElement(name = "interior_description") + protected String interiorDescription; + protected Integer doors; + @XmlElement(name = "tax_write_off") + protected String taxWriteOff; + @XmlElement(name = "parallel_import") + protected Boolean parallelImport; + @XmlElement(name = "license_plate_signal") + protected String licensePlateSignal; + protected String gear; + @XmlElement(name = "brand_approval") + protected String brandApproval; + @XmlElement(name = "top_speed") + protected Integer topSpeed; + @XmlElement(required = true) + protected CarVWEVersionPriceReferenceArray types; + + /** + * Gets the value of the category property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCategory() { + return category; + } + + /** + * Sets the value of the category property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCategory(String value) { + this.category = value; + } + + /** + * Gets the value of the brandRdw property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrandRdw() { + return brandRdw; + } + + /** + * Sets the value of the brandRdw property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrandRdw(String value) { + this.brandRdw = value; + } + + /** + * Gets the value of the brandAtl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrandAtl() { + return brandAtl; + } + + /** + * Sets the value of the brandAtl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrandAtl(String value) { + this.brandAtl = value; + } + + /** + * Gets the value of the modelRdw property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModelRdw() { + return modelRdw; + } + + /** + * Sets the value of the modelRdw property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModelRdw(String value) { + this.modelRdw = value; + } + + /** + * Gets the value of the modelAtl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModelAtl() { + return modelAtl; + } + + /** + * Sets the value of the modelAtl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModelAtl(String value) { + this.modelAtl = value; + } + + /** + * Gets the value of the shortType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getShortType() { + return shortType; + } + + /** + * Sets the value of the shortType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setShortType(String value) { + this.shortType = value; + } + + /** + * Gets the value of the colors property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getColors() { + return colors; + } + + /** + * Sets the value of the colors property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setColors(StringArray value) { + this.colors = value; + } + + /** + * Gets the value of the fuelTypes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getFuelTypes() { + return fuelTypes; + } + + /** + * Sets the value of the fuelTypes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setFuelTypes(StringArray value) { + this.fuelTypes = value; + } + + /** + * Gets the value of the cylinders property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCylinders() { + return cylinders; + } + + /** + * Sets the value of the cylinders property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCylinders(Integer value) { + this.cylinders = value; + } + + /** + * Gets the value of the cylinderCapacity property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCylinderCapacity() { + return cylinderCapacity; + } + + /** + * Sets the value of the cylinderCapacity property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCylinderCapacity(Integer value) { + this.cylinderCapacity = value; + } + + /** + * Gets the value of the seats property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getSeats() { + return seats; + } + + /** + * Sets the value of the seats property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setSeats(Integer value) { + this.seats = value; + } + + /** + * Gets the value of the standingRoom property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getStandingRoom() { + return standingRoom; + } + + /** + * Sets the value of the standingRoom property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setStandingRoom(Integer value) { + this.standingRoom = value; + } + + /** + * Gets the value of the unladenMass property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getUnladenMass() { + return unladenMass; + } + + /** + * Sets the value of the unladenMass property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setUnladenMass(Integer value) { + this.unladenMass = value; + } + + /** + * Gets the value of the grossVehicleMass property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getGrossVehicleMass() { + return grossVehicleMass; + } + + /** + * Sets the value of the grossVehicleMass property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setGrossVehicleMass(Integer value) { + this.grossVehicleMass = value; + } + + /** + * Gets the value of the maximumMassPayload property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMaximumMassPayload() { + return maximumMassPayload; + } + + /** + * Sets the value of the maximumMassPayload property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMaximumMassPayload(Integer value) { + this.maximumMassPayload = value; + } + + /** + * Gets the value of the dateFirstIssuing property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFirstIssuing() { + return dateFirstIssuing; + } + + /** + * Sets the value of the dateFirstIssuing property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFirstIssuing(XMLGregorianCalendar value) { + this.dateFirstIssuing = value; + } + + /** + * Gets the value of the dateFirstAdmission property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFirstAdmission() { + return dateFirstAdmission; + } + + /** + * Sets the value of the dateFirstAdmission property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFirstAdmission(XMLGregorianCalendar value) { + this.dateFirstAdmission = value; + } + + /** + * Gets the value of the dateLatestNameRegistration property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateLatestNameRegistration() { + return dateLatestNameRegistration; + } + + /** + * Sets the value of the dateLatestNameRegistration property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateLatestNameRegistration(XMLGregorianCalendar value) { + this.dateLatestNameRegistration = value; + } + + /** + * Gets the value of the apkDueDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getApkDueDate() { + return apkDueDate; + } + + /** + * Sets the value of the apkDueDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setApkDueDate(XMLGregorianCalendar value) { + this.apkDueDate = value; + } + + /** + * Gets the value of the bpm property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getBpm() { + return bpm; + } + + /** + * Sets the value of the bpm property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setBpm(Integer value) { + this.bpm = value; + } + + /** + * Gets the value of the bpmCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBpmCurrency() { + return bpmCurrency; + } + + /** + * Sets the value of the bpmCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBpmCurrency(String value) { + this.bpmCurrency = value; + } + + /** + * Gets the value of the power property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPower() { + return power; + } + + /** + * Sets the value of the power property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPower(Integer value) { + this.power = value; + } + + /** + * Gets the value of the g3Indication property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isG3Indication() { + return g3Indication; + } + + /** + * Sets the value of the g3Indication property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setG3Indication(Boolean value) { + this.g3Indication = value; + } + + /** + * Gets the value of the co2Emission property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCo2Emission() { + return co2Emission; + } + + /** + * Sets the value of the co2Emission property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCo2Emission(Integer value) { + this.co2Emission = value; + } + + /** + * Gets the value of the emissionParticles property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmissionParticles() { + return emissionParticles; + } + + /** + * Sets the value of the emissionParticles property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmissionParticles(String value) { + this.emissionParticles = value; + } + + /** + * Gets the value of the energyLabel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnergyLabel() { + return energyLabel; + } + + /** + * Sets the value of the energyLabel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnergyLabel(String value) { + this.energyLabel = value; + } + + /** + * Gets the value of the emissionCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmissionCode() { + return emissionCode; + } + + /** + * Sets the value of the emissionCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmissionCode(String value) { + this.emissionCode = value; + } + + /** + * Gets the value of the interiorCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInteriorCode() { + return interiorCode; + } + + /** + * Sets the value of the interiorCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInteriorCode(String value) { + this.interiorCode = value; + } + + /** + * Gets the value of the interiorDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInteriorDescription() { + return interiorDescription; + } + + /** + * Sets the value of the interiorDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInteriorDescription(String value) { + this.interiorDescription = value; + } + + /** + * Gets the value of the doors property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDoors() { + return doors; + } + + /** + * Sets the value of the doors property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDoors(Integer value) { + this.doors = value; + } + + /** + * Gets the value of the taxWriteOff property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTaxWriteOff() { + return taxWriteOff; + } + + /** + * Sets the value of the taxWriteOff property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTaxWriteOff(String value) { + this.taxWriteOff = value; + } + + /** + * Gets the value of the parallelImport property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isParallelImport() { + return parallelImport; + } + + /** + * Sets the value of the parallelImport property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setParallelImport(Boolean value) { + this.parallelImport = value; + } + + /** + * Gets the value of the licensePlateSignal property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlateSignal() { + return licensePlateSignal; + } + + /** + * Sets the value of the licensePlateSignal property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlateSignal(String value) { + this.licensePlateSignal = value; + } + + /** + * Gets the value of the gear property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGear() { + return gear; + } + + /** + * Sets the value of the gear property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGear(String value) { + this.gear = value; + } + + /** + * Gets the value of the brandApproval property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrandApproval() { + return brandApproval; + } + + /** + * Sets the value of the brandApproval property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrandApproval(String value) { + this.brandApproval = value; + } + + /** + * Gets the value of the topSpeed property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTopSpeed() { + return topSpeed; + } + + /** + * Sets the value of the topSpeed property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTopSpeed(Integer value) { + this.topSpeed = value; + } + + /** + * Gets the value of the types property. + * + * @return + * possible object is + * {@link CarVWEVersionPriceReferenceArray } + * + */ + public CarVWEVersionPriceReferenceArray getTypes() { + return types; + } + + /** + * Sets the value of the types property. + * + * @param value + * allowed object is + * {@link CarVWEVersionPriceReferenceArray } + * + */ + public void setTypes(CarVWEVersionPriceReferenceArray value) { + this.types = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeDataRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeDataRequestType.java new file mode 100644 index 0000000..3d8ec7a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeDataRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEBasicTypeDataRequestType complex type. + * + *

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

+ * <complexType name="carVWEBasicTypeDataRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEBasicTypeDataRequestType", propOrder = { + +}) +public class CarVWEBasicTypeDataRequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeDataResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeDataResponseType.java new file mode 100644 index 0000000..1bc334b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeDataResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEBasicTypeDataResponseType complex type. + * + *

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

+ * <complexType name="carVWEBasicTypeDataResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEBasicTypeData"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEBasicTypeDataResponseType", propOrder = { + +}) +public class CarVWEBasicTypeDataResponseType { + + @XmlElement(required = true) + protected CarVWEBasicTypeData out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarVWEBasicTypeData } + * + */ + public CarVWEBasicTypeData getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarVWEBasicTypeData } + * + */ + public void setOut(CarVWEBasicTypeData value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrand.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrand.java new file mode 100644 index 0000000..ebcc772 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrand.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEBrand complex type. + * + *

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

+ * <complexType name="CarVWEBrand">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="brand_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="brand_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEBrand", propOrder = { + +}) +public class CarVWEBrand { + + @XmlElement(name = "brand_id") + protected int brandId; + @XmlElement(name = "brand_name", required = true) + protected String brandName; + + /** + * Gets the value of the brandId property. + * + */ + public int getBrandId() { + return brandId; + } + + /** + * Sets the value of the brandId property. + * + */ + public void setBrandId(int value) { + this.brandId = value; + } + + /** + * Gets the value of the brandName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrandName() { + return brandName; + } + + /** + * Sets the value of the brandName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrandName(String value) { + this.brandName = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrandArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrandArray.java new file mode 100644 index 0000000..11b7042 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrandArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEBrandArray complex type. + * + *

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

+ * <complexType name="CarVWEBrandArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CarVWEBrand" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEBrandArray", propOrder = { + "item" +}) +public class CarVWEBrandArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CarVWEBrand } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrandPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrandPagedResult.java new file mode 100644 index 0000000..41db85c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrandPagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEBrandPagedResult complex type. + * + *

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

+ * <complexType name="CarVWEBrandPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}CarVWEBrandArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEBrandPagedResult", propOrder = { + +}) +public class CarVWEBrandPagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected CarVWEBrandArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link CarVWEBrandArray } + * + */ + public CarVWEBrandArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link CarVWEBrandArray } + * + */ + public void setResults(CarVWEBrandArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListBrandsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListBrandsRequestType.java new file mode 100644 index 0000000..1203ce0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListBrandsRequestType.java @@ -0,0 +1,98 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEListBrandsRequestType complex type. + * + *

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

+ * <complexType name="carVWEListBrandsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="production_year" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="kind_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEListBrandsRequestType", propOrder = { + +}) +public class CarVWEListBrandsRequestType { + + @XmlElement(name = "production_year") + protected int productionYear; + @XmlElement(name = "kind_id") + protected int kindId; + protected int page; + + /** + * Gets the value of the productionYear property. + * + */ + public int getProductionYear() { + return productionYear; + } + + /** + * Sets the value of the productionYear property. + * + */ + public void setProductionYear(int value) { + this.productionYear = value; + } + + /** + * Gets the value of the kindId property. + * + */ + public int getKindId() { + return kindId; + } + + /** + * Sets the value of the kindId property. + * + */ + public void setKindId(int value) { + this.kindId = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListBrandsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListBrandsResponseType.java new file mode 100644 index 0000000..c715f5f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListBrandsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEListBrandsResponseType complex type. + * + *

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

+ * <complexType name="carVWEListBrandsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEBrandPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEListBrandsResponseType", propOrder = { + +}) +public class CarVWEListBrandsResponseType { + + @XmlElement(required = true) + protected CarVWEBrandPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarVWEBrandPagedResult } + * + */ + public CarVWEBrandPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarVWEBrandPagedResult } + * + */ + public void setOut(CarVWEBrandPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListModelsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListModelsRequestType.java new file mode 100644 index 0000000..1143cce --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListModelsRequestType.java @@ -0,0 +1,117 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEListModelsRequestType complex type. + * + *

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

+ * <complexType name="carVWEListModelsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="production_year" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="kind_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="brand_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEListModelsRequestType", propOrder = { + +}) +public class CarVWEListModelsRequestType { + + @XmlElement(name = "production_year") + protected int productionYear; + @XmlElement(name = "kind_id") + protected int kindId; + @XmlElement(name = "brand_id") + protected int brandId; + protected int page; + + /** + * Gets the value of the productionYear property. + * + */ + public int getProductionYear() { + return productionYear; + } + + /** + * Sets the value of the productionYear property. + * + */ + public void setProductionYear(int value) { + this.productionYear = value; + } + + /** + * Gets the value of the kindId property. + * + */ + public int getKindId() { + return kindId; + } + + /** + * Sets the value of the kindId property. + * + */ + public void setKindId(int value) { + this.kindId = value; + } + + /** + * Gets the value of the brandId property. + * + */ + public int getBrandId() { + return brandId; + } + + /** + * Sets the value of the brandId property. + * + */ + public void setBrandId(int value) { + this.brandId = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListModelsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListModelsResponseType.java new file mode 100644 index 0000000..7ecbc4c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListModelsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEListModelsResponseType complex type. + * + *

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

+ * <complexType name="carVWEListModelsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEModelPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEListModelsResponseType", propOrder = { + +}) +public class CarVWEListModelsResponseType { + + @XmlElement(required = true) + protected CarVWEModelPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarVWEModelPagedResult } + * + */ + public CarVWEModelPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarVWEModelPagedResult } + * + */ + public void setOut(CarVWEModelPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListVersionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListVersionsRequestType.java new file mode 100644 index 0000000..25720b7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListVersionsRequestType.java @@ -0,0 +1,211 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEListVersionsRequestType complex type. + * + *

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

+ * <complexType name="carVWEListVersionsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="production_year" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="kind_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="brand_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="model_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="fuel_type_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="body_style_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="doors" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="gear_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEListVersionsRequestType", propOrder = { + +}) +public class CarVWEListVersionsRequestType { + + @XmlElement(name = "production_year") + protected int productionYear; + @XmlElement(name = "kind_id") + protected int kindId; + @XmlElement(name = "brand_id") + protected int brandId; + @XmlElement(name = "model_id") + protected int modelId; + @XmlElement(name = "fuel_type_id") + protected int fuelTypeId; + @XmlElement(name = "body_style_id") + protected int bodyStyleId; + protected int doors; + @XmlElement(name = "gear_id") + protected int gearId; + protected int page; + + /** + * Gets the value of the productionYear property. + * + */ + public int getProductionYear() { + return productionYear; + } + + /** + * Sets the value of the productionYear property. + * + */ + public void setProductionYear(int value) { + this.productionYear = value; + } + + /** + * Gets the value of the kindId property. + * + */ + public int getKindId() { + return kindId; + } + + /** + * Sets the value of the kindId property. + * + */ + public void setKindId(int value) { + this.kindId = value; + } + + /** + * Gets the value of the brandId property. + * + */ + public int getBrandId() { + return brandId; + } + + /** + * Sets the value of the brandId property. + * + */ + public void setBrandId(int value) { + this.brandId = value; + } + + /** + * Gets the value of the modelId property. + * + */ + public int getModelId() { + return modelId; + } + + /** + * Sets the value of the modelId property. + * + */ + public void setModelId(int value) { + this.modelId = value; + } + + /** + * Gets the value of the fuelTypeId property. + * + */ + public int getFuelTypeId() { + return fuelTypeId; + } + + /** + * Sets the value of the fuelTypeId property. + * + */ + public void setFuelTypeId(int value) { + this.fuelTypeId = value; + } + + /** + * Gets the value of the bodyStyleId property. + * + */ + public int getBodyStyleId() { + return bodyStyleId; + } + + /** + * Sets the value of the bodyStyleId property. + * + */ + public void setBodyStyleId(int value) { + this.bodyStyleId = value; + } + + /** + * Gets the value of the doors property. + * + */ + public int getDoors() { + return doors; + } + + /** + * Sets the value of the doors property. + * + */ + public void setDoors(int value) { + this.doors = value; + } + + /** + * Gets the value of the gearId property. + * + */ + public int getGearId() { + return gearId; + } + + /** + * Sets the value of the gearId property. + * + */ + public void setGearId(int value) { + this.gearId = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListVersionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListVersionsResponseType.java new file mode 100644 index 0000000..c20cb7e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListVersionsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEListVersionsResponseType complex type. + * + *

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

+ * <complexType name="carVWEListVersionsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEVersionPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEListVersionsResponseType", propOrder = { + +}) +public class CarVWEListVersionsResponseType { + + @XmlElement(required = true) + protected CarVWEVersionPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarVWEVersionPagedResult } + * + */ + public CarVWEVersionPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarVWEVersionPagedResult } + * + */ + public void setOut(CarVWEVersionPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheck.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheck.java new file mode 100644 index 0000000..0715ee1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheck.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEMeldcodeCheck complex type. + * + *

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

+ * <complexType name="CarVWEMeldcodeCheck">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correct" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEMeldcodeCheck", propOrder = { + +}) +public class CarVWEMeldcodeCheck { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + protected boolean correct; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + + /** + * Gets the value of the correct property. + * + */ + public boolean isCorrect() { + return correct; + } + + /** + * Sets the value of the correct property. + * + */ + public void setCorrect(boolean value) { + this.correct = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheckRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheckRequestType.java new file mode 100644 index 0000000..913640d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheckRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEMeldcodeCheckRequestType complex type. + * + *

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

+ * <complexType name="carVWEMeldcodeCheckRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEMeldcodeCheckRequestType", propOrder = { + +}) +public class CarVWEMeldcodeCheckRequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + @XmlElement(required = true) + protected String code; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCode(String value) { + this.code = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheckResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheckResponseType.java new file mode 100644 index 0000000..a59f78c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheckResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEMeldcodeCheckResponseType complex type. + * + *

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

+ * <complexType name="carVWEMeldcodeCheckResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEMeldcodeCheck"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEMeldcodeCheckResponseType", propOrder = { + +}) +public class CarVWEMeldcodeCheckResponseType { + + @XmlElement(required = true) + protected CarVWEMeldcodeCheck out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarVWEMeldcodeCheck } + * + */ + public CarVWEMeldcodeCheck getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarVWEMeldcodeCheck } + * + */ + public void setOut(CarVWEMeldcodeCheck value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModel.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModel.java new file mode 100644 index 0000000..7eb2075 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModel.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEModel complex type. + * + *

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

+ * <complexType name="CarVWEModel">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="model_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="model_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEModel", propOrder = { + +}) +public class CarVWEModel { + + @XmlElement(name = "model_id") + protected int modelId; + @XmlElement(name = "model_name", required = true) + protected String modelName; + + /** + * Gets the value of the modelId property. + * + */ + public int getModelId() { + return modelId; + } + + /** + * Sets the value of the modelId property. + * + */ + public void setModelId(int value) { + this.modelId = value; + } + + /** + * Gets the value of the modelName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModelName() { + return modelName; + } + + /** + * Sets the value of the modelName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModelName(String value) { + this.modelName = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModelArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModelArray.java new file mode 100644 index 0000000..69fd05c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModelArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEModelArray complex type. + * + *

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

+ * <complexType name="CarVWEModelArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CarVWEModel" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEModelArray", propOrder = { + "item" +}) +public class CarVWEModelArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CarVWEModel } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModelPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModelPagedResult.java new file mode 100644 index 0000000..7115132 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModelPagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEModelPagedResult complex type. + * + *

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

+ * <complexType name="CarVWEModelPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}CarVWEModelArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEModelPagedResult", propOrder = { + +}) +public class CarVWEModelPagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected CarVWEModelArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link CarVWEModelArray } + * + */ + public CarVWEModelArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link CarVWEModelArray } + * + */ + public void setResults(CarVWEModelArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOption.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOption.java new file mode 100644 index 0000000..f35044a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOption.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEOption complex type. + * + *

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

+ * <complexType name="CarVWEOption">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="option_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="description_short" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEOption", propOrder = { + +}) +public class CarVWEOption { + + @XmlElement(name = "option_id") + protected int optionId; + @XmlElement(name = "description_short", required = true) + protected String descriptionShort; + @XmlElement(required = true) + protected String description; + protected Integer price; + + /** + * Gets the value of the optionId property. + * + */ + public int getOptionId() { + return optionId; + } + + /** + * Sets the value of the optionId property. + * + */ + public void setOptionId(int value) { + this.optionId = value; + } + + /** + * Gets the value of the descriptionShort property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescriptionShort() { + return descriptionShort; + } + + /** + * Sets the value of the descriptionShort property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescriptionShort(String value) { + this.descriptionShort = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the price property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPrice() { + return price; + } + + /** + * Sets the value of the price property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPrice(Integer value) { + this.price = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionArray.java new file mode 100644 index 0000000..64cd8d7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEOptionArray complex type. + * + *

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

+ * <complexType name="CarVWEOptionArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CarVWEOption" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEOptionArray", propOrder = { + "item" +}) +public class CarVWEOptionArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CarVWEOption } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionPackage.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionPackage.java new file mode 100644 index 0000000..cc01fff --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionPackage.java @@ -0,0 +1,133 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEOptionPackage complex type. + * + *

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

+ * <complexType name="CarVWEOptionPackage">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="package_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="price" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="options" type="{http://www.webservices.nl/soap/}CarVWEOptionArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEOptionPackage", propOrder = { + +}) +public class CarVWEOptionPackage { + + @XmlElement(name = "package_id") + protected int packageId; + protected int price; + @XmlElement(required = true) + protected String description; + @XmlElement(required = true) + protected CarVWEOptionArray options; + + /** + * Gets the value of the packageId property. + * + */ + public int getPackageId() { + return packageId; + } + + /** + * Sets the value of the packageId property. + * + */ + public void setPackageId(int value) { + this.packageId = value; + } + + /** + * Gets the value of the price property. + * + */ + public int getPrice() { + return price; + } + + /** + * Sets the value of the price property. + * + */ + public void setPrice(int value) { + this.price = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the options property. + * + * @return + * possible object is + * {@link CarVWEOptionArray } + * + */ + public CarVWEOptionArray getOptions() { + return options; + } + + /** + * Sets the value of the options property. + * + * @param value + * allowed object is + * {@link CarVWEOptionArray } + * + */ + public void setOptions(CarVWEOptionArray value) { + this.options = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionPackageArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionPackageArray.java new file mode 100644 index 0000000..216328a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionPackageArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEOptionPackageArray complex type. + * + *

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

+ * <complexType name="CarVWEOptionPackageArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CarVWEOptionPackage" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEOptionPackageArray", propOrder = { + "item" +}) +public class CarVWEOptionPackageArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CarVWEOptionPackage } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptions.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptions.java new file mode 100644 index 0000000..90f4210 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptions.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEOptions complex type. + * + *

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

+ * <complexType name="CarVWEOptions">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="options_standard" type="{http://www.webservices.nl/soap/}CarVWEOptionsStandard" minOccurs="0"/>
+ *         <element name="options_manufacture" type="{http://www.webservices.nl/soap/}CarVWEOptionsManufacture" minOccurs="0"/>
+ *         <element name="options_package" type="{http://www.webservices.nl/soap/}CarVWEOptionsPackage" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEOptions", propOrder = { + +}) +public class CarVWEOptions { + + @XmlElement(name = "options_standard") + protected CarVWEOptionsStandard optionsStandard; + @XmlElement(name = "options_manufacture") + protected CarVWEOptionsManufacture optionsManufacture; + @XmlElement(name = "options_package") + protected CarVWEOptionsPackage optionsPackage; + + /** + * Gets the value of the optionsStandard property. + * + * @return + * possible object is + * {@link CarVWEOptionsStandard } + * + */ + public CarVWEOptionsStandard getOptionsStandard() { + return optionsStandard; + } + + /** + * Sets the value of the optionsStandard property. + * + * @param value + * allowed object is + * {@link CarVWEOptionsStandard } + * + */ + public void setOptionsStandard(CarVWEOptionsStandard value) { + this.optionsStandard = value; + } + + /** + * Gets the value of the optionsManufacture property. + * + * @return + * possible object is + * {@link CarVWEOptionsManufacture } + * + */ + public CarVWEOptionsManufacture getOptionsManufacture() { + return optionsManufacture; + } + + /** + * Sets the value of the optionsManufacture property. + * + * @param value + * allowed object is + * {@link CarVWEOptionsManufacture } + * + */ + public void setOptionsManufacture(CarVWEOptionsManufacture value) { + this.optionsManufacture = value; + } + + /** + * Gets the value of the optionsPackage property. + * + * @return + * possible object is + * {@link CarVWEOptionsPackage } + * + */ + public CarVWEOptionsPackage getOptionsPackage() { + return optionsPackage; + } + + /** + * Sets the value of the optionsPackage property. + * + * @param value + * allowed object is + * {@link CarVWEOptionsPackage } + * + */ + public void setOptionsPackage(CarVWEOptionsPackage value) { + this.optionsPackage = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsManufacture.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsManufacture.java new file mode 100644 index 0000000..30ae326 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsManufacture.java @@ -0,0 +1,115 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEOptionsManufacture complex type. + * + *

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

+ * <complexType name="CarVWEOptionsManufacture">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="options" type="{http://www.webservices.nl/soap/}CarVWEOptionArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEOptionsManufacture", propOrder = { + +}) +public class CarVWEOptionsManufacture { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + @XmlElement(name = "atl_code") + protected int atlCode; + @XmlElement(required = true) + protected CarVWEOptionArray options; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + + /** + * Gets the value of the atlCode property. + * + */ + public int getAtlCode() { + return atlCode; + } + + /** + * Sets the value of the atlCode property. + * + */ + public void setAtlCode(int value) { + this.atlCode = value; + } + + /** + * Gets the value of the options property. + * + * @return + * possible object is + * {@link CarVWEOptionArray } + * + */ + public CarVWEOptionArray getOptions() { + return options; + } + + /** + * Sets the value of the options property. + * + * @param value + * allowed object is + * {@link CarVWEOptionArray } + * + */ + public void setOptions(CarVWEOptionArray value) { + this.options = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsPackage.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsPackage.java new file mode 100644 index 0000000..bfaa31f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsPackage.java @@ -0,0 +1,115 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEOptionsPackage complex type. + * + *

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

+ * <complexType name="CarVWEOptionsPackage">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="packages" type="{http://www.webservices.nl/soap/}CarVWEOptionPackageArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEOptionsPackage", propOrder = { + +}) +public class CarVWEOptionsPackage { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + @XmlElement(name = "atl_code") + protected int atlCode; + @XmlElement(required = true) + protected CarVWEOptionPackageArray packages; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + + /** + * Gets the value of the atlCode property. + * + */ + public int getAtlCode() { + return atlCode; + } + + /** + * Sets the value of the atlCode property. + * + */ + public void setAtlCode(int value) { + this.atlCode = value; + } + + /** + * Gets the value of the packages property. + * + * @return + * possible object is + * {@link CarVWEOptionPackageArray } + * + */ + public CarVWEOptionPackageArray getPackages() { + return packages; + } + + /** + * Sets the value of the packages property. + * + * @param value + * allowed object is + * {@link CarVWEOptionPackageArray } + * + */ + public void setPackages(CarVWEOptionPackageArray value) { + this.packages = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsRequestType.java new file mode 100644 index 0000000..7bce1e8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsRequestType.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEOptionsRequestType complex type. + * + *

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

+ * <complexType name="carVWEOptionsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEOptionsRequestType", propOrder = { + +}) +public class CarVWEOptionsRequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + @XmlElement(name = "atl_code") + protected int atlCode; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + + /** + * Gets the value of the atlCode property. + * + */ + public int getAtlCode() { + return atlCode; + } + + /** + * Sets the value of the atlCode property. + * + */ + public void setAtlCode(int value) { + this.atlCode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsResponseType.java new file mode 100644 index 0000000..f87fba3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEOptionsResponseType complex type. + * + *

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

+ * <complexType name="carVWEOptionsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEOptions"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEOptionsResponseType", propOrder = { + +}) +public class CarVWEOptionsResponseType { + + @XmlElement(required = true) + protected CarVWEOptions out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarVWEOptions } + * + */ + public CarVWEOptions getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarVWEOptions } + * + */ + public void setOut(CarVWEOptions value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsStandard.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsStandard.java new file mode 100644 index 0000000..a92d33b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsStandard.java @@ -0,0 +1,115 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEOptionsStandard complex type. + * + *

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

+ * <complexType name="CarVWEOptionsStandard">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="options" type="{http://www.webservices.nl/soap/}CarVWEOptionArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEOptionsStandard", propOrder = { + +}) +public class CarVWEOptionsStandard { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + @XmlElement(name = "atl_code") + protected int atlCode; + @XmlElement(required = true) + protected CarVWEOptionArray options; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + + /** + * Gets the value of the atlCode property. + * + */ + public int getAtlCode() { + return atlCode; + } + + /** + * Sets the value of the atlCode property. + * + */ + public void setAtlCode(int value) { + this.atlCode = value; + } + + /** + * Gets the value of the options property. + * + * @return + * possible object is + * {@link CarVWEOptionArray } + * + */ + public CarVWEOptionArray getOptions() { + return options; + } + + /** + * Sets the value of the options property. + * + * @param value + * allowed object is + * {@link CarVWEOptionArray } + * + */ + public void setOptions(CarVWEOptionArray value) { + this.options = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhoto.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhoto.java new file mode 100644 index 0000000..6b3eebc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhoto.java @@ -0,0 +1,121 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEPhoto complex type. + * + *

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

+ * <complexType name="CarVWEPhoto">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="image" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *         <element name="side" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="size" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEPhoto", propOrder = { + +}) +public class CarVWEPhoto { + + @XmlElement(required = true) + protected byte[] image; + @XmlElement(required = true) + protected String side; + @XmlElement(required = true) + protected String size; + + /** + * Gets the value of the image property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getImage() { + return image; + } + + /** + * Sets the value of the image property. + * + * @param value + * allowed object is + * byte[] + */ + public void setImage(byte[] value) { + this.image = value; + } + + /** + * Gets the value of the side property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSide() { + return side; + } + + /** + * Sets the value of the side property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSide(String value) { + this.side = value; + } + + /** + * Gets the value of the size property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSize() { + return size; + } + + /** + * Sets the value of the size property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSize(String value) { + this.size = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotoArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotoArray.java new file mode 100644 index 0000000..53c4afa --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotoArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEPhotoArray complex type. + * + *

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

+ * <complexType name="CarVWEPhotoArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CarVWEPhoto" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEPhotoArray", propOrder = { + "item" +}) +public class CarVWEPhotoArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CarVWEPhoto } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotosRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotosRequestType.java new file mode 100644 index 0000000..62ecb8d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotosRequestType.java @@ -0,0 +1,61 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEPhotosRequestType complex type. + * + *

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

+ * <complexType name="carVWEPhotosRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEPhotosRequestType", propOrder = { + +}) +public class CarVWEPhotosRequestType { + + @XmlElement(name = "atl_code") + protected int atlCode; + + /** + * Gets the value of the atlCode property. + * + */ + public int getAtlCode() { + return atlCode; + } + + /** + * Sets the value of the atlCode property. + * + */ + public void setAtlCode(int value) { + this.atlCode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotosResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotosResponseType.java new file mode 100644 index 0000000..98ed2db --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotosResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEPhotosResponseType complex type. + * + *

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

+ * <complexType name="carVWEPhotosResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEPhotoArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEPhotosResponseType", propOrder = { + +}) +public class CarVWEPhotosResponseType { + + @XmlElement(required = true) + protected CarVWEPhotoArray out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarVWEPhotoArray } + * + */ + public CarVWEPhotoArray getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarVWEPhotoArray } + * + */ + public void setOut(CarVWEPhotoArray value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPrices.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPrices.java new file mode 100644 index 0000000..99d760f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPrices.java @@ -0,0 +1,342 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CarVWEPrices complex type. + * + *

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

+ * <complexType name="CarVWEPrices">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="current_price_retail" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="current_price_exchange" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="current_price_trade" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="date_price_list" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="catalog_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="btw_new_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="bpm_new_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="net_catalog_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="recalculated_catalog_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="recalculated_btw_new_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="recalculated_net_catalog_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEPrices", propOrder = { + +}) +public class CarVWEPrices { + + @XmlElement(name = "current_price_retail") + protected Integer currentPriceRetail; + @XmlElement(name = "current_price_exchange") + protected Integer currentPriceExchange; + @XmlElement(name = "current_price_trade") + protected Integer currentPriceTrade; + @XmlElement(name = "date_price_list") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar datePriceList; + @XmlElement(name = "catalog_price") + protected Integer catalogPrice; + @XmlElement(name = "btw_new_price") + protected Integer btwNewPrice; + @XmlElement(name = "bpm_new_price") + protected Integer bpmNewPrice; + @XmlElement(name = "net_catalog_price") + protected Integer netCatalogPrice; + @XmlElement(name = "recalculated_catalog_price") + protected Integer recalculatedCatalogPrice; + @XmlElement(name = "recalculated_btw_new_price") + protected Integer recalculatedBtwNewPrice; + @XmlElement(name = "recalculated_net_catalog_price") + protected Integer recalculatedNetCatalogPrice; + + /** + * Gets the value of the currentPriceRetail property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCurrentPriceRetail() { + return currentPriceRetail; + } + + /** + * Sets the value of the currentPriceRetail property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCurrentPriceRetail(Integer value) { + this.currentPriceRetail = value; + } + + /** + * Gets the value of the currentPriceExchange property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCurrentPriceExchange() { + return currentPriceExchange; + } + + /** + * Sets the value of the currentPriceExchange property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCurrentPriceExchange(Integer value) { + this.currentPriceExchange = value; + } + + /** + * Gets the value of the currentPriceTrade property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCurrentPriceTrade() { + return currentPriceTrade; + } + + /** + * Sets the value of the currentPriceTrade property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCurrentPriceTrade(Integer value) { + this.currentPriceTrade = value; + } + + /** + * Gets the value of the datePriceList property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDatePriceList() { + return datePriceList; + } + + /** + * Sets the value of the datePriceList property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDatePriceList(XMLGregorianCalendar value) { + this.datePriceList = value; + } + + /** + * Gets the value of the catalogPrice property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCatalogPrice() { + return catalogPrice; + } + + /** + * Sets the value of the catalogPrice property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCatalogPrice(Integer value) { + this.catalogPrice = value; + } + + /** + * Gets the value of the btwNewPrice property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getBtwNewPrice() { + return btwNewPrice; + } + + /** + * Sets the value of the btwNewPrice property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setBtwNewPrice(Integer value) { + this.btwNewPrice = value; + } + + /** + * Gets the value of the bpmNewPrice property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getBpmNewPrice() { + return bpmNewPrice; + } + + /** + * Sets the value of the bpmNewPrice property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setBpmNewPrice(Integer value) { + this.bpmNewPrice = value; + } + + /** + * Gets the value of the netCatalogPrice property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getNetCatalogPrice() { + return netCatalogPrice; + } + + /** + * Sets the value of the netCatalogPrice property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setNetCatalogPrice(Integer value) { + this.netCatalogPrice = value; + } + + /** + * Gets the value of the recalculatedCatalogPrice property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getRecalculatedCatalogPrice() { + return recalculatedCatalogPrice; + } + + /** + * Sets the value of the recalculatedCatalogPrice property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setRecalculatedCatalogPrice(Integer value) { + this.recalculatedCatalogPrice = value; + } + + /** + * Gets the value of the recalculatedBtwNewPrice property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getRecalculatedBtwNewPrice() { + return recalculatedBtwNewPrice; + } + + /** + * Sets the value of the recalculatedBtwNewPrice property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setRecalculatedBtwNewPrice(Integer value) { + this.recalculatedBtwNewPrice = value; + } + + /** + * Gets the value of the recalculatedNetCatalogPrice property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getRecalculatedNetCatalogPrice() { + return recalculatedNetCatalogPrice; + } + + /** + * Sets the value of the recalculatedNetCatalogPrice property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setRecalculatedNetCatalogPrice(Integer value) { + this.recalculatedNetCatalogPrice = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersion.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersion.java new file mode 100644 index 0000000..ef3f966 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersion.java @@ -0,0 +1,320 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CarVWEVersion complex type. + * + *

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

+ * <complexType name="CarVWEVersion">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="version_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="fuel_type_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="fuel_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="body_style_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="body_style" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="doors" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="power" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="gear_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="gear" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="valid_from" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="valid_until" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEVersion", propOrder = { + +}) +public class CarVWEVersion { + + @XmlElement(name = "atl_code") + protected int atlCode; + @XmlElement(name = "version_name", required = true) + protected String versionName; + @XmlElement(name = "fuel_type_id") + protected int fuelTypeId; + @XmlElement(name = "fuel_type", required = true) + protected String fuelType; + @XmlElement(name = "body_style_id") + protected int bodyStyleId; + @XmlElement(name = "body_style", required = true) + protected String bodyStyle; + protected int doors; + protected int power; + @XmlElement(name = "gear_id") + protected int gearId; + @XmlElement(required = true) + protected String gear; + @XmlElement(name = "valid_from", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar validFrom; + @XmlElement(name = "valid_until") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar validUntil; + + /** + * Gets the value of the atlCode property. + * + */ + public int getAtlCode() { + return atlCode; + } + + /** + * Sets the value of the atlCode property. + * + */ + public void setAtlCode(int value) { + this.atlCode = value; + } + + /** + * Gets the value of the versionName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVersionName() { + return versionName; + } + + /** + * Sets the value of the versionName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVersionName(String value) { + this.versionName = value; + } + + /** + * Gets the value of the fuelTypeId property. + * + */ + public int getFuelTypeId() { + return fuelTypeId; + } + + /** + * Sets the value of the fuelTypeId property. + * + */ + public void setFuelTypeId(int value) { + this.fuelTypeId = value; + } + + /** + * Gets the value of the fuelType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFuelType() { + return fuelType; + } + + /** + * Sets the value of the fuelType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFuelType(String value) { + this.fuelType = value; + } + + /** + * Gets the value of the bodyStyleId property. + * + */ + public int getBodyStyleId() { + return bodyStyleId; + } + + /** + * Sets the value of the bodyStyleId property. + * + */ + public void setBodyStyleId(int value) { + this.bodyStyleId = value; + } + + /** + * Gets the value of the bodyStyle property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBodyStyle() { + return bodyStyle; + } + + /** + * Sets the value of the bodyStyle property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBodyStyle(String value) { + this.bodyStyle = value; + } + + /** + * Gets the value of the doors property. + * + */ + public int getDoors() { + return doors; + } + + /** + * Sets the value of the doors property. + * + */ + public void setDoors(int value) { + this.doors = value; + } + + /** + * Gets the value of the power property. + * + */ + public int getPower() { + return power; + } + + /** + * Sets the value of the power property. + * + */ + public void setPower(int value) { + this.power = value; + } + + /** + * Gets the value of the gearId property. + * + */ + public int getGearId() { + return gearId; + } + + /** + * Sets the value of the gearId property. + * + */ + public void setGearId(int value) { + this.gearId = value; + } + + /** + * Gets the value of the gear property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGear() { + return gear; + } + + /** + * Sets the value of the gear property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGear(String value) { + this.gear = value; + } + + /** + * Gets the value of the validFrom property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getValidFrom() { + return validFrom; + } + + /** + * Sets the value of the validFrom property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setValidFrom(XMLGregorianCalendar value) { + this.validFrom = value; + } + + /** + * Gets the value of the validUntil property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getValidUntil() { + return validUntil; + } + + /** + * Sets the value of the validUntil property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setValidUntil(XMLGregorianCalendar value) { + this.validUntil = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionArray.java new file mode 100644 index 0000000..4d45e09 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEVersionArray complex type. + * + *

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

+ * <complexType name="CarVWEVersionArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CarVWEVersion" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEVersionArray", propOrder = { + "item" +}) +public class CarVWEVersionArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CarVWEVersion } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPagedResult.java new file mode 100644 index 0000000..e2a727a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEVersionPagedResult complex type. + * + *

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

+ * <complexType name="CarVWEVersionPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}CarVWEVersionArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEVersionPagedResult", propOrder = { + +}) +public class CarVWEVersionPagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected CarVWEVersionArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link CarVWEVersionArray } + * + */ + public CarVWEVersionArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link CarVWEVersionArray } + * + */ + public void setResults(CarVWEVersionArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPrice.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPrice.java new file mode 100644 index 0000000..3eb3bf8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPrice.java @@ -0,0 +1,575 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEVersionPrice complex type. + * + *

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

+ * <complexType name="CarVWEVersionPrice">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="brand_atl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="model_atl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="short_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="fuel_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="cylinder_capacity" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="seats" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="power" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="energy_label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="emission_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="doors" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="gear" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="top_speed" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="folder_weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="train_weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="layout" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="design" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="acceleration" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="sportivity" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="version" type="{http://www.webservices.nl/soap/}CarVWEVersionPriceReference"/>
+ *         <element name="prices" type="{http://www.webservices.nl/soap/}CarVWEPrices"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEVersionPrice", propOrder = { + +}) +public class CarVWEVersionPrice { + + @XmlElement(name = "brand_atl") + protected String brandAtl; + @XmlElement(name = "model_atl") + protected String modelAtl; + @XmlElement(name = "short_type") + protected String shortType; + @XmlElement(name = "fuel_type") + protected String fuelType; + @XmlElement(name = "cylinder_capacity") + protected Integer cylinderCapacity; + protected Integer seats; + protected Integer power; + @XmlElement(name = "energy_label") + protected String energyLabel; + @XmlElement(name = "emission_code") + protected String emissionCode; + protected Integer doors; + protected String gear; + @XmlElement(name = "top_speed") + protected Integer topSpeed; + @XmlElement(name = "folder_weight") + protected Integer folderWeight; + @XmlElement(name = "train_weight") + protected Integer trainWeight; + protected String layout; + protected String design; + protected BigDecimal acceleration; + protected Float sportivity; + @XmlElement(required = true) + protected CarVWEVersionPriceReference version; + @XmlElement(required = true) + protected CarVWEPrices prices; + + /** + * Gets the value of the brandAtl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrandAtl() { + return brandAtl; + } + + /** + * Sets the value of the brandAtl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrandAtl(String value) { + this.brandAtl = value; + } + + /** + * Gets the value of the modelAtl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModelAtl() { + return modelAtl; + } + + /** + * Sets the value of the modelAtl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModelAtl(String value) { + this.modelAtl = value; + } + + /** + * Gets the value of the shortType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getShortType() { + return shortType; + } + + /** + * Sets the value of the shortType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setShortType(String value) { + this.shortType = value; + } + + /** + * Gets the value of the fuelType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFuelType() { + return fuelType; + } + + /** + * Sets the value of the fuelType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFuelType(String value) { + this.fuelType = value; + } + + /** + * Gets the value of the cylinderCapacity property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCylinderCapacity() { + return cylinderCapacity; + } + + /** + * Sets the value of the cylinderCapacity property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCylinderCapacity(Integer value) { + this.cylinderCapacity = value; + } + + /** + * Gets the value of the seats property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getSeats() { + return seats; + } + + /** + * Sets the value of the seats property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setSeats(Integer value) { + this.seats = value; + } + + /** + * Gets the value of the power property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPower() { + return power; + } + + /** + * Sets the value of the power property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPower(Integer value) { + this.power = value; + } + + /** + * Gets the value of the energyLabel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnergyLabel() { + return energyLabel; + } + + /** + * Sets the value of the energyLabel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnergyLabel(String value) { + this.energyLabel = value; + } + + /** + * Gets the value of the emissionCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmissionCode() { + return emissionCode; + } + + /** + * Sets the value of the emissionCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmissionCode(String value) { + this.emissionCode = value; + } + + /** + * Gets the value of the doors property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDoors() { + return doors; + } + + /** + * Sets the value of the doors property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDoors(Integer value) { + this.doors = value; + } + + /** + * Gets the value of the gear property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGear() { + return gear; + } + + /** + * Sets the value of the gear property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGear(String value) { + this.gear = value; + } + + /** + * Gets the value of the topSpeed property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTopSpeed() { + return topSpeed; + } + + /** + * Sets the value of the topSpeed property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTopSpeed(Integer value) { + this.topSpeed = value; + } + + /** + * Gets the value of the folderWeight property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getFolderWeight() { + return folderWeight; + } + + /** + * Sets the value of the folderWeight property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setFolderWeight(Integer value) { + this.folderWeight = value; + } + + /** + * Gets the value of the trainWeight property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTrainWeight() { + return trainWeight; + } + + /** + * Sets the value of the trainWeight property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTrainWeight(Integer value) { + this.trainWeight = value; + } + + /** + * Gets the value of the layout property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLayout() { + return layout; + } + + /** + * Sets the value of the layout property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLayout(String value) { + this.layout = value; + } + + /** + * Gets the value of the design property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDesign() { + return design; + } + + /** + * Sets the value of the design property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDesign(String value) { + this.design = value; + } + + /** + * Gets the value of the acceleration property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getAcceleration() { + return acceleration; + } + + /** + * Sets the value of the acceleration property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setAcceleration(BigDecimal value) { + this.acceleration = value; + } + + /** + * Gets the value of the sportivity property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getSportivity() { + return sportivity; + } + + /** + * Sets the value of the sportivity property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setSportivity(Float value) { + this.sportivity = value; + } + + /** + * Gets the value of the version property. + * + * @return + * possible object is + * {@link CarVWEVersionPriceReference } + * + */ + public CarVWEVersionPriceReference getVersion() { + return version; + } + + /** + * Sets the value of the version property. + * + * @param value + * allowed object is + * {@link CarVWEVersionPriceReference } + * + */ + public void setVersion(CarVWEVersionPriceReference value) { + this.version = value; + } + + /** + * Gets the value of the prices property. + * + * @return + * possible object is + * {@link CarVWEPrices } + * + */ + public CarVWEPrices getPrices() { + return prices; + } + + /** + * Sets the value of the prices property. + * + * @param value + * allowed object is + * {@link CarVWEPrices } + * + */ + public void setPrices(CarVWEPrices value) { + this.prices = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceReference.java new file mode 100644 index 0000000..1e1d7bd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceReference.java @@ -0,0 +1,107 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEVersionPriceReference complex type. + * + *

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

+ * <complexType name="CarVWEVersionPriceReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="order_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="model_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEVersionPriceReference", propOrder = { + +}) +public class CarVWEVersionPriceReference { + + @XmlElement(name = "order_number") + protected int orderNumber; + @XmlElement(name = "atl_code") + protected int atlCode; + @XmlElement(name = "model_name", required = true) + protected String modelName; + + /** + * Gets the value of the orderNumber property. + * + */ + public int getOrderNumber() { + return orderNumber; + } + + /** + * Sets the value of the orderNumber property. + * + */ + public void setOrderNumber(int value) { + this.orderNumber = value; + } + + /** + * Gets the value of the atlCode property. + * + */ + public int getAtlCode() { + return atlCode; + } + + /** + * Sets the value of the atlCode property. + * + */ + public void setAtlCode(int value) { + this.atlCode = value; + } + + /** + * Gets the value of the modelName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModelName() { + return modelName; + } + + /** + * Sets the value of the modelName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModelName(String value) { + this.modelName = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceReferenceArray.java new file mode 100644 index 0000000..7643469 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEVersionPriceReferenceArray complex type. + * + *

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

+ * <complexType name="CarVWEVersionPriceReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CarVWEVersionPriceReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEVersionPriceReferenceArray", propOrder = { + "item" +}) +public class CarVWEVersionPriceReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CarVWEVersionPriceReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceRequestType.java new file mode 100644 index 0000000..483c782 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceRequestType.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEVersionPriceRequestType complex type. + * + *

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

+ * <complexType name="carVWEVersionPriceRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEVersionPriceRequestType", propOrder = { + +}) +public class CarVWEVersionPriceRequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + @XmlElement(name = "atl_code") + protected int atlCode; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + + /** + * Gets the value of the atlCode property. + * + */ + public int getAtlCode() { + return atlCode; + } + + /** + * Sets the value of the atlCode property. + * + */ + public void setAtlCode(int value) { + this.atlCode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceResponseType.java new file mode 100644 index 0000000..f0c0a26 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEVersionPriceResponseType complex type. + * + *

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

+ * <complexType name="carVWEVersionPriceResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEVersionPrice"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEVersionPriceResponseType", propOrder = { + +}) +public class CarVWEVersionPriceResponseType { + + @XmlElement(required = true) + protected CarVWEVersionPrice out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarVWEVersionPrice } + * + */ + public CarVWEVersionPrice getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarVWEVersionPrice } + * + */ + public void setOut(CarVWEVersionPrice value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearData.java new file mode 100644 index 0000000..6d39f00 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearData.java @@ -0,0 +1,603 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CarVWEVersionYearData complex type. + * + *

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

+ * <complexType name="CarVWEVersionYearData">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="brand_atl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="model_atl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="version_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="short_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="fuel_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="cylinder_capacity" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="seats" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="power" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="energy_label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="emission_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="doors" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="gear" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="top_speed" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="folder_weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="train_weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="layout" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="body_style" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="acceleration" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="sportivity" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="prices" type="{http://www.webservices.nl/soap/}CarVWEPrices"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CarVWEVersionYearData", propOrder = { + +}) +public class CarVWEVersionYearData { + + @XmlElement(name = "atl_code") + protected Integer atlCode; + @XmlElement(name = "brand_atl") + protected String brandAtl; + @XmlElement(name = "model_atl") + protected String modelAtl; + @XmlElement(name = "version_name") + protected String versionName; + @XmlElement(name = "short_type") + protected String shortType; + @XmlElement(name = "fuel_type") + protected String fuelType; + @XmlElement(name = "cylinder_capacity") + protected Integer cylinderCapacity; + protected Integer seats; + protected Integer power; + @XmlElement(name = "energy_label") + protected String energyLabel; + @XmlElement(name = "emission_code") + protected String emissionCode; + protected Integer doors; + protected String gear; + @XmlElement(name = "top_speed") + protected Integer topSpeed; + @XmlElement(name = "folder_weight") + protected Integer folderWeight; + @XmlElement(name = "train_weight") + protected Integer trainWeight; + protected String layout; + @XmlElement(name = "body_style") + protected String bodyStyle; + protected BigDecimal acceleration; + protected Float sportivity; + @XmlElement(required = true) + protected CarVWEPrices prices; + + /** + * Gets the value of the atlCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getAtlCode() { + return atlCode; + } + + /** + * Sets the value of the atlCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setAtlCode(Integer value) { + this.atlCode = value; + } + + /** + * Gets the value of the brandAtl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrandAtl() { + return brandAtl; + } + + /** + * Sets the value of the brandAtl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrandAtl(String value) { + this.brandAtl = value; + } + + /** + * Gets the value of the modelAtl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModelAtl() { + return modelAtl; + } + + /** + * Sets the value of the modelAtl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModelAtl(String value) { + this.modelAtl = value; + } + + /** + * Gets the value of the versionName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVersionName() { + return versionName; + } + + /** + * Sets the value of the versionName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVersionName(String value) { + this.versionName = value; + } + + /** + * Gets the value of the shortType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getShortType() { + return shortType; + } + + /** + * Sets the value of the shortType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setShortType(String value) { + this.shortType = value; + } + + /** + * Gets the value of the fuelType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFuelType() { + return fuelType; + } + + /** + * Sets the value of the fuelType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFuelType(String value) { + this.fuelType = value; + } + + /** + * Gets the value of the cylinderCapacity property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCylinderCapacity() { + return cylinderCapacity; + } + + /** + * Sets the value of the cylinderCapacity property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCylinderCapacity(Integer value) { + this.cylinderCapacity = value; + } + + /** + * Gets the value of the seats property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getSeats() { + return seats; + } + + /** + * Sets the value of the seats property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setSeats(Integer value) { + this.seats = value; + } + + /** + * Gets the value of the power property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPower() { + return power; + } + + /** + * Sets the value of the power property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPower(Integer value) { + this.power = value; + } + + /** + * Gets the value of the energyLabel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnergyLabel() { + return energyLabel; + } + + /** + * Sets the value of the energyLabel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnergyLabel(String value) { + this.energyLabel = value; + } + + /** + * Gets the value of the emissionCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmissionCode() { + return emissionCode; + } + + /** + * Sets the value of the emissionCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmissionCode(String value) { + this.emissionCode = value; + } + + /** + * Gets the value of the doors property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDoors() { + return doors; + } + + /** + * Sets the value of the doors property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDoors(Integer value) { + this.doors = value; + } + + /** + * Gets the value of the gear property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGear() { + return gear; + } + + /** + * Sets the value of the gear property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGear(String value) { + this.gear = value; + } + + /** + * Gets the value of the topSpeed property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTopSpeed() { + return topSpeed; + } + + /** + * Sets the value of the topSpeed property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTopSpeed(Integer value) { + this.topSpeed = value; + } + + /** + * Gets the value of the folderWeight property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getFolderWeight() { + return folderWeight; + } + + /** + * Sets the value of the folderWeight property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setFolderWeight(Integer value) { + this.folderWeight = value; + } + + /** + * Gets the value of the trainWeight property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTrainWeight() { + return trainWeight; + } + + /** + * Sets the value of the trainWeight property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTrainWeight(Integer value) { + this.trainWeight = value; + } + + /** + * Gets the value of the layout property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLayout() { + return layout; + } + + /** + * Sets the value of the layout property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLayout(String value) { + this.layout = value; + } + + /** + * Gets the value of the bodyStyle property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBodyStyle() { + return bodyStyle; + } + + /** + * Sets the value of the bodyStyle property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBodyStyle(String value) { + this.bodyStyle = value; + } + + /** + * Gets the value of the acceleration property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getAcceleration() { + return acceleration; + } + + /** + * Sets the value of the acceleration property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setAcceleration(BigDecimal value) { + this.acceleration = value; + } + + /** + * Gets the value of the sportivity property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getSportivity() { + return sportivity; + } + + /** + * Sets the value of the sportivity property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setSportivity(Float value) { + this.sportivity = value; + } + + /** + * Gets the value of the prices property. + * + * @return + * possible object is + * {@link CarVWEPrices } + * + */ + public CarVWEPrices getPrices() { + return prices; + } + + /** + * Sets the value of the prices property. + * + * @param value + * allowed object is + * {@link CarVWEPrices } + * + */ + public void setPrices(CarVWEPrices value) { + this.prices = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearDataRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearDataRequestType.java new file mode 100644 index 0000000..3cb63d0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearDataRequestType.java @@ -0,0 +1,80 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEVersionYearDataRequestType complex type. + * + *

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

+ * <complexType name="carVWEVersionYearDataRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="production_year" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEVersionYearDataRequestType", propOrder = { + +}) +public class CarVWEVersionYearDataRequestType { + + @XmlElement(name = "production_year") + protected int productionYear; + @XmlElement(name = "atl_code") + protected int atlCode; + + /** + * Gets the value of the productionYear property. + * + */ + public int getProductionYear() { + return productionYear; + } + + /** + * Sets the value of the productionYear property. + * + */ + public void setProductionYear(int value) { + this.productionYear = value; + } + + /** + * Gets the value of the atlCode property. + * + */ + public int getAtlCode() { + return atlCode; + } + + /** + * Sets the value of the atlCode property. + * + */ + public void setAtlCode(int value) { + this.atlCode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearDataResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearDataResponseType.java new file mode 100644 index 0000000..31d5ac3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearDataResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for carVWEVersionYearDataResponseType complex type. + * + *

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

+ * <complexType name="carVWEVersionYearDataResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEVersionYearData"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "carVWEVersionYearDataResponseType", propOrder = { + +}) +public class CarVWEVersionYearDataResponseType { + + @XmlElement(required = true) + protected CarVWEVersionYearData out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CarVWEVersionYearData } + * + */ + public CarVWEVersionYearData getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CarVWEVersionYearData } + * + */ + public void setOut(CarVWEVersionYearData value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/City.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/City.java new file mode 100644 index 0000000..482fa76 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/City.java @@ -0,0 +1,159 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for City complex type. + * + *

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

+ * <complexType name="City">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="plaatsid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="plaatsnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="plaatsnaam_ptt" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="plaatsnaam_extract" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeenteid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "City", propOrder = { + +}) +public class City { + + protected int plaatsid; + @XmlElement(required = true) + protected String plaatsnaam; + @XmlElement(name = "plaatsnaam_ptt", required = true) + protected String plaatsnaamPtt; + @XmlElement(name = "plaatsnaam_extract", required = true) + protected String plaatsnaamExtract; + protected int gemeenteid; + + /** + * Gets the value of the plaatsid property. + * + */ + public int getPlaatsid() { + return plaatsid; + } + + /** + * Sets the value of the plaatsid property. + * + */ + public void setPlaatsid(int value) { + this.plaatsid = value; + } + + /** + * Gets the value of the plaatsnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaatsnaam() { + return plaatsnaam; + } + + /** + * Sets the value of the plaatsnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaatsnaam(String value) { + this.plaatsnaam = value; + } + + /** + * Gets the value of the plaatsnaamPtt property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaatsnaamPtt() { + return plaatsnaamPtt; + } + + /** + * Sets the value of the plaatsnaamPtt property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaatsnaamPtt(String value) { + this.plaatsnaamPtt = value; + } + + /** + * Gets the value of the plaatsnaamExtract property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaatsnaamExtract() { + return plaatsnaamExtract; + } + + /** + * Sets the value of the plaatsnaamExtract property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaatsnaamExtract(String value) { + this.plaatsnaamExtract = value; + } + + /** + * Gets the value of the gemeenteid property. + * + */ + public int getGemeenteid() { + return gemeenteid; + } + + /** + * Sets the value of the gemeenteid property. + * + */ + public void setGemeenteid(int value) { + this.gemeenteid = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityArray.java new file mode 100644 index 0000000..f58a1ed --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CityArray complex type. + * + *

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

+ * <complexType name="CityArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}City" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CityArray", propOrder = { + "item" +}) +public class CityArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link City } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityPagedResult.java new file mode 100644 index 0000000..31f001a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityPagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CityPagedResult complex type. + * + *

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

+ * <complexType name="CityPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}CityArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CityPagedResult", propOrder = { + +}) +public class CityPagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected CityArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link CityArray } + * + */ + public CityArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link CityArray } + * + */ + public void setResults(CityArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2.java new file mode 100644 index 0000000..2595d63 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2.java @@ -0,0 +1,276 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CityV2 complex type. + * + *

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

+ * <complexType name="CityV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="plaatsid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="plaatsnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="plaatsnaam_ptt" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="plaatsnaam_extract" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeenteid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="cebucocode" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="provinciecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="provincienaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CityV2", propOrder = { + +}) +public class CityV2 { + + protected int plaatsid; + @XmlElement(required = true) + protected String plaatsnaam; + @XmlElement(name = "plaatsnaam_ptt", required = true) + protected String plaatsnaamPtt; + @XmlElement(name = "plaatsnaam_extract", required = true) + protected String plaatsnaamExtract; + protected int gemeenteid; + @XmlElement(required = true) + protected String gemeentenaam; + protected int gemeentecode; + protected int cebucocode; + @XmlElement(required = true) + protected String provinciecode; + @XmlElement(required = true) + protected String provincienaam; + + /** + * Gets the value of the plaatsid property. + * + */ + public int getPlaatsid() { + return plaatsid; + } + + /** + * Sets the value of the plaatsid property. + * + */ + public void setPlaatsid(int value) { + this.plaatsid = value; + } + + /** + * Gets the value of the plaatsnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaatsnaam() { + return plaatsnaam; + } + + /** + * Sets the value of the plaatsnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaatsnaam(String value) { + this.plaatsnaam = value; + } + + /** + * Gets the value of the plaatsnaamPtt property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaatsnaamPtt() { + return plaatsnaamPtt; + } + + /** + * Sets the value of the plaatsnaamPtt property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaatsnaamPtt(String value) { + this.plaatsnaamPtt = value; + } + + /** + * Gets the value of the plaatsnaamExtract property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaatsnaamExtract() { + return plaatsnaamExtract; + } + + /** + * Sets the value of the plaatsnaamExtract property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaatsnaamExtract(String value) { + this.plaatsnaamExtract = value; + } + + /** + * Gets the value of the gemeenteid property. + * + */ + public int getGemeenteid() { + return gemeenteid; + } + + /** + * Sets the value of the gemeenteid property. + * + */ + public void setGemeenteid(int value) { + this.gemeenteid = value; + } + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the gemeentecode property. + * + */ + public int getGemeentecode() { + return gemeentecode; + } + + /** + * Sets the value of the gemeentecode property. + * + */ + public void setGemeentecode(int value) { + this.gemeentecode = value; + } + + /** + * Gets the value of the cebucocode property. + * + */ + public int getCebucocode() { + return cebucocode; + } + + /** + * Sets the value of the cebucocode property. + * + */ + public void setCebucocode(int value) { + this.cebucocode = value; + } + + /** + * Gets the value of the provinciecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvinciecode() { + return provinciecode; + } + + /** + * Sets the value of the provinciecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvinciecode(String value) { + this.provinciecode = value; + } + + /** + * Gets the value of the provincienaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvincienaam() { + return provincienaam; + } + + /** + * Sets the value of the provincienaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvincienaam(String value) { + this.provincienaam = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2Array.java new file mode 100644 index 0000000..5946ad0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CityV2Array complex type. + * + *

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

+ * <complexType name="CityV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CityV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CityV2Array", propOrder = { + "item" +}) +public class CityV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CityV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2PagedResult.java new file mode 100644 index 0000000..7c6ddcb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2PagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CityV2PagedResult complex type. + * + *

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

+ * <complexType name="CityV2PagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}CityV2Array"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CityV2PagedResult", propOrder = { + +}) +public class CityV2PagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected CityV2Array results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link CityV2Array } + * + */ + public CityV2Array getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link CityV2Array } + * + */ + public void setResults(CityV2Array value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceAddressReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceAddressReference.java new file mode 100644 index 0000000..6760714 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceAddressReference.java @@ -0,0 +1,174 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ComplianceAddressReference complex type. + * + *

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

+ * <complexType name="ComplianceAddressReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address_lines" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="postal_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="county" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceAddressReference", propOrder = { + +}) +public class ComplianceAddressReference { + + @XmlElement(name = "address_lines") + protected StringArray addressLines; + @XmlElement(name = "postal_code") + protected String postalCode; + protected String city; + protected String county; + protected String country; + + /** + * Gets the value of the addressLines property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getAddressLines() { + return addressLines; + } + + /** + * Sets the value of the addressLines property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setAddressLines(StringArray value) { + this.addressLines = value; + } + + /** + * Gets the value of the postalCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostalCode() { + return postalCode; + } + + /** + * Sets the value of the postalCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostalCode(String value) { + this.postalCode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the county property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCounty() { + return county; + } + + /** + * Sets the value of the county property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCounty(String value) { + this.county = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceAddressReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceAddressReferenceArray.java new file mode 100644 index 0000000..8ad85db --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceAddressReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ComplianceAddressReferenceArray complex type. + * + *

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

+ * <complexType name="ComplianceAddressReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}ComplianceAddressReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceAddressReferenceArray", propOrder = { + "item" +}) +public class ComplianceAddressReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ComplianceAddressReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusiness.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusiness.java new file mode 100644 index 0000000..59e1d3f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusiness.java @@ -0,0 +1,394 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ComplianceBusiness complex type. + * + *

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

+ * <complexType name="ComplianceBusiness">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="compliance_business_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="business_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="website_url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="sanctions" type="{http://www.webservices.nl/soap/}ComplianceSanctionReferenceArray"/>
+ *         <element name="flags" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="aliases" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="addresses" type="{http://www.webservices.nl/soap/}ComplianceAddressReferenceArray"/>
+ *         <element name="related_businesses" type="{http://www.webservices.nl/soap/}ComplianceBusinessReferenceArray"/>
+ *         <element name="related_persons" type="{http://www.webservices.nl/soap/}CompliancePersonReferenceArray"/>
+ *         <element name="notes" type="{http://www.webservices.nl/soap/}ComplianceNoteReferenceArray"/>
+ *         <element name="documents" type="{http://www.webservices.nl/soap/}ComplianceDocumentReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceBusiness", propOrder = { + +}) +public class ComplianceBusiness { + + @XmlElement(name = "compliance_business_id", required = true) + protected BigInteger complianceBusinessId; + @XmlElement(name = "business_name", required = true) + protected String businessName; + @XmlElement(name = "website_url") + protected String websiteUrl; + @XmlElement(name = "telephone_number") + protected String telephoneNumber; + @XmlElement(name = "fax_number") + protected String faxNumber; + @XmlElement(required = true) + protected ComplianceSanctionReferenceArray sanctions; + @XmlElement(required = true) + protected StringArray flags; + @XmlElement(required = true) + protected StringArray aliases; + @XmlElement(required = true) + protected ComplianceAddressReferenceArray addresses; + @XmlElement(name = "related_businesses", required = true) + protected ComplianceBusinessReferenceArray relatedBusinesses; + @XmlElement(name = "related_persons", required = true) + protected CompliancePersonReferenceArray relatedPersons; + @XmlElement(required = true) + protected ComplianceNoteReferenceArray notes; + @XmlElement(required = true) + protected ComplianceDocumentReferenceArray documents; + + /** + * Gets the value of the complianceBusinessId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getComplianceBusinessId() { + return complianceBusinessId; + } + + /** + * Sets the value of the complianceBusinessId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setComplianceBusinessId(BigInteger value) { + this.complianceBusinessId = value; + } + + /** + * Gets the value of the businessName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBusinessName() { + return businessName; + } + + /** + * Sets the value of the businessName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBusinessName(String value) { + this.businessName = value; + } + + /** + * Gets the value of the websiteUrl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWebsiteUrl() { + return websiteUrl; + } + + /** + * Sets the value of the websiteUrl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWebsiteUrl(String value) { + this.websiteUrl = value; + } + + /** + * Gets the value of the telephoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNumber() { + return telephoneNumber; + } + + /** + * Sets the value of the telephoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNumber(String value) { + this.telephoneNumber = value; + } + + /** + * Gets the value of the faxNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFaxNumber() { + return faxNumber; + } + + /** + * Sets the value of the faxNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFaxNumber(String value) { + this.faxNumber = value; + } + + /** + * Gets the value of the sanctions property. + * + * @return + * possible object is + * {@link ComplianceSanctionReferenceArray } + * + */ + public ComplianceSanctionReferenceArray getSanctions() { + return sanctions; + } + + /** + * Sets the value of the sanctions property. + * + * @param value + * allowed object is + * {@link ComplianceSanctionReferenceArray } + * + */ + public void setSanctions(ComplianceSanctionReferenceArray value) { + this.sanctions = value; + } + + /** + * Gets the value of the flags property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getFlags() { + return flags; + } + + /** + * Sets the value of the flags property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setFlags(StringArray value) { + this.flags = value; + } + + /** + * Gets the value of the aliases property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getAliases() { + return aliases; + } + + /** + * Sets the value of the aliases property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setAliases(StringArray value) { + this.aliases = value; + } + + /** + * Gets the value of the addresses property. + * + * @return + * possible object is + * {@link ComplianceAddressReferenceArray } + * + */ + public ComplianceAddressReferenceArray getAddresses() { + return addresses; + } + + /** + * Sets the value of the addresses property. + * + * @param value + * allowed object is + * {@link ComplianceAddressReferenceArray } + * + */ + public void setAddresses(ComplianceAddressReferenceArray value) { + this.addresses = value; + } + + /** + * Gets the value of the relatedBusinesses property. + * + * @return + * possible object is + * {@link ComplianceBusinessReferenceArray } + * + */ + public ComplianceBusinessReferenceArray getRelatedBusinesses() { + return relatedBusinesses; + } + + /** + * Sets the value of the relatedBusinesses property. + * + * @param value + * allowed object is + * {@link ComplianceBusinessReferenceArray } + * + */ + public void setRelatedBusinesses(ComplianceBusinessReferenceArray value) { + this.relatedBusinesses = value; + } + + /** + * Gets the value of the relatedPersons property. + * + * @return + * possible object is + * {@link CompliancePersonReferenceArray } + * + */ + public CompliancePersonReferenceArray getRelatedPersons() { + return relatedPersons; + } + + /** + * Sets the value of the relatedPersons property. + * + * @param value + * allowed object is + * {@link CompliancePersonReferenceArray } + * + */ + public void setRelatedPersons(CompliancePersonReferenceArray value) { + this.relatedPersons = value; + } + + /** + * Gets the value of the notes property. + * + * @return + * possible object is + * {@link ComplianceNoteReferenceArray } + * + */ + public ComplianceNoteReferenceArray getNotes() { + return notes; + } + + /** + * Sets the value of the notes property. + * + * @param value + * allowed object is + * {@link ComplianceNoteReferenceArray } + * + */ + public void setNotes(ComplianceNoteReferenceArray value) { + this.notes = value; + } + + /** + * Gets the value of the documents property. + * + * @return + * possible object is + * {@link ComplianceDocumentReferenceArray } + * + */ + public ComplianceDocumentReferenceArray getDocuments() { + return documents; + } + + /** + * Sets the value of the documents property. + * + * @param value + * allowed object is + * {@link ComplianceDocumentReferenceArray } + * + */ + public void setDocuments(ComplianceDocumentReferenceArray value) { + this.documents = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessReference.java new file mode 100644 index 0000000..69d2141 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessReference.java @@ -0,0 +1,124 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ComplianceBusinessReference complex type. + * + *

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

+ * <complexType name="ComplianceBusinessReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="compliance_business_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="relation_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceBusinessReference", propOrder = { + +}) +public class ComplianceBusinessReference { + + @XmlElement(name = "compliance_business_id", required = true) + protected BigInteger complianceBusinessId; + @XmlElement(required = true) + protected String name; + @XmlElement(name = "relation_description") + protected String relationDescription; + + /** + * Gets the value of the complianceBusinessId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getComplianceBusinessId() { + return complianceBusinessId; + } + + /** + * Sets the value of the complianceBusinessId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setComplianceBusinessId(BigInteger value) { + this.complianceBusinessId = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the relationDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRelationDescription() { + return relationDescription; + } + + /** + * Sets the value of the relationDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRelationDescription(String value) { + this.relationDescription = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessReferenceArray.java new file mode 100644 index 0000000..a81851e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ComplianceBusinessReferenceArray complex type. + * + *

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

+ * <complexType name="ComplianceBusinessReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}ComplianceBusinessReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceBusinessReferenceArray", propOrder = { + "item" +}) +public class ComplianceBusinessReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ComplianceBusinessReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReference.java new file mode 100644 index 0000000..7495ba3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReference.java @@ -0,0 +1,177 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ComplianceBusinessSearchReference complex type. + * + *

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

+ * <complexType name="ComplianceBusinessSearchReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="match_score" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="compliance_business_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="flags" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceBusinessSearchReference", propOrder = { + +}) +public class ComplianceBusinessSearchReference { + + @XmlElement(name = "match_score", required = true) + protected BigInteger matchScore; + @XmlElement(name = "compliance_business_id", required = true) + protected BigInteger complianceBusinessId; + @XmlElement(required = true) + protected String name; + protected String country; + @XmlElement(required = true) + protected StringArray flags; + + /** + * Gets the value of the matchScore property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getMatchScore() { + return matchScore; + } + + /** + * Sets the value of the matchScore property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setMatchScore(BigInteger value) { + this.matchScore = value; + } + + /** + * Gets the value of the complianceBusinessId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getComplianceBusinessId() { + return complianceBusinessId; + } + + /** + * Sets the value of the complianceBusinessId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setComplianceBusinessId(BigInteger value) { + this.complianceBusinessId = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the flags property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getFlags() { + return flags; + } + + /** + * Sets the value of the flags property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setFlags(StringArray value) { + this.flags = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReferenceArray.java new file mode 100644 index 0000000..5afcf46 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ComplianceBusinessSearchReferenceArray complex type. + * + *

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

+ * <complexType name="ComplianceBusinessSearchReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}ComplianceBusinessSearchReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceBusinessSearchReferenceArray", propOrder = { + "item" +}) +public class ComplianceBusinessSearchReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ComplianceBusinessSearchReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReferencePagedResult.java new file mode 100644 index 0000000..24f8b19 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReferencePagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ComplianceBusinessSearchReferencePagedResult complex type. + * + *

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

+ * <complexType name="ComplianceBusinessSearchReferencePagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}ComplianceBusinessSearchReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceBusinessSearchReferencePagedResult", propOrder = { + +}) +public class ComplianceBusinessSearchReferencePagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected ComplianceBusinessSearchReferenceArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link ComplianceBusinessSearchReferenceArray } + * + */ + public ComplianceBusinessSearchReferenceArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link ComplianceBusinessSearchReferenceArray } + * + */ + public void setResults(ComplianceBusinessSearchReferenceArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDate.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDate.java new file mode 100644 index 0000000..0891551 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDate.java @@ -0,0 +1,111 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ComplianceDate complex type. + * + *

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

+ * <complexType name="ComplianceDate">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceDate", propOrder = { + +}) +public class ComplianceDate { + + protected int year; + protected Integer month; + protected Integer day; + + /** + * Gets the value of the year property. + * + */ + public int getYear() { + return year; + } + + /** + * Sets the value of the year property. + * + */ + public void setYear(int value) { + this.year = value; + } + + /** + * Gets the value of the month property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMonth() { + return month; + } + + /** + * Sets the value of the month property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMonth(Integer value) { + this.month = value; + } + + /** + * Gets the value of the day property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDay() { + return day; + } + + /** + * Sets the value of the day property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDay(Integer value) { + this.day = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDocumentReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDocumentReference.java new file mode 100644 index 0000000..f85d634 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDocumentReference.java @@ -0,0 +1,153 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for ComplianceDocumentReference complex type. + * + *

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

+ * <complexType name="ComplianceDocumentReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="original_url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="cached_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_collected" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="categories" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceDocumentReference", propOrder = { + +}) +public class ComplianceDocumentReference { + + @XmlElement(name = "original_url") + protected String originalUrl; + @XmlElement(name = "cached_url", required = true) + protected String cachedUrl; + @XmlElement(name = "date_collected") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateCollected; + @XmlElement(required = true) + protected StringArray categories; + + /** + * Gets the value of the originalUrl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOriginalUrl() { + return originalUrl; + } + + /** + * Sets the value of the originalUrl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOriginalUrl(String value) { + this.originalUrl = value; + } + + /** + * Gets the value of the cachedUrl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCachedUrl() { + return cachedUrl; + } + + /** + * Sets the value of the cachedUrl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCachedUrl(String value) { + this.cachedUrl = value; + } + + /** + * Gets the value of the dateCollected property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateCollected() { + return dateCollected; + } + + /** + * Sets the value of the dateCollected property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateCollected(XMLGregorianCalendar value) { + this.dateCollected = value; + } + + /** + * Gets the value of the categories property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getCategories() { + return categories; + } + + /** + * Sets the value of the categories property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setCategories(StringArray value) { + this.categories = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDocumentReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDocumentReferenceArray.java new file mode 100644 index 0000000..cfef167 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDocumentReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ComplianceDocumentReferenceArray complex type. + * + *

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

+ * <complexType name="ComplianceDocumentReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}ComplianceDocumentReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceDocumentReferenceArray", propOrder = { + "item" +}) +public class ComplianceDocumentReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ComplianceDocumentReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetBusinessRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetBusinessRequestType.java new file mode 100644 index 0000000..29ea04e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetBusinessRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for complianceGetBusinessRequestType complex type. + * + *

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

+ * <complexType name="complianceGetBusinessRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="compliance_business_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "complianceGetBusinessRequestType", propOrder = { + +}) +public class ComplianceGetBusinessRequestType { + + @XmlElement(name = "compliance_business_id", required = true) + protected String complianceBusinessId; + + /** + * Gets the value of the complianceBusinessId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getComplianceBusinessId() { + return complianceBusinessId; + } + + /** + * Sets the value of the complianceBusinessId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setComplianceBusinessId(String value) { + this.complianceBusinessId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetBusinessResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetBusinessResponseType.java new file mode 100644 index 0000000..4485076 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetBusinessResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for complianceGetBusinessResponseType complex type. + * + *

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

+ * <complexType name="complianceGetBusinessResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}ComplianceBusiness"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "complianceGetBusinessResponseType", propOrder = { + +}) +public class ComplianceGetBusinessResponseType { + + @XmlElement(required = true) + protected ComplianceBusiness out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link ComplianceBusiness } + * + */ + public ComplianceBusiness getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link ComplianceBusiness } + * + */ + public void setOut(ComplianceBusiness value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetPersonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetPersonRequestType.java new file mode 100644 index 0000000..a931e0d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetPersonRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for complianceGetPersonRequestType complex type. + * + *

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

+ * <complexType name="complianceGetPersonRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="compliance_person_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "complianceGetPersonRequestType", propOrder = { + +}) +public class ComplianceGetPersonRequestType { + + @XmlElement(name = "compliance_person_id", required = true) + protected String compliancePersonId; + + /** + * Gets the value of the compliancePersonId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompliancePersonId() { + return compliancePersonId; + } + + /** + * Sets the value of the compliancePersonId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompliancePersonId(String value) { + this.compliancePersonId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetPersonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetPersonResponseType.java new file mode 100644 index 0000000..9ee4649 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetPersonResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for complianceGetPersonResponseType complex type. + * + *

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

+ * <complexType name="complianceGetPersonResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CompliancePerson"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "complianceGetPersonResponseType", propOrder = { + +}) +public class ComplianceGetPersonResponseType { + + @XmlElement(required = true) + protected CompliancePerson out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CompliancePerson } + * + */ + public CompliancePerson getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CompliancePerson } + * + */ + public void setOut(CompliancePerson value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceNoteReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceNoteReference.java new file mode 100644 index 0000000..f754055 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceNoteReference.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ComplianceNoteReference complex type. + * + *

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

+ * <complexType name="ComplianceNoteReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceNoteReference", propOrder = { + +}) +public class ComplianceNoteReference { + + protected String source; + @XmlElement(required = true) + protected String text; + + /** + * Gets the value of the source property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSource() { + return source; + } + + /** + * Sets the value of the source property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSource(String value) { + this.source = value; + } + + /** + * Gets the value of the text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getText() { + return text; + } + + /** + * Sets the value of the text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setText(String value) { + this.text = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceNoteReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceNoteReferenceArray.java new file mode 100644 index 0000000..566adac --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceNoteReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ComplianceNoteReferenceArray complex type. + * + *

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

+ * <complexType name="ComplianceNoteReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}ComplianceNoteReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceNoteReferenceArray", propOrder = { + "item" +}) +public class ComplianceNoteReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ComplianceNoteReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePerson.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePerson.java new file mode 100644 index 0000000..0fb90c5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePerson.java @@ -0,0 +1,691 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CompliancePerson complex type. + * + *

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

+ * <complexType name="CompliancePerson">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="compliance_person_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="pep_level" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="middle_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="date_of_death" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="deceased" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="nationality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="image_url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="mobile_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="sanctions" type="{http://www.webservices.nl/soap/}ComplianceSanctionReferenceArray"/>
+ *         <element name="flags" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="aliases" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="addresses" type="{http://www.webservices.nl/soap/}ComplianceAddressReferenceArray"/>
+ *         <element name="roles" type="{http://www.webservices.nl/soap/}ComplianceRoleReferenceArray"/>
+ *         <element name="related_businesses" type="{http://www.webservices.nl/soap/}ComplianceBusinessReferenceArray"/>
+ *         <element name="related_persons" type="{http://www.webservices.nl/soap/}CompliancePersonReferenceArray"/>
+ *         <element name="notes" type="{http://www.webservices.nl/soap/}ComplianceNoteReferenceArray"/>
+ *         <element name="documents" type="{http://www.webservices.nl/soap/}ComplianceDocumentReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CompliancePerson", propOrder = { + +}) +public class CompliancePerson { + + @XmlElement(name = "compliance_person_id", required = true) + protected BigInteger compliancePersonId; + @XmlElement(name = "pep_level") + protected BigInteger pepLevel; + @XmlElement(name = "first_name") + protected String firstName; + @XmlElement(name = "middle_name") + protected String middleName; + @XmlElement(name = "last_name", required = true) + protected String lastName; + protected String gender; + @XmlElement(name = "date_of_birth") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateOfBirth; + @XmlElement(name = "date_of_death") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateOfDeath; + protected Boolean deceased; + protected String nationality; + @XmlElement(name = "image_url") + protected String imageUrl; + @XmlElement(name = "telephone_number") + protected String telephoneNumber; + @XmlElement(name = "fax_number") + protected String faxNumber; + @XmlElement(name = "mobile_number") + protected String mobileNumber; + protected String email; + @XmlElement(required = true) + protected ComplianceSanctionReferenceArray sanctions; + @XmlElement(required = true) + protected StringArray flags; + @XmlElement(required = true) + protected StringArray aliases; + @XmlElement(required = true) + protected ComplianceAddressReferenceArray addresses; + @XmlElement(required = true) + protected ComplianceRoleReferenceArray roles; + @XmlElement(name = "related_businesses", required = true) + protected ComplianceBusinessReferenceArray relatedBusinesses; + @XmlElement(name = "related_persons", required = true) + protected CompliancePersonReferenceArray relatedPersons; + @XmlElement(required = true) + protected ComplianceNoteReferenceArray notes; + @XmlElement(required = true) + protected ComplianceDocumentReferenceArray documents; + + /** + * Gets the value of the compliancePersonId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getCompliancePersonId() { + return compliancePersonId; + } + + /** + * Sets the value of the compliancePersonId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setCompliancePersonId(BigInteger value) { + this.compliancePersonId = value; + } + + /** + * Gets the value of the pepLevel property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getPepLevel() { + return pepLevel; + } + + /** + * Sets the value of the pepLevel property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setPepLevel(BigInteger value) { + this.pepLevel = value; + } + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the middleName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMiddleName() { + return middleName; + } + + /** + * Sets the value of the middleName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMiddleName(String value) { + this.middleName = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the gender property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGender() { + return gender; + } + + /** + * Sets the value of the gender property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGender(String value) { + this.gender = value; + } + + /** + * Gets the value of the dateOfBirth property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfBirth() { + return dateOfBirth; + } + + /** + * Sets the value of the dateOfBirth property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfBirth(XMLGregorianCalendar value) { + this.dateOfBirth = value; + } + + /** + * Gets the value of the dateOfDeath property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfDeath() { + return dateOfDeath; + } + + /** + * Sets the value of the dateOfDeath property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfDeath(XMLGregorianCalendar value) { + this.dateOfDeath = value; + } + + /** + * Gets the value of the deceased property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isDeceased() { + return deceased; + } + + /** + * Sets the value of the deceased property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setDeceased(Boolean value) { + this.deceased = value; + } + + /** + * Gets the value of the nationality property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNationality() { + return nationality; + } + + /** + * Sets the value of the nationality property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNationality(String value) { + this.nationality = value; + } + + /** + * Gets the value of the imageUrl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getImageUrl() { + return imageUrl; + } + + /** + * Sets the value of the imageUrl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setImageUrl(String value) { + this.imageUrl = value; + } + + /** + * Gets the value of the telephoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNumber() { + return telephoneNumber; + } + + /** + * Sets the value of the telephoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNumber(String value) { + this.telephoneNumber = value; + } + + /** + * Gets the value of the faxNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFaxNumber() { + return faxNumber; + } + + /** + * Sets the value of the faxNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFaxNumber(String value) { + this.faxNumber = value; + } + + /** + * Gets the value of the mobileNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMobileNumber() { + return mobileNumber; + } + + /** + * Sets the value of the mobileNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMobileNumber(String value) { + this.mobileNumber = value; + } + + /** + * Gets the value of the email property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmail() { + return email; + } + + /** + * Sets the value of the email property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmail(String value) { + this.email = value; + } + + /** + * Gets the value of the sanctions property. + * + * @return + * possible object is + * {@link ComplianceSanctionReferenceArray } + * + */ + public ComplianceSanctionReferenceArray getSanctions() { + return sanctions; + } + + /** + * Sets the value of the sanctions property. + * + * @param value + * allowed object is + * {@link ComplianceSanctionReferenceArray } + * + */ + public void setSanctions(ComplianceSanctionReferenceArray value) { + this.sanctions = value; + } + + /** + * Gets the value of the flags property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getFlags() { + return flags; + } + + /** + * Sets the value of the flags property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setFlags(StringArray value) { + this.flags = value; + } + + /** + * Gets the value of the aliases property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getAliases() { + return aliases; + } + + /** + * Sets the value of the aliases property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setAliases(StringArray value) { + this.aliases = value; + } + + /** + * Gets the value of the addresses property. + * + * @return + * possible object is + * {@link ComplianceAddressReferenceArray } + * + */ + public ComplianceAddressReferenceArray getAddresses() { + return addresses; + } + + /** + * Sets the value of the addresses property. + * + * @param value + * allowed object is + * {@link ComplianceAddressReferenceArray } + * + */ + public void setAddresses(ComplianceAddressReferenceArray value) { + this.addresses = value; + } + + /** + * Gets the value of the roles property. + * + * @return + * possible object is + * {@link ComplianceRoleReferenceArray } + * + */ + public ComplianceRoleReferenceArray getRoles() { + return roles; + } + + /** + * Sets the value of the roles property. + * + * @param value + * allowed object is + * {@link ComplianceRoleReferenceArray } + * + */ + public void setRoles(ComplianceRoleReferenceArray value) { + this.roles = value; + } + + /** + * Gets the value of the relatedBusinesses property. + * + * @return + * possible object is + * {@link ComplianceBusinessReferenceArray } + * + */ + public ComplianceBusinessReferenceArray getRelatedBusinesses() { + return relatedBusinesses; + } + + /** + * Sets the value of the relatedBusinesses property. + * + * @param value + * allowed object is + * {@link ComplianceBusinessReferenceArray } + * + */ + public void setRelatedBusinesses(ComplianceBusinessReferenceArray value) { + this.relatedBusinesses = value; + } + + /** + * Gets the value of the relatedPersons property. + * + * @return + * possible object is + * {@link CompliancePersonReferenceArray } + * + */ + public CompliancePersonReferenceArray getRelatedPersons() { + return relatedPersons; + } + + /** + * Sets the value of the relatedPersons property. + * + * @param value + * allowed object is + * {@link CompliancePersonReferenceArray } + * + */ + public void setRelatedPersons(CompliancePersonReferenceArray value) { + this.relatedPersons = value; + } + + /** + * Gets the value of the notes property. + * + * @return + * possible object is + * {@link ComplianceNoteReferenceArray } + * + */ + public ComplianceNoteReferenceArray getNotes() { + return notes; + } + + /** + * Sets the value of the notes property. + * + * @param value + * allowed object is + * {@link ComplianceNoteReferenceArray } + * + */ + public void setNotes(ComplianceNoteReferenceArray value) { + this.notes = value; + } + + /** + * Gets the value of the documents property. + * + * @return + * possible object is + * {@link ComplianceDocumentReferenceArray } + * + */ + public ComplianceDocumentReferenceArray getDocuments() { + return documents; + } + + /** + * Sets the value of the documents property. + * + * @param value + * allowed object is + * {@link ComplianceDocumentReferenceArray } + * + */ + public void setDocuments(ComplianceDocumentReferenceArray value) { + this.documents = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonReference.java new file mode 100644 index 0000000..65772ca --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonReference.java @@ -0,0 +1,181 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CompliancePersonReference complex type. + * + *

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

+ * <complexType name="CompliancePersonReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="compliance_person_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="relation_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CompliancePersonReference", propOrder = { + +}) +public class CompliancePersonReference { + + @XmlElement(name = "compliance_person_id", required = true) + protected BigInteger compliancePersonId; + @XmlElement(name = "first_name") + protected String firstName; + @XmlElement(name = "last_name", required = true) + protected String lastName; + @XmlElement(name = "date_of_birth") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateOfBirth; + @XmlElement(name = "relation_description") + protected String relationDescription; + + /** + * Gets the value of the compliancePersonId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getCompliancePersonId() { + return compliancePersonId; + } + + /** + * Sets the value of the compliancePersonId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setCompliancePersonId(BigInteger value) { + this.compliancePersonId = value; + } + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the dateOfBirth property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfBirth() { + return dateOfBirth; + } + + /** + * Sets the value of the dateOfBirth property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfBirth(XMLGregorianCalendar value) { + this.dateOfBirth = value; + } + + /** + * Gets the value of the relationDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRelationDescription() { + return relationDescription; + } + + /** + * Sets the value of the relationDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRelationDescription(String value) { + this.relationDescription = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonReferenceArray.java new file mode 100644 index 0000000..aea14d8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CompliancePersonReferenceArray complex type. + * + *

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

+ * <complexType name="CompliancePersonReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CompliancePersonReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CompliancePersonReferenceArray", propOrder = { + "item" +}) +public class CompliancePersonReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CompliancePersonReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReference.java new file mode 100644 index 0000000..763ba4a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReference.java @@ -0,0 +1,234 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CompliancePersonSearchReference complex type. + * + *

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

+ * <complexType name="CompliancePersonSearchReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="match_score" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="compliance_person_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="nationality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="flags" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CompliancePersonSearchReference", propOrder = { + +}) +public class CompliancePersonSearchReference { + + @XmlElement(name = "match_score", required = true) + protected BigInteger matchScore; + @XmlElement(name = "compliance_person_id", required = true) + protected BigInteger compliancePersonId; + @XmlElement(name = "first_name") + protected String firstName; + @XmlElement(name = "last_name", required = true) + protected String lastName; + @XmlElement(name = "date_of_birth") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateOfBirth; + protected String nationality; + @XmlElement(required = true) + protected StringArray flags; + + /** + * Gets the value of the matchScore property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getMatchScore() { + return matchScore; + } + + /** + * Sets the value of the matchScore property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setMatchScore(BigInteger value) { + this.matchScore = value; + } + + /** + * Gets the value of the compliancePersonId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getCompliancePersonId() { + return compliancePersonId; + } + + /** + * Sets the value of the compliancePersonId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setCompliancePersonId(BigInteger value) { + this.compliancePersonId = value; + } + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the dateOfBirth property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfBirth() { + return dateOfBirth; + } + + /** + * Sets the value of the dateOfBirth property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfBirth(XMLGregorianCalendar value) { + this.dateOfBirth = value; + } + + /** + * Gets the value of the nationality property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNationality() { + return nationality; + } + + /** + * Sets the value of the nationality property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNationality(String value) { + this.nationality = value; + } + + /** + * Gets the value of the flags property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getFlags() { + return flags; + } + + /** + * Sets the value of the flags property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setFlags(StringArray value) { + this.flags = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReferenceArray.java new file mode 100644 index 0000000..b773064 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CompliancePersonSearchReferenceArray complex type. + * + *

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

+ * <complexType name="CompliancePersonSearchReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CompliancePersonSearchReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CompliancePersonSearchReferenceArray", propOrder = { + "item" +}) +public class CompliancePersonSearchReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CompliancePersonSearchReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReferencePagedResult.java new file mode 100644 index 0000000..0f10b54 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReferencePagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CompliancePersonSearchReferencePagedResult complex type. + * + *

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

+ * <complexType name="CompliancePersonSearchReferencePagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}CompliancePersonSearchReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CompliancePersonSearchReferencePagedResult", propOrder = { + +}) +public class CompliancePersonSearchReferencePagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected CompliancePersonSearchReferenceArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link CompliancePersonSearchReferenceArray } + * + */ + public CompliancePersonSearchReferenceArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link CompliancePersonSearchReferenceArray } + * + */ + public void setResults(CompliancePersonSearchReferenceArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceRoleReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceRoleReference.java new file mode 100644 index 0000000..a22c93d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceRoleReference.java @@ -0,0 +1,149 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ComplianceRoleReference complex type. + * + *

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

+ * <complexType name="ComplianceRoleReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="role" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="start_date" type="{http://www.webservices.nl/soap/}ComplianceDate" minOccurs="0"/>
+ *         <element name="end_date" type="{http://www.webservices.nl/soap/}ComplianceDate" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceRoleReference", propOrder = { + +}) +public class ComplianceRoleReference { + + @XmlElement(required = true) + protected String role; + protected String country; + @XmlElement(name = "start_date") + protected ComplianceDate startDate; + @XmlElement(name = "end_date") + protected ComplianceDate endDate; + + /** + * Gets the value of the role property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRole() { + return role; + } + + /** + * Sets the value of the role property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRole(String value) { + this.role = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the startDate property. + * + * @return + * possible object is + * {@link ComplianceDate } + * + */ + public ComplianceDate getStartDate() { + return startDate; + } + + /** + * Sets the value of the startDate property. + * + * @param value + * allowed object is + * {@link ComplianceDate } + * + */ + public void setStartDate(ComplianceDate value) { + this.startDate = value; + } + + /** + * Gets the value of the endDate property. + * + * @return + * possible object is + * {@link ComplianceDate } + * + */ + public ComplianceDate getEndDate() { + return endDate; + } + + /** + * Sets the value of the endDate property. + * + * @param value + * allowed object is + * {@link ComplianceDate } + * + */ + public void setEndDate(ComplianceDate value) { + this.endDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceRoleReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceRoleReferenceArray.java new file mode 100644 index 0000000..8fc1a48 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceRoleReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ComplianceRoleReferenceArray complex type. + * + *

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

+ * <complexType name="ComplianceRoleReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}ComplianceRoleReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceRoleReferenceArray", propOrder = { + "item" +}) +public class ComplianceRoleReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ComplianceRoleReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSanctionReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSanctionReference.java new file mode 100644 index 0000000..fee7806 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSanctionReference.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ComplianceSanctionReference complex type. + * + *

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

+ * <complexType name="ComplianceSanctionReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="organisation" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceSanctionReference", propOrder = { + +}) +public class ComplianceSanctionReference { + + @XmlElement(required = true) + protected String organisation; + protected boolean active; + + /** + * Gets the value of the organisation property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOrganisation() { + return organisation; + } + + /** + * Sets the value of the organisation property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOrganisation(String value) { + this.organisation = value; + } + + /** + * Gets the value of the active property. + * + */ + public boolean isActive() { + return active; + } + + /** + * Sets the value of the active property. + * + */ + public void setActive(boolean value) { + this.active = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSanctionReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSanctionReferenceArray.java new file mode 100644 index 0000000..434e81f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSanctionReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ComplianceSanctionReferenceArray complex type. + * + *

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

+ * <complexType name="ComplianceSanctionReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}ComplianceSanctionReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ComplianceSanctionReferenceArray", propOrder = { + "item" +}) +public class ComplianceSanctionReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link ComplianceSanctionReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchBusinessesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchBusinessesRequestType.java new file mode 100644 index 0000000..751dff9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchBusinessesRequestType.java @@ -0,0 +1,241 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for complianceSearchBusinessesRequestType complex type. + * + *

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

+ * <complexType name="complianceSearchBusinessesRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="business_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="postal_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="county" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "complianceSearchBusinessesRequestType", propOrder = { + +}) +public class ComplianceSearchBusinessesRequestType { + + @XmlElement(name = "business_name", required = true) + protected String businessName; + @XmlElement(required = true) + protected String street; + @XmlElement(name = "house_number") + protected int houseNumber; + @XmlElement(name = "postal_code", required = true) + protected String postalCode; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String county; + @XmlElement(required = true) + protected String country; + protected int page; + + /** + * Gets the value of the businessName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBusinessName() { + return businessName; + } + + /** + * Sets the value of the businessName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBusinessName(String value) { + this.businessName = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNumber property. + * + */ + public int getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + */ + public void setHouseNumber(int value) { + this.houseNumber = value; + } + + /** + * Gets the value of the postalCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostalCode() { + return postalCode; + } + + /** + * Sets the value of the postalCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostalCode(String value) { + this.postalCode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the county property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCounty() { + return county; + } + + /** + * Sets the value of the county property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCounty(String value) { + this.county = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchBusinessesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchBusinessesResponseType.java new file mode 100644 index 0000000..7ed0745 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchBusinessesResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for complianceSearchBusinessesResponseType complex type. + * + *

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

+ * <complexType name="complianceSearchBusinessesResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}ComplianceBusinessSearchReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "complianceSearchBusinessesResponseType", propOrder = { + +}) +public class ComplianceSearchBusinessesResponseType { + + @XmlElement(required = true) + protected ComplianceBusinessSearchReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link ComplianceBusinessSearchReferencePagedResult } + * + */ + public ComplianceBusinessSearchReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link ComplianceBusinessSearchReferencePagedResult } + * + */ + public void setOut(ComplianceBusinessSearchReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchPersonsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchPersonsRequestType.java new file mode 100644 index 0000000..2c0852d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchPersonsRequestType.java @@ -0,0 +1,144 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for complianceSearchPersonsRequestType complex type. + * + *

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

+ * <complexType name="complianceSearchPersonsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "complianceSearchPersonsRequestType", propOrder = { + +}) +public class ComplianceSearchPersonsRequestType { + + @XmlElement(name = "first_name", required = true) + protected String firstName; + @XmlElement(name = "last_name", required = true) + protected String lastName; + @XmlElement(name = "date_of_birth", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateOfBirth; + protected int page; + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the dateOfBirth property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfBirth() { + return dateOfBirth; + } + + /** + * Sets the value of the dateOfBirth property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfBirth(XMLGregorianCalendar value) { + this.dateOfBirth = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchPersonsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchPersonsResponseType.java new file mode 100644 index 0000000..9da1edc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchPersonsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for complianceSearchPersonsResponseType complex type. + * + *

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

+ * <complexType name="complianceSearchPersonsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CompliancePersonSearchReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "complianceSearchPersonsResponseType", propOrder = { + +}) +public class ComplianceSearchPersonsResponseType { + + @XmlElement(required = true) + protected CompliancePersonSearchReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CompliancePersonSearchReferencePagedResult } + * + */ + public CompliancePersonSearchReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CompliancePersonSearchReferencePagedResult } + * + */ + public void setOut(CompliancePersonSearchReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreateTestUserRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreateTestUserRequestType.java new file mode 100644 index 0000000..6d79bcf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreateTestUserRequestType.java @@ -0,0 +1,177 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for createTestUserRequestType complex type. + * + *

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

+ * <complexType name="createTestUserRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="application" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="companyname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "createTestUserRequestType", propOrder = { + +}) +public class CreateTestUserRequestType { + + @XmlElement(required = true) + protected String application; + @XmlElement(required = true) + protected String email; + @XmlElement(required = true) + protected String companyname; + @XmlElement(required = true) + protected String contactname; + @XmlElement(required = true) + protected String telephone; + + /** + * Gets the value of the application property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getApplication() { + return application; + } + + /** + * Sets the value of the application property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setApplication(String value) { + this.application = value; + } + + /** + * Gets the value of the email property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmail() { + return email; + } + + /** + * Sets the value of the email property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmail(String value) { + this.email = value; + } + + /** + * Gets the value of the companyname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyname() { + return companyname; + } + + /** + * Sets the value of the companyname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyname(String value) { + this.companyname = value; + } + + /** + * Gets the value of the contactname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactname() { + return contactname; + } + + /** + * Sets the value of the contactname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactname(String value) { + this.contactname = value; + } + + /** + * Gets the value of the telephone property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephone() { + return telephone; + } + + /** + * Sets the value of the telephone property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephone(String value) { + this.telephone = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreateTestUserResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreateTestUserResponseType.java new file mode 100644 index 0000000..c979efb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreateTestUserResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for createTestUserResponseType complex type. + * + *

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

+ * <complexType name="createTestUserResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="user_credentials" type="{http://www.webservices.nl/soap/}UserCredentials"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "createTestUserResponseType", propOrder = { + +}) +public class CreateTestUserResponseType { + + @XmlElement(name = "user_credentials", required = true) + protected UserCredentials userCredentials; + + /** + * Gets the value of the userCredentials property. + * + * @return + * possible object is + * {@link UserCredentials } + * + */ + public UserCredentials getUserCredentials() { + return userCredentials; + } + + /** + * Sets the value of the userCredentials property. + * + * @param value + * allowed object is + * {@link UserCredentials } + * + */ + public void setUserCredentials(UserCredentials value) { + this.userCredentials = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdditionalInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdditionalInformation.java new file mode 100644 index 0000000..ac27dc4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdditionalInformation.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeAdditionalInformation complex type. + * + *

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

+ * <complexType name="CreditsafeAdditionalInformation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nl" type="{http://www.webservices.nl/soap/}CreditsafeNlAdditionalInformation" minOccurs="0"/>
+ *         <element name="be" type="{http://www.webservices.nl/soap/}CreditsafeBeAdditionalInformation" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeAdditionalInformation", propOrder = { + +}) +public class CreditsafeAdditionalInformation { + + protected CreditsafeNlAdditionalInformation nl; + protected CreditsafeBeAdditionalInformation be; + + /** + * Gets the value of the nl property. + * + * @return + * possible object is + * {@link CreditsafeNlAdditionalInformation } + * + */ + public CreditsafeNlAdditionalInformation getNl() { + return nl; + } + + /** + * Sets the value of the nl property. + * + * @param value + * allowed object is + * {@link CreditsafeNlAdditionalInformation } + * + */ + public void setNl(CreditsafeNlAdditionalInformation value) { + this.nl = value; + } + + /** + * Gets the value of the be property. + * + * @return + * possible object is + * {@link CreditsafeBeAdditionalInformation } + * + */ + public CreditsafeBeAdditionalInformation getBe() { + return be; + } + + /** + * Sets the value of the be property. + * + * @param value + * allowed object is + * {@link CreditsafeBeAdditionalInformation } + * + */ + public void setBe(CreditsafeBeAdditionalInformation value) { + this.be = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAddressV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAddressV2.java new file mode 100644 index 0000000..88117e7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAddressV2.java @@ -0,0 +1,227 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeAddressV2 complex type. + * + *

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

+ * <complexType name="CreditsafeAddressV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="full_address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="postal_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeAddressV2", propOrder = { + +}) +public class CreditsafeAddressV2 { + + protected String city; + protected String country; + @XmlElement(name = "full_address") + protected String fullAddress; + @XmlElement(name = "house_number") + protected String houseNumber; + @XmlElement(name = "postal_code") + protected String postalCode; + protected String street; + protected String telephone; + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the fullAddress property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFullAddress() { + return fullAddress; + } + + /** + * Sets the value of the fullAddress property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFullAddress(String value) { + this.fullAddress = value; + } + + /** + * Gets the value of the houseNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNumber(String value) { + this.houseNumber = value; + } + + /** + * Gets the value of the postalCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostalCode() { + return postalCode; + } + + /** + * Sets the value of the postalCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostalCode(String value) { + this.postalCode = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the telephone property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephone() { + return telephone; + } + + /** + * Sets the value of the telephone property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephone(String value) { + this.telephone = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAddressV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAddressV2Array.java new file mode 100644 index 0000000..55dcdc8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAddressV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeAddressV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeAddressV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeAddressV2Array", propOrder = { + "item" +}) +public class CreditsafeAddressV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeAddressV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdvisor.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdvisor.java new file mode 100644 index 0000000..2b30afe --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdvisor.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeAdvisor complex type. + * + *

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

+ * <complexType name="CreditsafeAdvisor">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="auditor_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="solicitor_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeAdvisor", propOrder = { + +}) +public class CreditsafeAdvisor { + + @XmlElement(name = "auditor_name") + protected String auditorName; + @XmlElement(name = "solicitor_name") + protected String solicitorName; + + /** + * Gets the value of the auditorName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAuditorName() { + return auditorName; + } + + /** + * Sets the value of the auditorName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAuditorName(String value) { + this.auditorName = value; + } + + /** + * Gets the value of the solicitorName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSolicitorName() { + return solicitorName; + } + + /** + * Sets the value of the solicitorName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSolicitorName(String value) { + this.solicitorName = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdvisorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdvisorArray.java new file mode 100644 index 0000000..8b39651 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdvisorArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeAdvisorArray complex type. + * + *

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

+ * <complexType name="CreditsafeAdvisorArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeAdvisor" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeAdvisorArray", propOrder = { + "item" +}) +public class CreditsafeAdvisorArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeAdvisor } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBalanceSheet.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBalanceSheet.java new file mode 100644 index 0000000..cb4c57c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBalanceSheet.java @@ -0,0 +1,1359 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeBalanceSheet complex type. + * + *

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

+ * <complexType name="CreditsafeBalanceSheet">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="year_end_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="number_of_weeks" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
+ *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="consolidated_accounts" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="land_and_buildings" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="plant_and_machinery" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="other_tangible_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="total_tangible_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="goodwill" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="other_intangible_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="total_intangible_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="investments" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="loans_to_group" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="other_loans" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="miscellaneous_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="total_other_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="total_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="raw_materials" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="work_in_progress" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="finished_goods" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="other_inventories" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="total_inventories" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="trade_receivables" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="group_receivables" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="receivables_due_after1year" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="miscellaneous_receivables" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="total_receivables" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="cash" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="other_current_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="total_current_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="total_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="trade_payables" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="bank_liabilities" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="other_loans_or_finance" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="group_payables" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="miscellaneous_liabilities" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="total_current_liabilities" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="trade_payables_due_after1year" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="bank_liabilities_due_after1year" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="other_loans_or_finance_due_after1year" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="group_payables_due_after1year" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="miscellaneous_liabilities_due_after1year" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="total_long_term_liabilities" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="total_liabilities" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="called_up_share_capital" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="share_premium" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="revenue_reserves" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="other_reserves" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="total_shareholders_equity" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBalanceSheet", propOrder = { + +}) +public class CreditsafeBalanceSheet { + + @XmlElement(name = "year_end_date", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar yearEndDate; + @XmlElement(name = "number_of_weeks") + @XmlSchemaType(name = "unsignedInt") + protected long numberOfWeeks; + @XmlElement(required = true) + protected String currency; + @XmlElement(name = "consolidated_accounts") + protected Boolean consolidatedAccounts; + @XmlElement(name = "land_and_buildings") + protected BigDecimal landAndBuildings; + @XmlElement(name = "plant_and_machinery") + protected BigDecimal plantAndMachinery; + @XmlElement(name = "other_tangible_assets") + protected BigDecimal otherTangibleAssets; + @XmlElement(name = "total_tangible_assets") + protected BigDecimal totalTangibleAssets; + protected BigDecimal goodwill; + @XmlElement(name = "other_intangible_assets") + protected BigDecimal otherIntangibleAssets; + @XmlElement(name = "total_intangible_assets") + protected BigDecimal totalIntangibleAssets; + protected BigDecimal investments; + @XmlElement(name = "loans_to_group") + protected BigDecimal loansToGroup; + @XmlElement(name = "other_loans") + protected BigDecimal otherLoans; + @XmlElement(name = "miscellaneous_fixed_assets") + protected BigDecimal miscellaneousFixedAssets; + @XmlElement(name = "total_other_fixed_assets") + protected BigDecimal totalOtherFixedAssets; + @XmlElement(name = "total_fixed_assets") + protected BigDecimal totalFixedAssets; + @XmlElement(name = "raw_materials") + protected BigDecimal rawMaterials; + @XmlElement(name = "work_in_progress") + protected BigDecimal workInProgress; + @XmlElement(name = "finished_goods") + protected BigDecimal finishedGoods; + @XmlElement(name = "other_inventories") + protected BigDecimal otherInventories; + @XmlElement(name = "total_inventories") + protected BigDecimal totalInventories; + @XmlElement(name = "trade_receivables") + protected BigDecimal tradeReceivables; + @XmlElement(name = "group_receivables") + protected BigDecimal groupReceivables; + @XmlElement(name = "receivables_due_after1year") + protected BigDecimal receivablesDueAfter1Year; + @XmlElement(name = "miscellaneous_receivables") + protected BigDecimal miscellaneousReceivables; + @XmlElement(name = "total_receivables") + protected BigDecimal totalReceivables; + protected BigDecimal cash; + @XmlElement(name = "other_current_assets") + protected BigDecimal otherCurrentAssets; + @XmlElement(name = "total_current_assets") + protected BigDecimal totalCurrentAssets; + @XmlElement(name = "total_assets") + protected BigDecimal totalAssets; + @XmlElement(name = "trade_payables") + protected BigDecimal tradePayables; + @XmlElement(name = "bank_liabilities") + protected BigDecimal bankLiabilities; + @XmlElement(name = "other_loans_or_finance") + protected BigDecimal otherLoansOrFinance; + @XmlElement(name = "group_payables") + protected BigDecimal groupPayables; + @XmlElement(name = "miscellaneous_liabilities") + protected BigDecimal miscellaneousLiabilities; + @XmlElement(name = "total_current_liabilities") + protected BigDecimal totalCurrentLiabilities; + @XmlElement(name = "trade_payables_due_after1year") + protected BigDecimal tradePayablesDueAfter1Year; + @XmlElement(name = "bank_liabilities_due_after1year") + protected BigDecimal bankLiabilitiesDueAfter1Year; + @XmlElement(name = "other_loans_or_finance_due_after1year") + protected BigDecimal otherLoansOrFinanceDueAfter1Year; + @XmlElement(name = "group_payables_due_after1year") + protected BigDecimal groupPayablesDueAfter1Year; + @XmlElement(name = "miscellaneous_liabilities_due_after1year") + protected BigDecimal miscellaneousLiabilitiesDueAfter1Year; + @XmlElement(name = "total_long_term_liabilities") + protected BigDecimal totalLongTermLiabilities; + @XmlElement(name = "total_liabilities") + protected BigDecimal totalLiabilities; + @XmlElement(name = "called_up_share_capital") + protected BigDecimal calledUpShareCapital; + @XmlElement(name = "share_premium") + protected BigDecimal sharePremium; + @XmlElement(name = "revenue_reserves") + protected BigDecimal revenueReserves; + @XmlElement(name = "other_reserves") + protected BigDecimal otherReserves; + @XmlElement(name = "total_shareholders_equity") + protected BigDecimal totalShareholdersEquity; + + /** + * Gets the value of the yearEndDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getYearEndDate() { + return yearEndDate; + } + + /** + * Sets the value of the yearEndDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setYearEndDate(XMLGregorianCalendar value) { + this.yearEndDate = value; + } + + /** + * Gets the value of the numberOfWeeks property. + * + */ + public long getNumberOfWeeks() { + return numberOfWeeks; + } + + /** + * Sets the value of the numberOfWeeks property. + * + */ + public void setNumberOfWeeks(long value) { + this.numberOfWeeks = value; + } + + /** + * Gets the value of the currency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCurrency() { + return currency; + } + + /** + * Sets the value of the currency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCurrency(String value) { + this.currency = value; + } + + /** + * Gets the value of the consolidatedAccounts property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isConsolidatedAccounts() { + return consolidatedAccounts; + } + + /** + * Sets the value of the consolidatedAccounts property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setConsolidatedAccounts(Boolean value) { + this.consolidatedAccounts = value; + } + + /** + * Gets the value of the landAndBuildings property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getLandAndBuildings() { + return landAndBuildings; + } + + /** + * Sets the value of the landAndBuildings property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setLandAndBuildings(BigDecimal value) { + this.landAndBuildings = value; + } + + /** + * Gets the value of the plantAndMachinery property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPlantAndMachinery() { + return plantAndMachinery; + } + + /** + * Sets the value of the plantAndMachinery property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPlantAndMachinery(BigDecimal value) { + this.plantAndMachinery = value; + } + + /** + * Gets the value of the otherTangibleAssets property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getOtherTangibleAssets() { + return otherTangibleAssets; + } + + /** + * Sets the value of the otherTangibleAssets property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setOtherTangibleAssets(BigDecimal value) { + this.otherTangibleAssets = value; + } + + /** + * Gets the value of the totalTangibleAssets property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTotalTangibleAssets() { + return totalTangibleAssets; + } + + /** + * Sets the value of the totalTangibleAssets property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTotalTangibleAssets(BigDecimal value) { + this.totalTangibleAssets = value; + } + + /** + * Gets the value of the goodwill property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getGoodwill() { + return goodwill; + } + + /** + * Sets the value of the goodwill property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setGoodwill(BigDecimal value) { + this.goodwill = value; + } + + /** + * Gets the value of the otherIntangibleAssets property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getOtherIntangibleAssets() { + return otherIntangibleAssets; + } + + /** + * Sets the value of the otherIntangibleAssets property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setOtherIntangibleAssets(BigDecimal value) { + this.otherIntangibleAssets = value; + } + + /** + * Gets the value of the totalIntangibleAssets property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTotalIntangibleAssets() { + return totalIntangibleAssets; + } + + /** + * Sets the value of the totalIntangibleAssets property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTotalIntangibleAssets(BigDecimal value) { + this.totalIntangibleAssets = value; + } + + /** + * Gets the value of the investments property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getInvestments() { + return investments; + } + + /** + * Sets the value of the investments property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setInvestments(BigDecimal value) { + this.investments = value; + } + + /** + * Gets the value of the loansToGroup property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getLoansToGroup() { + return loansToGroup; + } + + /** + * Sets the value of the loansToGroup property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setLoansToGroup(BigDecimal value) { + this.loansToGroup = value; + } + + /** + * Gets the value of the otherLoans property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getOtherLoans() { + return otherLoans; + } + + /** + * Sets the value of the otherLoans property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setOtherLoans(BigDecimal value) { + this.otherLoans = value; + } + + /** + * Gets the value of the miscellaneousFixedAssets property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getMiscellaneousFixedAssets() { + return miscellaneousFixedAssets; + } + + /** + * Sets the value of the miscellaneousFixedAssets property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setMiscellaneousFixedAssets(BigDecimal value) { + this.miscellaneousFixedAssets = value; + } + + /** + * Gets the value of the totalOtherFixedAssets property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTotalOtherFixedAssets() { + return totalOtherFixedAssets; + } + + /** + * Sets the value of the totalOtherFixedAssets property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTotalOtherFixedAssets(BigDecimal value) { + this.totalOtherFixedAssets = value; + } + + /** + * Gets the value of the totalFixedAssets property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTotalFixedAssets() { + return totalFixedAssets; + } + + /** + * Sets the value of the totalFixedAssets property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTotalFixedAssets(BigDecimal value) { + this.totalFixedAssets = value; + } + + /** + * Gets the value of the rawMaterials property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getRawMaterials() { + return rawMaterials; + } + + /** + * Sets the value of the rawMaterials property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setRawMaterials(BigDecimal value) { + this.rawMaterials = value; + } + + /** + * Gets the value of the workInProgress property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getWorkInProgress() { + return workInProgress; + } + + /** + * Sets the value of the workInProgress property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setWorkInProgress(BigDecimal value) { + this.workInProgress = value; + } + + /** + * Gets the value of the finishedGoods property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getFinishedGoods() { + return finishedGoods; + } + + /** + * Sets the value of the finishedGoods property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setFinishedGoods(BigDecimal value) { + this.finishedGoods = value; + } + + /** + * Gets the value of the otherInventories property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getOtherInventories() { + return otherInventories; + } + + /** + * Sets the value of the otherInventories property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setOtherInventories(BigDecimal value) { + this.otherInventories = value; + } + + /** + * Gets the value of the totalInventories property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTotalInventories() { + return totalInventories; + } + + /** + * Sets the value of the totalInventories property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTotalInventories(BigDecimal value) { + this.totalInventories = value; + } + + /** + * Gets the value of the tradeReceivables property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTradeReceivables() { + return tradeReceivables; + } + + /** + * Sets the value of the tradeReceivables property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTradeReceivables(BigDecimal value) { + this.tradeReceivables = value; + } + + /** + * Gets the value of the groupReceivables property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getGroupReceivables() { + return groupReceivables; + } + + /** + * Sets the value of the groupReceivables property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setGroupReceivables(BigDecimal value) { + this.groupReceivables = value; + } + + /** + * Gets the value of the receivablesDueAfter1Year property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getReceivablesDueAfter1Year() { + return receivablesDueAfter1Year; + } + + /** + * Sets the value of the receivablesDueAfter1Year property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setReceivablesDueAfter1Year(BigDecimal value) { + this.receivablesDueAfter1Year = value; + } + + /** + * Gets the value of the miscellaneousReceivables property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getMiscellaneousReceivables() { + return miscellaneousReceivables; + } + + /** + * Sets the value of the miscellaneousReceivables property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setMiscellaneousReceivables(BigDecimal value) { + this.miscellaneousReceivables = value; + } + + /** + * Gets the value of the totalReceivables property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTotalReceivables() { + return totalReceivables; + } + + /** + * Sets the value of the totalReceivables property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTotalReceivables(BigDecimal value) { + this.totalReceivables = value; + } + + /** + * Gets the value of the cash property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getCash() { + return cash; + } + + /** + * Sets the value of the cash property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setCash(BigDecimal value) { + this.cash = value; + } + + /** + * Gets the value of the otherCurrentAssets property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getOtherCurrentAssets() { + return otherCurrentAssets; + } + + /** + * Sets the value of the otherCurrentAssets property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setOtherCurrentAssets(BigDecimal value) { + this.otherCurrentAssets = value; + } + + /** + * Gets the value of the totalCurrentAssets property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTotalCurrentAssets() { + return totalCurrentAssets; + } + + /** + * Sets the value of the totalCurrentAssets property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTotalCurrentAssets(BigDecimal value) { + this.totalCurrentAssets = value; + } + + /** + * Gets the value of the totalAssets property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTotalAssets() { + return totalAssets; + } + + /** + * Sets the value of the totalAssets property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTotalAssets(BigDecimal value) { + this.totalAssets = value; + } + + /** + * Gets the value of the tradePayables property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTradePayables() { + return tradePayables; + } + + /** + * Sets the value of the tradePayables property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTradePayables(BigDecimal value) { + this.tradePayables = value; + } + + /** + * Gets the value of the bankLiabilities property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getBankLiabilities() { + return bankLiabilities; + } + + /** + * Sets the value of the bankLiabilities property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setBankLiabilities(BigDecimal value) { + this.bankLiabilities = value; + } + + /** + * Gets the value of the otherLoansOrFinance property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getOtherLoansOrFinance() { + return otherLoansOrFinance; + } + + /** + * Sets the value of the otherLoansOrFinance property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setOtherLoansOrFinance(BigDecimal value) { + this.otherLoansOrFinance = value; + } + + /** + * Gets the value of the groupPayables property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getGroupPayables() { + return groupPayables; + } + + /** + * Sets the value of the groupPayables property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setGroupPayables(BigDecimal value) { + this.groupPayables = value; + } + + /** + * Gets the value of the miscellaneousLiabilities property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getMiscellaneousLiabilities() { + return miscellaneousLiabilities; + } + + /** + * Sets the value of the miscellaneousLiabilities property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setMiscellaneousLiabilities(BigDecimal value) { + this.miscellaneousLiabilities = value; + } + + /** + * Gets the value of the totalCurrentLiabilities property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTotalCurrentLiabilities() { + return totalCurrentLiabilities; + } + + /** + * Sets the value of the totalCurrentLiabilities property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTotalCurrentLiabilities(BigDecimal value) { + this.totalCurrentLiabilities = value; + } + + /** + * Gets the value of the tradePayablesDueAfter1Year property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTradePayablesDueAfter1Year() { + return tradePayablesDueAfter1Year; + } + + /** + * Sets the value of the tradePayablesDueAfter1Year property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTradePayablesDueAfter1Year(BigDecimal value) { + this.tradePayablesDueAfter1Year = value; + } + + /** + * Gets the value of the bankLiabilitiesDueAfter1Year property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getBankLiabilitiesDueAfter1Year() { + return bankLiabilitiesDueAfter1Year; + } + + /** + * Sets the value of the bankLiabilitiesDueAfter1Year property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setBankLiabilitiesDueAfter1Year(BigDecimal value) { + this.bankLiabilitiesDueAfter1Year = value; + } + + /** + * Gets the value of the otherLoansOrFinanceDueAfter1Year property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getOtherLoansOrFinanceDueAfter1Year() { + return otherLoansOrFinanceDueAfter1Year; + } + + /** + * Sets the value of the otherLoansOrFinanceDueAfter1Year property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setOtherLoansOrFinanceDueAfter1Year(BigDecimal value) { + this.otherLoansOrFinanceDueAfter1Year = value; + } + + /** + * Gets the value of the groupPayablesDueAfter1Year property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getGroupPayablesDueAfter1Year() { + return groupPayablesDueAfter1Year; + } + + /** + * Sets the value of the groupPayablesDueAfter1Year property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setGroupPayablesDueAfter1Year(BigDecimal value) { + this.groupPayablesDueAfter1Year = value; + } + + /** + * Gets the value of the miscellaneousLiabilitiesDueAfter1Year property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getMiscellaneousLiabilitiesDueAfter1Year() { + return miscellaneousLiabilitiesDueAfter1Year; + } + + /** + * Sets the value of the miscellaneousLiabilitiesDueAfter1Year property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setMiscellaneousLiabilitiesDueAfter1Year(BigDecimal value) { + this.miscellaneousLiabilitiesDueAfter1Year = value; + } + + /** + * Gets the value of the totalLongTermLiabilities property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTotalLongTermLiabilities() { + return totalLongTermLiabilities; + } + + /** + * Sets the value of the totalLongTermLiabilities property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTotalLongTermLiabilities(BigDecimal value) { + this.totalLongTermLiabilities = value; + } + + /** + * Gets the value of the totalLiabilities property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTotalLiabilities() { + return totalLiabilities; + } + + /** + * Sets the value of the totalLiabilities property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTotalLiabilities(BigDecimal value) { + this.totalLiabilities = value; + } + + /** + * Gets the value of the calledUpShareCapital property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getCalledUpShareCapital() { + return calledUpShareCapital; + } + + /** + * Sets the value of the calledUpShareCapital property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setCalledUpShareCapital(BigDecimal value) { + this.calledUpShareCapital = value; + } + + /** + * Gets the value of the sharePremium property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getSharePremium() { + return sharePremium; + } + + /** + * Sets the value of the sharePremium property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setSharePremium(BigDecimal value) { + this.sharePremium = value; + } + + /** + * Gets the value of the revenueReserves property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getRevenueReserves() { + return revenueReserves; + } + + /** + * Sets the value of the revenueReserves property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setRevenueReserves(BigDecimal value) { + this.revenueReserves = value; + } + + /** + * Gets the value of the otherReserves property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getOtherReserves() { + return otherReserves; + } + + /** + * Sets the value of the otherReserves property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setOtherReserves(BigDecimal value) { + this.otherReserves = value; + } + + /** + * Gets the value of the totalShareholdersEquity property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTotalShareholdersEquity() { + return totalShareholdersEquity; + } + + /** + * Sets the value of the totalShareholdersEquity property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTotalShareholdersEquity(BigDecimal value) { + this.totalShareholdersEquity = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBanker.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBanker.java new file mode 100644 index 0000000..5e7c499 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBanker.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeBanker complex type. + * + *

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

+ * <complexType name="CreditsafeBanker">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bank_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBanker", propOrder = { + +}) +public class CreditsafeBanker { + + @XmlElement(required = true) + protected String name; + protected String address; + @XmlElement(name = "bank_code") + protected String bankCode; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the bankCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBankCode() { + return bankCode; + } + + /** + * Sets the value of the bankCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBankCode(String value) { + this.bankCode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBankerArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBankerArray.java new file mode 100644 index 0000000..4e655e6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBankerArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeBankerArray complex type. + * + *

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

+ * <complexType name="CreditsafeBankerArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeBanker" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBankerArray", propOrder = { + "item" +}) +public class CreditsafeBankerArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeBanker } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeAdditionalInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeAdditionalInformation.java new file mode 100644 index 0000000..8583754 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeAdditionalInformation.java @@ -0,0 +1,229 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeBeAdditionalInformation complex type. + * + *

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

+ * <complexType name="CreditsafeBeAdditionalInformation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="negative_information" type="{http://www.webservices.nl/soap/}CreditsafeBeNegativeInformation" minOccurs="0"/>
+ *         <element name="misc" type="{http://www.webservices.nl/soap/}CreditsafeBeMisc" minOccurs="0"/>
+ *         <element name="industry_quartile_analysis" type="{http://www.webservices.nl/soap/}CreditsafeIndustryQuartilyAnalysis" minOccurs="0"/>
+ *         <element name="payment_expectations_summary" type="{http://www.webservices.nl/soap/}CreditsafeBePaymentExpectationsSummary" minOccurs="0"/>
+ *         <element name="industry_comparison" type="{http://www.webservices.nl/soap/}CreditsafeBeIndustryComparison" minOccurs="0"/>
+ *         <element name="registered_contractors" type="{http://www.webservices.nl/soap/}CreditsafeBeRegisteredContractorArray" minOccurs="0"/>
+ *         <element name="events" type="{http://www.webservices.nl/soap/}CreditsafeBeEventArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBeAdditionalInformation", propOrder = { + +}) +public class CreditsafeBeAdditionalInformation { + + @XmlElement(name = "negative_information") + protected CreditsafeBeNegativeInformation negativeInformation; + protected CreditsafeBeMisc misc; + @XmlElement(name = "industry_quartile_analysis") + protected CreditsafeIndustryQuartilyAnalysis industryQuartileAnalysis; + @XmlElement(name = "payment_expectations_summary") + protected CreditsafeBePaymentExpectationsSummary paymentExpectationsSummary; + @XmlElement(name = "industry_comparison") + protected CreditsafeBeIndustryComparison industryComparison; + @XmlElement(name = "registered_contractors") + protected CreditsafeBeRegisteredContractorArray registeredContractors; + protected CreditsafeBeEventArray events; + + /** + * Gets the value of the negativeInformation property. + * + * @return + * possible object is + * {@link CreditsafeBeNegativeInformation } + * + */ + public CreditsafeBeNegativeInformation getNegativeInformation() { + return negativeInformation; + } + + /** + * Sets the value of the negativeInformation property. + * + * @param value + * allowed object is + * {@link CreditsafeBeNegativeInformation } + * + */ + public void setNegativeInformation(CreditsafeBeNegativeInformation value) { + this.negativeInformation = value; + } + + /** + * Gets the value of the misc property. + * + * @return + * possible object is + * {@link CreditsafeBeMisc } + * + */ + public CreditsafeBeMisc getMisc() { + return misc; + } + + /** + * Sets the value of the misc property. + * + * @param value + * allowed object is + * {@link CreditsafeBeMisc } + * + */ + public void setMisc(CreditsafeBeMisc value) { + this.misc = value; + } + + /** + * Gets the value of the industryQuartileAnalysis property. + * + * @return + * possible object is + * {@link CreditsafeIndustryQuartilyAnalysis } + * + */ + public CreditsafeIndustryQuartilyAnalysis getIndustryQuartileAnalysis() { + return industryQuartileAnalysis; + } + + /** + * Sets the value of the industryQuartileAnalysis property. + * + * @param value + * allowed object is + * {@link CreditsafeIndustryQuartilyAnalysis } + * + */ + public void setIndustryQuartileAnalysis(CreditsafeIndustryQuartilyAnalysis value) { + this.industryQuartileAnalysis = value; + } + + /** + * Gets the value of the paymentExpectationsSummary property. + * + * @return + * possible object is + * {@link CreditsafeBePaymentExpectationsSummary } + * + */ + public CreditsafeBePaymentExpectationsSummary getPaymentExpectationsSummary() { + return paymentExpectationsSummary; + } + + /** + * Sets the value of the paymentExpectationsSummary property. + * + * @param value + * allowed object is + * {@link CreditsafeBePaymentExpectationsSummary } + * + */ + public void setPaymentExpectationsSummary(CreditsafeBePaymentExpectationsSummary value) { + this.paymentExpectationsSummary = value; + } + + /** + * Gets the value of the industryComparison property. + * + * @return + * possible object is + * {@link CreditsafeBeIndustryComparison } + * + */ + public CreditsafeBeIndustryComparison getIndustryComparison() { + return industryComparison; + } + + /** + * Sets the value of the industryComparison property. + * + * @param value + * allowed object is + * {@link CreditsafeBeIndustryComparison } + * + */ + public void setIndustryComparison(CreditsafeBeIndustryComparison value) { + this.industryComparison = value; + } + + /** + * Gets the value of the registeredContractors property. + * + * @return + * possible object is + * {@link CreditsafeBeRegisteredContractorArray } + * + */ + public CreditsafeBeRegisteredContractorArray getRegisteredContractors() { + return registeredContractors; + } + + /** + * Sets the value of the registeredContractors property. + * + * @param value + * allowed object is + * {@link CreditsafeBeRegisteredContractorArray } + * + */ + public void setRegisteredContractors(CreditsafeBeRegisteredContractorArray value) { + this.registeredContractors = value; + } + + /** + * Gets the value of the events property. + * + * @return + * possible object is + * {@link CreditsafeBeEventArray } + * + */ + public CreditsafeBeEventArray getEvents() { + return events; + } + + /** + * Sets the value of the events property. + * + * @param value + * allowed object is + * {@link CreditsafeBeEventArray } + * + */ + public void setEvents(CreditsafeBeEventArray value) { + this.events = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeBankruptcyEvent.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeBankruptcyEvent.java new file mode 100644 index 0000000..1103083 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeBankruptcyEvent.java @@ -0,0 +1,478 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeBeBankruptcyEvent complex type. + * + *

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

+ * <complexType name="CreditsafeBeBankruptcyEvent">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bankruptcy_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="street_of_registered_office" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="city_of_registered_office" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="postcode_of_registered_office" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="nace_bel_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="nace_bel_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="commercial_court" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="source_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_of_decreee_of_bankruptcy" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="closing_date_of_summons" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="name_of_trustee" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="street_of_trustee" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="city_of_trustee" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="postcode_of_trustee" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBeBankruptcyEvent", propOrder = { + +}) +public class CreditsafeBeBankruptcyEvent { + + @XmlElement(name = "bankruptcy_type") + protected String bankruptcyType; + @XmlElement(name = "company_name") + protected String companyName; + @XmlElement(name = "street_of_registered_office") + protected String streetOfRegisteredOffice; + @XmlElement(name = "city_of_registered_office") + protected String cityOfRegisteredOffice; + @XmlElement(name = "postcode_of_registered_office") + protected String postcodeOfRegisteredOffice; + @XmlElement(name = "nace_bel_code") + protected String naceBelCode; + @XmlElement(name = "nace_bel_description") + protected String naceBelDescription; + @XmlElement(name = "commercial_court") + protected String commercialCourt; + @XmlElement(name = "source_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar sourceDate; + protected String source; + @XmlElement(name = "date_of_decreee_of_bankruptcy") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateOfDecreeeOfBankruptcy; + @XmlElement(name = "closing_date_of_summons") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar closingDateOfSummons; + @XmlElement(name = "name_of_trustee") + protected String nameOfTrustee; + @XmlElement(name = "street_of_trustee") + protected String streetOfTrustee; + @XmlElement(name = "city_of_trustee") + protected String cityOfTrustee; + @XmlElement(name = "postcode_of_trustee") + protected String postcodeOfTrustee; + + /** + * Gets the value of the bankruptcyType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBankruptcyType() { + return bankruptcyType; + } + + /** + * Sets the value of the bankruptcyType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBankruptcyType(String value) { + this.bankruptcyType = value; + } + + /** + * Gets the value of the companyName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyName() { + return companyName; + } + + /** + * Sets the value of the companyName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyName(String value) { + this.companyName = value; + } + + /** + * Gets the value of the streetOfRegisteredOffice property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetOfRegisteredOffice() { + return streetOfRegisteredOffice; + } + + /** + * Sets the value of the streetOfRegisteredOffice property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetOfRegisteredOffice(String value) { + this.streetOfRegisteredOffice = value; + } + + /** + * Gets the value of the cityOfRegisteredOffice property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCityOfRegisteredOffice() { + return cityOfRegisteredOffice; + } + + /** + * Sets the value of the cityOfRegisteredOffice property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCityOfRegisteredOffice(String value) { + this.cityOfRegisteredOffice = value; + } + + /** + * Gets the value of the postcodeOfRegisteredOffice property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcodeOfRegisteredOffice() { + return postcodeOfRegisteredOffice; + } + + /** + * Sets the value of the postcodeOfRegisteredOffice property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcodeOfRegisteredOffice(String value) { + this.postcodeOfRegisteredOffice = value; + } + + /** + * Gets the value of the naceBelCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNaceBelCode() { + return naceBelCode; + } + + /** + * Sets the value of the naceBelCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNaceBelCode(String value) { + this.naceBelCode = value; + } + + /** + * Gets the value of the naceBelDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNaceBelDescription() { + return naceBelDescription; + } + + /** + * Sets the value of the naceBelDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNaceBelDescription(String value) { + this.naceBelDescription = value; + } + + /** + * Gets the value of the commercialCourt property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCommercialCourt() { + return commercialCourt; + } + + /** + * Sets the value of the commercialCourt property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCommercialCourt(String value) { + this.commercialCourt = value; + } + + /** + * Gets the value of the sourceDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSourceDate() { + return sourceDate; + } + + /** + * Sets the value of the sourceDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSourceDate(XMLGregorianCalendar value) { + this.sourceDate = value; + } + + /** + * Gets the value of the source property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSource() { + return source; + } + + /** + * Sets the value of the source property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSource(String value) { + this.source = value; + } + + /** + * Gets the value of the dateOfDecreeeOfBankruptcy property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfDecreeeOfBankruptcy() { + return dateOfDecreeeOfBankruptcy; + } + + /** + * Sets the value of the dateOfDecreeeOfBankruptcy property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfDecreeeOfBankruptcy(XMLGregorianCalendar value) { + this.dateOfDecreeeOfBankruptcy = value; + } + + /** + * Gets the value of the closingDateOfSummons property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getClosingDateOfSummons() { + return closingDateOfSummons; + } + + /** + * Sets the value of the closingDateOfSummons property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setClosingDateOfSummons(XMLGregorianCalendar value) { + this.closingDateOfSummons = value; + } + + /** + * Gets the value of the nameOfTrustee property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNameOfTrustee() { + return nameOfTrustee; + } + + /** + * Sets the value of the nameOfTrustee property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNameOfTrustee(String value) { + this.nameOfTrustee = value; + } + + /** + * Gets the value of the streetOfTrustee property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetOfTrustee() { + return streetOfTrustee; + } + + /** + * Sets the value of the streetOfTrustee property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetOfTrustee(String value) { + this.streetOfTrustee = value; + } + + /** + * Gets the value of the cityOfTrustee property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCityOfTrustee() { + return cityOfTrustee; + } + + /** + * Sets the value of the cityOfTrustee property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCityOfTrustee(String value) { + this.cityOfTrustee = value; + } + + /** + * Gets the value of the postcodeOfTrustee property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcodeOfTrustee() { + return postcodeOfTrustee; + } + + /** + * Sets the value of the postcodeOfTrustee property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcodeOfTrustee(String value) { + this.postcodeOfTrustee = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeBankruptcyEventArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeBankruptcyEventArray.java new file mode 100644 index 0000000..1efb272 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeBankruptcyEventArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeBeBankruptcyEventArray complex type. + * + *

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

+ * <complexType name="CreditsafeBeBankruptcyEventArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeBeBankruptcyEvent" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBeBankruptcyEventArray", propOrder = { + "item" +}) +public class CreditsafeBeBankruptcyEventArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeBeBankruptcyEvent } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeEvent.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeEvent.java new file mode 100644 index 0000000..e5f5f3c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeEvent.java @@ -0,0 +1,97 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeBeEvent complex type. + * + *

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

+ * <complexType name="CreditsafeBeEvent">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="serial_number" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBeEvent", propOrder = { + +}) +public class CreditsafeBeEvent { + + @XmlElement(name = "serial_number") + @XmlSchemaType(name = "unsignedInt") + protected Long serialNumber; + protected String description; + + /** + * Gets the value of the serialNumber property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getSerialNumber() { + return serialNumber; + } + + /** + * Sets the value of the serialNumber property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setSerialNumber(Long value) { + this.serialNumber = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeEventArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeEventArray.java new file mode 100644 index 0000000..1eba2ee --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeEventArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeBeEventArray complex type. + * + *

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

+ * <complexType name="CreditsafeBeEventArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeBeEvent" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBeEventArray", propOrder = { + "item" +}) +public class CreditsafeBeEventArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeBeEvent } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeIndustryComparison.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeIndustryComparison.java new file mode 100644 index 0000000..32541ca --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeIndustryComparison.java @@ -0,0 +1,180 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeBeIndustryComparison complex type. + * + *

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

+ * <complexType name="CreditsafeBeIndustryComparison">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="activity_code" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
+ *         <element name="activity_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="industry_average_payment_expectation_days" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="industry_average_day_sales_outstanding" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="industry_average_credit_rating" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBeIndustryComparison", propOrder = { + +}) +public class CreditsafeBeIndustryComparison { + + @XmlElement(name = "activity_code") + @XmlSchemaType(name = "unsignedInt") + protected Long activityCode; + @XmlElement(name = "activity_description") + protected String activityDescription; + @XmlElement(name = "industry_average_payment_expectation_days") + protected BigDecimal industryAveragePaymentExpectationDays; + @XmlElement(name = "industry_average_day_sales_outstanding") + protected BigDecimal industryAverageDaySalesOutstanding; + @XmlElement(name = "industry_average_credit_rating") + protected BigDecimal industryAverageCreditRating; + + /** + * Gets the value of the activityCode property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getActivityCode() { + return activityCode; + } + + /** + * Sets the value of the activityCode property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setActivityCode(Long value) { + this.activityCode = value; + } + + /** + * Gets the value of the activityDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getActivityDescription() { + return activityDescription; + } + + /** + * Sets the value of the activityDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setActivityDescription(String value) { + this.activityDescription = value; + } + + /** + * Gets the value of the industryAveragePaymentExpectationDays property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getIndustryAveragePaymentExpectationDays() { + return industryAveragePaymentExpectationDays; + } + + /** + * Sets the value of the industryAveragePaymentExpectationDays property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setIndustryAveragePaymentExpectationDays(BigDecimal value) { + this.industryAveragePaymentExpectationDays = value; + } + + /** + * Gets the value of the industryAverageDaySalesOutstanding property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getIndustryAverageDaySalesOutstanding() { + return industryAverageDaySalesOutstanding; + } + + /** + * Sets the value of the industryAverageDaySalesOutstanding property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setIndustryAverageDaySalesOutstanding(BigDecimal value) { + this.industryAverageDaySalesOutstanding = value; + } + + /** + * Gets the value of the industryAverageCreditRating property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getIndustryAverageCreditRating() { + return industryAverageCreditRating; + } + + /** + * Sets the value of the industryAverageCreditRating property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setIndustryAverageCreditRating(BigDecimal value) { + this.industryAverageCreditRating = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeMisc.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeMisc.java new file mode 100644 index 0000000..d9e3697 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeMisc.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeBeMisc complex type. + * + *

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

+ * <complexType name="CreditsafeBeMisc">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBeMisc", propOrder = { + +}) +public class CreditsafeBeMisc { + + @XmlElement(name = "fax_number") + protected String faxNumber; + + /** + * Gets the value of the faxNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFaxNumber() { + return faxNumber; + } + + /** + * Sets the value of the faxNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFaxNumber(String value) { + this.faxNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNSSODetail.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNSSODetail.java new file mode 100644 index 0000000..a541feb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNSSODetail.java @@ -0,0 +1,180 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeBeNSSODetail complex type. + * + *

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

+ * <complexType name="CreditsafeBeNSSODetail">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="business_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name_of_defendant" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_of_defendant" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_of_summons" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="labour_court" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBeNSSODetail", propOrder = { + +}) +public class CreditsafeBeNSSODetail { + + @XmlElement(name = "business_number") + protected String businessNumber; + @XmlElement(name = "name_of_defendant") + protected String nameOfDefendant; + @XmlElement(name = "legal_form_of_defendant") + protected String legalFormOfDefendant; + @XmlElement(name = "date_of_summons") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateOfSummons; + @XmlElement(name = "labour_court") + protected String labourCourt; + + /** + * Gets the value of the businessNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBusinessNumber() { + return businessNumber; + } + + /** + * Sets the value of the businessNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBusinessNumber(String value) { + this.businessNumber = value; + } + + /** + * Gets the value of the nameOfDefendant property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNameOfDefendant() { + return nameOfDefendant; + } + + /** + * Sets the value of the nameOfDefendant property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNameOfDefendant(String value) { + this.nameOfDefendant = value; + } + + /** + * Gets the value of the legalFormOfDefendant property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormOfDefendant() { + return legalFormOfDefendant; + } + + /** + * Sets the value of the legalFormOfDefendant property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormOfDefendant(String value) { + this.legalFormOfDefendant = value; + } + + /** + * Gets the value of the dateOfSummons property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfSummons() { + return dateOfSummons; + } + + /** + * Sets the value of the dateOfSummons property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfSummons(XMLGregorianCalendar value) { + this.dateOfSummons = value; + } + + /** + * Gets the value of the labourCourt property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLabourCourt() { + return labourCourt; + } + + /** + * Sets the value of the labourCourt property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLabourCourt(String value) { + this.labourCourt = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNSSODetailArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNSSODetailArray.java new file mode 100644 index 0000000..78e6115 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNSSODetailArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeBeNSSODetailArray complex type. + * + *

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

+ * <complexType name="CreditsafeBeNSSODetailArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeBeNSSODetail" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBeNSSODetailArray", propOrder = { + "item" +}) +public class CreditsafeBeNSSODetailArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeBeNSSODetail } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNegativeInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNegativeInformation.java new file mode 100644 index 0000000..18eb29a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNegativeInformation.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeBeNegativeInformation complex type. + * + *

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

+ * <complexType name="CreditsafeBeNegativeInformation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nsso_details" type="{http://www.webservices.nl/soap/}CreditsafeBeNSSODetailArray" minOccurs="0"/>
+ *         <element name="protested_bills" type="{http://www.webservices.nl/soap/}CreditsafeBeProtestedBillArray" minOccurs="0"/>
+ *         <element name="bankruptcy_events" type="{http://www.webservices.nl/soap/}CreditsafeBeBankruptcyEventArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBeNegativeInformation", propOrder = { + +}) +public class CreditsafeBeNegativeInformation { + + @XmlElement(name = "nsso_details") + protected CreditsafeBeNSSODetailArray nssoDetails; + @XmlElement(name = "protested_bills") + protected CreditsafeBeProtestedBillArray protestedBills; + @XmlElement(name = "bankruptcy_events") + protected CreditsafeBeBankruptcyEventArray bankruptcyEvents; + + /** + * Gets the value of the nssoDetails property. + * + * @return + * possible object is + * {@link CreditsafeBeNSSODetailArray } + * + */ + public CreditsafeBeNSSODetailArray getNssoDetails() { + return nssoDetails; + } + + /** + * Sets the value of the nssoDetails property. + * + * @param value + * allowed object is + * {@link CreditsafeBeNSSODetailArray } + * + */ + public void setNssoDetails(CreditsafeBeNSSODetailArray value) { + this.nssoDetails = value; + } + + /** + * Gets the value of the protestedBills property. + * + * @return + * possible object is + * {@link CreditsafeBeProtestedBillArray } + * + */ + public CreditsafeBeProtestedBillArray getProtestedBills() { + return protestedBills; + } + + /** + * Sets the value of the protestedBills property. + * + * @param value + * allowed object is + * {@link CreditsafeBeProtestedBillArray } + * + */ + public void setProtestedBills(CreditsafeBeProtestedBillArray value) { + this.protestedBills = value; + } + + /** + * Gets the value of the bankruptcyEvents property. + * + * @return + * possible object is + * {@link CreditsafeBeBankruptcyEventArray } + * + */ + public CreditsafeBeBankruptcyEventArray getBankruptcyEvents() { + return bankruptcyEvents; + } + + /** + * Sets the value of the bankruptcyEvents property. + * + * @param value + * allowed object is + * {@link CreditsafeBeBankruptcyEventArray } + * + */ + public void setBankruptcyEvents(CreditsafeBeBankruptcyEventArray value) { + this.bankruptcyEvents = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBePaymentExpectationsSummary.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBePaymentExpectationsSummary.java new file mode 100644 index 0000000..772ebe7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBePaymentExpectationsSummary.java @@ -0,0 +1,97 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeBePaymentExpectationsSummary complex type. + * + *

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

+ * <complexType name="CreditsafeBePaymentExpectationsSummary">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="payment_expectation_days" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="day_sales_outstanding" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBePaymentExpectationsSummary", propOrder = { + +}) +public class CreditsafeBePaymentExpectationsSummary { + + @XmlElement(name = "payment_expectation_days") + protected BigDecimal paymentExpectationDays; + @XmlElement(name = "day_sales_outstanding") + protected BigDecimal daySalesOutstanding; + + /** + * Gets the value of the paymentExpectationDays property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPaymentExpectationDays() { + return paymentExpectationDays; + } + + /** + * Sets the value of the paymentExpectationDays property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPaymentExpectationDays(BigDecimal value) { + this.paymentExpectationDays = value; + } + + /** + * Gets the value of the daySalesOutstanding property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getDaySalesOutstanding() { + return daySalesOutstanding; + } + + /** + * Sets the value of the daySalesOutstanding property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setDaySalesOutstanding(BigDecimal value) { + this.daySalesOutstanding = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeProtestedBill.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeProtestedBill.java new file mode 100644 index 0000000..0a05b23 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeProtestedBill.java @@ -0,0 +1,262 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeBeProtestedBill complex type. + * + *

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

+ * <complexType name="CreditsafeBeProtestedBill">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="drawee_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="drawee_address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bill_amount" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="bill_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="maturity_of_bill_in_months" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="payment_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="name_of_drawer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="city_of_drawer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBeProtestedBill", propOrder = { + +}) +public class CreditsafeBeProtestedBill { + + @XmlElement(name = "drawee_name") + protected String draweeName; + @XmlElement(name = "drawee_address") + protected String draweeAddress; + @XmlElement(name = "bill_amount") + protected BigDecimal billAmount; + @XmlElement(name = "bill_currency") + protected String billCurrency; + @XmlElement(name = "maturity_of_bill_in_months") + protected BigDecimal maturityOfBillInMonths; + @XmlElement(name = "payment_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar paymentDate; + @XmlElement(name = "name_of_drawer") + protected String nameOfDrawer; + @XmlElement(name = "city_of_drawer") + protected String cityOfDrawer; + + /** + * Gets the value of the draweeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDraweeName() { + return draweeName; + } + + /** + * Sets the value of the draweeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDraweeName(String value) { + this.draweeName = value; + } + + /** + * Gets the value of the draweeAddress property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDraweeAddress() { + return draweeAddress; + } + + /** + * Sets the value of the draweeAddress property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDraweeAddress(String value) { + this.draweeAddress = value; + } + + /** + * Gets the value of the billAmount property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getBillAmount() { + return billAmount; + } + + /** + * Sets the value of the billAmount property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setBillAmount(BigDecimal value) { + this.billAmount = value; + } + + /** + * Gets the value of the billCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBillCurrency() { + return billCurrency; + } + + /** + * Sets the value of the billCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBillCurrency(String value) { + this.billCurrency = value; + } + + /** + * Gets the value of the maturityOfBillInMonths property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getMaturityOfBillInMonths() { + return maturityOfBillInMonths; + } + + /** + * Sets the value of the maturityOfBillInMonths property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setMaturityOfBillInMonths(BigDecimal value) { + this.maturityOfBillInMonths = value; + } + + /** + * Gets the value of the paymentDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPaymentDate() { + return paymentDate; + } + + /** + * Sets the value of the paymentDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPaymentDate(XMLGregorianCalendar value) { + this.paymentDate = value; + } + + /** + * Gets the value of the nameOfDrawer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNameOfDrawer() { + return nameOfDrawer; + } + + /** + * Sets the value of the nameOfDrawer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNameOfDrawer(String value) { + this.nameOfDrawer = value; + } + + /** + * Gets the value of the cityOfDrawer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCityOfDrawer() { + return cityOfDrawer; + } + + /** + * Sets the value of the cityOfDrawer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCityOfDrawer(String value) { + this.cityOfDrawer = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeProtestedBillArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeProtestedBillArray.java new file mode 100644 index 0000000..c958597 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeProtestedBillArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeBeProtestedBillArray complex type. + * + *

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

+ * <complexType name="CreditsafeBeProtestedBillArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeBeProtestedBill" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBeProtestedBillArray", propOrder = { + "item" +}) +public class CreditsafeBeProtestedBillArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeBeProtestedBill } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeRegisteredContractor.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeRegisteredContractor.java new file mode 100644 index 0000000..0e46716 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeRegisteredContractor.java @@ -0,0 +1,127 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeBeRegisteredContractor complex type. + * + *

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

+ * <complexType name="CreditsafeBeRegisteredContractor">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="registration_number" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
+ *         <element name="contractor_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="striking_off_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBeRegisteredContractor", propOrder = { + +}) +public class CreditsafeBeRegisteredContractor { + + @XmlElement(name = "registration_number") + @XmlSchemaType(name = "unsignedInt") + protected Long registrationNumber; + @XmlElement(name = "contractor_description") + protected String contractorDescription; + @XmlElement(name = "striking_off_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar strikingOffDate; + + /** + * Gets the value of the registrationNumber property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getRegistrationNumber() { + return registrationNumber; + } + + /** + * Sets the value of the registrationNumber property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setRegistrationNumber(Long value) { + this.registrationNumber = value; + } + + /** + * Gets the value of the contractorDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContractorDescription() { + return contractorDescription; + } + + /** + * Sets the value of the contractorDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContractorDescription(String value) { + this.contractorDescription = value; + } + + /** + * Gets the value of the strikingOffDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStrikingOffDate() { + return strikingOffDate; + } + + /** + * Sets the value of the strikingOffDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStrikingOffDate(XMLGregorianCalendar value) { + this.strikingOffDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeRegisteredContractorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeRegisteredContractorArray.java new file mode 100644 index 0000000..e185c48 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeRegisteredContractorArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeBeRegisteredContractorArray complex type. + * + *

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

+ * <complexType name="CreditsafeBeRegisteredContractorArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeBeRegisteredContractor" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeBeRegisteredContractorArray", propOrder = { + "item" +}) +public class CreditsafeBeRegisteredContractorArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeBeRegisteredContractor } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeChangedString.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeChangedString.java new file mode 100644 index 0000000..98087f3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeChangedString.java @@ -0,0 +1,99 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeChangedString complex type. + * + *

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

+ * <complexType name="CreditsafeChangedString">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_changed" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeChangedString", propOrder = { + +}) +public class CreditsafeChangedString { + + @XmlElement(required = true) + protected String value; + @XmlElement(name = "date_changed") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateChanged; + + /** + * Gets the value of the value property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValue(String value) { + this.value = value; + } + + /** + * Gets the value of the dateChanged property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateChanged() { + return dateChanged; + } + + /** + * Sets the value of the dateChanged property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateChanged(XMLGregorianCalendar value) { + this.dateChanged = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeChangedStringArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeChangedStringArray.java new file mode 100644 index 0000000..915e6c3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeChangedStringArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeChangedStringArray complex type. + * + *

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

+ * <complexType name="CreditsafeChangedStringArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeChangedString" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeChangedStringArray", propOrder = { + "item" +}) +public class CreditsafeChangedStringArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeChangedString } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompany.java new file mode 100644 index 0000000..39f8d4a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompany.java @@ -0,0 +1,328 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompany complex type. + * + *

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

+ * <complexType name="CreditsafeCompany">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="office_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="available_report_types" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="available_languages" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="online_reports" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompany", propOrder = { + +}) +public class CreditsafeCompany { + + @XmlElement(required = true) + protected String name; + @XmlElement(name = "registration_number") + protected String registrationNumber; + protected String type; + protected String status; + @XmlElement(name = "office_type") + protected String officeType; + protected String address; + @XmlElement(name = "available_report_types", required = true) + protected StringArray availableReportTypes; + @XmlElement(name = "available_languages", required = true) + protected StringArray availableLanguages; + @XmlElement(required = true) + protected String id; + @XmlElement(required = true) + protected String country; + @XmlElement(name = "online_reports") + protected boolean onlineReports; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the registrationNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistrationNumber() { + return registrationNumber; + } + + /** + * Sets the value of the registrationNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistrationNumber(String value) { + this.registrationNumber = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + + /** + * Gets the value of the officeType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOfficeType() { + return officeType; + } + + /** + * Sets the value of the officeType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOfficeType(String value) { + this.officeType = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the availableReportTypes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getAvailableReportTypes() { + return availableReportTypes; + } + + /** + * Sets the value of the availableReportTypes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setAvailableReportTypes(StringArray value) { + this.availableReportTypes = value; + } + + /** + * Gets the value of the availableLanguages property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getAvailableLanguages() { + return availableLanguages; + } + + /** + * Sets the value of the availableLanguages property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setAvailableLanguages(StringArray value) { + this.availableLanguages = value; + } + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the onlineReports property. + * + */ + public boolean isOnlineReports() { + return onlineReports; + } + + /** + * Sets the value of the onlineReports property. + * + */ + public void setOnlineReports(boolean value) { + this.onlineReports = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivity.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivity.java new file mode 100644 index 0000000..59e615f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivity.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyActivity complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyActivity">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="activity_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="activity_description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyActivity", propOrder = { + +}) +public class CreditsafeCompanyActivity { + + @XmlElement(name = "activity_code", required = true) + protected String activityCode; + @XmlElement(name = "activity_description", required = true) + protected String activityDescription; + + /** + * Gets the value of the activityCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getActivityCode() { + return activityCode; + } + + /** + * Sets the value of the activityCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setActivityCode(String value) { + this.activityCode = value; + } + + /** + * Gets the value of the activityDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getActivityDescription() { + return activityDescription; + } + + /** + * Sets the value of the activityDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setActivityDescription(String value) { + this.activityDescription = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityArray.java new file mode 100644 index 0000000..28f34a8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyActivityArray complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyActivityArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivity" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyActivityArray", propOrder = { + "item" +}) +public class CreditsafeCompanyActivityArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyActivity } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityClassificationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityClassificationV2.java new file mode 100644 index 0000000..37d42cc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityClassificationV2.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyActivityClassificationV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyActivityClassificationV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="activities" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivityV2Array" minOccurs="0"/>
+ *         <element name="classification" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyActivityClassificationV2", propOrder = { + +}) +public class CreditsafeCompanyActivityClassificationV2 { + + protected CreditsafeCompanyActivityV2Array activities; + protected String classification; + + /** + * Gets the value of the activities property. + * + * @return + * possible object is + * {@link CreditsafeCompanyActivityV2Array } + * + */ + public CreditsafeCompanyActivityV2Array getActivities() { + return activities; + } + + /** + * Sets the value of the activities property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyActivityV2Array } + * + */ + public void setActivities(CreditsafeCompanyActivityV2Array value) { + this.activities = value; + } + + /** + * Gets the value of the classification property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getClassification() { + return classification; + } + + /** + * Sets the value of the classification property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setClassification(String value) { + this.classification = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityClassificationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityClassificationV2Array.java new file mode 100644 index 0000000..27844ab --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityClassificationV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyActivityClassificationV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyActivityClassificationV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivityClassificationV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyActivityClassificationV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyActivityClassificationV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyActivityClassificationV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityV2.java new file mode 100644 index 0000000..016989c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityV2.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyActivityV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyActivityV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="classification" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="activity_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="activity_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyActivityV2", propOrder = { + +}) +public class CreditsafeCompanyActivityV2 { + + protected String classification; + @XmlElement(name = "activity_code") + protected String activityCode; + @XmlElement(name = "activity_description") + protected String activityDescription; + + /** + * Gets the value of the classification property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getClassification() { + return classification; + } + + /** + * Sets the value of the classification property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setClassification(String value) { + this.classification = value; + } + + /** + * Gets the value of the activityCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getActivityCode() { + return activityCode; + } + + /** + * Sets the value of the activityCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setActivityCode(String value) { + this.activityCode = value; + } + + /** + * Gets the value of the activityDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getActivityDescription() { + return activityDescription; + } + + /** + * Sets the value of the activityDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setActivityDescription(String value) { + this.activityDescription = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityV2Array.java new file mode 100644 index 0000000..599e80b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyActivityV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyActivityV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivityV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyActivityV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyActivityV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyActivityV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationCommentV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationCommentV2.java new file mode 100644 index 0000000..d6447b5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationCommentV2.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationCommentV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationCommentV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="sentiment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationCommentV2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationCommentV2 { + + protected String text; + protected String sentiment; + + /** + * Gets the value of the text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getText() { + return text; + } + + /** + * Sets the value of the text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setText(String value) { + this.text = value; + } + + /** + * Gets the value of the sentiment property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSentiment() { + return sentiment; + } + + /** + * Sets the value of the sentiment property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSentiment(String value) { + this.sentiment = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationCommentV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationCommentV2Array.java new file mode 100644 index 0000000..674a02b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationCommentV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationCommentV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationCommentV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationCommentV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationCommentV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationCommentV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationCommentV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2.java new file mode 100644 index 0000000..980e7c7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2.java @@ -0,0 +1,202 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="miscellaneous" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDEMiscellaneousV2" minOccurs="0"/>
+ *         <element name="image_accounts" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDEImageAccountV2" minOccurs="0"/>
+ *         <element name="beneficiary_owners" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDEOwnerV2" minOccurs="0"/>
+ *         <element name="turnover_ranges" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDETurnoverRangeV2" minOccurs="0"/>
+ *         <element name="comments" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationCommentV2Array" minOccurs="0"/>
+ *         <element name="historical_events" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationHistoricalEventV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 { + + protected CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 miscellaneous; + @XmlElement(name = "image_accounts") + protected CreditsafeCompanyAdditionalInformationDEImageAccountV2 imageAccounts; + @XmlElement(name = "beneficiary_owners") + protected CreditsafeCompanyAdditionalInformationDEOwnerV2 beneficiaryOwners; + @XmlElement(name = "turnover_ranges") + protected CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 turnoverRanges; + protected CreditsafeCompanyAdditionalInformationCommentV2Array comments; + @XmlElement(name = "historical_events") + protected CreditsafeCompanyAdditionalInformationHistoricalEventV2Array historicalEvents; + + /** + * Gets the value of the miscellaneous property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 } + * + */ + public CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 getMiscellaneous() { + return miscellaneous; + } + + /** + * Sets the value of the miscellaneous property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 } + * + */ + public void setMiscellaneous(CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 value) { + this.miscellaneous = value; + } + + /** + * Gets the value of the imageAccounts property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationDEImageAccountV2 } + * + */ + public CreditsafeCompanyAdditionalInformationDEImageAccountV2 getImageAccounts() { + return imageAccounts; + } + + /** + * Sets the value of the imageAccounts property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationDEImageAccountV2 } + * + */ + public void setImageAccounts(CreditsafeCompanyAdditionalInformationDEImageAccountV2 value) { + this.imageAccounts = value; + } + + /** + * Gets the value of the beneficiaryOwners property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationDEOwnerV2 } + * + */ + public CreditsafeCompanyAdditionalInformationDEOwnerV2 getBeneficiaryOwners() { + return beneficiaryOwners; + } + + /** + * Sets the value of the beneficiaryOwners property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationDEOwnerV2 } + * + */ + public void setBeneficiaryOwners(CreditsafeCompanyAdditionalInformationDEOwnerV2 value) { + this.beneficiaryOwners = value; + } + + /** + * Gets the value of the turnoverRanges property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 } + * + */ + public CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 getTurnoverRanges() { + return turnoverRanges; + } + + /** + * Sets the value of the turnoverRanges property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 } + * + */ + public void setTurnoverRanges(CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 value) { + this.turnoverRanges = value; + } + + /** + * Gets the value of the comments property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationCommentV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationCommentV2Array getComments() { + return comments; + } + + /** + * Sets the value of the comments property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationCommentV2Array } + * + */ + public void setComments(CreditsafeCompanyAdditionalInformationCommentV2Array value) { + this.comments = value; + } + + /** + * Gets the value of the historicalEvents property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationHistoricalEventV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationHistoricalEventV2Array getHistoricalEvents() { + return historicalEvents; + } + + /** + * Sets the value of the historicalEvents property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationHistoricalEventV2Array } + * + */ + public void setHistoricalEvents(CreditsafeCompanyAdditionalInformationHistoricalEventV2Array value) { + this.historicalEvents = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array.java new file mode 100644 index 0000000..7e21764 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEImageAccountV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEImageAccountV2.java new file mode 100644 index 0000000..0cd9dfc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEImageAccountV2.java @@ -0,0 +1,209 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationDEImageAccountV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationDEImageAccountV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="serial_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="start_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="end_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="published_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="document_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="financials_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationDEImageAccountV2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationDEImageAccountV2 { + + @XmlElement(name = "serial_number") + protected String serialNumber; + @XmlElement(name = "start_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar startDate; + @XmlElement(name = "end_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar endDate; + @XmlElement(name = "published_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar publishedDate; + @XmlElement(name = "document_type") + protected String documentType; + @XmlElement(name = "financials_type") + protected String financialsType; + + /** + * Gets the value of the serialNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSerialNumber() { + return serialNumber; + } + + /** + * Sets the value of the serialNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSerialNumber(String value) { + this.serialNumber = value; + } + + /** + * Gets the value of the startDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStartDate() { + return startDate; + } + + /** + * Sets the value of the startDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStartDate(XMLGregorianCalendar value) { + this.startDate = value; + } + + /** + * Gets the value of the endDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEndDate() { + return endDate; + } + + /** + * Sets the value of the endDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEndDate(XMLGregorianCalendar value) { + this.endDate = value; + } + + /** + * Gets the value of the publishedDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPublishedDate() { + return publishedDate; + } + + /** + * Sets the value of the publishedDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPublishedDate(XMLGregorianCalendar value) { + this.publishedDate = value; + } + + /** + * Gets the value of the documentType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocumentType() { + return documentType; + } + + /** + * Sets the value of the documentType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocumentType(String value) { + this.documentType = value; + } + + /** + * Gets the value of the financialsType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFinancialsType() { + return financialsType; + } + + /** + * Sets the value of the financialsType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFinancialsType(String value) { + this.financialsType = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEImageAccountV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEImageAccountV2Array.java new file mode 100644 index 0000000..0dde767 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEImageAccountV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationDEImageAccountV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationDEImageAccountV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDEImageAccountV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationDEImageAccountV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationDEImageAccountV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationDEImageAccountV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEMiscellaneousV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEMiscellaneousV2.java new file mode 100644 index 0000000..cb6ebab --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEMiscellaneousV2.java @@ -0,0 +1,393 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationDEMiscellaneousV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="turnover_range" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="commercial_register_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="commercial_register_zip" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="financials_quality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="current_rating" type="{http://www.webservices.nl/soap/}CreditsafeValueV2" minOccurs="0"/>
+ *         <element name="previous_rating" type="{http://www.webservices.nl/soap/}CreditsafeValueV2" minOccurs="0"/>
+ *         <element name="premise_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="small_office" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="company_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="negative_rating" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="complementary_company" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="business_purpose" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationDEMiscellaneousV2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 { + + @XmlElement(name = "turnover_range") + protected String turnoverRange; + @XmlElement(name = "commercial_register_city") + protected String commercialRegisterCity; + @XmlElement(name = "commercial_register_zip") + protected String commercialRegisterZip; + @XmlElement(name = "financials_quality") + protected String financialsQuality; + @XmlElement(name = "current_rating") + protected CreditsafeValueV2 currentRating; + @XmlElement(name = "previous_rating") + protected CreditsafeValueV2 previousRating; + @XmlElement(name = "premise_type") + protected String premiseType; + @XmlElement(name = "small_office") + protected String smallOffice; + @XmlElement(name = "fax_number") + protected String faxNumber; + @XmlElement(name = "company_type") + protected String companyType; + @XmlElement(name = "negative_rating") + protected String negativeRating; + @XmlElement(name = "complementary_company") + protected String complementaryCompany; + @XmlElement(name = "business_purpose") + protected String businessPurpose; + + /** + * Gets the value of the turnoverRange property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTurnoverRange() { + return turnoverRange; + } + + /** + * Sets the value of the turnoverRange property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTurnoverRange(String value) { + this.turnoverRange = value; + } + + /** + * Gets the value of the commercialRegisterCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCommercialRegisterCity() { + return commercialRegisterCity; + } + + /** + * Sets the value of the commercialRegisterCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCommercialRegisterCity(String value) { + this.commercialRegisterCity = value; + } + + /** + * Gets the value of the commercialRegisterZip property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCommercialRegisterZip() { + return commercialRegisterZip; + } + + /** + * Sets the value of the commercialRegisterZip property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCommercialRegisterZip(String value) { + this.commercialRegisterZip = value; + } + + /** + * Gets the value of the financialsQuality property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFinancialsQuality() { + return financialsQuality; + } + + /** + * Sets the value of the financialsQuality property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFinancialsQuality(String value) { + this.financialsQuality = value; + } + + /** + * Gets the value of the currentRating property. + * + * @return + * possible object is + * {@link CreditsafeValueV2 } + * + */ + public CreditsafeValueV2 getCurrentRating() { + return currentRating; + } + + /** + * Sets the value of the currentRating property. + * + * @param value + * allowed object is + * {@link CreditsafeValueV2 } + * + */ + public void setCurrentRating(CreditsafeValueV2 value) { + this.currentRating = value; + } + + /** + * Gets the value of the previousRating property. + * + * @return + * possible object is + * {@link CreditsafeValueV2 } + * + */ + public CreditsafeValueV2 getPreviousRating() { + return previousRating; + } + + /** + * Sets the value of the previousRating property. + * + * @param value + * allowed object is + * {@link CreditsafeValueV2 } + * + */ + public void setPreviousRating(CreditsafeValueV2 value) { + this.previousRating = value; + } + + /** + * Gets the value of the premiseType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPremiseType() { + return premiseType; + } + + /** + * Sets the value of the premiseType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPremiseType(String value) { + this.premiseType = value; + } + + /** + * Gets the value of the smallOffice property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSmallOffice() { + return smallOffice; + } + + /** + * Sets the value of the smallOffice property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSmallOffice(String value) { + this.smallOffice = value; + } + + /** + * Gets the value of the faxNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFaxNumber() { + return faxNumber; + } + + /** + * Sets the value of the faxNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFaxNumber(String value) { + this.faxNumber = value; + } + + /** + * Gets the value of the companyType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyType() { + return companyType; + } + + /** + * Sets the value of the companyType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyType(String value) { + this.companyType = value; + } + + /** + * Gets the value of the negativeRating property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNegativeRating() { + return negativeRating; + } + + /** + * Sets the value of the negativeRating property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNegativeRating(String value) { + this.negativeRating = value; + } + + /** + * Gets the value of the complementaryCompany property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getComplementaryCompany() { + return complementaryCompany; + } + + /** + * Sets the value of the complementaryCompany property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setComplementaryCompany(String value) { + this.complementaryCompany = value; + } + + /** + * Gets the value of the businessPurpose property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBusinessPurpose() { + return businessPurpose; + } + + /** + * Sets the value of the businessPurpose property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBusinessPurpose(String value) { + this.businessPurpose = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array.java new file mode 100644 index 0000000..0300608 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDEMiscellaneousV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEOwnerV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEOwnerV2.java new file mode 100644 index 0000000..d4e89c8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEOwnerV2.java @@ -0,0 +1,174 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationDEOwnerV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationDEOwnerV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="postal_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="share_percent" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationDEOwnerV2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationDEOwnerV2 { + + protected String name; + protected String city; + @XmlElement(name = "postal_code") + protected String postalCode; + protected String country; + @XmlElement(name = "share_percent") + protected String sharePercent; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the postalCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostalCode() { + return postalCode; + } + + /** + * Sets the value of the postalCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostalCode(String value) { + this.postalCode = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the sharePercent property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSharePercent() { + return sharePercent; + } + + /** + * Sets the value of the sharePercent property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSharePercent(String value) { + this.sharePercent = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEOwnerV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEOwnerV2Array.java new file mode 100644 index 0000000..e569661 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEOwnerV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationDEOwnerV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationDEOwnerV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDEOwnerV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationDEOwnerV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationDEOwnerV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationDEOwnerV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDETurnoverRangeV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDETurnoverRangeV2.java new file mode 100644 index 0000000..7c9709f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDETurnoverRangeV2.java @@ -0,0 +1,94 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationDETurnoverRangeV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="range" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationDETurnoverRangeV2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 { + + protected BigInteger year; + protected String range; + + /** + * Gets the value of the year property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getYear() { + return year; + } + + /** + * Sets the value of the year property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setYear(BigInteger value) { + this.year = value; + } + + /** + * Gets the value of the range property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRange() { + return range; + } + + /** + * Sets the value of the range property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRange(String value) { + this.range = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array.java new file mode 100644 index 0000000..070c3cc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDETurnoverRangeV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationHistoricalEventV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationHistoricalEventV2.java new file mode 100644 index 0000000..e5698dd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationHistoricalEventV2.java @@ -0,0 +1,151 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationHistoricalEventV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationHistoricalEventV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="previous_value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="current_value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationHistoricalEventV2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationHistoricalEventV2 { + + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar date; + protected String description; + @XmlElement(name = "previous_value") + protected String previousValue; + @XmlElement(name = "current_value") + protected String currentValue; + + /** + * Gets the value of the date property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDate() { + return date; + } + + /** + * Sets the value of the date property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDate(XMLGregorianCalendar value) { + this.date = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the previousValue property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreviousValue() { + return previousValue; + } + + /** + * Sets the value of the previousValue property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreviousValue(String value) { + this.previousValue = value; + } + + /** + * Gets the value of the currentValue property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCurrentValue() { + return currentValue; + } + + /** + * Sets the value of the currentValue property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCurrentValue(String value) { + this.currentValue = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationHistoricalEventV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationHistoricalEventV2Array.java new file mode 100644 index 0000000..d392156 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationHistoricalEventV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationHistoricalEventV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationHistoricalEventV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationHistoricalEventV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationHistoricalEventV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationHistoricalEventV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationHistoricalEventV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2.java new file mode 100644 index 0000000..aad581c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2.java @@ -0,0 +1,283 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="payment_expectations_summary" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2" minOccurs="0"/>
+ *         <element name="miscellaneous" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLMiscellaneousV2" minOccurs="0"/>
+ *         <element name="industy_comparison" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2" minOccurs="0"/>
+ *         <element name="industry_quartile_analysis" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2" minOccurs="0"/>
+ *         <element name="financial_items" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array" minOccurs="0"/>
+ *         <element name="kvk_filings" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array" minOccurs="0"/>
+ *         <element name="letters_of_liablility_information403" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array" minOccurs="0"/>
+ *         <element name="comments" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationCommentV2Array" minOccurs="0"/>
+ *         <element name="historical_events" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationHistoricalEventV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 { + + @XmlElement(name = "payment_expectations_summary") + protected CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 paymentExpectationsSummary; + protected CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 miscellaneous; + @XmlElement(name = "industy_comparison") + protected CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 industyComparison; + @XmlElement(name = "industry_quartile_analysis") + protected CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 industryQuartileAnalysis; + @XmlElement(name = "financial_items") + protected CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array financialItems; + @XmlElement(name = "kvk_filings") + protected CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array kvkFilings; + @XmlElement(name = "letters_of_liablility_information403") + protected CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array lettersOfLiablilityInformation403; + protected CreditsafeCompanyAdditionalInformationCommentV2Array comments; + @XmlElement(name = "historical_events") + protected CreditsafeCompanyAdditionalInformationHistoricalEventV2Array historicalEvents; + + /** + * Gets the value of the paymentExpectationsSummary property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 } + * + */ + public CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 getPaymentExpectationsSummary() { + return paymentExpectationsSummary; + } + + /** + * Sets the value of the paymentExpectationsSummary property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 } + * + */ + public void setPaymentExpectationsSummary(CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 value) { + this.paymentExpectationsSummary = value; + } + + /** + * Gets the value of the miscellaneous property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 } + * + */ + public CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 getMiscellaneous() { + return miscellaneous; + } + + /** + * Sets the value of the miscellaneous property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 } + * + */ + public void setMiscellaneous(CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 value) { + this.miscellaneous = value; + } + + /** + * Gets the value of the industyComparison property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 } + * + */ + public CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 getIndustyComparison() { + return industyComparison; + } + + /** + * Sets the value of the industyComparison property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 } + * + */ + public void setIndustyComparison(CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 value) { + this.industyComparison = value; + } + + /** + * Gets the value of the industryQuartileAnalysis property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 } + * + */ + public CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 getIndustryQuartileAnalysis() { + return industryQuartileAnalysis; + } + + /** + * Sets the value of the industryQuartileAnalysis property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 } + * + */ + public void setIndustryQuartileAnalysis(CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 value) { + this.industryQuartileAnalysis = value; + } + + /** + * Gets the value of the financialItems property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array getFinancialItems() { + return financialItems; + } + + /** + * Sets the value of the financialItems property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array } + * + */ + public void setFinancialItems(CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array value) { + this.financialItems = value; + } + + /** + * Gets the value of the kvkFilings property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array getKvkFilings() { + return kvkFilings; + } + + /** + * Sets the value of the kvkFilings property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array } + * + */ + public void setKvkFilings(CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array value) { + this.kvkFilings = value; + } + + /** + * Gets the value of the lettersOfLiablilityInformation403 property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array } + * + */ + public CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array getLettersOfLiablilityInformation403() { + return lettersOfLiablilityInformation403; + } + + /** + * Sets the value of the lettersOfLiablilityInformation403 property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array } + * + */ + public void setLettersOfLiablilityInformation403(CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array value) { + this.lettersOfLiablilityInformation403 = value; + } + + /** + * Gets the value of the comments property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationCommentV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationCommentV2Array getComments() { + return comments; + } + + /** + * Sets the value of the comments property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationCommentV2Array } + * + */ + public void setComments(CreditsafeCompanyAdditionalInformationCommentV2Array value) { + this.comments = value; + } + + /** + * Gets the value of the historicalEvents property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationHistoricalEventV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationHistoricalEventV2Array getHistoricalEvents() { + return historicalEvents; + } + + /** + * Sets the value of the historicalEvents property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationHistoricalEventV2Array } + * + */ + public void setHistoricalEvents(CreditsafeCompanyAdditionalInformationHistoricalEventV2Array value) { + this.historicalEvents = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array.java new file mode 100644 index 0000000..2a7e410 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLFinancialItemV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLFinancialItemV2.java new file mode 100644 index 0000000..723f6aa --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLFinancialItemV2.java @@ -0,0 +1,125 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLFinancialItemV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLFinancialItemV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="date_year_end" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="judgement" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="consolidated_subsidiaries" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLFinancialItemV2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationNLFinancialItemV2 { + + @XmlElement(name = "date_year_end") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateYearEnd; + protected String judgement; + @XmlElement(name = "consolidated_subsidiaries") + protected String consolidatedSubsidiaries; + + /** + * Gets the value of the dateYearEnd property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateYearEnd() { + return dateYearEnd; + } + + /** + * Sets the value of the dateYearEnd property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateYearEnd(XMLGregorianCalendar value) { + this.dateYearEnd = value; + } + + /** + * Gets the value of the judgement property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getJudgement() { + return judgement; + } + + /** + * Sets the value of the judgement property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setJudgement(String value) { + this.judgement = value; + } + + /** + * Gets the value of the consolidatedSubsidiaries property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getConsolidatedSubsidiaries() { + return consolidatedSubsidiaries; + } + + /** + * Sets the value of the consolidatedSubsidiaries property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setConsolidatedSubsidiaries(String value) { + this.consolidatedSubsidiaries = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array.java new file mode 100644 index 0000000..eee5cc0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLFinancialItemV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationNLFinancialItemV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2.java new file mode 100644 index 0000000..95d6aa8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="industry_average_credit_rating" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="industry_average_credit_limit" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 { + + @XmlElement(name = "industry_average_credit_rating") + protected Float industryAverageCreditRating; + @XmlElement(name = "industry_average_credit_limit") + protected Float industryAverageCreditLimit; + + /** + * Gets the value of the industryAverageCreditRating property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getIndustryAverageCreditRating() { + return industryAverageCreditRating; + } + + /** + * Sets the value of the industryAverageCreditRating property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setIndustryAverageCreditRating(Float value) { + this.industryAverageCreditRating = value; + } + + /** + * Gets the value of the industryAverageCreditLimit property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getIndustryAverageCreditLimit() { + return industryAverageCreditLimit; + } + + /** + * Sets the value of the industryAverageCreditLimit property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setIndustryAverageCreditLimit(Float value) { + this.industryAverageCreditLimit = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array.java new file mode 100644 index 0000000..3dbabfe --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2.java new file mode 100644 index 0000000..0fb71de --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2.java @@ -0,0 +1,119 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="lower" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="median" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="upper" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 { + + protected Float lower; + protected Float median; + protected Float upper; + + /** + * Gets the value of the lower property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getLower() { + return lower; + } + + /** + * Sets the value of the lower property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setLower(Float value) { + this.lower = value; + } + + /** + * Gets the value of the median property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getMedian() { + return median; + } + + /** + * Sets the value of the median property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setMedian(Float value) { + this.median = value; + } + + /** + * Gets the value of the upper property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getUpper() { + return upper; + } + + /** + * Sets the value of the upper property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setUpper(Float value) { + this.upper = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array.java new file mode 100644 index 0000000..45a27f2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2.java new file mode 100644 index 0000000..2b05fe3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="payment_expectation_days" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2" minOccurs="0"/>
+ *         <element name="day_sales_outstanding" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 { + + @XmlElement(name = "payment_expectation_days") + protected CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 paymentExpectationDays; + @XmlElement(name = "day_sales_outstanding") + protected CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 daySalesOutstanding; + + /** + * Gets the value of the paymentExpectationDays property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 } + * + */ + public CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 getPaymentExpectationDays() { + return paymentExpectationDays; + } + + /** + * Sets the value of the paymentExpectationDays property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 } + * + */ + public void setPaymentExpectationDays(CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 value) { + this.paymentExpectationDays = value; + } + + /** + * Gets the value of the daySalesOutstanding property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 } + * + */ + public CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 getDaySalesOutstanding() { + return daySalesOutstanding; + } + + /** + * Sets the value of the daySalesOutstanding property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 } + * + */ + public void setDaySalesOutstanding(CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 value) { + this.daySalesOutstanding = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array.java new file mode 100644 index 0000000..9e8661d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLKvkFilingV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLKvkFilingV2.java new file mode 100644 index 0000000..f8cbf56 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLKvkFilingV2.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLKvkFilingV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLKvkFilingV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="event" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLKvkFilingV2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationNLKvkFilingV2 { + + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar date; + protected String event; + + /** + * Gets the value of the date property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDate() { + return date; + } + + /** + * Sets the value of the date property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDate(XMLGregorianCalendar value) { + this.date = value; + } + + /** + * Gets the value of the event property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEvent() { + return event; + } + + /** + * Sets the value of the event property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEvent(String value) { + this.event = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array.java new file mode 100644 index 0000000..d180e7a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLKvkFilingV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationNLKvkFilingV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2.java new file mode 100644 index 0000000..1544de1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2.java @@ -0,0 +1,602 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="financial_year" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="company_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_submitted" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letter_of_liability1_start_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letter_of_liability1_submitted_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letter_of_liability1_removal_submitted" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letter_of_liability1_removal_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letter_of_liability2_start_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letter_of_liability2_submitted_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letter_of_liability2_removal_submitted" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letter_of_liability2_removal_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letter_of_liability1_start_date_parent2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letter_of_liability1_submitted_date_parent2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letter_of_liability1_removal_submitted_parent2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letter_of_liability1_removal_date_parent2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letter_of_liability2_start_date_parent2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letter_of_liability2_submitted_date_parent2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letter_of_liability2_removal_submitted_parent2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letter_of_liability2_removal_date_parent2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2 { + + @XmlElement(name = "financial_year") + protected BigInteger financialYear; + @XmlElement(name = "company_name") + protected String companyName; + @XmlElement(name = "company_number") + protected String companyNumber; + @XmlElement(name = "date_submitted") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateSubmitted; + @XmlElement(name = "letter_of_liability1_start_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar letterOfLiability1StartDate; + @XmlElement(name = "letter_of_liability1_submitted_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar letterOfLiability1SubmittedDate; + @XmlElement(name = "letter_of_liability1_removal_submitted") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar letterOfLiability1RemovalSubmitted; + @XmlElement(name = "letter_of_liability1_removal_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar letterOfLiability1RemovalDate; + @XmlElement(name = "letter_of_liability2_start_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar letterOfLiability2StartDate; + @XmlElement(name = "letter_of_liability2_submitted_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar letterOfLiability2SubmittedDate; + @XmlElement(name = "letter_of_liability2_removal_submitted") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar letterOfLiability2RemovalSubmitted; + @XmlElement(name = "letter_of_liability2_removal_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar letterOfLiability2RemovalDate; + @XmlElement(name = "letter_of_liability1_start_date_parent2") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar letterOfLiability1StartDateParent2; + @XmlElement(name = "letter_of_liability1_submitted_date_parent2") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar letterOfLiability1SubmittedDateParent2; + @XmlElement(name = "letter_of_liability1_removal_submitted_parent2") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar letterOfLiability1RemovalSubmittedParent2; + @XmlElement(name = "letter_of_liability1_removal_date_parent2") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar letterOfLiability1RemovalDateParent2; + @XmlElement(name = "letter_of_liability2_start_date_parent2") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar letterOfLiability2StartDateParent2; + @XmlElement(name = "letter_of_liability2_submitted_date_parent2") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar letterOfLiability2SubmittedDateParent2; + @XmlElement(name = "letter_of_liability2_removal_submitted_parent2") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar letterOfLiability2RemovalSubmittedParent2; + @XmlElement(name = "letter_of_liability2_removal_date_parent2") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar letterOfLiability2RemovalDateParent2; + + /** + * Gets the value of the financialYear property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getFinancialYear() { + return financialYear; + } + + /** + * Sets the value of the financialYear property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setFinancialYear(BigInteger value) { + this.financialYear = value; + } + + /** + * Gets the value of the companyName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyName() { + return companyName; + } + + /** + * Sets the value of the companyName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyName(String value) { + this.companyName = value; + } + + /** + * Gets the value of the companyNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyNumber() { + return companyNumber; + } + + /** + * Sets the value of the companyNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyNumber(String value) { + this.companyNumber = value; + } + + /** + * Gets the value of the dateSubmitted property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateSubmitted() { + return dateSubmitted; + } + + /** + * Sets the value of the dateSubmitted property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateSubmitted(XMLGregorianCalendar value) { + this.dateSubmitted = value; + } + + /** + * Gets the value of the letterOfLiability1StartDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLetterOfLiability1StartDate() { + return letterOfLiability1StartDate; + } + + /** + * Sets the value of the letterOfLiability1StartDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLetterOfLiability1StartDate(XMLGregorianCalendar value) { + this.letterOfLiability1StartDate = value; + } + + /** + * Gets the value of the letterOfLiability1SubmittedDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLetterOfLiability1SubmittedDate() { + return letterOfLiability1SubmittedDate; + } + + /** + * Sets the value of the letterOfLiability1SubmittedDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLetterOfLiability1SubmittedDate(XMLGregorianCalendar value) { + this.letterOfLiability1SubmittedDate = value; + } + + /** + * Gets the value of the letterOfLiability1RemovalSubmitted property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLetterOfLiability1RemovalSubmitted() { + return letterOfLiability1RemovalSubmitted; + } + + /** + * Sets the value of the letterOfLiability1RemovalSubmitted property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLetterOfLiability1RemovalSubmitted(XMLGregorianCalendar value) { + this.letterOfLiability1RemovalSubmitted = value; + } + + /** + * Gets the value of the letterOfLiability1RemovalDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLetterOfLiability1RemovalDate() { + return letterOfLiability1RemovalDate; + } + + /** + * Sets the value of the letterOfLiability1RemovalDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLetterOfLiability1RemovalDate(XMLGregorianCalendar value) { + this.letterOfLiability1RemovalDate = value; + } + + /** + * Gets the value of the letterOfLiability2StartDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLetterOfLiability2StartDate() { + return letterOfLiability2StartDate; + } + + /** + * Sets the value of the letterOfLiability2StartDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLetterOfLiability2StartDate(XMLGregorianCalendar value) { + this.letterOfLiability2StartDate = value; + } + + /** + * Gets the value of the letterOfLiability2SubmittedDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLetterOfLiability2SubmittedDate() { + return letterOfLiability2SubmittedDate; + } + + /** + * Sets the value of the letterOfLiability2SubmittedDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLetterOfLiability2SubmittedDate(XMLGregorianCalendar value) { + this.letterOfLiability2SubmittedDate = value; + } + + /** + * Gets the value of the letterOfLiability2RemovalSubmitted property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLetterOfLiability2RemovalSubmitted() { + return letterOfLiability2RemovalSubmitted; + } + + /** + * Sets the value of the letterOfLiability2RemovalSubmitted property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLetterOfLiability2RemovalSubmitted(XMLGregorianCalendar value) { + this.letterOfLiability2RemovalSubmitted = value; + } + + /** + * Gets the value of the letterOfLiability2RemovalDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLetterOfLiability2RemovalDate() { + return letterOfLiability2RemovalDate; + } + + /** + * Sets the value of the letterOfLiability2RemovalDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLetterOfLiability2RemovalDate(XMLGregorianCalendar value) { + this.letterOfLiability2RemovalDate = value; + } + + /** + * Gets the value of the letterOfLiability1StartDateParent2 property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLetterOfLiability1StartDateParent2() { + return letterOfLiability1StartDateParent2; + } + + /** + * Sets the value of the letterOfLiability1StartDateParent2 property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLetterOfLiability1StartDateParent2(XMLGregorianCalendar value) { + this.letterOfLiability1StartDateParent2 = value; + } + + /** + * Gets the value of the letterOfLiability1SubmittedDateParent2 property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLetterOfLiability1SubmittedDateParent2() { + return letterOfLiability1SubmittedDateParent2; + } + + /** + * Sets the value of the letterOfLiability1SubmittedDateParent2 property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLetterOfLiability1SubmittedDateParent2(XMLGregorianCalendar value) { + this.letterOfLiability1SubmittedDateParent2 = value; + } + + /** + * Gets the value of the letterOfLiability1RemovalSubmittedParent2 property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLetterOfLiability1RemovalSubmittedParent2() { + return letterOfLiability1RemovalSubmittedParent2; + } + + /** + * Sets the value of the letterOfLiability1RemovalSubmittedParent2 property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLetterOfLiability1RemovalSubmittedParent2(XMLGregorianCalendar value) { + this.letterOfLiability1RemovalSubmittedParent2 = value; + } + + /** + * Gets the value of the letterOfLiability1RemovalDateParent2 property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLetterOfLiability1RemovalDateParent2() { + return letterOfLiability1RemovalDateParent2; + } + + /** + * Sets the value of the letterOfLiability1RemovalDateParent2 property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLetterOfLiability1RemovalDateParent2(XMLGregorianCalendar value) { + this.letterOfLiability1RemovalDateParent2 = value; + } + + /** + * Gets the value of the letterOfLiability2StartDateParent2 property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLetterOfLiability2StartDateParent2() { + return letterOfLiability2StartDateParent2; + } + + /** + * Sets the value of the letterOfLiability2StartDateParent2 property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLetterOfLiability2StartDateParent2(XMLGregorianCalendar value) { + this.letterOfLiability2StartDateParent2 = value; + } + + /** + * Gets the value of the letterOfLiability2SubmittedDateParent2 property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLetterOfLiability2SubmittedDateParent2() { + return letterOfLiability2SubmittedDateParent2; + } + + /** + * Sets the value of the letterOfLiability2SubmittedDateParent2 property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLetterOfLiability2SubmittedDateParent2(XMLGregorianCalendar value) { + this.letterOfLiability2SubmittedDateParent2 = value; + } + + /** + * Gets the value of the letterOfLiability2RemovalSubmittedParent2 property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLetterOfLiability2RemovalSubmittedParent2() { + return letterOfLiability2RemovalSubmittedParent2; + } + + /** + * Sets the value of the letterOfLiability2RemovalSubmittedParent2 property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLetterOfLiability2RemovalSubmittedParent2(XMLGregorianCalendar value) { + this.letterOfLiability2RemovalSubmittedParent2 = value; + } + + /** + * Gets the value of the letterOfLiability2RemovalDateParent2 property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLetterOfLiability2RemovalDateParent2() { + return letterOfLiability2RemovalDateParent2; + } + + /** + * Sets the value of the letterOfLiability2RemovalDateParent2 property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLetterOfLiability2RemovalDateParent2(XMLGregorianCalendar value) { + this.letterOfLiability2RemovalDateParent2 = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array.java new file mode 100644 index 0000000..ef0b83a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLMiscellaneousV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLMiscellaneousV2.java new file mode 100644 index 0000000..65dc24a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLMiscellaneousV2.java @@ -0,0 +1,234 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLMiscellaneousV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="date_of_legal_form" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="date_of_cessation_trading" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="exporter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="importer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="branch_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="negative_rating" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLMiscellaneousV2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 { + + @XmlElement(name = "date_of_legal_form") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateOfLegalForm; + @XmlElement(name = "date_of_cessation_trading") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateOfCessationTrading; + protected String exporter; + protected String importer; + @XmlElement(name = "rsin_number") + protected String rsinNumber; + @XmlElement(name = "branch_number") + protected String branchNumber; + @XmlElement(name = "negative_rating") + protected BigInteger negativeRating; + + /** + * Gets the value of the dateOfLegalForm property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfLegalForm() { + return dateOfLegalForm; + } + + /** + * Sets the value of the dateOfLegalForm property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfLegalForm(XMLGregorianCalendar value) { + this.dateOfLegalForm = value; + } + + /** + * Gets the value of the dateOfCessationTrading property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfCessationTrading() { + return dateOfCessationTrading; + } + + /** + * Sets the value of the dateOfCessationTrading property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfCessationTrading(XMLGregorianCalendar value) { + this.dateOfCessationTrading = value; + } + + /** + * Gets the value of the exporter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getExporter() { + return exporter; + } + + /** + * Sets the value of the exporter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setExporter(String value) { + this.exporter = value; + } + + /** + * Gets the value of the importer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getImporter() { + return importer; + } + + /** + * Sets the value of the importer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setImporter(String value) { + this.importer = value; + } + + /** + * Gets the value of the rsinNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsinNumber() { + return rsinNumber; + } + + /** + * Sets the value of the rsinNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsinNumber(String value) { + this.rsinNumber = value; + } + + /** + * Gets the value of the branchNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBranchNumber() { + return branchNumber; + } + + /** + * Sets the value of the branchNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBranchNumber(String value) { + this.branchNumber = value; + } + + /** + * Gets the value of the negativeRating property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getNegativeRating() { + return negativeRating; + } + + /** + * Sets the value of the negativeRating property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setNegativeRating(BigInteger value) { + this.negativeRating = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array.java new file mode 100644 index 0000000..d880d09 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLMiscellaneousV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2.java new file mode 100644 index 0000000..a047922 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2.java @@ -0,0 +1,178 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="suspension_of_payments_mora" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="payment_expectation_days" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="day_sales_outstanding" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="industry_average_payment_expectation_days" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="industry_average_day_sales_outstanding" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 { + + @XmlElement(name = "suspension_of_payments_mora") + protected String suspensionOfPaymentsMora; + @XmlElement(name = "payment_expectation_days") + protected BigInteger paymentExpectationDays; + @XmlElement(name = "day_sales_outstanding") + protected BigInteger daySalesOutstanding; + @XmlElement(name = "industry_average_payment_expectation_days") + protected BigInteger industryAveragePaymentExpectationDays; + @XmlElement(name = "industry_average_day_sales_outstanding") + protected BigInteger industryAverageDaySalesOutstanding; + + /** + * Gets the value of the suspensionOfPaymentsMora property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSuspensionOfPaymentsMora() { + return suspensionOfPaymentsMora; + } + + /** + * Sets the value of the suspensionOfPaymentsMora property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSuspensionOfPaymentsMora(String value) { + this.suspensionOfPaymentsMora = value; + } + + /** + * Gets the value of the paymentExpectationDays property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getPaymentExpectationDays() { + return paymentExpectationDays; + } + + /** + * Sets the value of the paymentExpectationDays property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setPaymentExpectationDays(BigInteger value) { + this.paymentExpectationDays = value; + } + + /** + * Gets the value of the daySalesOutstanding property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDaySalesOutstanding() { + return daySalesOutstanding; + } + + /** + * Sets the value of the daySalesOutstanding property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDaySalesOutstanding(BigInteger value) { + this.daySalesOutstanding = value; + } + + /** + * Gets the value of the industryAveragePaymentExpectationDays property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getIndustryAveragePaymentExpectationDays() { + return industryAveragePaymentExpectationDays; + } + + /** + * Sets the value of the industryAveragePaymentExpectationDays property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setIndustryAveragePaymentExpectationDays(BigInteger value) { + this.industryAveragePaymentExpectationDays = value; + } + + /** + * Gets the value of the industryAverageDaySalesOutstanding property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getIndustryAverageDaySalesOutstanding() { + return industryAverageDaySalesOutstanding; + } + + /** + * Sets the value of the industryAverageDaySalesOutstanding property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setIndustryAverageDaySalesOutstanding(BigInteger value) { + this.industryAverageDaySalesOutstanding = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array.java new file mode 100644 index 0000000..19e0a7b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationV2.java new file mode 100644 index 0000000..d2f7e03 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationV2.java @@ -0,0 +1,119 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="de" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2" minOccurs="0"/>
+ *         <element name="nl" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2" minOccurs="0"/>
+ *         <element name="generic" type="{http://www.webservices.nl/soap/}CreditsafeCompanyKeyValueV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationV2", propOrder = { + +}) +public class CreditsafeCompanyAdditionalInformationV2 { + + protected CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 de; + protected CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 nl; + protected CreditsafeCompanyKeyValueV2Array generic; + + /** + * Gets the value of the de property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 } + * + */ + public CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 getDe() { + return de; + } + + /** + * Sets the value of the de property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 } + * + */ + public void setDe(CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 value) { + this.de = value; + } + + /** + * Gets the value of the nl property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 } + * + */ + public CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 getNl() { + return nl; + } + + /** + * Sets the value of the nl property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 } + * + */ + public void setNl(CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 value) { + this.nl = value; + } + + /** + * Gets the value of the generic property. + * + * @return + * possible object is + * {@link CreditsafeCompanyKeyValueV2Array } + * + */ + public CreditsafeCompanyKeyValueV2Array getGeneric() { + return generic; + } + + /** + * Sets the value of the generic property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyKeyValueV2Array } + * + */ + public void setGeneric(CreditsafeCompanyKeyValueV2Array value) { + this.generic = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationV2Array.java new file mode 100644 index 0000000..cd12888 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdditionalInformationV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdditionalInformationV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdditionalInformationV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdditionalInformationV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdditionalInformationV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdvisorV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdvisorV2.java new file mode 100644 index 0000000..32ee101 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdvisorV2.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdvisorV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdvisorV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="auditor_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="solicitor_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdvisorV2", propOrder = { + +}) +public class CreditsafeCompanyAdvisorV2 { + + @XmlElement(name = "auditor_name") + protected String auditorName; + @XmlElement(name = "solicitor_name") + protected String solicitorName; + + /** + * Gets the value of the auditorName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAuditorName() { + return auditorName; + } + + /** + * Sets the value of the auditorName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAuditorName(String value) { + this.auditorName = value; + } + + /** + * Gets the value of the solicitorName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSolicitorName() { + return solicitorName; + } + + /** + * Sets the value of the solicitorName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSolicitorName(String value) { + this.solicitorName = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdvisorV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdvisorV2Array.java new file mode 100644 index 0000000..1837db0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdvisorV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyAdvisorV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyAdvisorV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdvisorV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyAdvisorV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyAdvisorV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyAdvisorV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyArray.java new file mode 100644 index 0000000..f2cf555 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyArray complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompany" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyArray", propOrder = { + "item" +}) +public class CreditsafeCompanyArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompany } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBalanceSheetV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBalanceSheetV2.java new file mode 100644 index 0000000..8cdf0b9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBalanceSheetV2.java @@ -0,0 +1,1281 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyBalanceSheetV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyBalanceSheetV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bank_liabilities" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="bank_liabilities_due_after1year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="called_up_share_capital" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="cash" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="consolidated_accounts" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="finished_goods" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="goodwill" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="group_payables" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="group_payables_due_after1year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="group_receivables" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="investments" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="land_and_buildings" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="loans_to_group" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="miscellaneous_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="miscellaneous_liabilities" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="miscellaneous_liabilities_due_after1_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="miscellaneous_receivables" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="other_current_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="other_intangible_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="other_inventories" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="other_loans" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="other_loans_or_finance" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="other_loans_or_finance_due_after1_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="other_reserves" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="other_tangible_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="plant_and_machinery" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="raw_materials" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="receivables_due_after1year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="revenue_reserves" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="share_premium" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_current_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_current_liabilities" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_intangible_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_inventories" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_liabilities" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_long_term_liabilities" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_other_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_receivables" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_shareholders_equity" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_tangible_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="trade_payables" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="trade_payables_due_after1year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="trade_receivables" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="work_in_progress" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyBalanceSheetV2", propOrder = { + +}) +public class CreditsafeCompanyBalanceSheetV2 { + + @XmlElement(name = "bank_liabilities") + protected Integer bankLiabilities; + @XmlElement(name = "bank_liabilities_due_after1year") + protected Integer bankLiabilitiesDueAfter1Year; + @XmlElement(name = "called_up_share_capital") + protected Integer calledUpShareCapital; + protected Integer cash; + @XmlElement(name = "consolidated_accounts") + protected Integer consolidatedAccounts; + @XmlElement(name = "finished_goods") + protected Integer finishedGoods; + protected Integer goodwill; + @XmlElement(name = "group_payables") + protected Integer groupPayables; + @XmlElement(name = "group_payables_due_after1year") + protected Integer groupPayablesDueAfter1Year; + @XmlElement(name = "group_receivables") + protected Integer groupReceivables; + protected Integer investments; + @XmlElement(name = "land_and_buildings") + protected Integer landAndBuildings; + @XmlElement(name = "loans_to_group") + protected Integer loansToGroup; + @XmlElement(name = "miscellaneous_fixed_assets") + protected Integer miscellaneousFixedAssets; + @XmlElement(name = "miscellaneous_liabilities") + protected Integer miscellaneousLiabilities; + @XmlElement(name = "miscellaneous_liabilities_due_after1_year") + protected Integer miscellaneousLiabilitiesDueAfter1Year; + @XmlElement(name = "miscellaneous_receivables") + protected Integer miscellaneousReceivables; + @XmlElement(name = "other_current_assets") + protected Integer otherCurrentAssets; + @XmlElement(name = "other_intangible_assets") + protected Integer otherIntangibleAssets; + @XmlElement(name = "other_inventories") + protected Integer otherInventories; + @XmlElement(name = "other_loans") + protected Integer otherLoans; + @XmlElement(name = "other_loans_or_finance") + protected Integer otherLoansOrFinance; + @XmlElement(name = "other_loans_or_finance_due_after1_year") + protected Integer otherLoansOrFinanceDueAfter1Year; + @XmlElement(name = "other_reserves") + protected Integer otherReserves; + @XmlElement(name = "other_tangible_assets") + protected Integer otherTangibleAssets; + @XmlElement(name = "plant_and_machinery") + protected Integer plantAndMachinery; + @XmlElement(name = "raw_materials") + protected Integer rawMaterials; + @XmlElement(name = "receivables_due_after1year") + protected Integer receivablesDueAfter1Year; + @XmlElement(name = "revenue_reserves") + protected Integer revenueReserves; + @XmlElement(name = "share_premium") + protected Integer sharePremium; + @XmlElement(name = "total_assets") + protected Integer totalAssets; + @XmlElement(name = "total_current_assets") + protected Integer totalCurrentAssets; + @XmlElement(name = "total_current_liabilities") + protected Integer totalCurrentLiabilities; + @XmlElement(name = "total_fixed_assets") + protected Integer totalFixedAssets; + @XmlElement(name = "total_intangible_assets") + protected Integer totalIntangibleAssets; + @XmlElement(name = "total_inventories") + protected Integer totalInventories; + @XmlElement(name = "total_liabilities") + protected Integer totalLiabilities; + @XmlElement(name = "total_long_term_liabilities") + protected Integer totalLongTermLiabilities; + @XmlElement(name = "total_other_fixed_assets") + protected Integer totalOtherFixedAssets; + @XmlElement(name = "total_receivables") + protected Integer totalReceivables; + @XmlElement(name = "total_shareholders_equity") + protected Integer totalShareholdersEquity; + @XmlElement(name = "total_tangible_assets") + protected Integer totalTangibleAssets; + @XmlElement(name = "trade_payables") + protected Integer tradePayables; + @XmlElement(name = "trade_payables_due_after1year") + protected Integer tradePayablesDueAfter1Year; + @XmlElement(name = "trade_receivables") + protected Integer tradeReceivables; + @XmlElement(name = "work_in_progress") + protected Integer workInProgress; + + /** + * Gets the value of the bankLiabilities property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getBankLiabilities() { + return bankLiabilities; + } + + /** + * Sets the value of the bankLiabilities property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setBankLiabilities(Integer value) { + this.bankLiabilities = value; + } + + /** + * Gets the value of the bankLiabilitiesDueAfter1Year property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getBankLiabilitiesDueAfter1Year() { + return bankLiabilitiesDueAfter1Year; + } + + /** + * Sets the value of the bankLiabilitiesDueAfter1Year property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setBankLiabilitiesDueAfter1Year(Integer value) { + this.bankLiabilitiesDueAfter1Year = value; + } + + /** + * Gets the value of the calledUpShareCapital property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCalledUpShareCapital() { + return calledUpShareCapital; + } + + /** + * Sets the value of the calledUpShareCapital property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCalledUpShareCapital(Integer value) { + this.calledUpShareCapital = value; + } + + /** + * Gets the value of the cash property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCash() { + return cash; + } + + /** + * Sets the value of the cash property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCash(Integer value) { + this.cash = value; + } + + /** + * Gets the value of the consolidatedAccounts property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getConsolidatedAccounts() { + return consolidatedAccounts; + } + + /** + * Sets the value of the consolidatedAccounts property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setConsolidatedAccounts(Integer value) { + this.consolidatedAccounts = value; + } + + /** + * Gets the value of the finishedGoods property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getFinishedGoods() { + return finishedGoods; + } + + /** + * Sets the value of the finishedGoods property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setFinishedGoods(Integer value) { + this.finishedGoods = value; + } + + /** + * Gets the value of the goodwill property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getGoodwill() { + return goodwill; + } + + /** + * Sets the value of the goodwill property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setGoodwill(Integer value) { + this.goodwill = value; + } + + /** + * Gets the value of the groupPayables property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getGroupPayables() { + return groupPayables; + } + + /** + * Sets the value of the groupPayables property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setGroupPayables(Integer value) { + this.groupPayables = value; + } + + /** + * Gets the value of the groupPayablesDueAfter1Year property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getGroupPayablesDueAfter1Year() { + return groupPayablesDueAfter1Year; + } + + /** + * Sets the value of the groupPayablesDueAfter1Year property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setGroupPayablesDueAfter1Year(Integer value) { + this.groupPayablesDueAfter1Year = value; + } + + /** + * Gets the value of the groupReceivables property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getGroupReceivables() { + return groupReceivables; + } + + /** + * Sets the value of the groupReceivables property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setGroupReceivables(Integer value) { + this.groupReceivables = value; + } + + /** + * Gets the value of the investments property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getInvestments() { + return investments; + } + + /** + * Sets the value of the investments property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setInvestments(Integer value) { + this.investments = value; + } + + /** + * Gets the value of the landAndBuildings property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getLandAndBuildings() { + return landAndBuildings; + } + + /** + * Sets the value of the landAndBuildings property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setLandAndBuildings(Integer value) { + this.landAndBuildings = value; + } + + /** + * Gets the value of the loansToGroup property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getLoansToGroup() { + return loansToGroup; + } + + /** + * Sets the value of the loansToGroup property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setLoansToGroup(Integer value) { + this.loansToGroup = value; + } + + /** + * Gets the value of the miscellaneousFixedAssets property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMiscellaneousFixedAssets() { + return miscellaneousFixedAssets; + } + + /** + * Sets the value of the miscellaneousFixedAssets property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMiscellaneousFixedAssets(Integer value) { + this.miscellaneousFixedAssets = value; + } + + /** + * Gets the value of the miscellaneousLiabilities property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMiscellaneousLiabilities() { + return miscellaneousLiabilities; + } + + /** + * Sets the value of the miscellaneousLiabilities property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMiscellaneousLiabilities(Integer value) { + this.miscellaneousLiabilities = value; + } + + /** + * Gets the value of the miscellaneousLiabilitiesDueAfter1Year property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMiscellaneousLiabilitiesDueAfter1Year() { + return miscellaneousLiabilitiesDueAfter1Year; + } + + /** + * Sets the value of the miscellaneousLiabilitiesDueAfter1Year property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMiscellaneousLiabilitiesDueAfter1Year(Integer value) { + this.miscellaneousLiabilitiesDueAfter1Year = value; + } + + /** + * Gets the value of the miscellaneousReceivables property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMiscellaneousReceivables() { + return miscellaneousReceivables; + } + + /** + * Sets the value of the miscellaneousReceivables property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMiscellaneousReceivables(Integer value) { + this.miscellaneousReceivables = value; + } + + /** + * Gets the value of the otherCurrentAssets property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getOtherCurrentAssets() { + return otherCurrentAssets; + } + + /** + * Sets the value of the otherCurrentAssets property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setOtherCurrentAssets(Integer value) { + this.otherCurrentAssets = value; + } + + /** + * Gets the value of the otherIntangibleAssets property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getOtherIntangibleAssets() { + return otherIntangibleAssets; + } + + /** + * Sets the value of the otherIntangibleAssets property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setOtherIntangibleAssets(Integer value) { + this.otherIntangibleAssets = value; + } + + /** + * Gets the value of the otherInventories property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getOtherInventories() { + return otherInventories; + } + + /** + * Sets the value of the otherInventories property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setOtherInventories(Integer value) { + this.otherInventories = value; + } + + /** + * Gets the value of the otherLoans property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getOtherLoans() { + return otherLoans; + } + + /** + * Sets the value of the otherLoans property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setOtherLoans(Integer value) { + this.otherLoans = value; + } + + /** + * Gets the value of the otherLoansOrFinance property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getOtherLoansOrFinance() { + return otherLoansOrFinance; + } + + /** + * Sets the value of the otherLoansOrFinance property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setOtherLoansOrFinance(Integer value) { + this.otherLoansOrFinance = value; + } + + /** + * Gets the value of the otherLoansOrFinanceDueAfter1Year property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getOtherLoansOrFinanceDueAfter1Year() { + return otherLoansOrFinanceDueAfter1Year; + } + + /** + * Sets the value of the otherLoansOrFinanceDueAfter1Year property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setOtherLoansOrFinanceDueAfter1Year(Integer value) { + this.otherLoansOrFinanceDueAfter1Year = value; + } + + /** + * Gets the value of the otherReserves property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getOtherReserves() { + return otherReserves; + } + + /** + * Sets the value of the otherReserves property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setOtherReserves(Integer value) { + this.otherReserves = value; + } + + /** + * Gets the value of the otherTangibleAssets property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getOtherTangibleAssets() { + return otherTangibleAssets; + } + + /** + * Sets the value of the otherTangibleAssets property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setOtherTangibleAssets(Integer value) { + this.otherTangibleAssets = value; + } + + /** + * Gets the value of the plantAndMachinery property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPlantAndMachinery() { + return plantAndMachinery; + } + + /** + * Sets the value of the plantAndMachinery property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPlantAndMachinery(Integer value) { + this.plantAndMachinery = value; + } + + /** + * Gets the value of the rawMaterials property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getRawMaterials() { + return rawMaterials; + } + + /** + * Sets the value of the rawMaterials property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setRawMaterials(Integer value) { + this.rawMaterials = value; + } + + /** + * Gets the value of the receivablesDueAfter1Year property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getReceivablesDueAfter1Year() { + return receivablesDueAfter1Year; + } + + /** + * Sets the value of the receivablesDueAfter1Year property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setReceivablesDueAfter1Year(Integer value) { + this.receivablesDueAfter1Year = value; + } + + /** + * Gets the value of the revenueReserves property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getRevenueReserves() { + return revenueReserves; + } + + /** + * Sets the value of the revenueReserves property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setRevenueReserves(Integer value) { + this.revenueReserves = value; + } + + /** + * Gets the value of the sharePremium property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getSharePremium() { + return sharePremium; + } + + /** + * Sets the value of the sharePremium property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setSharePremium(Integer value) { + this.sharePremium = value; + } + + /** + * Gets the value of the totalAssets property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalAssets() { + return totalAssets; + } + + /** + * Sets the value of the totalAssets property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalAssets(Integer value) { + this.totalAssets = value; + } + + /** + * Gets the value of the totalCurrentAssets property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalCurrentAssets() { + return totalCurrentAssets; + } + + /** + * Sets the value of the totalCurrentAssets property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalCurrentAssets(Integer value) { + this.totalCurrentAssets = value; + } + + /** + * Gets the value of the totalCurrentLiabilities property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalCurrentLiabilities() { + return totalCurrentLiabilities; + } + + /** + * Sets the value of the totalCurrentLiabilities property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalCurrentLiabilities(Integer value) { + this.totalCurrentLiabilities = value; + } + + /** + * Gets the value of the totalFixedAssets property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalFixedAssets() { + return totalFixedAssets; + } + + /** + * Sets the value of the totalFixedAssets property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalFixedAssets(Integer value) { + this.totalFixedAssets = value; + } + + /** + * Gets the value of the totalIntangibleAssets property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalIntangibleAssets() { + return totalIntangibleAssets; + } + + /** + * Sets the value of the totalIntangibleAssets property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalIntangibleAssets(Integer value) { + this.totalIntangibleAssets = value; + } + + /** + * Gets the value of the totalInventories property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalInventories() { + return totalInventories; + } + + /** + * Sets the value of the totalInventories property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalInventories(Integer value) { + this.totalInventories = value; + } + + /** + * Gets the value of the totalLiabilities property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalLiabilities() { + return totalLiabilities; + } + + /** + * Sets the value of the totalLiabilities property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalLiabilities(Integer value) { + this.totalLiabilities = value; + } + + /** + * Gets the value of the totalLongTermLiabilities property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalLongTermLiabilities() { + return totalLongTermLiabilities; + } + + /** + * Sets the value of the totalLongTermLiabilities property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalLongTermLiabilities(Integer value) { + this.totalLongTermLiabilities = value; + } + + /** + * Gets the value of the totalOtherFixedAssets property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalOtherFixedAssets() { + return totalOtherFixedAssets; + } + + /** + * Sets the value of the totalOtherFixedAssets property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalOtherFixedAssets(Integer value) { + this.totalOtherFixedAssets = value; + } + + /** + * Gets the value of the totalReceivables property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalReceivables() { + return totalReceivables; + } + + /** + * Sets the value of the totalReceivables property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalReceivables(Integer value) { + this.totalReceivables = value; + } + + /** + * Gets the value of the totalShareholdersEquity property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalShareholdersEquity() { + return totalShareholdersEquity; + } + + /** + * Sets the value of the totalShareholdersEquity property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalShareholdersEquity(Integer value) { + this.totalShareholdersEquity = value; + } + + /** + * Gets the value of the totalTangibleAssets property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalTangibleAssets() { + return totalTangibleAssets; + } + + /** + * Sets the value of the totalTangibleAssets property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalTangibleAssets(Integer value) { + this.totalTangibleAssets = value; + } + + /** + * Gets the value of the tradePayables property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTradePayables() { + return tradePayables; + } + + /** + * Sets the value of the tradePayables property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTradePayables(Integer value) { + this.tradePayables = value; + } + + /** + * Gets the value of the tradePayablesDueAfter1Year property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTradePayablesDueAfter1Year() { + return tradePayablesDueAfter1Year; + } + + /** + * Sets the value of the tradePayablesDueAfter1Year property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTradePayablesDueAfter1Year(Integer value) { + this.tradePayablesDueAfter1Year = value; + } + + /** + * Gets the value of the tradeReceivables property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTradeReceivables() { + return tradeReceivables; + } + + /** + * Sets the value of the tradeReceivables property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTradeReceivables(Integer value) { + this.tradeReceivables = value; + } + + /** + * Gets the value of the workInProgress property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getWorkInProgress() { + return workInProgress; + } + + /** + * Sets the value of the workInProgress property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setWorkInProgress(Integer value) { + this.workInProgress = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBalanceSheetV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBalanceSheetV2Array.java new file mode 100644 index 0000000..75247f7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBalanceSheetV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyBalanceSheetV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyBalanceSheetV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyBalanceSheetV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyBalanceSheetV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyBalanceSheetV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyBalanceSheetV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBankerV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBankerV2.java new file mode 100644 index 0000000..e352515 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBankerV2.java @@ -0,0 +1,121 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyBankerV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyBankerV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" minOccurs="0"/>
+ *         <element name="bank_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyBankerV2", propOrder = { + +}) +public class CreditsafeCompanyBankerV2 { + + protected CreditsafeAddressV2 address; + @XmlElement(name = "bank_code") + protected String bankCode; + protected String name; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link CreditsafeAddressV2 } + * + */ + public CreditsafeAddressV2 getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link CreditsafeAddressV2 } + * + */ + public void setAddress(CreditsafeAddressV2 value) { + this.address = value; + } + + /** + * Gets the value of the bankCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBankCode() { + return bankCode; + } + + /** + * Sets the value of the bankCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBankCode(String value) { + this.bankCode = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBankerV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBankerV2Array.java new file mode 100644 index 0000000..e59c348 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBankerV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyBankerV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyBankerV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyBankerV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyBankerV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyBankerV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyBankerV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBasicInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBasicInformationV2.java new file mode 100644 index 0000000..f131f12 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBasicInformationV2.java @@ -0,0 +1,342 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeCompanyBasicInformationV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyBasicInformationV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_status" type="{http://www.webservices.nl/soap/}CreditsafeCompanyStatusV2" minOccurs="0"/>
+ *         <element name="contact_address" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" minOccurs="0"/>
+ *         <element name="legal_form" type="{http://www.webservices.nl/soap/}CreditsafeDescriptionV2" minOccurs="0"/>
+ *         <element name="principal_activity" type="{http://www.webservices.nl/soap/}CreditsafeDescriptionV2" minOccurs="0"/>
+ *         <element name="business_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="company_registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="dateof_company_registration" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="dateof_starting_operations" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="registered_company_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="vat_registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyBasicInformationV2", propOrder = { + +}) +public class CreditsafeCompanyBasicInformationV2 { + + @XmlElement(name = "company_status") + protected CreditsafeCompanyStatusV2 companyStatus; + @XmlElement(name = "contact_address") + protected CreditsafeAddressV2 contactAddress; + @XmlElement(name = "legal_form") + protected CreditsafeDescriptionV2 legalForm; + @XmlElement(name = "principal_activity") + protected CreditsafeDescriptionV2 principalActivity; + @XmlElement(name = "business_name") + protected String businessName; + @XmlElement(name = "company_registration_number") + protected String companyRegistrationNumber; + protected String country; + @XmlElement(name = "dateof_company_registration") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateofCompanyRegistration; + @XmlElement(name = "dateof_starting_operations") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateofStartingOperations; + @XmlElement(name = "registered_company_name") + protected String registeredCompanyName; + @XmlElement(name = "vat_registration_number") + protected String vatRegistrationNumber; + + /** + * Gets the value of the companyStatus property. + * + * @return + * possible object is + * {@link CreditsafeCompanyStatusV2 } + * + */ + public CreditsafeCompanyStatusV2 getCompanyStatus() { + return companyStatus; + } + + /** + * Sets the value of the companyStatus property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyStatusV2 } + * + */ + public void setCompanyStatus(CreditsafeCompanyStatusV2 value) { + this.companyStatus = value; + } + + /** + * Gets the value of the contactAddress property. + * + * @return + * possible object is + * {@link CreditsafeAddressV2 } + * + */ + public CreditsafeAddressV2 getContactAddress() { + return contactAddress; + } + + /** + * Sets the value of the contactAddress property. + * + * @param value + * allowed object is + * {@link CreditsafeAddressV2 } + * + */ + public void setContactAddress(CreditsafeAddressV2 value) { + this.contactAddress = value; + } + + /** + * Gets the value of the legalForm property. + * + * @return + * possible object is + * {@link CreditsafeDescriptionV2 } + * + */ + public CreditsafeDescriptionV2 getLegalForm() { + return legalForm; + } + + /** + * Sets the value of the legalForm property. + * + * @param value + * allowed object is + * {@link CreditsafeDescriptionV2 } + * + */ + public void setLegalForm(CreditsafeDescriptionV2 value) { + this.legalForm = value; + } + + /** + * Gets the value of the principalActivity property. + * + * @return + * possible object is + * {@link CreditsafeDescriptionV2 } + * + */ + public CreditsafeDescriptionV2 getPrincipalActivity() { + return principalActivity; + } + + /** + * Sets the value of the principalActivity property. + * + * @param value + * allowed object is + * {@link CreditsafeDescriptionV2 } + * + */ + public void setPrincipalActivity(CreditsafeDescriptionV2 value) { + this.principalActivity = value; + } + + /** + * Gets the value of the businessName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBusinessName() { + return businessName; + } + + /** + * Sets the value of the businessName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBusinessName(String value) { + this.businessName = value; + } + + /** + * Gets the value of the companyRegistrationNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyRegistrationNumber() { + return companyRegistrationNumber; + } + + /** + * Sets the value of the companyRegistrationNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyRegistrationNumber(String value) { + this.companyRegistrationNumber = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the dateofCompanyRegistration property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateofCompanyRegistration() { + return dateofCompanyRegistration; + } + + /** + * Sets the value of the dateofCompanyRegistration property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateofCompanyRegistration(XMLGregorianCalendar value) { + this.dateofCompanyRegistration = value; + } + + /** + * Gets the value of the dateofStartingOperations property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateofStartingOperations() { + return dateofStartingOperations; + } + + /** + * Sets the value of the dateofStartingOperations property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateofStartingOperations(XMLGregorianCalendar value) { + this.dateofStartingOperations = value; + } + + /** + * Gets the value of the registeredCompanyName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegisteredCompanyName() { + return registeredCompanyName; + } + + /** + * Sets the value of the registeredCompanyName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegisteredCompanyName(String value) { + this.registeredCompanyName = value; + } + + /** + * Gets the value of the vatRegistrationNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVatRegistrationNumber() { + return vatRegistrationNumber; + } + + /** + * Sets the value of the vatRegistrationNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVatRegistrationNumber(String value) { + this.vatRegistrationNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBasicInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBasicInformationV2Array.java new file mode 100644 index 0000000..56c09ce --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBasicInformationV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyBasicInformationV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyBasicInformationV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyBasicInformationV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyBasicInformationV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyBasicInformationV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyBasicInformationV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCompanyV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCompanyV2.java new file mode 100644 index 0000000..cd89295 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCompanyV2.java @@ -0,0 +1,391 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeCompanyCompanyV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyCompanyV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" minOccurs="0"/>
+ *         <element name="creditsafe_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_last_account" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="date_last_change" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="vat_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="office_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyCompanyV2", propOrder = { + +}) +public class CreditsafeCompanyCompanyV2 { + + protected CreditsafeAddressV2 address; + @XmlElement(name = "creditsafe_number") + protected String creditsafeNumber; + @XmlElement(name = "date_last_account") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateLastAccount; + @XmlElement(name = "date_last_change") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateLastChange; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + @XmlElement(name = "vat_numbers") + protected StringArray vatNumbers; + protected String country; + @XmlElement(name = "registration_number") + protected String registrationNumber; + protected String name; + protected String id; + protected String type; + protected String status; + @XmlElement(name = "office_type") + protected String officeType; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link CreditsafeAddressV2 } + * + */ + public CreditsafeAddressV2 getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link CreditsafeAddressV2 } + * + */ + public void setAddress(CreditsafeAddressV2 value) { + this.address = value; + } + + /** + * Gets the value of the creditsafeNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreditsafeNumber() { + return creditsafeNumber; + } + + /** + * Sets the value of the creditsafeNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreditsafeNumber(String value) { + this.creditsafeNumber = value; + } + + /** + * Gets the value of the dateLastAccount property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateLastAccount() { + return dateLastAccount; + } + + /** + * Sets the value of the dateLastAccount property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateLastAccount(XMLGregorianCalendar value) { + this.dateLastAccount = value; + } + + /** + * Gets the value of the dateLastChange property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateLastChange() { + return dateLastChange; + } + + /** + * Sets the value of the dateLastChange property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateLastChange(XMLGregorianCalendar value) { + this.dateLastChange = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + + /** + * Gets the value of the vatNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getVatNumbers() { + return vatNumbers; + } + + /** + * Sets the value of the vatNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setVatNumbers(StringArray value) { + this.vatNumbers = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the registrationNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistrationNumber() { + return registrationNumber; + } + + /** + * Sets the value of the registrationNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistrationNumber(String value) { + this.registrationNumber = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + + /** + * Gets the value of the officeType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOfficeType() { + return officeType; + } + + /** + * Sets the value of the officeType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOfficeType(String value) { + this.officeType = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCompanyV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCompanyV2Array.java new file mode 100644 index 0000000..e72c9ef --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCompanyV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyCompanyV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyCompanyV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCompanyV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyCompanyV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyCompanyV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyCompanyV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyContactInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyContactInformationV2.java new file mode 100644 index 0000000..d87516c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyContactInformationV2.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyContactInformationV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyContactInformationV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="main_address" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" minOccurs="0"/>
+ *         <element name="other_addresses" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyContactInformationV2", propOrder = { + +}) +public class CreditsafeCompanyContactInformationV2 { + + @XmlElement(name = "main_address") + protected CreditsafeAddressV2 mainAddress; + @XmlElement(name = "other_addresses") + protected CreditsafeAddressV2Array otherAddresses; + + /** + * Gets the value of the mainAddress property. + * + * @return + * possible object is + * {@link CreditsafeAddressV2 } + * + */ + public CreditsafeAddressV2 getMainAddress() { + return mainAddress; + } + + /** + * Sets the value of the mainAddress property. + * + * @param value + * allowed object is + * {@link CreditsafeAddressV2 } + * + */ + public void setMainAddress(CreditsafeAddressV2 value) { + this.mainAddress = value; + } + + /** + * Gets the value of the otherAddresses property. + * + * @return + * possible object is + * {@link CreditsafeAddressV2Array } + * + */ + public CreditsafeAddressV2Array getOtherAddresses() { + return otherAddresses; + } + + /** + * Sets the value of the otherAddresses property. + * + * @param value + * allowed object is + * {@link CreditsafeAddressV2Array } + * + */ + public void setOtherAddresses(CreditsafeAddressV2Array value) { + this.otherAddresses = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyContactInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyContactInformationV2Array.java new file mode 100644 index 0000000..6d5cc21 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyContactInformationV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyContactInformationV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyContactInformationV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyContactInformationV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyContactInformationV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyContactInformationV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyContactInformationV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditRatingV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditRatingV2.java new file mode 100644 index 0000000..09d1933 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditRatingV2.java @@ -0,0 +1,177 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyCreditRatingV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyCreditRatingV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="common_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="common_value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="credit_limit" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="provider_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="provider_value" type="{http://www.webservices.nl/soap/}CreditsafeValueV2" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyCreditRatingV2", propOrder = { + +}) +public class CreditsafeCompanyCreditRatingV2 { + + @XmlElement(name = "common_description") + protected String commonDescription; + @XmlElement(name = "common_value") + protected String commonValue; + @XmlElement(name = "credit_limit") + protected String creditLimit; + @XmlElement(name = "provider_description") + protected String providerDescription; + @XmlElement(name = "provider_value") + protected CreditsafeValueV2 providerValue; + + /** + * Gets the value of the commonDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCommonDescription() { + return commonDescription; + } + + /** + * Sets the value of the commonDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCommonDescription(String value) { + this.commonDescription = value; + } + + /** + * Gets the value of the commonValue property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCommonValue() { + return commonValue; + } + + /** + * Sets the value of the commonValue property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCommonValue(String value) { + this.commonValue = value; + } + + /** + * Gets the value of the creditLimit property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreditLimit() { + return creditLimit; + } + + /** + * Sets the value of the creditLimit property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreditLimit(String value) { + this.creditLimit = value; + } + + /** + * Gets the value of the providerDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProviderDescription() { + return providerDescription; + } + + /** + * Sets the value of the providerDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProviderDescription(String value) { + this.providerDescription = value; + } + + /** + * Gets the value of the providerValue property. + * + * @return + * possible object is + * {@link CreditsafeValueV2 } + * + */ + public CreditsafeValueV2 getProviderValue() { + return providerValue; + } + + /** + * Sets the value of the providerValue property. + * + * @param value + * allowed object is + * {@link CreditsafeValueV2 } + * + */ + public void setProviderValue(CreditsafeValueV2 value) { + this.providerValue = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditRatingV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditRatingV2Array.java new file mode 100644 index 0000000..bf292ca --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditRatingV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyCreditRatingV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyCreditRatingV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCreditRatingV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyCreditRatingV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyCreditRatingV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyCreditRatingV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditScoreV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditScoreV2.java new file mode 100644 index 0000000..544eb34 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditScoreV2.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyCreditScoreV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyCreditScoreV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="current_credit_rating" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCreditRatingV2" minOccurs="0"/>
+ *         <element name="previous_credit_rating" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCreditRatingV2" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyCreditScoreV2", propOrder = { + +}) +public class CreditsafeCompanyCreditScoreV2 { + + @XmlElement(name = "current_credit_rating") + protected CreditsafeCompanyCreditRatingV2 currentCreditRating; + @XmlElement(name = "previous_credit_rating") + protected CreditsafeCompanyCreditRatingV2 previousCreditRating; + + /** + * Gets the value of the currentCreditRating property. + * + * @return + * possible object is + * {@link CreditsafeCompanyCreditRatingV2 } + * + */ + public CreditsafeCompanyCreditRatingV2 getCurrentCreditRating() { + return currentCreditRating; + } + + /** + * Sets the value of the currentCreditRating property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyCreditRatingV2 } + * + */ + public void setCurrentCreditRating(CreditsafeCompanyCreditRatingV2 value) { + this.currentCreditRating = value; + } + + /** + * Gets the value of the previousCreditRating property. + * + * @return + * possible object is + * {@link CreditsafeCompanyCreditRatingV2 } + * + */ + public CreditsafeCompanyCreditRatingV2 getPreviousCreditRating() { + return previousCreditRating; + } + + /** + * Sets the value of the previousCreditRating property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyCreditRatingV2 } + * + */ + public void setPreviousCreditRating(CreditsafeCompanyCreditRatingV2 value) { + this.previousCreditRating = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditScoreV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditScoreV2Array.java new file mode 100644 index 0000000..65486a2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditScoreV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyCreditScoreV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyCreditScoreV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCreditScoreV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyCreditScoreV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyCreditScoreV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyCreditScoreV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyEmployeeInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyEmployeeInformationV2.java new file mode 100644 index 0000000..00f80b3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyEmployeeInformationV2.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyEmployeeInformationV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyEmployeeInformationV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="number_of_employees" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyEmployeeInformationV2", propOrder = { + +}) +public class CreditsafeCompanyEmployeeInformationV2 { + + @XmlElement(name = "number_of_employees") + protected BigInteger numberOfEmployees; + protected BigInteger year; + + /** + * Gets the value of the numberOfEmployees property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getNumberOfEmployees() { + return numberOfEmployees; + } + + /** + * Sets the value of the numberOfEmployees property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setNumberOfEmployees(BigInteger value) { + this.numberOfEmployees = value; + } + + /** + * Gets the value of the year property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getYear() { + return year; + } + + /** + * Sets the value of the year property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setYear(BigInteger value) { + this.year = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyEmployeeInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyEmployeeInformationV2Array.java new file mode 100644 index 0000000..5bb524b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyEmployeeInformationV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyEmployeeInformationV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyEmployeeInformationV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyEmployeeInformationV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyEmployeeInformationV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyEmployeeInformationV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyEmployeeInformationV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyFinancialStatementV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyFinancialStatementV2.java new file mode 100644 index 0000000..390b9ad --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyFinancialStatementV2.java @@ -0,0 +1,286 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeCompanyFinancialStatementV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyFinancialStatementV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="balance_sheet" type="{http://www.webservices.nl/soap/}CreditsafeCompanyBalanceSheetV2" minOccurs="0"/>
+ *         <element name="consolidated_accounts" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="number_of_weeks" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="other_financials" type="{http://www.webservices.nl/soap/}CreditsafeCompanyOtherFinancialsV2" minOccurs="0"/>
+ *         <element name="profit_and_loss" type="{http://www.webservices.nl/soap/}CreditsafeCompanyProfitAndLossV2" minOccurs="0"/>
+ *         <element name="ratios" type="{http://www.webservices.nl/soap/}CreditsafeCompanyRatiosV2" minOccurs="0"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="year_end_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyFinancialStatementV2", propOrder = { + +}) +public class CreditsafeCompanyFinancialStatementV2 { + + @XmlElement(name = "balance_sheet") + protected CreditsafeCompanyBalanceSheetV2 balanceSheet; + @XmlElement(name = "consolidated_accounts") + protected Boolean consolidatedAccounts; + protected String currency; + @XmlElement(name = "number_of_weeks") + protected BigInteger numberOfWeeks; + @XmlElement(name = "other_financials") + protected CreditsafeCompanyOtherFinancialsV2 otherFinancials; + @XmlElement(name = "profit_and_loss") + protected CreditsafeCompanyProfitAndLossV2 profitAndLoss; + protected CreditsafeCompanyRatiosV2 ratios; + protected String type; + @XmlElement(name = "year_end_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar yearEndDate; + + /** + * Gets the value of the balanceSheet property. + * + * @return + * possible object is + * {@link CreditsafeCompanyBalanceSheetV2 } + * + */ + public CreditsafeCompanyBalanceSheetV2 getBalanceSheet() { + return balanceSheet; + } + + /** + * Sets the value of the balanceSheet property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyBalanceSheetV2 } + * + */ + public void setBalanceSheet(CreditsafeCompanyBalanceSheetV2 value) { + this.balanceSheet = value; + } + + /** + * Gets the value of the consolidatedAccounts property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isConsolidatedAccounts() { + return consolidatedAccounts; + } + + /** + * Sets the value of the consolidatedAccounts property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setConsolidatedAccounts(Boolean value) { + this.consolidatedAccounts = value; + } + + /** + * Gets the value of the currency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCurrency() { + return currency; + } + + /** + * Sets the value of the currency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCurrency(String value) { + this.currency = value; + } + + /** + * Gets the value of the numberOfWeeks property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getNumberOfWeeks() { + return numberOfWeeks; + } + + /** + * Sets the value of the numberOfWeeks property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setNumberOfWeeks(BigInteger value) { + this.numberOfWeeks = value; + } + + /** + * Gets the value of the otherFinancials property. + * + * @return + * possible object is + * {@link CreditsafeCompanyOtherFinancialsV2 } + * + */ + public CreditsafeCompanyOtherFinancialsV2 getOtherFinancials() { + return otherFinancials; + } + + /** + * Sets the value of the otherFinancials property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyOtherFinancialsV2 } + * + */ + public void setOtherFinancials(CreditsafeCompanyOtherFinancialsV2 value) { + this.otherFinancials = value; + } + + /** + * Gets the value of the profitAndLoss property. + * + * @return + * possible object is + * {@link CreditsafeCompanyProfitAndLossV2 } + * + */ + public CreditsafeCompanyProfitAndLossV2 getProfitAndLoss() { + return profitAndLoss; + } + + /** + * Sets the value of the profitAndLoss property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyProfitAndLossV2 } + * + */ + public void setProfitAndLoss(CreditsafeCompanyProfitAndLossV2 value) { + this.profitAndLoss = value; + } + + /** + * Gets the value of the ratios property. + * + * @return + * possible object is + * {@link CreditsafeCompanyRatiosV2 } + * + */ + public CreditsafeCompanyRatiosV2 getRatios() { + return ratios; + } + + /** + * Sets the value of the ratios property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyRatiosV2 } + * + */ + public void setRatios(CreditsafeCompanyRatiosV2 value) { + this.ratios = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the yearEndDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getYearEndDate() { + return yearEndDate; + } + + /** + * Sets the value of the yearEndDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setYearEndDate(XMLGregorianCalendar value) { + this.yearEndDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyFinancialStatementV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyFinancialStatementV2Array.java new file mode 100644 index 0000000..d437564 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyFinancialStatementV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyFinancialStatementV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyFinancialStatementV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyFinancialStatementV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyFinancialStatementV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyFinancialStatementV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyFinancialStatementV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyGroupStructureV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyGroupStructureV2.java new file mode 100644 index 0000000..231d6ed --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyGroupStructureV2.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyGroupStructureV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyGroupStructureV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="ultimate_parent" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCompanyV2" minOccurs="0"/>
+ *         <element name="immediate_parent" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCompanyV2" minOccurs="0"/>
+ *         <element name="subsidiary_companies" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCompanyV2Array" minOccurs="0"/>
+ *         <element name="affiliated_companies" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCompanyV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyGroupStructureV2", propOrder = { + +}) +public class CreditsafeCompanyGroupStructureV2 { + + @XmlElement(name = "ultimate_parent") + protected CreditsafeCompanyCompanyV2 ultimateParent; + @XmlElement(name = "immediate_parent") + protected CreditsafeCompanyCompanyV2 immediateParent; + @XmlElement(name = "subsidiary_companies") + protected CreditsafeCompanyCompanyV2Array subsidiaryCompanies; + @XmlElement(name = "affiliated_companies") + protected CreditsafeCompanyCompanyV2Array affiliatedCompanies; + + /** + * Gets the value of the ultimateParent property. + * + * @return + * possible object is + * {@link CreditsafeCompanyCompanyV2 } + * + */ + public CreditsafeCompanyCompanyV2 getUltimateParent() { + return ultimateParent; + } + + /** + * Sets the value of the ultimateParent property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyCompanyV2 } + * + */ + public void setUltimateParent(CreditsafeCompanyCompanyV2 value) { + this.ultimateParent = value; + } + + /** + * Gets the value of the immediateParent property. + * + * @return + * possible object is + * {@link CreditsafeCompanyCompanyV2 } + * + */ + public CreditsafeCompanyCompanyV2 getImmediateParent() { + return immediateParent; + } + + /** + * Sets the value of the immediateParent property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyCompanyV2 } + * + */ + public void setImmediateParent(CreditsafeCompanyCompanyV2 value) { + this.immediateParent = value; + } + + /** + * Gets the value of the subsidiaryCompanies property. + * + * @return + * possible object is + * {@link CreditsafeCompanyCompanyV2Array } + * + */ + public CreditsafeCompanyCompanyV2Array getSubsidiaryCompanies() { + return subsidiaryCompanies; + } + + /** + * Sets the value of the subsidiaryCompanies property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyCompanyV2Array } + * + */ + public void setSubsidiaryCompanies(CreditsafeCompanyCompanyV2Array value) { + this.subsidiaryCompanies = value; + } + + /** + * Gets the value of the affiliatedCompanies property. + * + * @return + * possible object is + * {@link CreditsafeCompanyCompanyV2Array } + * + */ + public CreditsafeCompanyCompanyV2Array getAffiliatedCompanies() { + return affiliatedCompanies; + } + + /** + * Sets the value of the affiliatedCompanies property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyCompanyV2Array } + * + */ + public void setAffiliatedCompanies(CreditsafeCompanyCompanyV2Array value) { + this.affiliatedCompanies = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyGroupStructureV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyGroupStructureV2Array.java new file mode 100644 index 0000000..fa0d442 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyGroupStructureV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyGroupStructureV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyGroupStructureV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyGroupStructureV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyGroupStructureV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyGroupStructureV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyGroupStructureV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyIdentificationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyIdentificationV2.java new file mode 100644 index 0000000..4191859 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyIdentificationV2.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyIdentificationV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyIdentificationV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="basic_information" type="{http://www.webservices.nl/soap/}CreditsafeCompanyBasicInformationV2" minOccurs="0"/>
+ *         <element name="activity_classifications" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivityClassificationV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyIdentificationV2", propOrder = { + +}) +public class CreditsafeCompanyIdentificationV2 { + + @XmlElement(name = "basic_information") + protected CreditsafeCompanyBasicInformationV2 basicInformation; + @XmlElement(name = "activity_classifications") + protected CreditsafeCompanyActivityClassificationV2Array activityClassifications; + + /** + * Gets the value of the basicInformation property. + * + * @return + * possible object is + * {@link CreditsafeCompanyBasicInformationV2 } + * + */ + public CreditsafeCompanyBasicInformationV2 getBasicInformation() { + return basicInformation; + } + + /** + * Sets the value of the basicInformation property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyBasicInformationV2 } + * + */ + public void setBasicInformation(CreditsafeCompanyBasicInformationV2 value) { + this.basicInformation = value; + } + + /** + * Gets the value of the activityClassifications property. + * + * @return + * possible object is + * {@link CreditsafeCompanyActivityClassificationV2Array } + * + */ + public CreditsafeCompanyActivityClassificationV2Array getActivityClassifications() { + return activityClassifications; + } + + /** + * Sets the value of the activityClassifications property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyActivityClassificationV2Array } + * + */ + public void setActivityClassifications(CreditsafeCompanyActivityClassificationV2Array value) { + this.activityClassifications = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyIdentificationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyIdentificationV2Array.java new file mode 100644 index 0000000..50f5d2c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyIdentificationV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyIdentificationV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyIdentificationV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyIdentificationV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyIdentificationV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyIdentificationV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyIdentificationV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyKeyValueV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyKeyValueV2.java new file mode 100644 index 0000000..49a62d8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyKeyValueV2.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyKeyValueV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyKeyValueV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyKeyValueV2", propOrder = { + +}) +public class CreditsafeCompanyKeyValueV2 { + + protected String key; + protected String value; + + /** + * Gets the value of the key property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKey() { + return key; + } + + /** + * Sets the value of the key property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKey(String value) { + this.key = value; + } + + /** + * Gets the value of the value property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValue(String value) { + this.value = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyKeyValueV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyKeyValueV2Array.java new file mode 100644 index 0000000..5d24854 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyKeyValueV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyKeyValueV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyKeyValueV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyKeyValueV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyKeyValueV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyKeyValueV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyKeyValueV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyListEntry.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyListEntry.java new file mode 100644 index 0000000..8a24527 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyListEntry.java @@ -0,0 +1,148 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyListEntry complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyListEntry">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyListEntry", propOrder = { + +}) +public class CreditsafeCompanyListEntry { + + protected String country; + @XmlElement(name = "company_name", required = true) + protected String companyName; + @XmlElement(name = "company_id") + protected String companyId; + protected String number; + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the companyName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyName() { + return companyName; + } + + /** + * Sets the value of the companyName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyName(String value) { + this.companyName = value; + } + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + + /** + * Gets the value of the number property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumber() { + return number; + } + + /** + * Sets the value of the number property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumber(String value) { + this.number = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyListEntryArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyListEntryArray.java new file mode 100644 index 0000000..145ac0b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyListEntryArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyListEntryArray complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyListEntryArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyListEntry" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyListEntryArray", propOrder = { + "item" +}) +public class CreditsafeCompanyListEntryArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyListEntry } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEBankruptcyV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEBankruptcyV2.java new file mode 100644 index 0000000..5668c30 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEBankruptcyV2.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationDEBankruptcyV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationDEBankruptcyV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="has_bankruptcy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationDEBankruptcyV2", propOrder = { + +}) +public class CreditsafeCompanyNegativeInformationDEBankruptcyV2 { + + @XmlElement(name = "has_bankruptcy") + protected String hasBankruptcy; + + /** + * Gets the value of the hasBankruptcy property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHasBankruptcy() { + return hasBankruptcy; + } + + /** + * Sets the value of the hasBankruptcy property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHasBankruptcy(String value) { + this.hasBankruptcy = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEBankruptcyV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEBankruptcyV2Array.java new file mode 100644 index 0000000..ef96039 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEBankruptcyV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationDEBankruptcyV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationDEBankruptcyV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEBankruptcyV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationDEBankruptcyV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyNegativeInformationDEBankruptcyV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyNegativeInformationDEBankruptcyV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEDirectorEventV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEDirectorEventV2.java new file mode 100644 index 0000000..3a13bd2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEDirectorEventV2.java @@ -0,0 +1,174 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationDEDirectorEventV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationDEDirectorEventV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationDEDirectorEventV2", propOrder = { + +}) +public class CreditsafeCompanyNegativeInformationDEDirectorEventV2 { + + protected String name; + protected String type; + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar date; + protected String description; + protected String code; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the date property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDate() { + return date; + } + + /** + * Sets the value of the date property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDate(XMLGregorianCalendar value) { + this.date = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCode(String value) { + this.code = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEDirectorEventV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEDirectorEventV2Array.java new file mode 100644 index 0000000..3427c78 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEDirectorEventV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationDEDirectorEventV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationDEDirectorEventV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEDirectorEventV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationDEDirectorEventV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyNegativeInformationDEDirectorEventV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyNegativeInformationDEDirectorEventV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyEventV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyEventV2.java new file mode 100644 index 0000000..128e92d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyEventV2.java @@ -0,0 +1,99 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationDEInsolvencyEventV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationDEInsolvencyEventV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="reference_number_court" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="created_at" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationDEInsolvencyEventV2", propOrder = { + +}) +public class CreditsafeCompanyNegativeInformationDEInsolvencyEventV2 { + + @XmlElement(name = "reference_number_court") + protected String referenceNumberCourt; + @XmlElement(name = "created_at") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar createdAt; + + /** + * Gets the value of the referenceNumberCourt property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReferenceNumberCourt() { + return referenceNumberCourt; + } + + /** + * Sets the value of the referenceNumberCourt property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReferenceNumberCourt(String value) { + this.referenceNumberCourt = value; + } + + /** + * Gets the value of the createdAt property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getCreatedAt() { + return createdAt; + } + + /** + * Sets the value of the createdAt property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setCreatedAt(XMLGregorianCalendar value) { + this.createdAt = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array.java new file mode 100644 index 0000000..191299f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEInsolvencyEventV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyNegativeInformationDEInsolvencyEventV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2.java new file mode 100644 index 0000000..5acb2d4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="insolvency_events" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array" minOccurs="0"/>
+ *         <element name="dateof_insolvency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trustee" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDETrusteeV2" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2", propOrder = { + +}) +public class CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 { + + @XmlElement(name = "insolvency_events") + protected CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array insolvencyEvents; + @XmlElement(name = "dateof_insolvency") + protected String dateofInsolvency; + protected CreditsafeCompanyNegativeInformationDETrusteeV2 trustee; + + /** + * Gets the value of the insolvencyEvents property. + * + * @return + * possible object is + * {@link CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array } + * + */ + public CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array getInsolvencyEvents() { + return insolvencyEvents; + } + + /** + * Sets the value of the insolvencyEvents property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array } + * + */ + public void setInsolvencyEvents(CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array value) { + this.insolvencyEvents = value; + } + + /** + * Gets the value of the dateofInsolvency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDateofInsolvency() { + return dateofInsolvency; + } + + /** + * Sets the value of the dateofInsolvency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDateofInsolvency(String value) { + this.dateofInsolvency = value; + } + + /** + * Gets the value of the trustee property. + * + * @return + * possible object is + * {@link CreditsafeCompanyNegativeInformationDETrusteeV2 } + * + */ + public CreditsafeCompanyNegativeInformationDETrusteeV2 getTrustee() { + return trustee; + } + + /** + * Sets the value of the trustee property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyNegativeInformationDETrusteeV2 } + * + */ + public void setTrustee(CreditsafeCompanyNegativeInformationDETrusteeV2 value) { + this.trustee = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array.java new file mode 100644 index 0000000..95177af --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDETrusteeV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDETrusteeV2.java new file mode 100644 index 0000000..2180ee2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDETrusteeV2.java @@ -0,0 +1,281 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationDETrusteeV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationDETrusteeV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="email_address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationDETrusteeV2", propOrder = { + +}) +public class CreditsafeCompanyNegativeInformationDETrusteeV2 { + + protected String name; + protected String title; + @XmlElement(name = "first_name") + protected String firstName; + @XmlElement(name = "last_name") + protected String lastName; + protected String code; + protected String city; + @XmlElement(name = "telephone_number") + protected String telephoneNumber; + @XmlElement(name = "fax_number") + protected String faxNumber; + @XmlElement(name = "email_address") + protected String emailAddress; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the title property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTitle() { + return title; + } + + /** + * Sets the value of the title property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTitle(String value) { + this.title = value; + } + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCode(String value) { + this.code = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the telephoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNumber() { + return telephoneNumber; + } + + /** + * Sets the value of the telephoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNumber(String value) { + this.telephoneNumber = value; + } + + /** + * Gets the value of the faxNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFaxNumber() { + return faxNumber; + } + + /** + * Sets the value of the faxNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFaxNumber(String value) { + this.faxNumber = value; + } + + /** + * Gets the value of the emailAddress property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmailAddress() { + return emailAddress; + } + + /** + * Sets the value of the emailAddress property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmailAddress(String value) { + this.emailAddress = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDETrusteeV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDETrusteeV2Array.java new file mode 100644 index 0000000..012ee6f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDETrusteeV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationDETrusteeV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationDETrusteeV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDETrusteeV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationDETrusteeV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyNegativeInformationDETrusteeV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyNegativeInformationDETrusteeV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEV2.java new file mode 100644 index 0000000..3f0aff8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEV2.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationDEV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationDEV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bankruptcy" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEBankruptcyV2" minOccurs="0"/>
+ *         <element name="insolvency_information" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2" minOccurs="0"/>
+ *         <element name="director_events" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEDirectorEventV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationDEV2", propOrder = { + +}) +public class CreditsafeCompanyNegativeInformationDEV2 { + + protected CreditsafeCompanyNegativeInformationDEBankruptcyV2 bankruptcy; + @XmlElement(name = "insolvency_information") + protected CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 insolvencyInformation; + @XmlElement(name = "director_events") + protected CreditsafeCompanyNegativeInformationDEDirectorEventV2Array directorEvents; + + /** + * Gets the value of the bankruptcy property. + * + * @return + * possible object is + * {@link CreditsafeCompanyNegativeInformationDEBankruptcyV2 } + * + */ + public CreditsafeCompanyNegativeInformationDEBankruptcyV2 getBankruptcy() { + return bankruptcy; + } + + /** + * Sets the value of the bankruptcy property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyNegativeInformationDEBankruptcyV2 } + * + */ + public void setBankruptcy(CreditsafeCompanyNegativeInformationDEBankruptcyV2 value) { + this.bankruptcy = value; + } + + /** + * Gets the value of the insolvencyInformation property. + * + * @return + * possible object is + * {@link CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 } + * + */ + public CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 getInsolvencyInformation() { + return insolvencyInformation; + } + + /** + * Sets the value of the insolvencyInformation property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 } + * + */ + public void setInsolvencyInformation(CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 value) { + this.insolvencyInformation = value; + } + + /** + * Gets the value of the directorEvents property. + * + * @return + * possible object is + * {@link CreditsafeCompanyNegativeInformationDEDirectorEventV2Array } + * + */ + public CreditsafeCompanyNegativeInformationDEDirectorEventV2Array getDirectorEvents() { + return directorEvents; + } + + /** + * Sets the value of the directorEvents property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyNegativeInformationDEDirectorEventV2Array } + * + */ + public void setDirectorEvents(CreditsafeCompanyNegativeInformationDEDirectorEventV2Array value) { + this.directorEvents = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEV2Array.java new file mode 100644 index 0000000..525618b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationDEV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationDEV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationDEV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyNegativeInformationDEV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyNegativeInformationDEV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLCourtItemV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLCourtItemV2.java new file mode 100644 index 0000000..29fe7d4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLCourtItemV2.java @@ -0,0 +1,125 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationNLCourtItemV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationNLCourtItemV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="court_action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_of_bankruptcy" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationNLCourtItemV2", propOrder = { + +}) +public class CreditsafeCompanyNegativeInformationNLCourtItemV2 { + + @XmlElement(name = "court_action") + protected String courtAction; + @XmlElement(name = "date_of_bankruptcy") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateOfBankruptcy; + protected String address; + + /** + * Gets the value of the courtAction property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCourtAction() { + return courtAction; + } + + /** + * Sets the value of the courtAction property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCourtAction(String value) { + this.courtAction = value; + } + + /** + * Gets the value of the dateOfBankruptcy property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfBankruptcy() { + return dateOfBankruptcy; + } + + /** + * Sets the value of the dateOfBankruptcy property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfBankruptcy(XMLGregorianCalendar value) { + this.dateOfBankruptcy = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLCourtItemV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLCourtItemV2Array.java new file mode 100644 index 0000000..b34f39a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLCourtItemV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationNLCourtItemV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationNLCourtItemV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationNLCourtItemV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationNLCourtItemV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyNegativeInformationNLCourtItemV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyNegativeInformationNLCourtItemV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLV2.java new file mode 100644 index 0000000..16f9bac --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLV2.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationNLV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationNLV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="court_items" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationNLCourtItemV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationNLV2", propOrder = { + +}) +public class CreditsafeCompanyNegativeInformationNLV2 { + + @XmlElement(name = "court_items") + protected CreditsafeCompanyNegativeInformationNLCourtItemV2Array courtItems; + + /** + * Gets the value of the courtItems property. + * + * @return + * possible object is + * {@link CreditsafeCompanyNegativeInformationNLCourtItemV2Array } + * + */ + public CreditsafeCompanyNegativeInformationNLCourtItemV2Array getCourtItems() { + return courtItems; + } + + /** + * Sets the value of the courtItems property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyNegativeInformationNLCourtItemV2Array } + * + */ + public void setCourtItems(CreditsafeCompanyNegativeInformationNLCourtItemV2Array value) { + this.courtItems = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLV2Array.java new file mode 100644 index 0000000..282cb63 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationNLV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationNLV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationNLV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationNLV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyNegativeInformationNLV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyNegativeInformationNLV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationV2.java new file mode 100644 index 0000000..1c2d648 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationV2.java @@ -0,0 +1,119 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nl" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationNLV2" minOccurs="0"/>
+ *         <element name="de" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEV2" minOccurs="0"/>
+ *         <element name="generic" type="{http://www.webservices.nl/soap/}CreditsafeCompanyKeyValueV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationV2", propOrder = { + +}) +public class CreditsafeCompanyNegativeInformationV2 { + + protected CreditsafeCompanyNegativeInformationNLV2 nl; + protected CreditsafeCompanyNegativeInformationDEV2 de; + protected CreditsafeCompanyKeyValueV2Array generic; + + /** + * Gets the value of the nl property. + * + * @return + * possible object is + * {@link CreditsafeCompanyNegativeInformationNLV2 } + * + */ + public CreditsafeCompanyNegativeInformationNLV2 getNl() { + return nl; + } + + /** + * Sets the value of the nl property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyNegativeInformationNLV2 } + * + */ + public void setNl(CreditsafeCompanyNegativeInformationNLV2 value) { + this.nl = value; + } + + /** + * Gets the value of the de property. + * + * @return + * possible object is + * {@link CreditsafeCompanyNegativeInformationDEV2 } + * + */ + public CreditsafeCompanyNegativeInformationDEV2 getDe() { + return de; + } + + /** + * Sets the value of the de property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyNegativeInformationDEV2 } + * + */ + public void setDe(CreditsafeCompanyNegativeInformationDEV2 value) { + this.de = value; + } + + /** + * Gets the value of the generic property. + * + * @return + * possible object is + * {@link CreditsafeCompanyKeyValueV2Array } + * + */ + public CreditsafeCompanyKeyValueV2Array getGeneric() { + return generic; + } + + /** + * Sets the value of the generic property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyKeyValueV2Array } + * + */ + public void setGeneric(CreditsafeCompanyKeyValueV2Array value) { + this.generic = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationV2Array.java new file mode 100644 index 0000000..2ec295b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyNegativeInformationV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyNegativeInformationV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyNegativeInformationV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyNegativeInformationV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyNegativeInformationV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherFinancialsV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherFinancialsV2.java new file mode 100644 index 0000000..f59461a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherFinancialsV2.java @@ -0,0 +1,97 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyOtherFinancialsV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyOtherFinancialsV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="net_worth" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="working_capital" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyOtherFinancialsV2", propOrder = { + +}) +public class CreditsafeCompanyOtherFinancialsV2 { + + @XmlElement(name = "net_worth") + protected BigInteger netWorth; + @XmlElement(name = "working_capital") + protected BigInteger workingCapital; + + /** + * Gets the value of the netWorth property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getNetWorth() { + return netWorth; + } + + /** + * Sets the value of the netWorth property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setNetWorth(BigInteger value) { + this.netWorth = value; + } + + /** + * Gets the value of the workingCapital property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getWorkingCapital() { + return workingCapital; + } + + /** + * Sets the value of the workingCapital property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setWorkingCapital(BigInteger value) { + this.workingCapital = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherFinancialsV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherFinancialsV2Array.java new file mode 100644 index 0000000..9ffcbb6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherFinancialsV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyOtherFinancialsV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyOtherFinancialsV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyOtherFinancialsV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyOtherFinancialsV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyOtherFinancialsV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyOtherFinancialsV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherInformationV2.java new file mode 100644 index 0000000..c012f9b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherInformationV2.java @@ -0,0 +1,121 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyOtherInformationV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyOtherInformationV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bankers" type="{http://www.webservices.nl/soap/}CreditsafeCompanyBankerV2Array" minOccurs="0"/>
+ *         <element name="advisors" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdvisorV2Array" minOccurs="0"/>
+ *         <element name="employees_information" type="{http://www.webservices.nl/soap/}CreditsafeCompanyEmployeeInformationV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyOtherInformationV2", propOrder = { + +}) +public class CreditsafeCompanyOtherInformationV2 { + + protected CreditsafeCompanyBankerV2Array bankers; + protected CreditsafeCompanyAdvisorV2Array advisors; + @XmlElement(name = "employees_information") + protected CreditsafeCompanyEmployeeInformationV2Array employeesInformation; + + /** + * Gets the value of the bankers property. + * + * @return + * possible object is + * {@link CreditsafeCompanyBankerV2Array } + * + */ + public CreditsafeCompanyBankerV2Array getBankers() { + return bankers; + } + + /** + * Sets the value of the bankers property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyBankerV2Array } + * + */ + public void setBankers(CreditsafeCompanyBankerV2Array value) { + this.bankers = value; + } + + /** + * Gets the value of the advisors property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdvisorV2Array } + * + */ + public CreditsafeCompanyAdvisorV2Array getAdvisors() { + return advisors; + } + + /** + * Sets the value of the advisors property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdvisorV2Array } + * + */ + public void setAdvisors(CreditsafeCompanyAdvisorV2Array value) { + this.advisors = value; + } + + /** + * Gets the value of the employeesInformation property. + * + * @return + * possible object is + * {@link CreditsafeCompanyEmployeeInformationV2Array } + * + */ + public CreditsafeCompanyEmployeeInformationV2Array getEmployeesInformation() { + return employeesInformation; + } + + /** + * Sets the value of the employeesInformation property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyEmployeeInformationV2Array } + * + */ + public void setEmployeesInformation(CreditsafeCompanyEmployeeInformationV2Array value) { + this.employeesInformation = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherInformationV2Array.java new file mode 100644 index 0000000..a7b3201 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherInformationV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyOtherInformationV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyOtherInformationV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyOtherInformationV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyOtherInformationV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyOtherInformationV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyOtherInformationV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPagedResult.java new file mode 100644 index 0000000..8021de4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyPagedResult complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}CreditsafeCompanyArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyPagedResult", propOrder = { + +}) +public class CreditsafeCompanyPagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected CreditsafeCompanyArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link CreditsafeCompanyArray } + * + */ + public CreditsafeCompanyArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyArray } + * + */ + public void setResults(CreditsafeCompanyArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPaymentDataV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPaymentDataV2.java new file mode 100644 index 0000000..499c3c1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPaymentDataV2.java @@ -0,0 +1,67 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyPaymentDataV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyPaymentDataV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="generic" type="{http://www.webservices.nl/soap/}CreditsafeCompanyKeyValueV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyPaymentDataV2", propOrder = { + +}) +public class CreditsafeCompanyPaymentDataV2 { + + protected CreditsafeCompanyKeyValueV2Array generic; + + /** + * Gets the value of the generic property. + * + * @return + * possible object is + * {@link CreditsafeCompanyKeyValueV2Array } + * + */ + public CreditsafeCompanyKeyValueV2Array getGeneric() { + return generic; + } + + /** + * Sets the value of the generic property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyKeyValueV2Array } + * + */ + public void setGeneric(CreditsafeCompanyKeyValueV2Array value) { + this.generic = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPaymentDataV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPaymentDataV2Array.java new file mode 100644 index 0000000..39107c4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPaymentDataV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyPaymentDataV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyPaymentDataV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyPaymentDataV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyPaymentDataV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyPaymentDataV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyPaymentDataV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyProfitAndLossV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyProfitAndLossV2.java new file mode 100644 index 0000000..8b12dbd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyProfitAndLossV2.java @@ -0,0 +1,416 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyProfitAndLossV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyProfitAndLossV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="depreciation" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="dividends" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="financial_expenses" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="financial_income" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="operating_costs" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="operating_profit" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="other_appropriations" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="pension_costs" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="profit_after_tax" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="profit_before_tax" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="retained_profit" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="revenue" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="tax" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="wages_and_salaries" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyProfitAndLossV2", propOrder = { + +}) +public class CreditsafeCompanyProfitAndLossV2 { + + protected Integer depreciation; + protected Integer dividends; + @XmlElement(name = "financial_expenses") + protected Integer financialExpenses; + @XmlElement(name = "financial_income") + protected Integer financialIncome; + @XmlElement(name = "operating_costs") + protected Integer operatingCosts; + @XmlElement(name = "operating_profit") + protected Integer operatingProfit; + @XmlElement(name = "other_appropriations") + protected Integer otherAppropriations; + @XmlElement(name = "pension_costs") + protected Integer pensionCosts; + @XmlElement(name = "profit_after_tax") + protected Integer profitAfterTax; + @XmlElement(name = "profit_before_tax") + protected Integer profitBeforeTax; + @XmlElement(name = "retained_profit") + protected Integer retainedProfit; + protected Integer revenue; + protected Integer tax; + @XmlElement(name = "wages_and_salaries") + protected Integer wagesAndSalaries; + + /** + * Gets the value of the depreciation property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDepreciation() { + return depreciation; + } + + /** + * Sets the value of the depreciation property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDepreciation(Integer value) { + this.depreciation = value; + } + + /** + * Gets the value of the dividends property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDividends() { + return dividends; + } + + /** + * Sets the value of the dividends property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDividends(Integer value) { + this.dividends = value; + } + + /** + * Gets the value of the financialExpenses property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getFinancialExpenses() { + return financialExpenses; + } + + /** + * Sets the value of the financialExpenses property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setFinancialExpenses(Integer value) { + this.financialExpenses = value; + } + + /** + * Gets the value of the financialIncome property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getFinancialIncome() { + return financialIncome; + } + + /** + * Sets the value of the financialIncome property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setFinancialIncome(Integer value) { + this.financialIncome = value; + } + + /** + * Gets the value of the operatingCosts property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getOperatingCosts() { + return operatingCosts; + } + + /** + * Sets the value of the operatingCosts property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setOperatingCosts(Integer value) { + this.operatingCosts = value; + } + + /** + * Gets the value of the operatingProfit property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getOperatingProfit() { + return operatingProfit; + } + + /** + * Sets the value of the operatingProfit property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setOperatingProfit(Integer value) { + this.operatingProfit = value; + } + + /** + * Gets the value of the otherAppropriations property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getOtherAppropriations() { + return otherAppropriations; + } + + /** + * Sets the value of the otherAppropriations property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setOtherAppropriations(Integer value) { + this.otherAppropriations = value; + } + + /** + * Gets the value of the pensionCosts property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPensionCosts() { + return pensionCosts; + } + + /** + * Sets the value of the pensionCosts property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPensionCosts(Integer value) { + this.pensionCosts = value; + } + + /** + * Gets the value of the profitAfterTax property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getProfitAfterTax() { + return profitAfterTax; + } + + /** + * Sets the value of the profitAfterTax property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setProfitAfterTax(Integer value) { + this.profitAfterTax = value; + } + + /** + * Gets the value of the profitBeforeTax property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getProfitBeforeTax() { + return profitBeforeTax; + } + + /** + * Sets the value of the profitBeforeTax property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setProfitBeforeTax(Integer value) { + this.profitBeforeTax = value; + } + + /** + * Gets the value of the retainedProfit property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getRetainedProfit() { + return retainedProfit; + } + + /** + * Sets the value of the retainedProfit property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setRetainedProfit(Integer value) { + this.retainedProfit = value; + } + + /** + * Gets the value of the revenue property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getRevenue() { + return revenue; + } + + /** + * Sets the value of the revenue property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setRevenue(Integer value) { + this.revenue = value; + } + + /** + * Gets the value of the tax property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTax() { + return tax; + } + + /** + * Sets the value of the tax property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTax(Integer value) { + this.tax = value; + } + + /** + * Gets the value of the wagesAndSalaries property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getWagesAndSalaries() { + return wagesAndSalaries; + } + + /** + * Sets the value of the wagesAndSalaries property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setWagesAndSalaries(Integer value) { + this.wagesAndSalaries = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyProfitAndLossV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyProfitAndLossV2Array.java new file mode 100644 index 0000000..db13a45 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyProfitAndLossV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyProfitAndLossV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyProfitAndLossV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyProfitAndLossV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyProfitAndLossV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyProfitAndLossV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyProfitAndLossV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyRatiosV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyRatiosV2.java new file mode 100644 index 0000000..ad02fd4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyRatiosV2.java @@ -0,0 +1,419 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyRatiosV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyRatiosV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="creditor_days" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="current_debt_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="current_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="debtor_days" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="equity_in_percentage" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="gearing" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="liquidity_ratio_or_acid_test" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="pre_tax_profit_margin" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="return_on_capital_employed" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="return_on_net_assets_employed" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="return_on_total_assets_employed" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="sales_or_net_working_capital" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="stock_turnover_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="total_debt_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyRatiosV2", propOrder = { + +}) +public class CreditsafeCompanyRatiosV2 { + + @XmlElement(name = "creditor_days") + protected Float creditorDays; + @XmlElement(name = "current_debt_ratio") + protected Float currentDebtRatio; + @XmlElement(name = "current_ratio") + protected Float currentRatio; + @XmlElement(name = "debtor_days") + protected Float debtorDays; + @XmlElement(name = "equity_in_percentage") + protected Float equityInPercentage; + protected Float gearing; + @XmlElement(name = "liquidity_ratio_or_acid_test") + protected Float liquidityRatioOrAcidTest; + @XmlElement(name = "pre_tax_profit_margin") + protected Float preTaxProfitMargin; + @XmlElement(name = "return_on_capital_employed") + protected Float returnOnCapitalEmployed; + @XmlElement(name = "return_on_net_assets_employed") + protected Float returnOnNetAssetsEmployed; + @XmlElement(name = "return_on_total_assets_employed") + protected Float returnOnTotalAssetsEmployed; + @XmlElement(name = "sales_or_net_working_capital") + protected Float salesOrNetWorkingCapital; + @XmlElement(name = "stock_turnover_ratio") + protected Float stockTurnoverRatio; + @XmlElement(name = "total_debt_ratio") + protected Float totalDebtRatio; + + /** + * Gets the value of the creditorDays property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getCreditorDays() { + return creditorDays; + } + + /** + * Sets the value of the creditorDays property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setCreditorDays(Float value) { + this.creditorDays = value; + } + + /** + * Gets the value of the currentDebtRatio property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getCurrentDebtRatio() { + return currentDebtRatio; + } + + /** + * Sets the value of the currentDebtRatio property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setCurrentDebtRatio(Float value) { + this.currentDebtRatio = value; + } + + /** + * Gets the value of the currentRatio property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getCurrentRatio() { + return currentRatio; + } + + /** + * Sets the value of the currentRatio property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setCurrentRatio(Float value) { + this.currentRatio = value; + } + + /** + * Gets the value of the debtorDays property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getDebtorDays() { + return debtorDays; + } + + /** + * Sets the value of the debtorDays property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setDebtorDays(Float value) { + this.debtorDays = value; + } + + /** + * Gets the value of the equityInPercentage property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getEquityInPercentage() { + return equityInPercentage; + } + + /** + * Sets the value of the equityInPercentage property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setEquityInPercentage(Float value) { + this.equityInPercentage = value; + } + + /** + * Gets the value of the gearing property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getGearing() { + return gearing; + } + + /** + * Sets the value of the gearing property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setGearing(Float value) { + this.gearing = value; + } + + /** + * Gets the value of the liquidityRatioOrAcidTest property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getLiquidityRatioOrAcidTest() { + return liquidityRatioOrAcidTest; + } + + /** + * Sets the value of the liquidityRatioOrAcidTest property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setLiquidityRatioOrAcidTest(Float value) { + this.liquidityRatioOrAcidTest = value; + } + + /** + * Gets the value of the preTaxProfitMargin property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getPreTaxProfitMargin() { + return preTaxProfitMargin; + } + + /** + * Sets the value of the preTaxProfitMargin property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setPreTaxProfitMargin(Float value) { + this.preTaxProfitMargin = value; + } + + /** + * Gets the value of the returnOnCapitalEmployed property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getReturnOnCapitalEmployed() { + return returnOnCapitalEmployed; + } + + /** + * Sets the value of the returnOnCapitalEmployed property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setReturnOnCapitalEmployed(Float value) { + this.returnOnCapitalEmployed = value; + } + + /** + * Gets the value of the returnOnNetAssetsEmployed property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getReturnOnNetAssetsEmployed() { + return returnOnNetAssetsEmployed; + } + + /** + * Sets the value of the returnOnNetAssetsEmployed property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setReturnOnNetAssetsEmployed(Float value) { + this.returnOnNetAssetsEmployed = value; + } + + /** + * Gets the value of the returnOnTotalAssetsEmployed property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getReturnOnTotalAssetsEmployed() { + return returnOnTotalAssetsEmployed; + } + + /** + * Sets the value of the returnOnTotalAssetsEmployed property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setReturnOnTotalAssetsEmployed(Float value) { + this.returnOnTotalAssetsEmployed = value; + } + + /** + * Gets the value of the salesOrNetWorkingCapital property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getSalesOrNetWorkingCapital() { + return salesOrNetWorkingCapital; + } + + /** + * Sets the value of the salesOrNetWorkingCapital property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setSalesOrNetWorkingCapital(Float value) { + this.salesOrNetWorkingCapital = value; + } + + /** + * Gets the value of the stockTurnoverRatio property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getStockTurnoverRatio() { + return stockTurnoverRatio; + } + + /** + * Sets the value of the stockTurnoverRatio property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setStockTurnoverRatio(Float value) { + this.stockTurnoverRatio = value; + } + + /** + * Gets the value of the totalDebtRatio property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getTotalDebtRatio() { + return totalDebtRatio; + } + + /** + * Sets the value of the totalDebtRatio property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setTotalDebtRatio(Float value) { + this.totalDebtRatio = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyRatiosV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyRatiosV2Array.java new file mode 100644 index 0000000..e8cce8f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyRatiosV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyRatiosV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyRatiosV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyRatiosV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyRatiosV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyRatiosV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyRatiosV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFull.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFull.java new file mode 100644 index 0000000..ef05a27 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFull.java @@ -0,0 +1,420 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyReportFull complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyReportFull">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="order_number" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
+ *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="company_summary" type="{http://www.webservices.nl/soap/}CreditsafeLtdCompanySummary"/>
+ *         <element name="company_identification" type="{http://www.webservices.nl/soap/}CreditsafeLtdCompanyIdentification"/>
+ *         <element name="credit_score" type="{http://www.webservices.nl/soap/}CreditsafeLtdCreditScore"/>
+ *         <element name="contact_information" type="{http://www.webservices.nl/soap/}CreditsafeLtdContactInformation"/>
+ *         <element name="share_capital_structure" type="{http://www.webservices.nl/soap/}CreditsafeLtdShareCapitalStructure"/>
+ *         <element name="directors" type="{http://www.webservices.nl/soap/}CreditsafeLtdDirectors"/>
+ *         <element name="other_information" type="{http://www.webservices.nl/soap/}CreditsafeLtdOtherInformation"/>
+ *         <element name="group_structure" type="{http://www.webservices.nl/soap/}CreditsafeLtdGroupStructure" minOccurs="0"/>
+ *         <element name="financial_statements" type="{http://www.webservices.nl/soap/}CreditsafeLtdFinancialStatementArray" minOccurs="0"/>
+ *         <element name="additional_information" type="{http://www.webservices.nl/soap/}CreditsafeAdditionalInformation" minOccurs="0"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyReportFull", propOrder = { + +}) +public class CreditsafeCompanyReportFull { + + @XmlElement(name = "company_id", required = true) + protected String companyId; + @XmlElement(name = "order_number", required = true) + @XmlSchemaType(name = "unsignedLong") + protected BigInteger orderNumber; + @XmlElement(required = true) + protected String language; + @XmlElement(name = "company_summary", required = true) + protected CreditsafeLtdCompanySummary companySummary; + @XmlElement(name = "company_identification", required = true) + protected CreditsafeLtdCompanyIdentification companyIdentification; + @XmlElement(name = "credit_score", required = true) + protected CreditsafeLtdCreditScore creditScore; + @XmlElement(name = "contact_information", required = true) + protected CreditsafeLtdContactInformation contactInformation; + @XmlElement(name = "share_capital_structure", required = true) + protected CreditsafeLtdShareCapitalStructure shareCapitalStructure; + @XmlElement(required = true) + protected CreditsafeLtdDirectors directors; + @XmlElement(name = "other_information", required = true) + protected CreditsafeLtdOtherInformation otherInformation; + @XmlElement(name = "group_structure") + protected CreditsafeLtdGroupStructure groupStructure; + @XmlElement(name = "financial_statements") + protected CreditsafeLtdFinancialStatementArray financialStatements; + @XmlElement(name = "additional_information") + protected CreditsafeAdditionalInformation additionalInformation; + protected byte[] document; + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + + /** + * Gets the value of the orderNumber property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getOrderNumber() { + return orderNumber; + } + + /** + * Sets the value of the orderNumber property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setOrderNumber(BigInteger value) { + this.orderNumber = value; + } + + /** + * Gets the value of the language property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLanguage() { + return language; + } + + /** + * Sets the value of the language property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLanguage(String value) { + this.language = value; + } + + /** + * Gets the value of the companySummary property. + * + * @return + * possible object is + * {@link CreditsafeLtdCompanySummary } + * + */ + public CreditsafeLtdCompanySummary getCompanySummary() { + return companySummary; + } + + /** + * Sets the value of the companySummary property. + * + * @param value + * allowed object is + * {@link CreditsafeLtdCompanySummary } + * + */ + public void setCompanySummary(CreditsafeLtdCompanySummary value) { + this.companySummary = value; + } + + /** + * Gets the value of the companyIdentification property. + * + * @return + * possible object is + * {@link CreditsafeLtdCompanyIdentification } + * + */ + public CreditsafeLtdCompanyIdentification getCompanyIdentification() { + return companyIdentification; + } + + /** + * Sets the value of the companyIdentification property. + * + * @param value + * allowed object is + * {@link CreditsafeLtdCompanyIdentification } + * + */ + public void setCompanyIdentification(CreditsafeLtdCompanyIdentification value) { + this.companyIdentification = value; + } + + /** + * Gets the value of the creditScore property. + * + * @return + * possible object is + * {@link CreditsafeLtdCreditScore } + * + */ + public CreditsafeLtdCreditScore getCreditScore() { + return creditScore; + } + + /** + * Sets the value of the creditScore property. + * + * @param value + * allowed object is + * {@link CreditsafeLtdCreditScore } + * + */ + public void setCreditScore(CreditsafeLtdCreditScore value) { + this.creditScore = value; + } + + /** + * Gets the value of the contactInformation property. + * + * @return + * possible object is + * {@link CreditsafeLtdContactInformation } + * + */ + public CreditsafeLtdContactInformation getContactInformation() { + return contactInformation; + } + + /** + * Sets the value of the contactInformation property. + * + * @param value + * allowed object is + * {@link CreditsafeLtdContactInformation } + * + */ + public void setContactInformation(CreditsafeLtdContactInformation value) { + this.contactInformation = value; + } + + /** + * Gets the value of the shareCapitalStructure property. + * + * @return + * possible object is + * {@link CreditsafeLtdShareCapitalStructure } + * + */ + public CreditsafeLtdShareCapitalStructure getShareCapitalStructure() { + return shareCapitalStructure; + } + + /** + * Sets the value of the shareCapitalStructure property. + * + * @param value + * allowed object is + * {@link CreditsafeLtdShareCapitalStructure } + * + */ + public void setShareCapitalStructure(CreditsafeLtdShareCapitalStructure value) { + this.shareCapitalStructure = value; + } + + /** + * Gets the value of the directors property. + * + * @return + * possible object is + * {@link CreditsafeLtdDirectors } + * + */ + public CreditsafeLtdDirectors getDirectors() { + return directors; + } + + /** + * Sets the value of the directors property. + * + * @param value + * allowed object is + * {@link CreditsafeLtdDirectors } + * + */ + public void setDirectors(CreditsafeLtdDirectors value) { + this.directors = value; + } + + /** + * Gets the value of the otherInformation property. + * + * @return + * possible object is + * {@link CreditsafeLtdOtherInformation } + * + */ + public CreditsafeLtdOtherInformation getOtherInformation() { + return otherInformation; + } + + /** + * Sets the value of the otherInformation property. + * + * @param value + * allowed object is + * {@link CreditsafeLtdOtherInformation } + * + */ + public void setOtherInformation(CreditsafeLtdOtherInformation value) { + this.otherInformation = value; + } + + /** + * Gets the value of the groupStructure property. + * + * @return + * possible object is + * {@link CreditsafeLtdGroupStructure } + * + */ + public CreditsafeLtdGroupStructure getGroupStructure() { + return groupStructure; + } + + /** + * Sets the value of the groupStructure property. + * + * @param value + * allowed object is + * {@link CreditsafeLtdGroupStructure } + * + */ + public void setGroupStructure(CreditsafeLtdGroupStructure value) { + this.groupStructure = value; + } + + /** + * Gets the value of the financialStatements property. + * + * @return + * possible object is + * {@link CreditsafeLtdFinancialStatementArray } + * + */ + public CreditsafeLtdFinancialStatementArray getFinancialStatements() { + return financialStatements; + } + + /** + * Sets the value of the financialStatements property. + * + * @param value + * allowed object is + * {@link CreditsafeLtdFinancialStatementArray } + * + */ + public void setFinancialStatements(CreditsafeLtdFinancialStatementArray value) { + this.financialStatements = value; + } + + /** + * Gets the value of the additionalInformation property. + * + * @return + * possible object is + * {@link CreditsafeAdditionalInformation } + * + */ + public CreditsafeAdditionalInformation getAdditionalInformation() { + return additionalInformation; + } + + /** + * Sets the value of the additionalInformation property. + * + * @param value + * allowed object is + * {@link CreditsafeAdditionalInformation } + * + */ + public void setAdditionalInformation(CreditsafeAdditionalInformation value) { + this.additionalInformation = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFullV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFullV2.java new file mode 100644 index 0000000..89e4d36 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFullV2.java @@ -0,0 +1,472 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyReportFullV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyReportFullV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="additional_information" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationV2" minOccurs="0"/>
+ *         <element name="company_identification" type="{http://www.webservices.nl/soap/}CreditsafeCompanyIdentificationV2" minOccurs="0"/>
+ *         <element name="company_summary" type="{http://www.webservices.nl/soap/}CreditsafeCompanySummaryV2" minOccurs="0"/>
+ *         <element name="contact_information" type="{http://www.webservices.nl/soap/}CreditsafeCompanyContactInformationV2" minOccurs="0"/>
+ *         <element name="credit_score" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCreditScoreV2" minOccurs="0"/>
+ *         <element name="directors" type="{http://www.webservices.nl/soap/}CreditsafePersonDirectorsV2" minOccurs="0"/>
+ *         <element name="financial_statements" type="{http://www.webservices.nl/soap/}CreditsafeCompanyFinancialStatementV2Array" minOccurs="0"/>
+ *         <element name="group_structure" type="{http://www.webservices.nl/soap/}CreditsafeCompanyGroupStructureV2" minOccurs="0"/>
+ *         <element name="local_financial_statements" type="{http://www.webservices.nl/soap/}CreditsafeCompanyFinancialStatementV2Array" minOccurs="0"/>
+ *         <element name="negative_information" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationV2" minOccurs="0"/>
+ *         <element name="order_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="other_information" type="{http://www.webservices.nl/soap/}CreditsafeCompanyOtherInformationV2" minOccurs="0"/>
+ *         <element name="share_capital_structure" type="{http://www.webservices.nl/soap/}CreditsafeCompanyShareCapitalStructureV2" minOccurs="0"/>
+ *         <element name="payment_data" type="{http://www.webservices.nl/soap/}CreditsafeCompanyPaymentDataV2" minOccurs="0"/>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyReportFullV2", propOrder = { + +}) +public class CreditsafeCompanyReportFullV2 { + + @XmlElement(name = "additional_information") + protected CreditsafeCompanyAdditionalInformationV2 additionalInformation; + @XmlElement(name = "company_identification") + protected CreditsafeCompanyIdentificationV2 companyIdentification; + @XmlElement(name = "company_summary") + protected CreditsafeCompanySummaryV2 companySummary; + @XmlElement(name = "contact_information") + protected CreditsafeCompanyContactInformationV2 contactInformation; + @XmlElement(name = "credit_score") + protected CreditsafeCompanyCreditScoreV2 creditScore; + protected CreditsafePersonDirectorsV2 directors; + @XmlElement(name = "financial_statements") + protected CreditsafeCompanyFinancialStatementV2Array financialStatements; + @XmlElement(name = "group_structure") + protected CreditsafeCompanyGroupStructureV2 groupStructure; + @XmlElement(name = "local_financial_statements") + protected CreditsafeCompanyFinancialStatementV2Array localFinancialStatements; + @XmlElement(name = "negative_information") + protected CreditsafeCompanyNegativeInformationV2 negativeInformation; + @XmlElement(name = "order_number") + protected String orderNumber; + @XmlElement(name = "other_information") + protected CreditsafeCompanyOtherInformationV2 otherInformation; + @XmlElement(name = "share_capital_structure") + protected CreditsafeCompanyShareCapitalStructureV2 shareCapitalStructure; + @XmlElement(name = "payment_data") + protected CreditsafeCompanyPaymentDataV2 paymentData; + @XmlElement(name = "company_id") + protected String companyId; + protected String language; + + /** + * Gets the value of the additionalInformation property. + * + * @return + * possible object is + * {@link CreditsafeCompanyAdditionalInformationV2 } + * + */ + public CreditsafeCompanyAdditionalInformationV2 getAdditionalInformation() { + return additionalInformation; + } + + /** + * Sets the value of the additionalInformation property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyAdditionalInformationV2 } + * + */ + public void setAdditionalInformation(CreditsafeCompanyAdditionalInformationV2 value) { + this.additionalInformation = value; + } + + /** + * Gets the value of the companyIdentification property. + * + * @return + * possible object is + * {@link CreditsafeCompanyIdentificationV2 } + * + */ + public CreditsafeCompanyIdentificationV2 getCompanyIdentification() { + return companyIdentification; + } + + /** + * Sets the value of the companyIdentification property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyIdentificationV2 } + * + */ + public void setCompanyIdentification(CreditsafeCompanyIdentificationV2 value) { + this.companyIdentification = value; + } + + /** + * Gets the value of the companySummary property. + * + * @return + * possible object is + * {@link CreditsafeCompanySummaryV2 } + * + */ + public CreditsafeCompanySummaryV2 getCompanySummary() { + return companySummary; + } + + /** + * Sets the value of the companySummary property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanySummaryV2 } + * + */ + public void setCompanySummary(CreditsafeCompanySummaryV2 value) { + this.companySummary = value; + } + + /** + * Gets the value of the contactInformation property. + * + * @return + * possible object is + * {@link CreditsafeCompanyContactInformationV2 } + * + */ + public CreditsafeCompanyContactInformationV2 getContactInformation() { + return contactInformation; + } + + /** + * Sets the value of the contactInformation property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyContactInformationV2 } + * + */ + public void setContactInformation(CreditsafeCompanyContactInformationV2 value) { + this.contactInformation = value; + } + + /** + * Gets the value of the creditScore property. + * + * @return + * possible object is + * {@link CreditsafeCompanyCreditScoreV2 } + * + */ + public CreditsafeCompanyCreditScoreV2 getCreditScore() { + return creditScore; + } + + /** + * Sets the value of the creditScore property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyCreditScoreV2 } + * + */ + public void setCreditScore(CreditsafeCompanyCreditScoreV2 value) { + this.creditScore = value; + } + + /** + * Gets the value of the directors property. + * + * @return + * possible object is + * {@link CreditsafePersonDirectorsV2 } + * + */ + public CreditsafePersonDirectorsV2 getDirectors() { + return directors; + } + + /** + * Sets the value of the directors property. + * + * @param value + * allowed object is + * {@link CreditsafePersonDirectorsV2 } + * + */ + public void setDirectors(CreditsafePersonDirectorsV2 value) { + this.directors = value; + } + + /** + * Gets the value of the financialStatements property. + * + * @return + * possible object is + * {@link CreditsafeCompanyFinancialStatementV2Array } + * + */ + public CreditsafeCompanyFinancialStatementV2Array getFinancialStatements() { + return financialStatements; + } + + /** + * Sets the value of the financialStatements property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyFinancialStatementV2Array } + * + */ + public void setFinancialStatements(CreditsafeCompanyFinancialStatementV2Array value) { + this.financialStatements = value; + } + + /** + * Gets the value of the groupStructure property. + * + * @return + * possible object is + * {@link CreditsafeCompanyGroupStructureV2 } + * + */ + public CreditsafeCompanyGroupStructureV2 getGroupStructure() { + return groupStructure; + } + + /** + * Sets the value of the groupStructure property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyGroupStructureV2 } + * + */ + public void setGroupStructure(CreditsafeCompanyGroupStructureV2 value) { + this.groupStructure = value; + } + + /** + * Gets the value of the localFinancialStatements property. + * + * @return + * possible object is + * {@link CreditsafeCompanyFinancialStatementV2Array } + * + */ + public CreditsafeCompanyFinancialStatementV2Array getLocalFinancialStatements() { + return localFinancialStatements; + } + + /** + * Sets the value of the localFinancialStatements property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyFinancialStatementV2Array } + * + */ + public void setLocalFinancialStatements(CreditsafeCompanyFinancialStatementV2Array value) { + this.localFinancialStatements = value; + } + + /** + * Gets the value of the negativeInformation property. + * + * @return + * possible object is + * {@link CreditsafeCompanyNegativeInformationV2 } + * + */ + public CreditsafeCompanyNegativeInformationV2 getNegativeInformation() { + return negativeInformation; + } + + /** + * Sets the value of the negativeInformation property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyNegativeInformationV2 } + * + */ + public void setNegativeInformation(CreditsafeCompanyNegativeInformationV2 value) { + this.negativeInformation = value; + } + + /** + * Gets the value of the orderNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOrderNumber() { + return orderNumber; + } + + /** + * Sets the value of the orderNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOrderNumber(String value) { + this.orderNumber = value; + } + + /** + * Gets the value of the otherInformation property. + * + * @return + * possible object is + * {@link CreditsafeCompanyOtherInformationV2 } + * + */ + public CreditsafeCompanyOtherInformationV2 getOtherInformation() { + return otherInformation; + } + + /** + * Sets the value of the otherInformation property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyOtherInformationV2 } + * + */ + public void setOtherInformation(CreditsafeCompanyOtherInformationV2 value) { + this.otherInformation = value; + } + + /** + * Gets the value of the shareCapitalStructure property. + * + * @return + * possible object is + * {@link CreditsafeCompanyShareCapitalStructureV2 } + * + */ + public CreditsafeCompanyShareCapitalStructureV2 getShareCapitalStructure() { + return shareCapitalStructure; + } + + /** + * Sets the value of the shareCapitalStructure property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyShareCapitalStructureV2 } + * + */ + public void setShareCapitalStructure(CreditsafeCompanyShareCapitalStructureV2 value) { + this.shareCapitalStructure = value; + } + + /** + * Gets the value of the paymentData property. + * + * @return + * possible object is + * {@link CreditsafeCompanyPaymentDataV2 } + * + */ + public CreditsafeCompanyPaymentDataV2 getPaymentData() { + return paymentData; + } + + /** + * Sets the value of the paymentData property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyPaymentDataV2 } + * + */ + public void setPaymentData(CreditsafeCompanyPaymentDataV2 value) { + this.paymentData = value; + } + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + + /** + * Gets the value of the language property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLanguage() { + return language; + } + + /** + * Sets the value of the language property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLanguage(String value) { + this.language = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFullV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFullV2Array.java new file mode 100644 index 0000000..cd8527a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFullV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyReportFullV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyReportFullV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyReportFullV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyReportFullV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyReportFullV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyReportFullV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareCapitalStructureV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareCapitalStructureV2.java new file mode 100644 index 0000000..7d96c59 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareCapitalStructureV2.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyShareCapitalStructureV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyShareCapitalStructureV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="issued_share_capital" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="nominal_share_capital" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="share_holders" type="{http://www.webservices.nl/soap/}CreditsafeCompanyShareHolderV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyShareCapitalStructureV2", propOrder = { + +}) +public class CreditsafeCompanyShareCapitalStructureV2 { + + @XmlElement(name = "issued_share_capital") + protected String issuedShareCapital; + @XmlElement(name = "nominal_share_capital") + protected String nominalShareCapital; + @XmlElement(name = "share_holders") + protected CreditsafeCompanyShareHolderV2Array shareHolders; + + /** + * Gets the value of the issuedShareCapital property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIssuedShareCapital() { + return issuedShareCapital; + } + + /** + * Sets the value of the issuedShareCapital property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIssuedShareCapital(String value) { + this.issuedShareCapital = value; + } + + /** + * Gets the value of the nominalShareCapital property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNominalShareCapital() { + return nominalShareCapital; + } + + /** + * Sets the value of the nominalShareCapital property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNominalShareCapital(String value) { + this.nominalShareCapital = value; + } + + /** + * Gets the value of the shareHolders property. + * + * @return + * possible object is + * {@link CreditsafeCompanyShareHolderV2Array } + * + */ + public CreditsafeCompanyShareHolderV2Array getShareHolders() { + return shareHolders; + } + + /** + * Sets the value of the shareHolders property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyShareHolderV2Array } + * + */ + public void setShareHolders(CreditsafeCompanyShareHolderV2Array value) { + this.shareHolders = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareCapitalStructureV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareCapitalStructureV2Array.java new file mode 100644 index 0000000..4dde396 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareCapitalStructureV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyShareCapitalStructureV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyShareCapitalStructureV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyShareCapitalStructureV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyShareCapitalStructureV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyShareCapitalStructureV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyShareCapitalStructureV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareHolderV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareHolderV2.java new file mode 100644 index 0000000..60eac71 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareHolderV2.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyShareHolderV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyShareHolderV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" minOccurs="0"/>
+ *         <element name="share_percent" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyShareHolderV2", propOrder = { + +}) +public class CreditsafeCompanyShareHolderV2 { + + protected CreditsafeAddressV2 address; + @XmlElement(name = "share_percent") + protected BigInteger sharePercent; + protected String name; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link CreditsafeAddressV2 } + * + */ + public CreditsafeAddressV2 getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link CreditsafeAddressV2 } + * + */ + public void setAddress(CreditsafeAddressV2 value) { + this.address = value; + } + + /** + * Gets the value of the sharePercent property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getSharePercent() { + return sharePercent; + } + + /** + * Sets the value of the sharePercent property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setSharePercent(BigInteger value) { + this.sharePercent = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareHolderV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareHolderV2Array.java new file mode 100644 index 0000000..65a4cf8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareHolderV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyShareHolderV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyShareHolderV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyShareHolderV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyShareHolderV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyShareHolderV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyShareHolderV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyStatusV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyStatusV2.java new file mode 100644 index 0000000..6064a5e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyStatusV2.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyStatusV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyStatusV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyStatusV2", propOrder = { + +}) +public class CreditsafeCompanyStatusV2 { + + protected String description; + protected String status; + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyStatusV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyStatusV2Array.java new file mode 100644 index 0000000..269c306 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyStatusV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyStatusV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyStatusV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyStatusV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyStatusV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyStatusV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyStatusV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanySummaryV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanySummaryV2.java new file mode 100644 index 0000000..3b3c861 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanySummaryV2.java @@ -0,0 +1,283 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanySummaryV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanySummaryV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_status" type="{http://www.webservices.nl/soap/}CreditsafeCompanyStatusV2" minOccurs="0"/>
+ *         <element name="credit_rating" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCreditRatingV2" minOccurs="0"/>
+ *         <element name="latest_shareholders_equity_figure" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="latest_turnover_figure" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="main_activity" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivityV2" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="company_registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="business_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanySummaryV2", propOrder = { + +}) +public class CreditsafeCompanySummaryV2 { + + @XmlElement(name = "company_status") + protected CreditsafeCompanyStatusV2 companyStatus; + @XmlElement(name = "credit_rating") + protected CreditsafeCompanyCreditRatingV2 creditRating; + @XmlElement(name = "latest_shareholders_equity_figure") + protected Integer latestShareholdersEquityFigure; + @XmlElement(name = "latest_turnover_figure") + protected Integer latestTurnoverFigure; + @XmlElement(name = "main_activity") + protected CreditsafeCompanyActivityV2 mainActivity; + protected String country; + protected String number; + @XmlElement(name = "company_registration_number") + protected String companyRegistrationNumber; + @XmlElement(name = "business_name") + protected String businessName; + + /** + * Gets the value of the companyStatus property. + * + * @return + * possible object is + * {@link CreditsafeCompanyStatusV2 } + * + */ + public CreditsafeCompanyStatusV2 getCompanyStatus() { + return companyStatus; + } + + /** + * Sets the value of the companyStatus property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyStatusV2 } + * + */ + public void setCompanyStatus(CreditsafeCompanyStatusV2 value) { + this.companyStatus = value; + } + + /** + * Gets the value of the creditRating property. + * + * @return + * possible object is + * {@link CreditsafeCompanyCreditRatingV2 } + * + */ + public CreditsafeCompanyCreditRatingV2 getCreditRating() { + return creditRating; + } + + /** + * Sets the value of the creditRating property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyCreditRatingV2 } + * + */ + public void setCreditRating(CreditsafeCompanyCreditRatingV2 value) { + this.creditRating = value; + } + + /** + * Gets the value of the latestShareholdersEquityFigure property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getLatestShareholdersEquityFigure() { + return latestShareholdersEquityFigure; + } + + /** + * Sets the value of the latestShareholdersEquityFigure property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setLatestShareholdersEquityFigure(Integer value) { + this.latestShareholdersEquityFigure = value; + } + + /** + * Gets the value of the latestTurnoverFigure property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getLatestTurnoverFigure() { + return latestTurnoverFigure; + } + + /** + * Sets the value of the latestTurnoverFigure property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setLatestTurnoverFigure(Integer value) { + this.latestTurnoverFigure = value; + } + + /** + * Gets the value of the mainActivity property. + * + * @return + * possible object is + * {@link CreditsafeCompanyActivityV2 } + * + */ + public CreditsafeCompanyActivityV2 getMainActivity() { + return mainActivity; + } + + /** + * Sets the value of the mainActivity property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyActivityV2 } + * + */ + public void setMainActivity(CreditsafeCompanyActivityV2 value) { + this.mainActivity = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the number property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumber() { + return number; + } + + /** + * Sets the value of the number property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumber(String value) { + this.number = value; + } + + /** + * Gets the value of the companyRegistrationNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyRegistrationNumber() { + return companyRegistrationNumber; + } + + /** + * Sets the value of the companyRegistrationNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyRegistrationNumber(String value) { + this.companyRegistrationNumber = value; + } + + /** + * Gets the value of the businessName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBusinessName() { + return businessName; + } + + /** + * Sets the value of the businessName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBusinessName(String value) { + this.businessName = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanySummaryV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanySummaryV2Array.java new file mode 100644 index 0000000..7a5d399 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanySummaryV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanySummaryV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanySummaryV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanySummaryV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanySummaryV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanySummaryV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanySummaryV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdate.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdate.java new file mode 100644 index 0000000..fdd5ff6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdate.java @@ -0,0 +1,126 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeCompanyUpdate complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyUpdate">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="changes" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="date_last_update" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyUpdate", propOrder = { + +}) +public class CreditsafeCompanyUpdate { + + @XmlElement(name = "company_id", required = true) + protected String companyId; + @XmlElement(required = true) + protected StringArray changes; + @XmlElement(name = "date_last_update", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateLastUpdate; + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + + /** + * Gets the value of the changes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getChanges() { + return changes; + } + + /** + * Sets the value of the changes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setChanges(StringArray value) { + this.changes = value; + } + + /** + * Gets the value of the dateLastUpdate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateLastUpdate() { + return dateLastUpdate; + } + + /** + * Sets the value of the dateLastUpdate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateLastUpdate(XMLGregorianCalendar value) { + this.dateLastUpdate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdateArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdateArray.java new file mode 100644 index 0000000..5a3808e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdateArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyUpdateArray complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyUpdateArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyUpdate" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyUpdateArray", propOrder = { + "item" +}) +public class CreditsafeCompanyUpdateArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyUpdate } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdatePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdatePagedResult.java new file mode 100644 index 0000000..c4bc1c9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdatePagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyUpdatePagedResult complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyUpdatePagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}CreditsafeCompanyUpdateArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyUpdatePagedResult", propOrder = { + +}) +public class CreditsafeCompanyUpdatePagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected CreditsafeCompanyUpdateArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link CreditsafeCompanyUpdateArray } + * + */ + public CreditsafeCompanyUpdateArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyUpdateArray } + * + */ + public void setResults(CreditsafeCompanyUpdateArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyV2.java new file mode 100644 index 0000000..90315ce --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyV2.java @@ -0,0 +1,391 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeCompanyV2 complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" minOccurs="0"/>
+ *         <element name="creditsafe_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_last_account" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="date_last_change" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="vat_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="office_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyV2", propOrder = { + +}) +public class CreditsafeCompanyV2 { + + protected CreditsafeAddressV2 address; + @XmlElement(name = "creditsafe_number") + protected String creditsafeNumber; + @XmlElement(name = "date_last_account") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateLastAccount; + @XmlElement(name = "date_last_change") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateLastChange; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + @XmlElement(name = "vat_numbers") + protected StringArray vatNumbers; + protected String country; + @XmlElement(name = "registration_number") + protected String registrationNumber; + protected String name; + protected String id; + protected String type; + protected String status; + @XmlElement(name = "office_type") + protected String officeType; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link CreditsafeAddressV2 } + * + */ + public CreditsafeAddressV2 getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link CreditsafeAddressV2 } + * + */ + public void setAddress(CreditsafeAddressV2 value) { + this.address = value; + } + + /** + * Gets the value of the creditsafeNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreditsafeNumber() { + return creditsafeNumber; + } + + /** + * Sets the value of the creditsafeNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreditsafeNumber(String value) { + this.creditsafeNumber = value; + } + + /** + * Gets the value of the dateLastAccount property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateLastAccount() { + return dateLastAccount; + } + + /** + * Sets the value of the dateLastAccount property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateLastAccount(XMLGregorianCalendar value) { + this.dateLastAccount = value; + } + + /** + * Gets the value of the dateLastChange property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateLastChange() { + return dateLastChange; + } + + /** + * Sets the value of the dateLastChange property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateLastChange(XMLGregorianCalendar value) { + this.dateLastChange = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + + /** + * Gets the value of the vatNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getVatNumbers() { + return vatNumbers; + } + + /** + * Sets the value of the vatNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setVatNumbers(StringArray value) { + this.vatNumbers = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the registrationNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistrationNumber() { + return registrationNumber; + } + + /** + * Sets the value of the registrationNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistrationNumber(String value) { + this.registrationNumber = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + + /** + * Gets the value of the officeType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOfficeType() { + return officeType; + } + + /** + * Sets the value of the officeType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOfficeType(String value) { + this.officeType = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyV2Array.java new file mode 100644 index 0000000..e56374a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeCompanyV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeCompanyV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeCompanyV2Array", propOrder = { + "item" +}) +public class CreditsafeCompanyV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeCompanyV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDescriptionV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDescriptionV2.java new file mode 100644 index 0000000..7531400 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDescriptionV2.java @@ -0,0 +1,119 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeDescriptionV2 complex type. + * + *

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

+ * <complexType name="CreditsafeDescriptionV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeDescriptionV2", propOrder = { + +}) +public class CreditsafeDescriptionV2 { + + protected String code; + protected String description; + protected String value; + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCode(String value) { + this.code = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the value property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValue(String value) { + this.value = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDescriptionV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDescriptionV2Array.java new file mode 100644 index 0000000..1663847 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDescriptionV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeDescriptionV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeDescriptionV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeDescriptionV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeDescriptionV2Array", propOrder = { + "item" +}) +public class CreditsafeDescriptionV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeDescriptionV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDirector.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDirector.java new file mode 100644 index 0000000..0475cec --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDirector.java @@ -0,0 +1,205 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeDirector complex type. + * + *

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

+ * <complexType name="CreditsafeDirector">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="appointment_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="position" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeDirector", propOrder = { + +}) +public class CreditsafeDirector { + + @XmlElement(required = true) + protected String name; + protected String address; + protected String gender; + @XmlElement(name = "appointment_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar appointmentDate; + @XmlElement(name = "date_of_birth") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateOfBirth; + protected String position; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the gender property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGender() { + return gender; + } + + /** + * Sets the value of the gender property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGender(String value) { + this.gender = value; + } + + /** + * Gets the value of the appointmentDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getAppointmentDate() { + return appointmentDate; + } + + /** + * Sets the value of the appointmentDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setAppointmentDate(XMLGregorianCalendar value) { + this.appointmentDate = value; + } + + /** + * Gets the value of the dateOfBirth property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfBirth() { + return dateOfBirth; + } + + /** + * Sets the value of the dateOfBirth property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfBirth(XMLGregorianCalendar value) { + this.dateOfBirth = value; + } + + /** + * Gets the value of the position property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPosition() { + return position; + } + + /** + * Sets the value of the position property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPosition(String value) { + this.position = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDirectorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDirectorArray.java new file mode 100644 index 0000000..2860a35 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDirectorArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeDirectorArray complex type. + * + *

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

+ * <complexType name="CreditsafeDirectorArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeDirector" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeDirectorArray", propOrder = { + "item" +}) +public class CreditsafeDirectorArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeDirector } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeEmployeeInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeEmployeeInformation.java new file mode 100644 index 0000000..342904e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeEmployeeInformation.java @@ -0,0 +1,97 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeEmployeeInformation complex type. + * + *

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

+ * <complexType name="CreditsafeEmployeeInformation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
+ *         <element name="number_of_employees" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeEmployeeInformation", propOrder = { + +}) +public class CreditsafeEmployeeInformation { + + @XmlSchemaType(name = "unsignedShort") + protected Integer year; + @XmlElement(name = "number_of_employees", required = true) + protected String numberOfEmployees; + + /** + * Gets the value of the year property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getYear() { + return year; + } + + /** + * Sets the value of the year property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setYear(Integer value) { + this.year = value; + } + + /** + * Gets the value of the numberOfEmployees property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumberOfEmployees() { + return numberOfEmployees; + } + + /** + * Sets the value of the numberOfEmployees property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumberOfEmployees(String value) { + this.numberOfEmployees = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeEmployeeInformationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeEmployeeInformationArray.java new file mode 100644 index 0000000..433c46d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeEmployeeInformationArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeEmployeeInformationArray complex type. + * + *

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

+ * <complexType name="CreditsafeEmployeeInformationArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeEmployeeInformation" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeEmployeeInformationArray", propOrder = { + "item" +}) +public class CreditsafeEmployeeInformationArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeEmployeeInformation } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeFinancialRatios.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeFinancialRatios.java new file mode 100644 index 0000000..b325821 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeFinancialRatios.java @@ -0,0 +1,420 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeFinancialRatios complex type. + * + *

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

+ * <complexType name="CreditsafeFinancialRatios">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="pre_tax_profit_margin" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="return_on_capital_employed" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="return_on_total_assets_employed" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="return_on_net_assets_employed" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="sales_or_net_working_capital" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="stock_turnover_ratio" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="debtor_days" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="creditor_days" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="current_ratio" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="liquidity_ratio_or_acid_test" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="current_debt_ratio" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="gearing" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="equity_in_percentage" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="total_debt_ratio" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeFinancialRatios", propOrder = { + +}) +public class CreditsafeFinancialRatios { + + @XmlElement(name = "pre_tax_profit_margin") + protected BigDecimal preTaxProfitMargin; + @XmlElement(name = "return_on_capital_employed") + protected BigDecimal returnOnCapitalEmployed; + @XmlElement(name = "return_on_total_assets_employed") + protected BigDecimal returnOnTotalAssetsEmployed; + @XmlElement(name = "return_on_net_assets_employed") + protected BigDecimal returnOnNetAssetsEmployed; + @XmlElement(name = "sales_or_net_working_capital") + protected BigDecimal salesOrNetWorkingCapital; + @XmlElement(name = "stock_turnover_ratio") + protected BigDecimal stockTurnoverRatio; + @XmlElement(name = "debtor_days") + protected BigDecimal debtorDays; + @XmlElement(name = "creditor_days") + protected BigDecimal creditorDays; + @XmlElement(name = "current_ratio") + protected BigDecimal currentRatio; + @XmlElement(name = "liquidity_ratio_or_acid_test") + protected BigDecimal liquidityRatioOrAcidTest; + @XmlElement(name = "current_debt_ratio") + protected BigDecimal currentDebtRatio; + protected BigDecimal gearing; + @XmlElement(name = "equity_in_percentage") + protected BigDecimal equityInPercentage; + @XmlElement(name = "total_debt_ratio") + protected BigDecimal totalDebtRatio; + + /** + * Gets the value of the preTaxProfitMargin property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPreTaxProfitMargin() { + return preTaxProfitMargin; + } + + /** + * Sets the value of the preTaxProfitMargin property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPreTaxProfitMargin(BigDecimal value) { + this.preTaxProfitMargin = value; + } + + /** + * Gets the value of the returnOnCapitalEmployed property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getReturnOnCapitalEmployed() { + return returnOnCapitalEmployed; + } + + /** + * Sets the value of the returnOnCapitalEmployed property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setReturnOnCapitalEmployed(BigDecimal value) { + this.returnOnCapitalEmployed = value; + } + + /** + * Gets the value of the returnOnTotalAssetsEmployed property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getReturnOnTotalAssetsEmployed() { + return returnOnTotalAssetsEmployed; + } + + /** + * Sets the value of the returnOnTotalAssetsEmployed property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setReturnOnTotalAssetsEmployed(BigDecimal value) { + this.returnOnTotalAssetsEmployed = value; + } + + /** + * Gets the value of the returnOnNetAssetsEmployed property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getReturnOnNetAssetsEmployed() { + return returnOnNetAssetsEmployed; + } + + /** + * Sets the value of the returnOnNetAssetsEmployed property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setReturnOnNetAssetsEmployed(BigDecimal value) { + this.returnOnNetAssetsEmployed = value; + } + + /** + * Gets the value of the salesOrNetWorkingCapital property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getSalesOrNetWorkingCapital() { + return salesOrNetWorkingCapital; + } + + /** + * Sets the value of the salesOrNetWorkingCapital property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setSalesOrNetWorkingCapital(BigDecimal value) { + this.salesOrNetWorkingCapital = value; + } + + /** + * Gets the value of the stockTurnoverRatio property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getStockTurnoverRatio() { + return stockTurnoverRatio; + } + + /** + * Sets the value of the stockTurnoverRatio property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setStockTurnoverRatio(BigDecimal value) { + this.stockTurnoverRatio = value; + } + + /** + * Gets the value of the debtorDays property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getDebtorDays() { + return debtorDays; + } + + /** + * Sets the value of the debtorDays property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setDebtorDays(BigDecimal value) { + this.debtorDays = value; + } + + /** + * Gets the value of the creditorDays property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getCreditorDays() { + return creditorDays; + } + + /** + * Sets the value of the creditorDays property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setCreditorDays(BigDecimal value) { + this.creditorDays = value; + } + + /** + * Gets the value of the currentRatio property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getCurrentRatio() { + return currentRatio; + } + + /** + * Sets the value of the currentRatio property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setCurrentRatio(BigDecimal value) { + this.currentRatio = value; + } + + /** + * Gets the value of the liquidityRatioOrAcidTest property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getLiquidityRatioOrAcidTest() { + return liquidityRatioOrAcidTest; + } + + /** + * Sets the value of the liquidityRatioOrAcidTest property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setLiquidityRatioOrAcidTest(BigDecimal value) { + this.liquidityRatioOrAcidTest = value; + } + + /** + * Gets the value of the currentDebtRatio property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getCurrentDebtRatio() { + return currentDebtRatio; + } + + /** + * Sets the value of the currentDebtRatio property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setCurrentDebtRatio(BigDecimal value) { + this.currentDebtRatio = value; + } + + /** + * Gets the value of the gearing property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getGearing() { + return gearing; + } + + /** + * Sets the value of the gearing property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setGearing(BigDecimal value) { + this.gearing = value; + } + + /** + * Gets the value of the equityInPercentage property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getEquityInPercentage() { + return equityInPercentage; + } + + /** + * Sets the value of the equityInPercentage property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setEquityInPercentage(BigDecimal value) { + this.equityInPercentage = value; + } + + /** + * Gets the value of the totalDebtRatio property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTotalDebtRatio() { + return totalDebtRatio; + } + + /** + * Sets the value of the totalDebtRatio property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTotalDebtRatio(BigDecimal value) { + this.totalDebtRatio = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullRequestType.java new file mode 100644 index 0000000..d65437d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullRequestType.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for creditsafeGetReportFullRequestType complex type. + * + *

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

+ * <complexType name="creditsafeGetReportFullRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "creditsafeGetReportFullRequestType", propOrder = { + +}) +public class CreditsafeGetReportFullRequestType { + + @XmlElement(name = "company_id", required = true) + protected String companyId; + @XmlElement(required = true) + protected String language; + @XmlElement(required = true) + protected String document; + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + + /** + * Gets the value of the language property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLanguage() { + return language; + } + + /** + * Sets the value of the language property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLanguage(String value) { + this.language = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocument(String value) { + this.document = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullResponseType.java new file mode 100644 index 0000000..8806ec0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for creditsafeGetReportFullResponseType complex type. + * + *

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

+ * <complexType name="creditsafeGetReportFullResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CreditsafeCompanyReportFull"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "creditsafeGetReportFullResponseType", propOrder = { + +}) +public class CreditsafeGetReportFullResponseType { + + @XmlElement(required = true) + protected CreditsafeCompanyReportFull out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CreditsafeCompanyReportFull } + * + */ + public CreditsafeCompanyReportFull getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyReportFull } + * + */ + public void setOut(CreditsafeCompanyReportFull value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullV2RequestType.java new file mode 100644 index 0000000..a5c11a3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullV2RequestType.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for creditsafeGetReportFullV2RequestType complex type. + * + *

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

+ * <complexType name="creditsafeGetReportFullV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="reason" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "creditsafeGetReportFullV2RequestType", propOrder = { + +}) +public class CreditsafeGetReportFullV2RequestType { + + @XmlElement(name = "company_id", required = true) + protected String companyId; + @XmlElement(required = true) + protected String language; + @XmlElement(required = true) + protected String reason; + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + + /** + * Gets the value of the language property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLanguage() { + return language; + } + + /** + * Sets the value of the language property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLanguage(String value) { + this.language = value; + } + + /** + * Gets the value of the reason property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReason() { + return reason; + } + + /** + * Sets the value of the reason property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReason(String value) { + this.reason = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullV2ResponseType.java new file mode 100644 index 0000000..1aee90a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for creditsafeGetReportFullV2ResponseType complex type. + * + *

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

+ * <complexType name="creditsafeGetReportFullV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CreditsafeCompanyReportFullV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "creditsafeGetReportFullV2ResponseType", propOrder = { + +}) +public class CreditsafeGetReportFullV2ResponseType { + + @XmlElement(required = true) + protected CreditsafeCompanyReportFullV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CreditsafeCompanyReportFullV2 } + * + */ + public CreditsafeCompanyReportFullV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyReportFullV2 } + * + */ + public void setOut(CreditsafeCompanyReportFullV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeIndustryQuartilyAnalysis.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeIndustryQuartilyAnalysis.java new file mode 100644 index 0000000..a96ee72 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeIndustryQuartilyAnalysis.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeIndustryQuartilyAnalysis complex type. + * + *

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

+ * <complexType name="CreditsafeIndustryQuartilyAnalysis">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="payment_expectation_days" type="{http://www.webservices.nl/soap/}CreditsafeQuartiles" minOccurs="0"/>
+ *         <element name="day_sales_outstanding" type="{http://www.webservices.nl/soap/}CreditsafeQuartiles" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeIndustryQuartilyAnalysis", propOrder = { + +}) +public class CreditsafeIndustryQuartilyAnalysis { + + @XmlElement(name = "payment_expectation_days") + protected CreditsafeQuartiles paymentExpectationDays; + @XmlElement(name = "day_sales_outstanding") + protected CreditsafeQuartiles daySalesOutstanding; + + /** + * Gets the value of the paymentExpectationDays property. + * + * @return + * possible object is + * {@link CreditsafeQuartiles } + * + */ + public CreditsafeQuartiles getPaymentExpectationDays() { + return paymentExpectationDays; + } + + /** + * Sets the value of the paymentExpectationDays property. + * + * @param value + * allowed object is + * {@link CreditsafeQuartiles } + * + */ + public void setPaymentExpectationDays(CreditsafeQuartiles value) { + this.paymentExpectationDays = value; + } + + /** + * Gets the value of the daySalesOutstanding property. + * + * @return + * possible object is + * {@link CreditsafeQuartiles } + * + */ + public CreditsafeQuartiles getDaySalesOutstanding() { + return daySalesOutstanding; + } + + /** + * Sets the value of the daySalesOutstanding property. + * + * @param value + * allowed object is + * {@link CreditsafeQuartiles } + * + */ + public void setDaySalesOutstanding(CreditsafeQuartiles value) { + this.daySalesOutstanding = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanyBasicInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanyBasicInformation.java new file mode 100644 index 0000000..060c480 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanyBasicInformation.java @@ -0,0 +1,479 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeLtdCompanyBasicInformation complex type. + * + *

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

+ * <complexType name="CreditsafeLtdCompanyBasicInformation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="business_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="registered_company_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="company_registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="vat_registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="vat_registration_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="dateof_company_registration" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="dateof_starting_operations" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="commercial_court" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="typeof_ownership" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="company_status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="report_currency" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="principal_activity" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivity" minOccurs="0"/>
+ *         <element name="contact_address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_telephone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeLtdCompanyBasicInformation", propOrder = { + +}) +public class CreditsafeLtdCompanyBasicInformation { + + @XmlElement(name = "business_name", required = true) + protected String businessName; + @XmlElement(name = "registered_company_name", required = true) + protected String registeredCompanyName; + @XmlElement(name = "company_registration_number") + protected String companyRegistrationNumber; + @XmlElement(required = true) + protected String country; + @XmlElement(name = "vat_registration_number") + protected String vatRegistrationNumber; + @XmlElement(name = "vat_registration_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar vatRegistrationDate; + @XmlElement(name = "dateof_company_registration") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateofCompanyRegistration; + @XmlElement(name = "dateof_starting_operations") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateofStartingOperations; + @XmlElement(name = "commercial_court") + protected String commercialCourt; + @XmlElement(name = "legal_form") + protected String legalForm; + @XmlElement(name = "typeof_ownership") + protected String typeofOwnership; + @XmlElement(name = "company_status") + protected String companyStatus; + @XmlElement(name = "report_currency", required = true) + protected String reportCurrency; + @XmlElement(name = "principal_activity") + protected CreditsafeCompanyActivity principalActivity; + @XmlElement(name = "contact_address", required = true) + protected String contactAddress; + @XmlElement(name = "contact_telephone_number") + protected String contactTelephoneNumber; + + /** + * Gets the value of the businessName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBusinessName() { + return businessName; + } + + /** + * Sets the value of the businessName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBusinessName(String value) { + this.businessName = value; + } + + /** + * Gets the value of the registeredCompanyName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegisteredCompanyName() { + return registeredCompanyName; + } + + /** + * Sets the value of the registeredCompanyName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegisteredCompanyName(String value) { + this.registeredCompanyName = value; + } + + /** + * Gets the value of the companyRegistrationNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyRegistrationNumber() { + return companyRegistrationNumber; + } + + /** + * Sets the value of the companyRegistrationNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyRegistrationNumber(String value) { + this.companyRegistrationNumber = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the vatRegistrationNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVatRegistrationNumber() { + return vatRegistrationNumber; + } + + /** + * Sets the value of the vatRegistrationNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVatRegistrationNumber(String value) { + this.vatRegistrationNumber = value; + } + + /** + * Gets the value of the vatRegistrationDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getVatRegistrationDate() { + return vatRegistrationDate; + } + + /** + * Sets the value of the vatRegistrationDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setVatRegistrationDate(XMLGregorianCalendar value) { + this.vatRegistrationDate = value; + } + + /** + * Gets the value of the dateofCompanyRegistration property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateofCompanyRegistration() { + return dateofCompanyRegistration; + } + + /** + * Sets the value of the dateofCompanyRegistration property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateofCompanyRegistration(XMLGregorianCalendar value) { + this.dateofCompanyRegistration = value; + } + + /** + * Gets the value of the dateofStartingOperations property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateofStartingOperations() { + return dateofStartingOperations; + } + + /** + * Sets the value of the dateofStartingOperations property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateofStartingOperations(XMLGregorianCalendar value) { + this.dateofStartingOperations = value; + } + + /** + * Gets the value of the commercialCourt property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCommercialCourt() { + return commercialCourt; + } + + /** + * Sets the value of the commercialCourt property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCommercialCourt(String value) { + this.commercialCourt = value; + } + + /** + * Gets the value of the legalForm property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalForm() { + return legalForm; + } + + /** + * Sets the value of the legalForm property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalForm(String value) { + this.legalForm = value; + } + + /** + * Gets the value of the typeofOwnership property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTypeofOwnership() { + return typeofOwnership; + } + + /** + * Sets the value of the typeofOwnership property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTypeofOwnership(String value) { + this.typeofOwnership = value; + } + + /** + * Gets the value of the companyStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyStatus() { + return companyStatus; + } + + /** + * Sets the value of the companyStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyStatus(String value) { + this.companyStatus = value; + } + + /** + * Gets the value of the reportCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReportCurrency() { + return reportCurrency; + } + + /** + * Sets the value of the reportCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReportCurrency(String value) { + this.reportCurrency = value; + } + + /** + * Gets the value of the principalActivity property. + * + * @return + * possible object is + * {@link CreditsafeCompanyActivity } + * + */ + public CreditsafeCompanyActivity getPrincipalActivity() { + return principalActivity; + } + + /** + * Sets the value of the principalActivity property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyActivity } + * + */ + public void setPrincipalActivity(CreditsafeCompanyActivity value) { + this.principalActivity = value; + } + + /** + * Gets the value of the contactAddress property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactAddress() { + return contactAddress; + } + + /** + * Sets the value of the contactAddress property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactAddress(String value) { + this.contactAddress = value; + } + + /** + * Gets the value of the contactTelephoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactTelephoneNumber() { + return contactTelephoneNumber; + } + + /** + * Sets the value of the contactTelephoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactTelephoneNumber(String value) { + this.contactTelephoneNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanyIdentification.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanyIdentification.java new file mode 100644 index 0000000..9818d28 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanyIdentification.java @@ -0,0 +1,149 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeLtdCompanyIdentification complex type. + * + *

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

+ * <complexType name="CreditsafeLtdCompanyIdentification">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="basic_information" type="{http://www.webservices.nl/soap/}CreditsafeLtdCompanyBasicInformation"/>
+ *         <element name="activities" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivityArray" minOccurs="0"/>
+ *         <element name="previous_names" type="{http://www.webservices.nl/soap/}CreditsafeChangedStringArray" minOccurs="0"/>
+ *         <element name="previous_legal_forms" type="{http://www.webservices.nl/soap/}CreditsafeChangedStringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeLtdCompanyIdentification", propOrder = { + +}) +public class CreditsafeLtdCompanyIdentification { + + @XmlElement(name = "basic_information", required = true) + protected CreditsafeLtdCompanyBasicInformation basicInformation; + protected CreditsafeCompanyActivityArray activities; + @XmlElement(name = "previous_names") + protected CreditsafeChangedStringArray previousNames; + @XmlElement(name = "previous_legal_forms") + protected CreditsafeChangedStringArray previousLegalForms; + + /** + * Gets the value of the basicInformation property. + * + * @return + * possible object is + * {@link CreditsafeLtdCompanyBasicInformation } + * + */ + public CreditsafeLtdCompanyBasicInformation getBasicInformation() { + return basicInformation; + } + + /** + * Sets the value of the basicInformation property. + * + * @param value + * allowed object is + * {@link CreditsafeLtdCompanyBasicInformation } + * + */ + public void setBasicInformation(CreditsafeLtdCompanyBasicInformation value) { + this.basicInformation = value; + } + + /** + * Gets the value of the activities property. + * + * @return + * possible object is + * {@link CreditsafeCompanyActivityArray } + * + */ + public CreditsafeCompanyActivityArray getActivities() { + return activities; + } + + /** + * Sets the value of the activities property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyActivityArray } + * + */ + public void setActivities(CreditsafeCompanyActivityArray value) { + this.activities = value; + } + + /** + * Gets the value of the previousNames property. + * + * @return + * possible object is + * {@link CreditsafeChangedStringArray } + * + */ + public CreditsafeChangedStringArray getPreviousNames() { + return previousNames; + } + + /** + * Sets the value of the previousNames property. + * + * @param value + * allowed object is + * {@link CreditsafeChangedStringArray } + * + */ + public void setPreviousNames(CreditsafeChangedStringArray value) { + this.previousNames = value; + } + + /** + * Gets the value of the previousLegalForms property. + * + * @return + * possible object is + * {@link CreditsafeChangedStringArray } + * + */ + public CreditsafeChangedStringArray getPreviousLegalForms() { + return previousLegalForms; + } + + /** + * Sets the value of the previousLegalForms property. + * + * @param value + * allowed object is + * {@link CreditsafeChangedStringArray } + * + */ + public void setPreviousLegalForms(CreditsafeChangedStringArray value) { + this.previousLegalForms = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanySummary.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanySummary.java new file mode 100644 index 0000000..2962b04 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanySummary.java @@ -0,0 +1,339 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeLtdCompanySummary complex type. + * + *

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

+ * <complexType name="CreditsafeLtdCompanySummary">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="business_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="company_registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="main_activity" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivity" minOccurs="0"/>
+ *         <element name="company_status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="latest_turnover_figure" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="latest_shareholders_equity_figure" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="credit_rating" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="credit_limit" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="rating_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeLtdCompanySummary", propOrder = { + +}) +public class CreditsafeLtdCompanySummary { + + @XmlElement(name = "business_name", required = true) + protected String businessName; + @XmlElement(required = true) + protected String country; + protected String number; + @XmlElement(name = "company_registration_number") + protected String companyRegistrationNumber; + @XmlElement(name = "main_activity") + protected CreditsafeCompanyActivity mainActivity; + @XmlElement(name = "company_status") + protected String companyStatus; + @XmlElement(name = "latest_turnover_figure") + protected BigDecimal latestTurnoverFigure; + @XmlElement(name = "latest_shareholders_equity_figure") + protected BigDecimal latestShareholdersEquityFigure; + @XmlElement(name = "credit_rating", required = true) + protected String creditRating; + @XmlElement(name = "credit_limit", required = true) + protected String creditLimit; + @XmlElement(name = "rating_description") + protected String ratingDescription; + + /** + * Gets the value of the businessName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBusinessName() { + return businessName; + } + + /** + * Sets the value of the businessName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBusinessName(String value) { + this.businessName = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the number property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumber() { + return number; + } + + /** + * Sets the value of the number property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumber(String value) { + this.number = value; + } + + /** + * Gets the value of the companyRegistrationNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyRegistrationNumber() { + return companyRegistrationNumber; + } + + /** + * Sets the value of the companyRegistrationNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyRegistrationNumber(String value) { + this.companyRegistrationNumber = value; + } + + /** + * Gets the value of the mainActivity property. + * + * @return + * possible object is + * {@link CreditsafeCompanyActivity } + * + */ + public CreditsafeCompanyActivity getMainActivity() { + return mainActivity; + } + + /** + * Sets the value of the mainActivity property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyActivity } + * + */ + public void setMainActivity(CreditsafeCompanyActivity value) { + this.mainActivity = value; + } + + /** + * Gets the value of the companyStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyStatus() { + return companyStatus; + } + + /** + * Sets the value of the companyStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyStatus(String value) { + this.companyStatus = value; + } + + /** + * Gets the value of the latestTurnoverFigure property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getLatestTurnoverFigure() { + return latestTurnoverFigure; + } + + /** + * Sets the value of the latestTurnoverFigure property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setLatestTurnoverFigure(BigDecimal value) { + this.latestTurnoverFigure = value; + } + + /** + * Gets the value of the latestShareholdersEquityFigure property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getLatestShareholdersEquityFigure() { + return latestShareholdersEquityFigure; + } + + /** + * Sets the value of the latestShareholdersEquityFigure property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setLatestShareholdersEquityFigure(BigDecimal value) { + this.latestShareholdersEquityFigure = value; + } + + /** + * Gets the value of the creditRating property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreditRating() { + return creditRating; + } + + /** + * Sets the value of the creditRating property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreditRating(String value) { + this.creditRating = value; + } + + /** + * Gets the value of the creditLimit property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreditLimit() { + return creditLimit; + } + + /** + * Sets the value of the creditLimit property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreditLimit(String value) { + this.creditLimit = value; + } + + /** + * Gets the value of the ratingDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRatingDescription() { + return ratingDescription; + } + + /** + * Sets the value of the ratingDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRatingDescription(String value) { + this.ratingDescription = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdContactInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdContactInformation.java new file mode 100644 index 0000000..e1f7bb6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdContactInformation.java @@ -0,0 +1,176 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeLtdContactInformation complex type. + * + *

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

+ * <complexType name="CreditsafeLtdContactInformation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="main_address" type="{http://www.webservices.nl/soap/}CreditsafeStreetAddressWithTelephone"/>
+ *         <element name="other_addresses" type="{http://www.webservices.nl/soap/}CreditsafeStreetAddressWithTelephoneArray" minOccurs="0"/>
+ *         <element name="previous_addresses" type="{http://www.webservices.nl/soap/}CreditsafeStreetAddressArray" minOccurs="0"/>
+ *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="websites" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeLtdContactInformation", propOrder = { + +}) +public class CreditsafeLtdContactInformation { + + @XmlElement(name = "main_address", required = true) + protected CreditsafeStreetAddressWithTelephone mainAddress; + @XmlElement(name = "other_addresses") + protected CreditsafeStreetAddressWithTelephoneArray otherAddresses; + @XmlElement(name = "previous_addresses") + protected CreditsafeStreetAddressArray previousAddresses; + @XmlElement(name = "email_addresses") + protected StringArray emailAddresses; + protected StringArray websites; + + /** + * Gets the value of the mainAddress property. + * + * @return + * possible object is + * {@link CreditsafeStreetAddressWithTelephone } + * + */ + public CreditsafeStreetAddressWithTelephone getMainAddress() { + return mainAddress; + } + + /** + * Sets the value of the mainAddress property. + * + * @param value + * allowed object is + * {@link CreditsafeStreetAddressWithTelephone } + * + */ + public void setMainAddress(CreditsafeStreetAddressWithTelephone value) { + this.mainAddress = value; + } + + /** + * Gets the value of the otherAddresses property. + * + * @return + * possible object is + * {@link CreditsafeStreetAddressWithTelephoneArray } + * + */ + public CreditsafeStreetAddressWithTelephoneArray getOtherAddresses() { + return otherAddresses; + } + + /** + * Sets the value of the otherAddresses property. + * + * @param value + * allowed object is + * {@link CreditsafeStreetAddressWithTelephoneArray } + * + */ + public void setOtherAddresses(CreditsafeStreetAddressWithTelephoneArray value) { + this.otherAddresses = value; + } + + /** + * Gets the value of the previousAddresses property. + * + * @return + * possible object is + * {@link CreditsafeStreetAddressArray } + * + */ + public CreditsafeStreetAddressArray getPreviousAddresses() { + return previousAddresses; + } + + /** + * Sets the value of the previousAddresses property. + * + * @param value + * allowed object is + * {@link CreditsafeStreetAddressArray } + * + */ + public void setPreviousAddresses(CreditsafeStreetAddressArray value) { + this.previousAddresses = value; + } + + /** + * Gets the value of the emailAddresses property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getEmailAddresses() { + return emailAddresses; + } + + /** + * Sets the value of the emailAddresses property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setEmailAddresses(StringArray value) { + this.emailAddresses = value; + } + + /** + * Gets the value of the websites property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getWebsites() { + return websites; + } + + /** + * Sets the value of the websites property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setWebsites(StringArray value) { + this.websites = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCreditScore.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCreditScore.java new file mode 100644 index 0000000..64ad467 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCreditScore.java @@ -0,0 +1,262 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeLtdCreditScore complex type. + * + *

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

+ * <complexType name="CreditsafeLtdCreditScore">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="current_credit_rating" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="current_rating_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="current_credit_limit" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="current_contract_limit" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="previous_credit_limit" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="previous_credit_rating" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="previous_rating_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_of_latest_rating_change" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeLtdCreditScore", propOrder = { + +}) +public class CreditsafeLtdCreditScore { + + @XmlElement(name = "current_credit_rating", required = true) + protected String currentCreditRating; + @XmlElement(name = "current_rating_description") + protected String currentRatingDescription; + @XmlElement(name = "current_credit_limit", required = true) + protected String currentCreditLimit; + @XmlElement(name = "current_contract_limit") + protected BigDecimal currentContractLimit; + @XmlElement(name = "previous_credit_limit") + protected String previousCreditLimit; + @XmlElement(name = "previous_credit_rating") + protected String previousCreditRating; + @XmlElement(name = "previous_rating_description") + protected String previousRatingDescription; + @XmlElement(name = "date_of_latest_rating_change") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateOfLatestRatingChange; + + /** + * Gets the value of the currentCreditRating property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCurrentCreditRating() { + return currentCreditRating; + } + + /** + * Sets the value of the currentCreditRating property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCurrentCreditRating(String value) { + this.currentCreditRating = value; + } + + /** + * Gets the value of the currentRatingDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCurrentRatingDescription() { + return currentRatingDescription; + } + + /** + * Sets the value of the currentRatingDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCurrentRatingDescription(String value) { + this.currentRatingDescription = value; + } + + /** + * Gets the value of the currentCreditLimit property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCurrentCreditLimit() { + return currentCreditLimit; + } + + /** + * Sets the value of the currentCreditLimit property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCurrentCreditLimit(String value) { + this.currentCreditLimit = value; + } + + /** + * Gets the value of the currentContractLimit property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getCurrentContractLimit() { + return currentContractLimit; + } + + /** + * Sets the value of the currentContractLimit property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setCurrentContractLimit(BigDecimal value) { + this.currentContractLimit = value; + } + + /** + * Gets the value of the previousCreditLimit property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreviousCreditLimit() { + return previousCreditLimit; + } + + /** + * Sets the value of the previousCreditLimit property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreviousCreditLimit(String value) { + this.previousCreditLimit = value; + } + + /** + * Gets the value of the previousCreditRating property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreviousCreditRating() { + return previousCreditRating; + } + + /** + * Sets the value of the previousCreditRating property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreviousCreditRating(String value) { + this.previousCreditRating = value; + } + + /** + * Gets the value of the previousRatingDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreviousRatingDescription() { + return previousRatingDescription; + } + + /** + * Sets the value of the previousRatingDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreviousRatingDescription(String value) { + this.previousRatingDescription = value; + } + + /** + * Gets the value of the dateOfLatestRatingChange property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfLatestRatingChange() { + return dateOfLatestRatingChange; + } + + /** + * Sets the value of the dateOfLatestRatingChange property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfLatestRatingChange(XMLGregorianCalendar value) { + this.dateOfLatestRatingChange = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdDirectors.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdDirectors.java new file mode 100644 index 0000000..a13d9ed --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdDirectors.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeLtdDirectors complex type. + * + *

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

+ * <complexType name="CreditsafeLtdDirectors">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="current_directors" type="{http://www.webservices.nl/soap/}CreditsafeDirectorArray" minOccurs="0"/>
+ *         <element name="previous_directors" type="{http://www.webservices.nl/soap/}CreditsafePreviousDirectorArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeLtdDirectors", propOrder = { + +}) +public class CreditsafeLtdDirectors { + + @XmlElement(name = "current_directors") + protected CreditsafeDirectorArray currentDirectors; + @XmlElement(name = "previous_directors") + protected CreditsafePreviousDirectorArray previousDirectors; + + /** + * Gets the value of the currentDirectors property. + * + * @return + * possible object is + * {@link CreditsafeDirectorArray } + * + */ + public CreditsafeDirectorArray getCurrentDirectors() { + return currentDirectors; + } + + /** + * Sets the value of the currentDirectors property. + * + * @param value + * allowed object is + * {@link CreditsafeDirectorArray } + * + */ + public void setCurrentDirectors(CreditsafeDirectorArray value) { + this.currentDirectors = value; + } + + /** + * Gets the value of the previousDirectors property. + * + * @return + * possible object is + * {@link CreditsafePreviousDirectorArray } + * + */ + public CreditsafePreviousDirectorArray getPreviousDirectors() { + return previousDirectors; + } + + /** + * Sets the value of the previousDirectors property. + * + * @param value + * allowed object is + * {@link CreditsafePreviousDirectorArray } + * + */ + public void setPreviousDirectors(CreditsafePreviousDirectorArray value) { + this.previousDirectors = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdFinancialStatement.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdFinancialStatement.java new file mode 100644 index 0000000..0f74d73 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdFinancialStatement.java @@ -0,0 +1,149 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeLtdFinancialStatement complex type. + * + *

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

+ * <complexType name="CreditsafeLtdFinancialStatement">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="profit_and_loss" type="{http://www.webservices.nl/soap/}CreditsafeProfitAndLossFigures" minOccurs="0"/>
+ *         <element name="balance_sheet" type="{http://www.webservices.nl/soap/}CreditsafeBalanceSheet" minOccurs="0"/>
+ *         <element name="other_financials" type="{http://www.webservices.nl/soap/}CreditsafeOtherFinancials" minOccurs="0"/>
+ *         <element name="ratios" type="{http://www.webservices.nl/soap/}CreditsafeFinancialRatios" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeLtdFinancialStatement", propOrder = { + +}) +public class CreditsafeLtdFinancialStatement { + + @XmlElement(name = "profit_and_loss") + protected CreditsafeProfitAndLossFigures profitAndLoss; + @XmlElement(name = "balance_sheet") + protected CreditsafeBalanceSheet balanceSheet; + @XmlElement(name = "other_financials") + protected CreditsafeOtherFinancials otherFinancials; + protected CreditsafeFinancialRatios ratios; + + /** + * Gets the value of the profitAndLoss property. + * + * @return + * possible object is + * {@link CreditsafeProfitAndLossFigures } + * + */ + public CreditsafeProfitAndLossFigures getProfitAndLoss() { + return profitAndLoss; + } + + /** + * Sets the value of the profitAndLoss property. + * + * @param value + * allowed object is + * {@link CreditsafeProfitAndLossFigures } + * + */ + public void setProfitAndLoss(CreditsafeProfitAndLossFigures value) { + this.profitAndLoss = value; + } + + /** + * Gets the value of the balanceSheet property. + * + * @return + * possible object is + * {@link CreditsafeBalanceSheet } + * + */ + public CreditsafeBalanceSheet getBalanceSheet() { + return balanceSheet; + } + + /** + * Sets the value of the balanceSheet property. + * + * @param value + * allowed object is + * {@link CreditsafeBalanceSheet } + * + */ + public void setBalanceSheet(CreditsafeBalanceSheet value) { + this.balanceSheet = value; + } + + /** + * Gets the value of the otherFinancials property. + * + * @return + * possible object is + * {@link CreditsafeOtherFinancials } + * + */ + public CreditsafeOtherFinancials getOtherFinancials() { + return otherFinancials; + } + + /** + * Sets the value of the otherFinancials property. + * + * @param value + * allowed object is + * {@link CreditsafeOtherFinancials } + * + */ + public void setOtherFinancials(CreditsafeOtherFinancials value) { + this.otherFinancials = value; + } + + /** + * Gets the value of the ratios property. + * + * @return + * possible object is + * {@link CreditsafeFinancialRatios } + * + */ + public CreditsafeFinancialRatios getRatios() { + return ratios; + } + + /** + * Sets the value of the ratios property. + * + * @param value + * allowed object is + * {@link CreditsafeFinancialRatios } + * + */ + public void setRatios(CreditsafeFinancialRatios value) { + this.ratios = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdFinancialStatementArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdFinancialStatementArray.java new file mode 100644 index 0000000..cb7343d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdFinancialStatementArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeLtdFinancialStatementArray complex type. + * + *

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

+ * <complexType name="CreditsafeLtdFinancialStatementArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeLtdFinancialStatement" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeLtdFinancialStatementArray", propOrder = { + "item" +}) +public class CreditsafeLtdFinancialStatementArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeLtdFinancialStatement } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdGroupStructure.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdGroupStructure.java new file mode 100644 index 0000000..fcd66e4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdGroupStructure.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeLtdGroupStructure complex type. + * + *

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

+ * <complexType name="CreditsafeLtdGroupStructure">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="ultimate_parent" type="{http://www.webservices.nl/soap/}CreditsafeCompanyListEntry" minOccurs="0"/>
+ *         <element name="immediate_parent" type="{http://www.webservices.nl/soap/}CreditsafeCompanyListEntry" minOccurs="0"/>
+ *         <element name="subsidiary_companies" type="{http://www.webservices.nl/soap/}CreditsafeCompanyListEntryArray" minOccurs="0"/>
+ *         <element name="affiliated_companies" type="{http://www.webservices.nl/soap/}CreditsafeCompanyListEntryArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeLtdGroupStructure", propOrder = { + +}) +public class CreditsafeLtdGroupStructure { + + @XmlElement(name = "ultimate_parent") + protected CreditsafeCompanyListEntry ultimateParent; + @XmlElement(name = "immediate_parent") + protected CreditsafeCompanyListEntry immediateParent; + @XmlElement(name = "subsidiary_companies") + protected CreditsafeCompanyListEntryArray subsidiaryCompanies; + @XmlElement(name = "affiliated_companies") + protected CreditsafeCompanyListEntryArray affiliatedCompanies; + + /** + * Gets the value of the ultimateParent property. + * + * @return + * possible object is + * {@link CreditsafeCompanyListEntry } + * + */ + public CreditsafeCompanyListEntry getUltimateParent() { + return ultimateParent; + } + + /** + * Sets the value of the ultimateParent property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyListEntry } + * + */ + public void setUltimateParent(CreditsafeCompanyListEntry value) { + this.ultimateParent = value; + } + + /** + * Gets the value of the immediateParent property. + * + * @return + * possible object is + * {@link CreditsafeCompanyListEntry } + * + */ + public CreditsafeCompanyListEntry getImmediateParent() { + return immediateParent; + } + + /** + * Sets the value of the immediateParent property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyListEntry } + * + */ + public void setImmediateParent(CreditsafeCompanyListEntry value) { + this.immediateParent = value; + } + + /** + * Gets the value of the subsidiaryCompanies property. + * + * @return + * possible object is + * {@link CreditsafeCompanyListEntryArray } + * + */ + public CreditsafeCompanyListEntryArray getSubsidiaryCompanies() { + return subsidiaryCompanies; + } + + /** + * Sets the value of the subsidiaryCompanies property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyListEntryArray } + * + */ + public void setSubsidiaryCompanies(CreditsafeCompanyListEntryArray value) { + this.subsidiaryCompanies = value; + } + + /** + * Gets the value of the affiliatedCompanies property. + * + * @return + * possible object is + * {@link CreditsafeCompanyListEntryArray } + * + */ + public CreditsafeCompanyListEntryArray getAffiliatedCompanies() { + return affiliatedCompanies; + } + + /** + * Sets the value of the affiliatedCompanies property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyListEntryArray } + * + */ + public void setAffiliatedCompanies(CreditsafeCompanyListEntryArray value) { + this.affiliatedCompanies = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdOtherInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdOtherInformation.java new file mode 100644 index 0000000..60e45a8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdOtherInformation.java @@ -0,0 +1,121 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeLtdOtherInformation complex type. + * + *

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

+ * <complexType name="CreditsafeLtdOtherInformation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bankers" type="{http://www.webservices.nl/soap/}CreditsafeBankerArray" minOccurs="0"/>
+ *         <element name="advisors" type="{http://www.webservices.nl/soap/}CreditsafeAdvisorArray" minOccurs="0"/>
+ *         <element name="employees_information" type="{http://www.webservices.nl/soap/}CreditsafeEmployeeInformationArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeLtdOtherInformation", propOrder = { + +}) +public class CreditsafeLtdOtherInformation { + + protected CreditsafeBankerArray bankers; + protected CreditsafeAdvisorArray advisors; + @XmlElement(name = "employees_information") + protected CreditsafeEmployeeInformationArray employeesInformation; + + /** + * Gets the value of the bankers property. + * + * @return + * possible object is + * {@link CreditsafeBankerArray } + * + */ + public CreditsafeBankerArray getBankers() { + return bankers; + } + + /** + * Sets the value of the bankers property. + * + * @param value + * allowed object is + * {@link CreditsafeBankerArray } + * + */ + public void setBankers(CreditsafeBankerArray value) { + this.bankers = value; + } + + /** + * Gets the value of the advisors property. + * + * @return + * possible object is + * {@link CreditsafeAdvisorArray } + * + */ + public CreditsafeAdvisorArray getAdvisors() { + return advisors; + } + + /** + * Sets the value of the advisors property. + * + * @param value + * allowed object is + * {@link CreditsafeAdvisorArray } + * + */ + public void setAdvisors(CreditsafeAdvisorArray value) { + this.advisors = value; + } + + /** + * Gets the value of the employeesInformation property. + * + * @return + * possible object is + * {@link CreditsafeEmployeeInformationArray } + * + */ + public CreditsafeEmployeeInformationArray getEmployeesInformation() { + return employeesInformation; + } + + /** + * Sets the value of the employeesInformation property. + * + * @param value + * allowed object is + * {@link CreditsafeEmployeeInformationArray } + * + */ + public void setEmployeesInformation(CreditsafeEmployeeInformationArray value) { + this.employeesInformation = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdShareCapitalStructure.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdShareCapitalStructure.java new file mode 100644 index 0000000..adb52d7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdShareCapitalStructure.java @@ -0,0 +1,124 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeLtdShareCapitalStructure complex type. + * + *

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

+ * <complexType name="CreditsafeLtdShareCapitalStructure">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nominal_share_capital" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="issued_share_capital" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="share_holders" type="{http://www.webservices.nl/soap/}CreditsafeShareHolderArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeLtdShareCapitalStructure", propOrder = { + +}) +public class CreditsafeLtdShareCapitalStructure { + + @XmlElement(name = "nominal_share_capital") + protected BigDecimal nominalShareCapital; + @XmlElement(name = "issued_share_capital") + protected BigDecimal issuedShareCapital; + @XmlElement(name = "share_holders") + protected CreditsafeShareHolderArray shareHolders; + + /** + * Gets the value of the nominalShareCapital property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getNominalShareCapital() { + return nominalShareCapital; + } + + /** + * Sets the value of the nominalShareCapital property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setNominalShareCapital(BigDecimal value) { + this.nominalShareCapital = value; + } + + /** + * Gets the value of the issuedShareCapital property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getIssuedShareCapital() { + return issuedShareCapital; + } + + /** + * Sets the value of the issuedShareCapital property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setIssuedShareCapital(BigDecimal value) { + this.issuedShareCapital = value; + } + + /** + * Gets the value of the shareHolders property. + * + * @return + * possible object is + * {@link CreditsafeShareHolderArray } + * + */ + public CreditsafeShareHolderArray getShareHolders() { + return shareHolders; + } + + /** + * Sets the value of the shareHolders property. + * + * @param value + * allowed object is + * {@link CreditsafeShareHolderArray } + * + */ + public void setShareHolders(CreditsafeShareHolderArray value) { + this.shareHolders = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorAddCompanyRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorAddCompanyRequestType.java new file mode 100644 index 0000000..f80c7c3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorAddCompanyRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for creditsafeMonitorAddCompanyRequestType complex type. + * + *

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

+ * <complexType name="creditsafeMonitorAddCompanyRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "creditsafeMonitorAddCompanyRequestType", propOrder = { + +}) +public class CreditsafeMonitorAddCompanyRequestType { + + @XmlElement(name = "company_id", required = true) + protected String companyId; + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorAddCompanyResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorAddCompanyResponseType.java new file mode 100644 index 0000000..916ddf0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorAddCompanyResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for creditsafeMonitorAddCompanyResponseType complex type. + * + *

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

+ * <complexType name="creditsafeMonitorAddCompanyResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "creditsafeMonitorAddCompanyResponseType") +public class CreditsafeMonitorAddCompanyResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorGetUpdatedCompaniesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorGetUpdatedCompaniesRequestType.java new file mode 100644 index 0000000..b775a5a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorGetUpdatedCompaniesRequestType.java @@ -0,0 +1,90 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for creditsafeMonitorGetUpdatedCompaniesRequestType complex type. + * + *

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

+ * <complexType name="creditsafeMonitorGetUpdatedCompaniesRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "creditsafeMonitorGetUpdatedCompaniesRequestType", propOrder = { + +}) +public class CreditsafeMonitorGetUpdatedCompaniesRequestType { + + @XmlElement(name = "changed_since", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar changedSince; + protected int page; + + /** + * Gets the value of the changedSince property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getChangedSince() { + return changedSince; + } + + /** + * Sets the value of the changedSince property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setChangedSince(XMLGregorianCalendar value) { + this.changedSince = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorGetUpdatedCompaniesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorGetUpdatedCompaniesResponseType.java new file mode 100644 index 0000000..169f13e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorGetUpdatedCompaniesResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for creditsafeMonitorGetUpdatedCompaniesResponseType complex type. + * + *

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

+ * <complexType name="creditsafeMonitorGetUpdatedCompaniesResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CreditsafeCompanyUpdatePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "creditsafeMonitorGetUpdatedCompaniesResponseType", propOrder = { + +}) +public class CreditsafeMonitorGetUpdatedCompaniesResponseType { + + @XmlElement(required = true) + protected CreditsafeCompanyUpdatePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CreditsafeCompanyUpdatePagedResult } + * + */ + public CreditsafeCompanyUpdatePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyUpdatePagedResult } + * + */ + public void setOut(CreditsafeCompanyUpdatePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorRemoveCompanyRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorRemoveCompanyRequestType.java new file mode 100644 index 0000000..74cdfe1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorRemoveCompanyRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for creditsafeMonitorRemoveCompanyRequestType complex type. + * + *

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

+ * <complexType name="creditsafeMonitorRemoveCompanyRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "creditsafeMonitorRemoveCompanyRequestType", propOrder = { + +}) +public class CreditsafeMonitorRemoveCompanyRequestType { + + @XmlElement(name = "company_id", required = true) + protected String companyId; + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorRemoveCompanyResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorRemoveCompanyResponseType.java new file mode 100644 index 0000000..470791d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorRemoveCompanyResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for creditsafeMonitorRemoveCompanyResponseType complex type. + * + *

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

+ * <complexType name="creditsafeMonitorRemoveCompanyResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "creditsafeMonitorRemoveCompanyResponseType") +public class CreditsafeMonitorRemoveCompanyResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlAdditionalInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlAdditionalInformation.java new file mode 100644 index 0000000..addb688 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlAdditionalInformation.java @@ -0,0 +1,176 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeNlAdditionalInformation complex type. + * + *

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

+ * <complexType name="CreditsafeNlAdditionalInformation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="negative_information" type="{http://www.webservices.nl/soap/}CreditsafeNlNegativeInformation" minOccurs="0"/>
+ *         <element name="misc" type="{http://www.webservices.nl/soap/}CreditsafeNlMisc" minOccurs="0"/>
+ *         <element name="industry_quartile_analysis" type="{http://www.webservices.nl/soap/}CreditsafeIndustryQuartilyAnalysis" minOccurs="0"/>
+ *         <element name="payment_expectations_summary" type="{http://www.webservices.nl/soap/}CreditsafeNlPaymentExpectationsSummary" minOccurs="0"/>
+ *         <element name="letters_of_liability_information_403" type="{http://www.webservices.nl/soap/}CreditsafeNlLettersOfLiabilityInformation403" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeNlAdditionalInformation", propOrder = { + +}) +public class CreditsafeNlAdditionalInformation { + + @XmlElement(name = "negative_information") + protected CreditsafeNlNegativeInformation negativeInformation; + protected CreditsafeNlMisc misc; + @XmlElement(name = "industry_quartile_analysis") + protected CreditsafeIndustryQuartilyAnalysis industryQuartileAnalysis; + @XmlElement(name = "payment_expectations_summary") + protected CreditsafeNlPaymentExpectationsSummary paymentExpectationsSummary; + @XmlElement(name = "letters_of_liability_information_403") + protected CreditsafeNlLettersOfLiabilityInformation403 lettersOfLiabilityInformation403; + + /** + * Gets the value of the negativeInformation property. + * + * @return + * possible object is + * {@link CreditsafeNlNegativeInformation } + * + */ + public CreditsafeNlNegativeInformation getNegativeInformation() { + return negativeInformation; + } + + /** + * Sets the value of the negativeInformation property. + * + * @param value + * allowed object is + * {@link CreditsafeNlNegativeInformation } + * + */ + public void setNegativeInformation(CreditsafeNlNegativeInformation value) { + this.negativeInformation = value; + } + + /** + * Gets the value of the misc property. + * + * @return + * possible object is + * {@link CreditsafeNlMisc } + * + */ + public CreditsafeNlMisc getMisc() { + return misc; + } + + /** + * Sets the value of the misc property. + * + * @param value + * allowed object is + * {@link CreditsafeNlMisc } + * + */ + public void setMisc(CreditsafeNlMisc value) { + this.misc = value; + } + + /** + * Gets the value of the industryQuartileAnalysis property. + * + * @return + * possible object is + * {@link CreditsafeIndustryQuartilyAnalysis } + * + */ + public CreditsafeIndustryQuartilyAnalysis getIndustryQuartileAnalysis() { + return industryQuartileAnalysis; + } + + /** + * Sets the value of the industryQuartileAnalysis property. + * + * @param value + * allowed object is + * {@link CreditsafeIndustryQuartilyAnalysis } + * + */ + public void setIndustryQuartileAnalysis(CreditsafeIndustryQuartilyAnalysis value) { + this.industryQuartileAnalysis = value; + } + + /** + * Gets the value of the paymentExpectationsSummary property. + * + * @return + * possible object is + * {@link CreditsafeNlPaymentExpectationsSummary } + * + */ + public CreditsafeNlPaymentExpectationsSummary getPaymentExpectationsSummary() { + return paymentExpectationsSummary; + } + + /** + * Sets the value of the paymentExpectationsSummary property. + * + * @param value + * allowed object is + * {@link CreditsafeNlPaymentExpectationsSummary } + * + */ + public void setPaymentExpectationsSummary(CreditsafeNlPaymentExpectationsSummary value) { + this.paymentExpectationsSummary = value; + } + + /** + * Gets the value of the lettersOfLiabilityInformation403 property. + * + * @return + * possible object is + * {@link CreditsafeNlLettersOfLiabilityInformation403 } + * + */ + public CreditsafeNlLettersOfLiabilityInformation403 getLettersOfLiabilityInformation403() { + return lettersOfLiabilityInformation403; + } + + /** + * Sets the value of the lettersOfLiabilityInformation403 property. + * + * @param value + * allowed object is + * {@link CreditsafeNlLettersOfLiabilityInformation403 } + * + */ + public void setLettersOfLiabilityInformation403(CreditsafeNlLettersOfLiabilityInformation403 value) { + this.lettersOfLiabilityInformation403 = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtData.java new file mode 100644 index 0000000..c9cfc8c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtData.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeNlCourtData complex type. + * + *

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

+ * <complexType name="CreditsafeNlCourtData">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="facts" type="{http://www.webservices.nl/soap/}CreditsafeNlCourtDataFacts" minOccurs="0"/>
+ *         <element name="receiver_details" type="{http://www.webservices.nl/soap/}CreditsafeNlCourtDataReceiver" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeNlCourtData", propOrder = { + +}) +public class CreditsafeNlCourtData { + + protected CreditsafeNlCourtDataFacts facts; + @XmlElement(name = "receiver_details") + protected CreditsafeNlCourtDataReceiver receiverDetails; + + /** + * Gets the value of the facts property. + * + * @return + * possible object is + * {@link CreditsafeNlCourtDataFacts } + * + */ + public CreditsafeNlCourtDataFacts getFacts() { + return facts; + } + + /** + * Sets the value of the facts property. + * + * @param value + * allowed object is + * {@link CreditsafeNlCourtDataFacts } + * + */ + public void setFacts(CreditsafeNlCourtDataFacts value) { + this.facts = value; + } + + /** + * Gets the value of the receiverDetails property. + * + * @return + * possible object is + * {@link CreditsafeNlCourtDataReceiver } + * + */ + public CreditsafeNlCourtDataReceiver getReceiverDetails() { + return receiverDetails; + } + + /** + * Sets the value of the receiverDetails property. + * + * @param value + * allowed object is + * {@link CreditsafeNlCourtDataReceiver } + * + */ + public void setReceiverDetails(CreditsafeNlCourtDataReceiver value) { + this.receiverDetails = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtDataFacts.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtDataFacts.java new file mode 100644 index 0000000..237d021 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtDataFacts.java @@ -0,0 +1,125 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeNlCourtDataFacts complex type. + * + *

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

+ * <complexType name="CreditsafeNlCourtDataFacts">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="court_action" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="date_of_bankruptcy" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="details" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeNlCourtDataFacts", propOrder = { + +}) +public class CreditsafeNlCourtDataFacts { + + @XmlElement(name = "court_action") + protected Boolean courtAction; + @XmlElement(name = "date_of_bankruptcy") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateOfBankruptcy; + protected String details; + + /** + * Gets the value of the courtAction property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isCourtAction() { + return courtAction; + } + + /** + * Sets the value of the courtAction property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setCourtAction(Boolean value) { + this.courtAction = value; + } + + /** + * Gets the value of the dateOfBankruptcy property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfBankruptcy() { + return dateOfBankruptcy; + } + + /** + * Sets the value of the dateOfBankruptcy property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfBankruptcy(XMLGregorianCalendar value) { + this.dateOfBankruptcy = value; + } + + /** + * Gets the value of the details property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDetails() { + return details; + } + + /** + * Sets the value of the details property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDetails(String value) { + this.details = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtDataReceiver.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtDataReceiver.java new file mode 100644 index 0000000..877c8e5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtDataReceiver.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeNlCourtDataReceiver complex type. + * + *

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

+ * <complexType name="CreditsafeNlCourtDataReceiver">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeNlCourtDataReceiver", propOrder = { + +}) +public class CreditsafeNlCourtDataReceiver { + + protected String name; + protected String address; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiability.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiability.java new file mode 100644 index 0000000..d1e17c1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiability.java @@ -0,0 +1,156 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeNlLettersOfLiability complex type. + * + *

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

+ * <complexType name="CreditsafeNlLettersOfLiability">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="start_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="submitted_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="removal_submitted_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="removal_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeNlLettersOfLiability", propOrder = { + +}) +public class CreditsafeNlLettersOfLiability { + + @XmlElement(name = "start_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar startDate; + @XmlElement(name = "submitted_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar submittedDate; + @XmlElement(name = "removal_submitted_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar removalSubmittedDate; + @XmlElement(name = "removal_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar removalDate; + + /** + * Gets the value of the startDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStartDate() { + return startDate; + } + + /** + * Sets the value of the startDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStartDate(XMLGregorianCalendar value) { + this.startDate = value; + } + + /** + * Gets the value of the submittedDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSubmittedDate() { + return submittedDate; + } + + /** + * Sets the value of the submittedDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSubmittedDate(XMLGregorianCalendar value) { + this.submittedDate = value; + } + + /** + * Gets the value of the removalSubmittedDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getRemovalSubmittedDate() { + return removalSubmittedDate; + } + + /** + * Sets the value of the removalSubmittedDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setRemovalSubmittedDate(XMLGregorianCalendar value) { + this.removalSubmittedDate = value; + } + + /** + * Gets the value of the removalDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getRemovalDate() { + return removalDate; + } + + /** + * Sets the value of the removalDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setRemovalDate(XMLGregorianCalendar value) { + this.removalDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiabilityArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiabilityArray.java new file mode 100644 index 0000000..9540488 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiabilityArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeNlLettersOfLiabilityArray complex type. + * + *

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

+ * <complexType name="CreditsafeNlLettersOfLiabilityArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeNlLettersOfLiability" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeNlLettersOfLiabilityArray", propOrder = { + "item" +}) +public class CreditsafeNlLettersOfLiabilityArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeNlLettersOfLiability } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiabilityInformation403.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiabilityInformation403.java new file mode 100644 index 0000000..4ce99a8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiabilityInformation403.java @@ -0,0 +1,209 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeNlLettersOfLiabilityInformation403 complex type. + * + *

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

+ * <complexType name="CreditsafeNlLettersOfLiabilityInformation403">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="financial_year" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
+ *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="company_number" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
+ *         <element name="date_submitted" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="letters_of_liability" type="{http://www.webservices.nl/soap/}CreditsafeNlLettersOfLiabilityArray" minOccurs="0"/>
+ *         <element name="letters_of_liability_2nd_parent" type="{http://www.webservices.nl/soap/}CreditsafeNlLettersOfLiabilityArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeNlLettersOfLiabilityInformation403", propOrder = { + +}) +public class CreditsafeNlLettersOfLiabilityInformation403 { + + @XmlElement(name = "financial_year") + @XmlSchemaType(name = "unsignedInt") + protected Long financialYear; + @XmlElement(name = "company_name") + protected String companyName; + @XmlElement(name = "company_number") + @XmlSchemaType(name = "unsignedInt") + protected Long companyNumber; + @XmlElement(name = "date_submitted") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateSubmitted; + @XmlElement(name = "letters_of_liability") + protected CreditsafeNlLettersOfLiabilityArray lettersOfLiability; + @XmlElement(name = "letters_of_liability_2nd_parent") + protected CreditsafeNlLettersOfLiabilityArray lettersOfLiability2NdParent; + + /** + * Gets the value of the financialYear property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getFinancialYear() { + return financialYear; + } + + /** + * Sets the value of the financialYear property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setFinancialYear(Long value) { + this.financialYear = value; + } + + /** + * Gets the value of the companyName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyName() { + return companyName; + } + + /** + * Sets the value of the companyName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyName(String value) { + this.companyName = value; + } + + /** + * Gets the value of the companyNumber property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getCompanyNumber() { + return companyNumber; + } + + /** + * Sets the value of the companyNumber property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setCompanyNumber(Long value) { + this.companyNumber = value; + } + + /** + * Gets the value of the dateSubmitted property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateSubmitted() { + return dateSubmitted; + } + + /** + * Sets the value of the dateSubmitted property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateSubmitted(XMLGregorianCalendar value) { + this.dateSubmitted = value; + } + + /** + * Gets the value of the lettersOfLiability property. + * + * @return + * possible object is + * {@link CreditsafeNlLettersOfLiabilityArray } + * + */ + public CreditsafeNlLettersOfLiabilityArray getLettersOfLiability() { + return lettersOfLiability; + } + + /** + * Sets the value of the lettersOfLiability property. + * + * @param value + * allowed object is + * {@link CreditsafeNlLettersOfLiabilityArray } + * + */ + public void setLettersOfLiability(CreditsafeNlLettersOfLiabilityArray value) { + this.lettersOfLiability = value; + } + + /** + * Gets the value of the lettersOfLiability2NdParent property. + * + * @return + * possible object is + * {@link CreditsafeNlLettersOfLiabilityArray } + * + */ + public CreditsafeNlLettersOfLiabilityArray getLettersOfLiability2NdParent() { + return lettersOfLiability2NdParent; + } + + /** + * Sets the value of the lettersOfLiability2NdParent property. + * + * @param value + * allowed object is + * {@link CreditsafeNlLettersOfLiabilityArray } + * + */ + public void setLettersOfLiability2NdParent(CreditsafeNlLettersOfLiabilityArray value) { + this.lettersOfLiability2NdParent = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlMisc.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlMisc.java new file mode 100644 index 0000000..675601a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlMisc.java @@ -0,0 +1,124 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeNlMisc complex type. + * + *

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

+ * <complexType name="CreditsafeNlMisc">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="ceased_trading_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="exporter" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="importer" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeNlMisc", propOrder = { + +}) +public class CreditsafeNlMisc { + + @XmlElement(name = "ceased_trading_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar ceasedTradingDate; + protected Boolean exporter; + protected Boolean importer; + + /** + * Gets the value of the ceasedTradingDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getCeasedTradingDate() { + return ceasedTradingDate; + } + + /** + * Sets the value of the ceasedTradingDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setCeasedTradingDate(XMLGregorianCalendar value) { + this.ceasedTradingDate = value; + } + + /** + * Gets the value of the exporter property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isExporter() { + return exporter; + } + + /** + * Sets the value of the exporter property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setExporter(Boolean value) { + this.exporter = value; + } + + /** + * Gets the value of the importer property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isImporter() { + return importer; + } + + /** + * Sets the value of the importer property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setImporter(Boolean value) { + this.importer = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlNegativeInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlNegativeInformation.java new file mode 100644 index 0000000..2b63052 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlNegativeInformation.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeNlNegativeInformation complex type. + * + *

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

+ * <complexType name="CreditsafeNlNegativeInformation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="court_data" type="{http://www.webservices.nl/soap/}CreditsafeNlCourtData" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeNlNegativeInformation", propOrder = { + +}) +public class CreditsafeNlNegativeInformation { + + @XmlElement(name = "court_data") + protected CreditsafeNlCourtData courtData; + + /** + * Gets the value of the courtData property. + * + * @return + * possible object is + * {@link CreditsafeNlCourtData } + * + */ + public CreditsafeNlCourtData getCourtData() { + return courtData; + } + + /** + * Sets the value of the courtData property. + * + * @param value + * allowed object is + * {@link CreditsafeNlCourtData } + * + */ + public void setCourtData(CreditsafeNlCourtData value) { + this.courtData = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlPaymentExpectationsSummary.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlPaymentExpectationsSummary.java new file mode 100644 index 0000000..a8e500a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlPaymentExpectationsSummary.java @@ -0,0 +1,178 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeNlPaymentExpectationsSummary complex type. + * + *

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

+ * <complexType name="CreditsafeNlPaymentExpectationsSummary">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="suspension_of_payments_mora" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="payment_expectation_days" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="day_sales_outstanding" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="industry_average_payment_expectation_days" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="industry_average_day_sales_outstanding" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeNlPaymentExpectationsSummary", propOrder = { + +}) +public class CreditsafeNlPaymentExpectationsSummary { + + @XmlElement(name = "suspension_of_payments_mora") + protected Boolean suspensionOfPaymentsMora; + @XmlElement(name = "payment_expectation_days") + protected BigDecimal paymentExpectationDays; + @XmlElement(name = "day_sales_outstanding") + protected BigDecimal daySalesOutstanding; + @XmlElement(name = "industry_average_payment_expectation_days") + protected BigDecimal industryAveragePaymentExpectationDays; + @XmlElement(name = "industry_average_day_sales_outstanding") + protected BigDecimal industryAverageDaySalesOutstanding; + + /** + * Gets the value of the suspensionOfPaymentsMora property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isSuspensionOfPaymentsMora() { + return suspensionOfPaymentsMora; + } + + /** + * Sets the value of the suspensionOfPaymentsMora property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setSuspensionOfPaymentsMora(Boolean value) { + this.suspensionOfPaymentsMora = value; + } + + /** + * Gets the value of the paymentExpectationDays property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPaymentExpectationDays() { + return paymentExpectationDays; + } + + /** + * Sets the value of the paymentExpectationDays property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPaymentExpectationDays(BigDecimal value) { + this.paymentExpectationDays = value; + } + + /** + * Gets the value of the daySalesOutstanding property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getDaySalesOutstanding() { + return daySalesOutstanding; + } + + /** + * Sets the value of the daySalesOutstanding property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setDaySalesOutstanding(BigDecimal value) { + this.daySalesOutstanding = value; + } + + /** + * Gets the value of the industryAveragePaymentExpectationDays property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getIndustryAveragePaymentExpectationDays() { + return industryAveragePaymentExpectationDays; + } + + /** + * Sets the value of the industryAveragePaymentExpectationDays property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setIndustryAveragePaymentExpectationDays(BigDecimal value) { + this.industryAveragePaymentExpectationDays = value; + } + + /** + * Gets the value of the industryAverageDaySalesOutstanding property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getIndustryAverageDaySalesOutstanding() { + return industryAverageDaySalesOutstanding; + } + + /** + * Sets the value of the industryAverageDaySalesOutstanding property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setIndustryAverageDaySalesOutstanding(BigDecimal value) { + this.industryAverageDaySalesOutstanding = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeOtherFinancials.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeOtherFinancials.java new file mode 100644 index 0000000..706b47e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeOtherFinancials.java @@ -0,0 +1,124 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeOtherFinancials complex type. + * + *

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

+ * <complexType name="CreditsafeOtherFinancials">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="contingent_liabilities" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="working_capital" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="net_worth" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeOtherFinancials", propOrder = { + +}) +public class CreditsafeOtherFinancials { + + @XmlElement(name = "contingent_liabilities") + protected String contingentLiabilities; + @XmlElement(name = "working_capital") + protected BigDecimal workingCapital; + @XmlElement(name = "net_worth") + protected BigDecimal netWorth; + + /** + * Gets the value of the contingentLiabilities property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContingentLiabilities() { + return contingentLiabilities; + } + + /** + * Sets the value of the contingentLiabilities property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContingentLiabilities(String value) { + this.contingentLiabilities = value; + } + + /** + * Gets the value of the workingCapital property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getWorkingCapital() { + return workingCapital; + } + + /** + * Sets the value of the workingCapital property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setWorkingCapital(BigDecimal value) { + this.workingCapital = value; + } + + /** + * Gets the value of the netWorth property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getNetWorth() { + return netWorth; + } + + /** + * Sets the value of the netWorth property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setNetWorth(BigDecimal value) { + this.netWorth = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorV2.java new file mode 100644 index 0000000..65ff4e0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorV2.java @@ -0,0 +1,229 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafePersonDirectorV2 complex type. + * + *

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

+ * <complexType name="CreditsafePersonDirectorV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" minOccurs="0"/>
+ *         <element name="director_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="positions" type="{http://www.webservices.nl/soap/}CreditsafePersonPositionV2Array" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafePersonDirectorV2", propOrder = { + +}) +public class CreditsafePersonDirectorV2 { + + protected CreditsafeAddressV2 address; + @XmlElement(name = "director_type") + protected String directorType; + protected String id; + protected CreditsafePersonPositionV2Array positions; + protected String name; + @XmlElement(name = "date_of_birth") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateOfBirth; + protected String gender; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link CreditsafeAddressV2 } + * + */ + public CreditsafeAddressV2 getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link CreditsafeAddressV2 } + * + */ + public void setAddress(CreditsafeAddressV2 value) { + this.address = value; + } + + /** + * Gets the value of the directorType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDirectorType() { + return directorType; + } + + /** + * Sets the value of the directorType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDirectorType(String value) { + this.directorType = value; + } + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the positions property. + * + * @return + * possible object is + * {@link CreditsafePersonPositionV2Array } + * + */ + public CreditsafePersonPositionV2Array getPositions() { + return positions; + } + + /** + * Sets the value of the positions property. + * + * @param value + * allowed object is + * {@link CreditsafePersonPositionV2Array } + * + */ + public void setPositions(CreditsafePersonPositionV2Array value) { + this.positions = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the dateOfBirth property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfBirth() { + return dateOfBirth; + } + + /** + * Sets the value of the dateOfBirth property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfBirth(XMLGregorianCalendar value) { + this.dateOfBirth = value; + } + + /** + * Gets the value of the gender property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGender() { + return gender; + } + + /** + * Sets the value of the gender property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGender(String value) { + this.gender = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorV2Array.java new file mode 100644 index 0000000..98eb27d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafePersonDirectorV2Array complex type. + * + *

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

+ * <complexType name="CreditsafePersonDirectorV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafePersonDirectorV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafePersonDirectorV2Array", propOrder = { + "item" +}) +public class CreditsafePersonDirectorV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafePersonDirectorV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorsV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorsV2.java new file mode 100644 index 0000000..d694063 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorsV2.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafePersonDirectorsV2 complex type. + * + *

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

+ * <complexType name="CreditsafePersonDirectorsV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="current_directors" type="{http://www.webservices.nl/soap/}CreditsafePersonDirectorV2Array" minOccurs="0"/>
+ *         <element name="previous_directors" type="{http://www.webservices.nl/soap/}CreditsafePersonPreviousDirectorV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafePersonDirectorsV2", propOrder = { + +}) +public class CreditsafePersonDirectorsV2 { + + @XmlElement(name = "current_directors") + protected CreditsafePersonDirectorV2Array currentDirectors; + @XmlElement(name = "previous_directors") + protected CreditsafePersonPreviousDirectorV2Array previousDirectors; + + /** + * Gets the value of the currentDirectors property. + * + * @return + * possible object is + * {@link CreditsafePersonDirectorV2Array } + * + */ + public CreditsafePersonDirectorV2Array getCurrentDirectors() { + return currentDirectors; + } + + /** + * Sets the value of the currentDirectors property. + * + * @param value + * allowed object is + * {@link CreditsafePersonDirectorV2Array } + * + */ + public void setCurrentDirectors(CreditsafePersonDirectorV2Array value) { + this.currentDirectors = value; + } + + /** + * Gets the value of the previousDirectors property. + * + * @return + * possible object is + * {@link CreditsafePersonPreviousDirectorV2Array } + * + */ + public CreditsafePersonPreviousDirectorV2Array getPreviousDirectors() { + return previousDirectors; + } + + /** + * Sets the value of the previousDirectors property. + * + * @param value + * allowed object is + * {@link CreditsafePersonPreviousDirectorV2Array } + * + */ + public void setPreviousDirectors(CreditsafePersonPreviousDirectorV2Array value) { + this.previousDirectors = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorsV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorsV2Array.java new file mode 100644 index 0000000..9eca6a8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorsV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafePersonDirectorsV2Array complex type. + * + *

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

+ * <complexType name="CreditsafePersonDirectorsV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafePersonDirectorsV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafePersonDirectorsV2Array", propOrder = { + "item" +}) +public class CreditsafePersonDirectorsV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafePersonDirectorsV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPositionV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPositionV2.java new file mode 100644 index 0000000..3379967 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPositionV2.java @@ -0,0 +1,98 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafePersonPositionV2 complex type. + * + *

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

+ * <complexType name="CreditsafePersonPositionV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_appointed" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafePersonPositionV2", propOrder = { + +}) +public class CreditsafePersonPositionV2 { + + protected String name; + @XmlElement(name = "date_appointed") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateAppointed; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the dateAppointed property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateAppointed() { + return dateAppointed; + } + + /** + * Sets the value of the dateAppointed property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateAppointed(XMLGregorianCalendar value) { + this.dateAppointed = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPositionV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPositionV2Array.java new file mode 100644 index 0000000..347c05e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPositionV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafePersonPositionV2Array complex type. + * + *

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

+ * <complexType name="CreditsafePersonPositionV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafePersonPositionV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafePersonPositionV2Array", propOrder = { + "item" +}) +public class CreditsafePersonPositionV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafePersonPositionV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPreviousDirectorV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPreviousDirectorV2.java new file mode 100644 index 0000000..6b83126 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPreviousDirectorV2.java @@ -0,0 +1,257 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafePersonPreviousDirectorV2 complex type. + * + *

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

+ * <complexType name="CreditsafePersonPreviousDirectorV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="resignation_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" minOccurs="0"/>
+ *         <element name="director_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="positions" type="{http://www.webservices.nl/soap/}CreditsafePersonPositionV2Array" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafePersonPreviousDirectorV2", propOrder = { + +}) +public class CreditsafePersonPreviousDirectorV2 { + + @XmlElement(name = "resignation_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar resignationDate; + protected CreditsafeAddressV2 address; + @XmlElement(name = "director_type") + protected String directorType; + protected String id; + protected CreditsafePersonPositionV2Array positions; + protected String name; + @XmlElement(name = "date_of_birth") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar dateOfBirth; + protected String gender; + + /** + * Gets the value of the resignationDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getResignationDate() { + return resignationDate; + } + + /** + * Sets the value of the resignationDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setResignationDate(XMLGregorianCalendar value) { + this.resignationDate = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link CreditsafeAddressV2 } + * + */ + public CreditsafeAddressV2 getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link CreditsafeAddressV2 } + * + */ + public void setAddress(CreditsafeAddressV2 value) { + this.address = value; + } + + /** + * Gets the value of the directorType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDirectorType() { + return directorType; + } + + /** + * Sets the value of the directorType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDirectorType(String value) { + this.directorType = value; + } + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the positions property. + * + * @return + * possible object is + * {@link CreditsafePersonPositionV2Array } + * + */ + public CreditsafePersonPositionV2Array getPositions() { + return positions; + } + + /** + * Sets the value of the positions property. + * + * @param value + * allowed object is + * {@link CreditsafePersonPositionV2Array } + * + */ + public void setPositions(CreditsafePersonPositionV2Array value) { + this.positions = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the dateOfBirth property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfBirth() { + return dateOfBirth; + } + + /** + * Sets the value of the dateOfBirth property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfBirth(XMLGregorianCalendar value) { + this.dateOfBirth = value; + } + + /** + * Gets the value of the gender property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGender() { + return gender; + } + + /** + * Sets the value of the gender property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGender(String value) { + this.gender = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPreviousDirectorV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPreviousDirectorV2Array.java new file mode 100644 index 0000000..a3b8dda --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPreviousDirectorV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafePersonPreviousDirectorV2Array complex type. + * + *

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

+ * <complexType name="CreditsafePersonPreviousDirectorV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafePersonPreviousDirectorV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafePersonPreviousDirectorV2Array", propOrder = { + "item" +}) +public class CreditsafePersonPreviousDirectorV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafePersonPreviousDirectorV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePreviousDirector.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePreviousDirector.java new file mode 100644 index 0000000..0e48664 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePreviousDirector.java @@ -0,0 +1,99 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafePreviousDirector complex type. + * + *

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

+ * <complexType name="CreditsafePreviousDirector">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="director" type="{http://www.webservices.nl/soap/}CreditsafeDirector"/>
+ *         <element name="resignation_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafePreviousDirector", propOrder = { + +}) +public class CreditsafePreviousDirector { + + @XmlElement(required = true) + protected CreditsafeDirector director; + @XmlElement(name = "resignation_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar resignationDate; + + /** + * Gets the value of the director property. + * + * @return + * possible object is + * {@link CreditsafeDirector } + * + */ + public CreditsafeDirector getDirector() { + return director; + } + + /** + * Sets the value of the director property. + * + * @param value + * allowed object is + * {@link CreditsafeDirector } + * + */ + public void setDirector(CreditsafeDirector value) { + this.director = value; + } + + /** + * Gets the value of the resignationDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getResignationDate() { + return resignationDate; + } + + /** + * Sets the value of the resignationDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setResignationDate(XMLGregorianCalendar value) { + this.resignationDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePreviousDirectorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePreviousDirectorArray.java new file mode 100644 index 0000000..b5b061d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePreviousDirectorArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafePreviousDirectorArray complex type. + * + *

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

+ * <complexType name="CreditsafePreviousDirectorArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafePreviousDirector" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafePreviousDirectorArray", propOrder = { + "item" +}) +public class CreditsafePreviousDirectorArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafePreviousDirector } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeProfitAndLossFigures.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeProfitAndLossFigures.java new file mode 100644 index 0000000..7a5561c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeProfitAndLossFigures.java @@ -0,0 +1,628 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for CreditsafeProfitAndLossFigures complex type. + * + *

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

+ * <complexType name="CreditsafeProfitAndLossFigures">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="year_end_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="number_of_weeks" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
+ *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="consolidated_accounts" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="revenue" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="operating_costs" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="operating_profit" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="wages_and_salaries" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="pension_costs" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="depreciation" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="amortisation" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="financial_income" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="financial_expenses" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="extraordinary_income" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="extraordinary_costs" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="profit_before_tax" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="tax" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="profit_after_tax" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="dividends" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="minority_interests" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="other_appropriations" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="retained_profit" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeProfitAndLossFigures", propOrder = { + +}) +public class CreditsafeProfitAndLossFigures { + + @XmlElement(name = "year_end_date", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar yearEndDate; + @XmlElement(name = "number_of_weeks") + @XmlSchemaType(name = "unsignedInt") + protected long numberOfWeeks; + @XmlElement(required = true) + protected String currency; + @XmlElement(name = "consolidated_accounts") + protected Boolean consolidatedAccounts; + protected BigDecimal revenue; + @XmlElement(name = "operating_costs") + protected BigDecimal operatingCosts; + @XmlElement(name = "operating_profit") + protected BigDecimal operatingProfit; + @XmlElement(name = "wages_and_salaries") + protected BigDecimal wagesAndSalaries; + @XmlElement(name = "pension_costs") + protected BigDecimal pensionCosts; + protected BigDecimal depreciation; + protected BigDecimal amortisation; + @XmlElement(name = "financial_income") + protected BigDecimal financialIncome; + @XmlElement(name = "financial_expenses") + protected BigDecimal financialExpenses; + @XmlElement(name = "extraordinary_income") + protected BigDecimal extraordinaryIncome; + @XmlElement(name = "extraordinary_costs") + protected BigDecimal extraordinaryCosts; + @XmlElement(name = "profit_before_tax") + protected BigDecimal profitBeforeTax; + protected BigDecimal tax; + @XmlElement(name = "profit_after_tax") + protected BigDecimal profitAfterTax; + protected BigDecimal dividends; + @XmlElement(name = "minority_interests") + protected BigDecimal minorityInterests; + @XmlElement(name = "other_appropriations") + protected BigDecimal otherAppropriations; + @XmlElement(name = "retained_profit") + protected BigDecimal retainedProfit; + + /** + * Gets the value of the yearEndDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getYearEndDate() { + return yearEndDate; + } + + /** + * Sets the value of the yearEndDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setYearEndDate(XMLGregorianCalendar value) { + this.yearEndDate = value; + } + + /** + * Gets the value of the numberOfWeeks property. + * + */ + public long getNumberOfWeeks() { + return numberOfWeeks; + } + + /** + * Sets the value of the numberOfWeeks property. + * + */ + public void setNumberOfWeeks(long value) { + this.numberOfWeeks = value; + } + + /** + * Gets the value of the currency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCurrency() { + return currency; + } + + /** + * Sets the value of the currency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCurrency(String value) { + this.currency = value; + } + + /** + * Gets the value of the consolidatedAccounts property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isConsolidatedAccounts() { + return consolidatedAccounts; + } + + /** + * Sets the value of the consolidatedAccounts property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setConsolidatedAccounts(Boolean value) { + this.consolidatedAccounts = value; + } + + /** + * Gets the value of the revenue property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getRevenue() { + return revenue; + } + + /** + * Sets the value of the revenue property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setRevenue(BigDecimal value) { + this.revenue = value; + } + + /** + * Gets the value of the operatingCosts property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getOperatingCosts() { + return operatingCosts; + } + + /** + * Sets the value of the operatingCosts property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setOperatingCosts(BigDecimal value) { + this.operatingCosts = value; + } + + /** + * Gets the value of the operatingProfit property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getOperatingProfit() { + return operatingProfit; + } + + /** + * Sets the value of the operatingProfit property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setOperatingProfit(BigDecimal value) { + this.operatingProfit = value; + } + + /** + * Gets the value of the wagesAndSalaries property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getWagesAndSalaries() { + return wagesAndSalaries; + } + + /** + * Sets the value of the wagesAndSalaries property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setWagesAndSalaries(BigDecimal value) { + this.wagesAndSalaries = value; + } + + /** + * Gets the value of the pensionCosts property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPensionCosts() { + return pensionCosts; + } + + /** + * Sets the value of the pensionCosts property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPensionCosts(BigDecimal value) { + this.pensionCosts = value; + } + + /** + * Gets the value of the depreciation property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getDepreciation() { + return depreciation; + } + + /** + * Sets the value of the depreciation property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setDepreciation(BigDecimal value) { + this.depreciation = value; + } + + /** + * Gets the value of the amortisation property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getAmortisation() { + return amortisation; + } + + /** + * Sets the value of the amortisation property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setAmortisation(BigDecimal value) { + this.amortisation = value; + } + + /** + * Gets the value of the financialIncome property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getFinancialIncome() { + return financialIncome; + } + + /** + * Sets the value of the financialIncome property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setFinancialIncome(BigDecimal value) { + this.financialIncome = value; + } + + /** + * Gets the value of the financialExpenses property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getFinancialExpenses() { + return financialExpenses; + } + + /** + * Sets the value of the financialExpenses property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setFinancialExpenses(BigDecimal value) { + this.financialExpenses = value; + } + + /** + * Gets the value of the extraordinaryIncome property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getExtraordinaryIncome() { + return extraordinaryIncome; + } + + /** + * Sets the value of the extraordinaryIncome property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setExtraordinaryIncome(BigDecimal value) { + this.extraordinaryIncome = value; + } + + /** + * Gets the value of the extraordinaryCosts property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getExtraordinaryCosts() { + return extraordinaryCosts; + } + + /** + * Sets the value of the extraordinaryCosts property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setExtraordinaryCosts(BigDecimal value) { + this.extraordinaryCosts = value; + } + + /** + * Gets the value of the profitBeforeTax property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getProfitBeforeTax() { + return profitBeforeTax; + } + + /** + * Sets the value of the profitBeforeTax property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setProfitBeforeTax(BigDecimal value) { + this.profitBeforeTax = value; + } + + /** + * Gets the value of the tax property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getTax() { + return tax; + } + + /** + * Sets the value of the tax property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setTax(BigDecimal value) { + this.tax = value; + } + + /** + * Gets the value of the profitAfterTax property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getProfitAfterTax() { + return profitAfterTax; + } + + /** + * Sets the value of the profitAfterTax property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setProfitAfterTax(BigDecimal value) { + this.profitAfterTax = value; + } + + /** + * Gets the value of the dividends property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getDividends() { + return dividends; + } + + /** + * Sets the value of the dividends property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setDividends(BigDecimal value) { + this.dividends = value; + } + + /** + * Gets the value of the minorityInterests property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getMinorityInterests() { + return minorityInterests; + } + + /** + * Sets the value of the minorityInterests property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setMinorityInterests(BigDecimal value) { + this.minorityInterests = value; + } + + /** + * Gets the value of the otherAppropriations property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getOtherAppropriations() { + return otherAppropriations; + } + + /** + * Sets the value of the otherAppropriations property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setOtherAppropriations(BigDecimal value) { + this.otherAppropriations = value; + } + + /** + * Gets the value of the retainedProfit property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getRetainedProfit() { + return retainedProfit; + } + + /** + * Sets the value of the retainedProfit property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setRetainedProfit(BigDecimal value) { + this.retainedProfit = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeQuartiles.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeQuartiles.java new file mode 100644 index 0000000..6b22af0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeQuartiles.java @@ -0,0 +1,120 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeQuartiles complex type. + * + *

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

+ * <complexType name="CreditsafeQuartiles">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="lower" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="median" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="upper" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeQuartiles", propOrder = { + +}) +public class CreditsafeQuartiles { + + protected BigDecimal lower; + protected BigDecimal median; + protected BigDecimal upper; + + /** + * Gets the value of the lower property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getLower() { + return lower; + } + + /** + * Sets the value of the lower property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setLower(BigDecimal value) { + this.lower = value; + } + + /** + * Gets the value of the median property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getMedian() { + return median; + } + + /** + * Sets the value of the median property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setMedian(BigDecimal value) { + this.median = value; + } + + /** + * Gets the value of the upper property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getUpper() { + return upper; + } + + /** + * Sets the value of the upper property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setUpper(BigDecimal value) { + this.upper = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteria.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteria.java new file mode 100644 index 0000000..1da0f5d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteria.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeSearchCriteria complex type. + * + *

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

+ * <complexType name="CreditsafeSearchCriteria">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="countries" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="languages" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="combinations" type="{http://www.webservices.nl/soap/}CreditsafeSearchCriteriaCombinationArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeSearchCriteria", propOrder = { + +}) +public class CreditsafeSearchCriteria { + + @XmlElement(required = true) + protected StringArray countries; + @XmlElement(required = true) + protected StringArray languages; + @XmlElement(required = true) + protected CreditsafeSearchCriteriaCombinationArray combinations; + + /** + * Gets the value of the countries property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getCountries() { + return countries; + } + + /** + * Sets the value of the countries property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setCountries(StringArray value) { + this.countries = value; + } + + /** + * Gets the value of the languages property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getLanguages() { + return languages; + } + + /** + * Sets the value of the languages property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setLanguages(StringArray value) { + this.languages = value; + } + + /** + * Gets the value of the combinations property. + * + * @return + * possible object is + * {@link CreditsafeSearchCriteriaCombinationArray } + * + */ + public CreditsafeSearchCriteriaCombinationArray getCombinations() { + return combinations; + } + + /** + * Sets the value of the combinations property. + * + * @param value + * allowed object is + * {@link CreditsafeSearchCriteriaCombinationArray } + * + */ + public void setCombinations(CreditsafeSearchCriteriaCombinationArray value) { + this.combinations = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaCombination.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaCombination.java new file mode 100644 index 0000000..7c111c0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaCombination.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeSearchCriteriaCombination complex type. + * + *

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

+ * <complexType name="CreditsafeSearchCriteriaCombination">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="params" type="{http://www.webservices.nl/soap/}CreditsafeSearchCriteriaParamArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeSearchCriteriaCombination", propOrder = { + +}) +public class CreditsafeSearchCriteriaCombination { + + @XmlElement(required = true) + protected CreditsafeSearchCriteriaParamArray params; + + /** + * Gets the value of the params property. + * + * @return + * possible object is + * {@link CreditsafeSearchCriteriaParamArray } + * + */ + public CreditsafeSearchCriteriaParamArray getParams() { + return params; + } + + /** + * Sets the value of the params property. + * + * @param value + * allowed object is + * {@link CreditsafeSearchCriteriaParamArray } + * + */ + public void setParams(CreditsafeSearchCriteriaParamArray value) { + this.params = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaCombinationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaCombinationArray.java new file mode 100644 index 0000000..523dc50 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaCombinationArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeSearchCriteriaCombinationArray complex type. + * + *

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

+ * <complexType name="CreditsafeSearchCriteriaCombinationArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeSearchCriteriaCombination" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeSearchCriteriaCombinationArray", propOrder = { + "item" +}) +public class CreditsafeSearchCriteriaCombinationArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeSearchCriteriaCombination } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaParam.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaParam.java new file mode 100644 index 0000000..e22ebe3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaParam.java @@ -0,0 +1,197 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeSearchCriteriaParam complex type. + * + *

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

+ * <complexType name="CreditsafeSearchCriteriaParam">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="min_length" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="max_length" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="validation_regexp" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="allowed_values" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="is_required" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeSearchCriteriaParam", propOrder = { + +}) +public class CreditsafeSearchCriteriaParam { + + @XmlElement(required = true) + protected String name; + @XmlElement(name = "min_length") + protected BigInteger minLength; + @XmlElement(name = "max_length") + protected BigInteger maxLength; + @XmlElement(name = "validation_regexp") + protected String validationRegexp; + @XmlElement(name = "allowed_values") + protected StringArray allowedValues; + @XmlElement(name = "is_required") + protected boolean isRequired; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the minLength property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getMinLength() { + return minLength; + } + + /** + * Sets the value of the minLength property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setMinLength(BigInteger value) { + this.minLength = value; + } + + /** + * Gets the value of the maxLength property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getMaxLength() { + return maxLength; + } + + /** + * Sets the value of the maxLength property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setMaxLength(BigInteger value) { + this.maxLength = value; + } + + /** + * Gets the value of the validationRegexp property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValidationRegexp() { + return validationRegexp; + } + + /** + * Sets the value of the validationRegexp property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValidationRegexp(String value) { + this.validationRegexp = value; + } + + /** + * Gets the value of the allowedValues property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getAllowedValues() { + return allowedValues; + } + + /** + * Sets the value of the allowedValues property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setAllowedValues(StringArray value) { + this.allowedValues = value; + } + + /** + * Gets the value of the isRequired property. + * + */ + public boolean isIsRequired() { + return isRequired; + } + + /** + * Sets the value of the isRequired property. + * + */ + public void setIsRequired(boolean value) { + this.isRequired = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaParamArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaParamArray.java new file mode 100644 index 0000000..aa1c289 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaParamArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeSearchCriteriaParamArray complex type. + * + *

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

+ * <complexType name="CreditsafeSearchCriteriaParamArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeSearchCriteriaParam" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeSearchCriteriaParamArray", propOrder = { + "item" +}) +public class CreditsafeSearchCriteriaParamArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeSearchCriteriaParam } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaRequestType.java new file mode 100644 index 0000000..3f0b39a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for creditsafeSearchCriteriaRequestType complex type. + * + *

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

+ * <complexType name="creditsafeSearchCriteriaRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="countries" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "creditsafeSearchCriteriaRequestType", propOrder = { + +}) +public class CreditsafeSearchCriteriaRequestType { + + @XmlElement(required = true) + protected StringArray countries; + + /** + * Gets the value of the countries property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getCountries() { + return countries; + } + + /** + * Sets the value of the countries property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setCountries(StringArray value) { + this.countries = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaResponseType.java new file mode 100644 index 0000000..7749475 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for creditsafeSearchCriteriaResponseType complex type. + * + *

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

+ * <complexType name="creditsafeSearchCriteriaResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CreditsafeSearchCriteria"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "creditsafeSearchCriteriaResponseType", propOrder = { + +}) +public class CreditsafeSearchCriteriaResponseType { + + @XmlElement(required = true) + protected CreditsafeSearchCriteria out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CreditsafeSearchCriteria } + * + */ + public CreditsafeSearchCriteria getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CreditsafeSearchCriteria } + * + */ + public void setOut(CreditsafeSearchCriteria value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchRequestType.java new file mode 100644 index 0000000..13fada7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchRequestType.java @@ -0,0 +1,465 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for creditsafeSearchRequestType complex type. + * + *

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

+ * <complexType name="creditsafeSearchRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="registration_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="office_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="name_match_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="address_match_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postal_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "creditsafeSearchRequestType", propOrder = { + +}) +public class CreditsafeSearchRequestType { + + @XmlElement(required = true) + protected String country; + @XmlElement(required = true) + protected String id; + @XmlElement(name = "registration_number", required = true) + protected String registrationNumber; + @XmlElement(required = true) + protected String status; + @XmlElement(name = "office_type", required = true) + protected String officeType; + @XmlElement(required = true) + protected String name; + @XmlElement(name = "name_match_type", required = true) + protected String nameMatchType; + @XmlElement(required = true) + protected String address; + @XmlElement(name = "address_match_type", required = true) + protected String addressMatchType; + @XmlElement(required = true) + protected String street; + @XmlElement(name = "house_number", required = true) + protected String houseNumber; + @XmlElement(required = true) + protected String city; + @XmlElement(name = "postal_code", required = true) + protected String postalCode; + @XmlElement(required = true) + protected String province; + @XmlElement(name = "phone_number", required = true) + protected String phoneNumber; + protected int page; + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the registrationNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistrationNumber() { + return registrationNumber; + } + + /** + * Sets the value of the registrationNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistrationNumber(String value) { + this.registrationNumber = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + + /** + * Gets the value of the officeType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOfficeType() { + return officeType; + } + + /** + * Sets the value of the officeType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOfficeType(String value) { + this.officeType = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the nameMatchType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNameMatchType() { + return nameMatchType; + } + + /** + * Sets the value of the nameMatchType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNameMatchType(String value) { + this.nameMatchType = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the addressMatchType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddressMatchType() { + return addressMatchType; + } + + /** + * Sets the value of the addressMatchType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddressMatchType(String value) { + this.addressMatchType = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNumber(String value) { + this.houseNumber = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the postalCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostalCode() { + return postalCode; + } + + /** + * Sets the value of the postalCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostalCode(String value) { + this.postalCode = value; + } + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the phoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPhoneNumber() { + return phoneNumber; + } + + /** + * Sets the value of the phoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPhoneNumber(String value) { + this.phoneNumber = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchResponseType.java new file mode 100644 index 0000000..1de978d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for creditsafeSearchResponseType complex type. + * + *

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

+ * <complexType name="creditsafeSearchResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CreditsafeCompanyPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "creditsafeSearchResponseType", propOrder = { + +}) +public class CreditsafeSearchResponseType { + + @XmlElement(required = true) + protected CreditsafeCompanyPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CreditsafeCompanyPagedResult } + * + */ + public CreditsafeCompanyPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyPagedResult } + * + */ + public void setOut(CreditsafeCompanyPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchResultV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchResultV2.java new file mode 100644 index 0000000..b6c09f5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchResultV2.java @@ -0,0 +1,67 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeSearchResultV2 complex type. + * + *

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

+ * <complexType name="CreditsafeSearchResultV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="companies" type="{http://www.webservices.nl/soap/}CreditsafeCompanyV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeSearchResultV2", propOrder = { + +}) +public class CreditsafeSearchResultV2 { + + protected CreditsafeCompanyV2Array companies; + + /** + * Gets the value of the companies property. + * + * @return + * possible object is + * {@link CreditsafeCompanyV2Array } + * + */ + public CreditsafeCompanyV2Array getCompanies() { + return companies; + } + + /** + * Sets the value of the companies property. + * + * @param value + * allowed object is + * {@link CreditsafeCompanyV2Array } + * + */ + public void setCompanies(CreditsafeCompanyV2Array value) { + this.companies = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchV2RequestType.java new file mode 100644 index 0000000..5a5a22d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchV2RequestType.java @@ -0,0 +1,339 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for creditsafeSearchV2RequestType complex type. + * + *

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

+ * <complexType name="creditsafeSearchV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="countries" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="registration_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="registration_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postal_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "creditsafeSearchV2RequestType", propOrder = { + +}) +public class CreditsafeSearchV2RequestType { + + @XmlElement(required = true) + protected StringArray countries; + @XmlElement(required = true) + protected String id; + @XmlElement(required = true) + protected String status; + @XmlElement(name = "registration_number", required = true) + protected String registrationNumber; + @XmlElement(name = "registration_type", required = true) + protected String registrationType; + @XmlElement(name = "vat_number", required = true) + protected String vatNumber; + @XmlElement(required = true) + protected String province; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String street; + @XmlElement(name = "postal_code", required = true) + protected String postalCode; + @XmlElement(required = true) + protected String name; + + /** + * Gets the value of the countries property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getCountries() { + return countries; + } + + /** + * Sets the value of the countries property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setCountries(StringArray value) { + this.countries = value; + } + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + + /** + * Gets the value of the registrationNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistrationNumber() { + return registrationNumber; + } + + /** + * Sets the value of the registrationNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistrationNumber(String value) { + this.registrationNumber = value; + } + + /** + * Gets the value of the registrationType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistrationType() { + return registrationType; + } + + /** + * Sets the value of the registrationType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistrationType(String value) { + this.registrationType = value; + } + + /** + * Gets the value of the vatNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVatNumber() { + return vatNumber; + } + + /** + * Sets the value of the vatNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVatNumber(String value) { + this.vatNumber = value; + } + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the postalCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostalCode() { + return postalCode; + } + + /** + * Sets the value of the postalCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostalCode(String value) { + this.postalCode = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchV2ResponseType.java new file mode 100644 index 0000000..1f560df --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for creditsafeSearchV2ResponseType complex type. + * + *

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

+ * <complexType name="creditsafeSearchV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}CreditsafeSearchResultV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "creditsafeSearchV2ResponseType", propOrder = { + +}) +public class CreditsafeSearchV2ResponseType { + + @XmlElement(required = true) + protected CreditsafeSearchResultV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link CreditsafeSearchResultV2 } + * + */ + public CreditsafeSearchResultV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link CreditsafeSearchResultV2 } + * + */ + public void setOut(CreditsafeSearchResultV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeShareHolder.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeShareHolder.java new file mode 100644 index 0000000..c53919c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeShareHolder.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeShareHolder complex type. + * + *

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

+ * <complexType name="CreditsafeShareHolder">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="share_percent" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeShareHolder", propOrder = { + +}) +public class CreditsafeShareHolder { + + @XmlElement(required = true) + protected String name; + protected String address; + @XmlElement(name = "share_percent") + protected Double sharePercent; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the sharePercent property. + * + * @return + * possible object is + * {@link Double } + * + */ + public Double getSharePercent() { + return sharePercent; + } + + /** + * Sets the value of the sharePercent property. + * + * @param value + * allowed object is + * {@link Double } + * + */ + public void setSharePercent(Double value) { + this.sharePercent = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeShareHolderArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeShareHolderArray.java new file mode 100644 index 0000000..584dea6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeShareHolderArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeShareHolderArray complex type. + * + *

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

+ * <complexType name="CreditsafeShareHolderArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeShareHolder" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeShareHolderArray", propOrder = { + "item" +}) +public class CreditsafeShareHolderArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeShareHolder } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddress.java new file mode 100644 index 0000000..4f20102 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddress.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeStreetAddress complex type. + * + *

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

+ * <complexType name="CreditsafeStreetAddress">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeStreetAddress", propOrder = { + +}) +public class CreditsafeStreetAddress { + + @XmlElement(required = true) + protected String address; + protected String country; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressArray.java new file mode 100644 index 0000000..91b1cc3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeStreetAddressArray complex type. + * + *

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

+ * <complexType name="CreditsafeStreetAddressArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeStreetAddress" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeStreetAddressArray", propOrder = { + "item" +}) +public class CreditsafeStreetAddressArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeStreetAddress } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressWithTelephone.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressWithTelephone.java new file mode 100644 index 0000000..02682fe --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressWithTelephone.java @@ -0,0 +1,121 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeStreetAddressWithTelephone complex type. + * + *

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

+ * <complexType name="CreditsafeStreetAddressWithTelephone">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeStreetAddressWithTelephone", propOrder = { + +}) +public class CreditsafeStreetAddressWithTelephone { + + @XmlElement(required = true) + protected String address; + protected String country; + protected String telephone; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the telephone property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephone() { + return telephone; + } + + /** + * Sets the value of the telephone property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephone(String value) { + this.telephone = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressWithTelephoneArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressWithTelephoneArray.java new file mode 100644 index 0000000..2451cf7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressWithTelephoneArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeStreetAddressWithTelephoneArray complex type. + * + *

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

+ * <complexType name="CreditsafeStreetAddressWithTelephoneArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeStreetAddressWithTelephone" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeStreetAddressWithTelephoneArray", propOrder = { + "item" +}) +public class CreditsafeStreetAddressWithTelephoneArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeStreetAddressWithTelephone } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeValueV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeValueV2.java new file mode 100644 index 0000000..b45028c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeValueV2.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeValueV2 complex type. + * + *

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

+ * <complexType name="CreditsafeValueV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="max_value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="min_value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeValueV2", propOrder = { + +}) +public class CreditsafeValueV2 { + + @XmlElement(name = "max_value") + protected String maxValue; + @XmlElement(name = "min_value") + protected String minValue; + protected String value; + + /** + * Gets the value of the maxValue property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMaxValue() { + return maxValue; + } + + /** + * Sets the value of the maxValue property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMaxValue(String value) { + this.maxValue = value; + } + + /** + * Gets the value of the minValue property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMinValue() { + return minValue; + } + + /** + * Sets the value of the minValue property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMinValue(String value) { + this.minValue = value; + } + + /** + * Gets the value of the value property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValue(String value) { + this.value = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeValueV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeValueV2Array.java new file mode 100644 index 0000000..b8cc8b9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeValueV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CreditsafeValueV2Array complex type. + * + *

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

+ * <complexType name="CreditsafeValueV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeValueV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CreditsafeValueV2Array", propOrder = { + "item" +}) +public class CreditsafeValueV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CreditsafeValueV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBAddress.java new file mode 100644 index 0000000..42195dc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBAddress.java @@ -0,0 +1,276 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBAddress complex type. + * + *

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

+ * <complexType name="DNBAddress">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="region_short" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="region_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country_dnb" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="country_iso" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBAddress", propOrder = { + +}) +public class DNBAddress { + + @XmlElement(required = true) + protected String address; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String city; + protected String region; + @XmlElement(name = "region_short") + protected String regionShort; + @XmlElement(name = "region_code") + protected Integer regionCode; + @XmlElement(required = true) + protected String country; + @XmlElement(name = "country_dnb") + protected int countryDnb; + @XmlElement(name = "country_iso", required = true) + protected String countryIso; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the region property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegion() { + return region; + } + + /** + * Sets the value of the region property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegion(String value) { + this.region = value; + } + + /** + * Gets the value of the regionShort property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegionShort() { + return regionShort; + } + + /** + * Sets the value of the regionShort property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegionShort(String value) { + this.regionShort = value; + } + + /** + * Gets the value of the regionCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getRegionCode() { + return regionCode; + } + + /** + * Sets the value of the regionCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setRegionCode(Integer value) { + this.regionCode = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the countryDnb property. + * + */ + public int getCountryDnb() { + return countryDnb; + } + + /** + * Sets the value of the countryDnb property. + * + */ + public void setCountryDnb(int value) { + this.countryDnb = value; + } + + /** + * Gets the value of the countryIso property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryIso() { + return countryIso; + } + + /** + * Sets the value of the countryIso property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryIso(String value) { + this.countryIso = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReference.java new file mode 100644 index 0000000..e906ec6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReference.java @@ -0,0 +1,296 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBBusinessReference complex type. + * + *

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

+ * <complexType name="DNBBusinessReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dnb_key" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="main_branch_indication" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="confidence_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBBusinessReference", propOrder = { + +}) +public class DNBBusinessReference { + + @XmlElement(name = "dnb_key", required = true) + protected String dnbKey; + @XmlElement(name = "trade_name", required = true) + protected String tradeName; + @XmlElement(required = true) + protected String address; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String city; + @XmlElement(name = "phone_number", required = true) + protected String phoneNumber; + @XmlElement(required = true) + protected String country; + @XmlElement(name = "main_branch_indication") + protected boolean mainBranchIndication; + @XmlElement(name = "confidence_code") + protected int confidenceCode; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + + /** + * Gets the value of the dnbKey property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDnbKey() { + return dnbKey; + } + + /** + * Sets the value of the dnbKey property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDnbKey(String value) { + this.dnbKey = value; + } + + /** + * Gets the value of the tradeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName() { + return tradeName; + } + + /** + * Sets the value of the tradeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName(String value) { + this.tradeName = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the phoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPhoneNumber() { + return phoneNumber; + } + + /** + * Sets the value of the phoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPhoneNumber(String value) { + this.phoneNumber = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the mainBranchIndication property. + * + */ + public boolean isMainBranchIndication() { + return mainBranchIndication; + } + + /** + * Sets the value of the mainBranchIndication property. + * + */ + public void setMainBranchIndication(boolean value) { + this.mainBranchIndication = value; + } + + /** + * Gets the value of the confidenceCode property. + * + */ + public int getConfidenceCode() { + return confidenceCode; + } + + /** + * Sets the value of the confidenceCode property. + * + */ + public void setConfidenceCode(int value) { + this.confidenceCode = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceArray.java new file mode 100644 index 0000000..a74fca7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBBusinessReferenceArray complex type. + * + *

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

+ * <complexType name="DNBBusinessReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DNBBusinessReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBBusinessReferenceArray", propOrder = { + "item" +}) +public class DNBBusinessReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DNBBusinessReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferencePagedResult.java new file mode 100644 index 0000000..865b716 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferencePagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBBusinessReferencePagedResult complex type. + * + *

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

+ * <complexType name="DNBBusinessReferencePagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}DNBBusinessReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBBusinessReferencePagedResult", propOrder = { + +}) +public class DNBBusinessReferencePagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected DNBBusinessReferenceArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link DNBBusinessReferenceArray } + * + */ + public DNBBusinessReferenceArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link DNBBusinessReferenceArray } + * + */ + public void setResults(DNBBusinessReferenceArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2.java new file mode 100644 index 0000000..5daa0f9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2.java @@ -0,0 +1,314 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBBusinessReferenceV2 complex type. + * + *

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

+ * <complexType name="DNBBusinessReferenceV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dnb_key" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="country_iso2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="main_branch_indication" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="confidence_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBBusinessReferenceV2", propOrder = { + +}) +public class DNBBusinessReferenceV2 { + + @XmlElement(name = "dnb_key", required = true) + protected String dnbKey; + @XmlElement(name = "trade_name", required = true) + protected String tradeName; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + @XmlElement(required = true) + protected String address; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String city; + @XmlElement(name = "phone_number", required = true) + protected String phoneNumber; + protected int country; + @XmlElement(name = "country_iso2", required = true) + protected String countryIso2; + @XmlElement(name = "main_branch_indication") + protected boolean mainBranchIndication; + @XmlElement(name = "confidence_code") + protected int confidenceCode; + + /** + * Gets the value of the dnbKey property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDnbKey() { + return dnbKey; + } + + /** + * Sets the value of the dnbKey property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDnbKey(String value) { + this.dnbKey = value; + } + + /** + * Gets the value of the tradeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName() { + return tradeName; + } + + /** + * Sets the value of the tradeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName(String value) { + this.tradeName = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the phoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPhoneNumber() { + return phoneNumber; + } + + /** + * Sets the value of the phoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPhoneNumber(String value) { + this.phoneNumber = value; + } + + /** + * Gets the value of the country property. + * + */ + public int getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + */ + public void setCountry(int value) { + this.country = value; + } + + /** + * Gets the value of the countryIso2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryIso2() { + return countryIso2; + } + + /** + * Sets the value of the countryIso2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryIso2(String value) { + this.countryIso2 = value; + } + + /** + * Gets the value of the mainBranchIndication property. + * + */ + public boolean isMainBranchIndication() { + return mainBranchIndication; + } + + /** + * Sets the value of the mainBranchIndication property. + * + */ + public void setMainBranchIndication(boolean value) { + this.mainBranchIndication = value; + } + + /** + * Gets the value of the confidenceCode property. + * + */ + public int getConfidenceCode() { + return confidenceCode; + } + + /** + * Sets the value of the confidenceCode property. + * + */ + public void setConfidenceCode(int value) { + this.confidenceCode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2Array.java new file mode 100644 index 0000000..bda285f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBBusinessReferenceV2Array complex type. + * + *

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

+ * <complexType name="DNBBusinessReferenceV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DNBBusinessReferenceV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBBusinessReferenceV2Array", propOrder = { + "item" +}) +public class DNBBusinessReferenceV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DNBBusinessReferenceV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2PagedResult.java new file mode 100644 index 0000000..a44e9dd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2PagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBBusinessReferenceV2PagedResult complex type. + * + *

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

+ * <complexType name="DNBBusinessReferenceV2PagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}DNBBusinessReferenceV2Array"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBBusinessReferenceV2PagedResult", propOrder = { + +}) +public class DNBBusinessReferenceV2PagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected DNBBusinessReferenceV2Array results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link DNBBusinessReferenceV2Array } + * + */ + public DNBBusinessReferenceV2Array getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link DNBBusinessReferenceV2Array } + * + */ + public void setResults(DNBBusinessReferenceV2Array value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessVerification.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessVerification.java new file mode 100644 index 0000000..8c76c26 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessVerification.java @@ -0,0 +1,688 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBBusinessVerification complex type. + * + *

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

+ * <complexType name="DNBBusinessVerification">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="duns" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="dnb_key" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="enquiry_duns" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="business_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="business_number_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="business_number_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="subregion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country_calling_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="main_branch_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="out_of_business" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="incorporation_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="start_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="sic_activity_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sic_activity_description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sic_version" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBBusinessVerification", propOrder = { + +}) +public class DNBBusinessVerification { + + @XmlElement(required = true) + protected String duns; + @XmlElement(name = "dnb_key", required = true) + protected String dnbKey; + @XmlElement(name = "enquiry_duns", required = true) + protected String enquiryDuns; + @XmlElement(name = "business_number") + protected String businessNumber; + @XmlElement(name = "business_number_type") + protected String businessNumberType; + @XmlElement(name = "business_number_description") + protected String businessNumberDescription; + @XmlElement(name = "trade_name", required = true) + protected String tradeName; + @XmlElement(required = true) + protected StringArray address; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String city; + protected String region; + protected String subregion; + @XmlElement(name = "country_calling_code", required = true) + protected String countryCallingCode; + @XmlElement(name = "phone_number") + protected String phoneNumber; + @XmlElement(name = "fax_number") + protected String faxNumber; + @XmlElement(required = true) + protected String country; + @XmlElement(name = "main_branch_indication") + protected Boolean mainBranchIndication; + @XmlElement(name = "out_of_business") + protected Boolean outOfBusiness; + @XmlElement(name = "incorporation_year") + protected Integer incorporationYear; + @XmlElement(name = "start_year") + protected Integer startYear; + @XmlElement(name = "sic_activity_code", required = true) + protected String sicActivityCode; + @XmlElement(name = "sic_activity_description", required = true) + protected String sicActivityDescription; + @XmlElement(name = "sic_version", required = true) + protected String sicVersion; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + + /** + * Gets the value of the duns property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDuns() { + return duns; + } + + /** + * Sets the value of the duns property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDuns(String value) { + this.duns = value; + } + + /** + * Gets the value of the dnbKey property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDnbKey() { + return dnbKey; + } + + /** + * Sets the value of the dnbKey property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDnbKey(String value) { + this.dnbKey = value; + } + + /** + * Gets the value of the enquiryDuns property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnquiryDuns() { + return enquiryDuns; + } + + /** + * Sets the value of the enquiryDuns property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnquiryDuns(String value) { + this.enquiryDuns = value; + } + + /** + * Gets the value of the businessNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBusinessNumber() { + return businessNumber; + } + + /** + * Sets the value of the businessNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBusinessNumber(String value) { + this.businessNumber = value; + } + + /** + * Gets the value of the businessNumberType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBusinessNumberType() { + return businessNumberType; + } + + /** + * Sets the value of the businessNumberType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBusinessNumberType(String value) { + this.businessNumberType = value; + } + + /** + * Gets the value of the businessNumberDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBusinessNumberDescription() { + return businessNumberDescription; + } + + /** + * Sets the value of the businessNumberDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBusinessNumberDescription(String value) { + this.businessNumberDescription = value; + } + + /** + * Gets the value of the tradeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName() { + return tradeName; + } + + /** + * Sets the value of the tradeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName(String value) { + this.tradeName = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setAddress(StringArray value) { + this.address = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the region property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegion() { + return region; + } + + /** + * Sets the value of the region property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegion(String value) { + this.region = value; + } + + /** + * Gets the value of the subregion property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubregion() { + return subregion; + } + + /** + * Sets the value of the subregion property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubregion(String value) { + this.subregion = value; + } + + /** + * Gets the value of the countryCallingCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryCallingCode() { + return countryCallingCode; + } + + /** + * Sets the value of the countryCallingCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryCallingCode(String value) { + this.countryCallingCode = value; + } + + /** + * Gets the value of the phoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPhoneNumber() { + return phoneNumber; + } + + /** + * Sets the value of the phoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPhoneNumber(String value) { + this.phoneNumber = value; + } + + /** + * Gets the value of the faxNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFaxNumber() { + return faxNumber; + } + + /** + * Sets the value of the faxNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFaxNumber(String value) { + this.faxNumber = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the mainBranchIndication property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isMainBranchIndication() { + return mainBranchIndication; + } + + /** + * Sets the value of the mainBranchIndication property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setMainBranchIndication(Boolean value) { + this.mainBranchIndication = value; + } + + /** + * Gets the value of the outOfBusiness property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isOutOfBusiness() { + return outOfBusiness; + } + + /** + * Sets the value of the outOfBusiness property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setOutOfBusiness(Boolean value) { + this.outOfBusiness = value; + } + + /** + * Gets the value of the incorporationYear property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getIncorporationYear() { + return incorporationYear; + } + + /** + * Sets the value of the incorporationYear property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setIncorporationYear(Integer value) { + this.incorporationYear = value; + } + + /** + * Gets the value of the startYear property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getStartYear() { + return startYear; + } + + /** + * Sets the value of the startYear property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setStartYear(Integer value) { + this.startYear = value; + } + + /** + * Gets the value of the sicActivityCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSicActivityCode() { + return sicActivityCode; + } + + /** + * Sets the value of the sicActivityCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSicActivityCode(String value) { + this.sicActivityCode = value; + } + + /** + * Gets the value of the sicActivityDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSicActivityDescription() { + return sicActivityDescription; + } + + /** + * Sets the value of the sicActivityDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSicActivityDescription(String value) { + this.sicActivityDescription = value; + } + + /** + * Gets the value of the sicVersion property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSicVersion() { + return sicVersion; + } + + /** + * Sets the value of the sicVersion property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSicVersion(String value) { + this.sicVersion = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBCommentary.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBCommentary.java new file mode 100644 index 0000000..adeab43 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBCommentary.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBCommentary complex type. + * + *

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

+ * <complexType name="DNBCommentary">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBCommentary", propOrder = { + +}) +public class DNBCommentary { + + @XmlElement(required = true) + protected String code; + protected String description; + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCode(String value) { + this.code = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBCommentaryArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBCommentaryArray.java new file mode 100644 index 0000000..76cf371 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBCommentaryArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBCommentaryArray complex type. + * + *

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

+ * <complexType name="DNBCommentaryArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DNBCommentary" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBCommentaryArray", propOrder = { + "item" +}) +public class DNBCommentaryArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DNBCommentary } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBEmployeeCount.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBEmployeeCount.java new file mode 100644 index 0000000..6a336f2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBEmployeeCount.java @@ -0,0 +1,175 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBEmployeeCount complex type. + * + *

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

+ * <complexType name="DNBEmployeeCount">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="employees" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="employees_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="estimated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="subsidiaries_included" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="qualification_indicator" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBEmployeeCount", propOrder = { + +}) +public class DNBEmployeeCount { + + protected Integer employees; + @XmlElement(name = "employees_text") + protected String employeesText; + protected Boolean estimated; + @XmlElement(name = "subsidiaries_included") + protected Boolean subsidiariesIncluded; + @XmlElement(name = "qualification_indicator") + protected String qualificationIndicator; + + /** + * Gets the value of the employees property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getEmployees() { + return employees; + } + + /** + * Sets the value of the employees property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setEmployees(Integer value) { + this.employees = value; + } + + /** + * Gets the value of the employeesText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmployeesText() { + return employeesText; + } + + /** + * Sets the value of the employeesText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmployeesText(String value) { + this.employeesText = value; + } + + /** + * Gets the value of the estimated property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isEstimated() { + return estimated; + } + + /** + * Sets the value of the estimated property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setEstimated(Boolean value) { + this.estimated = value; + } + + /** + * Gets the value of the subsidiariesIncluded property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isSubsidiariesIncluded() { + return subsidiariesIncluded; + } + + /** + * Sets the value of the subsidiariesIncluded property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setSubsidiariesIncluded(Boolean value) { + this.subsidiariesIncluded = value; + } + + /** + * Gets the value of the qualificationIndicator property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getQualificationIndicator() { + return qualificationIndicator; + } + + /** + * Sets the value of the qualificationIndicator property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setQualificationIndicator(String value) { + this.qualificationIndicator = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBEnterpriseManagement.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBEnterpriseManagement.java new file mode 100644 index 0000000..17dfac1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBEnterpriseManagement.java @@ -0,0 +1,1363 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBEnterpriseManagement complex type. + * + *

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

+ * <complexType name="DNBEnterpriseManagement">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="quickcheck" type="{http://www.webservices.nl/soap/}DNBQuickCheck"/>
+ *         <element name="main_branch_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="indate_indicator" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="registration_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="import_indicator" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="export_indicator" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="location_ownership" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="claims_indicator" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="paydex_score_earlier" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="average_high_credit" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="high_credit" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_payments" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="headquarters" type="{http://www.webservices.nl/soap/}DNBRelatedBusiness" minOccurs="0"/>
+ *         <element name="parent" type="{http://www.webservices.nl/soap/}DNBRelatedBusiness" minOccurs="0"/>
+ *         <element name="domestic_ultimate" type="{http://www.webservices.nl/soap/}DNBRelatedBusiness" minOccurs="0"/>
+ *         <element name="global_ultimate" type="{http://www.webservices.nl/soap/}DNBRelatedBusiness" minOccurs="0"/>
+ *         <element name="is_subsidiary_location" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="location_status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="accounts_audited" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="statement_consolidated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="figures_estimated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="figures_forecast" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="year_period" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="figures_final" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="opening_statement" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="figures_proforma" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="trial_balance" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="figures_signed" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="figures_restated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="figures_unbalanced" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="figures_qualified" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="accounts_receivable" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="liquid_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="inventory" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_current_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="accounts_payable" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_current_liabilities" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total_liabilities" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="net_income" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="quick_ratio" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="current_ratio" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="previous_net_worth" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="previous_sales" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="previous_statement_date" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="line_of_business" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="failure_score" type="{http://www.webservices.nl/soap/}DNBScoreGroupArray"/>
+ *         <element name="credit_score" type="{http://www.webservices.nl/soap/}DNBScoreGroupArray"/>
+ *         <element name="global_failure_score" type="{http://www.webservices.nl/soap/}DNBScoreGroupArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBEnterpriseManagement", propOrder = { + +}) +public class DNBEnterpriseManagement { + + @XmlElement(required = true) + protected DNBQuickCheck quickcheck; + @XmlElement(name = "main_branch_indication") + protected Boolean mainBranchIndication; + @XmlElement(name = "indate_indicator") + protected Boolean indateIndicator; + @XmlElement(name = "registration_type") + protected String registrationType; + @XmlElement(name = "import_indicator") + protected Boolean importIndicator; + @XmlElement(name = "export_indicator") + protected Boolean exportIndicator; + @XmlElement(name = "location_ownership") + protected String locationOwnership; + @XmlElement(name = "claims_indicator") + protected Boolean claimsIndicator; + @XmlElement(name = "paydex_score_earlier") + protected Integer paydexScoreEarlier; + @XmlElement(name = "average_high_credit") + protected Integer averageHighCredit; + @XmlElement(name = "high_credit") + protected Integer highCredit; + @XmlElement(name = "total_payments") + protected Integer totalPayments; + protected DNBRelatedBusiness headquarters; + protected DNBRelatedBusiness parent; + @XmlElement(name = "domestic_ultimate") + protected DNBRelatedBusiness domesticUltimate; + @XmlElement(name = "global_ultimate") + protected DNBRelatedBusiness globalUltimate; + @XmlElement(name = "is_subsidiary_location") + protected Boolean isSubsidiaryLocation; + @XmlElement(name = "location_status") + protected String locationStatus; + @XmlElement(name = "accounts_audited") + protected Boolean accountsAudited; + @XmlElement(name = "statement_consolidated") + protected Boolean statementConsolidated; + @XmlElement(name = "figures_estimated") + protected Boolean figuresEstimated; + @XmlElement(name = "figures_forecast") + protected Boolean figuresForecast; + @XmlElement(name = "year_period") + protected Boolean yearPeriod; + @XmlElement(name = "figures_final") + protected Boolean figuresFinal; + @XmlElement(name = "opening_statement") + protected Boolean openingStatement; + @XmlElement(name = "figures_proforma") + protected Boolean figuresProforma; + @XmlElement(name = "trial_balance") + protected Boolean trialBalance; + @XmlElement(name = "figures_signed") + protected Boolean figuresSigned; + @XmlElement(name = "figures_restated") + protected Boolean figuresRestated; + @XmlElement(name = "figures_unbalanced") + protected Boolean figuresUnbalanced; + @XmlElement(name = "figures_qualified") + protected Boolean figuresQualified; + @XmlElement(name = "accounts_receivable") + protected Integer accountsReceivable; + @XmlElement(name = "liquid_assets") + protected Integer liquidAssets; + protected Integer inventory; + @XmlElement(name = "total_current_assets") + protected Integer totalCurrentAssets; + @XmlElement(name = "total_assets") + protected Integer totalAssets; + @XmlElement(name = "accounts_payable") + protected Integer accountsPayable; + @XmlElement(name = "total_current_liabilities") + protected Integer totalCurrentLiabilities; + @XmlElement(name = "total_liabilities") + protected Integer totalLiabilities; + @XmlElement(name = "net_income") + protected Integer netIncome; + @XmlElement(name = "quick_ratio") + protected BigDecimal quickRatio; + @XmlElement(name = "current_ratio") + protected BigDecimal currentRatio; + @XmlElement(name = "previous_net_worth") + protected Integer previousNetWorth; + @XmlElement(name = "previous_sales") + protected Integer previousSales; + @XmlElement(name = "previous_statement_date") + protected String previousStatementDate; + @XmlElement(name = "line_of_business") + protected String lineOfBusiness; + @XmlElement(name = "failure_score", required = true) + protected DNBScoreGroupArray failureScore; + @XmlElement(name = "credit_score", required = true) + protected DNBScoreGroupArray creditScore; + @XmlElement(name = "global_failure_score", required = true) + protected DNBScoreGroupArray globalFailureScore; + + /** + * Gets the value of the quickcheck property. + * + * @return + * possible object is + * {@link DNBQuickCheck } + * + */ + public DNBQuickCheck getQuickcheck() { + return quickcheck; + } + + /** + * Sets the value of the quickcheck property. + * + * @param value + * allowed object is + * {@link DNBQuickCheck } + * + */ + public void setQuickcheck(DNBQuickCheck value) { + this.quickcheck = value; + } + + /** + * Gets the value of the mainBranchIndication property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isMainBranchIndication() { + return mainBranchIndication; + } + + /** + * Sets the value of the mainBranchIndication property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setMainBranchIndication(Boolean value) { + this.mainBranchIndication = value; + } + + /** + * Gets the value of the indateIndicator property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndateIndicator() { + return indateIndicator; + } + + /** + * Sets the value of the indateIndicator property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndateIndicator(Boolean value) { + this.indateIndicator = value; + } + + /** + * Gets the value of the registrationType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistrationType() { + return registrationType; + } + + /** + * Sets the value of the registrationType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistrationType(String value) { + this.registrationType = value; + } + + /** + * Gets the value of the importIndicator property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isImportIndicator() { + return importIndicator; + } + + /** + * Sets the value of the importIndicator property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setImportIndicator(Boolean value) { + this.importIndicator = value; + } + + /** + * Gets the value of the exportIndicator property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isExportIndicator() { + return exportIndicator; + } + + /** + * Sets the value of the exportIndicator property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setExportIndicator(Boolean value) { + this.exportIndicator = value; + } + + /** + * Gets the value of the locationOwnership property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLocationOwnership() { + return locationOwnership; + } + + /** + * Sets the value of the locationOwnership property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLocationOwnership(String value) { + this.locationOwnership = value; + } + + /** + * Gets the value of the claimsIndicator property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isClaimsIndicator() { + return claimsIndicator; + } + + /** + * Sets the value of the claimsIndicator property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setClaimsIndicator(Boolean value) { + this.claimsIndicator = value; + } + + /** + * Gets the value of the paydexScoreEarlier property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPaydexScoreEarlier() { + return paydexScoreEarlier; + } + + /** + * Sets the value of the paydexScoreEarlier property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPaydexScoreEarlier(Integer value) { + this.paydexScoreEarlier = value; + } + + /** + * Gets the value of the averageHighCredit property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getAverageHighCredit() { + return averageHighCredit; + } + + /** + * Sets the value of the averageHighCredit property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setAverageHighCredit(Integer value) { + this.averageHighCredit = value; + } + + /** + * Gets the value of the highCredit property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getHighCredit() { + return highCredit; + } + + /** + * Sets the value of the highCredit property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setHighCredit(Integer value) { + this.highCredit = value; + } + + /** + * Gets the value of the totalPayments property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalPayments() { + return totalPayments; + } + + /** + * Sets the value of the totalPayments property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalPayments(Integer value) { + this.totalPayments = value; + } + + /** + * Gets the value of the headquarters property. + * + * @return + * possible object is + * {@link DNBRelatedBusiness } + * + */ + public DNBRelatedBusiness getHeadquarters() { + return headquarters; + } + + /** + * Sets the value of the headquarters property. + * + * @param value + * allowed object is + * {@link DNBRelatedBusiness } + * + */ + public void setHeadquarters(DNBRelatedBusiness value) { + this.headquarters = value; + } + + /** + * Gets the value of the parent property. + * + * @return + * possible object is + * {@link DNBRelatedBusiness } + * + */ + public DNBRelatedBusiness getParent() { + return parent; + } + + /** + * Sets the value of the parent property. + * + * @param value + * allowed object is + * {@link DNBRelatedBusiness } + * + */ + public void setParent(DNBRelatedBusiness value) { + this.parent = value; + } + + /** + * Gets the value of the domesticUltimate property. + * + * @return + * possible object is + * {@link DNBRelatedBusiness } + * + */ + public DNBRelatedBusiness getDomesticUltimate() { + return domesticUltimate; + } + + /** + * Sets the value of the domesticUltimate property. + * + * @param value + * allowed object is + * {@link DNBRelatedBusiness } + * + */ + public void setDomesticUltimate(DNBRelatedBusiness value) { + this.domesticUltimate = value; + } + + /** + * Gets the value of the globalUltimate property. + * + * @return + * possible object is + * {@link DNBRelatedBusiness } + * + */ + public DNBRelatedBusiness getGlobalUltimate() { + return globalUltimate; + } + + /** + * Sets the value of the globalUltimate property. + * + * @param value + * allowed object is + * {@link DNBRelatedBusiness } + * + */ + public void setGlobalUltimate(DNBRelatedBusiness value) { + this.globalUltimate = value; + } + + /** + * Gets the value of the isSubsidiaryLocation property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIsSubsidiaryLocation() { + return isSubsidiaryLocation; + } + + /** + * Sets the value of the isSubsidiaryLocation property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIsSubsidiaryLocation(Boolean value) { + this.isSubsidiaryLocation = value; + } + + /** + * Gets the value of the locationStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLocationStatus() { + return locationStatus; + } + + /** + * Sets the value of the locationStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLocationStatus(String value) { + this.locationStatus = value; + } + + /** + * Gets the value of the accountsAudited property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isAccountsAudited() { + return accountsAudited; + } + + /** + * Sets the value of the accountsAudited property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setAccountsAudited(Boolean value) { + this.accountsAudited = value; + } + + /** + * Gets the value of the statementConsolidated property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isStatementConsolidated() { + return statementConsolidated; + } + + /** + * Sets the value of the statementConsolidated property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setStatementConsolidated(Boolean value) { + this.statementConsolidated = value; + } + + /** + * Gets the value of the figuresEstimated property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isFiguresEstimated() { + return figuresEstimated; + } + + /** + * Sets the value of the figuresEstimated property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setFiguresEstimated(Boolean value) { + this.figuresEstimated = value; + } + + /** + * Gets the value of the figuresForecast property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isFiguresForecast() { + return figuresForecast; + } + + /** + * Sets the value of the figuresForecast property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setFiguresForecast(Boolean value) { + this.figuresForecast = value; + } + + /** + * Gets the value of the yearPeriod property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isYearPeriod() { + return yearPeriod; + } + + /** + * Sets the value of the yearPeriod property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setYearPeriod(Boolean value) { + this.yearPeriod = value; + } + + /** + * Gets the value of the figuresFinal property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isFiguresFinal() { + return figuresFinal; + } + + /** + * Sets the value of the figuresFinal property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setFiguresFinal(Boolean value) { + this.figuresFinal = value; + } + + /** + * Gets the value of the openingStatement property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isOpeningStatement() { + return openingStatement; + } + + /** + * Sets the value of the openingStatement property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setOpeningStatement(Boolean value) { + this.openingStatement = value; + } + + /** + * Gets the value of the figuresProforma property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isFiguresProforma() { + return figuresProforma; + } + + /** + * Sets the value of the figuresProforma property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setFiguresProforma(Boolean value) { + this.figuresProforma = value; + } + + /** + * Gets the value of the trialBalance property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isTrialBalance() { + return trialBalance; + } + + /** + * Sets the value of the trialBalance property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setTrialBalance(Boolean value) { + this.trialBalance = value; + } + + /** + * Gets the value of the figuresSigned property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isFiguresSigned() { + return figuresSigned; + } + + /** + * Sets the value of the figuresSigned property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setFiguresSigned(Boolean value) { + this.figuresSigned = value; + } + + /** + * Gets the value of the figuresRestated property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isFiguresRestated() { + return figuresRestated; + } + + /** + * Sets the value of the figuresRestated property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setFiguresRestated(Boolean value) { + this.figuresRestated = value; + } + + /** + * Gets the value of the figuresUnbalanced property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isFiguresUnbalanced() { + return figuresUnbalanced; + } + + /** + * Sets the value of the figuresUnbalanced property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setFiguresUnbalanced(Boolean value) { + this.figuresUnbalanced = value; + } + + /** + * Gets the value of the figuresQualified property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isFiguresQualified() { + return figuresQualified; + } + + /** + * Sets the value of the figuresQualified property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setFiguresQualified(Boolean value) { + this.figuresQualified = value; + } + + /** + * Gets the value of the accountsReceivable property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getAccountsReceivable() { + return accountsReceivable; + } + + /** + * Sets the value of the accountsReceivable property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setAccountsReceivable(Integer value) { + this.accountsReceivable = value; + } + + /** + * Gets the value of the liquidAssets property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getLiquidAssets() { + return liquidAssets; + } + + /** + * Sets the value of the liquidAssets property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setLiquidAssets(Integer value) { + this.liquidAssets = value; + } + + /** + * Gets the value of the inventory property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getInventory() { + return inventory; + } + + /** + * Sets the value of the inventory property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setInventory(Integer value) { + this.inventory = value; + } + + /** + * Gets the value of the totalCurrentAssets property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalCurrentAssets() { + return totalCurrentAssets; + } + + /** + * Sets the value of the totalCurrentAssets property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalCurrentAssets(Integer value) { + this.totalCurrentAssets = value; + } + + /** + * Gets the value of the totalAssets property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalAssets() { + return totalAssets; + } + + /** + * Sets the value of the totalAssets property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalAssets(Integer value) { + this.totalAssets = value; + } + + /** + * Gets the value of the accountsPayable property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getAccountsPayable() { + return accountsPayable; + } + + /** + * Sets the value of the accountsPayable property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setAccountsPayable(Integer value) { + this.accountsPayable = value; + } + + /** + * Gets the value of the totalCurrentLiabilities property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalCurrentLiabilities() { + return totalCurrentLiabilities; + } + + /** + * Sets the value of the totalCurrentLiabilities property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalCurrentLiabilities(Integer value) { + this.totalCurrentLiabilities = value; + } + + /** + * Gets the value of the totalLiabilities property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotalLiabilities() { + return totalLiabilities; + } + + /** + * Sets the value of the totalLiabilities property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotalLiabilities(Integer value) { + this.totalLiabilities = value; + } + + /** + * Gets the value of the netIncome property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getNetIncome() { + return netIncome; + } + + /** + * Sets the value of the netIncome property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setNetIncome(Integer value) { + this.netIncome = value; + } + + /** + * Gets the value of the quickRatio property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getQuickRatio() { + return quickRatio; + } + + /** + * Sets the value of the quickRatio property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setQuickRatio(BigDecimal value) { + this.quickRatio = value; + } + + /** + * Gets the value of the currentRatio property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getCurrentRatio() { + return currentRatio; + } + + /** + * Sets the value of the currentRatio property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setCurrentRatio(BigDecimal value) { + this.currentRatio = value; + } + + /** + * Gets the value of the previousNetWorth property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPreviousNetWorth() { + return previousNetWorth; + } + + /** + * Sets the value of the previousNetWorth property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPreviousNetWorth(Integer value) { + this.previousNetWorth = value; + } + + /** + * Gets the value of the previousSales property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPreviousSales() { + return previousSales; + } + + /** + * Sets the value of the previousSales property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPreviousSales(Integer value) { + this.previousSales = value; + } + + /** + * Gets the value of the previousStatementDate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreviousStatementDate() { + return previousStatementDate; + } + + /** + * Sets the value of the previousStatementDate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreviousStatementDate(String value) { + this.previousStatementDate = value; + } + + /** + * Gets the value of the lineOfBusiness property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLineOfBusiness() { + return lineOfBusiness; + } + + /** + * Sets the value of the lineOfBusiness property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLineOfBusiness(String value) { + this.lineOfBusiness = value; + } + + /** + * Gets the value of the failureScore property. + * + * @return + * possible object is + * {@link DNBScoreGroupArray } + * + */ + public DNBScoreGroupArray getFailureScore() { + return failureScore; + } + + /** + * Sets the value of the failureScore property. + * + * @param value + * allowed object is + * {@link DNBScoreGroupArray } + * + */ + public void setFailureScore(DNBScoreGroupArray value) { + this.failureScore = value; + } + + /** + * Gets the value of the creditScore property. + * + * @return + * possible object is + * {@link DNBScoreGroupArray } + * + */ + public DNBScoreGroupArray getCreditScore() { + return creditScore; + } + + /** + * Sets the value of the creditScore property. + * + * @param value + * allowed object is + * {@link DNBScoreGroupArray } + * + */ + public void setCreditScore(DNBScoreGroupArray value) { + this.creditScore = value; + } + + /** + * Gets the value of the globalFailureScore property. + * + * @return + * possible object is + * {@link DNBScoreGroupArray } + * + */ + public DNBScoreGroupArray getGlobalFailureScore() { + return globalFailureScore; + } + + /** + * Sets the value of the globalFailureScore property. + * + * @param value + * allowed object is + * {@link DNBScoreGroupArray } + * + */ + public void setGlobalFailureScore(DNBScoreGroupArray value) { + this.globalFailureScore = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketing.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketing.java new file mode 100644 index 0000000..92da322 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketing.java @@ -0,0 +1,358 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBMarketing complex type. + * + *

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

+ * <complexType name="DNBMarketing">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="duns" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="business_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="business_number_type" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="primary_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="former_duns" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="former_primary_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DNBAddress"/>
+ *         <element name="country_calling_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="marketability_indication" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBMarketing", propOrder = { + +}) +public class DNBMarketing { + + @XmlElement(required = true) + protected String duns; + @XmlElement(name = "business_number") + protected String businessNumber; + @XmlElement(name = "business_number_type") + protected Integer businessNumberType; + @XmlElement(name = "primary_name") + protected String primaryName; + @XmlElement(name = "trade_name") + protected String tradeName; + @XmlElement(name = "former_duns") + protected String formerDuns; + @XmlElement(name = "former_primary_name") + protected String formerPrimaryName; + @XmlElement(name = "establishment_address", required = true) + protected DNBAddress establishmentAddress; + @XmlElement(name = "country_calling_code") + protected String countryCallingCode; + @XmlElement(name = "phone_number") + protected String phoneNumber; + @XmlElement(name = "fax_number") + protected String faxNumber; + @XmlElement(name = "marketability_indication") + protected boolean marketabilityIndication; + + /** + * Gets the value of the duns property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDuns() { + return duns; + } + + /** + * Sets the value of the duns property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDuns(String value) { + this.duns = value; + } + + /** + * Gets the value of the businessNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBusinessNumber() { + return businessNumber; + } + + /** + * Sets the value of the businessNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBusinessNumber(String value) { + this.businessNumber = value; + } + + /** + * Gets the value of the businessNumberType property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getBusinessNumberType() { + return businessNumberType; + } + + /** + * Sets the value of the businessNumberType property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setBusinessNumberType(Integer value) { + this.businessNumberType = value; + } + + /** + * Gets the value of the primaryName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimaryName() { + return primaryName; + } + + /** + * Sets the value of the primaryName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimaryName(String value) { + this.primaryName = value; + } + + /** + * Gets the value of the tradeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName() { + return tradeName; + } + + /** + * Sets the value of the tradeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName(String value) { + this.tradeName = value; + } + + /** + * Gets the value of the formerDuns property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormerDuns() { + return formerDuns; + } + + /** + * Sets the value of the formerDuns property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormerDuns(String value) { + this.formerDuns = value; + } + + /** + * Gets the value of the formerPrimaryName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormerPrimaryName() { + return formerPrimaryName; + } + + /** + * Sets the value of the formerPrimaryName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormerPrimaryName(String value) { + this.formerPrimaryName = value; + } + + /** + * Gets the value of the establishmentAddress property. + * + * @return + * possible object is + * {@link DNBAddress } + * + */ + public DNBAddress getEstablishmentAddress() { + return establishmentAddress; + } + + /** + * Sets the value of the establishmentAddress property. + * + * @param value + * allowed object is + * {@link DNBAddress } + * + */ + public void setEstablishmentAddress(DNBAddress value) { + this.establishmentAddress = value; + } + + /** + * Gets the value of the countryCallingCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryCallingCode() { + return countryCallingCode; + } + + /** + * Sets the value of the countryCallingCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryCallingCode(String value) { + this.countryCallingCode = value; + } + + /** + * Gets the value of the phoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPhoneNumber() { + return phoneNumber; + } + + /** + * Sets the value of the phoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPhoneNumber(String value) { + this.phoneNumber = value; + } + + /** + * Gets the value of the faxNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFaxNumber() { + return faxNumber; + } + + /** + * Sets the value of the faxNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFaxNumber(String value) { + this.faxNumber = value; + } + + /** + * Gets the value of the marketabilityIndication property. + * + */ + public boolean isMarketabilityIndication() { + return marketabilityIndication; + } + + /** + * Sets the value of the marketabilityIndication property. + * + */ + public void setMarketabilityIndication(boolean value) { + this.marketabilityIndication = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlus.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlus.java new file mode 100644 index 0000000..d0a5f92 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlus.java @@ -0,0 +1,958 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBMarketingPlus complex type. + * + *

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

+ * <complexType name="DNBMarketingPlus">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DNBAddress" minOccurs="0"/>
+ *         <element name="correspondence_deliverability_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="establishment_deliverability_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="location_status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="is_subsidiary_location" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="legal_form" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="line_of_business" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="sic_activity_codes" type="{http://www.webservices.nl/soap/}DNBSICCodeArray" minOccurs="0"/>
+ *         <element name="sic8_activity_codes" type="{http://www.webservices.nl/soap/}DNBSICCodeArray" minOccurs="0"/>
+ *         <element name="local_activity_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="local_activity_code_type" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="start_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="ceo_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ceo_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="executive_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="statement_date" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="annual_sales" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="annual_sales_us" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="annual_sales_indication" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="net_worth" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="net_worth_us" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="net_income" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="net_income_us" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="import_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="export_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="agent_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="employees" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="employees_indication" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="employees_total" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="employees_total_indication" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="employees_total_includes_principals" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="report_date" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="out_of_business" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBMarketingPlus", propOrder = { + +}) +public class DNBMarketingPlus { + + @XmlElement(name = "correspondence_address") + protected DNBAddress correspondenceAddress; + @XmlElement(name = "correspondence_deliverability_indication") + protected Boolean correspondenceDeliverabilityIndication; + @XmlElement(name = "establishment_deliverability_indication") + protected Boolean establishmentDeliverabilityIndication; + @XmlElement(name = "location_status") + protected String locationStatus; + @XmlElement(name = "is_subsidiary_location") + protected Boolean isSubsidiaryLocation; + @XmlElement(name = "legal_form") + protected Integer legalForm; + @XmlElement(name = "line_of_business") + protected String lineOfBusiness; + @XmlElement(name = "sic_activity_codes") + protected DNBSICCodeArray sicActivityCodes; + @XmlElement(name = "sic8_activity_codes") + protected DNBSICCodeArray sic8ActivityCodes; + @XmlElement(name = "local_activity_code") + protected String localActivityCode; + @XmlElement(name = "local_activity_code_type") + protected Integer localActivityCodeType; + @XmlElement(name = "start_year") + protected Integer startYear; + @XmlElement(name = "ceo_name") + protected String ceoName; + @XmlElement(name = "ceo_title") + protected String ceoTitle; + @XmlElement(name = "executive_names") + protected StringArray executiveNames; + @XmlElement(name = "statement_date") + protected String statementDate; + protected String currency; + @XmlElement(name = "annual_sales") + protected Long annualSales; + @XmlElement(name = "annual_sales_us") + protected Long annualSalesUs; + @XmlElement(name = "annual_sales_indication") + protected Integer annualSalesIndication; + @XmlElement(name = "net_worth") + protected Long netWorth; + @XmlElement(name = "net_worth_us") + protected Long netWorthUs; + @XmlElement(name = "net_income") + protected Long netIncome; + @XmlElement(name = "net_income_us") + protected Long netIncomeUs; + @XmlElement(name = "import_indication") + protected Boolean importIndication; + @XmlElement(name = "export_indication") + protected Boolean exportIndication; + @XmlElement(name = "agent_indication") + protected Boolean agentIndication; + protected Integer employees; + @XmlElement(name = "employees_indication") + protected Integer employeesIndication; + @XmlElement(name = "employees_total") + protected Integer employeesTotal; + @XmlElement(name = "employees_total_indication") + protected Integer employeesTotalIndication; + @XmlElement(name = "employees_total_includes_principals") + protected Boolean employeesTotalIncludesPrincipals; + @XmlElement(name = "report_date") + protected String reportDate; + @XmlElement(name = "out_of_business") + protected Boolean outOfBusiness; + + /** + * Gets the value of the correspondenceAddress property. + * + * @return + * possible object is + * {@link DNBAddress } + * + */ + public DNBAddress getCorrespondenceAddress() { + return correspondenceAddress; + } + + /** + * Sets the value of the correspondenceAddress property. + * + * @param value + * allowed object is + * {@link DNBAddress } + * + */ + public void setCorrespondenceAddress(DNBAddress value) { + this.correspondenceAddress = value; + } + + /** + * Gets the value of the correspondenceDeliverabilityIndication property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isCorrespondenceDeliverabilityIndication() { + return correspondenceDeliverabilityIndication; + } + + /** + * Sets the value of the correspondenceDeliverabilityIndication property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setCorrespondenceDeliverabilityIndication(Boolean value) { + this.correspondenceDeliverabilityIndication = value; + } + + /** + * Gets the value of the establishmentDeliverabilityIndication property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isEstablishmentDeliverabilityIndication() { + return establishmentDeliverabilityIndication; + } + + /** + * Sets the value of the establishmentDeliverabilityIndication property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setEstablishmentDeliverabilityIndication(Boolean value) { + this.establishmentDeliverabilityIndication = value; + } + + /** + * Gets the value of the locationStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLocationStatus() { + return locationStatus; + } + + /** + * Sets the value of the locationStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLocationStatus(String value) { + this.locationStatus = value; + } + + /** + * Gets the value of the isSubsidiaryLocation property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIsSubsidiaryLocation() { + return isSubsidiaryLocation; + } + + /** + * Sets the value of the isSubsidiaryLocation property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIsSubsidiaryLocation(Boolean value) { + this.isSubsidiaryLocation = value; + } + + /** + * Gets the value of the legalForm property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getLegalForm() { + return legalForm; + } + + /** + * Sets the value of the legalForm property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setLegalForm(Integer value) { + this.legalForm = value; + } + + /** + * Gets the value of the lineOfBusiness property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLineOfBusiness() { + return lineOfBusiness; + } + + /** + * Sets the value of the lineOfBusiness property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLineOfBusiness(String value) { + this.lineOfBusiness = value; + } + + /** + * Gets the value of the sicActivityCodes property. + * + * @return + * possible object is + * {@link DNBSICCodeArray } + * + */ + public DNBSICCodeArray getSicActivityCodes() { + return sicActivityCodes; + } + + /** + * Sets the value of the sicActivityCodes property. + * + * @param value + * allowed object is + * {@link DNBSICCodeArray } + * + */ + public void setSicActivityCodes(DNBSICCodeArray value) { + this.sicActivityCodes = value; + } + + /** + * Gets the value of the sic8ActivityCodes property. + * + * @return + * possible object is + * {@link DNBSICCodeArray } + * + */ + public DNBSICCodeArray getSic8ActivityCodes() { + return sic8ActivityCodes; + } + + /** + * Sets the value of the sic8ActivityCodes property. + * + * @param value + * allowed object is + * {@link DNBSICCodeArray } + * + */ + public void setSic8ActivityCodes(DNBSICCodeArray value) { + this.sic8ActivityCodes = value; + } + + /** + * Gets the value of the localActivityCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLocalActivityCode() { + return localActivityCode; + } + + /** + * Sets the value of the localActivityCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLocalActivityCode(String value) { + this.localActivityCode = value; + } + + /** + * Gets the value of the localActivityCodeType property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getLocalActivityCodeType() { + return localActivityCodeType; + } + + /** + * Sets the value of the localActivityCodeType property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setLocalActivityCodeType(Integer value) { + this.localActivityCodeType = value; + } + + /** + * Gets the value of the startYear property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getStartYear() { + return startYear; + } + + /** + * Sets the value of the startYear property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setStartYear(Integer value) { + this.startYear = value; + } + + /** + * Gets the value of the ceoName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCeoName() { + return ceoName; + } + + /** + * Sets the value of the ceoName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCeoName(String value) { + this.ceoName = value; + } + + /** + * Gets the value of the ceoTitle property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCeoTitle() { + return ceoTitle; + } + + /** + * Sets the value of the ceoTitle property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCeoTitle(String value) { + this.ceoTitle = value; + } + + /** + * Gets the value of the executiveNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getExecutiveNames() { + return executiveNames; + } + + /** + * Sets the value of the executiveNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setExecutiveNames(StringArray value) { + this.executiveNames = value; + } + + /** + * Gets the value of the statementDate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatementDate() { + return statementDate; + } + + /** + * Sets the value of the statementDate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatementDate(String value) { + this.statementDate = value; + } + + /** + * Gets the value of the currency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCurrency() { + return currency; + } + + /** + * Sets the value of the currency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCurrency(String value) { + this.currency = value; + } + + /** + * Gets the value of the annualSales property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getAnnualSales() { + return annualSales; + } + + /** + * Sets the value of the annualSales property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setAnnualSales(Long value) { + this.annualSales = value; + } + + /** + * Gets the value of the annualSalesUs property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getAnnualSalesUs() { + return annualSalesUs; + } + + /** + * Sets the value of the annualSalesUs property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setAnnualSalesUs(Long value) { + this.annualSalesUs = value; + } + + /** + * Gets the value of the annualSalesIndication property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getAnnualSalesIndication() { + return annualSalesIndication; + } + + /** + * Sets the value of the annualSalesIndication property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setAnnualSalesIndication(Integer value) { + this.annualSalesIndication = value; + } + + /** + * Gets the value of the netWorth property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getNetWorth() { + return netWorth; + } + + /** + * Sets the value of the netWorth property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setNetWorth(Long value) { + this.netWorth = value; + } + + /** + * Gets the value of the netWorthUs property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getNetWorthUs() { + return netWorthUs; + } + + /** + * Sets the value of the netWorthUs property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setNetWorthUs(Long value) { + this.netWorthUs = value; + } + + /** + * Gets the value of the netIncome property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getNetIncome() { + return netIncome; + } + + /** + * Sets the value of the netIncome property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setNetIncome(Long value) { + this.netIncome = value; + } + + /** + * Gets the value of the netIncomeUs property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getNetIncomeUs() { + return netIncomeUs; + } + + /** + * Sets the value of the netIncomeUs property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setNetIncomeUs(Long value) { + this.netIncomeUs = value; + } + + /** + * Gets the value of the importIndication property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isImportIndication() { + return importIndication; + } + + /** + * Sets the value of the importIndication property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setImportIndication(Boolean value) { + this.importIndication = value; + } + + /** + * Gets the value of the exportIndication property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isExportIndication() { + return exportIndication; + } + + /** + * Sets the value of the exportIndication property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setExportIndication(Boolean value) { + this.exportIndication = value; + } + + /** + * Gets the value of the agentIndication property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isAgentIndication() { + return agentIndication; + } + + /** + * Sets the value of the agentIndication property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setAgentIndication(Boolean value) { + this.agentIndication = value; + } + + /** + * Gets the value of the employees property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getEmployees() { + return employees; + } + + /** + * Sets the value of the employees property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setEmployees(Integer value) { + this.employees = value; + } + + /** + * Gets the value of the employeesIndication property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getEmployeesIndication() { + return employeesIndication; + } + + /** + * Sets the value of the employeesIndication property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setEmployeesIndication(Integer value) { + this.employeesIndication = value; + } + + /** + * Gets the value of the employeesTotal property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getEmployeesTotal() { + return employeesTotal; + } + + /** + * Sets the value of the employeesTotal property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setEmployeesTotal(Integer value) { + this.employeesTotal = value; + } + + /** + * Gets the value of the employeesTotalIndication property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getEmployeesTotalIndication() { + return employeesTotalIndication; + } + + /** + * Sets the value of the employeesTotalIndication property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setEmployeesTotalIndication(Integer value) { + this.employeesTotalIndication = value; + } + + /** + * Gets the value of the employeesTotalIncludesPrincipals property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isEmployeesTotalIncludesPrincipals() { + return employeesTotalIncludesPrincipals; + } + + /** + * Sets the value of the employeesTotalIncludesPrincipals property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setEmployeesTotalIncludesPrincipals(Boolean value) { + this.employeesTotalIncludesPrincipals = value; + } + + /** + * Gets the value of the reportDate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReportDate() { + return reportDate; + } + + /** + * Sets the value of the reportDate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReportDate(String value) { + this.reportDate = value; + } + + /** + * Gets the value of the outOfBusiness property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isOutOfBusiness() { + return outOfBusiness; + } + + /** + * Sets the value of the outOfBusiness property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setOutOfBusiness(Boolean value) { + this.outOfBusiness = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusLinkage.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusLinkage.java new file mode 100644 index 0000000..54c4505 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusLinkage.java @@ -0,0 +1,366 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBMarketingPlusLinkage complex type. + * + *

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

+ * <complexType name="DNBMarketingPlusLinkage">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="domestic_ultimate_duns" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="domestic_ultimate_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="domestic_ultimate_address" type="{http://www.webservices.nl/soap/}DNBAddress"/>
+ *         <element name="global_ultimate_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="global_ultimate_duns" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="global_ultimate_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="global_ultimate_address" type="{http://www.webservices.nl/soap/}DNBAddress"/>
+ *         <element name="headquarters_duns" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="headquarters_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="headquarters_address" type="{http://www.webservices.nl/soap/}DNBAddress"/>
+ *         <element name="family_member_count" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="linkage_report_date" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBMarketingPlusLinkage", propOrder = { + +}) +public class DNBMarketingPlusLinkage { + + @XmlElement(name = "domestic_ultimate_duns") + protected String domesticUltimateDuns; + @XmlElement(name = "domestic_ultimate_name") + protected String domesticUltimateName; + @XmlElement(name = "domestic_ultimate_address", required = true) + protected DNBAddress domesticUltimateAddress; + @XmlElement(name = "global_ultimate_indication") + protected Boolean globalUltimateIndication; + @XmlElement(name = "global_ultimate_duns") + protected String globalUltimateDuns; + @XmlElement(name = "global_ultimate_name") + protected String globalUltimateName; + @XmlElement(name = "global_ultimate_address", required = true) + protected DNBAddress globalUltimateAddress; + @XmlElement(name = "headquarters_duns") + protected String headquartersDuns; + @XmlElement(name = "headquarters_name") + protected String headquartersName; + @XmlElement(name = "headquarters_address", required = true) + protected DNBAddress headquartersAddress; + @XmlElement(name = "family_member_count") + protected Integer familyMemberCount; + @XmlElement(name = "linkage_report_date") + protected String linkageReportDate; + + /** + * Gets the value of the domesticUltimateDuns property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDomesticUltimateDuns() { + return domesticUltimateDuns; + } + + /** + * Sets the value of the domesticUltimateDuns property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDomesticUltimateDuns(String value) { + this.domesticUltimateDuns = value; + } + + /** + * Gets the value of the domesticUltimateName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDomesticUltimateName() { + return domesticUltimateName; + } + + /** + * Sets the value of the domesticUltimateName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDomesticUltimateName(String value) { + this.domesticUltimateName = value; + } + + /** + * Gets the value of the domesticUltimateAddress property. + * + * @return + * possible object is + * {@link DNBAddress } + * + */ + public DNBAddress getDomesticUltimateAddress() { + return domesticUltimateAddress; + } + + /** + * Sets the value of the domesticUltimateAddress property. + * + * @param value + * allowed object is + * {@link DNBAddress } + * + */ + public void setDomesticUltimateAddress(DNBAddress value) { + this.domesticUltimateAddress = value; + } + + /** + * Gets the value of the globalUltimateIndication property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isGlobalUltimateIndication() { + return globalUltimateIndication; + } + + /** + * Sets the value of the globalUltimateIndication property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setGlobalUltimateIndication(Boolean value) { + this.globalUltimateIndication = value; + } + + /** + * Gets the value of the globalUltimateDuns property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGlobalUltimateDuns() { + return globalUltimateDuns; + } + + /** + * Sets the value of the globalUltimateDuns property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGlobalUltimateDuns(String value) { + this.globalUltimateDuns = value; + } + + /** + * Gets the value of the globalUltimateName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGlobalUltimateName() { + return globalUltimateName; + } + + /** + * Sets the value of the globalUltimateName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGlobalUltimateName(String value) { + this.globalUltimateName = value; + } + + /** + * Gets the value of the globalUltimateAddress property. + * + * @return + * possible object is + * {@link DNBAddress } + * + */ + public DNBAddress getGlobalUltimateAddress() { + return globalUltimateAddress; + } + + /** + * Sets the value of the globalUltimateAddress property. + * + * @param value + * allowed object is + * {@link DNBAddress } + * + */ + public void setGlobalUltimateAddress(DNBAddress value) { + this.globalUltimateAddress = value; + } + + /** + * Gets the value of the headquartersDuns property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHeadquartersDuns() { + return headquartersDuns; + } + + /** + * Sets the value of the headquartersDuns property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHeadquartersDuns(String value) { + this.headquartersDuns = value; + } + + /** + * Gets the value of the headquartersName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHeadquartersName() { + return headquartersName; + } + + /** + * Sets the value of the headquartersName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHeadquartersName(String value) { + this.headquartersName = value; + } + + /** + * Gets the value of the headquartersAddress property. + * + * @return + * possible object is + * {@link DNBAddress } + * + */ + public DNBAddress getHeadquartersAddress() { + return headquartersAddress; + } + + /** + * Sets the value of the headquartersAddress property. + * + * @param value + * allowed object is + * {@link DNBAddress } + * + */ + public void setHeadquartersAddress(DNBAddress value) { + this.headquartersAddress = value; + } + + /** + * Gets the value of the familyMemberCount property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getFamilyMemberCount() { + return familyMemberCount; + } + + /** + * Sets the value of the familyMemberCount property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setFamilyMemberCount(Integer value) { + this.familyMemberCount = value; + } + + /** + * Gets the value of the linkageReportDate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLinkageReportDate() { + return linkageReportDate; + } + + /** + * Sets the value of the linkageReportDate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLinkageReportDate(String value) { + this.linkageReportDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusLinkageResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusLinkageResult.java new file mode 100644 index 0000000..f53800b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusLinkageResult.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBMarketingPlusLinkageResult complex type. + * + *

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

+ * <complexType name="DNBMarketingPlusLinkageResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="marketing" type="{http://www.webservices.nl/soap/}DNBMarketing"/>
+ *         <element name="marketing_plus" type="{http://www.webservices.nl/soap/}DNBMarketingPlus"/>
+ *         <element name="marketing_plus_linkage" type="{http://www.webservices.nl/soap/}DNBMarketingPlusLinkage"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBMarketingPlusLinkageResult", propOrder = { + +}) +public class DNBMarketingPlusLinkageResult { + + @XmlElement(required = true) + protected DNBMarketing marketing; + @XmlElement(name = "marketing_plus", required = true) + protected DNBMarketingPlus marketingPlus; + @XmlElement(name = "marketing_plus_linkage", required = true) + protected DNBMarketingPlusLinkage marketingPlusLinkage; + + /** + * Gets the value of the marketing property. + * + * @return + * possible object is + * {@link DNBMarketing } + * + */ + public DNBMarketing getMarketing() { + return marketing; + } + + /** + * Sets the value of the marketing property. + * + * @param value + * allowed object is + * {@link DNBMarketing } + * + */ + public void setMarketing(DNBMarketing value) { + this.marketing = value; + } + + /** + * Gets the value of the marketingPlus property. + * + * @return + * possible object is + * {@link DNBMarketingPlus } + * + */ + public DNBMarketingPlus getMarketingPlus() { + return marketingPlus; + } + + /** + * Sets the value of the marketingPlus property. + * + * @param value + * allowed object is + * {@link DNBMarketingPlus } + * + */ + public void setMarketingPlus(DNBMarketingPlus value) { + this.marketingPlus = value; + } + + /** + * Gets the value of the marketingPlusLinkage property. + * + * @return + * possible object is + * {@link DNBMarketingPlusLinkage } + * + */ + public DNBMarketingPlusLinkage getMarketingPlusLinkage() { + return marketingPlusLinkage; + } + + /** + * Sets the value of the marketingPlusLinkage property. + * + * @param value + * allowed object is + * {@link DNBMarketingPlusLinkage } + * + */ + public void setMarketingPlusLinkage(DNBMarketingPlusLinkage value) { + this.marketingPlusLinkage = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusResult.java new file mode 100644 index 0000000..7244f6f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBMarketingPlusResult complex type. + * + *

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

+ * <complexType name="DNBMarketingPlusResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="marketing" type="{http://www.webservices.nl/soap/}DNBMarketing"/>
+ *         <element name="marketing_plus" type="{http://www.webservices.nl/soap/}DNBMarketingPlus"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBMarketingPlusResult", propOrder = { + +}) +public class DNBMarketingPlusResult { + + @XmlElement(required = true) + protected DNBMarketing marketing; + @XmlElement(name = "marketing_plus", required = true) + protected DNBMarketingPlus marketingPlus; + + /** + * Gets the value of the marketing property. + * + * @return + * possible object is + * {@link DNBMarketing } + * + */ + public DNBMarketing getMarketing() { + return marketing; + } + + /** + * Sets the value of the marketing property. + * + * @param value + * allowed object is + * {@link DNBMarketing } + * + */ + public void setMarketing(DNBMarketing value) { + this.marketing = value; + } + + /** + * Gets the value of the marketingPlus property. + * + * @return + * possible object is + * {@link DNBMarketingPlus } + * + */ + public DNBMarketingPlus getMarketingPlus() { + return marketingPlus; + } + + /** + * Sets the value of the marketingPlus property. + * + * @param value + * allowed object is + * {@link DNBMarketingPlus } + * + */ + public void setMarketingPlus(DNBMarketingPlus value) { + this.marketingPlus = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMonetaryAmount.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMonetaryAmount.java new file mode 100644 index 0000000..161482b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMonetaryAmount.java @@ -0,0 +1,173 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBMonetaryAmount complex type. + * + *

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

+ * <complexType name="DNBMonetaryAmount">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="value_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="estimated" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="consolidated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBMonetaryAmount", propOrder = { + +}) +public class DNBMonetaryAmount { + + protected Integer value; + @XmlElement(name = "value_text") + protected String valueText; + protected Integer estimated; + protected Boolean consolidated; + protected String currency; + + /** + * Gets the value of the value property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setValue(Integer value) { + this.value = value; + } + + /** + * Gets the value of the valueText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValueText() { + return valueText; + } + + /** + * Sets the value of the valueText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValueText(String value) { + this.valueText = value; + } + + /** + * Gets the value of the estimated property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getEstimated() { + return estimated; + } + + /** + * Sets the value of the estimated property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setEstimated(Integer value) { + this.estimated = value; + } + + /** + * Gets the value of the consolidated property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isConsolidated() { + return consolidated; + } + + /** + * Sets the value of the consolidated property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setConsolidated(Boolean value) { + this.consolidated = value; + } + + /** + * Gets the value of the currency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCurrency() { + return currency; + } + + /** + * Sets the value of the currency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCurrency(String value) { + this.currency = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBQuickCheck.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBQuickCheck.java new file mode 100644 index 0000000..8f392f3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBQuickCheck.java @@ -0,0 +1,1712 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBQuickCheck complex type. + * + *

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

+ * <complexType name="DNBQuickCheck">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="duns" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="dnb_key" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="enquiry_duns" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="business_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="business_number_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="business_number_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="subregion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country_calling_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ceo_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ceo_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="principal_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="principal_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="statement_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="debtor_inpossession" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="criminal_proceedings" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="suit_judgement" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="financial_embarrassment" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="financial_legal_events" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="operational_events" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="other_events" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="disaster" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="secured_filings" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="out_of_business" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="history_indicator" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="history_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="income_statement_date" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="income_statement_date_start" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="income_statement_date_end" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="financial_statement_date" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="incorporation_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="start_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="current_control_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="local_activity_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="local_activity_code_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="local_activity_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="sic_activity_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sic_activity_description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sic_version" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_form" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_form_description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="paydex_norm" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="paydex_score" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="dnb_rating" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="maximum_credit" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="maximum_credit_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="intangible_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="net_worth" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="tangible_net_worth" type="{http://www.webservices.nl/soap/}DNBMonetaryAmount" minOccurs="0"/>
+ *         <element name="sales" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="annual_sales" type="{http://www.webservices.nl/soap/}DNBMonetaryAmount" minOccurs="0"/>
+ *         <element name="employees_primary" type="{http://www.webservices.nl/soap/}DNBEmployeeCount" minOccurs="0"/>
+ *         <element name="employees_total" type="{http://www.webservices.nl/soap/}DNBEmployeeCount" minOccurs="0"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBQuickCheck", propOrder = { + +}) +public class DNBQuickCheck { + + @XmlElement(required = true) + protected String duns; + @XmlElement(name = "dnb_key", required = true) + protected String dnbKey; + @XmlElement(name = "enquiry_duns", required = true) + protected String enquiryDuns; + @XmlElement(name = "business_number") + protected String businessNumber; + @XmlElement(name = "business_number_type") + protected String businessNumberType; + @XmlElement(name = "business_number_description") + protected String businessNumberDescription; + @XmlElement(name = "trade_name", required = true) + protected String tradeName; + @XmlElement(required = true) + protected StringArray address; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String city; + protected String region; + protected String subregion; + @XmlElement(name = "country_calling_code", required = true) + protected String countryCallingCode; + @XmlElement(name = "phone_number") + protected String phoneNumber; + @XmlElement(name = "fax_number") + protected String faxNumber; + @XmlElement(required = true) + protected String country; + @XmlElement(name = "ceo_name") + protected String ceoName; + @XmlElement(name = "ceo_title") + protected String ceoTitle; + @XmlElement(name = "principal_name") + protected String principalName; + @XmlElement(name = "principal_title") + protected String principalTitle; + @XmlElement(required = true) + protected String currency; + @XmlElement(name = "statement_currency") + protected String statementCurrency; + @XmlElement(name = "debtor_inpossession") + protected Boolean debtorInpossession; + @XmlElement(name = "criminal_proceedings") + protected Boolean criminalProceedings; + @XmlElement(name = "suit_judgement") + protected Boolean suitJudgement; + @XmlElement(name = "financial_embarrassment") + protected Boolean financialEmbarrassment; + @XmlElement(name = "financial_legal_events") + protected Boolean financialLegalEvents; + @XmlElement(name = "operational_events") + protected Boolean operationalEvents; + @XmlElement(name = "other_events") + protected Boolean otherEvents; + protected Boolean disaster; + @XmlElement(name = "secured_filings") + protected Boolean securedFilings; + @XmlElement(name = "out_of_business") + protected Boolean outOfBusiness; + @XmlElement(name = "history_indicator") + protected String historyIndicator; + @XmlElement(name = "history_description") + protected String historyDescription; + @XmlElement(name = "income_statement_date") + protected String incomeStatementDate; + @XmlElement(name = "income_statement_date_start") + protected String incomeStatementDateStart; + @XmlElement(name = "income_statement_date_end") + protected String incomeStatementDateEnd; + @XmlElement(name = "financial_statement_date") + protected String financialStatementDate; + @XmlElement(name = "incorporation_year") + protected Integer incorporationYear; + @XmlElement(name = "start_year") + protected Integer startYear; + @XmlElement(name = "current_control_year") + protected Integer currentControlYear; + @XmlElement(name = "local_activity_code") + protected String localActivityCode; + @XmlElement(name = "local_activity_code_type") + protected String localActivityCodeType; + @XmlElement(name = "local_activity_description") + protected String localActivityDescription; + @XmlElement(name = "sic_activity_code", required = true) + protected String sicActivityCode; + @XmlElement(name = "sic_activity_description", required = true) + protected String sicActivityDescription; + @XmlElement(name = "sic_version", required = true) + protected String sicVersion; + @XmlElement(name = "legal_form", required = true) + protected String legalForm; + @XmlElement(name = "legal_form_description", required = true) + protected String legalFormDescription; + @XmlElement(name = "paydex_norm") + protected Integer paydexNorm; + @XmlElement(name = "paydex_score") + protected Integer paydexScore; + @XmlElement(name = "dnb_rating", required = true) + protected String dnbRating; + @XmlElement(name = "maximum_credit") + protected Integer maximumCredit; + @XmlElement(name = "maximum_credit_currency") + protected String maximumCreditCurrency; + @XmlElement(name = "intangible_assets") + protected Integer intangibleAssets; + @XmlElement(name = "net_worth") + protected Integer netWorth; + @XmlElement(name = "tangible_net_worth") + protected DNBMonetaryAmount tangibleNetWorth; + protected Integer sales; + @XmlElement(name = "annual_sales") + protected DNBMonetaryAmount annualSales; + @XmlElement(name = "employees_primary") + protected DNBEmployeeCount employeesPrimary; + @XmlElement(name = "employees_total") + protected DNBEmployeeCount employeesTotal; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + + /** + * Gets the value of the duns property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDuns() { + return duns; + } + + /** + * Sets the value of the duns property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDuns(String value) { + this.duns = value; + } + + /** + * Gets the value of the dnbKey property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDnbKey() { + return dnbKey; + } + + /** + * Sets the value of the dnbKey property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDnbKey(String value) { + this.dnbKey = value; + } + + /** + * Gets the value of the enquiryDuns property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnquiryDuns() { + return enquiryDuns; + } + + /** + * Sets the value of the enquiryDuns property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnquiryDuns(String value) { + this.enquiryDuns = value; + } + + /** + * Gets the value of the businessNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBusinessNumber() { + return businessNumber; + } + + /** + * Sets the value of the businessNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBusinessNumber(String value) { + this.businessNumber = value; + } + + /** + * Gets the value of the businessNumberType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBusinessNumberType() { + return businessNumberType; + } + + /** + * Sets the value of the businessNumberType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBusinessNumberType(String value) { + this.businessNumberType = value; + } + + /** + * Gets the value of the businessNumberDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBusinessNumberDescription() { + return businessNumberDescription; + } + + /** + * Sets the value of the businessNumberDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBusinessNumberDescription(String value) { + this.businessNumberDescription = value; + } + + /** + * Gets the value of the tradeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName() { + return tradeName; + } + + /** + * Sets the value of the tradeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName(String value) { + this.tradeName = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setAddress(StringArray value) { + this.address = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the region property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegion() { + return region; + } + + /** + * Sets the value of the region property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegion(String value) { + this.region = value; + } + + /** + * Gets the value of the subregion property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubregion() { + return subregion; + } + + /** + * Sets the value of the subregion property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubregion(String value) { + this.subregion = value; + } + + /** + * Gets the value of the countryCallingCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryCallingCode() { + return countryCallingCode; + } + + /** + * Sets the value of the countryCallingCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryCallingCode(String value) { + this.countryCallingCode = value; + } + + /** + * Gets the value of the phoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPhoneNumber() { + return phoneNumber; + } + + /** + * Sets the value of the phoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPhoneNumber(String value) { + this.phoneNumber = value; + } + + /** + * Gets the value of the faxNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFaxNumber() { + return faxNumber; + } + + /** + * Sets the value of the faxNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFaxNumber(String value) { + this.faxNumber = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the ceoName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCeoName() { + return ceoName; + } + + /** + * Sets the value of the ceoName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCeoName(String value) { + this.ceoName = value; + } + + /** + * Gets the value of the ceoTitle property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCeoTitle() { + return ceoTitle; + } + + /** + * Sets the value of the ceoTitle property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCeoTitle(String value) { + this.ceoTitle = value; + } + + /** + * Gets the value of the principalName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrincipalName() { + return principalName; + } + + /** + * Sets the value of the principalName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrincipalName(String value) { + this.principalName = value; + } + + /** + * Gets the value of the principalTitle property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrincipalTitle() { + return principalTitle; + } + + /** + * Sets the value of the principalTitle property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrincipalTitle(String value) { + this.principalTitle = value; + } + + /** + * Gets the value of the currency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCurrency() { + return currency; + } + + /** + * Sets the value of the currency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCurrency(String value) { + this.currency = value; + } + + /** + * Gets the value of the statementCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatementCurrency() { + return statementCurrency; + } + + /** + * Sets the value of the statementCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatementCurrency(String value) { + this.statementCurrency = value; + } + + /** + * Gets the value of the debtorInpossession property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isDebtorInpossession() { + return debtorInpossession; + } + + /** + * Sets the value of the debtorInpossession property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setDebtorInpossession(Boolean value) { + this.debtorInpossession = value; + } + + /** + * Gets the value of the criminalProceedings property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isCriminalProceedings() { + return criminalProceedings; + } + + /** + * Sets the value of the criminalProceedings property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setCriminalProceedings(Boolean value) { + this.criminalProceedings = value; + } + + /** + * Gets the value of the suitJudgement property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isSuitJudgement() { + return suitJudgement; + } + + /** + * Sets the value of the suitJudgement property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setSuitJudgement(Boolean value) { + this.suitJudgement = value; + } + + /** + * Gets the value of the financialEmbarrassment property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isFinancialEmbarrassment() { + return financialEmbarrassment; + } + + /** + * Sets the value of the financialEmbarrassment property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setFinancialEmbarrassment(Boolean value) { + this.financialEmbarrassment = value; + } + + /** + * Gets the value of the financialLegalEvents property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isFinancialLegalEvents() { + return financialLegalEvents; + } + + /** + * Sets the value of the financialLegalEvents property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setFinancialLegalEvents(Boolean value) { + this.financialLegalEvents = value; + } + + /** + * Gets the value of the operationalEvents property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isOperationalEvents() { + return operationalEvents; + } + + /** + * Sets the value of the operationalEvents property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setOperationalEvents(Boolean value) { + this.operationalEvents = value; + } + + /** + * Gets the value of the otherEvents property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isOtherEvents() { + return otherEvents; + } + + /** + * Sets the value of the otherEvents property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setOtherEvents(Boolean value) { + this.otherEvents = value; + } + + /** + * Gets the value of the disaster property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isDisaster() { + return disaster; + } + + /** + * Sets the value of the disaster property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setDisaster(Boolean value) { + this.disaster = value; + } + + /** + * Gets the value of the securedFilings property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isSecuredFilings() { + return securedFilings; + } + + /** + * Sets the value of the securedFilings property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setSecuredFilings(Boolean value) { + this.securedFilings = value; + } + + /** + * Gets the value of the outOfBusiness property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isOutOfBusiness() { + return outOfBusiness; + } + + /** + * Sets the value of the outOfBusiness property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setOutOfBusiness(Boolean value) { + this.outOfBusiness = value; + } + + /** + * Gets the value of the historyIndicator property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHistoryIndicator() { + return historyIndicator; + } + + /** + * Sets the value of the historyIndicator property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHistoryIndicator(String value) { + this.historyIndicator = value; + } + + /** + * Gets the value of the historyDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHistoryDescription() { + return historyDescription; + } + + /** + * Sets the value of the historyDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHistoryDescription(String value) { + this.historyDescription = value; + } + + /** + * Gets the value of the incomeStatementDate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIncomeStatementDate() { + return incomeStatementDate; + } + + /** + * Sets the value of the incomeStatementDate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIncomeStatementDate(String value) { + this.incomeStatementDate = value; + } + + /** + * Gets the value of the incomeStatementDateStart property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIncomeStatementDateStart() { + return incomeStatementDateStart; + } + + /** + * Sets the value of the incomeStatementDateStart property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIncomeStatementDateStart(String value) { + this.incomeStatementDateStart = value; + } + + /** + * Gets the value of the incomeStatementDateEnd property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIncomeStatementDateEnd() { + return incomeStatementDateEnd; + } + + /** + * Sets the value of the incomeStatementDateEnd property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIncomeStatementDateEnd(String value) { + this.incomeStatementDateEnd = value; + } + + /** + * Gets the value of the financialStatementDate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFinancialStatementDate() { + return financialStatementDate; + } + + /** + * Sets the value of the financialStatementDate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFinancialStatementDate(String value) { + this.financialStatementDate = value; + } + + /** + * Gets the value of the incorporationYear property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getIncorporationYear() { + return incorporationYear; + } + + /** + * Sets the value of the incorporationYear property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setIncorporationYear(Integer value) { + this.incorporationYear = value; + } + + /** + * Gets the value of the startYear property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getStartYear() { + return startYear; + } + + /** + * Sets the value of the startYear property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setStartYear(Integer value) { + this.startYear = value; + } + + /** + * Gets the value of the currentControlYear property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCurrentControlYear() { + return currentControlYear; + } + + /** + * Sets the value of the currentControlYear property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCurrentControlYear(Integer value) { + this.currentControlYear = value; + } + + /** + * Gets the value of the localActivityCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLocalActivityCode() { + return localActivityCode; + } + + /** + * Sets the value of the localActivityCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLocalActivityCode(String value) { + this.localActivityCode = value; + } + + /** + * Gets the value of the localActivityCodeType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLocalActivityCodeType() { + return localActivityCodeType; + } + + /** + * Sets the value of the localActivityCodeType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLocalActivityCodeType(String value) { + this.localActivityCodeType = value; + } + + /** + * Gets the value of the localActivityDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLocalActivityDescription() { + return localActivityDescription; + } + + /** + * Sets the value of the localActivityDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLocalActivityDescription(String value) { + this.localActivityDescription = value; + } + + /** + * Gets the value of the sicActivityCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSicActivityCode() { + return sicActivityCode; + } + + /** + * Sets the value of the sicActivityCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSicActivityCode(String value) { + this.sicActivityCode = value; + } + + /** + * Gets the value of the sicActivityDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSicActivityDescription() { + return sicActivityDescription; + } + + /** + * Sets the value of the sicActivityDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSicActivityDescription(String value) { + this.sicActivityDescription = value; + } + + /** + * Gets the value of the sicVersion property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSicVersion() { + return sicVersion; + } + + /** + * Sets the value of the sicVersion property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSicVersion(String value) { + this.sicVersion = value; + } + + /** + * Gets the value of the legalForm property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalForm() { + return legalForm; + } + + /** + * Sets the value of the legalForm property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalForm(String value) { + this.legalForm = value; + } + + /** + * Gets the value of the legalFormDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormDescription() { + return legalFormDescription; + } + + /** + * Sets the value of the legalFormDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormDescription(String value) { + this.legalFormDescription = value; + } + + /** + * Gets the value of the paydexNorm property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPaydexNorm() { + return paydexNorm; + } + + /** + * Sets the value of the paydexNorm property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPaydexNorm(Integer value) { + this.paydexNorm = value; + } + + /** + * Gets the value of the paydexScore property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPaydexScore() { + return paydexScore; + } + + /** + * Sets the value of the paydexScore property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPaydexScore(Integer value) { + this.paydexScore = value; + } + + /** + * Gets the value of the dnbRating property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDnbRating() { + return dnbRating; + } + + /** + * Sets the value of the dnbRating property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDnbRating(String value) { + this.dnbRating = value; + } + + /** + * Gets the value of the maximumCredit property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMaximumCredit() { + return maximumCredit; + } + + /** + * Sets the value of the maximumCredit property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMaximumCredit(Integer value) { + this.maximumCredit = value; + } + + /** + * Gets the value of the maximumCreditCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMaximumCreditCurrency() { + return maximumCreditCurrency; + } + + /** + * Sets the value of the maximumCreditCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMaximumCreditCurrency(String value) { + this.maximumCreditCurrency = value; + } + + /** + * Gets the value of the intangibleAssets property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getIntangibleAssets() { + return intangibleAssets; + } + + /** + * Sets the value of the intangibleAssets property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setIntangibleAssets(Integer value) { + this.intangibleAssets = value; + } + + /** + * Gets the value of the netWorth property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getNetWorth() { + return netWorth; + } + + /** + * Sets the value of the netWorth property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setNetWorth(Integer value) { + this.netWorth = value; + } + + /** + * Gets the value of the tangibleNetWorth property. + * + * @return + * possible object is + * {@link DNBMonetaryAmount } + * + */ + public DNBMonetaryAmount getTangibleNetWorth() { + return tangibleNetWorth; + } + + /** + * Sets the value of the tangibleNetWorth property. + * + * @param value + * allowed object is + * {@link DNBMonetaryAmount } + * + */ + public void setTangibleNetWorth(DNBMonetaryAmount value) { + this.tangibleNetWorth = value; + } + + /** + * Gets the value of the sales property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getSales() { + return sales; + } + + /** + * Sets the value of the sales property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setSales(Integer value) { + this.sales = value; + } + + /** + * Gets the value of the annualSales property. + * + * @return + * possible object is + * {@link DNBMonetaryAmount } + * + */ + public DNBMonetaryAmount getAnnualSales() { + return annualSales; + } + + /** + * Sets the value of the annualSales property. + * + * @param value + * allowed object is + * {@link DNBMonetaryAmount } + * + */ + public void setAnnualSales(DNBMonetaryAmount value) { + this.annualSales = value; + } + + /** + * Gets the value of the employeesPrimary property. + * + * @return + * possible object is + * {@link DNBEmployeeCount } + * + */ + public DNBEmployeeCount getEmployeesPrimary() { + return employeesPrimary; + } + + /** + * Sets the value of the employeesPrimary property. + * + * @param value + * allowed object is + * {@link DNBEmployeeCount } + * + */ + public void setEmployeesPrimary(DNBEmployeeCount value) { + this.employeesPrimary = value; + } + + /** + * Gets the value of the employeesTotal property. + * + * @return + * possible object is + * {@link DNBEmployeeCount } + * + */ + public DNBEmployeeCount getEmployeesTotal() { + return employeesTotal; + } + + /** + * Sets the value of the employeesTotal property. + * + * @param value + * allowed object is + * {@link DNBEmployeeCount } + * + */ + public void setEmployeesTotal(DNBEmployeeCount value) { + this.employeesTotal = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBRelatedBusiness.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBRelatedBusiness.java new file mode 100644 index 0000000..8be89b6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBRelatedBusiness.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBRelatedBusiness complex type. + * + *

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

+ * <complexType name="DNBRelatedBusiness">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="duns" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="dnb_key" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBRelatedBusiness", propOrder = { + +}) +public class DNBRelatedBusiness { + + @XmlElement(required = true) + protected String duns; + @XmlElement(name = "dnb_key", required = true) + protected String dnbKey; + @XmlElement(name = "trade_name", required = true) + protected String tradeName; + @XmlElement(required = true) + protected String country; + + /** + * Gets the value of the duns property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDuns() { + return duns; + } + + /** + * Sets the value of the duns property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDuns(String value) { + this.duns = value; + } + + /** + * Gets the value of the dnbKey property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDnbKey() { + return dnbKey; + } + + /** + * Sets the value of the dnbKey property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDnbKey(String value) { + this.dnbKey = value; + } + + /** + * Gets the value of the tradeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName() { + return tradeName; + } + + /** + * Sets the value of the tradeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName(String value) { + this.tradeName = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBSICCode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBSICCode.java new file mode 100644 index 0000000..f196588 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBSICCode.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBSICCode complex type. + * + *

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

+ * <complexType name="DNBSICCode">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBSICCode", propOrder = { + +}) +public class DNBSICCode { + + @XmlElement(required = true) + protected String code; + @XmlElement(required = true) + protected String description; + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCode(String value) { + this.code = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBSICCodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBSICCodeArray.java new file mode 100644 index 0000000..4ef29c9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBSICCodeArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBSICCodeArray complex type. + * + *

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

+ * <complexType name="DNBSICCodeArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DNBSICCode" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBSICCodeArray", propOrder = { + "item" +}) +public class DNBSICCodeArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DNBSICCode } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBScoreGroup.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBScoreGroup.java new file mode 100644 index 0000000..a47e09b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBScoreGroup.java @@ -0,0 +1,365 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBScoreGroup complex type. + * + *

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

+ * <complexType name="DNBScoreGroup">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="score" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="score_commentaries" type="{http://www.webservices.nl/soap/}DNBCommentaryArray"/>
+ *         <element name="score_class" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="national_percentile" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="score_override_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="incidence_of_default" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="score_date" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="industry_norm" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="industry_incidence_of_default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="industry_percentile" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="unnormalized_score" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="algorithm_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBScoreGroup", propOrder = { + +}) +public class DNBScoreGroup { + + protected Integer score; + @XmlElement(name = "score_commentaries", required = true) + protected DNBCommentaryArray scoreCommentaries; + @XmlElement(name = "score_class") + protected Boolean scoreClass; + @XmlElement(name = "national_percentile") + protected Integer nationalPercentile; + @XmlElement(name = "score_override_code") + protected String scoreOverrideCode; + @XmlElement(name = "incidence_of_default") + protected Integer incidenceOfDefault; + @XmlElement(name = "score_date") + protected String scoreDate; + @XmlElement(name = "industry_norm") + protected String industryNorm; + @XmlElement(name = "industry_incidence_of_default") + protected String industryIncidenceOfDefault; + @XmlElement(name = "industry_percentile") + protected Integer industryPercentile; + @XmlElement(name = "unnormalized_score") + protected String unnormalizedScore; + @XmlElement(name = "algorithm_id") + protected String algorithmId; + + /** + * Gets the value of the score property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getScore() { + return score; + } + + /** + * Sets the value of the score property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setScore(Integer value) { + this.score = value; + } + + /** + * Gets the value of the scoreCommentaries property. + * + * @return + * possible object is + * {@link DNBCommentaryArray } + * + */ + public DNBCommentaryArray getScoreCommentaries() { + return scoreCommentaries; + } + + /** + * Sets the value of the scoreCommentaries property. + * + * @param value + * allowed object is + * {@link DNBCommentaryArray } + * + */ + public void setScoreCommentaries(DNBCommentaryArray value) { + this.scoreCommentaries = value; + } + + /** + * Gets the value of the scoreClass property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isScoreClass() { + return scoreClass; + } + + /** + * Sets the value of the scoreClass property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setScoreClass(Boolean value) { + this.scoreClass = value; + } + + /** + * Gets the value of the nationalPercentile property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getNationalPercentile() { + return nationalPercentile; + } + + /** + * Sets the value of the nationalPercentile property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setNationalPercentile(Integer value) { + this.nationalPercentile = value; + } + + /** + * Gets the value of the scoreOverrideCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getScoreOverrideCode() { + return scoreOverrideCode; + } + + /** + * Sets the value of the scoreOverrideCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setScoreOverrideCode(String value) { + this.scoreOverrideCode = value; + } + + /** + * Gets the value of the incidenceOfDefault property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getIncidenceOfDefault() { + return incidenceOfDefault; + } + + /** + * Sets the value of the incidenceOfDefault property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setIncidenceOfDefault(Integer value) { + this.incidenceOfDefault = value; + } + + /** + * Gets the value of the scoreDate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getScoreDate() { + return scoreDate; + } + + /** + * Sets the value of the scoreDate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setScoreDate(String value) { + this.scoreDate = value; + } + + /** + * Gets the value of the industryNorm property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIndustryNorm() { + return industryNorm; + } + + /** + * Sets the value of the industryNorm property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIndustryNorm(String value) { + this.industryNorm = value; + } + + /** + * Gets the value of the industryIncidenceOfDefault property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIndustryIncidenceOfDefault() { + return industryIncidenceOfDefault; + } + + /** + * Sets the value of the industryIncidenceOfDefault property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIndustryIncidenceOfDefault(String value) { + this.industryIncidenceOfDefault = value; + } + + /** + * Gets the value of the industryPercentile property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getIndustryPercentile() { + return industryPercentile; + } + + /** + * Sets the value of the industryPercentile property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setIndustryPercentile(Integer value) { + this.industryPercentile = value; + } + + /** + * Gets the value of the unnormalizedScore property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnnormalizedScore() { + return unnormalizedScore; + } + + /** + * Sets the value of the unnormalizedScore property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnnormalizedScore(String value) { + this.unnormalizedScore = value; + } + + /** + * Gets the value of the algorithmId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAlgorithmId() { + return algorithmId; + } + + /** + * Sets the value of the algorithmId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAlgorithmId(String value) { + this.algorithmId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBScoreGroupArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBScoreGroupArray.java new file mode 100644 index 0000000..a940a0b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBScoreGroupArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DNBScoreGroupArray complex type. + * + *

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

+ * <complexType name="DNBScoreGroupArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DNBScoreGroup" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DNBScoreGroupArray", propOrder = { + "item" +}) +public class DNBScoreGroupArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DNBScoreGroup } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/District.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/District.java new file mode 100644 index 0000000..b9b759b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/District.java @@ -0,0 +1,132 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for District complex type. + * + *

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

+ * <complexType name="District">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeenteid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="provinciecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "District", propOrder = { + +}) +public class District { + + protected int gemeenteid; + @XmlElement(required = true) + protected String gemeentenaam; + protected int gemeentecode; + @XmlElement(required = true) + protected String provinciecode; + + /** + * Gets the value of the gemeenteid property. + * + */ + public int getGemeenteid() { + return gemeenteid; + } + + /** + * Sets the value of the gemeenteid property. + * + */ + public void setGemeenteid(int value) { + this.gemeenteid = value; + } + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the gemeentecode property. + * + */ + public int getGemeentecode() { + return gemeentecode; + } + + /** + * Sets the value of the gemeentecode property. + * + */ + public void setGemeentecode(int value) { + this.gemeentecode = value; + } + + /** + * Gets the value of the provinciecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvinciecode() { + return provinciecode; + } + + /** + * Sets the value of the provinciecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvinciecode(String value) { + this.provinciecode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DistrictArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DistrictArray.java new file mode 100644 index 0000000..031e7c2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DistrictArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DistrictArray complex type. + * + *

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

+ * <complexType name="DistrictArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}District" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DistrictArray", propOrder = { + "item" +}) +public class DistrictArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link District } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DistrictPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DistrictPagedResult.java new file mode 100644 index 0000000..901289a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DistrictPagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DistrictPagedResult complex type. + * + *

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

+ * <complexType name="DistrictPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}DistrictArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DistrictPagedResult", propOrder = { + +}) +public class DistrictPagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected DistrictArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link DistrictArray } + * + */ + public DistrictArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link DistrictArray } + * + */ + public void setResults(DistrictArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbBusinessVerificationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbBusinessVerificationRequestType.java new file mode 100644 index 0000000..befef79 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbBusinessVerificationRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbBusinessVerificationRequestType complex type. + * + *

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

+ * <complexType name="dnbBusinessVerificationRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbBusinessVerificationRequestType", propOrder = { + +}) +public class DnbBusinessVerificationRequestType { + + @XmlElement(name = "company_id", required = true) + protected String companyId; + @XmlElement(name = "company_id_type", required = true) + protected String companyIdType; + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + + /** + * Gets the value of the companyIdType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyIdType() { + return companyIdType; + } + + /** + * Sets the value of the companyIdType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyIdType(String value) { + this.companyIdType = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbBusinessVerificationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbBusinessVerificationResponseType.java new file mode 100644 index 0000000..96fafea --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbBusinessVerificationResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbBusinessVerificationResponseType complex type. + * + *

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

+ * <complexType name="dnbBusinessVerificationResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DNBBusinessVerification"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbBusinessVerificationResponseType", propOrder = { + +}) +public class DnbBusinessVerificationResponseType { + + @XmlElement(required = true) + protected DNBBusinessVerification out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DNBBusinessVerification } + * + */ + public DNBBusinessVerification getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DNBBusinessVerification } + * + */ + public void setOut(DNBBusinessVerification value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbEnterpriseManagementRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbEnterpriseManagementRequestType.java new file mode 100644 index 0000000..962bc0c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbEnterpriseManagementRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbEnterpriseManagementRequestType complex type. + * + *

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

+ * <complexType name="dnbEnterpriseManagementRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbEnterpriseManagementRequestType", propOrder = { + +}) +public class DnbEnterpriseManagementRequestType { + + @XmlElement(name = "company_id", required = true) + protected String companyId; + @XmlElement(name = "company_id_type", required = true) + protected String companyIdType; + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + + /** + * Gets the value of the companyIdType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyIdType() { + return companyIdType; + } + + /** + * Sets the value of the companyIdType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyIdType(String value) { + this.companyIdType = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbEnterpriseManagementResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbEnterpriseManagementResponseType.java new file mode 100644 index 0000000..fe2181b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbEnterpriseManagementResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbEnterpriseManagementResponseType complex type. + * + *

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

+ * <complexType name="dnbEnterpriseManagementResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DNBEnterpriseManagement"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbEnterpriseManagementResponseType", propOrder = { + +}) +public class DnbEnterpriseManagementResponseType { + + @XmlElement(required = true) + protected DNBEnterpriseManagement out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DNBEnterpriseManagement } + * + */ + public DNBEnterpriseManagement getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DNBEnterpriseManagement } + * + */ + public void setOut(DNBEnterpriseManagement value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbGetReferenceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbGetReferenceRequestType.java new file mode 100644 index 0000000..bfa3313 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbGetReferenceRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbGetReferenceRequestType complex type. + * + *

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

+ * <complexType name="dnbGetReferenceRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbGetReferenceRequestType", propOrder = { + +}) +public class DnbGetReferenceRequestType { + + @XmlElement(name = "company_id", required = true) + protected String companyId; + @XmlElement(name = "company_id_type", required = true) + protected String companyIdType; + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + + /** + * Gets the value of the companyIdType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyIdType() { + return companyIdType; + } + + /** + * Sets the value of the companyIdType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyIdType(String value) { + this.companyIdType = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbGetReferenceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbGetReferenceResponseType.java new file mode 100644 index 0000000..517442c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbGetReferenceResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbGetReferenceResponseType complex type. + * + *

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

+ * <complexType name="dnbGetReferenceResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DNBBusinessReference"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbGetReferenceResponseType", propOrder = { + +}) +public class DnbGetReferenceResponseType { + + @XmlElement(required = true) + protected DNBBusinessReference out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DNBBusinessReference } + * + */ + public DNBBusinessReference getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DNBBusinessReference } + * + */ + public void setOut(DNBBusinessReference value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbQuickCheckRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbQuickCheckRequestType.java new file mode 100644 index 0000000..999ea1e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbQuickCheckRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbQuickCheckRequestType complex type. + * + *

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

+ * <complexType name="dnbQuickCheckRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbQuickCheckRequestType", propOrder = { + +}) +public class DnbQuickCheckRequestType { + + @XmlElement(name = "company_id", required = true) + protected String companyId; + @XmlElement(name = "company_id_type", required = true) + protected String companyIdType; + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + + /** + * Gets the value of the companyIdType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyIdType() { + return companyIdType; + } + + /** + * Sets the value of the companyIdType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyIdType(String value) { + this.companyIdType = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbQuickCheckResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbQuickCheckResponseType.java new file mode 100644 index 0000000..bcf42f9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbQuickCheckResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbQuickCheckResponseType complex type. + * + *

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

+ * <complexType name="dnbQuickCheckResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DNBQuickCheck"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbQuickCheckResponseType", propOrder = { + +}) +public class DnbQuickCheckResponseType { + + @XmlElement(required = true) + protected DNBQuickCheck out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DNBQuickCheck } + * + */ + public DNBQuickCheck getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DNBQuickCheck } + * + */ + public void setOut(DNBQuickCheck value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceRequestType.java new file mode 100644 index 0000000..bce8cf4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceRequestType.java @@ -0,0 +1,249 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbSearchReferenceRequestType complex type. + * + *

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

+ * <complexType name="dnbSearchReferenceRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="housenoaddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="cityname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbSearchReferenceRequestType", propOrder = { + +}) +public class DnbSearchReferenceRequestType { + + @XmlElement(required = true) + protected String name; + @XmlElement(required = true) + protected String streetname; + @XmlElement(required = true) + protected String houseno; + @XmlElement(required = true) + protected String housenoaddition; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String cityname; + @XmlElement(required = true) + protected String country; + protected int page; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the streetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetname() { + return streetname; + } + + /** + * Sets the value of the streetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetname(String value) { + this.streetname = value; + } + + /** + * Gets the value of the houseno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseno() { + return houseno; + } + + /** + * Sets the value of the houseno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseno(String value) { + this.houseno = value; + } + + /** + * Gets the value of the housenoaddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHousenoaddition() { + return housenoaddition; + } + + /** + * Sets the value of the housenoaddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHousenoaddition(String value) { + this.housenoaddition = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the cityname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCityname() { + return cityname; + } + + /** + * Sets the value of the cityname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCityname(String value) { + this.cityname = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceResponseType.java new file mode 100644 index 0000000..fab3fe0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbSearchReferenceResponseType complex type. + * + *

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

+ * <complexType name="dnbSearchReferenceResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DNBBusinessReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbSearchReferenceResponseType", propOrder = { + +}) +public class DnbSearchReferenceResponseType { + + @XmlElement(required = true) + protected DNBBusinessReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DNBBusinessReferencePagedResult } + * + */ + public DNBBusinessReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DNBBusinessReferencePagedResult } + * + */ + public void setOut(DNBBusinessReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceV2RequestType.java new file mode 100644 index 0000000..ff3640e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceV2RequestType.java @@ -0,0 +1,276 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbSearchReferenceV2RequestType complex type. + * + *

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

+ * <complexType name="dnbSearchReferenceV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="housenoaddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="cityname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="region" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbSearchReferenceV2RequestType", propOrder = { + +}) +public class DnbSearchReferenceV2RequestType { + + @XmlElement(required = true) + protected String name; + @XmlElement(required = true) + protected String streetname; + @XmlElement(required = true) + protected String houseno; + @XmlElement(required = true) + protected String housenoaddition; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String cityname; + @XmlElement(required = true) + protected String region; + @XmlElement(required = true) + protected String country; + protected int page; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the streetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetname() { + return streetname; + } + + /** + * Sets the value of the streetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetname(String value) { + this.streetname = value; + } + + /** + * Gets the value of the houseno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseno() { + return houseno; + } + + /** + * Sets the value of the houseno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseno(String value) { + this.houseno = value; + } + + /** + * Gets the value of the housenoaddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHousenoaddition() { + return housenoaddition; + } + + /** + * Sets the value of the housenoaddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHousenoaddition(String value) { + this.housenoaddition = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the cityname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCityname() { + return cityname; + } + + /** + * Sets the value of the cityname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCityname(String value) { + this.cityname = value; + } + + /** + * Gets the value of the region property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegion() { + return region; + } + + /** + * Sets the value of the region property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegion(String value) { + this.region = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceV2ResponseType.java new file mode 100644 index 0000000..52e4175 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbSearchReferenceV2ResponseType complex type. + * + *

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

+ * <complexType name="dnbSearchReferenceV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DNBBusinessReferenceV2PagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbSearchReferenceV2ResponseType", propOrder = { + +}) +public class DnbSearchReferenceV2ResponseType { + + @XmlElement(required = true) + protected DNBBusinessReferenceV2PagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DNBBusinessReferenceV2PagedResult } + * + */ + public DNBBusinessReferenceV2PagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DNBBusinessReferenceV2PagedResult } + * + */ + public void setOut(DNBBusinessReferenceV2PagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusLinkageRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusLinkageRequestType.java new file mode 100644 index 0000000..9e4652c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusLinkageRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbWorldbaseMarketingPlusLinkageRequestType complex type. + * + *

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

+ * <complexType name="dnbWorldbaseMarketingPlusLinkageRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbWorldbaseMarketingPlusLinkageRequestType", propOrder = { + +}) +public class DnbWorldbaseMarketingPlusLinkageRequestType { + + @XmlElement(name = "company_id", required = true) + protected String companyId; + @XmlElement(name = "company_id_type", required = true) + protected String companyIdType; + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + + /** + * Gets the value of the companyIdType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyIdType() { + return companyIdType; + } + + /** + * Sets the value of the companyIdType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyIdType(String value) { + this.companyIdType = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusLinkageResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusLinkageResponseType.java new file mode 100644 index 0000000..7ead634 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusLinkageResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbWorldbaseMarketingPlusLinkageResponseType complex type. + * + *

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

+ * <complexType name="dnbWorldbaseMarketingPlusLinkageResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DNBMarketingPlusLinkageResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbWorldbaseMarketingPlusLinkageResponseType", propOrder = { + +}) +public class DnbWorldbaseMarketingPlusLinkageResponseType { + + @XmlElement(required = true) + protected DNBMarketingPlusLinkageResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DNBMarketingPlusLinkageResult } + * + */ + public DNBMarketingPlusLinkageResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DNBMarketingPlusLinkageResult } + * + */ + public void setOut(DNBMarketingPlusLinkageResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusRequestType.java new file mode 100644 index 0000000..a019401 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbWorldbaseMarketingPlusRequestType complex type. + * + *

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

+ * <complexType name="dnbWorldbaseMarketingPlusRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbWorldbaseMarketingPlusRequestType", propOrder = { + +}) +public class DnbWorldbaseMarketingPlusRequestType { + + @XmlElement(name = "company_id", required = true) + protected String companyId; + @XmlElement(name = "company_id_type", required = true) + protected String companyIdType; + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + + /** + * Gets the value of the companyIdType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyIdType() { + return companyIdType; + } + + /** + * Sets the value of the companyIdType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyIdType(String value) { + this.companyIdType = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusResponseType.java new file mode 100644 index 0000000..d3315e0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbWorldbaseMarketingPlusResponseType complex type. + * + *

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

+ * <complexType name="dnbWorldbaseMarketingPlusResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DNBMarketingPlusResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbWorldbaseMarketingPlusResponseType", propOrder = { + +}) +public class DnbWorldbaseMarketingPlusResponseType { + + @XmlElement(required = true) + protected DNBMarketingPlusResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DNBMarketingPlusResult } + * + */ + public DNBMarketingPlusResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DNBMarketingPlusResult } + * + */ + public void setOut(DNBMarketingPlusResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingRequestType.java new file mode 100644 index 0000000..9c9a804 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbWorldbaseMarketingRequestType complex type. + * + *

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

+ * <complexType name="dnbWorldbaseMarketingRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbWorldbaseMarketingRequestType", propOrder = { + +}) +public class DnbWorldbaseMarketingRequestType { + + @XmlElement(name = "company_id", required = true) + protected String companyId; + @XmlElement(name = "company_id_type", required = true) + protected String companyIdType; + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + + /** + * Gets the value of the companyIdType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyIdType() { + return companyIdType; + } + + /** + * Sets the value of the companyIdType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyIdType(String value) { + this.companyIdType = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingResponseType.java new file mode 100644 index 0000000..69b853f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dnbWorldbaseMarketingResponseType complex type. + * + *

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

+ * <complexType name="dnbWorldbaseMarketingResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DNBMarketing"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dnbWorldbaseMarketingResponseType", propOrder = { + +}) +public class DnbWorldbaseMarketingResponseType { + + @XmlElement(required = true) + protected DNBMarketing out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DNBMarketing } + * + */ + public DNBMarketing getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DNBMarketing } + * + */ + public void setOut(DNBMarketing value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DocumentOverzicht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DocumentOverzicht.java new file mode 100644 index 0000000..a902118 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DocumentOverzicht.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DocumentOverzicht complex type. + * + *

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

+ * <complexType name="DocumentOverzicht">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="onroerende_zaken" type="{http://www.webservices.nl/soap/}OverzichtOnroerendeZaakArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DocumentOverzicht", propOrder = { + +}) +public class DocumentOverzicht { + + @XmlElement(name = "onroerende_zaken", required = true) + protected OverzichtOnroerendeZaakArray onroerendeZaken; + + /** + * Gets the value of the onroerendeZaken property. + * + * @return + * possible object is + * {@link OverzichtOnroerendeZaakArray } + * + */ + public OverzichtOnroerendeZaakArray getOnroerendeZaken() { + return onroerendeZaken; + } + + /** + * Sets the value of the onroerendeZaken property. + * + * @param value + * allowed object is + * {@link OverzichtOnroerendeZaakArray } + * + */ + public void setOnroerendeZaken(OverzichtOnroerendeZaakArray value) { + this.onroerendeZaken = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfo.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfo.java new file mode 100644 index 0000000..f33d5ee --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfo.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DriveInfo complex type. + * + *

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

+ * <complexType name="DriveInfo">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="fastest" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="shortest" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DriveInfo", propOrder = { + +}) +public class DriveInfo { + + protected int fastest; + protected int shortest; + + /** + * Gets the value of the fastest property. + * + */ + public int getFastest() { + return fastest; + } + + /** + * Sets the value of the fastest property. + * + */ + public void setFastest(int value) { + this.fastest = value; + } + + /** + * Gets the value of the shortest property. + * + */ + public int getShortest() { + return shortest; + } + + /** + * Sets the value of the shortest property. + * + */ + public void setShortest(int value) { + this.shortest = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoDistanceLookupRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoDistanceLookupRequestType.java new file mode 100644 index 0000000..c984ef7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoDistanceLookupRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for driveInfoDistanceLookupRequestType complex type. + * + *

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

+ * <complexType name="driveInfoDistanceLookupRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nbcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="nbcodeto" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "driveInfoDistanceLookupRequestType", propOrder = { + +}) +public class DriveInfoDistanceLookupRequestType { + + @XmlElement(required = true) + protected String nbcodefrom; + @XmlElement(required = true) + protected String nbcodeto; + + /** + * Gets the value of the nbcodefrom property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcodefrom() { + return nbcodefrom; + } + + /** + * Sets the value of the nbcodefrom property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcodefrom(String value) { + this.nbcodefrom = value; + } + + /** + * Gets the value of the nbcodeto property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcodeto() { + return nbcodeto; + } + + /** + * Sets the value of the nbcodeto property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcodeto(String value) { + this.nbcodeto = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoDistanceLookupResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoDistanceLookupResponseType.java new file mode 100644 index 0000000..9b21695 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoDistanceLookupResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for driveInfoDistanceLookupResponseType complex type. + * + *

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

+ * <complexType name="driveInfoDistanceLookupResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DriveInfo"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "driveInfoDistanceLookupResponseType", propOrder = { + +}) +public class DriveInfoDistanceLookupResponseType { + + @XmlElement(required = true) + protected DriveInfo out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DriveInfo } + * + */ + public DriveInfo getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DriveInfo } + * + */ + public void setOut(DriveInfo value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoTimeLookupRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoTimeLookupRequestType.java new file mode 100644 index 0000000..606a767 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoTimeLookupRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for driveInfoTimeLookupRequestType complex type. + * + *

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

+ * <complexType name="driveInfoTimeLookupRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nbcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="nbcodeto" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "driveInfoTimeLookupRequestType", propOrder = { + +}) +public class DriveInfoTimeLookupRequestType { + + @XmlElement(required = true) + protected String nbcodefrom; + @XmlElement(required = true) + protected String nbcodeto; + + /** + * Gets the value of the nbcodefrom property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcodefrom() { + return nbcodefrom; + } + + /** + * Sets the value of the nbcodefrom property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcodefrom(String value) { + this.nbcodefrom = value; + } + + /** + * Gets the value of the nbcodeto property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcodeto() { + return nbcodeto; + } + + /** + * Sets the value of the nbcodeto property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcodeto(String value) { + this.nbcodeto = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoTimeLookupResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoTimeLookupResponseType.java new file mode 100644 index 0000000..7cc9047 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoTimeLookupResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for driveInfoTimeLookupResponseType complex type. + * + *

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

+ * <complexType name="driveInfoTimeLookupResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DriveInfo"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "driveInfoTimeLookupResponseType", propOrder = { + +}) +public class DriveInfoTimeLookupResponseType { + + @XmlElement(required = true) + protected DriveInfo out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DriveInfo } + * + */ + public DriveInfo getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DriveInfo } + * + */ + public void setOut(DriveInfo value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressPostcodeRange.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressPostcodeRange.java new file mode 100644 index 0000000..4a16c4c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressPostcodeRange.java @@ -0,0 +1,361 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchAddressPostcodeRange complex type. + * + *

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

+ * <complexType name="DutchAddressPostcodeRange">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="house_number_from" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="house_number_to" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="neighborhood_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="letter_combination" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="range_indication" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street_name_nen" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="municipality" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="municipality_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="cebuco_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="province_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchAddressPostcodeRange", propOrder = { + +}) +public class DutchAddressPostcodeRange { + + @XmlElement(name = "house_number_from") + protected int houseNumberFrom; + @XmlElement(name = "house_number_to") + protected int houseNumberTo; + @XmlElement(name = "neighborhood_code", required = true) + protected String neighborhoodCode; + @XmlElement(name = "letter_combination", required = true) + protected String letterCombination; + @XmlElement(name = "range_indication", required = true) + protected String rangeIndication; + @XmlElement(name = "street_name", required = true) + protected String streetName; + @XmlElement(name = "street_name_nen", required = true) + protected String streetNameNen; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String municipality; + @XmlElement(name = "municipality_code") + protected int municipalityCode; + @XmlElement(name = "cebuco_code") + protected int cebucoCode; + @XmlElement(required = true) + protected String province; + @XmlElement(name = "province_code", required = true) + protected String provinceCode; + + /** + * Gets the value of the houseNumberFrom property. + * + */ + public int getHouseNumberFrom() { + return houseNumberFrom; + } + + /** + * Sets the value of the houseNumberFrom property. + * + */ + public void setHouseNumberFrom(int value) { + this.houseNumberFrom = value; + } + + /** + * Gets the value of the houseNumberTo property. + * + */ + public int getHouseNumberTo() { + return houseNumberTo; + } + + /** + * Sets the value of the houseNumberTo property. + * + */ + public void setHouseNumberTo(int value) { + this.houseNumberTo = value; + } + + /** + * Gets the value of the neighborhoodCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNeighborhoodCode() { + return neighborhoodCode; + } + + /** + * Sets the value of the neighborhoodCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNeighborhoodCode(String value) { + this.neighborhoodCode = value; + } + + /** + * Gets the value of the letterCombination property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLetterCombination() { + return letterCombination; + } + + /** + * Sets the value of the letterCombination property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLetterCombination(String value) { + this.letterCombination = value; + } + + /** + * Gets the value of the rangeIndication property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRangeIndication() { + return rangeIndication; + } + + /** + * Sets the value of the rangeIndication property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRangeIndication(String value) { + this.rangeIndication = value; + } + + /** + * Gets the value of the streetName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetName() { + return streetName; + } + + /** + * Sets the value of the streetName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetName(String value) { + this.streetName = value; + } + + /** + * Gets the value of the streetNameNen property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetNameNen() { + return streetNameNen; + } + + /** + * Sets the value of the streetNameNen property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetNameNen(String value) { + this.streetNameNen = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the municipality property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMunicipality() { + return municipality; + } + + /** + * Sets the value of the municipality property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMunicipality(String value) { + this.municipality = value; + } + + /** + * Gets the value of the municipalityCode property. + * + */ + public int getMunicipalityCode() { + return municipalityCode; + } + + /** + * Sets the value of the municipalityCode property. + * + */ + public void setMunicipalityCode(int value) { + this.municipalityCode = value; + } + + /** + * Gets the value of the cebucoCode property. + * + */ + public int getCebucoCode() { + return cebucoCode; + } + + /** + * Sets the value of the cebucoCode property. + * + */ + public void setCebucoCode(int value) { + this.cebucoCode = value; + } + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the provinceCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvinceCode() { + return provinceCode; + } + + /** + * Sets the value of the provinceCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvinceCode(String value) { + this.provinceCode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressRangePostcodeSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressRangePostcodeSearchRequestType.java new file mode 100644 index 0000000..753ec8f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressRangePostcodeSearchRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchAddressRangePostcodeSearchRequestType complex type. + * + *

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

+ * <complexType name="dutchAddressRangePostcodeSearchRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchAddressRangePostcodeSearchRequestType", propOrder = { + +}) +public class DutchAddressRangePostcodeSearchRequestType { + + @XmlElement(required = true) + protected String address; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressRangePostcodeSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressRangePostcodeSearchResponseType.java new file mode 100644 index 0000000..76114a1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressRangePostcodeSearchResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchAddressRangePostcodeSearchResponseType complex type. + * + *

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

+ * <complexType name="dutchAddressRangePostcodeSearchResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchAddressPostcodeRange"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchAddressRangePostcodeSearchResponseType", propOrder = { + +}) +public class DutchAddressRangePostcodeSearchResponseType { + + @XmlElement(required = true) + protected DutchAddressPostcodeRange out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchAddressPostcodeRange } + * + */ + public DutchAddressPostcodeRange getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchAddressPostcodeRange } + * + */ + public void setOut(DutchAddressPostcodeRange value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPosition.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPosition.java new file mode 100644 index 0000000..a8a9e8c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPosition.java @@ -0,0 +1,261 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessAdditionalPosition complex type. + * + *

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

+ * <complexType name="DutchBusinessAdditionalPosition">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="start_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="end_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="end_date_source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="role" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="function" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="authorization_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="historical_authorizations" type="{http://www.webservices.nl/soap/}DutchBusinessPositionAuthorizationArray"/>
+ *         <element name="company" type="{http://www.webservices.nl/soap/}DutchBusinessPositionCompany"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessAdditionalPosition", propOrder = { + +}) +public class DutchBusinessAdditionalPosition { + + @XmlElement(name = "start_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar startDate; + @XmlElement(name = "end_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar endDate; + @XmlElement(name = "end_date_source") + protected String endDateSource; + @XmlElement(required = true) + protected String role; + protected String function; + @XmlElement(name = "authorization_description") + protected String authorizationDescription; + @XmlElement(name = "historical_authorizations", required = true) + protected DutchBusinessPositionAuthorizationArray historicalAuthorizations; + @XmlElement(required = true) + protected DutchBusinessPositionCompany company; + + /** + * Gets the value of the startDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStartDate() { + return startDate; + } + + /** + * Sets the value of the startDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStartDate(XMLGregorianCalendar value) { + this.startDate = value; + } + + /** + * Gets the value of the endDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEndDate() { + return endDate; + } + + /** + * Sets the value of the endDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEndDate(XMLGregorianCalendar value) { + this.endDate = value; + } + + /** + * Gets the value of the endDateSource property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEndDateSource() { + return endDateSource; + } + + /** + * Sets the value of the endDateSource property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEndDateSource(String value) { + this.endDateSource = value; + } + + /** + * Gets the value of the role property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRole() { + return role; + } + + /** + * Sets the value of the role property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRole(String value) { + this.role = value; + } + + /** + * Gets the value of the function property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunction() { + return function; + } + + /** + * Sets the value of the function property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunction(String value) { + this.function = value; + } + + /** + * Gets the value of the authorizationDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAuthorizationDescription() { + return authorizationDescription; + } + + /** + * Sets the value of the authorizationDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAuthorizationDescription(String value) { + this.authorizationDescription = value; + } + + /** + * Gets the value of the historicalAuthorizations property. + * + * @return + * possible object is + * {@link DutchBusinessPositionAuthorizationArray } + * + */ + public DutchBusinessPositionAuthorizationArray getHistoricalAuthorizations() { + return historicalAuthorizations; + } + + /** + * Sets the value of the historicalAuthorizations property. + * + * @param value + * allowed object is + * {@link DutchBusinessPositionAuthorizationArray } + * + */ + public void setHistoricalAuthorizations(DutchBusinessPositionAuthorizationArray value) { + this.historicalAuthorizations = value; + } + + /** + * Gets the value of the company property. + * + * @return + * possible object is + * {@link DutchBusinessPositionCompany } + * + */ + public DutchBusinessPositionCompany getCompany() { + return company; + } + + /** + * Sets the value of the company property. + * + * @param value + * allowed object is + * {@link DutchBusinessPositionCompany } + * + */ + public void setCompany(DutchBusinessPositionCompany value) { + this.company = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPositionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPositionArray.java new file mode 100644 index 0000000..902db9e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPositionArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessAdditionalPositionArray complex type. + * + *

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

+ * <complexType name="DutchBusinessAdditionalPositionArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessAdditionalPosition" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessAdditionalPositionArray", propOrder = { + "item" +}) +public class DutchBusinessAdditionalPositionArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessAdditionalPosition } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPositionFunctionary.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPositionFunctionary.java new file mode 100644 index 0000000..83da357 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPositionFunctionary.java @@ -0,0 +1,261 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessAdditionalPositionFunctionary complex type. + * + *

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

+ * <complexType name="DutchBusinessAdditionalPositionFunctionary">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="full_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_deceased" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="place_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessAdditionalPositionFunctionary", propOrder = { + +}) +public class DutchBusinessAdditionalPositionFunctionary { + + @XmlElement(name = "full_name", required = true) + protected String fullName; + @XmlElement(name = "first_name") + protected String firstName; + protected String initials; + @XmlElement(name = "last_name", required = true) + protected String lastName; + @XmlElement(name = "date_deceased") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateDeceased; + @XmlElement(name = "date_of_birth") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateOfBirth; + @XmlElement(name = "place_of_birth") + protected String placeOfBirth; + @XmlElement(name = "country_of_birth") + protected String countryOfBirth; + + /** + * Gets the value of the fullName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFullName() { + return fullName; + } + + /** + * Sets the value of the fullName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFullName(String value) { + this.fullName = value; + } + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the initials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInitials() { + return initials; + } + + /** + * Sets the value of the initials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInitials(String value) { + this.initials = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the dateDeceased property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateDeceased() { + return dateDeceased; + } + + /** + * Sets the value of the dateDeceased property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateDeceased(XMLGregorianCalendar value) { + this.dateDeceased = value; + } + + /** + * Gets the value of the dateOfBirth property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfBirth() { + return dateOfBirth; + } + + /** + * Sets the value of the dateOfBirth property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfBirth(XMLGregorianCalendar value) { + this.dateOfBirth = value; + } + + /** + * Gets the value of the placeOfBirth property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaceOfBirth() { + return placeOfBirth; + } + + /** + * Sets the value of the placeOfBirth property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaceOfBirth(String value) { + this.placeOfBirth = value; + } + + /** + * Gets the value of the countryOfBirth property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryOfBirth() { + return countryOfBirth; + } + + /** + * Sets the value of the countryOfBirth property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryOfBirth(String value) { + this.countryOfBirth = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAddressV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAddressV2.java new file mode 100644 index 0000000..6ec9d1a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAddressV2.java @@ -0,0 +1,200 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessAddressV2 complex type. + * + *

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

+ * <complexType name="DutchBusinessAddressV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessAddressV2", propOrder = { + +}) +public class DutchBusinessAddressV2 { + + protected String postcode; + protected String city; + protected String street; + @XmlElement(name = "house_number") + protected Integer houseNumber; + @XmlElement(name = "house_number_addition") + protected String houseNumberAddition; + protected String country; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNumber property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setHouseNumber(Integer value) { + this.houseNumber = value; + } + + /** + * Gets the value of the houseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNumberAddition() { + return houseNumberAddition; + } + + /** + * Sets the value of the houseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNumberAddition(String value) { + this.houseNumberAddition = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAddressV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAddressV3.java new file mode 100644 index 0000000..a9fc122 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAddressV3.java @@ -0,0 +1,226 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessAddressV3 complex type. + * + *

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

+ * <complexType name="DutchBusinessAddressV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessAddressV3", propOrder = { + +}) +public class DutchBusinessAddressV3 { + + protected String address; + protected String postcode; + protected String city; + protected String street; + @XmlElement(name = "house_number") + protected Integer houseNumber; + @XmlElement(name = "house_number_addition") + protected String houseNumberAddition; + protected String country; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNumber property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setHouseNumber(Integer value) { + this.houseNumber = value; + } + + /** + * Gets the value of the houseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNumberAddition() { + return houseNumberAddition; + } + + /** + * Sets the value of the houseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNumberAddition(String value) { + this.houseNumberAddition = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAnnualFinancialStatement.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAnnualFinancialStatement.java new file mode 100644 index 0000000..b3d9686 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAnnualFinancialStatement.java @@ -0,0 +1,139 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessAnnualFinancialStatement complex type. + * + *

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

+ * <complexType name="DutchBusinessAnnualFinancialStatement">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessAnnualFinancialStatement", propOrder = { + +}) +public class DutchBusinessAnnualFinancialStatement { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + protected int year; + @XmlElement(required = true) + protected String type; + @XmlElement(required = true) + protected byte[] document; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the year property. + * + */ + public int getYear() { + return year; + } + + /** + * Sets the value of the year property. + * + */ + public void setYear(int value) { + this.year = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAnnualFinancialStatementSummary.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAnnualFinancialStatementSummary.java new file mode 100644 index 0000000..c9b708a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAnnualFinancialStatementSummary.java @@ -0,0 +1,145 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessAnnualFinancialStatementSummary complex type. + * + *

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

+ * <complexType name="DutchBusinessAnnualFinancialStatementSummary">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="turnover" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV2" minOccurs="0"/>
+ *         <element name="profit" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV2" minOccurs="0"/>
+ *         <element name="assets" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV2" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessAnnualFinancialStatementSummary", propOrder = { + +}) +public class DutchBusinessAnnualFinancialStatementSummary { + + protected Integer year; + protected DutchBusinessMoneyV2 turnover; + protected DutchBusinessMoneyV2 profit; + protected DutchBusinessMoneyV2 assets; + + /** + * Gets the value of the year property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getYear() { + return year; + } + + /** + * Sets the value of the year property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setYear(Integer value) { + this.year = value; + } + + /** + * Gets the value of the turnover property. + * + * @return + * possible object is + * {@link DutchBusinessMoneyV2 } + * + */ + public DutchBusinessMoneyV2 getTurnover() { + return turnover; + } + + /** + * Sets the value of the turnover property. + * + * @param value + * allowed object is + * {@link DutchBusinessMoneyV2 } + * + */ + public void setTurnover(DutchBusinessMoneyV2 value) { + this.turnover = value; + } + + /** + * Gets the value of the profit property. + * + * @return + * possible object is + * {@link DutchBusinessMoneyV2 } + * + */ + public DutchBusinessMoneyV2 getProfit() { + return profit; + } + + /** + * Sets the value of the profit property. + * + * @param value + * allowed object is + * {@link DutchBusinessMoneyV2 } + * + */ + public void setProfit(DutchBusinessMoneyV2 value) { + this.profit = value; + } + + /** + * Gets the value of the assets property. + * + * @return + * possible object is + * {@link DutchBusinessMoneyV2 } + * + */ + public DutchBusinessMoneyV2 getAssets() { + return assets; + } + + /** + * Sets the value of the assets property. + * + * @param value + * allowed object is + * {@link DutchBusinessMoneyV2 } + * + */ + public void setAssets(DutchBusinessMoneyV2 value) { + this.assets = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessChangeSet.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessChangeSet.java new file mode 100644 index 0000000..ab135c1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessChangeSet.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessChangeSet complex type. + * + *

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

+ * <complexType name="DutchBusinessChangeSet">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="period" type="{http://www.webservices.nl/soap/}DutchBusinessPeriod"/>
+ *         <element name="changes" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessChangeSet", propOrder = { + +}) +public class DutchBusinessChangeSet { + + @XmlElement(required = true) + protected DutchBusinessPeriod period; + @XmlElement(required = true) + protected StringArray changes; + + /** + * Gets the value of the period property. + * + * @return + * possible object is + * {@link DutchBusinessPeriod } + * + */ + public DutchBusinessPeriod getPeriod() { + return period; + } + + /** + * Sets the value of the period property. + * + * @param value + * allowed object is + * {@link DutchBusinessPeriod } + * + */ + public void setPeriod(DutchBusinessPeriod value) { + this.period = value; + } + + /** + * Gets the value of the changes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getChanges() { + return changes; + } + + /** + * Sets the value of the changes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setChanges(StringArray value) { + this.changes = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDate.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDate.java new file mode 100644 index 0000000..2801989 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDate.java @@ -0,0 +1,115 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessDate complex type. + * + *

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

+ * <complexType name="DutchBusinessDate">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="Year" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="Month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="Day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessDate", propOrder = { + +}) +public class DutchBusinessDate { + + @XmlElement(name = "Year") + protected int year; + @XmlElement(name = "Month") + protected Integer month; + @XmlElement(name = "Day") + protected Integer day; + + /** + * Gets the value of the year property. + * + */ + public int getYear() { + return year; + } + + /** + * Sets the value of the year property. + * + */ + public void setYear(int value) { + this.year = value; + } + + /** + * Gets the value of the month property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMonth() { + return month; + } + + /** + * Sets the value of the month property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMonth(Integer value) { + this.month = value; + } + + /** + * Gets the value of the day property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDay() { + return day; + } + + /** + * Sets the value of the day property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDay(Integer value) { + this.day = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDateV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDateV2.java new file mode 100644 index 0000000..aad3e09 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDateV2.java @@ -0,0 +1,119 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessDateV2 complex type. + * + *

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

+ * <complexType name="DutchBusinessDateV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessDateV2", propOrder = { + +}) +public class DutchBusinessDateV2 { + + protected Integer year; + protected Integer month; + protected Integer day; + + /** + * Gets the value of the year property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getYear() { + return year; + } + + /** + * Sets the value of the year property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setYear(Integer value) { + this.year = value; + } + + /** + * Gets the value of the month property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMonth() { + return month; + } + + /** + * Sets the value of the month property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMonth(Integer value) { + this.month = value; + } + + /** + * Gets the value of the day property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDay() { + return day; + } + + /** + * Sets the value of the day property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDay(Integer value) { + this.day = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDateV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDateV3.java new file mode 100644 index 0000000..fbef70f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDateV3.java @@ -0,0 +1,119 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessDateV3 complex type. + * + *

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

+ * <complexType name="DutchBusinessDateV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessDateV3", propOrder = { + +}) +public class DutchBusinessDateV3 { + + protected Integer year; + protected Integer month; + protected Integer day; + + /** + * Gets the value of the year property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getYear() { + return year; + } + + /** + * Sets the value of the year property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setYear(Integer value) { + this.year = value; + } + + /** + * Gets the value of the month property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMonth() { + return month; + } + + /** + * Sets the value of the month property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMonth(Integer value) { + this.month = value; + } + + /** + * Gets the value of the day property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDay() { + return day; + } + + /** + * Sets the value of the day property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDay(Integer value) { + this.day = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossier.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossier.java new file mode 100644 index 0000000..78cc8ef --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossier.java @@ -0,0 +1,1573 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessDossier complex type. + * + *

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

+ * <complexType name="DutchBusinessDossier">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="update_info" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateReference"/>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="main_establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="indication_main_establishment" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="chamber_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_form_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="indication_organisation_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_name_45" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_name_full" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="establishment_postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="establishment_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="correspondence_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mobile_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="domain_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_title1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_title2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_initials" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_surname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_gender" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="primary_sbi_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="secondary_sbi_code1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="secondary_sbi_code2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="primary_sbi_code_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="secondary_sbi_code1_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="secondary_sbi_code2_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="class_personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="personnel_fulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="class_personnel_fulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="personnel_reference_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="indication_import" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="indication_export" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="indication_economically_active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indication_non_mailing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indication_bankruptcy" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indication_dip" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="authorized_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="authorized_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="paid_up_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="paid_up_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="issued_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="issued_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="continuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="establishment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessDossier", propOrder = { + +}) +public class DutchBusinessDossier { + + @XmlElement(name = "update_info", required = true) + protected DutchBusinessUpdateReference updateInfo; + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(name = "main_establishment_number") + protected String mainEstablishmentNumber; + @XmlElement(name = "indication_main_establishment") + protected boolean indicationMainEstablishment; + @XmlElement(name = "rsin_number") + protected String rsinNumber; + @XmlElement(name = "chamber_number", required = true) + protected String chamberNumber; + @XmlElement(name = "legal_form_code", required = true) + protected String legalFormCode; + @XmlElement(name = "legal_form_text", required = true) + protected String legalFormText; + @XmlElement(name = "indication_organisation_code", required = true) + protected String indicationOrganisationCode; + @XmlElement(name = "legal_name", required = true) + protected String legalName; + @XmlElement(name = "trade_name_45", required = true) + protected String tradeName45; + @XmlElement(name = "trade_name_full", required = true) + protected String tradeNameFull; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + @XmlElement(name = "establishment_postcode", required = true) + protected String establishmentPostcode; + @XmlElement(name = "establishment_city", required = true) + protected String establishmentCity; + @XmlElement(name = "establishment_street", required = true) + protected String establishmentStreet; + @XmlElement(name = "establishment_house_number") + protected int establishmentHouseNumber; + @XmlElement(name = "establishment_house_number_addition", required = true) + protected String establishmentHouseNumberAddition; + @XmlElement(name = "correspondence_postcode", required = true) + protected String correspondencePostcode; + @XmlElement(name = "correspondence_city", required = true) + protected String correspondenceCity; + @XmlElement(name = "correspondence_street", required = true) + protected String correspondenceStreet; + @XmlElement(name = "correspondence_house_number") + protected int correspondenceHouseNumber; + @XmlElement(name = "correspondence_house_number_addition", required = true) + protected String correspondenceHouseNumberAddition; + @XmlElement(name = "correspondence_country", required = true) + protected String correspondenceCountry; + @XmlElement(name = "telephone_number", required = true) + protected String telephoneNumber; + @XmlElement(name = "mobile_number", required = true) + protected String mobileNumber; + @XmlElement(name = "domain_name", required = true) + protected String domainName; + @XmlElement(name = "contact_title1", required = true) + protected String contactTitle1; + @XmlElement(name = "contact_title2", required = true) + protected String contactTitle2; + @XmlElement(name = "contact_initials", required = true) + protected String contactInitials; + @XmlElement(name = "contact_prefix", required = true) + protected String contactPrefix; + @XmlElement(name = "contact_surname", required = true) + protected String contactSurname; + @XmlElement(name = "contact_gender", required = true) + protected String contactGender; + @XmlElement(name = "primary_sbi_code", required = true) + protected String primarySbiCode; + @XmlElement(name = "secondary_sbi_code1", required = true) + protected String secondarySbiCode1; + @XmlElement(name = "secondary_sbi_code2", required = true) + protected String secondarySbiCode2; + @XmlElement(name = "primary_sbi_code_text", required = true) + protected String primarySbiCodeText; + @XmlElement(name = "secondary_sbi_code1_text", required = true) + protected String secondarySbiCode1Text; + @XmlElement(name = "secondary_sbi_code2_text", required = true) + protected String secondarySbiCode2Text; + protected int personnel; + @XmlElement(name = "class_personnel") + protected int classPersonnel; + @XmlElement(name = "personnel_fulltime") + protected int personnelFulltime; + @XmlElement(name = "class_personnel_fulltime") + protected int classPersonnelFulltime; + @XmlElement(name = "personnel_reference_date") + protected DutchBusinessDate personnelReferenceDate; + @XmlElement(name = "indication_import") + protected Boolean indicationImport; + @XmlElement(name = "indication_export") + protected Boolean indicationExport; + @XmlElement(name = "indication_economically_active") + protected boolean indicationEconomicallyActive; + @XmlElement(name = "indication_non_mailing") + protected boolean indicationNonMailing; + @XmlElement(name = "indication_bankruptcy") + protected boolean indicationBankruptcy; + @XmlElement(name = "indication_dip") + protected boolean indicationDip; + @XmlElement(name = "authorized_share_capital") + protected Long authorizedShareCapital; + @XmlElement(name = "authorized_share_capital_currency") + protected String authorizedShareCapitalCurrency; + @XmlElement(name = "paid_up_share_capital") + protected Long paidUpShareCapital; + @XmlElement(name = "paid_up_share_capital_currency") + protected String paidUpShareCapitalCurrency; + @XmlElement(name = "issued_share_capital") + protected Long issuedShareCapital; + @XmlElement(name = "issued_share_capital_currency") + protected String issuedShareCapitalCurrency; + @XmlElement(name = "founding_date") + protected DutchBusinessDate foundingDate; + @XmlElement(name = "continuation_date") + protected DutchBusinessDate continuationDate; + @XmlElement(name = "establishment_date") + protected DutchBusinessDate establishmentDate; + + /** + * Gets the value of the updateInfo property. + * + * @return + * possible object is + * {@link DutchBusinessUpdateReference } + * + */ + public DutchBusinessUpdateReference getUpdateInfo() { + return updateInfo; + } + + /** + * Sets the value of the updateInfo property. + * + * @param value + * allowed object is + * {@link DutchBusinessUpdateReference } + * + */ + public void setUpdateInfo(DutchBusinessUpdateReference value) { + this.updateInfo = value; + } + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the mainEstablishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMainEstablishmentNumber() { + return mainEstablishmentNumber; + } + + /** + * Sets the value of the mainEstablishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMainEstablishmentNumber(String value) { + this.mainEstablishmentNumber = value; + } + + /** + * Gets the value of the indicationMainEstablishment property. + * + */ + public boolean isIndicationMainEstablishment() { + return indicationMainEstablishment; + } + + /** + * Sets the value of the indicationMainEstablishment property. + * + */ + public void setIndicationMainEstablishment(boolean value) { + this.indicationMainEstablishment = value; + } + + /** + * Gets the value of the rsinNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsinNumber() { + return rsinNumber; + } + + /** + * Sets the value of the rsinNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsinNumber(String value) { + this.rsinNumber = value; + } + + /** + * Gets the value of the chamberNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getChamberNumber() { + return chamberNumber; + } + + /** + * Sets the value of the chamberNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setChamberNumber(String value) { + this.chamberNumber = value; + } + + /** + * Gets the value of the legalFormCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormCode() { + return legalFormCode; + } + + /** + * Sets the value of the legalFormCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormCode(String value) { + this.legalFormCode = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the indicationOrganisationCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIndicationOrganisationCode() { + return indicationOrganisationCode; + } + + /** + * Sets the value of the indicationOrganisationCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIndicationOrganisationCode(String value) { + this.indicationOrganisationCode = value; + } + + /** + * Gets the value of the legalName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalName() { + return legalName; + } + + /** + * Sets the value of the legalName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalName(String value) { + this.legalName = value; + } + + /** + * Gets the value of the tradeName45 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName45() { + return tradeName45; + } + + /** + * Sets the value of the tradeName45 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName45(String value) { + this.tradeName45 = value; + } + + /** + * Gets the value of the tradeNameFull property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeNameFull() { + return tradeNameFull; + } + + /** + * Sets the value of the tradeNameFull property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeNameFull(String value) { + this.tradeNameFull = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + + /** + * Gets the value of the establishmentPostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentPostcode() { + return establishmentPostcode; + } + + /** + * Sets the value of the establishmentPostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentPostcode(String value) { + this.establishmentPostcode = value; + } + + /** + * Gets the value of the establishmentCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCity() { + return establishmentCity; + } + + /** + * Sets the value of the establishmentCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCity(String value) { + this.establishmentCity = value; + } + + /** + * Gets the value of the establishmentStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentStreet() { + return establishmentStreet; + } + + /** + * Sets the value of the establishmentStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentStreet(String value) { + this.establishmentStreet = value; + } + + /** + * Gets the value of the establishmentHouseNumber property. + * + */ + public int getEstablishmentHouseNumber() { + return establishmentHouseNumber; + } + + /** + * Sets the value of the establishmentHouseNumber property. + * + */ + public void setEstablishmentHouseNumber(int value) { + this.establishmentHouseNumber = value; + } + + /** + * Gets the value of the establishmentHouseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentHouseNumberAddition() { + return establishmentHouseNumberAddition; + } + + /** + * Sets the value of the establishmentHouseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentHouseNumberAddition(String value) { + this.establishmentHouseNumberAddition = value; + } + + /** + * Gets the value of the correspondencePostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondencePostcode() { + return correspondencePostcode; + } + + /** + * Sets the value of the correspondencePostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondencePostcode(String value) { + this.correspondencePostcode = value; + } + + /** + * Gets the value of the correspondenceCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCity() { + return correspondenceCity; + } + + /** + * Sets the value of the correspondenceCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCity(String value) { + this.correspondenceCity = value; + } + + /** + * Gets the value of the correspondenceStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceStreet() { + return correspondenceStreet; + } + + /** + * Sets the value of the correspondenceStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceStreet(String value) { + this.correspondenceStreet = value; + } + + /** + * Gets the value of the correspondenceHouseNumber property. + * + */ + public int getCorrespondenceHouseNumber() { + return correspondenceHouseNumber; + } + + /** + * Sets the value of the correspondenceHouseNumber property. + * + */ + public void setCorrespondenceHouseNumber(int value) { + this.correspondenceHouseNumber = value; + } + + /** + * Gets the value of the correspondenceHouseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceHouseNumberAddition() { + return correspondenceHouseNumberAddition; + } + + /** + * Sets the value of the correspondenceHouseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceHouseNumberAddition(String value) { + this.correspondenceHouseNumberAddition = value; + } + + /** + * Gets the value of the correspondenceCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCountry() { + return correspondenceCountry; + } + + /** + * Sets the value of the correspondenceCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCountry(String value) { + this.correspondenceCountry = value; + } + + /** + * Gets the value of the telephoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNumber() { + return telephoneNumber; + } + + /** + * Sets the value of the telephoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNumber(String value) { + this.telephoneNumber = value; + } + + /** + * Gets the value of the mobileNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMobileNumber() { + return mobileNumber; + } + + /** + * Sets the value of the mobileNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMobileNumber(String value) { + this.mobileNumber = value; + } + + /** + * Gets the value of the domainName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDomainName() { + return domainName; + } + + /** + * Sets the value of the domainName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDomainName(String value) { + this.domainName = value; + } + + /** + * Gets the value of the contactTitle1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactTitle1() { + return contactTitle1; + } + + /** + * Sets the value of the contactTitle1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactTitle1(String value) { + this.contactTitle1 = value; + } + + /** + * Gets the value of the contactTitle2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactTitle2() { + return contactTitle2; + } + + /** + * Sets the value of the contactTitle2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactTitle2(String value) { + this.contactTitle2 = value; + } + + /** + * Gets the value of the contactInitials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactInitials() { + return contactInitials; + } + + /** + * Sets the value of the contactInitials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactInitials(String value) { + this.contactInitials = value; + } + + /** + * Gets the value of the contactPrefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactPrefix() { + return contactPrefix; + } + + /** + * Sets the value of the contactPrefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactPrefix(String value) { + this.contactPrefix = value; + } + + /** + * Gets the value of the contactSurname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactSurname() { + return contactSurname; + } + + /** + * Sets the value of the contactSurname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactSurname(String value) { + this.contactSurname = value; + } + + /** + * Gets the value of the contactGender property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactGender() { + return contactGender; + } + + /** + * Sets the value of the contactGender property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactGender(String value) { + this.contactGender = value; + } + + /** + * Gets the value of the primarySbiCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimarySbiCode() { + return primarySbiCode; + } + + /** + * Sets the value of the primarySbiCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimarySbiCode(String value) { + this.primarySbiCode = value; + } + + /** + * Gets the value of the secondarySbiCode1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySbiCode1() { + return secondarySbiCode1; + } + + /** + * Sets the value of the secondarySbiCode1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySbiCode1(String value) { + this.secondarySbiCode1 = value; + } + + /** + * Gets the value of the secondarySbiCode2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySbiCode2() { + return secondarySbiCode2; + } + + /** + * Sets the value of the secondarySbiCode2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySbiCode2(String value) { + this.secondarySbiCode2 = value; + } + + /** + * Gets the value of the primarySbiCodeText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimarySbiCodeText() { + return primarySbiCodeText; + } + + /** + * Sets the value of the primarySbiCodeText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimarySbiCodeText(String value) { + this.primarySbiCodeText = value; + } + + /** + * Gets the value of the secondarySbiCode1Text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySbiCode1Text() { + return secondarySbiCode1Text; + } + + /** + * Sets the value of the secondarySbiCode1Text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySbiCode1Text(String value) { + this.secondarySbiCode1Text = value; + } + + /** + * Gets the value of the secondarySbiCode2Text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySbiCode2Text() { + return secondarySbiCode2Text; + } + + /** + * Sets the value of the secondarySbiCode2Text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySbiCode2Text(String value) { + this.secondarySbiCode2Text = value; + } + + /** + * Gets the value of the personnel property. + * + */ + public int getPersonnel() { + return personnel; + } + + /** + * Sets the value of the personnel property. + * + */ + public void setPersonnel(int value) { + this.personnel = value; + } + + /** + * Gets the value of the classPersonnel property. + * + */ + public int getClassPersonnel() { + return classPersonnel; + } + + /** + * Sets the value of the classPersonnel property. + * + */ + public void setClassPersonnel(int value) { + this.classPersonnel = value; + } + + /** + * Gets the value of the personnelFulltime property. + * + */ + public int getPersonnelFulltime() { + return personnelFulltime; + } + + /** + * Sets the value of the personnelFulltime property. + * + */ + public void setPersonnelFulltime(int value) { + this.personnelFulltime = value; + } + + /** + * Gets the value of the classPersonnelFulltime property. + * + */ + public int getClassPersonnelFulltime() { + return classPersonnelFulltime; + } + + /** + * Sets the value of the classPersonnelFulltime property. + * + */ + public void setClassPersonnelFulltime(int value) { + this.classPersonnelFulltime = value; + } + + /** + * Gets the value of the personnelReferenceDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getPersonnelReferenceDate() { + return personnelReferenceDate; + } + + /** + * Sets the value of the personnelReferenceDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setPersonnelReferenceDate(DutchBusinessDate value) { + this.personnelReferenceDate = value; + } + + /** + * Gets the value of the indicationImport property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicationImport() { + return indicationImport; + } + + /** + * Sets the value of the indicationImport property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicationImport(Boolean value) { + this.indicationImport = value; + } + + /** + * Gets the value of the indicationExport property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicationExport() { + return indicationExport; + } + + /** + * Sets the value of the indicationExport property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicationExport(Boolean value) { + this.indicationExport = value; + } + + /** + * Gets the value of the indicationEconomicallyActive property. + * + */ + public boolean isIndicationEconomicallyActive() { + return indicationEconomicallyActive; + } + + /** + * Sets the value of the indicationEconomicallyActive property. + * + */ + public void setIndicationEconomicallyActive(boolean value) { + this.indicationEconomicallyActive = value; + } + + /** + * Gets the value of the indicationNonMailing property. + * + */ + public boolean isIndicationNonMailing() { + return indicationNonMailing; + } + + /** + * Sets the value of the indicationNonMailing property. + * + */ + public void setIndicationNonMailing(boolean value) { + this.indicationNonMailing = value; + } + + /** + * Gets the value of the indicationBankruptcy property. + * + */ + public boolean isIndicationBankruptcy() { + return indicationBankruptcy; + } + + /** + * Sets the value of the indicationBankruptcy property. + * + */ + public void setIndicationBankruptcy(boolean value) { + this.indicationBankruptcy = value; + } + + /** + * Gets the value of the indicationDip property. + * + */ + public boolean isIndicationDip() { + return indicationDip; + } + + /** + * Sets the value of the indicationDip property. + * + */ + public void setIndicationDip(boolean value) { + this.indicationDip = value; + } + + /** + * Gets the value of the authorizedShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getAuthorizedShareCapital() { + return authorizedShareCapital; + } + + /** + * Sets the value of the authorizedShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setAuthorizedShareCapital(Long value) { + this.authorizedShareCapital = value; + } + + /** + * Gets the value of the authorizedShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAuthorizedShareCapitalCurrency() { + return authorizedShareCapitalCurrency; + } + + /** + * Sets the value of the authorizedShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAuthorizedShareCapitalCurrency(String value) { + this.authorizedShareCapitalCurrency = value; + } + + /** + * Gets the value of the paidUpShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getPaidUpShareCapital() { + return paidUpShareCapital; + } + + /** + * Sets the value of the paidUpShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setPaidUpShareCapital(Long value) { + this.paidUpShareCapital = value; + } + + /** + * Gets the value of the paidUpShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPaidUpShareCapitalCurrency() { + return paidUpShareCapitalCurrency; + } + + /** + * Sets the value of the paidUpShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPaidUpShareCapitalCurrency(String value) { + this.paidUpShareCapitalCurrency = value; + } + + /** + * Gets the value of the issuedShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getIssuedShareCapital() { + return issuedShareCapital; + } + + /** + * Sets the value of the issuedShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setIssuedShareCapital(Long value) { + this.issuedShareCapital = value; + } + + /** + * Gets the value of the issuedShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIssuedShareCapitalCurrency() { + return issuedShareCapitalCurrency; + } + + /** + * Sets the value of the issuedShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIssuedShareCapitalCurrency(String value) { + this.issuedShareCapitalCurrency = value; + } + + /** + * Gets the value of the foundingDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getFoundingDate() { + return foundingDate; + } + + /** + * Sets the value of the foundingDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setFoundingDate(DutchBusinessDate value) { + this.foundingDate = value; + } + + /** + * Gets the value of the continuationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getContinuationDate() { + return continuationDate; + } + + /** + * Sets the value of the continuationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setContinuationDate(DutchBusinessDate value) { + this.continuationDate = value; + } + + /** + * Gets the value of the establishmentDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getEstablishmentDate() { + return establishmentDate; + } + + /** + * Sets the value of the establishmentDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setEstablishmentDate(DutchBusinessDate value) { + this.establishmentDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierHistory.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierHistory.java new file mode 100644 index 0000000..de66090 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierHistory.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessDossierHistory complex type. + * + *

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

+ * <complexType name="DutchBusinessDossierHistory">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="references" type="{http://www.webservices.nl/soap/}DutchBusinessDossierReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessDossierHistory", propOrder = { + +}) +public class DutchBusinessDossierHistory { + + @XmlElement(required = true) + protected DutchBusinessDossierReferenceArray references; + + /** + * Gets the value of the references property. + * + * @return + * possible object is + * {@link DutchBusinessDossierReferenceArray } + * + */ + public DutchBusinessDossierReferenceArray getReferences() { + return references; + } + + /** + * Sets the value of the references property. + * + * @param value + * allowed object is + * {@link DutchBusinessDossierReferenceArray } + * + */ + public void setReferences(DutchBusinessDossierReferenceArray value) { + this.references = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierReference.java new file mode 100644 index 0000000..de53cd1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierReference.java @@ -0,0 +1,99 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessDossierReference complex type. + * + *

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

+ * <complexType name="DutchBusinessDossierReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="update_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="change_set" type="{http://www.webservices.nl/soap/}DutchBusinessChangeSet"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessDossierReference", propOrder = { + +}) +public class DutchBusinessDossierReference { + + @XmlElement(name = "update_date", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar updateDate; + @XmlElement(name = "change_set", required = true) + protected DutchBusinessChangeSet changeSet; + + /** + * Gets the value of the updateDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getUpdateDate() { + return updateDate; + } + + /** + * Sets the value of the updateDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setUpdateDate(XMLGregorianCalendar value) { + this.updateDate = value; + } + + /** + * Gets the value of the changeSet property. + * + * @return + * possible object is + * {@link DutchBusinessChangeSet } + * + */ + public DutchBusinessChangeSet getChangeSet() { + return changeSet; + } + + /** + * Sets the value of the changeSet property. + * + * @param value + * allowed object is + * {@link DutchBusinessChangeSet } + * + */ + public void setChangeSet(DutchBusinessChangeSet value) { + this.changeSet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierReferenceArray.java new file mode 100644 index 0000000..b5b32fd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessDossierReferenceArray complex type. + * + *

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

+ * <complexType name="DutchBusinessDossierReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessDossierReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessDossierReferenceArray", propOrder = { + "item" +}) +public class DutchBusinessDossierReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessDossierReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierV2.java new file mode 100644 index 0000000..c790f33 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierV2.java @@ -0,0 +1,1745 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessDossierV2 complex type. + * + *

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

+ * <complexType name="DutchBusinessDossierV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="update_info" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateReference"/>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="main_establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="indication_main_establishment" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="chamber_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_form_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="indication_organisation_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_name_45" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_name_full" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="establishment_postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="establishment_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="correspondence_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mobile_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="domain_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_title1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_title2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_initials" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_surname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_gender" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="primary_sbi_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="secondary_sbi_code1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="secondary_sbi_code2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="primary_sbi_code_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="secondary_sbi_code1_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="secondary_sbi_code2_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="class_personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="personnel_fulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="class_personnel_fulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="personnel_reference_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="personnel_ci" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="class_personnel_ci" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="personnel_ci_reference_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="indication_import" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="indication_export" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="indication_economically_active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indication_non_mailing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indication_bankruptcy" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indication_dip" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="authorized_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="authorized_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="paid_up_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="paid_up_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="issued_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="issued_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="discontinuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="continuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="establishment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="annual_financial_statement_summary" type="{http://www.webservices.nl/soap/}DutchBusinessAnnualFinancialStatementSummary" minOccurs="0"/>
+ *         <element name="structure" type="{http://www.webservices.nl/soap/}DutchBusinessStructure" minOccurs="0"/>
+ *         <element name="sbi_collection" type="{http://www.webservices.nl/soap/}DutchBusinessSBICollection" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessDossierV2", propOrder = { + +}) +public class DutchBusinessDossierV2 { + + @XmlElement(name = "update_info", required = true) + protected DutchBusinessUpdateReference updateInfo; + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(name = "main_establishment_number") + protected String mainEstablishmentNumber; + @XmlElement(name = "indication_main_establishment") + protected boolean indicationMainEstablishment; + @XmlElement(name = "rsin_number") + protected String rsinNumber; + @XmlElement(name = "chamber_number", required = true) + protected String chamberNumber; + @XmlElement(name = "legal_form_code", required = true) + protected String legalFormCode; + @XmlElement(name = "legal_form_text", required = true) + protected String legalFormText; + @XmlElement(name = "indication_organisation_code", required = true) + protected String indicationOrganisationCode; + @XmlElement(name = "legal_name", required = true) + protected String legalName; + @XmlElement(name = "trade_name_45", required = true) + protected String tradeName45; + @XmlElement(name = "trade_name_full", required = true) + protected String tradeNameFull; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + @XmlElement(name = "establishment_postcode", required = true) + protected String establishmentPostcode; + @XmlElement(name = "establishment_city", required = true) + protected String establishmentCity; + @XmlElement(name = "establishment_street", required = true) + protected String establishmentStreet; + @XmlElement(name = "establishment_house_number") + protected int establishmentHouseNumber; + @XmlElement(name = "establishment_house_number_addition", required = true) + protected String establishmentHouseNumberAddition; + @XmlElement(name = "correspondence_postcode", required = true) + protected String correspondencePostcode; + @XmlElement(name = "correspondence_city", required = true) + protected String correspondenceCity; + @XmlElement(name = "correspondence_street", required = true) + protected String correspondenceStreet; + @XmlElement(name = "correspondence_house_number") + protected int correspondenceHouseNumber; + @XmlElement(name = "correspondence_house_number_addition", required = true) + protected String correspondenceHouseNumberAddition; + @XmlElement(name = "correspondence_country", required = true) + protected String correspondenceCountry; + @XmlElement(name = "telephone_number", required = true) + protected String telephoneNumber; + @XmlElement(name = "mobile_number", required = true) + protected String mobileNumber; + @XmlElement(name = "domain_name", required = true) + protected String domainName; + @XmlElement(name = "contact_title1", required = true) + protected String contactTitle1; + @XmlElement(name = "contact_title2", required = true) + protected String contactTitle2; + @XmlElement(name = "contact_initials", required = true) + protected String contactInitials; + @XmlElement(name = "contact_prefix", required = true) + protected String contactPrefix; + @XmlElement(name = "contact_surname", required = true) + protected String contactSurname; + @XmlElement(name = "contact_gender", required = true) + protected String contactGender; + @XmlElement(name = "primary_sbi_code", required = true) + protected String primarySbiCode; + @XmlElement(name = "secondary_sbi_code1", required = true) + protected String secondarySbiCode1; + @XmlElement(name = "secondary_sbi_code2", required = true) + protected String secondarySbiCode2; + @XmlElement(name = "primary_sbi_code_text", required = true) + protected String primarySbiCodeText; + @XmlElement(name = "secondary_sbi_code1_text", required = true) + protected String secondarySbiCode1Text; + @XmlElement(name = "secondary_sbi_code2_text", required = true) + protected String secondarySbiCode2Text; + protected int personnel; + @XmlElement(name = "class_personnel") + protected int classPersonnel; + @XmlElement(name = "personnel_fulltime") + protected int personnelFulltime; + @XmlElement(name = "class_personnel_fulltime") + protected int classPersonnelFulltime; + @XmlElement(name = "personnel_reference_date") + protected DutchBusinessDateV2 personnelReferenceDate; + @XmlElement(name = "personnel_ci") + protected int personnelCi; + @XmlElement(name = "class_personnel_ci") + protected int classPersonnelCi; + @XmlElement(name = "personnel_ci_reference_date") + protected DutchBusinessDateV2 personnelCiReferenceDate; + @XmlElement(name = "indication_import") + protected Boolean indicationImport; + @XmlElement(name = "indication_export") + protected Boolean indicationExport; + @XmlElement(name = "indication_economically_active") + protected boolean indicationEconomicallyActive; + @XmlElement(name = "indication_non_mailing") + protected boolean indicationNonMailing; + @XmlElement(name = "indication_bankruptcy") + protected boolean indicationBankruptcy; + @XmlElement(name = "indication_dip") + protected boolean indicationDip; + @XmlElement(name = "authorized_share_capital") + protected Long authorizedShareCapital; + @XmlElement(name = "authorized_share_capital_currency") + protected String authorizedShareCapitalCurrency; + @XmlElement(name = "paid_up_share_capital") + protected Long paidUpShareCapital; + @XmlElement(name = "paid_up_share_capital_currency") + protected String paidUpShareCapitalCurrency; + @XmlElement(name = "issued_share_capital") + protected Long issuedShareCapital; + @XmlElement(name = "issued_share_capital_currency") + protected String issuedShareCapitalCurrency; + @XmlElement(name = "founding_date") + protected DutchBusinessDateV2 foundingDate; + @XmlElement(name = "discontinuation_date") + protected DutchBusinessDateV2 discontinuationDate; + @XmlElement(name = "continuation_date") + protected DutchBusinessDateV2 continuationDate; + @XmlElement(name = "establishment_date") + protected DutchBusinessDateV2 establishmentDate; + @XmlElement(name = "annual_financial_statement_summary") + protected DutchBusinessAnnualFinancialStatementSummary annualFinancialStatementSummary; + protected DutchBusinessStructure structure; + @XmlElement(name = "sbi_collection") + protected DutchBusinessSBICollection sbiCollection; + + /** + * Gets the value of the updateInfo property. + * + * @return + * possible object is + * {@link DutchBusinessUpdateReference } + * + */ + public DutchBusinessUpdateReference getUpdateInfo() { + return updateInfo; + } + + /** + * Sets the value of the updateInfo property. + * + * @param value + * allowed object is + * {@link DutchBusinessUpdateReference } + * + */ + public void setUpdateInfo(DutchBusinessUpdateReference value) { + this.updateInfo = value; + } + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the mainEstablishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMainEstablishmentNumber() { + return mainEstablishmentNumber; + } + + /** + * Sets the value of the mainEstablishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMainEstablishmentNumber(String value) { + this.mainEstablishmentNumber = value; + } + + /** + * Gets the value of the indicationMainEstablishment property. + * + */ + public boolean isIndicationMainEstablishment() { + return indicationMainEstablishment; + } + + /** + * Sets the value of the indicationMainEstablishment property. + * + */ + public void setIndicationMainEstablishment(boolean value) { + this.indicationMainEstablishment = value; + } + + /** + * Gets the value of the rsinNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsinNumber() { + return rsinNumber; + } + + /** + * Sets the value of the rsinNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsinNumber(String value) { + this.rsinNumber = value; + } + + /** + * Gets the value of the chamberNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getChamberNumber() { + return chamberNumber; + } + + /** + * Sets the value of the chamberNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setChamberNumber(String value) { + this.chamberNumber = value; + } + + /** + * Gets the value of the legalFormCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormCode() { + return legalFormCode; + } + + /** + * Sets the value of the legalFormCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormCode(String value) { + this.legalFormCode = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the indicationOrganisationCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIndicationOrganisationCode() { + return indicationOrganisationCode; + } + + /** + * Sets the value of the indicationOrganisationCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIndicationOrganisationCode(String value) { + this.indicationOrganisationCode = value; + } + + /** + * Gets the value of the legalName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalName() { + return legalName; + } + + /** + * Sets the value of the legalName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalName(String value) { + this.legalName = value; + } + + /** + * Gets the value of the tradeName45 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName45() { + return tradeName45; + } + + /** + * Sets the value of the tradeName45 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName45(String value) { + this.tradeName45 = value; + } + + /** + * Gets the value of the tradeNameFull property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeNameFull() { + return tradeNameFull; + } + + /** + * Sets the value of the tradeNameFull property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeNameFull(String value) { + this.tradeNameFull = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + + /** + * Gets the value of the establishmentPostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentPostcode() { + return establishmentPostcode; + } + + /** + * Sets the value of the establishmentPostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentPostcode(String value) { + this.establishmentPostcode = value; + } + + /** + * Gets the value of the establishmentCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCity() { + return establishmentCity; + } + + /** + * Sets the value of the establishmentCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCity(String value) { + this.establishmentCity = value; + } + + /** + * Gets the value of the establishmentStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentStreet() { + return establishmentStreet; + } + + /** + * Sets the value of the establishmentStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentStreet(String value) { + this.establishmentStreet = value; + } + + /** + * Gets the value of the establishmentHouseNumber property. + * + */ + public int getEstablishmentHouseNumber() { + return establishmentHouseNumber; + } + + /** + * Sets the value of the establishmentHouseNumber property. + * + */ + public void setEstablishmentHouseNumber(int value) { + this.establishmentHouseNumber = value; + } + + /** + * Gets the value of the establishmentHouseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentHouseNumberAddition() { + return establishmentHouseNumberAddition; + } + + /** + * Sets the value of the establishmentHouseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentHouseNumberAddition(String value) { + this.establishmentHouseNumberAddition = value; + } + + /** + * Gets the value of the correspondencePostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondencePostcode() { + return correspondencePostcode; + } + + /** + * Sets the value of the correspondencePostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondencePostcode(String value) { + this.correspondencePostcode = value; + } + + /** + * Gets the value of the correspondenceCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCity() { + return correspondenceCity; + } + + /** + * Sets the value of the correspondenceCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCity(String value) { + this.correspondenceCity = value; + } + + /** + * Gets the value of the correspondenceStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceStreet() { + return correspondenceStreet; + } + + /** + * Sets the value of the correspondenceStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceStreet(String value) { + this.correspondenceStreet = value; + } + + /** + * Gets the value of the correspondenceHouseNumber property. + * + */ + public int getCorrespondenceHouseNumber() { + return correspondenceHouseNumber; + } + + /** + * Sets the value of the correspondenceHouseNumber property. + * + */ + public void setCorrespondenceHouseNumber(int value) { + this.correspondenceHouseNumber = value; + } + + /** + * Gets the value of the correspondenceHouseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceHouseNumberAddition() { + return correspondenceHouseNumberAddition; + } + + /** + * Sets the value of the correspondenceHouseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceHouseNumberAddition(String value) { + this.correspondenceHouseNumberAddition = value; + } + + /** + * Gets the value of the correspondenceCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCountry() { + return correspondenceCountry; + } + + /** + * Sets the value of the correspondenceCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCountry(String value) { + this.correspondenceCountry = value; + } + + /** + * Gets the value of the telephoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNumber() { + return telephoneNumber; + } + + /** + * Sets the value of the telephoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNumber(String value) { + this.telephoneNumber = value; + } + + /** + * Gets the value of the mobileNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMobileNumber() { + return mobileNumber; + } + + /** + * Sets the value of the mobileNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMobileNumber(String value) { + this.mobileNumber = value; + } + + /** + * Gets the value of the domainName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDomainName() { + return domainName; + } + + /** + * Sets the value of the domainName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDomainName(String value) { + this.domainName = value; + } + + /** + * Gets the value of the contactTitle1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactTitle1() { + return contactTitle1; + } + + /** + * Sets the value of the contactTitle1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactTitle1(String value) { + this.contactTitle1 = value; + } + + /** + * Gets the value of the contactTitle2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactTitle2() { + return contactTitle2; + } + + /** + * Sets the value of the contactTitle2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactTitle2(String value) { + this.contactTitle2 = value; + } + + /** + * Gets the value of the contactInitials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactInitials() { + return contactInitials; + } + + /** + * Sets the value of the contactInitials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactInitials(String value) { + this.contactInitials = value; + } + + /** + * Gets the value of the contactPrefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactPrefix() { + return contactPrefix; + } + + /** + * Sets the value of the contactPrefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactPrefix(String value) { + this.contactPrefix = value; + } + + /** + * Gets the value of the contactSurname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactSurname() { + return contactSurname; + } + + /** + * Sets the value of the contactSurname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactSurname(String value) { + this.contactSurname = value; + } + + /** + * Gets the value of the contactGender property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactGender() { + return contactGender; + } + + /** + * Sets the value of the contactGender property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactGender(String value) { + this.contactGender = value; + } + + /** + * Gets the value of the primarySbiCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimarySbiCode() { + return primarySbiCode; + } + + /** + * Sets the value of the primarySbiCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimarySbiCode(String value) { + this.primarySbiCode = value; + } + + /** + * Gets the value of the secondarySbiCode1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySbiCode1() { + return secondarySbiCode1; + } + + /** + * Sets the value of the secondarySbiCode1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySbiCode1(String value) { + this.secondarySbiCode1 = value; + } + + /** + * Gets the value of the secondarySbiCode2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySbiCode2() { + return secondarySbiCode2; + } + + /** + * Sets the value of the secondarySbiCode2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySbiCode2(String value) { + this.secondarySbiCode2 = value; + } + + /** + * Gets the value of the primarySbiCodeText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimarySbiCodeText() { + return primarySbiCodeText; + } + + /** + * Sets the value of the primarySbiCodeText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimarySbiCodeText(String value) { + this.primarySbiCodeText = value; + } + + /** + * Gets the value of the secondarySbiCode1Text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySbiCode1Text() { + return secondarySbiCode1Text; + } + + /** + * Sets the value of the secondarySbiCode1Text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySbiCode1Text(String value) { + this.secondarySbiCode1Text = value; + } + + /** + * Gets the value of the secondarySbiCode2Text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySbiCode2Text() { + return secondarySbiCode2Text; + } + + /** + * Sets the value of the secondarySbiCode2Text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySbiCode2Text(String value) { + this.secondarySbiCode2Text = value; + } + + /** + * Gets the value of the personnel property. + * + */ + public int getPersonnel() { + return personnel; + } + + /** + * Sets the value of the personnel property. + * + */ + public void setPersonnel(int value) { + this.personnel = value; + } + + /** + * Gets the value of the classPersonnel property. + * + */ + public int getClassPersonnel() { + return classPersonnel; + } + + /** + * Sets the value of the classPersonnel property. + * + */ + public void setClassPersonnel(int value) { + this.classPersonnel = value; + } + + /** + * Gets the value of the personnelFulltime property. + * + */ + public int getPersonnelFulltime() { + return personnelFulltime; + } + + /** + * Sets the value of the personnelFulltime property. + * + */ + public void setPersonnelFulltime(int value) { + this.personnelFulltime = value; + } + + /** + * Gets the value of the classPersonnelFulltime property. + * + */ + public int getClassPersonnelFulltime() { + return classPersonnelFulltime; + } + + /** + * Sets the value of the classPersonnelFulltime property. + * + */ + public void setClassPersonnelFulltime(int value) { + this.classPersonnelFulltime = value; + } + + /** + * Gets the value of the personnelReferenceDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getPersonnelReferenceDate() { + return personnelReferenceDate; + } + + /** + * Sets the value of the personnelReferenceDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setPersonnelReferenceDate(DutchBusinessDateV2 value) { + this.personnelReferenceDate = value; + } + + /** + * Gets the value of the personnelCi property. + * + */ + public int getPersonnelCi() { + return personnelCi; + } + + /** + * Sets the value of the personnelCi property. + * + */ + public void setPersonnelCi(int value) { + this.personnelCi = value; + } + + /** + * Gets the value of the classPersonnelCi property. + * + */ + public int getClassPersonnelCi() { + return classPersonnelCi; + } + + /** + * Sets the value of the classPersonnelCi property. + * + */ + public void setClassPersonnelCi(int value) { + this.classPersonnelCi = value; + } + + /** + * Gets the value of the personnelCiReferenceDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getPersonnelCiReferenceDate() { + return personnelCiReferenceDate; + } + + /** + * Sets the value of the personnelCiReferenceDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setPersonnelCiReferenceDate(DutchBusinessDateV2 value) { + this.personnelCiReferenceDate = value; + } + + /** + * Gets the value of the indicationImport property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicationImport() { + return indicationImport; + } + + /** + * Sets the value of the indicationImport property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicationImport(Boolean value) { + this.indicationImport = value; + } + + /** + * Gets the value of the indicationExport property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicationExport() { + return indicationExport; + } + + /** + * Sets the value of the indicationExport property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicationExport(Boolean value) { + this.indicationExport = value; + } + + /** + * Gets the value of the indicationEconomicallyActive property. + * + */ + public boolean isIndicationEconomicallyActive() { + return indicationEconomicallyActive; + } + + /** + * Sets the value of the indicationEconomicallyActive property. + * + */ + public void setIndicationEconomicallyActive(boolean value) { + this.indicationEconomicallyActive = value; + } + + /** + * Gets the value of the indicationNonMailing property. + * + */ + public boolean isIndicationNonMailing() { + return indicationNonMailing; + } + + /** + * Sets the value of the indicationNonMailing property. + * + */ + public void setIndicationNonMailing(boolean value) { + this.indicationNonMailing = value; + } + + /** + * Gets the value of the indicationBankruptcy property. + * + */ + public boolean isIndicationBankruptcy() { + return indicationBankruptcy; + } + + /** + * Sets the value of the indicationBankruptcy property. + * + */ + public void setIndicationBankruptcy(boolean value) { + this.indicationBankruptcy = value; + } + + /** + * Gets the value of the indicationDip property. + * + */ + public boolean isIndicationDip() { + return indicationDip; + } + + /** + * Sets the value of the indicationDip property. + * + */ + public void setIndicationDip(boolean value) { + this.indicationDip = value; + } + + /** + * Gets the value of the authorizedShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getAuthorizedShareCapital() { + return authorizedShareCapital; + } + + /** + * Sets the value of the authorizedShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setAuthorizedShareCapital(Long value) { + this.authorizedShareCapital = value; + } + + /** + * Gets the value of the authorizedShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAuthorizedShareCapitalCurrency() { + return authorizedShareCapitalCurrency; + } + + /** + * Sets the value of the authorizedShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAuthorizedShareCapitalCurrency(String value) { + this.authorizedShareCapitalCurrency = value; + } + + /** + * Gets the value of the paidUpShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getPaidUpShareCapital() { + return paidUpShareCapital; + } + + /** + * Sets the value of the paidUpShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setPaidUpShareCapital(Long value) { + this.paidUpShareCapital = value; + } + + /** + * Gets the value of the paidUpShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPaidUpShareCapitalCurrency() { + return paidUpShareCapitalCurrency; + } + + /** + * Sets the value of the paidUpShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPaidUpShareCapitalCurrency(String value) { + this.paidUpShareCapitalCurrency = value; + } + + /** + * Gets the value of the issuedShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getIssuedShareCapital() { + return issuedShareCapital; + } + + /** + * Sets the value of the issuedShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setIssuedShareCapital(Long value) { + this.issuedShareCapital = value; + } + + /** + * Gets the value of the issuedShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIssuedShareCapitalCurrency() { + return issuedShareCapitalCurrency; + } + + /** + * Sets the value of the issuedShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIssuedShareCapitalCurrency(String value) { + this.issuedShareCapitalCurrency = value; + } + + /** + * Gets the value of the foundingDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getFoundingDate() { + return foundingDate; + } + + /** + * Sets the value of the foundingDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setFoundingDate(DutchBusinessDateV2 value) { + this.foundingDate = value; + } + + /** + * Gets the value of the discontinuationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getDiscontinuationDate() { + return discontinuationDate; + } + + /** + * Sets the value of the discontinuationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setDiscontinuationDate(DutchBusinessDateV2 value) { + this.discontinuationDate = value; + } + + /** + * Gets the value of the continuationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getContinuationDate() { + return continuationDate; + } + + /** + * Sets the value of the continuationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setContinuationDate(DutchBusinessDateV2 value) { + this.continuationDate = value; + } + + /** + * Gets the value of the establishmentDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getEstablishmentDate() { + return establishmentDate; + } + + /** + * Sets the value of the establishmentDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setEstablishmentDate(DutchBusinessDateV2 value) { + this.establishmentDate = value; + } + + /** + * Gets the value of the annualFinancialStatementSummary property. + * + * @return + * possible object is + * {@link DutchBusinessAnnualFinancialStatementSummary } + * + */ + public DutchBusinessAnnualFinancialStatementSummary getAnnualFinancialStatementSummary() { + return annualFinancialStatementSummary; + } + + /** + * Sets the value of the annualFinancialStatementSummary property. + * + * @param value + * allowed object is + * {@link DutchBusinessAnnualFinancialStatementSummary } + * + */ + public void setAnnualFinancialStatementSummary(DutchBusinessAnnualFinancialStatementSummary value) { + this.annualFinancialStatementSummary = value; + } + + /** + * Gets the value of the structure property. + * + * @return + * possible object is + * {@link DutchBusinessStructure } + * + */ + public DutchBusinessStructure getStructure() { + return structure; + } + + /** + * Sets the value of the structure property. + * + * @param value + * allowed object is + * {@link DutchBusinessStructure } + * + */ + public void setStructure(DutchBusinessStructure value) { + this.structure = value; + } + + /** + * Gets the value of the sbiCollection property. + * + * @return + * possible object is + * {@link DutchBusinessSBICollection } + * + */ + public DutchBusinessSBICollection getSbiCollection() { + return sbiCollection; + } + + /** + * Sets the value of the sbiCollection property. + * + * @param value + * allowed object is + * {@link DutchBusinessSBICollection } + * + */ + public void setSbiCollection(DutchBusinessSBICollection value) { + this.sbiCollection = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierV3.java new file mode 100644 index 0000000..902e92d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierV3.java @@ -0,0 +1,1544 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessDossierV3 complex type. + * + *

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

+ * <complexType name="DutchBusinessDossierV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="update_info" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateReference"/>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="main_establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="indication_main_establishment" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="chamber_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_form_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="indication_organisation_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_name_45" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_name_full" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessFormattedAddress" minOccurs="0"/>
+ *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessFormattedAddress" minOccurs="0"/>
+ *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mobile_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="domain_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_title1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_title2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_initials" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_surname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_gender" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="primary_sbi_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="secondary_sbi_code1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="secondary_sbi_code2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="primary_sbi_code_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="secondary_sbi_code1_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="secondary_sbi_code2_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="class_personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="personnel_fulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="class_personnel_fulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="personnel_reference_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="personnel_ci" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="class_personnel_ci" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="personnel_ci_reference_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="indication_import" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="indication_export" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="indication_economically_active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indication_non_mailing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indication_bankruptcy" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indication_dip" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="insolvencies" type="{http://www.webservices.nl/soap/}DutchBusinessInsolvencyArray" minOccurs="0"/>
+ *         <element name="authorized_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="authorized_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="paid_up_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="paid_up_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="issued_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="issued_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="discontinuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="continuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="establishment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="annual_financial_statement_summary" type="{http://www.webservices.nl/soap/}DutchBusinessAnnualFinancialStatementSummary" minOccurs="0"/>
+ *         <element name="structure" type="{http://www.webservices.nl/soap/}DutchBusinessStructure" minOccurs="0"/>
+ *         <element name="sbi_collection" type="{http://www.webservices.nl/soap/}DutchBusinessSBICollection" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessDossierV3", propOrder = { + +}) +public class DutchBusinessDossierV3 { + + @XmlElement(name = "update_info", required = true) + protected DutchBusinessUpdateReference updateInfo; + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(name = "main_establishment_number") + protected String mainEstablishmentNumber; + @XmlElement(name = "indication_main_establishment") + protected boolean indicationMainEstablishment; + @XmlElement(name = "rsin_number") + protected String rsinNumber; + @XmlElement(name = "chamber_number", required = true) + protected String chamberNumber; + @XmlElement(name = "legal_form_code", required = true) + protected String legalFormCode; + @XmlElement(name = "legal_form_text", required = true) + protected String legalFormText; + @XmlElement(name = "indication_organisation_code", required = true) + protected String indicationOrganisationCode; + @XmlElement(name = "legal_name", required = true) + protected String legalName; + @XmlElement(name = "trade_name_45", required = true) + protected String tradeName45; + @XmlElement(name = "trade_name_full", required = true) + protected String tradeNameFull; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + @XmlElement(name = "establishment_address") + protected DutchBusinessFormattedAddress establishmentAddress; + @XmlElement(name = "correspondence_address") + protected DutchBusinessFormattedAddress correspondenceAddress; + @XmlElement(name = "telephone_number", required = true) + protected String telephoneNumber; + @XmlElement(name = "mobile_number", required = true) + protected String mobileNumber; + @XmlElement(name = "domain_name", required = true) + protected String domainName; + @XmlElement(name = "contact_title1", required = true) + protected String contactTitle1; + @XmlElement(name = "contact_title2", required = true) + protected String contactTitle2; + @XmlElement(name = "contact_initials", required = true) + protected String contactInitials; + @XmlElement(name = "contact_prefix", required = true) + protected String contactPrefix; + @XmlElement(name = "contact_surname", required = true) + protected String contactSurname; + @XmlElement(name = "contact_gender", required = true) + protected String contactGender; + @XmlElement(name = "primary_sbi_code", required = true) + protected String primarySbiCode; + @XmlElement(name = "secondary_sbi_code1", required = true) + protected String secondarySbiCode1; + @XmlElement(name = "secondary_sbi_code2", required = true) + protected String secondarySbiCode2; + @XmlElement(name = "primary_sbi_code_text", required = true) + protected String primarySbiCodeText; + @XmlElement(name = "secondary_sbi_code1_text", required = true) + protected String secondarySbiCode1Text; + @XmlElement(name = "secondary_sbi_code2_text", required = true) + protected String secondarySbiCode2Text; + protected int personnel; + @XmlElement(name = "class_personnel") + protected int classPersonnel; + @XmlElement(name = "personnel_fulltime") + protected int personnelFulltime; + @XmlElement(name = "class_personnel_fulltime") + protected int classPersonnelFulltime; + @XmlElement(name = "personnel_reference_date") + protected DutchBusinessDateV3 personnelReferenceDate; + @XmlElement(name = "personnel_ci") + protected int personnelCi; + @XmlElement(name = "class_personnel_ci") + protected int classPersonnelCi; + @XmlElement(name = "personnel_ci_reference_date") + protected DutchBusinessDateV3 personnelCiReferenceDate; + @XmlElement(name = "indication_import") + protected Boolean indicationImport; + @XmlElement(name = "indication_export") + protected Boolean indicationExport; + @XmlElement(name = "indication_economically_active") + protected boolean indicationEconomicallyActive; + @XmlElement(name = "indication_non_mailing") + protected boolean indicationNonMailing; + @XmlElement(name = "indication_bankruptcy") + protected boolean indicationBankruptcy; + @XmlElement(name = "indication_dip") + protected boolean indicationDip; + protected DutchBusinessInsolvencyArray insolvencies; + @XmlElement(name = "authorized_share_capital") + protected Long authorizedShareCapital; + @XmlElement(name = "authorized_share_capital_currency") + protected String authorizedShareCapitalCurrency; + @XmlElement(name = "paid_up_share_capital") + protected Long paidUpShareCapital; + @XmlElement(name = "paid_up_share_capital_currency") + protected String paidUpShareCapitalCurrency; + @XmlElement(name = "issued_share_capital") + protected Long issuedShareCapital; + @XmlElement(name = "issued_share_capital_currency") + protected String issuedShareCapitalCurrency; + @XmlElement(name = "founding_date") + protected DutchBusinessDateV3 foundingDate; + @XmlElement(name = "discontinuation_date") + protected DutchBusinessDateV3 discontinuationDate; + @XmlElement(name = "continuation_date") + protected DutchBusinessDateV3 continuationDate; + @XmlElement(name = "establishment_date") + protected DutchBusinessDateV3 establishmentDate; + @XmlElement(name = "annual_financial_statement_summary") + protected DutchBusinessAnnualFinancialStatementSummary annualFinancialStatementSummary; + protected DutchBusinessStructure structure; + @XmlElement(name = "sbi_collection") + protected DutchBusinessSBICollection sbiCollection; + + /** + * Gets the value of the updateInfo property. + * + * @return + * possible object is + * {@link DutchBusinessUpdateReference } + * + */ + public DutchBusinessUpdateReference getUpdateInfo() { + return updateInfo; + } + + /** + * Sets the value of the updateInfo property. + * + * @param value + * allowed object is + * {@link DutchBusinessUpdateReference } + * + */ + public void setUpdateInfo(DutchBusinessUpdateReference value) { + this.updateInfo = value; + } + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the mainEstablishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMainEstablishmentNumber() { + return mainEstablishmentNumber; + } + + /** + * Sets the value of the mainEstablishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMainEstablishmentNumber(String value) { + this.mainEstablishmentNumber = value; + } + + /** + * Gets the value of the indicationMainEstablishment property. + * + */ + public boolean isIndicationMainEstablishment() { + return indicationMainEstablishment; + } + + /** + * Sets the value of the indicationMainEstablishment property. + * + */ + public void setIndicationMainEstablishment(boolean value) { + this.indicationMainEstablishment = value; + } + + /** + * Gets the value of the rsinNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsinNumber() { + return rsinNumber; + } + + /** + * Sets the value of the rsinNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsinNumber(String value) { + this.rsinNumber = value; + } + + /** + * Gets the value of the chamberNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getChamberNumber() { + return chamberNumber; + } + + /** + * Sets the value of the chamberNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setChamberNumber(String value) { + this.chamberNumber = value; + } + + /** + * Gets the value of the legalFormCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormCode() { + return legalFormCode; + } + + /** + * Sets the value of the legalFormCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormCode(String value) { + this.legalFormCode = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the indicationOrganisationCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIndicationOrganisationCode() { + return indicationOrganisationCode; + } + + /** + * Sets the value of the indicationOrganisationCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIndicationOrganisationCode(String value) { + this.indicationOrganisationCode = value; + } + + /** + * Gets the value of the legalName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalName() { + return legalName; + } + + /** + * Sets the value of the legalName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalName(String value) { + this.legalName = value; + } + + /** + * Gets the value of the tradeName45 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName45() { + return tradeName45; + } + + /** + * Sets the value of the tradeName45 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName45(String value) { + this.tradeName45 = value; + } + + /** + * Gets the value of the tradeNameFull property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeNameFull() { + return tradeNameFull; + } + + /** + * Sets the value of the tradeNameFull property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeNameFull(String value) { + this.tradeNameFull = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + + /** + * Gets the value of the establishmentAddress property. + * + * @return + * possible object is + * {@link DutchBusinessFormattedAddress } + * + */ + public DutchBusinessFormattedAddress getEstablishmentAddress() { + return establishmentAddress; + } + + /** + * Sets the value of the establishmentAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessFormattedAddress } + * + */ + public void setEstablishmentAddress(DutchBusinessFormattedAddress value) { + this.establishmentAddress = value; + } + + /** + * Gets the value of the correspondenceAddress property. + * + * @return + * possible object is + * {@link DutchBusinessFormattedAddress } + * + */ + public DutchBusinessFormattedAddress getCorrespondenceAddress() { + return correspondenceAddress; + } + + /** + * Sets the value of the correspondenceAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessFormattedAddress } + * + */ + public void setCorrespondenceAddress(DutchBusinessFormattedAddress value) { + this.correspondenceAddress = value; + } + + /** + * Gets the value of the telephoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNumber() { + return telephoneNumber; + } + + /** + * Sets the value of the telephoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNumber(String value) { + this.telephoneNumber = value; + } + + /** + * Gets the value of the mobileNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMobileNumber() { + return mobileNumber; + } + + /** + * Sets the value of the mobileNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMobileNumber(String value) { + this.mobileNumber = value; + } + + /** + * Gets the value of the domainName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDomainName() { + return domainName; + } + + /** + * Sets the value of the domainName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDomainName(String value) { + this.domainName = value; + } + + /** + * Gets the value of the contactTitle1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactTitle1() { + return contactTitle1; + } + + /** + * Sets the value of the contactTitle1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactTitle1(String value) { + this.contactTitle1 = value; + } + + /** + * Gets the value of the contactTitle2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactTitle2() { + return contactTitle2; + } + + /** + * Sets the value of the contactTitle2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactTitle2(String value) { + this.contactTitle2 = value; + } + + /** + * Gets the value of the contactInitials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactInitials() { + return contactInitials; + } + + /** + * Sets the value of the contactInitials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactInitials(String value) { + this.contactInitials = value; + } + + /** + * Gets the value of the contactPrefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactPrefix() { + return contactPrefix; + } + + /** + * Sets the value of the contactPrefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactPrefix(String value) { + this.contactPrefix = value; + } + + /** + * Gets the value of the contactSurname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactSurname() { + return contactSurname; + } + + /** + * Sets the value of the contactSurname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactSurname(String value) { + this.contactSurname = value; + } + + /** + * Gets the value of the contactGender property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactGender() { + return contactGender; + } + + /** + * Sets the value of the contactGender property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactGender(String value) { + this.contactGender = value; + } + + /** + * Gets the value of the primarySbiCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimarySbiCode() { + return primarySbiCode; + } + + /** + * Sets the value of the primarySbiCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimarySbiCode(String value) { + this.primarySbiCode = value; + } + + /** + * Gets the value of the secondarySbiCode1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySbiCode1() { + return secondarySbiCode1; + } + + /** + * Sets the value of the secondarySbiCode1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySbiCode1(String value) { + this.secondarySbiCode1 = value; + } + + /** + * Gets the value of the secondarySbiCode2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySbiCode2() { + return secondarySbiCode2; + } + + /** + * Sets the value of the secondarySbiCode2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySbiCode2(String value) { + this.secondarySbiCode2 = value; + } + + /** + * Gets the value of the primarySbiCodeText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimarySbiCodeText() { + return primarySbiCodeText; + } + + /** + * Sets the value of the primarySbiCodeText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimarySbiCodeText(String value) { + this.primarySbiCodeText = value; + } + + /** + * Gets the value of the secondarySbiCode1Text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySbiCode1Text() { + return secondarySbiCode1Text; + } + + /** + * Sets the value of the secondarySbiCode1Text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySbiCode1Text(String value) { + this.secondarySbiCode1Text = value; + } + + /** + * Gets the value of the secondarySbiCode2Text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySbiCode2Text() { + return secondarySbiCode2Text; + } + + /** + * Sets the value of the secondarySbiCode2Text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySbiCode2Text(String value) { + this.secondarySbiCode2Text = value; + } + + /** + * Gets the value of the personnel property. + * + */ + public int getPersonnel() { + return personnel; + } + + /** + * Sets the value of the personnel property. + * + */ + public void setPersonnel(int value) { + this.personnel = value; + } + + /** + * Gets the value of the classPersonnel property. + * + */ + public int getClassPersonnel() { + return classPersonnel; + } + + /** + * Sets the value of the classPersonnel property. + * + */ + public void setClassPersonnel(int value) { + this.classPersonnel = value; + } + + /** + * Gets the value of the personnelFulltime property. + * + */ + public int getPersonnelFulltime() { + return personnelFulltime; + } + + /** + * Sets the value of the personnelFulltime property. + * + */ + public void setPersonnelFulltime(int value) { + this.personnelFulltime = value; + } + + /** + * Gets the value of the classPersonnelFulltime property. + * + */ + public int getClassPersonnelFulltime() { + return classPersonnelFulltime; + } + + /** + * Sets the value of the classPersonnelFulltime property. + * + */ + public void setClassPersonnelFulltime(int value) { + this.classPersonnelFulltime = value; + } + + /** + * Gets the value of the personnelReferenceDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getPersonnelReferenceDate() { + return personnelReferenceDate; + } + + /** + * Sets the value of the personnelReferenceDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setPersonnelReferenceDate(DutchBusinessDateV3 value) { + this.personnelReferenceDate = value; + } + + /** + * Gets the value of the personnelCi property. + * + */ + public int getPersonnelCi() { + return personnelCi; + } + + /** + * Sets the value of the personnelCi property. + * + */ + public void setPersonnelCi(int value) { + this.personnelCi = value; + } + + /** + * Gets the value of the classPersonnelCi property. + * + */ + public int getClassPersonnelCi() { + return classPersonnelCi; + } + + /** + * Sets the value of the classPersonnelCi property. + * + */ + public void setClassPersonnelCi(int value) { + this.classPersonnelCi = value; + } + + /** + * Gets the value of the personnelCiReferenceDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getPersonnelCiReferenceDate() { + return personnelCiReferenceDate; + } + + /** + * Sets the value of the personnelCiReferenceDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setPersonnelCiReferenceDate(DutchBusinessDateV3 value) { + this.personnelCiReferenceDate = value; + } + + /** + * Gets the value of the indicationImport property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicationImport() { + return indicationImport; + } + + /** + * Sets the value of the indicationImport property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicationImport(Boolean value) { + this.indicationImport = value; + } + + /** + * Gets the value of the indicationExport property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicationExport() { + return indicationExport; + } + + /** + * Sets the value of the indicationExport property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicationExport(Boolean value) { + this.indicationExport = value; + } + + /** + * Gets the value of the indicationEconomicallyActive property. + * + */ + public boolean isIndicationEconomicallyActive() { + return indicationEconomicallyActive; + } + + /** + * Sets the value of the indicationEconomicallyActive property. + * + */ + public void setIndicationEconomicallyActive(boolean value) { + this.indicationEconomicallyActive = value; + } + + /** + * Gets the value of the indicationNonMailing property. + * + */ + public boolean isIndicationNonMailing() { + return indicationNonMailing; + } + + /** + * Sets the value of the indicationNonMailing property. + * + */ + public void setIndicationNonMailing(boolean value) { + this.indicationNonMailing = value; + } + + /** + * Gets the value of the indicationBankruptcy property. + * + */ + public boolean isIndicationBankruptcy() { + return indicationBankruptcy; + } + + /** + * Sets the value of the indicationBankruptcy property. + * + */ + public void setIndicationBankruptcy(boolean value) { + this.indicationBankruptcy = value; + } + + /** + * Gets the value of the indicationDip property. + * + */ + public boolean isIndicationDip() { + return indicationDip; + } + + /** + * Sets the value of the indicationDip property. + * + */ + public void setIndicationDip(boolean value) { + this.indicationDip = value; + } + + /** + * Gets the value of the insolvencies property. + * + * @return + * possible object is + * {@link DutchBusinessInsolvencyArray } + * + */ + public DutchBusinessInsolvencyArray getInsolvencies() { + return insolvencies; + } + + /** + * Sets the value of the insolvencies property. + * + * @param value + * allowed object is + * {@link DutchBusinessInsolvencyArray } + * + */ + public void setInsolvencies(DutchBusinessInsolvencyArray value) { + this.insolvencies = value; + } + + /** + * Gets the value of the authorizedShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getAuthorizedShareCapital() { + return authorizedShareCapital; + } + + /** + * Sets the value of the authorizedShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setAuthorizedShareCapital(Long value) { + this.authorizedShareCapital = value; + } + + /** + * Gets the value of the authorizedShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAuthorizedShareCapitalCurrency() { + return authorizedShareCapitalCurrency; + } + + /** + * Sets the value of the authorizedShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAuthorizedShareCapitalCurrency(String value) { + this.authorizedShareCapitalCurrency = value; + } + + /** + * Gets the value of the paidUpShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getPaidUpShareCapital() { + return paidUpShareCapital; + } + + /** + * Sets the value of the paidUpShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setPaidUpShareCapital(Long value) { + this.paidUpShareCapital = value; + } + + /** + * Gets the value of the paidUpShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPaidUpShareCapitalCurrency() { + return paidUpShareCapitalCurrency; + } + + /** + * Sets the value of the paidUpShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPaidUpShareCapitalCurrency(String value) { + this.paidUpShareCapitalCurrency = value; + } + + /** + * Gets the value of the issuedShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getIssuedShareCapital() { + return issuedShareCapital; + } + + /** + * Sets the value of the issuedShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setIssuedShareCapital(Long value) { + this.issuedShareCapital = value; + } + + /** + * Gets the value of the issuedShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIssuedShareCapitalCurrency() { + return issuedShareCapitalCurrency; + } + + /** + * Sets the value of the issuedShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIssuedShareCapitalCurrency(String value) { + this.issuedShareCapitalCurrency = value; + } + + /** + * Gets the value of the foundingDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getFoundingDate() { + return foundingDate; + } + + /** + * Sets the value of the foundingDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setFoundingDate(DutchBusinessDateV3 value) { + this.foundingDate = value; + } + + /** + * Gets the value of the discontinuationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getDiscontinuationDate() { + return discontinuationDate; + } + + /** + * Sets the value of the discontinuationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setDiscontinuationDate(DutchBusinessDateV3 value) { + this.discontinuationDate = value; + } + + /** + * Gets the value of the continuationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getContinuationDate() { + return continuationDate; + } + + /** + * Sets the value of the continuationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setContinuationDate(DutchBusinessDateV3 value) { + this.continuationDate = value; + } + + /** + * Gets the value of the establishmentDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getEstablishmentDate() { + return establishmentDate; + } + + /** + * Sets the value of the establishmentDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setEstablishmentDate(DutchBusinessDateV3 value) { + this.establishmentDate = value; + } + + /** + * Gets the value of the annualFinancialStatementSummary property. + * + * @return + * possible object is + * {@link DutchBusinessAnnualFinancialStatementSummary } + * + */ + public DutchBusinessAnnualFinancialStatementSummary getAnnualFinancialStatementSummary() { + return annualFinancialStatementSummary; + } + + /** + * Sets the value of the annualFinancialStatementSummary property. + * + * @param value + * allowed object is + * {@link DutchBusinessAnnualFinancialStatementSummary } + * + */ + public void setAnnualFinancialStatementSummary(DutchBusinessAnnualFinancialStatementSummary value) { + this.annualFinancialStatementSummary = value; + } + + /** + * Gets the value of the structure property. + * + * @return + * possible object is + * {@link DutchBusinessStructure } + * + */ + public DutchBusinessStructure getStructure() { + return structure; + } + + /** + * Sets the value of the structure property. + * + * @param value + * allowed object is + * {@link DutchBusinessStructure } + * + */ + public void setStructure(DutchBusinessStructure value) { + this.structure = value; + } + + /** + * Gets the value of the sbiCollection property. + * + * @return + * possible object is + * {@link DutchBusinessSBICollection } + * + */ + public DutchBusinessSBICollection getSbiCollection() { + return sbiCollection; + } + + /** + * Sets the value of the sbiCollection property. + * + * @param value + * allowed object is + * {@link DutchBusinessSBICollection } + * + */ + public void setSbiCollection(DutchBusinessSBICollection value) { + this.sbiCollection = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterprise.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterprise.java new file mode 100644 index 0000000..cc8f0e0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterprise.java @@ -0,0 +1,900 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessEnterprise complex type. + * + *

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

+ * <complexType name="DutchBusinessEnterprise">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="sbi_codes_text" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="establishment_postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="establishment_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="correspondence_postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="correspondence_house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="correspondence_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="correspondence_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="fax_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="domain_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="establishment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="incorporation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="discontinuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="personnel" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessEnterprise", propOrder = { + +}) +public class DutchBusinessEnterprise { + + @XmlElement(name = "rsin_number") + protected String rsinNumber; + protected String name; + protected String registration; + protected String status; + @XmlElement(name = "legal_form_text") + protected String legalFormText; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + protected String activity; + protected String description; + @XmlElement(name = "sbi_codes") + protected StringArray sbiCodes; + @XmlElement(name = "sbi_codes_text") + protected StringArray sbiCodesText; + @XmlElement(name = "establishment_postcode") + protected String establishmentPostcode; + @XmlElement(name = "establishment_city") + protected String establishmentCity; + @XmlElement(name = "establishment_street") + protected String establishmentStreet; + @XmlElement(name = "establishment_house_number") + protected Integer establishmentHouseNumber; + @XmlElement(name = "establishment_house_number_addition") + protected String establishmentHouseNumberAddition; + @XmlElement(name = "establishment_country") + protected String establishmentCountry; + @XmlElement(name = "correspondence_postcode") + protected String correspondencePostcode; + @XmlElement(name = "correspondence_city") + protected String correspondenceCity; + @XmlElement(name = "correspondence_street") + protected String correspondenceStreet; + @XmlElement(name = "correspondence_house_number") + protected Integer correspondenceHouseNumber; + @XmlElement(name = "correspondence_house_number_addition") + protected String correspondenceHouseNumberAddition; + @XmlElement(name = "correspondence_country") + protected String correspondenceCountry; + @XmlElement(name = "telephone_numbers") + protected StringArray telephoneNumbers; + @XmlElement(name = "fax_numbers") + protected StringArray faxNumbers; + @XmlElement(name = "email_addresses") + protected StringArray emailAddresses; + @XmlElement(name = "domain_names") + protected StringArray domainNames; + @XmlElement(name = "establishment_date") + protected DutchBusinessDate establishmentDate; + @XmlElement(name = "incorporation_date") + protected DutchBusinessDate incorporationDate; + @XmlElement(name = "founding_date") + protected DutchBusinessDate foundingDate; + @XmlElement(name = "discontinuation_date") + protected DutchBusinessDate discontinuationDate; + @XmlElement(name = "date_since") + protected DutchBusinessDate dateSince; + protected Integer personnel; + + /** + * Gets the value of the rsinNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsinNumber() { + return rsinNumber; + } + + /** + * Sets the value of the rsinNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsinNumber(String value) { + this.rsinNumber = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the registration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistration() { + return registration; + } + + /** + * Sets the value of the registration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistration(String value) { + this.registration = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + + /** + * Gets the value of the activity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getActivity() { + return activity; + } + + /** + * Sets the value of the activity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setActivity(String value) { + this.activity = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the sbiCodes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getSbiCodes() { + return sbiCodes; + } + + /** + * Sets the value of the sbiCodes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setSbiCodes(StringArray value) { + this.sbiCodes = value; + } + + /** + * Gets the value of the sbiCodesText property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getSbiCodesText() { + return sbiCodesText; + } + + /** + * Sets the value of the sbiCodesText property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setSbiCodesText(StringArray value) { + this.sbiCodesText = value; + } + + /** + * Gets the value of the establishmentPostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentPostcode() { + return establishmentPostcode; + } + + /** + * Sets the value of the establishmentPostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentPostcode(String value) { + this.establishmentPostcode = value; + } + + /** + * Gets the value of the establishmentCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCity() { + return establishmentCity; + } + + /** + * Sets the value of the establishmentCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCity(String value) { + this.establishmentCity = value; + } + + /** + * Gets the value of the establishmentStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentStreet() { + return establishmentStreet; + } + + /** + * Sets the value of the establishmentStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentStreet(String value) { + this.establishmentStreet = value; + } + + /** + * Gets the value of the establishmentHouseNumber property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getEstablishmentHouseNumber() { + return establishmentHouseNumber; + } + + /** + * Sets the value of the establishmentHouseNumber property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setEstablishmentHouseNumber(Integer value) { + this.establishmentHouseNumber = value; + } + + /** + * Gets the value of the establishmentHouseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentHouseNumberAddition() { + return establishmentHouseNumberAddition; + } + + /** + * Sets the value of the establishmentHouseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentHouseNumberAddition(String value) { + this.establishmentHouseNumberAddition = value; + } + + /** + * Gets the value of the establishmentCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCountry() { + return establishmentCountry; + } + + /** + * Sets the value of the establishmentCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCountry(String value) { + this.establishmentCountry = value; + } + + /** + * Gets the value of the correspondencePostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondencePostcode() { + return correspondencePostcode; + } + + /** + * Sets the value of the correspondencePostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondencePostcode(String value) { + this.correspondencePostcode = value; + } + + /** + * Gets the value of the correspondenceCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCity() { + return correspondenceCity; + } + + /** + * Sets the value of the correspondenceCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCity(String value) { + this.correspondenceCity = value; + } + + /** + * Gets the value of the correspondenceStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceStreet() { + return correspondenceStreet; + } + + /** + * Sets the value of the correspondenceStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceStreet(String value) { + this.correspondenceStreet = value; + } + + /** + * Gets the value of the correspondenceHouseNumber property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCorrespondenceHouseNumber() { + return correspondenceHouseNumber; + } + + /** + * Sets the value of the correspondenceHouseNumber property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCorrespondenceHouseNumber(Integer value) { + this.correspondenceHouseNumber = value; + } + + /** + * Gets the value of the correspondenceHouseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceHouseNumberAddition() { + return correspondenceHouseNumberAddition; + } + + /** + * Sets the value of the correspondenceHouseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceHouseNumberAddition(String value) { + this.correspondenceHouseNumberAddition = value; + } + + /** + * Gets the value of the correspondenceCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCountry() { + return correspondenceCountry; + } + + /** + * Sets the value of the correspondenceCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCountry(String value) { + this.correspondenceCountry = value; + } + + /** + * Gets the value of the telephoneNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTelephoneNumbers() { + return telephoneNumbers; + } + + /** + * Sets the value of the telephoneNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTelephoneNumbers(StringArray value) { + this.telephoneNumbers = value; + } + + /** + * Gets the value of the faxNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getFaxNumbers() { + return faxNumbers; + } + + /** + * Sets the value of the faxNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setFaxNumbers(StringArray value) { + this.faxNumbers = value; + } + + /** + * Gets the value of the emailAddresses property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getEmailAddresses() { + return emailAddresses; + } + + /** + * Sets the value of the emailAddresses property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setEmailAddresses(StringArray value) { + this.emailAddresses = value; + } + + /** + * Gets the value of the domainNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getDomainNames() { + return domainNames; + } + + /** + * Sets the value of the domainNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setDomainNames(StringArray value) { + this.domainNames = value; + } + + /** + * Gets the value of the establishmentDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getEstablishmentDate() { + return establishmentDate; + } + + /** + * Sets the value of the establishmentDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setEstablishmentDate(DutchBusinessDate value) { + this.establishmentDate = value; + } + + /** + * Gets the value of the incorporationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getIncorporationDate() { + return incorporationDate; + } + + /** + * Sets the value of the incorporationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setIncorporationDate(DutchBusinessDate value) { + this.incorporationDate = value; + } + + /** + * Gets the value of the foundingDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getFoundingDate() { + return foundingDate; + } + + /** + * Sets the value of the foundingDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setFoundingDate(DutchBusinessDate value) { + this.foundingDate = value; + } + + /** + * Gets the value of the discontinuationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getDiscontinuationDate() { + return discontinuationDate; + } + + /** + * Sets the value of the discontinuationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setDiscontinuationDate(DutchBusinessDate value) { + this.discontinuationDate = value; + } + + /** + * Gets the value of the dateSince property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getDateSince() { + return dateSince; + } + + /** + * Sets the value of the dateSince property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setDateSince(DutchBusinessDate value) { + this.dateSince = value; + } + + /** + * Gets the value of the personnel property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPersonnel() { + return personnel; + } + + /** + * Sets the value of the personnel property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPersonnel(Integer value) { + this.personnel = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterpriseV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterpriseV2.java new file mode 100644 index 0000000..4f0246c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterpriseV2.java @@ -0,0 +1,387 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessEnterpriseV2 complex type. + * + *

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

+ * <complexType name="DutchBusinessEnterpriseV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="incorporation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="discontinuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="personnel" type="{http://www.webservices.nl/soap/}DutchBusinessPersonnelInfoV2" minOccurs="0"/>
+ *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}DutchBusinessSbiCodeV2Array" minOccurs="0"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessEnterpriseV2", propOrder = { + +}) +public class DutchBusinessEnterpriseV2 { + + protected String name; + protected String registration; + @XmlElement(name = "legal_form_text") + protected String legalFormText; + protected String activity; + protected String description; + @XmlElement(name = "incorporation_date") + protected DutchBusinessDateV2 incorporationDate; + @XmlElement(name = "founding_date") + protected DutchBusinessDateV2 foundingDate; + @XmlElement(name = "discontinuation_date") + protected DutchBusinessDateV2 discontinuationDate; + @XmlElement(name = "date_since") + protected DutchBusinessDateV2 dateSince; + protected DutchBusinessPersonnelInfoV2 personnel; + protected StringArray remarks; + @XmlElement(name = "sbi_codes") + protected DutchBusinessSbiCodeV2Array sbiCodes; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the registration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistration() { + return registration; + } + + /** + * Sets the value of the registration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistration(String value) { + this.registration = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the activity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getActivity() { + return activity; + } + + /** + * Sets the value of the activity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setActivity(String value) { + this.activity = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the incorporationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getIncorporationDate() { + return incorporationDate; + } + + /** + * Sets the value of the incorporationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setIncorporationDate(DutchBusinessDateV2 value) { + this.incorporationDate = value; + } + + /** + * Gets the value of the foundingDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getFoundingDate() { + return foundingDate; + } + + /** + * Sets the value of the foundingDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setFoundingDate(DutchBusinessDateV2 value) { + this.foundingDate = value; + } + + /** + * Gets the value of the discontinuationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getDiscontinuationDate() { + return discontinuationDate; + } + + /** + * Sets the value of the discontinuationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setDiscontinuationDate(DutchBusinessDateV2 value) { + this.discontinuationDate = value; + } + + /** + * Gets the value of the dateSince property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getDateSince() { + return dateSince; + } + + /** + * Sets the value of the dateSince property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setDateSince(DutchBusinessDateV2 value) { + this.dateSince = value; + } + + /** + * Gets the value of the personnel property. + * + * @return + * possible object is + * {@link DutchBusinessPersonnelInfoV2 } + * + */ + public DutchBusinessPersonnelInfoV2 getPersonnel() { + return personnel; + } + + /** + * Sets the value of the personnel property. + * + * @param value + * allowed object is + * {@link DutchBusinessPersonnelInfoV2 } + * + */ + public void setPersonnel(DutchBusinessPersonnelInfoV2 value) { + this.personnel = value; + } + + /** + * Gets the value of the remarks property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getRemarks() { + return remarks; + } + + /** + * Sets the value of the remarks property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setRemarks(StringArray value) { + this.remarks = value; + } + + /** + * Gets the value of the sbiCodes property. + * + * @return + * possible object is + * {@link DutchBusinessSbiCodeV2Array } + * + */ + public DutchBusinessSbiCodeV2Array getSbiCodes() { + return sbiCodes; + } + + /** + * Sets the value of the sbiCodes property. + * + * @param value + * allowed object is + * {@link DutchBusinessSbiCodeV2Array } + * + */ + public void setSbiCodes(DutchBusinessSbiCodeV2Array value) { + this.sbiCodes = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterpriseV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterpriseV3.java new file mode 100644 index 0000000..de57a8e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterpriseV3.java @@ -0,0 +1,387 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessEnterpriseV3 complex type. + * + *

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

+ * <complexType name="DutchBusinessEnterpriseV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="incorporation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="discontinuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="personnel" type="{http://www.webservices.nl/soap/}DutchBusinessPersonnelInfoV3" minOccurs="0"/>
+ *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}DutchBusinessSbiCodeV3Array" minOccurs="0"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessEnterpriseV3", propOrder = { + +}) +public class DutchBusinessEnterpriseV3 { + + protected String name; + protected String registration; + @XmlElement(name = "legal_form_text") + protected String legalFormText; + protected String activity; + protected String description; + @XmlElement(name = "incorporation_date") + protected DutchBusinessDateV3 incorporationDate; + @XmlElement(name = "founding_date") + protected DutchBusinessDateV3 foundingDate; + @XmlElement(name = "discontinuation_date") + protected DutchBusinessDateV3 discontinuationDate; + @XmlElement(name = "date_since") + protected DutchBusinessDateV3 dateSince; + protected DutchBusinessPersonnelInfoV3 personnel; + protected StringArray remarks; + @XmlElement(name = "sbi_codes") + protected DutchBusinessSbiCodeV3Array sbiCodes; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the registration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistration() { + return registration; + } + + /** + * Sets the value of the registration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistration(String value) { + this.registration = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the activity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getActivity() { + return activity; + } + + /** + * Sets the value of the activity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setActivity(String value) { + this.activity = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the incorporationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getIncorporationDate() { + return incorporationDate; + } + + /** + * Sets the value of the incorporationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setIncorporationDate(DutchBusinessDateV3 value) { + this.incorporationDate = value; + } + + /** + * Gets the value of the foundingDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getFoundingDate() { + return foundingDate; + } + + /** + * Sets the value of the foundingDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setFoundingDate(DutchBusinessDateV3 value) { + this.foundingDate = value; + } + + /** + * Gets the value of the discontinuationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getDiscontinuationDate() { + return discontinuationDate; + } + + /** + * Sets the value of the discontinuationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setDiscontinuationDate(DutchBusinessDateV3 value) { + this.discontinuationDate = value; + } + + /** + * Gets the value of the dateSince property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getDateSince() { + return dateSince; + } + + /** + * Sets the value of the dateSince property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setDateSince(DutchBusinessDateV3 value) { + this.dateSince = value; + } + + /** + * Gets the value of the personnel property. + * + * @return + * possible object is + * {@link DutchBusinessPersonnelInfoV3 } + * + */ + public DutchBusinessPersonnelInfoV3 getPersonnel() { + return personnel; + } + + /** + * Sets the value of the personnel property. + * + * @param value + * allowed object is + * {@link DutchBusinessPersonnelInfoV3 } + * + */ + public void setPersonnel(DutchBusinessPersonnelInfoV3 value) { + this.personnel = value; + } + + /** + * Gets the value of the remarks property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getRemarks() { + return remarks; + } + + /** + * Sets the value of the remarks property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setRemarks(StringArray value) { + this.remarks = value; + } + + /** + * Gets the value of the sbiCodes property. + * + * @return + * possible object is + * {@link DutchBusinessSbiCodeV3Array } + * + */ + public DutchBusinessSbiCodeV3Array getSbiCodes() { + return sbiCodes; + } + + /** + * Sets the value of the sbiCodes property. + * + * @param value + * allowed object is + * {@link DutchBusinessSbiCodeV3Array } + * + */ + public void setSbiCodes(DutchBusinessSbiCodeV3Array value) { + this.sbiCodes = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishment.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishment.java new file mode 100644 index 0000000..9a79461 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishment.java @@ -0,0 +1,956 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessEstablishment complex type. + * + *

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

+ * <complexType name="DutchBusinessEstablishment">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="main_establishment" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="sbi_codes_text" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="establishment_postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="establishment_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="correspondence_postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="correspondence_house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="correspondence_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="correspondence_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="curator_postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="curator_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="curator_street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="curator_house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="curator_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="curator_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="fax_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="domain_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="establishment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="personnel" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessEstablishment", propOrder = { + +}) +public class DutchBusinessEstablishment { + + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(name = "main_establishment") + protected Boolean mainEstablishment; + protected String status; + @XmlElement(name = "legal_form_text") + protected String legalFormText; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + protected String activity; + protected String description; + @XmlElement(name = "sbi_codes") + protected StringArray sbiCodes; + @XmlElement(name = "sbi_codes_text") + protected StringArray sbiCodesText; + @XmlElement(name = "establishment_postcode") + protected String establishmentPostcode; + @XmlElement(name = "establishment_city") + protected String establishmentCity; + @XmlElement(name = "establishment_street") + protected String establishmentStreet; + @XmlElement(name = "establishment_house_number") + protected Integer establishmentHouseNumber; + @XmlElement(name = "establishment_house_number_addition") + protected String establishmentHouseNumberAddition; + @XmlElement(name = "establishment_country") + protected String establishmentCountry; + @XmlElement(name = "correspondence_postcode") + protected String correspondencePostcode; + @XmlElement(name = "correspondence_city") + protected String correspondenceCity; + @XmlElement(name = "correspondence_street") + protected String correspondenceStreet; + @XmlElement(name = "correspondence_house_number") + protected Integer correspondenceHouseNumber; + @XmlElement(name = "correspondence_house_number_addition") + protected String correspondenceHouseNumberAddition; + @XmlElement(name = "correspondence_country") + protected String correspondenceCountry; + @XmlElement(name = "curator_postcode") + protected String curatorPostcode; + @XmlElement(name = "curator_city") + protected String curatorCity; + @XmlElement(name = "curator_street") + protected String curatorStreet; + @XmlElement(name = "curator_house_number") + protected Integer curatorHouseNumber; + @XmlElement(name = "curator_house_number_addition") + protected String curatorHouseNumberAddition; + @XmlElement(name = "curator_country") + protected String curatorCountry; + @XmlElement(name = "telephone_numbers") + protected StringArray telephoneNumbers; + @XmlElement(name = "fax_numbers") + protected StringArray faxNumbers; + @XmlElement(name = "email_addresses") + protected StringArray emailAddresses; + @XmlElement(name = "domain_names") + protected StringArray domainNames; + @XmlElement(name = "establishment_date") + protected DutchBusinessDate establishmentDate; + @XmlElement(name = "date_since") + protected DutchBusinessDate dateSince; + protected Integer personnel; + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the mainEstablishment property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isMainEstablishment() { + return mainEstablishment; + } + + /** + * Sets the value of the mainEstablishment property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setMainEstablishment(Boolean value) { + this.mainEstablishment = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + + /** + * Gets the value of the activity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getActivity() { + return activity; + } + + /** + * Sets the value of the activity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setActivity(String value) { + this.activity = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the sbiCodes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getSbiCodes() { + return sbiCodes; + } + + /** + * Sets the value of the sbiCodes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setSbiCodes(StringArray value) { + this.sbiCodes = value; + } + + /** + * Gets the value of the sbiCodesText property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getSbiCodesText() { + return sbiCodesText; + } + + /** + * Sets the value of the sbiCodesText property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setSbiCodesText(StringArray value) { + this.sbiCodesText = value; + } + + /** + * Gets the value of the establishmentPostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentPostcode() { + return establishmentPostcode; + } + + /** + * Sets the value of the establishmentPostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentPostcode(String value) { + this.establishmentPostcode = value; + } + + /** + * Gets the value of the establishmentCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCity() { + return establishmentCity; + } + + /** + * Sets the value of the establishmentCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCity(String value) { + this.establishmentCity = value; + } + + /** + * Gets the value of the establishmentStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentStreet() { + return establishmentStreet; + } + + /** + * Sets the value of the establishmentStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentStreet(String value) { + this.establishmentStreet = value; + } + + /** + * Gets the value of the establishmentHouseNumber property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getEstablishmentHouseNumber() { + return establishmentHouseNumber; + } + + /** + * Sets the value of the establishmentHouseNumber property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setEstablishmentHouseNumber(Integer value) { + this.establishmentHouseNumber = value; + } + + /** + * Gets the value of the establishmentHouseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentHouseNumberAddition() { + return establishmentHouseNumberAddition; + } + + /** + * Sets the value of the establishmentHouseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentHouseNumberAddition(String value) { + this.establishmentHouseNumberAddition = value; + } + + /** + * Gets the value of the establishmentCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCountry() { + return establishmentCountry; + } + + /** + * Sets the value of the establishmentCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCountry(String value) { + this.establishmentCountry = value; + } + + /** + * Gets the value of the correspondencePostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondencePostcode() { + return correspondencePostcode; + } + + /** + * Sets the value of the correspondencePostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondencePostcode(String value) { + this.correspondencePostcode = value; + } + + /** + * Gets the value of the correspondenceCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCity() { + return correspondenceCity; + } + + /** + * Sets the value of the correspondenceCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCity(String value) { + this.correspondenceCity = value; + } + + /** + * Gets the value of the correspondenceStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceStreet() { + return correspondenceStreet; + } + + /** + * Sets the value of the correspondenceStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceStreet(String value) { + this.correspondenceStreet = value; + } + + /** + * Gets the value of the correspondenceHouseNumber property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCorrespondenceHouseNumber() { + return correspondenceHouseNumber; + } + + /** + * Sets the value of the correspondenceHouseNumber property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCorrespondenceHouseNumber(Integer value) { + this.correspondenceHouseNumber = value; + } + + /** + * Gets the value of the correspondenceHouseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceHouseNumberAddition() { + return correspondenceHouseNumberAddition; + } + + /** + * Sets the value of the correspondenceHouseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceHouseNumberAddition(String value) { + this.correspondenceHouseNumberAddition = value; + } + + /** + * Gets the value of the correspondenceCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCountry() { + return correspondenceCountry; + } + + /** + * Sets the value of the correspondenceCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCountry(String value) { + this.correspondenceCountry = value; + } + + /** + * Gets the value of the curatorPostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCuratorPostcode() { + return curatorPostcode; + } + + /** + * Sets the value of the curatorPostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCuratorPostcode(String value) { + this.curatorPostcode = value; + } + + /** + * Gets the value of the curatorCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCuratorCity() { + return curatorCity; + } + + /** + * Sets the value of the curatorCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCuratorCity(String value) { + this.curatorCity = value; + } + + /** + * Gets the value of the curatorStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCuratorStreet() { + return curatorStreet; + } + + /** + * Sets the value of the curatorStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCuratorStreet(String value) { + this.curatorStreet = value; + } + + /** + * Gets the value of the curatorHouseNumber property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCuratorHouseNumber() { + return curatorHouseNumber; + } + + /** + * Sets the value of the curatorHouseNumber property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCuratorHouseNumber(Integer value) { + this.curatorHouseNumber = value; + } + + /** + * Gets the value of the curatorHouseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCuratorHouseNumberAddition() { + return curatorHouseNumberAddition; + } + + /** + * Sets the value of the curatorHouseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCuratorHouseNumberAddition(String value) { + this.curatorHouseNumberAddition = value; + } + + /** + * Gets the value of the curatorCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCuratorCountry() { + return curatorCountry; + } + + /** + * Sets the value of the curatorCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCuratorCountry(String value) { + this.curatorCountry = value; + } + + /** + * Gets the value of the telephoneNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTelephoneNumbers() { + return telephoneNumbers; + } + + /** + * Sets the value of the telephoneNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTelephoneNumbers(StringArray value) { + this.telephoneNumbers = value; + } + + /** + * Gets the value of the faxNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getFaxNumbers() { + return faxNumbers; + } + + /** + * Sets the value of the faxNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setFaxNumbers(StringArray value) { + this.faxNumbers = value; + } + + /** + * Gets the value of the emailAddresses property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getEmailAddresses() { + return emailAddresses; + } + + /** + * Sets the value of the emailAddresses property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setEmailAddresses(StringArray value) { + this.emailAddresses = value; + } + + /** + * Gets the value of the domainNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getDomainNames() { + return domainNames; + } + + /** + * Sets the value of the domainNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setDomainNames(StringArray value) { + this.domainNames = value; + } + + /** + * Gets the value of the establishmentDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getEstablishmentDate() { + return establishmentDate; + } + + /** + * Sets the value of the establishmentDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setEstablishmentDate(DutchBusinessDate value) { + this.establishmentDate = value; + } + + /** + * Gets the value of the dateSince property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getDateSince() { + return dateSince; + } + + /** + * Sets the value of the dateSince property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setDateSince(DutchBusinessDate value) { + this.dateSince = value; + } + + /** + * Gets the value of the personnel property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPersonnel() { + return personnel; + } + + /** + * Sets the value of the personnel property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPersonnel(Integer value) { + this.personnel = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentArray.java new file mode 100644 index 0000000..da4141e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessEstablishmentArray complex type. + * + *

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

+ * <complexType name="DutchBusinessEstablishmentArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishment" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessEstablishmentArray", propOrder = { + "item" +}) +public class DutchBusinessEstablishmentArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessEstablishment } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReference.java new file mode 100644 index 0000000..db57d83 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReference.java @@ -0,0 +1,312 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessEstablishmentReference complex type. + * + *

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

+ * <complexType name="DutchBusinessEstablishmentReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="match_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="indication_main_establishment" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessEstablishmentReference", propOrder = { + +}) +public class DutchBusinessEstablishmentReference { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(name = "legal_name") + protected String legalName; + @XmlElement(name = "trade_name", required = true) + protected String tradeName; + @XmlElement(name = "match_type") + protected String matchType; + @XmlElement(name = "establishment_city", required = true) + protected String establishmentCity; + @XmlElement(name = "establishment_street", required = true) + protected String establishmentStreet; + @XmlElement(name = "correspondence_city", required = true) + protected String correspondenceCity; + @XmlElement(name = "correspondence_street", required = true) + protected String correspondenceStreet; + @XmlElement(name = "indication_main_establishment") + protected Boolean indicationMainEstablishment; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the legalName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalName() { + return legalName; + } + + /** + * Sets the value of the legalName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalName(String value) { + this.legalName = value; + } + + /** + * Gets the value of the tradeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName() { + return tradeName; + } + + /** + * Sets the value of the tradeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName(String value) { + this.tradeName = value; + } + + /** + * Gets the value of the matchType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMatchType() { + return matchType; + } + + /** + * Sets the value of the matchType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMatchType(String value) { + this.matchType = value; + } + + /** + * Gets the value of the establishmentCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCity() { + return establishmentCity; + } + + /** + * Sets the value of the establishmentCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCity(String value) { + this.establishmentCity = value; + } + + /** + * Gets the value of the establishmentStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentStreet() { + return establishmentStreet; + } + + /** + * Sets the value of the establishmentStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentStreet(String value) { + this.establishmentStreet = value; + } + + /** + * Gets the value of the correspondenceCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCity() { + return correspondenceCity; + } + + /** + * Sets the value of the correspondenceCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCity(String value) { + this.correspondenceCity = value; + } + + /** + * Gets the value of the correspondenceStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceStreet() { + return correspondenceStreet; + } + + /** + * Sets the value of the correspondenceStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceStreet(String value) { + this.correspondenceStreet = value; + } + + /** + * Gets the value of the indicationMainEstablishment property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicationMainEstablishment() { + return indicationMainEstablishment; + } + + /** + * Sets the value of the indicationMainEstablishment property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicationMainEstablishment(Boolean value) { + this.indicationMainEstablishment = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReferenceArray.java new file mode 100644 index 0000000..7e3b57a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessEstablishmentReferenceArray complex type. + * + *

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

+ * <complexType name="DutchBusinessEstablishmentReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessEstablishmentReferenceArray", propOrder = { + "item" +}) +public class DutchBusinessEstablishmentReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessEstablishmentReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReferencePagedResult.java new file mode 100644 index 0000000..8a85cb8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReferencePagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessEstablishmentReferencePagedResult complex type. + * + *

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

+ * <complexType name="DutchBusinessEstablishmentReferencePagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessEstablishmentReferencePagedResult", propOrder = { + +}) +public class DutchBusinessEstablishmentReferencePagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected DutchBusinessEstablishmentReferenceArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link DutchBusinessEstablishmentReferenceArray } + * + */ + public DutchBusinessEstablishmentReferenceArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link DutchBusinessEstablishmentReferenceArray } + * + */ + public void setResults(DutchBusinessEstablishmentReferenceArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV2.java new file mode 100644 index 0000000..d198946 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV2.java @@ -0,0 +1,497 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessEstablishmentV2 complex type. + * + *

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

+ * <complexType name="DutchBusinessEstablishmentV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="main_establishment" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="personnel" type="{http://www.webservices.nl/soap/}DutchBusinessPersonnelInfoV2" minOccurs="0"/>
+ *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}DutchBusinessSbiCodeV2Array" minOccurs="0"/>
+ *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
+ *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
+ *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="fax_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="domain_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessEstablishmentV2", propOrder = { + +}) +public class DutchBusinessEstablishmentV2 { + + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(name = "main_establishment") + protected Boolean mainEstablishment; + @XmlElement(name = "legal_form_text") + protected String legalFormText; + protected String activity; + protected String description; + @XmlElement(name = "establishment_date") + protected DutchBusinessDateV2 establishmentDate; + @XmlElement(name = "date_since") + protected DutchBusinessDateV2 dateSince; + protected DutchBusinessPersonnelInfoV2 personnel; + protected StringArray remarks; + @XmlElement(name = "sbi_codes") + protected DutchBusinessSbiCodeV2Array sbiCodes; + @XmlElement(name = "establishment_address") + protected DutchBusinessAddressV2 establishmentAddress; + @XmlElement(name = "correspondence_address") + protected DutchBusinessAddressV2 correspondenceAddress; + @XmlElement(name = "telephone_numbers") + protected StringArray telephoneNumbers; + @XmlElement(name = "fax_numbers") + protected StringArray faxNumbers; + @XmlElement(name = "email_addresses") + protected StringArray emailAddresses; + @XmlElement(name = "domain_names") + protected StringArray domainNames; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the mainEstablishment property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isMainEstablishment() { + return mainEstablishment; + } + + /** + * Sets the value of the mainEstablishment property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setMainEstablishment(Boolean value) { + this.mainEstablishment = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the activity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getActivity() { + return activity; + } + + /** + * Sets the value of the activity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setActivity(String value) { + this.activity = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the establishmentDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getEstablishmentDate() { + return establishmentDate; + } + + /** + * Sets the value of the establishmentDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setEstablishmentDate(DutchBusinessDateV2 value) { + this.establishmentDate = value; + } + + /** + * Gets the value of the dateSince property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getDateSince() { + return dateSince; + } + + /** + * Sets the value of the dateSince property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setDateSince(DutchBusinessDateV2 value) { + this.dateSince = value; + } + + /** + * Gets the value of the personnel property. + * + * @return + * possible object is + * {@link DutchBusinessPersonnelInfoV2 } + * + */ + public DutchBusinessPersonnelInfoV2 getPersonnel() { + return personnel; + } + + /** + * Sets the value of the personnel property. + * + * @param value + * allowed object is + * {@link DutchBusinessPersonnelInfoV2 } + * + */ + public void setPersonnel(DutchBusinessPersonnelInfoV2 value) { + this.personnel = value; + } + + /** + * Gets the value of the remarks property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getRemarks() { + return remarks; + } + + /** + * Sets the value of the remarks property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setRemarks(StringArray value) { + this.remarks = value; + } + + /** + * Gets the value of the sbiCodes property. + * + * @return + * possible object is + * {@link DutchBusinessSbiCodeV2Array } + * + */ + public DutchBusinessSbiCodeV2Array getSbiCodes() { + return sbiCodes; + } + + /** + * Sets the value of the sbiCodes property. + * + * @param value + * allowed object is + * {@link DutchBusinessSbiCodeV2Array } + * + */ + public void setSbiCodes(DutchBusinessSbiCodeV2Array value) { + this.sbiCodes = value; + } + + /** + * Gets the value of the establishmentAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV2 } + * + */ + public DutchBusinessAddressV2 getEstablishmentAddress() { + return establishmentAddress; + } + + /** + * Sets the value of the establishmentAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV2 } + * + */ + public void setEstablishmentAddress(DutchBusinessAddressV2 value) { + this.establishmentAddress = value; + } + + /** + * Gets the value of the correspondenceAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV2 } + * + */ + public DutchBusinessAddressV2 getCorrespondenceAddress() { + return correspondenceAddress; + } + + /** + * Sets the value of the correspondenceAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV2 } + * + */ + public void setCorrespondenceAddress(DutchBusinessAddressV2 value) { + this.correspondenceAddress = value; + } + + /** + * Gets the value of the telephoneNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTelephoneNumbers() { + return telephoneNumbers; + } + + /** + * Sets the value of the telephoneNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTelephoneNumbers(StringArray value) { + this.telephoneNumbers = value; + } + + /** + * Gets the value of the faxNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getFaxNumbers() { + return faxNumbers; + } + + /** + * Sets the value of the faxNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setFaxNumbers(StringArray value) { + this.faxNumbers = value; + } + + /** + * Gets the value of the emailAddresses property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getEmailAddresses() { + return emailAddresses; + } + + /** + * Sets the value of the emailAddresses property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setEmailAddresses(StringArray value) { + this.emailAddresses = value; + } + + /** + * Gets the value of the domainNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getDomainNames() { + return domainNames; + } + + /** + * Sets the value of the domainNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setDomainNames(StringArray value) { + this.domainNames = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV2Array.java new file mode 100644 index 0000000..dc58627 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessEstablishmentV2Array complex type. + * + *

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

+ * <complexType name="DutchBusinessEstablishmentV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessEstablishmentV2Array", propOrder = { + "item" +}) +public class DutchBusinessEstablishmentV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessEstablishmentV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV3.java new file mode 100644 index 0000000..189aced --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV3.java @@ -0,0 +1,497 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessEstablishmentV3 complex type. + * + *

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

+ * <complexType name="DutchBusinessEstablishmentV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="main_establishment" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="personnel" type="{http://www.webservices.nl/soap/}DutchBusinessPersonnelInfoV3" minOccurs="0"/>
+ *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}DutchBusinessSbiCodeV3Array" minOccurs="0"/>
+ *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
+ *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
+ *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="fax_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="domain_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessEstablishmentV3", propOrder = { + +}) +public class DutchBusinessEstablishmentV3 { + + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(name = "main_establishment") + protected Boolean mainEstablishment; + @XmlElement(name = "legal_form_text") + protected String legalFormText; + protected String activity; + protected String description; + @XmlElement(name = "establishment_date") + protected DutchBusinessDateV3 establishmentDate; + @XmlElement(name = "date_since") + protected DutchBusinessDateV3 dateSince; + protected DutchBusinessPersonnelInfoV3 personnel; + protected StringArray remarks; + @XmlElement(name = "sbi_codes") + protected DutchBusinessSbiCodeV3Array sbiCodes; + @XmlElement(name = "establishment_address") + protected DutchBusinessAddressV3 establishmentAddress; + @XmlElement(name = "correspondence_address") + protected DutchBusinessAddressV3 correspondenceAddress; + @XmlElement(name = "telephone_numbers") + protected StringArray telephoneNumbers; + @XmlElement(name = "fax_numbers") + protected StringArray faxNumbers; + @XmlElement(name = "email_addresses") + protected StringArray emailAddresses; + @XmlElement(name = "domain_names") + protected StringArray domainNames; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the mainEstablishment property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isMainEstablishment() { + return mainEstablishment; + } + + /** + * Sets the value of the mainEstablishment property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setMainEstablishment(Boolean value) { + this.mainEstablishment = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the activity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getActivity() { + return activity; + } + + /** + * Sets the value of the activity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setActivity(String value) { + this.activity = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the establishmentDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getEstablishmentDate() { + return establishmentDate; + } + + /** + * Sets the value of the establishmentDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setEstablishmentDate(DutchBusinessDateV3 value) { + this.establishmentDate = value; + } + + /** + * Gets the value of the dateSince property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getDateSince() { + return dateSince; + } + + /** + * Sets the value of the dateSince property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setDateSince(DutchBusinessDateV3 value) { + this.dateSince = value; + } + + /** + * Gets the value of the personnel property. + * + * @return + * possible object is + * {@link DutchBusinessPersonnelInfoV3 } + * + */ + public DutchBusinessPersonnelInfoV3 getPersonnel() { + return personnel; + } + + /** + * Sets the value of the personnel property. + * + * @param value + * allowed object is + * {@link DutchBusinessPersonnelInfoV3 } + * + */ + public void setPersonnel(DutchBusinessPersonnelInfoV3 value) { + this.personnel = value; + } + + /** + * Gets the value of the remarks property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getRemarks() { + return remarks; + } + + /** + * Sets the value of the remarks property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setRemarks(StringArray value) { + this.remarks = value; + } + + /** + * Gets the value of the sbiCodes property. + * + * @return + * possible object is + * {@link DutchBusinessSbiCodeV3Array } + * + */ + public DutchBusinessSbiCodeV3Array getSbiCodes() { + return sbiCodes; + } + + /** + * Sets the value of the sbiCodes property. + * + * @param value + * allowed object is + * {@link DutchBusinessSbiCodeV3Array } + * + */ + public void setSbiCodes(DutchBusinessSbiCodeV3Array value) { + this.sbiCodes = value; + } + + /** + * Gets the value of the establishmentAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV3 } + * + */ + public DutchBusinessAddressV3 getEstablishmentAddress() { + return establishmentAddress; + } + + /** + * Sets the value of the establishmentAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV3 } + * + */ + public void setEstablishmentAddress(DutchBusinessAddressV3 value) { + this.establishmentAddress = value; + } + + /** + * Gets the value of the correspondenceAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV3 } + * + */ + public DutchBusinessAddressV3 getCorrespondenceAddress() { + return correspondenceAddress; + } + + /** + * Sets the value of the correspondenceAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV3 } + * + */ + public void setCorrespondenceAddress(DutchBusinessAddressV3 value) { + this.correspondenceAddress = value; + } + + /** + * Gets the value of the telephoneNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTelephoneNumbers() { + return telephoneNumbers; + } + + /** + * Sets the value of the telephoneNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTelephoneNumbers(StringArray value) { + this.telephoneNumbers = value; + } + + /** + * Gets the value of the faxNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getFaxNumbers() { + return faxNumbers; + } + + /** + * Sets the value of the faxNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setFaxNumbers(StringArray value) { + this.faxNumbers = value; + } + + /** + * Gets the value of the emailAddresses property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getEmailAddresses() { + return emailAddresses; + } + + /** + * Sets the value of the emailAddresses property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setEmailAddresses(StringArray value) { + this.emailAddresses = value; + } + + /** + * Gets the value of the domainNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getDomainNames() { + return domainNames; + } + + /** + * Sets the value of the domainNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setDomainNames(StringArray value) { + this.domainNames = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV3Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV3Array.java new file mode 100644 index 0000000..7f1e4d6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV3Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessEstablishmentV3Array complex type. + * + *

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

+ * <complexType name="DutchBusinessEstablishmentV3Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentV3" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessEstablishmentV3Array", propOrder = { + "item" +}) +public class DutchBusinessEstablishmentV3Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessEstablishmentV3 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractChangeForecast.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractChangeForecast.java new file mode 100644 index 0000000..b296ec8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractChangeForecast.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessExtractChangeForecast complex type. + * + *

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

+ * <complexType name="DutchBusinessExtractChangeForecast">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="change_set" type="{http://www.webservices.nl/soap/}DutchBusinessExtractChangeSet"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessExtractChangeForecast", propOrder = { + +}) +public class DutchBusinessExtractChangeForecast { + + @XmlElement(name = "change_set", required = true) + protected DutchBusinessExtractChangeSet changeSet; + + /** + * Gets the value of the changeSet property. + * + * @return + * possible object is + * {@link DutchBusinessExtractChangeSet } + * + */ + public DutchBusinessExtractChangeSet getChangeSet() { + return changeSet; + } + + /** + * Sets the value of the changeSet property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractChangeSet } + * + */ + public void setChangeSet(DutchBusinessExtractChangeSet value) { + this.changeSet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractChangeSet.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractChangeSet.java new file mode 100644 index 0000000..b992628 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractChangeSet.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessExtractChangeSet complex type. + * + *

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

+ * <complexType name="DutchBusinessExtractChangeSet">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="period" type="{http://www.webservices.nl/soap/}DutchBusinessPeriod"/>
+ *         <element name="changes" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessExtractChangeSet", propOrder = { + +}) +public class DutchBusinessExtractChangeSet { + + @XmlElement(required = true) + protected DutchBusinessPeriod period; + @XmlElement(required = true) + protected StringArray changes; + + /** + * Gets the value of the period property. + * + * @return + * possible object is + * {@link DutchBusinessPeriod } + * + */ + public DutchBusinessPeriod getPeriod() { + return period; + } + + /** + * Sets the value of the period property. + * + * @param value + * allowed object is + * {@link DutchBusinessPeriod } + * + */ + public void setPeriod(DutchBusinessPeriod value) { + this.period = value; + } + + /** + * Gets the value of the changes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getChanges() { + return changes; + } + + /** + * Sets the value of the changes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setChanges(StringArray value) { + this.changes = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDataV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDataV2.java new file mode 100644 index 0000000..86ae353 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDataV2.java @@ -0,0 +1,256 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessExtractDataV2 complex type. + * + *

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

+ * <complexType name="DutchBusinessExtractDataV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="reference_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="legal_entity" type="{http://www.webservices.nl/soap/}DutchBusinessLegalEntityV2" minOccurs="0"/>
+ *         <element name="partnership" type="{http://www.webservices.nl/soap/}DutchBusinessPartnershipV2" minOccurs="0"/>
+ *         <element name="enterprise" type="{http://www.webservices.nl/soap/}DutchBusinessEnterpriseV2" minOccurs="0"/>
+ *         <element name="establishments" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentV2Array" minOccurs="0"/>
+ *         <element name="positions" type="{http://www.webservices.nl/soap/}DutchBusinessPositionV2Array" minOccurs="0"/>
+ *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessExtractDataV2", propOrder = { + +}) +public class DutchBusinessExtractDataV2 { + + @XmlElement(name = "dossier_number") + protected String dossierNumber; + @XmlElement(name = "reference_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar referenceDate; + @XmlElement(name = "legal_entity") + protected DutchBusinessLegalEntityV2 legalEntity; + protected DutchBusinessPartnershipV2 partnership; + protected DutchBusinessEnterpriseV2 enterprise; + protected DutchBusinessEstablishmentV2Array establishments; + protected DutchBusinessPositionV2Array positions; + protected StringArray remarks; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the referenceDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getReferenceDate() { + return referenceDate; + } + + /** + * Sets the value of the referenceDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setReferenceDate(XMLGregorianCalendar value) { + this.referenceDate = value; + } + + /** + * Gets the value of the legalEntity property. + * + * @return + * possible object is + * {@link DutchBusinessLegalEntityV2 } + * + */ + public DutchBusinessLegalEntityV2 getLegalEntity() { + return legalEntity; + } + + /** + * Sets the value of the legalEntity property. + * + * @param value + * allowed object is + * {@link DutchBusinessLegalEntityV2 } + * + */ + public void setLegalEntity(DutchBusinessLegalEntityV2 value) { + this.legalEntity = value; + } + + /** + * Gets the value of the partnership property. + * + * @return + * possible object is + * {@link DutchBusinessPartnershipV2 } + * + */ + public DutchBusinessPartnershipV2 getPartnership() { + return partnership; + } + + /** + * Sets the value of the partnership property. + * + * @param value + * allowed object is + * {@link DutchBusinessPartnershipV2 } + * + */ + public void setPartnership(DutchBusinessPartnershipV2 value) { + this.partnership = value; + } + + /** + * Gets the value of the enterprise property. + * + * @return + * possible object is + * {@link DutchBusinessEnterpriseV2 } + * + */ + public DutchBusinessEnterpriseV2 getEnterprise() { + return enterprise; + } + + /** + * Sets the value of the enterprise property. + * + * @param value + * allowed object is + * {@link DutchBusinessEnterpriseV2 } + * + */ + public void setEnterprise(DutchBusinessEnterpriseV2 value) { + this.enterprise = value; + } + + /** + * Gets the value of the establishments property. + * + * @return + * possible object is + * {@link DutchBusinessEstablishmentV2Array } + * + */ + public DutchBusinessEstablishmentV2Array getEstablishments() { + return establishments; + } + + /** + * Sets the value of the establishments property. + * + * @param value + * allowed object is + * {@link DutchBusinessEstablishmentV2Array } + * + */ + public void setEstablishments(DutchBusinessEstablishmentV2Array value) { + this.establishments = value; + } + + /** + * Gets the value of the positions property. + * + * @return + * possible object is + * {@link DutchBusinessPositionV2Array } + * + */ + public DutchBusinessPositionV2Array getPositions() { + return positions; + } + + /** + * Sets the value of the positions property. + * + * @param value + * allowed object is + * {@link DutchBusinessPositionV2Array } + * + */ + public void setPositions(DutchBusinessPositionV2Array value) { + this.positions = value; + } + + /** + * Gets the value of the remarks property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getRemarks() { + return remarks; + } + + /** + * Sets the value of the remarks property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setRemarks(StringArray value) { + this.remarks = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDataV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDataV3.java new file mode 100644 index 0000000..b39fb2f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDataV3.java @@ -0,0 +1,256 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessExtractDataV3 complex type. + * + *

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

+ * <complexType name="DutchBusinessExtractDataV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="reference_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="legal_entity" type="{http://www.webservices.nl/soap/}DutchBusinessLegalEntityV3" minOccurs="0"/>
+ *         <element name="partnership" type="{http://www.webservices.nl/soap/}DutchBusinessPartnershipV3" minOccurs="0"/>
+ *         <element name="enterprise" type="{http://www.webservices.nl/soap/}DutchBusinessEnterpriseV3" minOccurs="0"/>
+ *         <element name="establishments" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentV3Array" minOccurs="0"/>
+ *         <element name="positions" type="{http://www.webservices.nl/soap/}DutchBusinessPositionV3Array" minOccurs="0"/>
+ *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessExtractDataV3", propOrder = { + +}) +public class DutchBusinessExtractDataV3 { + + @XmlElement(name = "dossier_number") + protected String dossierNumber; + @XmlElement(name = "reference_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar referenceDate; + @XmlElement(name = "legal_entity") + protected DutchBusinessLegalEntityV3 legalEntity; + protected DutchBusinessPartnershipV3 partnership; + protected DutchBusinessEnterpriseV3 enterprise; + protected DutchBusinessEstablishmentV3Array establishments; + protected DutchBusinessPositionV3Array positions; + protected StringArray remarks; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the referenceDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getReferenceDate() { + return referenceDate; + } + + /** + * Sets the value of the referenceDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setReferenceDate(XMLGregorianCalendar value) { + this.referenceDate = value; + } + + /** + * Gets the value of the legalEntity property. + * + * @return + * possible object is + * {@link DutchBusinessLegalEntityV3 } + * + */ + public DutchBusinessLegalEntityV3 getLegalEntity() { + return legalEntity; + } + + /** + * Sets the value of the legalEntity property. + * + * @param value + * allowed object is + * {@link DutchBusinessLegalEntityV3 } + * + */ + public void setLegalEntity(DutchBusinessLegalEntityV3 value) { + this.legalEntity = value; + } + + /** + * Gets the value of the partnership property. + * + * @return + * possible object is + * {@link DutchBusinessPartnershipV3 } + * + */ + public DutchBusinessPartnershipV3 getPartnership() { + return partnership; + } + + /** + * Sets the value of the partnership property. + * + * @param value + * allowed object is + * {@link DutchBusinessPartnershipV3 } + * + */ + public void setPartnership(DutchBusinessPartnershipV3 value) { + this.partnership = value; + } + + /** + * Gets the value of the enterprise property. + * + * @return + * possible object is + * {@link DutchBusinessEnterpriseV3 } + * + */ + public DutchBusinessEnterpriseV3 getEnterprise() { + return enterprise; + } + + /** + * Sets the value of the enterprise property. + * + * @param value + * allowed object is + * {@link DutchBusinessEnterpriseV3 } + * + */ + public void setEnterprise(DutchBusinessEnterpriseV3 value) { + this.enterprise = value; + } + + /** + * Gets the value of the establishments property. + * + * @return + * possible object is + * {@link DutchBusinessEstablishmentV3Array } + * + */ + public DutchBusinessEstablishmentV3Array getEstablishments() { + return establishments; + } + + /** + * Sets the value of the establishments property. + * + * @param value + * allowed object is + * {@link DutchBusinessEstablishmentV3Array } + * + */ + public void setEstablishments(DutchBusinessEstablishmentV3Array value) { + this.establishments = value; + } + + /** + * Gets the value of the positions property. + * + * @return + * possible object is + * {@link DutchBusinessPositionV3Array } + * + */ + public DutchBusinessPositionV3Array getPositions() { + return positions; + } + + /** + * Sets the value of the positions property. + * + * @param value + * allowed object is + * {@link DutchBusinessPositionV3Array } + * + */ + public void setPositions(DutchBusinessPositionV3Array value) { + this.positions = value; + } + + /** + * Gets the value of the remarks property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getRemarks() { + return remarks; + } + + /** + * Sets the value of the remarks property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setRemarks(StringArray value) { + this.remarks = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocument.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocument.java new file mode 100644 index 0000000..2664427 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocument.java @@ -0,0 +1,97 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessExtractDocument complex type. + * + *

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

+ * <complexType name="DutchBusinessExtractDocument">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *         <element name="document_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessExtractDocument", propOrder = { + +}) +public class DutchBusinessExtractDocument { + + @XmlElement(required = true) + protected byte[] document; + @XmlElement(name = "document_date", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar documentDate; + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + + /** + * Gets the value of the documentDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDocumentDate() { + return documentDate; + } + + /** + * Sets the value of the documentDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDocumentDate(XMLGregorianCalendar value) { + this.documentDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentData.java new file mode 100644 index 0000000..77bc09d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentData.java @@ -0,0 +1,307 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessExtractDocumentData complex type. + * + *

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

+ * <complexType name="DutchBusinessExtractDocumentData">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="document_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="legal_entity" type="{http://www.webservices.nl/soap/}DutchBusinessLegalEntity" minOccurs="0"/>
+ *         <element name="enterprise" type="{http://www.webservices.nl/soap/}DutchBusinessEnterprise" minOccurs="0"/>
+ *         <element name="partnership" type="{http://www.webservices.nl/soap/}DutchBusinessPartnershipArray" minOccurs="0"/>
+ *         <element name="establishments" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentArray" minOccurs="0"/>
+ *         <element name="positions" type="{http://www.webservices.nl/soap/}DutchBusinessPositionArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessExtractDocumentData", propOrder = { + +}) +public class DutchBusinessExtractDocumentData { + + protected byte[] document; + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + protected String status; + @XmlElement(name = "document_date", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar documentDate; + @XmlElement(name = "legal_entity") + protected DutchBusinessLegalEntity legalEntity; + protected DutchBusinessEnterprise enterprise; + protected DutchBusinessPartnershipArray partnership; + protected DutchBusinessEstablishmentArray establishments; + protected DutchBusinessPositionArray positions; + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + + /** + * Gets the value of the documentDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDocumentDate() { + return documentDate; + } + + /** + * Sets the value of the documentDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDocumentDate(XMLGregorianCalendar value) { + this.documentDate = value; + } + + /** + * Gets the value of the legalEntity property. + * + * @return + * possible object is + * {@link DutchBusinessLegalEntity } + * + */ + public DutchBusinessLegalEntity getLegalEntity() { + return legalEntity; + } + + /** + * Sets the value of the legalEntity property. + * + * @param value + * allowed object is + * {@link DutchBusinessLegalEntity } + * + */ + public void setLegalEntity(DutchBusinessLegalEntity value) { + this.legalEntity = value; + } + + /** + * Gets the value of the enterprise property. + * + * @return + * possible object is + * {@link DutchBusinessEnterprise } + * + */ + public DutchBusinessEnterprise getEnterprise() { + return enterprise; + } + + /** + * Sets the value of the enterprise property. + * + * @param value + * allowed object is + * {@link DutchBusinessEnterprise } + * + */ + public void setEnterprise(DutchBusinessEnterprise value) { + this.enterprise = value; + } + + /** + * Gets the value of the partnership property. + * + * @return + * possible object is + * {@link DutchBusinessPartnershipArray } + * + */ + public DutchBusinessPartnershipArray getPartnership() { + return partnership; + } + + /** + * Sets the value of the partnership property. + * + * @param value + * allowed object is + * {@link DutchBusinessPartnershipArray } + * + */ + public void setPartnership(DutchBusinessPartnershipArray value) { + this.partnership = value; + } + + /** + * Gets the value of the establishments property. + * + * @return + * possible object is + * {@link DutchBusinessEstablishmentArray } + * + */ + public DutchBusinessEstablishmentArray getEstablishments() { + return establishments; + } + + /** + * Sets the value of the establishments property. + * + * @param value + * allowed object is + * {@link DutchBusinessEstablishmentArray } + * + */ + public void setEstablishments(DutchBusinessEstablishmentArray value) { + this.establishments = value; + } + + /** + * Gets the value of the positions property. + * + * @return + * possible object is + * {@link DutchBusinessPositionArray } + * + */ + public DutchBusinessPositionArray getPositions() { + return positions; + } + + /** + * Sets the value of the positions property. + * + * @param value + * allowed object is + * {@link DutchBusinessPositionArray } + * + */ + public void setPositions(DutchBusinessPositionArray value) { + this.positions = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentDataV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentDataV2.java new file mode 100644 index 0000000..d062084 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentDataV2.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessExtractDocumentDataV2 complex type. + * + *

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

+ * <complexType name="DutchBusinessExtractDocumentDataV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
+ *         <element name="data" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDataV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessExtractDocumentDataV2", propOrder = { + +}) +public class DutchBusinessExtractDocumentDataV2 { + + protected byte[] document; + @XmlElement(required = true) + protected DutchBusinessExtractDataV2 data; + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + + /** + * Gets the value of the data property. + * + * @return + * possible object is + * {@link DutchBusinessExtractDataV2 } + * + */ + public DutchBusinessExtractDataV2 getData() { + return data; + } + + /** + * Sets the value of the data property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractDataV2 } + * + */ + public void setData(DutchBusinessExtractDataV2 value) { + this.data = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentDataV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentDataV3.java new file mode 100644 index 0000000..fb013cd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentDataV3.java @@ -0,0 +1,117 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessExtractDocumentDataV3 complex type. + * + *

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

+ * <complexType name="DutchBusinessExtractDocumentDataV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
+ *         <element name="data" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDataV3"/>
+ *         <element name="source" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessExtractDocumentDataV3", propOrder = { + +}) +public class DutchBusinessExtractDocumentDataV3 { + + protected byte[] document; + @XmlElement(required = true) + protected DutchBusinessExtractDataV3 data; + protected byte[] source; + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + + /** + * Gets the value of the data property. + * + * @return + * possible object is + * {@link DutchBusinessExtractDataV3 } + * + */ + public DutchBusinessExtractDataV3 getData() { + return data; + } + + /** + * Sets the value of the data property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractDataV3 } + * + */ + public void setData(DutchBusinessExtractDataV3 value) { + this.data = value; + } + + /** + * Gets the value of the source property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getSource() { + return source; + } + + /** + * Sets the value of the source property. + * + * @param value + * allowed object is + * byte[] + */ + public void setSource(byte[] value) { + this.source = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractHistory.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractHistory.java new file mode 100644 index 0000000..3b4c71c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractHistory.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessExtractHistory complex type. + * + *

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

+ * <complexType name="DutchBusinessExtractHistory">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="forecast" type="{http://www.webservices.nl/soap/}DutchBusinessExtractChangeForecast"/>
+ *         <element name="references" type="{http://www.webservices.nl/soap/}DutchBusinessExtractReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessExtractHistory", propOrder = { + +}) +public class DutchBusinessExtractHistory { + + @XmlElement(required = true) + protected DutchBusinessExtractChangeForecast forecast; + @XmlElement(required = true) + protected DutchBusinessExtractReferenceArray references; + + /** + * Gets the value of the forecast property. + * + * @return + * possible object is + * {@link DutchBusinessExtractChangeForecast } + * + */ + public DutchBusinessExtractChangeForecast getForecast() { + return forecast; + } + + /** + * Sets the value of the forecast property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractChangeForecast } + * + */ + public void setForecast(DutchBusinessExtractChangeForecast value) { + this.forecast = value; + } + + /** + * Gets the value of the references property. + * + * @return + * possible object is + * {@link DutchBusinessExtractReferenceArray } + * + */ + public DutchBusinessExtractReferenceArray getReferences() { + return references; + } + + /** + * Sets the value of the references property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractReferenceArray } + * + */ + public void setReferences(DutchBusinessExtractReferenceArray value) { + this.references = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractReference.java new file mode 100644 index 0000000..cbe7d39 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractReference.java @@ -0,0 +1,126 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessExtractReference complex type. + * + *

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

+ * <complexType name="DutchBusinessExtractReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="extract_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="document_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="change_set" type="{http://www.webservices.nl/soap/}DutchBusinessExtractChangeSet"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessExtractReference", propOrder = { + +}) +public class DutchBusinessExtractReference { + + @XmlElement(name = "extract_id", required = true) + protected String extractId; + @XmlElement(name = "document_date", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar documentDate; + @XmlElement(name = "change_set", required = true) + protected DutchBusinessExtractChangeSet changeSet; + + /** + * Gets the value of the extractId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getExtractId() { + return extractId; + } + + /** + * Sets the value of the extractId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setExtractId(String value) { + this.extractId = value; + } + + /** + * Gets the value of the documentDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDocumentDate() { + return documentDate; + } + + /** + * Sets the value of the documentDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDocumentDate(XMLGregorianCalendar value) { + this.documentDate = value; + } + + /** + * Gets the value of the changeSet property. + * + * @return + * possible object is + * {@link DutchBusinessExtractChangeSet } + * + */ + public DutchBusinessExtractChangeSet getChangeSet() { + return changeSet; + } + + /** + * Sets the value of the changeSet property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractChangeSet } + * + */ + public void setChangeSet(DutchBusinessExtractChangeSet value) { + this.changeSet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractReferenceArray.java new file mode 100644 index 0000000..d26ffc5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessExtractReferenceArray complex type. + * + *

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

+ * <complexType name="DutchBusinessExtractReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessExtractReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessExtractReferenceArray", propOrder = { + "item" +}) +public class DutchBusinessExtractReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessExtractReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessFormattedAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessFormattedAddress.java new file mode 100644 index 0000000..b785104 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessFormattedAddress.java @@ -0,0 +1,119 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessFormattedAddress complex type. + * + *

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

+ * <complexType name="DutchBusinessFormattedAddress">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="original" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
+ *         <element name="official" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
+ *         <element name="formatted" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessFormattedAddress", propOrder = { + +}) +public class DutchBusinessFormattedAddress { + + protected DutchBusinessAddressV3 original; + protected DutchBusinessAddressV3 official; + protected DutchBusinessAddressV3 formatted; + + /** + * Gets the value of the original property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV3 } + * + */ + public DutchBusinessAddressV3 getOriginal() { + return original; + } + + /** + * Sets the value of the original property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV3 } + * + */ + public void setOriginal(DutchBusinessAddressV3 value) { + this.original = value; + } + + /** + * Gets the value of the official property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV3 } + * + */ + public DutchBusinessAddressV3 getOfficial() { + return official; + } + + /** + * Sets the value of the official property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV3 } + * + */ + public void setOfficial(DutchBusinessAddressV3 value) { + this.official = value; + } + + /** + * Gets the value of the formatted property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV3 } + * + */ + public DutchBusinessAddressV3 getFormatted() { + return formatted; + } + + /** + * Sets the value of the formatted property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV3 } + * + */ + public void setFormatted(DutchBusinessAddressV3 value) { + this.formatted = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsRequestType.java new file mode 100644 index 0000000..1c11a55 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsRequestType.java @@ -0,0 +1,153 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for dutchBusinessGetAdditionalPositionsRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetAdditionalPositionsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="birth_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetAdditionalPositionsRequestType", propOrder = { + +}) +public class DutchBusinessGetAdditionalPositionsRequestType { + + @XmlElement(name = "first_name", required = true) + protected String firstName; + @XmlElement(name = "last_name", required = true) + protected String lastName; + @XmlElement(name = "birth_date", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar birthDate; + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the birthDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getBirthDate() { + return birthDate; + } + + /** + * Sets the value of the birthDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setBirthDate(XMLGregorianCalendar value) { + this.birthDate = value; + } + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsResponseType.java new file mode 100644 index 0000000..e65a395 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetAdditionalPositionsResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetAdditionalPositionsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessGetAdditionalPositionsResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetAdditionalPositionsResponseType", propOrder = { + +}) +public class DutchBusinessGetAdditionalPositionsResponseType { + + @XmlElement(required = true) + protected DutchBusinessGetAdditionalPositionsResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessGetAdditionalPositionsResult } + * + */ + public DutchBusinessGetAdditionalPositionsResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessGetAdditionalPositionsResult } + * + */ + public void setOut(DutchBusinessGetAdditionalPositionsResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsResult.java new file mode 100644 index 0000000..c3469d4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsResult.java @@ -0,0 +1,177 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessGetAdditionalPositionsResult complex type. + * + *

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

+ * <complexType name="DutchBusinessGetAdditionalPositionsResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="functionary" type="{http://www.webservices.nl/soap/}DutchBusinessAdditionalPositionFunctionary"/>
+ *         <element name="current_positions" type="{http://www.webservices.nl/soap/}DutchBusinessAdditionalPositionArray"/>
+ *         <element name="previous_positions" type="{http://www.webservices.nl/soap/}DutchBusinessAdditionalPositionArray"/>
+ *         <element name="possible_current_positions" type="{http://www.webservices.nl/soap/}DutchBusinessAdditionalPositionArray"/>
+ *         <element name="possible_previous_positions" type="{http://www.webservices.nl/soap/}DutchBusinessAdditionalPositionArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessGetAdditionalPositionsResult", propOrder = { + +}) +public class DutchBusinessGetAdditionalPositionsResult { + + @XmlElement(required = true) + protected DutchBusinessAdditionalPositionFunctionary functionary; + @XmlElement(name = "current_positions", required = true) + protected DutchBusinessAdditionalPositionArray currentPositions; + @XmlElement(name = "previous_positions", required = true) + protected DutchBusinessAdditionalPositionArray previousPositions; + @XmlElement(name = "possible_current_positions", required = true) + protected DutchBusinessAdditionalPositionArray possibleCurrentPositions; + @XmlElement(name = "possible_previous_positions", required = true) + protected DutchBusinessAdditionalPositionArray possiblePreviousPositions; + + /** + * Gets the value of the functionary property. + * + * @return + * possible object is + * {@link DutchBusinessAdditionalPositionFunctionary } + * + */ + public DutchBusinessAdditionalPositionFunctionary getFunctionary() { + return functionary; + } + + /** + * Sets the value of the functionary property. + * + * @param value + * allowed object is + * {@link DutchBusinessAdditionalPositionFunctionary } + * + */ + public void setFunctionary(DutchBusinessAdditionalPositionFunctionary value) { + this.functionary = value; + } + + /** + * Gets the value of the currentPositions property. + * + * @return + * possible object is + * {@link DutchBusinessAdditionalPositionArray } + * + */ + public DutchBusinessAdditionalPositionArray getCurrentPositions() { + return currentPositions; + } + + /** + * Sets the value of the currentPositions property. + * + * @param value + * allowed object is + * {@link DutchBusinessAdditionalPositionArray } + * + */ + public void setCurrentPositions(DutchBusinessAdditionalPositionArray value) { + this.currentPositions = value; + } + + /** + * Gets the value of the previousPositions property. + * + * @return + * possible object is + * {@link DutchBusinessAdditionalPositionArray } + * + */ + public DutchBusinessAdditionalPositionArray getPreviousPositions() { + return previousPositions; + } + + /** + * Sets the value of the previousPositions property. + * + * @param value + * allowed object is + * {@link DutchBusinessAdditionalPositionArray } + * + */ + public void setPreviousPositions(DutchBusinessAdditionalPositionArray value) { + this.previousPositions = value; + } + + /** + * Gets the value of the possibleCurrentPositions property. + * + * @return + * possible object is + * {@link DutchBusinessAdditionalPositionArray } + * + */ + public DutchBusinessAdditionalPositionArray getPossibleCurrentPositions() { + return possibleCurrentPositions; + } + + /** + * Sets the value of the possibleCurrentPositions property. + * + * @param value + * allowed object is + * {@link DutchBusinessAdditionalPositionArray } + * + */ + public void setPossibleCurrentPositions(DutchBusinessAdditionalPositionArray value) { + this.possibleCurrentPositions = value; + } + + /** + * Gets the value of the possiblePreviousPositions property. + * + * @return + * possible object is + * {@link DutchBusinessAdditionalPositionArray } + * + */ + public DutchBusinessAdditionalPositionArray getPossiblePreviousPositions() { + return possiblePreviousPositions; + } + + /** + * Sets the value of the possiblePreviousPositions property. + * + * @param value + * allowed object is + * {@link DutchBusinessAdditionalPositionArray } + * + */ + public void setPossiblePreviousPositions(DutchBusinessAdditionalPositionArray value) { + this.possiblePreviousPositions = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAnnualFinancialStatementRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAnnualFinancialStatementRequestType.java new file mode 100644 index 0000000..0f8da2c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAnnualFinancialStatementRequestType.java @@ -0,0 +1,114 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetAnnualFinancialStatementRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetAnnualFinancialStatementRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetAnnualFinancialStatementRequestType", propOrder = { + +}) +public class DutchBusinessGetAnnualFinancialStatementRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + protected int year; + @XmlElement(required = true) + protected String type; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the year property. + * + */ + public int getYear() { + return year; + } + + /** + * Sets the value of the year property. + * + */ + public void setYear(int value) { + this.year = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAnnualFinancialStatementResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAnnualFinancialStatementResponseType.java new file mode 100644 index 0000000..bfbca66 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAnnualFinancialStatementResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetAnnualFinancialStatementResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetAnnualFinancialStatementResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessAnnualFinancialStatement"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetAnnualFinancialStatementResponseType", propOrder = { + +}) +public class DutchBusinessGetAnnualFinancialStatementResponseType { + + @XmlElement(required = true) + protected DutchBusinessAnnualFinancialStatement out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessAnnualFinancialStatement } + * + */ + public DutchBusinessAnnualFinancialStatement getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessAnnualFinancialStatement } + * + */ + public void setOut(DutchBusinessAnnualFinancialStatement value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraph.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraph.java new file mode 100644 index 0000000..14cd59e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraph.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessGetConcernRelationsDetailsGraph complex type. + * + *

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

+ * <complexType name="DutchBusinessGetConcernRelationsDetailsGraph">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nodes" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsDetailsGraphNodeArray"/>
+ *         <element name="links" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsDetailsGraphLinkArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessGetConcernRelationsDetailsGraph", propOrder = { + +}) +public class DutchBusinessGetConcernRelationsDetailsGraph { + + @XmlElement(required = true) + protected DutchBusinessGetConcernRelationsDetailsGraphNodeArray nodes; + @XmlElement(required = true) + protected DutchBusinessGetConcernRelationsDetailsGraphLinkArray links; + + /** + * Gets the value of the nodes property. + * + * @return + * possible object is + * {@link DutchBusinessGetConcernRelationsDetailsGraphNodeArray } + * + */ + public DutchBusinessGetConcernRelationsDetailsGraphNodeArray getNodes() { + return nodes; + } + + /** + * Sets the value of the nodes property. + * + * @param value + * allowed object is + * {@link DutchBusinessGetConcernRelationsDetailsGraphNodeArray } + * + */ + public void setNodes(DutchBusinessGetConcernRelationsDetailsGraphNodeArray value) { + this.nodes = value; + } + + /** + * Gets the value of the links property. + * + * @return + * possible object is + * {@link DutchBusinessGetConcernRelationsDetailsGraphLinkArray } + * + */ + public DutchBusinessGetConcernRelationsDetailsGraphLinkArray getLinks() { + return links; + } + + /** + * Sets the value of the links property. + * + * @param value + * allowed object is + * {@link DutchBusinessGetConcernRelationsDetailsGraphLinkArray } + * + */ + public void setLinks(DutchBusinessGetConcernRelationsDetailsGraphLinkArray value) { + this.links = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphLink.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphLink.java new file mode 100644 index 0000000..579af6b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphLink.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessGetConcernRelationsDetailsGraphLink complex type. + * + *

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

+ * <complexType name="DutchBusinessGetConcernRelationsDetailsGraphLink">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="source" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="target" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessGetConcernRelationsDetailsGraphLink", propOrder = { + +}) +public class DutchBusinessGetConcernRelationsDetailsGraphLink { + + @XmlElement(required = true) + protected String source; + @XmlElement(required = true) + protected String target; + @XmlElement(required = true) + protected String type; + + /** + * Gets the value of the source property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSource() { + return source; + } + + /** + * Sets the value of the source property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSource(String value) { + this.source = value; + } + + /** + * Gets the value of the target property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTarget() { + return target; + } + + /** + * Sets the value of the target property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTarget(String value) { + this.target = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphLinkArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphLinkArray.java new file mode 100644 index 0000000..15a6f0c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphLinkArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessGetConcernRelationsDetailsGraphLinkArray complex type. + * + *

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

+ * <complexType name="DutchBusinessGetConcernRelationsDetailsGraphLinkArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsDetailsGraphLink" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessGetConcernRelationsDetailsGraphLinkArray", propOrder = { + "item" +}) +public class DutchBusinessGetConcernRelationsDetailsGraphLinkArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessGetConcernRelationsDetailsGraphLink } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphNode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphNode.java new file mode 100644 index 0000000..f5e2bf6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphNode.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessGetConcernRelationsDetailsGraphNode complex type. + * + *

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

+ * <complexType name="DutchBusinessGetConcernRelationsDetailsGraphNode">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessGetConcernRelationsDetailsGraphNode", propOrder = { + +}) +public class DutchBusinessGetConcernRelationsDetailsGraphNode { + + @XmlElement(required = true) + protected String id; + @XmlElement(required = true) + protected String name; + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphNodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphNodeArray.java new file mode 100644 index 0000000..3b2612b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphNodeArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessGetConcernRelationsDetailsGraphNodeArray complex type. + * + *

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

+ * <complexType name="DutchBusinessGetConcernRelationsDetailsGraphNodeArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsDetailsGraphNode" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessGetConcernRelationsDetailsGraphNodeArray", propOrder = { + "item" +}) +public class DutchBusinessGetConcernRelationsDetailsGraphNodeArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessGetConcernRelationsDetailsGraphNode } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsRequestType.java new file mode 100644 index 0000000..6801699 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsRequestType.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetConcernRelationsDetailsRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetConcernRelationsDetailsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="include_source" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetConcernRelationsDetailsRequestType", propOrder = { + +}) +public class DutchBusinessGetConcernRelationsDetailsRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "include_source") + protected boolean includeSource; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the includeSource property. + * + */ + public boolean isIncludeSource() { + return includeSource; + } + + /** + * Sets the value of the includeSource property. + * + */ + public void setIncludeSource(boolean value) { + this.includeSource = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsResponseType.java new file mode 100644 index 0000000..39df754 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetConcernRelationsDetailsResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetConcernRelationsDetailsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsDetailsResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetConcernRelationsDetailsResponseType", propOrder = { + +}) +public class DutchBusinessGetConcernRelationsDetailsResponseType { + + @XmlElement(required = true) + protected DutchBusinessGetConcernRelationsDetailsResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessGetConcernRelationsDetailsResult } + * + */ + public DutchBusinessGetConcernRelationsDetailsResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessGetConcernRelationsDetailsResult } + * + */ + public void setOut(DutchBusinessGetConcernRelationsDetailsResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsResult.java new file mode 100644 index 0000000..e25a94b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsResult.java @@ -0,0 +1,145 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessGetConcernRelationsDetailsResult complex type. + * + *

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

+ * <complexType name="DutchBusinessGetConcernRelationsDetailsResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="graph" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsDetailsGraph"/>
+ *         <element name="pdf" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *         <element name="source" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessGetConcernRelationsDetailsResult", propOrder = { + +}) +public class DutchBusinessGetConcernRelationsDetailsResult { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(required = true) + protected DutchBusinessGetConcernRelationsDetailsGraph graph; + @XmlElement(required = true) + protected byte[] pdf; + protected byte[] source; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the graph property. + * + * @return + * possible object is + * {@link DutchBusinessGetConcernRelationsDetailsGraph } + * + */ + public DutchBusinessGetConcernRelationsDetailsGraph getGraph() { + return graph; + } + + /** + * Sets the value of the graph property. + * + * @param value + * allowed object is + * {@link DutchBusinessGetConcernRelationsDetailsGraph } + * + */ + public void setGraph(DutchBusinessGetConcernRelationsDetailsGraph value) { + this.graph = value; + } + + /** + * Gets the value of the pdf property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getPdf() { + return pdf; + } + + /** + * Sets the value of the pdf property. + * + * @param value + * allowed object is + * byte[] + */ + public void setPdf(byte[] value) { + this.pdf = value; + } + + /** + * Gets the value of the source property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getSource() { + return source; + } + + /** + * Sets the value of the source property. + * + * @param value + * allowed object is + * byte[] + */ + public void setSource(byte[] value) { + this.source = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewReference.java new file mode 100644 index 0000000..0c91776 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewReference.java @@ -0,0 +1,151 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessGetConcernRelationsOverviewReference complex type. + * + *

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

+ * <complexType name="DutchBusinessGetConcernRelationsOverviewReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="levels" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="level_of_matched_registration" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="registrations" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessGetConcernRelationsOverviewReference", propOrder = { + +}) +public class DutchBusinessGetConcernRelationsOverviewReference { + + @XmlElement(required = true) + protected String name; + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + protected int levels; + @XmlElement(name = "level_of_matched_registration") + protected int levelOfMatchedRegistration; + protected int registrations; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the levels property. + * + */ + public int getLevels() { + return levels; + } + + /** + * Sets the value of the levels property. + * + */ + public void setLevels(int value) { + this.levels = value; + } + + /** + * Gets the value of the levelOfMatchedRegistration property. + * + */ + public int getLevelOfMatchedRegistration() { + return levelOfMatchedRegistration; + } + + /** + * Sets the value of the levelOfMatchedRegistration property. + * + */ + public void setLevelOfMatchedRegistration(int value) { + this.levelOfMatchedRegistration = value; + } + + /** + * Gets the value of the registrations property. + * + */ + public int getRegistrations() { + return registrations; + } + + /** + * Sets the value of the registrations property. + * + */ + public void setRegistrations(int value) { + this.registrations = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewReferenceArray.java new file mode 100644 index 0000000..0596adf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessGetConcernRelationsOverviewReferenceArray complex type. + * + *

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

+ * <complexType name="DutchBusinessGetConcernRelationsOverviewReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsOverviewReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessGetConcernRelationsOverviewReferenceArray", propOrder = { + "item" +}) +public class DutchBusinessGetConcernRelationsOverviewReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessGetConcernRelationsOverviewReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewRequestType.java new file mode 100644 index 0000000..598a97b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetConcernRelationsOverviewRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetConcernRelationsOverviewRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetConcernRelationsOverviewRequestType", propOrder = { + +}) +public class DutchBusinessGetConcernRelationsOverviewRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewResponseType.java new file mode 100644 index 0000000..23374cd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetConcernRelationsOverviewResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetConcernRelationsOverviewResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsOverviewResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetConcernRelationsOverviewResponseType", propOrder = { + +}) +public class DutchBusinessGetConcernRelationsOverviewResponseType { + + @XmlElement(required = true) + protected DutchBusinessGetConcernRelationsOverviewResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessGetConcernRelationsOverviewResult } + * + */ + public DutchBusinessGetConcernRelationsOverviewResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessGetConcernRelationsOverviewResult } + * + */ + public void setOut(DutchBusinessGetConcernRelationsOverviewResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewResult.java new file mode 100644 index 0000000..9182f77 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewResult.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessGetConcernRelationsOverviewResult complex type. + * + *

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

+ * <complexType name="DutchBusinessGetConcernRelationsOverviewResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="references" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsOverviewReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessGetConcernRelationsOverviewResult", propOrder = { + +}) +public class DutchBusinessGetConcernRelationsOverviewResult { + + @XmlElement(required = true) + protected DutchBusinessGetConcernRelationsOverviewReferenceArray references; + + /** + * Gets the value of the references property. + * + * @return + * possible object is + * {@link DutchBusinessGetConcernRelationsOverviewReferenceArray } + * + */ + public DutchBusinessGetConcernRelationsOverviewReferenceArray getReferences() { + return references; + } + + /** + * Sets the value of the references property. + * + * @param value + * allowed object is + * {@link DutchBusinessGetConcernRelationsOverviewReferenceArray } + * + */ + public void setReferences(DutchBusinessGetConcernRelationsOverviewReferenceArray value) { + this.references = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierHistoryRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierHistoryRequestType.java new file mode 100644 index 0000000..9626284 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierHistoryRequestType.java @@ -0,0 +1,127 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for dutchBusinessGetDossierHistoryRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetDossierHistoryRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="period_start_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="period_end_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetDossierHistoryRequestType", propOrder = { + +}) +public class DutchBusinessGetDossierHistoryRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "period_start_date", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar periodStartDate; + @XmlElement(name = "period_end_date", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar periodEndDate; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the periodStartDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPeriodStartDate() { + return periodStartDate; + } + + /** + * Sets the value of the periodStartDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPeriodStartDate(XMLGregorianCalendar value) { + this.periodStartDate = value; + } + + /** + * Gets the value of the periodEndDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPeriodEndDate() { + return periodEndDate; + } + + /** + * Sets the value of the periodEndDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPeriodEndDate(XMLGregorianCalendar value) { + this.periodEndDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierHistoryResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierHistoryResponseType.java new file mode 100644 index 0000000..6c68ff4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierHistoryResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetDossierHistoryResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetDossierHistoryResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessDossierHistory"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetDossierHistoryResponseType", propOrder = { + +}) +public class DutchBusinessGetDossierHistoryResponseType { + + @XmlElement(required = true) + protected DutchBusinessDossierHistory out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessDossierHistory } + * + */ + public DutchBusinessDossierHistory getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessDossierHistory } + * + */ + public void setOut(DutchBusinessDossierHistory value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierRequestType.java new file mode 100644 index 0000000..537013c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetDossierRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetDossierRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetDossierRequestType", propOrder = { + +}) +public class DutchBusinessGetDossierRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number", required = true) + protected String establishmentNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierResponseType.java new file mode 100644 index 0000000..c48f6cf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetDossierResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetDossierResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessDossier"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetDossierResponseType", propOrder = { + +}) +public class DutchBusinessGetDossierResponseType { + + @XmlElement(required = true) + protected DutchBusinessDossier out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessDossier } + * + */ + public DutchBusinessDossier getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessDossier } + * + */ + public void setOut(DutchBusinessDossier value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV2RequestType.java new file mode 100644 index 0000000..0a70a51 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV2RequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetDossierV2RequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetDossierV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetDossierV2RequestType", propOrder = { + +}) +public class DutchBusinessGetDossierV2RequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number", required = true) + protected String establishmentNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV2ResponseType.java new file mode 100644 index 0000000..424d6d5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetDossierV2ResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetDossierV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessDossierV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetDossierV2ResponseType", propOrder = { + +}) +public class DutchBusinessGetDossierV2ResponseType { + + @XmlElement(required = true) + protected DutchBusinessDossierV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessDossierV2 } + * + */ + public DutchBusinessDossierV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessDossierV2 } + * + */ + public void setOut(DutchBusinessDossierV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV3RequestType.java new file mode 100644 index 0000000..c9f161d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV3RequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetDossierV3RequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetDossierV3RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetDossierV3RequestType", propOrder = { + +}) +public class DutchBusinessGetDossierV3RequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number", required = true) + protected String establishmentNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV3ResponseType.java new file mode 100644 index 0000000..ba1f45b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV3ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetDossierV3ResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetDossierV3ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessDossierV3"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetDossierV3ResponseType", propOrder = { + +}) +public class DutchBusinessGetDossierV3ResponseType { + + @XmlElement(required = true) + protected DutchBusinessDossierV3 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessDossierV3 } + * + */ + public DutchBusinessDossierV3 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessDossierV3 } + * + */ + public void setOut(DutchBusinessDossierV3 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataRequestType.java new file mode 100644 index 0000000..937e7f9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataRequestType.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractDocumentDataRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractDocumentDataRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="allow_caching" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractDocumentDataRequestType", propOrder = { + +}) +public class DutchBusinessGetExtractDocumentDataRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "allow_caching") + protected boolean allowCaching; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the allowCaching property. + * + */ + public boolean isAllowCaching() { + return allowCaching; + } + + /** + * Sets the value of the allowCaching property. + * + */ + public void setAllowCaching(boolean value) { + this.allowCaching = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataResponseType.java new file mode 100644 index 0000000..0ae47ef --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractDocumentDataResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractDocumentDataResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentData"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractDocumentDataResponseType", propOrder = { + +}) +public class DutchBusinessGetExtractDocumentDataResponseType { + + @XmlElement(required = true) + protected DutchBusinessExtractDocumentData out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessExtractDocumentData } + * + */ + public DutchBusinessExtractDocumentData getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractDocumentData } + * + */ + public void setOut(DutchBusinessExtractDocumentData value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV2RequestType.java new file mode 100644 index 0000000..1387def --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV2RequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractDocumentDataV2RequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractDocumentDataV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractDocumentDataV2RequestType", propOrder = { + +}) +public class DutchBusinessGetExtractDocumentDataV2RequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV2ResponseType.java new file mode 100644 index 0000000..44c696e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractDocumentDataV2ResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractDocumentDataV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentDataV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractDocumentDataV2ResponseType", propOrder = { + +}) +public class DutchBusinessGetExtractDocumentDataV2ResponseType { + + @XmlElement(required = true) + protected DutchBusinessExtractDocumentDataV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessExtractDocumentDataV2 } + * + */ + public DutchBusinessExtractDocumentDataV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractDocumentDataV2 } + * + */ + public void setOut(DutchBusinessExtractDocumentDataV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV3RequestType.java new file mode 100644 index 0000000..a37a63d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV3RequestType.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractDocumentDataV3RequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractDocumentDataV3RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="include_source" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractDocumentDataV3RequestType", propOrder = { + +}) +public class DutchBusinessGetExtractDocumentDataV3RequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "include_source") + protected boolean includeSource; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the includeSource property. + * + */ + public boolean isIncludeSource() { + return includeSource; + } + + /** + * Sets the value of the includeSource property. + * + */ + public void setIncludeSource(boolean value) { + this.includeSource = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV3ResponseType.java new file mode 100644 index 0000000..ed680ad --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV3ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractDocumentDataV3ResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractDocumentDataV3ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentDataV3"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractDocumentDataV3ResponseType", propOrder = { + +}) +public class DutchBusinessGetExtractDocumentDataV3ResponseType { + + @XmlElement(required = true) + protected DutchBusinessExtractDocumentDataV3 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessExtractDocumentDataV3 } + * + */ + public DutchBusinessExtractDocumentDataV3 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractDocumentDataV3 } + * + */ + public void setOut(DutchBusinessExtractDocumentDataV3 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentRequestType.java new file mode 100644 index 0000000..21f601a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentRequestType.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractDocumentRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractDocumentRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="allow_caching" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractDocumentRequestType", propOrder = { + +}) +public class DutchBusinessGetExtractDocumentRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "allow_caching") + protected boolean allowCaching; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the allowCaching property. + * + */ + public boolean isAllowCaching() { + return allowCaching; + } + + /** + * Sets the value of the allowCaching property. + * + */ + public void setAllowCaching(boolean value) { + this.allowCaching = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentResponseType.java new file mode 100644 index 0000000..0d98790 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractDocumentResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractDocumentResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocument"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractDocumentResponseType", propOrder = { + +}) +public class DutchBusinessGetExtractDocumentResponseType { + + @XmlElement(required = true) + protected DutchBusinessExtractDocument out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessExtractDocument } + * + */ + public DutchBusinessExtractDocument getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractDocument } + * + */ + public void setOut(DutchBusinessExtractDocument value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryChangedRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryChangedRequestType.java new file mode 100644 index 0000000..5d9377c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryChangedRequestType.java @@ -0,0 +1,127 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for dutchBusinessGetExtractHistoryChangedRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractHistoryChangedRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="period_start_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="period_end_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractHistoryChangedRequestType", propOrder = { + +}) +public class DutchBusinessGetExtractHistoryChangedRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "period_start_date", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar periodStartDate; + @XmlElement(name = "period_end_date", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar periodEndDate; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the periodStartDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPeriodStartDate() { + return periodStartDate; + } + + /** + * Sets the value of the periodStartDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPeriodStartDate(XMLGregorianCalendar value) { + this.periodStartDate = value; + } + + /** + * Gets the value of the periodEndDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPeriodEndDate() { + return periodEndDate; + } + + /** + * Sets the value of the periodEndDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPeriodEndDate(XMLGregorianCalendar value) { + this.periodEndDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryChangedResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryChangedResponseType.java new file mode 100644 index 0000000..fbbe56f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryChangedResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractHistoryChangedResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractHistoryChangedResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractHistory"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractHistoryChangedResponseType", propOrder = { + +}) +public class DutchBusinessGetExtractHistoryChangedResponseType { + + @XmlElement(required = true) + protected DutchBusinessExtractHistory out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessExtractHistory } + * + */ + public DutchBusinessExtractHistory getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractHistory } + * + */ + public void setOut(DutchBusinessExtractHistory value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataRequestType.java new file mode 100644 index 0000000..2481206 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractHistoryDocumentDataRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractHistoryDocumentDataRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="extract_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractHistoryDocumentDataRequestType", propOrder = { + +}) +public class DutchBusinessGetExtractHistoryDocumentDataRequestType { + + @XmlElement(name = "extract_id", required = true) + protected String extractId; + + /** + * Gets the value of the extractId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getExtractId() { + return extractId; + } + + /** + * Sets the value of the extractId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setExtractId(String value) { + this.extractId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataResponseType.java new file mode 100644 index 0000000..2511a1d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractHistoryDocumentDataResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractHistoryDocumentDataResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentData"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractHistoryDocumentDataResponseType", propOrder = { + +}) +public class DutchBusinessGetExtractHistoryDocumentDataResponseType { + + @XmlElement(required = true) + protected DutchBusinessExtractDocumentData out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessExtractDocumentData } + * + */ + public DutchBusinessExtractDocumentData getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractDocumentData } + * + */ + public void setOut(DutchBusinessExtractDocumentData value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV2RequestType.java new file mode 100644 index 0000000..dc9f306 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV2RequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractHistoryDocumentDataV2RequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractHistoryDocumentDataV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="extract_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractHistoryDocumentDataV2RequestType", propOrder = { + +}) +public class DutchBusinessGetExtractHistoryDocumentDataV2RequestType { + + @XmlElement(name = "extract_id", required = true) + protected String extractId; + + /** + * Gets the value of the extractId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getExtractId() { + return extractId; + } + + /** + * Sets the value of the extractId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setExtractId(String value) { + this.extractId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV2ResponseType.java new file mode 100644 index 0000000..688f807 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractHistoryDocumentDataV2ResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractHistoryDocumentDataV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentDataV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractHistoryDocumentDataV2ResponseType", propOrder = { + +}) +public class DutchBusinessGetExtractHistoryDocumentDataV2ResponseType { + + @XmlElement(required = true) + protected DutchBusinessExtractDocumentDataV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessExtractDocumentDataV2 } + * + */ + public DutchBusinessExtractDocumentDataV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractDocumentDataV2 } + * + */ + public void setOut(DutchBusinessExtractDocumentDataV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType.java new file mode 100644 index 0000000..6edc45d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType.java @@ -0,0 +1,146 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for dutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="include_source" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="period_start" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="period_end" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType", propOrder = { + +}) +public class DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "include_source") + protected boolean includeSource; + @XmlElement(name = "period_start", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar periodStart; + @XmlElement(name = "period_end", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar periodEnd; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the includeSource property. + * + */ + public boolean isIncludeSource() { + return includeSource; + } + + /** + * Sets the value of the includeSource property. + * + */ + public void setIncludeSource(boolean value) { + this.includeSource = value; + } + + /** + * Gets the value of the periodStart property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPeriodStart() { + return periodStart; + } + + /** + * Sets the value of the periodStart property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPeriodStart(XMLGregorianCalendar value) { + this.periodStart = value; + } + + /** + * Gets the value of the periodEnd property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPeriodEnd() { + return periodEnd; + } + + /** + * Sets the value of the periodEnd property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPeriodEnd(XMLGregorianCalendar value) { + this.periodEnd = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType.java new file mode 100644 index 0000000..5f47621 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentDataV3"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType", propOrder = { + +}) +public class DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType { + + @XmlElement(required = true) + protected DutchBusinessExtractDocumentDataV3 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessExtractDocumentDataV3 } + * + */ + public DutchBusinessExtractDocumentDataV3 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractDocumentDataV3 } + * + */ + public void setOut(DutchBusinessExtractDocumentDataV3 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3RequestType.java new file mode 100644 index 0000000..4718abc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3RequestType.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractHistoryDocumentDataV3RequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractHistoryDocumentDataV3RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="extract_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="include_source" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractHistoryDocumentDataV3RequestType", propOrder = { + +}) +public class DutchBusinessGetExtractHistoryDocumentDataV3RequestType { + + @XmlElement(name = "extract_id", required = true) + protected String extractId; + @XmlElement(name = "include_source") + protected boolean includeSource; + + /** + * Gets the value of the extractId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getExtractId() { + return extractId; + } + + /** + * Sets the value of the extractId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setExtractId(String value) { + this.extractId = value; + } + + /** + * Gets the value of the includeSource property. + * + */ + public boolean isIncludeSource() { + return includeSource; + } + + /** + * Sets the value of the includeSource property. + * + */ + public void setIncludeSource(boolean value) { + this.includeSource = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ResponseType.java new file mode 100644 index 0000000..b2f1b33 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractHistoryDocumentDataV3ResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractHistoryDocumentDataV3ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentDataV3"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractHistoryDocumentDataV3ResponseType", propOrder = { + +}) +public class DutchBusinessGetExtractHistoryDocumentDataV3ResponseType { + + @XmlElement(required = true) + protected DutchBusinessExtractDocumentDataV3 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessExtractDocumentDataV3 } + * + */ + public DutchBusinessExtractDocumentDataV3 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractDocumentDataV3 } + * + */ + public void setOut(DutchBusinessExtractDocumentDataV3 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryRequestType.java new file mode 100644 index 0000000..8d1c583 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryRequestType.java @@ -0,0 +1,127 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for dutchBusinessGetExtractHistoryRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractHistoryRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="period_start_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="period_end_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractHistoryRequestType", propOrder = { + +}) +public class DutchBusinessGetExtractHistoryRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "period_start_date", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar periodStartDate; + @XmlElement(name = "period_end_date", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar periodEndDate; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the periodStartDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPeriodStartDate() { + return periodStartDate; + } + + /** + * Sets the value of the periodStartDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPeriodStartDate(XMLGregorianCalendar value) { + this.periodStartDate = value; + } + + /** + * Gets the value of the periodEndDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPeriodEndDate() { + return periodEndDate; + } + + /** + * Sets the value of the periodEndDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPeriodEndDate(XMLGregorianCalendar value) { + this.periodEndDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryResponseType.java new file mode 100644 index 0000000..7c8c509 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetExtractHistoryResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetExtractHistoryResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractHistory"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetExtractHistoryResponseType", propOrder = { + +}) +public class DutchBusinessGetExtractHistoryResponseType { + + @XmlElement(required = true) + protected DutchBusinessExtractHistory out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessExtractHistory } + * + */ + public DutchBusinessExtractHistory getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractHistory } + * + */ + public void setOut(DutchBusinessExtractHistory value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalEntityRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalEntityRequestType.java new file mode 100644 index 0000000..ca460ad --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalEntityRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetLegalEntityRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetLegalEntityRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetLegalEntityRequestType", propOrder = { + +}) +public class DutchBusinessGetLegalEntityRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalEntityResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalEntityResponseType.java new file mode 100644 index 0000000..cc2a4f4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalEntityResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetLegalEntityResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetLegalEntityResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessLegalEntityData"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetLegalEntityResponseType", propOrder = { + +}) +public class DutchBusinessGetLegalEntityResponseType { + + @XmlElement(required = true) + protected DutchBusinessLegalEntityData out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessLegalEntityData } + * + */ + public DutchBusinessLegalEntityData getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessLegalEntityData } + * + */ + public void setOut(DutchBusinessLegalEntityData value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV2RequestType.java new file mode 100644 index 0000000..06f6319 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV2RequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetLegalExtractDocumentDataV2RequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetLegalExtractDocumentDataV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetLegalExtractDocumentDataV2RequestType", propOrder = { + +}) +public class DutchBusinessGetLegalExtractDocumentDataV2RequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV2ResponseType.java new file mode 100644 index 0000000..e92d121 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetLegalExtractDocumentDataV2ResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetLegalExtractDocumentDataV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentDataV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetLegalExtractDocumentDataV2ResponseType", propOrder = { + +}) +public class DutchBusinessGetLegalExtractDocumentDataV2ResponseType { + + @XmlElement(required = true) + protected DutchBusinessExtractDocumentDataV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessExtractDocumentDataV2 } + * + */ + public DutchBusinessExtractDocumentDataV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractDocumentDataV2 } + * + */ + public void setOut(DutchBusinessExtractDocumentDataV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV3RequestType.java new file mode 100644 index 0000000..8fcf852 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV3RequestType.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetLegalExtractDocumentDataV3RequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetLegalExtractDocumentDataV3RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="include_source" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetLegalExtractDocumentDataV3RequestType", propOrder = { + +}) +public class DutchBusinessGetLegalExtractDocumentDataV3RequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "include_source") + protected boolean includeSource; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the includeSource property. + * + */ + public boolean isIncludeSource() { + return includeSource; + } + + /** + * Sets the value of the includeSource property. + * + */ + public void setIncludeSource(boolean value) { + this.includeSource = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV3ResponseType.java new file mode 100644 index 0000000..f008043 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV3ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetLegalExtractDocumentDataV3ResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetLegalExtractDocumentDataV3ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentDataV3"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetLegalExtractDocumentDataV3ResponseType", propOrder = { + +}) +public class DutchBusinessGetLegalExtractDocumentDataV3ResponseType { + + @XmlElement(required = true) + protected DutchBusinessExtractDocumentDataV3 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessExtractDocumentDataV3 } + * + */ + public DutchBusinessExtractDocumentDataV3 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractDocumentDataV3 } + * + */ + public void setOut(DutchBusinessExtractDocumentDataV3 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiRequestType.java new file mode 100644 index 0000000..1b9ddd0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetLeiRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetLeiRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetLeiRequestType", propOrder = { + +}) +public class DutchBusinessGetLeiRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiResponseType.java new file mode 100644 index 0000000..061341c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetLeiResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetLeiResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessGetLeiResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetLeiResponseType", propOrder = { + +}) +public class DutchBusinessGetLeiResponseType { + + @XmlElement(required = true) + protected DutchBusinessGetLeiResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessGetLeiResult } + * + */ + public DutchBusinessGetLeiResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessGetLeiResult } + * + */ + public void setOut(DutchBusinessGetLeiResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiResult.java new file mode 100644 index 0000000..6fd4b92 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiResult.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessGetLeiResult complex type. + * + *

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

+ * <complexType name="DutchBusinessGetLeiResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="lei_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="business_entity" type="{http://www.webservices.nl/soap/}DutchBusinessLeiBusinessEntity"/>
+ *         <element name="registration" type="{http://www.webservices.nl/soap/}DutchBusinessLeiRegistration"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessGetLeiResult", propOrder = { + +}) +public class DutchBusinessGetLeiResult { + + @XmlElement(name = "lei_code", required = true) + protected String leiCode; + @XmlElement(name = "business_entity", required = true) + protected DutchBusinessLeiBusinessEntity businessEntity; + @XmlElement(required = true) + protected DutchBusinessLeiRegistration registration; + + /** + * Gets the value of the leiCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLeiCode() { + return leiCode; + } + + /** + * Sets the value of the leiCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLeiCode(String value) { + this.leiCode = value; + } + + /** + * Gets the value of the businessEntity property. + * + * @return + * possible object is + * {@link DutchBusinessLeiBusinessEntity } + * + */ + public DutchBusinessLeiBusinessEntity getBusinessEntity() { + return businessEntity; + } + + /** + * Sets the value of the businessEntity property. + * + * @param value + * allowed object is + * {@link DutchBusinessLeiBusinessEntity } + * + */ + public void setBusinessEntity(DutchBusinessLeiBusinessEntity value) { + this.businessEntity = value; + } + + /** + * Gets the value of the registration property. + * + * @return + * possible object is + * {@link DutchBusinessLeiRegistration } + * + */ + public DutchBusinessLeiRegistration getRegistration() { + return registration; + } + + /** + * Sets the value of the registration property. + * + * @param value + * allowed object is + * {@link DutchBusinessLeiRegistration } + * + */ + public void setRegistration(DutchBusinessLeiRegistration value) { + this.registration = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetNonMarketingIndicatorRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetNonMarketingIndicatorRequestType.java new file mode 100644 index 0000000..758bbba --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetNonMarketingIndicatorRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetNonMarketingIndicatorRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetNonMarketingIndicatorRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetNonMarketingIndicatorRequestType", propOrder = { + +}) +public class DutchBusinessGetNonMarketingIndicatorRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number", required = true) + protected String establishmentNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetNonMarketingIndicatorResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetNonMarketingIndicatorResponseType.java new file mode 100644 index 0000000..7fce407 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetNonMarketingIndicatorResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetNonMarketingIndicatorResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetNonMarketingIndicatorResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessNonMarketingIndicator"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetNonMarketingIndicatorResponseType", propOrder = { + +}) +public class DutchBusinessGetNonMarketingIndicatorResponseType { + + @XmlElement(required = true) + protected DutchBusinessNonMarketingIndicator out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessNonMarketingIndicator } + * + */ + public DutchBusinessNonMarketingIndicator getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessNonMarketingIndicator } + * + */ + public void setOut(DutchBusinessNonMarketingIndicator value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetOrganizationTreeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetOrganizationTreeRequestType.java new file mode 100644 index 0000000..ea3340a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetOrganizationTreeRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetOrganizationTreeRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetOrganizationTreeRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetOrganizationTreeRequestType", propOrder = { + +}) +public class DutchBusinessGetOrganizationTreeRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetOrganizationTreeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetOrganizationTreeResponseType.java new file mode 100644 index 0000000..c5bee4a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetOrganizationTreeResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetOrganizationTreeResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetOrganizationTreeResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessOrganizationTree"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetOrganizationTreeResponseType", propOrder = { + +}) +public class DutchBusinessGetOrganizationTreeResponseType { + + @XmlElement(required = true) + protected DutchBusinessOrganizationTree out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessOrganizationTree } + * + */ + public DutchBusinessOrganizationTree getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessOrganizationTree } + * + */ + public void setOut(DutchBusinessOrganizationTree value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetPositionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetPositionsRequestType.java new file mode 100644 index 0000000..bc85598 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetPositionsRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetPositionsRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetPositionsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetPositionsRequestType", propOrder = { + +}) +public class DutchBusinessGetPositionsRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetPositionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetPositionsResponseType.java new file mode 100644 index 0000000..460efee --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetPositionsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetPositionsResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetPositionsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessPositions"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetPositionsResponseType", propOrder = { + +}) +public class DutchBusinessGetPositionsResponseType { + + @XmlElement(required = true) + protected DutchBusinessPositions out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessPositions } + * + */ + public DutchBusinessPositions getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessPositions } + * + */ + public void setOut(DutchBusinessPositions value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIDescriptionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIDescriptionRequestType.java new file mode 100644 index 0000000..67a5e85 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIDescriptionRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetSBIDescriptionRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetSBIDescriptionRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="sbi_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetSBIDescriptionRequestType", propOrder = { + +}) +public class DutchBusinessGetSBIDescriptionRequestType { + + @XmlElement(name = "sbi_code", required = true) + protected String sbiCode; + @XmlElement(required = true) + protected String language; + + /** + * Gets the value of the sbiCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSbiCode() { + return sbiCode; + } + + /** + * Sets the value of the sbiCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSbiCode(String value) { + this.sbiCode = value; + } + + /** + * Gets the value of the language property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLanguage() { + return language; + } + + /** + * Sets the value of the language property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLanguage(String value) { + this.language = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIDescriptionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIDescriptionResponseType.java new file mode 100644 index 0000000..cea1b74 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIDescriptionResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetSBIDescriptionResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetSBIDescriptionResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessSBICodeInfo"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetSBIDescriptionResponseType", propOrder = { + +}) +public class DutchBusinessGetSBIDescriptionResponseType { + + @XmlElement(required = true) + protected DutchBusinessSBICodeInfo out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessSBICodeInfo } + * + */ + public DutchBusinessSBICodeInfo getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessSBICodeInfo } + * + */ + public void setOut(DutchBusinessSBICodeInfo value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIRequestType.java new file mode 100644 index 0000000..30be14e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIRequestType.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetSBIRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetSBIRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetSBIRequestType", propOrder = { + +}) +public class DutchBusinessGetSBIRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number", required = true) + protected String establishmentNumber; + @XmlElement(required = true) + protected String language; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the language property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLanguage() { + return language; + } + + /** + * Sets the value of the language property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLanguage(String value) { + this.language = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIResponseType.java new file mode 100644 index 0000000..6d51427 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetSBIResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetSBIResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessSBICollection"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetSBIResponseType", propOrder = { + +}) +public class DutchBusinessGetSBIResponseType { + + @XmlElement(required = true) + protected DutchBusinessSBICollection out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessSBICollection } + * + */ + public DutchBusinessSBICollection getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessSBICollection } + * + */ + public void setOut(DutchBusinessSBICollection value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetVatNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetVatNumberRequestType.java new file mode 100644 index 0000000..84e2df8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetVatNumberRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetVatNumberRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetVatNumberRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetVatNumberRequestType", propOrder = { + +}) +public class DutchBusinessGetVatNumberRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetVatNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetVatNumberResponseType.java new file mode 100644 index 0000000..1166194 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetVatNumberResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessGetVatNumberResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessGetVatNumberResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessVatNumber"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessGetVatNumberResponseType", propOrder = { + +}) +public class DutchBusinessGetVatNumberResponseType { + + @XmlElement(required = true) + protected DutchBusinessVatNumber out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessVatNumber } + * + */ + public DutchBusinessVatNumber getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessVatNumber } + * + */ + public void setOut(DutchBusinessVatNumber value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessIdentifiers.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessIdentifiers.java new file mode 100644 index 0000000..c9cad61 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessIdentifiers.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessIdentifiers complex type. + * + *

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

+ * <complexType name="DutchBusinessIdentifiers">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="rsi_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessIdentifiers", propOrder = { + +}) +public class DutchBusinessIdentifiers { + + @XmlElement(name = "dossier_number") + protected String dossierNumber; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(name = "rsi_number") + protected String rsiNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the rsiNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsiNumber() { + return rsiNumber; + } + + /** + * Sets the value of the rsiNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsiNumber(String value) { + this.rsiNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvency.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvency.java new file mode 100644 index 0000000..aa2911b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvency.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessInsolvency complex type. + * + *

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

+ * <complexType name="DutchBusinessInsolvency">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="insolvency_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="events" type="{http://www.webservices.nl/soap/}DutchBusinessInsolvencyPublicationArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessInsolvency", propOrder = { + +}) +public class DutchBusinessInsolvency { + + @XmlElement(name = "insolvency_id", required = true) + protected String insolvencyId; + protected DutchBusinessInsolvencyPublicationArray events; + + /** + * Gets the value of the insolvencyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInsolvencyId() { + return insolvencyId; + } + + /** + * Sets the value of the insolvencyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInsolvencyId(String value) { + this.insolvencyId = value; + } + + /** + * Gets the value of the events property. + * + * @return + * possible object is + * {@link DutchBusinessInsolvencyPublicationArray } + * + */ + public DutchBusinessInsolvencyPublicationArray getEvents() { + return events; + } + + /** + * Sets the value of the events property. + * + * @param value + * allowed object is + * {@link DutchBusinessInsolvencyPublicationArray } + * + */ + public void setEvents(DutchBusinessInsolvencyPublicationArray value) { + this.events = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyArray.java new file mode 100644 index 0000000..80b9f52 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessInsolvencyArray complex type. + * + *

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

+ * <complexType name="DutchBusinessInsolvencyArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessInsolvency" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessInsolvencyArray", propOrder = { + "item" +}) +public class DutchBusinessInsolvencyArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessInsolvency } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyPublication.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyPublication.java new file mode 100644 index 0000000..f8ca32b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyPublication.java @@ -0,0 +1,121 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessInsolvencyPublication complex type. + * + *

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

+ * <complexType name="DutchBusinessInsolvencyPublication">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="publication_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessInsolvencyPublication", propOrder = { + +}) +public class DutchBusinessInsolvencyPublication { + + @XmlElement(name = "publication_id") + protected String publicationId; + protected String description; + protected DutchBusinessDateV3 date; + + /** + * Gets the value of the publicationId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPublicationId() { + return publicationId; + } + + /** + * Sets the value of the publicationId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPublicationId(String value) { + this.publicationId = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the date property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getDate() { + return date; + } + + /** + * Sets the value of the date property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setDate(DutchBusinessDateV3 value) { + this.date = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyPublicationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyPublicationArray.java new file mode 100644 index 0000000..081e19f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyPublicationArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessInsolvencyPublicationArray complex type. + * + *

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

+ * <complexType name="DutchBusinessInsolvencyPublicationArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessInsolvencyPublication" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessInsolvencyPublicationArray", propOrder = { + "item" +}) +public class DutchBusinessInsolvencyPublicationArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessInsolvencyPublication } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntity.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntity.java new file mode 100644 index 0000000..b77285b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntity.java @@ -0,0 +1,1574 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessLegalEntity complex type. + * + *

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

+ * <complexType name="DutchBusinessLegalEntity">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="alternative_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="shortened_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_change" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="foreign_legal_form_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="sbi_codes_text" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="company_arrangement" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="statutory_seat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="discontinuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="dissolution_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="dissolution_reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="removal_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="registration_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="legal_entity_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="liquidation_closure_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="liquidation_reopening_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="deed_incorporation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="deed_last_statutes_amendment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="last_statutes_amendment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="liability" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="merger_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="annual_report_submission" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="authorized_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="authorized_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="issued_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="issued_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="paid_up_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="paid_up_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="establishment_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="correspondence_postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="correspondence_house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="correspondence_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="correspondence_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="duration_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="shares" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="share_holders" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="fax_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="domain_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessLegalEntity", propOrder = { + +}) +public class DutchBusinessLegalEntity { + + @XmlElement(name = "rsin_number") + protected String rsinNumber; + protected String name; + @XmlElement(name = "alternative_name") + protected String alternativeName; + @XmlElement(name = "shortened_name") + protected String shortenedName; + protected String registration; + protected String status; + @XmlElement(name = "legal_form_text") + protected String legalFormText; + @XmlElement(name = "legal_form_change") + protected String legalFormChange; + @XmlElement(name = "foreign_legal_form_description") + protected String foreignLegalFormDescription; + @XmlElement(name = "sbi_codes") + protected StringArray sbiCodes; + @XmlElement(name = "sbi_codes_text") + protected StringArray sbiCodesText; + protected String activity; + @XmlElement(name = "company_arrangement") + protected String companyArrangement; + @XmlElement(name = "legal_name") + protected String legalName; + @XmlElement(name = "statutory_seat") + protected String statutorySeat; + @XmlElement(name = "registration_date") + protected DutchBusinessDate registrationDate; + @XmlElement(name = "founding_date") + protected DutchBusinessDate foundingDate; + @XmlElement(name = "discontinuation_date") + protected DutchBusinessDate discontinuationDate; + @XmlElement(name = "dissolution_date") + protected DutchBusinessDate dissolutionDate; + @XmlElement(name = "dissolution_reason") + protected String dissolutionReason; + @XmlElement(name = "removal_date") + protected DutchBusinessDate removalDate; + @XmlElement(name = "registration_end_date") + protected DutchBusinessDate registrationEndDate; + @XmlElement(name = "legal_entity_end_date") + protected DutchBusinessDate legalEntityEndDate; + @XmlElement(name = "liquidation_closure_date") + protected DutchBusinessDate liquidationClosureDate; + @XmlElement(name = "liquidation_reopening_date") + protected DutchBusinessDate liquidationReopeningDate; + @XmlElement(name = "deed_incorporation_date") + protected DutchBusinessDate deedIncorporationDate; + @XmlElement(name = "deed_last_statutes_amendment_date") + protected DutchBusinessDate deedLastStatutesAmendmentDate; + @XmlElement(name = "last_statutes_amendment_date") + protected DutchBusinessDate lastStatutesAmendmentDate; + protected String liability; + @XmlElement(name = "merger_description") + protected String mergerDescription; + @XmlElement(name = "annual_report_submission") + protected String annualReportSubmission; + @XmlElement(name = "authorized_share_capital") + protected Long authorizedShareCapital; + @XmlElement(name = "authorized_share_capital_currency") + protected String authorizedShareCapitalCurrency; + @XmlElement(name = "issued_share_capital") + protected Long issuedShareCapital; + @XmlElement(name = "issued_share_capital_currency") + protected String issuedShareCapitalCurrency; + @XmlElement(name = "paid_up_share_capital") + protected Long paidUpShareCapital; + @XmlElement(name = "paid_up_share_capital_currency") + protected String paidUpShareCapitalCurrency; + @XmlElement(name = "establishment_postcode") + protected String establishmentPostcode; + @XmlElement(name = "establishment_city") + protected String establishmentCity; + @XmlElement(name = "establishment_street") + protected String establishmentStreet; + @XmlElement(name = "establishment_house_number") + protected Integer establishmentHouseNumber; + @XmlElement(name = "establishment_house_number_addition") + protected String establishmentHouseNumberAddition; + @XmlElement(name = "establishment_country") + protected String establishmentCountry; + @XmlElement(name = "correspondence_postcode") + protected String correspondencePostcode; + @XmlElement(name = "correspondence_city") + protected String correspondenceCity; + @XmlElement(name = "correspondence_street") + protected String correspondenceStreet; + @XmlElement(name = "correspondence_house_number") + protected Integer correspondenceHouseNumber; + @XmlElement(name = "correspondence_house_number_addition") + protected String correspondenceHouseNumberAddition; + @XmlElement(name = "correspondence_country") + protected String correspondenceCountry; + protected String duration; + @XmlElement(name = "duration_end_date") + protected DutchBusinessDate durationEndDate; + protected String shares; + @XmlElement(name = "share_holders") + protected String shareHolders; + @XmlElement(name = "telephone_numbers") + protected StringArray telephoneNumbers; + @XmlElement(name = "fax_numbers") + protected StringArray faxNumbers; + @XmlElement(name = "email_addresses") + protected StringArray emailAddresses; + @XmlElement(name = "domain_names") + protected StringArray domainNames; + + /** + * Gets the value of the rsinNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsinNumber() { + return rsinNumber; + } + + /** + * Sets the value of the rsinNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsinNumber(String value) { + this.rsinNumber = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the alternativeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAlternativeName() { + return alternativeName; + } + + /** + * Sets the value of the alternativeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAlternativeName(String value) { + this.alternativeName = value; + } + + /** + * Gets the value of the shortenedName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getShortenedName() { + return shortenedName; + } + + /** + * Sets the value of the shortenedName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setShortenedName(String value) { + this.shortenedName = value; + } + + /** + * Gets the value of the registration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistration() { + return registration; + } + + /** + * Sets the value of the registration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistration(String value) { + this.registration = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the legalFormChange property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormChange() { + return legalFormChange; + } + + /** + * Sets the value of the legalFormChange property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormChange(String value) { + this.legalFormChange = value; + } + + /** + * Gets the value of the foreignLegalFormDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getForeignLegalFormDescription() { + return foreignLegalFormDescription; + } + + /** + * Sets the value of the foreignLegalFormDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setForeignLegalFormDescription(String value) { + this.foreignLegalFormDescription = value; + } + + /** + * Gets the value of the sbiCodes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getSbiCodes() { + return sbiCodes; + } + + /** + * Sets the value of the sbiCodes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setSbiCodes(StringArray value) { + this.sbiCodes = value; + } + + /** + * Gets the value of the sbiCodesText property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getSbiCodesText() { + return sbiCodesText; + } + + /** + * Sets the value of the sbiCodesText property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setSbiCodesText(StringArray value) { + this.sbiCodesText = value; + } + + /** + * Gets the value of the activity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getActivity() { + return activity; + } + + /** + * Sets the value of the activity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setActivity(String value) { + this.activity = value; + } + + /** + * Gets the value of the companyArrangement property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyArrangement() { + return companyArrangement; + } + + /** + * Sets the value of the companyArrangement property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyArrangement(String value) { + this.companyArrangement = value; + } + + /** + * Gets the value of the legalName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalName() { + return legalName; + } + + /** + * Sets the value of the legalName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalName(String value) { + this.legalName = value; + } + + /** + * Gets the value of the statutorySeat property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatutorySeat() { + return statutorySeat; + } + + /** + * Sets the value of the statutorySeat property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatutorySeat(String value) { + this.statutorySeat = value; + } + + /** + * Gets the value of the registrationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getRegistrationDate() { + return registrationDate; + } + + /** + * Sets the value of the registrationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setRegistrationDate(DutchBusinessDate value) { + this.registrationDate = value; + } + + /** + * Gets the value of the foundingDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getFoundingDate() { + return foundingDate; + } + + /** + * Sets the value of the foundingDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setFoundingDate(DutchBusinessDate value) { + this.foundingDate = value; + } + + /** + * Gets the value of the discontinuationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getDiscontinuationDate() { + return discontinuationDate; + } + + /** + * Sets the value of the discontinuationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setDiscontinuationDate(DutchBusinessDate value) { + this.discontinuationDate = value; + } + + /** + * Gets the value of the dissolutionDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getDissolutionDate() { + return dissolutionDate; + } + + /** + * Sets the value of the dissolutionDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setDissolutionDate(DutchBusinessDate value) { + this.dissolutionDate = value; + } + + /** + * Gets the value of the dissolutionReason property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDissolutionReason() { + return dissolutionReason; + } + + /** + * Sets the value of the dissolutionReason property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDissolutionReason(String value) { + this.dissolutionReason = value; + } + + /** + * Gets the value of the removalDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getRemovalDate() { + return removalDate; + } + + /** + * Sets the value of the removalDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setRemovalDate(DutchBusinessDate value) { + this.removalDate = value; + } + + /** + * Gets the value of the registrationEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getRegistrationEndDate() { + return registrationEndDate; + } + + /** + * Sets the value of the registrationEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setRegistrationEndDate(DutchBusinessDate value) { + this.registrationEndDate = value; + } + + /** + * Gets the value of the legalEntityEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getLegalEntityEndDate() { + return legalEntityEndDate; + } + + /** + * Sets the value of the legalEntityEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setLegalEntityEndDate(DutchBusinessDate value) { + this.legalEntityEndDate = value; + } + + /** + * Gets the value of the liquidationClosureDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getLiquidationClosureDate() { + return liquidationClosureDate; + } + + /** + * Sets the value of the liquidationClosureDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setLiquidationClosureDate(DutchBusinessDate value) { + this.liquidationClosureDate = value; + } + + /** + * Gets the value of the liquidationReopeningDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getLiquidationReopeningDate() { + return liquidationReopeningDate; + } + + /** + * Sets the value of the liquidationReopeningDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setLiquidationReopeningDate(DutchBusinessDate value) { + this.liquidationReopeningDate = value; + } + + /** + * Gets the value of the deedIncorporationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getDeedIncorporationDate() { + return deedIncorporationDate; + } + + /** + * Sets the value of the deedIncorporationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setDeedIncorporationDate(DutchBusinessDate value) { + this.deedIncorporationDate = value; + } + + /** + * Gets the value of the deedLastStatutesAmendmentDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getDeedLastStatutesAmendmentDate() { + return deedLastStatutesAmendmentDate; + } + + /** + * Sets the value of the deedLastStatutesAmendmentDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setDeedLastStatutesAmendmentDate(DutchBusinessDate value) { + this.deedLastStatutesAmendmentDate = value; + } + + /** + * Gets the value of the lastStatutesAmendmentDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getLastStatutesAmendmentDate() { + return lastStatutesAmendmentDate; + } + + /** + * Sets the value of the lastStatutesAmendmentDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setLastStatutesAmendmentDate(DutchBusinessDate value) { + this.lastStatutesAmendmentDate = value; + } + + /** + * Gets the value of the liability property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLiability() { + return liability; + } + + /** + * Sets the value of the liability property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLiability(String value) { + this.liability = value; + } + + /** + * Gets the value of the mergerDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMergerDescription() { + return mergerDescription; + } + + /** + * Sets the value of the mergerDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMergerDescription(String value) { + this.mergerDescription = value; + } + + /** + * Gets the value of the annualReportSubmission property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAnnualReportSubmission() { + return annualReportSubmission; + } + + /** + * Sets the value of the annualReportSubmission property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAnnualReportSubmission(String value) { + this.annualReportSubmission = value; + } + + /** + * Gets the value of the authorizedShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getAuthorizedShareCapital() { + return authorizedShareCapital; + } + + /** + * Sets the value of the authorizedShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setAuthorizedShareCapital(Long value) { + this.authorizedShareCapital = value; + } + + /** + * Gets the value of the authorizedShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAuthorizedShareCapitalCurrency() { + return authorizedShareCapitalCurrency; + } + + /** + * Sets the value of the authorizedShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAuthorizedShareCapitalCurrency(String value) { + this.authorizedShareCapitalCurrency = value; + } + + /** + * Gets the value of the issuedShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getIssuedShareCapital() { + return issuedShareCapital; + } + + /** + * Sets the value of the issuedShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setIssuedShareCapital(Long value) { + this.issuedShareCapital = value; + } + + /** + * Gets the value of the issuedShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIssuedShareCapitalCurrency() { + return issuedShareCapitalCurrency; + } + + /** + * Sets the value of the issuedShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIssuedShareCapitalCurrency(String value) { + this.issuedShareCapitalCurrency = value; + } + + /** + * Gets the value of the paidUpShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getPaidUpShareCapital() { + return paidUpShareCapital; + } + + /** + * Sets the value of the paidUpShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setPaidUpShareCapital(Long value) { + this.paidUpShareCapital = value; + } + + /** + * Gets the value of the paidUpShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPaidUpShareCapitalCurrency() { + return paidUpShareCapitalCurrency; + } + + /** + * Sets the value of the paidUpShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPaidUpShareCapitalCurrency(String value) { + this.paidUpShareCapitalCurrency = value; + } + + /** + * Gets the value of the establishmentPostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentPostcode() { + return establishmentPostcode; + } + + /** + * Sets the value of the establishmentPostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentPostcode(String value) { + this.establishmentPostcode = value; + } + + /** + * Gets the value of the establishmentCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCity() { + return establishmentCity; + } + + /** + * Sets the value of the establishmentCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCity(String value) { + this.establishmentCity = value; + } + + /** + * Gets the value of the establishmentStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentStreet() { + return establishmentStreet; + } + + /** + * Sets the value of the establishmentStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentStreet(String value) { + this.establishmentStreet = value; + } + + /** + * Gets the value of the establishmentHouseNumber property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getEstablishmentHouseNumber() { + return establishmentHouseNumber; + } + + /** + * Sets the value of the establishmentHouseNumber property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setEstablishmentHouseNumber(Integer value) { + this.establishmentHouseNumber = value; + } + + /** + * Gets the value of the establishmentHouseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentHouseNumberAddition() { + return establishmentHouseNumberAddition; + } + + /** + * Sets the value of the establishmentHouseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentHouseNumberAddition(String value) { + this.establishmentHouseNumberAddition = value; + } + + /** + * Gets the value of the establishmentCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCountry() { + return establishmentCountry; + } + + /** + * Sets the value of the establishmentCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCountry(String value) { + this.establishmentCountry = value; + } + + /** + * Gets the value of the correspondencePostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondencePostcode() { + return correspondencePostcode; + } + + /** + * Sets the value of the correspondencePostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondencePostcode(String value) { + this.correspondencePostcode = value; + } + + /** + * Gets the value of the correspondenceCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCity() { + return correspondenceCity; + } + + /** + * Sets the value of the correspondenceCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCity(String value) { + this.correspondenceCity = value; + } + + /** + * Gets the value of the correspondenceStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceStreet() { + return correspondenceStreet; + } + + /** + * Sets the value of the correspondenceStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceStreet(String value) { + this.correspondenceStreet = value; + } + + /** + * Gets the value of the correspondenceHouseNumber property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCorrespondenceHouseNumber() { + return correspondenceHouseNumber; + } + + /** + * Sets the value of the correspondenceHouseNumber property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCorrespondenceHouseNumber(Integer value) { + this.correspondenceHouseNumber = value; + } + + /** + * Gets the value of the correspondenceHouseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceHouseNumberAddition() { + return correspondenceHouseNumberAddition; + } + + /** + * Sets the value of the correspondenceHouseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceHouseNumberAddition(String value) { + this.correspondenceHouseNumberAddition = value; + } + + /** + * Gets the value of the correspondenceCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCountry() { + return correspondenceCountry; + } + + /** + * Sets the value of the correspondenceCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCountry(String value) { + this.correspondenceCountry = value; + } + + /** + * Gets the value of the duration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDuration() { + return duration; + } + + /** + * Sets the value of the duration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDuration(String value) { + this.duration = value; + } + + /** + * Gets the value of the durationEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getDurationEndDate() { + return durationEndDate; + } + + /** + * Sets the value of the durationEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setDurationEndDate(DutchBusinessDate value) { + this.durationEndDate = value; + } + + /** + * Gets the value of the shares property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getShares() { + return shares; + } + + /** + * Sets the value of the shares property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setShares(String value) { + this.shares = value; + } + + /** + * Gets the value of the shareHolders property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getShareHolders() { + return shareHolders; + } + + /** + * Sets the value of the shareHolders property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setShareHolders(String value) { + this.shareHolders = value; + } + + /** + * Gets the value of the telephoneNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTelephoneNumbers() { + return telephoneNumbers; + } + + /** + * Sets the value of the telephoneNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTelephoneNumbers(StringArray value) { + this.telephoneNumbers = value; + } + + /** + * Gets the value of the faxNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getFaxNumbers() { + return faxNumbers; + } + + /** + * Sets the value of the faxNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setFaxNumbers(StringArray value) { + this.faxNumbers = value; + } + + /** + * Gets the value of the emailAddresses property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getEmailAddresses() { + return emailAddresses; + } + + /** + * Sets the value of the emailAddresses property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setEmailAddresses(StringArray value) { + this.emailAddresses = value; + } + + /** + * Gets the value of the domainNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getDomainNames() { + return domainNames; + } + + /** + * Sets the value of the domainNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setDomainNames(StringArray value) { + this.domainNames = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityData.java new file mode 100644 index 0000000..f14d398 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityData.java @@ -0,0 +1,126 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessLegalEntityData complex type. + * + *

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

+ * <complexType name="DutchBusinessLegalEntityData">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="reference_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="legal_entity" type="{http://www.webservices.nl/soap/}DutchBusinessLegalEntityV3"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessLegalEntityData", propOrder = { + +}) +public class DutchBusinessLegalEntityData { + + @XmlElement(name = "dossier_number") + protected String dossierNumber; + @XmlElement(name = "reference_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar referenceDate; + @XmlElement(name = "legal_entity", required = true) + protected DutchBusinessLegalEntityV3 legalEntity; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the referenceDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getReferenceDate() { + return referenceDate; + } + + /** + * Sets the value of the referenceDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setReferenceDate(XMLGregorianCalendar value) { + this.referenceDate = value; + } + + /** + * Gets the value of the legalEntity property. + * + * @return + * possible object is + * {@link DutchBusinessLegalEntityV3 } + * + */ + public DutchBusinessLegalEntityV3 getLegalEntity() { + return legalEntity; + } + + /** + * Sets the value of the legalEntity property. + * + * @param value + * allowed object is + * {@link DutchBusinessLegalEntityV3 } + * + */ + public void setLegalEntity(DutchBusinessLegalEntityV3 value) { + this.legalEntity = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityV2.java new file mode 100644 index 0000000..49a7b63 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityV2.java @@ -0,0 +1,1196 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessLegalEntityV2 complex type. + * + *

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

+ * <complexType name="DutchBusinessLegalEntityV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="alternative_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="shortened_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_change" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="foreign_legal_form_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="company_arrangement" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="statutory_seat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="discontinuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="dissolution_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="dissolution_reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="removal_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="registration_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="legal_entity_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="liquidation_closure_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="liquidation_reopening_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="deed_incorporation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="deed_last_statutes_amendment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="last_statutes_amendment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="liability" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="merger_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="annual_report_submission" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="authorized_share_capital" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV2" minOccurs="0"/>
+ *         <element name="issued_share_capital" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV2" minOccurs="0"/>
+ *         <element name="paid_up_share_capital" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV2" minOccurs="0"/>
+ *         <element name="duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="duration_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="shares" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="share_holders" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
+ *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
+ *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="fax_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="domain_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}DutchBusinessSbiCodeV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessLegalEntityV2", propOrder = { + +}) +public class DutchBusinessLegalEntityV2 { + + @XmlElement(name = "rsin_number") + protected String rsinNumber; + protected String name; + @XmlElement(name = "alternative_name") + protected String alternativeName; + @XmlElement(name = "shortened_name") + protected String shortenedName; + protected String registration; + @XmlElement(name = "legal_form_text") + protected String legalFormText; + @XmlElement(name = "legal_form_change") + protected String legalFormChange; + @XmlElement(name = "foreign_legal_form_description") + protected String foreignLegalFormDescription; + protected String activity; + @XmlElement(name = "company_arrangement") + protected String companyArrangement; + @XmlElement(name = "legal_name") + protected String legalName; + @XmlElement(name = "statutory_seat") + protected String statutorySeat; + @XmlElement(name = "registration_date") + protected DutchBusinessDateV2 registrationDate; + @XmlElement(name = "founding_date") + protected DutchBusinessDateV2 foundingDate; + @XmlElement(name = "discontinuation_date") + protected DutchBusinessDateV2 discontinuationDate; + @XmlElement(name = "dissolution_date") + protected DutchBusinessDateV2 dissolutionDate; + @XmlElement(name = "dissolution_reason") + protected String dissolutionReason; + @XmlElement(name = "removal_date") + protected DutchBusinessDateV2 removalDate; + @XmlElement(name = "registration_end_date") + protected DutchBusinessDateV2 registrationEndDate; + @XmlElement(name = "legal_entity_end_date") + protected DutchBusinessDateV2 legalEntityEndDate; + @XmlElement(name = "liquidation_closure_date") + protected DutchBusinessDateV2 liquidationClosureDate; + @XmlElement(name = "liquidation_reopening_date") + protected DutchBusinessDateV2 liquidationReopeningDate; + @XmlElement(name = "deed_incorporation_date") + protected DutchBusinessDateV2 deedIncorporationDate; + @XmlElement(name = "deed_last_statutes_amendment_date") + protected DutchBusinessDateV2 deedLastStatutesAmendmentDate; + @XmlElement(name = "last_statutes_amendment_date") + protected DutchBusinessDateV2 lastStatutesAmendmentDate; + protected String liability; + @XmlElement(name = "merger_description") + protected String mergerDescription; + @XmlElement(name = "annual_report_submission") + protected String annualReportSubmission; + @XmlElement(name = "authorized_share_capital") + protected DutchBusinessMoneyV2 authorizedShareCapital; + @XmlElement(name = "issued_share_capital") + protected DutchBusinessMoneyV2 issuedShareCapital; + @XmlElement(name = "paid_up_share_capital") + protected DutchBusinessMoneyV2 paidUpShareCapital; + protected String duration; + @XmlElement(name = "duration_end_date") + protected DutchBusinessDateV2 durationEndDate; + protected String shares; + @XmlElement(name = "share_holders") + protected String shareHolders; + protected StringArray remarks; + @XmlElement(name = "establishment_address") + protected DutchBusinessAddressV2 establishmentAddress; + @XmlElement(name = "correspondence_address") + protected DutchBusinessAddressV2 correspondenceAddress; + @XmlElement(name = "telephone_numbers") + protected StringArray telephoneNumbers; + @XmlElement(name = "fax_numbers") + protected StringArray faxNumbers; + @XmlElement(name = "email_addresses") + protected StringArray emailAddresses; + @XmlElement(name = "domain_names") + protected StringArray domainNames; + @XmlElement(name = "sbi_codes") + protected DutchBusinessSbiCodeV2Array sbiCodes; + + /** + * Gets the value of the rsinNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsinNumber() { + return rsinNumber; + } + + /** + * Sets the value of the rsinNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsinNumber(String value) { + this.rsinNumber = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the alternativeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAlternativeName() { + return alternativeName; + } + + /** + * Sets the value of the alternativeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAlternativeName(String value) { + this.alternativeName = value; + } + + /** + * Gets the value of the shortenedName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getShortenedName() { + return shortenedName; + } + + /** + * Sets the value of the shortenedName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setShortenedName(String value) { + this.shortenedName = value; + } + + /** + * Gets the value of the registration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistration() { + return registration; + } + + /** + * Sets the value of the registration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistration(String value) { + this.registration = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the legalFormChange property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormChange() { + return legalFormChange; + } + + /** + * Sets the value of the legalFormChange property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormChange(String value) { + this.legalFormChange = value; + } + + /** + * Gets the value of the foreignLegalFormDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getForeignLegalFormDescription() { + return foreignLegalFormDescription; + } + + /** + * Sets the value of the foreignLegalFormDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setForeignLegalFormDescription(String value) { + this.foreignLegalFormDescription = value; + } + + /** + * Gets the value of the activity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getActivity() { + return activity; + } + + /** + * Sets the value of the activity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setActivity(String value) { + this.activity = value; + } + + /** + * Gets the value of the companyArrangement property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyArrangement() { + return companyArrangement; + } + + /** + * Sets the value of the companyArrangement property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyArrangement(String value) { + this.companyArrangement = value; + } + + /** + * Gets the value of the legalName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalName() { + return legalName; + } + + /** + * Sets the value of the legalName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalName(String value) { + this.legalName = value; + } + + /** + * Gets the value of the statutorySeat property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatutorySeat() { + return statutorySeat; + } + + /** + * Sets the value of the statutorySeat property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatutorySeat(String value) { + this.statutorySeat = value; + } + + /** + * Gets the value of the registrationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getRegistrationDate() { + return registrationDate; + } + + /** + * Sets the value of the registrationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setRegistrationDate(DutchBusinessDateV2 value) { + this.registrationDate = value; + } + + /** + * Gets the value of the foundingDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getFoundingDate() { + return foundingDate; + } + + /** + * Sets the value of the foundingDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setFoundingDate(DutchBusinessDateV2 value) { + this.foundingDate = value; + } + + /** + * Gets the value of the discontinuationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getDiscontinuationDate() { + return discontinuationDate; + } + + /** + * Sets the value of the discontinuationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setDiscontinuationDate(DutchBusinessDateV2 value) { + this.discontinuationDate = value; + } + + /** + * Gets the value of the dissolutionDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getDissolutionDate() { + return dissolutionDate; + } + + /** + * Sets the value of the dissolutionDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setDissolutionDate(DutchBusinessDateV2 value) { + this.dissolutionDate = value; + } + + /** + * Gets the value of the dissolutionReason property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDissolutionReason() { + return dissolutionReason; + } + + /** + * Sets the value of the dissolutionReason property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDissolutionReason(String value) { + this.dissolutionReason = value; + } + + /** + * Gets the value of the removalDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getRemovalDate() { + return removalDate; + } + + /** + * Sets the value of the removalDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setRemovalDate(DutchBusinessDateV2 value) { + this.removalDate = value; + } + + /** + * Gets the value of the registrationEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getRegistrationEndDate() { + return registrationEndDate; + } + + /** + * Sets the value of the registrationEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setRegistrationEndDate(DutchBusinessDateV2 value) { + this.registrationEndDate = value; + } + + /** + * Gets the value of the legalEntityEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getLegalEntityEndDate() { + return legalEntityEndDate; + } + + /** + * Sets the value of the legalEntityEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setLegalEntityEndDate(DutchBusinessDateV2 value) { + this.legalEntityEndDate = value; + } + + /** + * Gets the value of the liquidationClosureDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getLiquidationClosureDate() { + return liquidationClosureDate; + } + + /** + * Sets the value of the liquidationClosureDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setLiquidationClosureDate(DutchBusinessDateV2 value) { + this.liquidationClosureDate = value; + } + + /** + * Gets the value of the liquidationReopeningDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getLiquidationReopeningDate() { + return liquidationReopeningDate; + } + + /** + * Sets the value of the liquidationReopeningDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setLiquidationReopeningDate(DutchBusinessDateV2 value) { + this.liquidationReopeningDate = value; + } + + /** + * Gets the value of the deedIncorporationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getDeedIncorporationDate() { + return deedIncorporationDate; + } + + /** + * Sets the value of the deedIncorporationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setDeedIncorporationDate(DutchBusinessDateV2 value) { + this.deedIncorporationDate = value; + } + + /** + * Gets the value of the deedLastStatutesAmendmentDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getDeedLastStatutesAmendmentDate() { + return deedLastStatutesAmendmentDate; + } + + /** + * Sets the value of the deedLastStatutesAmendmentDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setDeedLastStatutesAmendmentDate(DutchBusinessDateV2 value) { + this.deedLastStatutesAmendmentDate = value; + } + + /** + * Gets the value of the lastStatutesAmendmentDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getLastStatutesAmendmentDate() { + return lastStatutesAmendmentDate; + } + + /** + * Sets the value of the lastStatutesAmendmentDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setLastStatutesAmendmentDate(DutchBusinessDateV2 value) { + this.lastStatutesAmendmentDate = value; + } + + /** + * Gets the value of the liability property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLiability() { + return liability; + } + + /** + * Sets the value of the liability property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLiability(String value) { + this.liability = value; + } + + /** + * Gets the value of the mergerDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMergerDescription() { + return mergerDescription; + } + + /** + * Sets the value of the mergerDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMergerDescription(String value) { + this.mergerDescription = value; + } + + /** + * Gets the value of the annualReportSubmission property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAnnualReportSubmission() { + return annualReportSubmission; + } + + /** + * Sets the value of the annualReportSubmission property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAnnualReportSubmission(String value) { + this.annualReportSubmission = value; + } + + /** + * Gets the value of the authorizedShareCapital property. + * + * @return + * possible object is + * {@link DutchBusinessMoneyV2 } + * + */ + public DutchBusinessMoneyV2 getAuthorizedShareCapital() { + return authorizedShareCapital; + } + + /** + * Sets the value of the authorizedShareCapital property. + * + * @param value + * allowed object is + * {@link DutchBusinessMoneyV2 } + * + */ + public void setAuthorizedShareCapital(DutchBusinessMoneyV2 value) { + this.authorizedShareCapital = value; + } + + /** + * Gets the value of the issuedShareCapital property. + * + * @return + * possible object is + * {@link DutchBusinessMoneyV2 } + * + */ + public DutchBusinessMoneyV2 getIssuedShareCapital() { + return issuedShareCapital; + } + + /** + * Sets the value of the issuedShareCapital property. + * + * @param value + * allowed object is + * {@link DutchBusinessMoneyV2 } + * + */ + public void setIssuedShareCapital(DutchBusinessMoneyV2 value) { + this.issuedShareCapital = value; + } + + /** + * Gets the value of the paidUpShareCapital property. + * + * @return + * possible object is + * {@link DutchBusinessMoneyV2 } + * + */ + public DutchBusinessMoneyV2 getPaidUpShareCapital() { + return paidUpShareCapital; + } + + /** + * Sets the value of the paidUpShareCapital property. + * + * @param value + * allowed object is + * {@link DutchBusinessMoneyV2 } + * + */ + public void setPaidUpShareCapital(DutchBusinessMoneyV2 value) { + this.paidUpShareCapital = value; + } + + /** + * Gets the value of the duration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDuration() { + return duration; + } + + /** + * Sets the value of the duration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDuration(String value) { + this.duration = value; + } + + /** + * Gets the value of the durationEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getDurationEndDate() { + return durationEndDate; + } + + /** + * Sets the value of the durationEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setDurationEndDate(DutchBusinessDateV2 value) { + this.durationEndDate = value; + } + + /** + * Gets the value of the shares property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getShares() { + return shares; + } + + /** + * Sets the value of the shares property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setShares(String value) { + this.shares = value; + } + + /** + * Gets the value of the shareHolders property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getShareHolders() { + return shareHolders; + } + + /** + * Sets the value of the shareHolders property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setShareHolders(String value) { + this.shareHolders = value; + } + + /** + * Gets the value of the remarks property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getRemarks() { + return remarks; + } + + /** + * Sets the value of the remarks property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setRemarks(StringArray value) { + this.remarks = value; + } + + /** + * Gets the value of the establishmentAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV2 } + * + */ + public DutchBusinessAddressV2 getEstablishmentAddress() { + return establishmentAddress; + } + + /** + * Sets the value of the establishmentAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV2 } + * + */ + public void setEstablishmentAddress(DutchBusinessAddressV2 value) { + this.establishmentAddress = value; + } + + /** + * Gets the value of the correspondenceAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV2 } + * + */ + public DutchBusinessAddressV2 getCorrespondenceAddress() { + return correspondenceAddress; + } + + /** + * Sets the value of the correspondenceAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV2 } + * + */ + public void setCorrespondenceAddress(DutchBusinessAddressV2 value) { + this.correspondenceAddress = value; + } + + /** + * Gets the value of the telephoneNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTelephoneNumbers() { + return telephoneNumbers; + } + + /** + * Sets the value of the telephoneNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTelephoneNumbers(StringArray value) { + this.telephoneNumbers = value; + } + + /** + * Gets the value of the faxNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getFaxNumbers() { + return faxNumbers; + } + + /** + * Sets the value of the faxNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setFaxNumbers(StringArray value) { + this.faxNumbers = value; + } + + /** + * Gets the value of the emailAddresses property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getEmailAddresses() { + return emailAddresses; + } + + /** + * Sets the value of the emailAddresses property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setEmailAddresses(StringArray value) { + this.emailAddresses = value; + } + + /** + * Gets the value of the domainNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getDomainNames() { + return domainNames; + } + + /** + * Sets the value of the domainNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setDomainNames(StringArray value) { + this.domainNames = value; + } + + /** + * Gets the value of the sbiCodes property. + * + * @return + * possible object is + * {@link DutchBusinessSbiCodeV2Array } + * + */ + public DutchBusinessSbiCodeV2Array getSbiCodes() { + return sbiCodes; + } + + /** + * Sets the value of the sbiCodes property. + * + * @param value + * allowed object is + * {@link DutchBusinessSbiCodeV2Array } + * + */ + public void setSbiCodes(DutchBusinessSbiCodeV2Array value) { + this.sbiCodes = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityV3.java new file mode 100644 index 0000000..b1b5a30 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityV3.java @@ -0,0 +1,1196 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessLegalEntityV3 complex type. + * + *

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

+ * <complexType name="DutchBusinessLegalEntityV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="alternative_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="shortened_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_change" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="foreign_legal_form_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="company_arrangement" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="statutory_seat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="discontinuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="dissolution_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="dissolution_reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="removal_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="registration_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="legal_entity_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="liquidation_closure_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="liquidation_reopening_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="deed_incorporation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="deed_last_statutes_amendment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="last_statutes_amendment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="liability" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="merger_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="annual_report_submission" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="authorized_share_capital" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV3" minOccurs="0"/>
+ *         <element name="issued_share_capital" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV3" minOccurs="0"/>
+ *         <element name="paid_up_share_capital" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV3" minOccurs="0"/>
+ *         <element name="duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="duration_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="shares" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="share_holders" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
+ *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
+ *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="fax_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="domain_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}DutchBusinessSbiCodeV3Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessLegalEntityV3", propOrder = { + +}) +public class DutchBusinessLegalEntityV3 { + + @XmlElement(name = "rsin_number") + protected String rsinNumber; + protected String name; + @XmlElement(name = "alternative_name") + protected String alternativeName; + @XmlElement(name = "shortened_name") + protected String shortenedName; + protected String registration; + @XmlElement(name = "legal_form_text") + protected String legalFormText; + @XmlElement(name = "legal_form_change") + protected String legalFormChange; + @XmlElement(name = "foreign_legal_form_description") + protected String foreignLegalFormDescription; + protected String activity; + @XmlElement(name = "company_arrangement") + protected String companyArrangement; + @XmlElement(name = "legal_name") + protected String legalName; + @XmlElement(name = "statutory_seat") + protected String statutorySeat; + @XmlElement(name = "registration_date") + protected DutchBusinessDateV3 registrationDate; + @XmlElement(name = "founding_date") + protected DutchBusinessDateV3 foundingDate; + @XmlElement(name = "discontinuation_date") + protected DutchBusinessDateV3 discontinuationDate; + @XmlElement(name = "dissolution_date") + protected DutchBusinessDateV3 dissolutionDate; + @XmlElement(name = "dissolution_reason") + protected String dissolutionReason; + @XmlElement(name = "removal_date") + protected DutchBusinessDateV3 removalDate; + @XmlElement(name = "registration_end_date") + protected DutchBusinessDateV3 registrationEndDate; + @XmlElement(name = "legal_entity_end_date") + protected DutchBusinessDateV3 legalEntityEndDate; + @XmlElement(name = "liquidation_closure_date") + protected DutchBusinessDateV3 liquidationClosureDate; + @XmlElement(name = "liquidation_reopening_date") + protected DutchBusinessDateV3 liquidationReopeningDate; + @XmlElement(name = "deed_incorporation_date") + protected DutchBusinessDateV3 deedIncorporationDate; + @XmlElement(name = "deed_last_statutes_amendment_date") + protected DutchBusinessDateV3 deedLastStatutesAmendmentDate; + @XmlElement(name = "last_statutes_amendment_date") + protected DutchBusinessDateV3 lastStatutesAmendmentDate; + protected String liability; + @XmlElement(name = "merger_description") + protected String mergerDescription; + @XmlElement(name = "annual_report_submission") + protected String annualReportSubmission; + @XmlElement(name = "authorized_share_capital") + protected DutchBusinessMoneyV3 authorizedShareCapital; + @XmlElement(name = "issued_share_capital") + protected DutchBusinessMoneyV3 issuedShareCapital; + @XmlElement(name = "paid_up_share_capital") + protected DutchBusinessMoneyV3 paidUpShareCapital; + protected String duration; + @XmlElement(name = "duration_end_date") + protected DutchBusinessDateV3 durationEndDate; + protected String shares; + @XmlElement(name = "share_holders") + protected String shareHolders; + protected StringArray remarks; + @XmlElement(name = "establishment_address") + protected DutchBusinessAddressV3 establishmentAddress; + @XmlElement(name = "correspondence_address") + protected DutchBusinessAddressV3 correspondenceAddress; + @XmlElement(name = "telephone_numbers") + protected StringArray telephoneNumbers; + @XmlElement(name = "fax_numbers") + protected StringArray faxNumbers; + @XmlElement(name = "email_addresses") + protected StringArray emailAddresses; + @XmlElement(name = "domain_names") + protected StringArray domainNames; + @XmlElement(name = "sbi_codes") + protected DutchBusinessSbiCodeV3Array sbiCodes; + + /** + * Gets the value of the rsinNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsinNumber() { + return rsinNumber; + } + + /** + * Sets the value of the rsinNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsinNumber(String value) { + this.rsinNumber = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the alternativeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAlternativeName() { + return alternativeName; + } + + /** + * Sets the value of the alternativeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAlternativeName(String value) { + this.alternativeName = value; + } + + /** + * Gets the value of the shortenedName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getShortenedName() { + return shortenedName; + } + + /** + * Sets the value of the shortenedName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setShortenedName(String value) { + this.shortenedName = value; + } + + /** + * Gets the value of the registration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistration() { + return registration; + } + + /** + * Sets the value of the registration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistration(String value) { + this.registration = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the legalFormChange property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormChange() { + return legalFormChange; + } + + /** + * Sets the value of the legalFormChange property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormChange(String value) { + this.legalFormChange = value; + } + + /** + * Gets the value of the foreignLegalFormDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getForeignLegalFormDescription() { + return foreignLegalFormDescription; + } + + /** + * Sets the value of the foreignLegalFormDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setForeignLegalFormDescription(String value) { + this.foreignLegalFormDescription = value; + } + + /** + * Gets the value of the activity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getActivity() { + return activity; + } + + /** + * Sets the value of the activity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setActivity(String value) { + this.activity = value; + } + + /** + * Gets the value of the companyArrangement property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyArrangement() { + return companyArrangement; + } + + /** + * Sets the value of the companyArrangement property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyArrangement(String value) { + this.companyArrangement = value; + } + + /** + * Gets the value of the legalName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalName() { + return legalName; + } + + /** + * Sets the value of the legalName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalName(String value) { + this.legalName = value; + } + + /** + * Gets the value of the statutorySeat property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatutorySeat() { + return statutorySeat; + } + + /** + * Sets the value of the statutorySeat property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatutorySeat(String value) { + this.statutorySeat = value; + } + + /** + * Gets the value of the registrationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getRegistrationDate() { + return registrationDate; + } + + /** + * Sets the value of the registrationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setRegistrationDate(DutchBusinessDateV3 value) { + this.registrationDate = value; + } + + /** + * Gets the value of the foundingDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getFoundingDate() { + return foundingDate; + } + + /** + * Sets the value of the foundingDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setFoundingDate(DutchBusinessDateV3 value) { + this.foundingDate = value; + } + + /** + * Gets the value of the discontinuationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getDiscontinuationDate() { + return discontinuationDate; + } + + /** + * Sets the value of the discontinuationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setDiscontinuationDate(DutchBusinessDateV3 value) { + this.discontinuationDate = value; + } + + /** + * Gets the value of the dissolutionDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getDissolutionDate() { + return dissolutionDate; + } + + /** + * Sets the value of the dissolutionDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setDissolutionDate(DutchBusinessDateV3 value) { + this.dissolutionDate = value; + } + + /** + * Gets the value of the dissolutionReason property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDissolutionReason() { + return dissolutionReason; + } + + /** + * Sets the value of the dissolutionReason property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDissolutionReason(String value) { + this.dissolutionReason = value; + } + + /** + * Gets the value of the removalDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getRemovalDate() { + return removalDate; + } + + /** + * Sets the value of the removalDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setRemovalDate(DutchBusinessDateV3 value) { + this.removalDate = value; + } + + /** + * Gets the value of the registrationEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getRegistrationEndDate() { + return registrationEndDate; + } + + /** + * Sets the value of the registrationEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setRegistrationEndDate(DutchBusinessDateV3 value) { + this.registrationEndDate = value; + } + + /** + * Gets the value of the legalEntityEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getLegalEntityEndDate() { + return legalEntityEndDate; + } + + /** + * Sets the value of the legalEntityEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setLegalEntityEndDate(DutchBusinessDateV3 value) { + this.legalEntityEndDate = value; + } + + /** + * Gets the value of the liquidationClosureDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getLiquidationClosureDate() { + return liquidationClosureDate; + } + + /** + * Sets the value of the liquidationClosureDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setLiquidationClosureDate(DutchBusinessDateV3 value) { + this.liquidationClosureDate = value; + } + + /** + * Gets the value of the liquidationReopeningDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getLiquidationReopeningDate() { + return liquidationReopeningDate; + } + + /** + * Sets the value of the liquidationReopeningDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setLiquidationReopeningDate(DutchBusinessDateV3 value) { + this.liquidationReopeningDate = value; + } + + /** + * Gets the value of the deedIncorporationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getDeedIncorporationDate() { + return deedIncorporationDate; + } + + /** + * Sets the value of the deedIncorporationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setDeedIncorporationDate(DutchBusinessDateV3 value) { + this.deedIncorporationDate = value; + } + + /** + * Gets the value of the deedLastStatutesAmendmentDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getDeedLastStatutesAmendmentDate() { + return deedLastStatutesAmendmentDate; + } + + /** + * Sets the value of the deedLastStatutesAmendmentDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setDeedLastStatutesAmendmentDate(DutchBusinessDateV3 value) { + this.deedLastStatutesAmendmentDate = value; + } + + /** + * Gets the value of the lastStatutesAmendmentDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getLastStatutesAmendmentDate() { + return lastStatutesAmendmentDate; + } + + /** + * Sets the value of the lastStatutesAmendmentDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setLastStatutesAmendmentDate(DutchBusinessDateV3 value) { + this.lastStatutesAmendmentDate = value; + } + + /** + * Gets the value of the liability property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLiability() { + return liability; + } + + /** + * Sets the value of the liability property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLiability(String value) { + this.liability = value; + } + + /** + * Gets the value of the mergerDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMergerDescription() { + return mergerDescription; + } + + /** + * Sets the value of the mergerDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMergerDescription(String value) { + this.mergerDescription = value; + } + + /** + * Gets the value of the annualReportSubmission property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAnnualReportSubmission() { + return annualReportSubmission; + } + + /** + * Sets the value of the annualReportSubmission property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAnnualReportSubmission(String value) { + this.annualReportSubmission = value; + } + + /** + * Gets the value of the authorizedShareCapital property. + * + * @return + * possible object is + * {@link DutchBusinessMoneyV3 } + * + */ + public DutchBusinessMoneyV3 getAuthorizedShareCapital() { + return authorizedShareCapital; + } + + /** + * Sets the value of the authorizedShareCapital property. + * + * @param value + * allowed object is + * {@link DutchBusinessMoneyV3 } + * + */ + public void setAuthorizedShareCapital(DutchBusinessMoneyV3 value) { + this.authorizedShareCapital = value; + } + + /** + * Gets the value of the issuedShareCapital property. + * + * @return + * possible object is + * {@link DutchBusinessMoneyV3 } + * + */ + public DutchBusinessMoneyV3 getIssuedShareCapital() { + return issuedShareCapital; + } + + /** + * Sets the value of the issuedShareCapital property. + * + * @param value + * allowed object is + * {@link DutchBusinessMoneyV3 } + * + */ + public void setIssuedShareCapital(DutchBusinessMoneyV3 value) { + this.issuedShareCapital = value; + } + + /** + * Gets the value of the paidUpShareCapital property. + * + * @return + * possible object is + * {@link DutchBusinessMoneyV3 } + * + */ + public DutchBusinessMoneyV3 getPaidUpShareCapital() { + return paidUpShareCapital; + } + + /** + * Sets the value of the paidUpShareCapital property. + * + * @param value + * allowed object is + * {@link DutchBusinessMoneyV3 } + * + */ + public void setPaidUpShareCapital(DutchBusinessMoneyV3 value) { + this.paidUpShareCapital = value; + } + + /** + * Gets the value of the duration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDuration() { + return duration; + } + + /** + * Sets the value of the duration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDuration(String value) { + this.duration = value; + } + + /** + * Gets the value of the durationEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getDurationEndDate() { + return durationEndDate; + } + + /** + * Sets the value of the durationEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setDurationEndDate(DutchBusinessDateV3 value) { + this.durationEndDate = value; + } + + /** + * Gets the value of the shares property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getShares() { + return shares; + } + + /** + * Sets the value of the shares property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setShares(String value) { + this.shares = value; + } + + /** + * Gets the value of the shareHolders property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getShareHolders() { + return shareHolders; + } + + /** + * Sets the value of the shareHolders property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setShareHolders(String value) { + this.shareHolders = value; + } + + /** + * Gets the value of the remarks property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getRemarks() { + return remarks; + } + + /** + * Sets the value of the remarks property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setRemarks(StringArray value) { + this.remarks = value; + } + + /** + * Gets the value of the establishmentAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV3 } + * + */ + public DutchBusinessAddressV3 getEstablishmentAddress() { + return establishmentAddress; + } + + /** + * Sets the value of the establishmentAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV3 } + * + */ + public void setEstablishmentAddress(DutchBusinessAddressV3 value) { + this.establishmentAddress = value; + } + + /** + * Gets the value of the correspondenceAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV3 } + * + */ + public DutchBusinessAddressV3 getCorrespondenceAddress() { + return correspondenceAddress; + } + + /** + * Sets the value of the correspondenceAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV3 } + * + */ + public void setCorrespondenceAddress(DutchBusinessAddressV3 value) { + this.correspondenceAddress = value; + } + + /** + * Gets the value of the telephoneNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTelephoneNumbers() { + return telephoneNumbers; + } + + /** + * Sets the value of the telephoneNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTelephoneNumbers(StringArray value) { + this.telephoneNumbers = value; + } + + /** + * Gets the value of the faxNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getFaxNumbers() { + return faxNumbers; + } + + /** + * Sets the value of the faxNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setFaxNumbers(StringArray value) { + this.faxNumbers = value; + } + + /** + * Gets the value of the emailAddresses property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getEmailAddresses() { + return emailAddresses; + } + + /** + * Sets the value of the emailAddresses property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setEmailAddresses(StringArray value) { + this.emailAddresses = value; + } + + /** + * Gets the value of the domainNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getDomainNames() { + return domainNames; + } + + /** + * Sets the value of the domainNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setDomainNames(StringArray value) { + this.domainNames = value; + } + + /** + * Gets the value of the sbiCodes property. + * + * @return + * possible object is + * {@link DutchBusinessSbiCodeV3Array } + * + */ + public DutchBusinessSbiCodeV3Array getSbiCodes() { + return sbiCodes; + } + + /** + * Sets the value of the sbiCodes property. + * + * @param value + * allowed object is + * {@link DutchBusinessSbiCodeV3Array } + * + */ + public void setSbiCodes(DutchBusinessSbiCodeV3Array value) { + this.sbiCodes = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiAddress.java new file mode 100644 index 0000000..ad2f4f8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiAddress.java @@ -0,0 +1,176 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessLeiAddress complex type. + * + *

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

+ * <complexType name="DutchBusinessLeiAddress">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="street_and_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postal_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessLeiAddress", propOrder = { + +}) +public class DutchBusinessLeiAddress { + + @XmlElement(name = "street_and_number", required = true) + protected String streetAndNumber; + @XmlElement(required = true) + protected String city; + @XmlElement(name = "postal_code") + protected String postalCode; + protected String region; + @XmlElement(required = true) + protected String country; + + /** + * Gets the value of the streetAndNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetAndNumber() { + return streetAndNumber; + } + + /** + * Sets the value of the streetAndNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetAndNumber(String value) { + this.streetAndNumber = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the postalCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostalCode() { + return postalCode; + } + + /** + * Sets the value of the postalCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostalCode(String value) { + this.postalCode = value; + } + + /** + * Gets the value of the region property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegion() { + return region; + } + + /** + * Sets the value of the region property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegion(String value) { + this.region = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiBusinessEntity.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiBusinessEntity.java new file mode 100644 index 0000000..0617421 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiBusinessEntity.java @@ -0,0 +1,287 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessLeiBusinessEntity complex type. + * + *

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

+ * <complexType name="DutchBusinessLeiBusinessEntity">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="expiration_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="expiration_reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="successor" type="{http://www.webservices.nl/soap/}DutchBusinessLeiSuccessor" minOccurs="0"/>
+ *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_form" type="{http://www.webservices.nl/soap/}DutchBusinessLeiLegalForm"/>
+ *         <element name="headquarters_address" type="{http://www.webservices.nl/soap/}DutchBusinessLeiAddress"/>
+ *         <element name="legal_address" type="{http://www.webservices.nl/soap/}DutchBusinessLeiAddress"/>
+ *         <element name="registration_authority" type="{http://www.webservices.nl/soap/}DutchBusinessLeiRegistrationAuthority"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessLeiBusinessEntity", propOrder = { + +}) +public class DutchBusinessLeiBusinessEntity { + + @XmlElement(name = "expiration_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar expirationDate; + @XmlElement(name = "expiration_reason") + protected String expirationReason; + protected DutchBusinessLeiSuccessor successor; + @XmlElement(name = "company_name", required = true) + protected String companyName; + @XmlElement(name = "legal_status", required = true) + protected String legalStatus; + @XmlElement(name = "legal_form", required = true) + protected DutchBusinessLeiLegalForm legalForm; + @XmlElement(name = "headquarters_address", required = true) + protected DutchBusinessLeiAddress headquartersAddress; + @XmlElement(name = "legal_address", required = true) + protected DutchBusinessLeiAddress legalAddress; + @XmlElement(name = "registration_authority", required = true) + protected DutchBusinessLeiRegistrationAuthority registrationAuthority; + + /** + * Gets the value of the expirationDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getExpirationDate() { + return expirationDate; + } + + /** + * Sets the value of the expirationDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setExpirationDate(XMLGregorianCalendar value) { + this.expirationDate = value; + } + + /** + * Gets the value of the expirationReason property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getExpirationReason() { + return expirationReason; + } + + /** + * Sets the value of the expirationReason property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setExpirationReason(String value) { + this.expirationReason = value; + } + + /** + * Gets the value of the successor property. + * + * @return + * possible object is + * {@link DutchBusinessLeiSuccessor } + * + */ + public DutchBusinessLeiSuccessor getSuccessor() { + return successor; + } + + /** + * Sets the value of the successor property. + * + * @param value + * allowed object is + * {@link DutchBusinessLeiSuccessor } + * + */ + public void setSuccessor(DutchBusinessLeiSuccessor value) { + this.successor = value; + } + + /** + * Gets the value of the companyName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyName() { + return companyName; + } + + /** + * Sets the value of the companyName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyName(String value) { + this.companyName = value; + } + + /** + * Gets the value of the legalStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalStatus() { + return legalStatus; + } + + /** + * Sets the value of the legalStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalStatus(String value) { + this.legalStatus = value; + } + + /** + * Gets the value of the legalForm property. + * + * @return + * possible object is + * {@link DutchBusinessLeiLegalForm } + * + */ + public DutchBusinessLeiLegalForm getLegalForm() { + return legalForm; + } + + /** + * Sets the value of the legalForm property. + * + * @param value + * allowed object is + * {@link DutchBusinessLeiLegalForm } + * + */ + public void setLegalForm(DutchBusinessLeiLegalForm value) { + this.legalForm = value; + } + + /** + * Gets the value of the headquartersAddress property. + * + * @return + * possible object is + * {@link DutchBusinessLeiAddress } + * + */ + public DutchBusinessLeiAddress getHeadquartersAddress() { + return headquartersAddress; + } + + /** + * Sets the value of the headquartersAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessLeiAddress } + * + */ + public void setHeadquartersAddress(DutchBusinessLeiAddress value) { + this.headquartersAddress = value; + } + + /** + * Gets the value of the legalAddress property. + * + * @return + * possible object is + * {@link DutchBusinessLeiAddress } + * + */ + public DutchBusinessLeiAddress getLegalAddress() { + return legalAddress; + } + + /** + * Sets the value of the legalAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessLeiAddress } + * + */ + public void setLegalAddress(DutchBusinessLeiAddress value) { + this.legalAddress = value; + } + + /** + * Gets the value of the registrationAuthority property. + * + * @return + * possible object is + * {@link DutchBusinessLeiRegistrationAuthority } + * + */ + public DutchBusinessLeiRegistrationAuthority getRegistrationAuthority() { + return registrationAuthority; + } + + /** + * Sets the value of the registrationAuthority property. + * + * @param value + * allowed object is + * {@link DutchBusinessLeiRegistrationAuthority } + * + */ + public void setRegistrationAuthority(DutchBusinessLeiRegistrationAuthority value) { + this.registrationAuthority = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiLegalForm.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiLegalForm.java new file mode 100644 index 0000000..a3ac547 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiLegalForm.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessLeiLegalForm complex type. + * + *

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

+ * <complexType name="DutchBusinessLeiLegalForm">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="legal_form_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessLeiLegalForm", propOrder = { + +}) +public class DutchBusinessLeiLegalForm { + + @XmlElement(name = "legal_form_code", required = true) + protected String legalFormCode; + + /** + * Gets the value of the legalFormCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormCode() { + return legalFormCode; + } + + /** + * Sets the value of the legalFormCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormCode(String value) { + this.legalFormCode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiRegistration.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiRegistration.java new file mode 100644 index 0000000..0f58e14 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiRegistration.java @@ -0,0 +1,209 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessLeiRegistration complex type. + * + *

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

+ * <complexType name="DutchBusinessLeiRegistration">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="last_update" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="assignment_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="renewal_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="managing_lou" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="validation_sources" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessLeiRegistration", propOrder = { + +}) +public class DutchBusinessLeiRegistration { + + @XmlElement(name = "last_update", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar lastUpdate; + @XmlElement(required = true) + protected String status; + @XmlElement(name = "assignment_date", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar assignmentDate; + @XmlElement(name = "renewal_date", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar renewalDate; + @XmlElement(name = "managing_lou", required = true) + protected String managingLou; + @XmlElement(name = "validation_sources", required = true) + protected String validationSources; + + /** + * Gets the value of the lastUpdate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLastUpdate() { + return lastUpdate; + } + + /** + * Sets the value of the lastUpdate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLastUpdate(XMLGregorianCalendar value) { + this.lastUpdate = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + + /** + * Gets the value of the assignmentDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getAssignmentDate() { + return assignmentDate; + } + + /** + * Sets the value of the assignmentDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setAssignmentDate(XMLGregorianCalendar value) { + this.assignmentDate = value; + } + + /** + * Gets the value of the renewalDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getRenewalDate() { + return renewalDate; + } + + /** + * Sets the value of the renewalDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setRenewalDate(XMLGregorianCalendar value) { + this.renewalDate = value; + } + + /** + * Gets the value of the managingLou property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getManagingLou() { + return managingLou; + } + + /** + * Sets the value of the managingLou property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setManagingLou(String value) { + this.managingLou = value; + } + + /** + * Gets the value of the validationSources property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValidationSources() { + return validationSources; + } + + /** + * Sets the value of the validationSources property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValidationSources(String value) { + this.validationSources = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiRegistrationAuthority.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiRegistrationAuthority.java new file mode 100644 index 0000000..9a89ce4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiRegistrationAuthority.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessLeiRegistrationAuthority complex type. + * + *

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

+ * <complexType name="DutchBusinessLeiRegistrationAuthority">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="registration_authority_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessLeiRegistrationAuthority", propOrder = { + +}) +public class DutchBusinessLeiRegistrationAuthority { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "registration_authority_id", required = true) + protected String registrationAuthorityId; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the registrationAuthorityId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistrationAuthorityId() { + return registrationAuthorityId; + } + + /** + * Sets the value of the registrationAuthorityId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistrationAuthorityId(String value) { + this.registrationAuthorityId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiSuccessor.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiSuccessor.java new file mode 100644 index 0000000..a7e3739 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiSuccessor.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessLeiSuccessor complex type. + * + *

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

+ * <complexType name="DutchBusinessLeiSuccessor">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="lei_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessLeiSuccessor", propOrder = { + +}) +public class DutchBusinessLeiSuccessor { + + protected String name; + @XmlElement(name = "lei_code") + protected String leiCode; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the leiCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLeiCode() { + return leiCode; + } + + /** + * Sets the value of the leiCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLeiCode(String value) { + this.leiCode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessMoneyV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessMoneyV2.java new file mode 100644 index 0000000..89c1a1a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessMoneyV2.java @@ -0,0 +1,119 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessMoneyV2 complex type. + * + *

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

+ * <complexType name="DutchBusinessMoneyV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="formatted" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessMoneyV2", propOrder = { + +}) +public class DutchBusinessMoneyV2 { + + protected Long amount; + protected String currency; + protected String formatted; + + /** + * Gets the value of the amount property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getAmount() { + return amount; + } + + /** + * Sets the value of the amount property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setAmount(Long value) { + this.amount = value; + } + + /** + * Gets the value of the currency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCurrency() { + return currency; + } + + /** + * Sets the value of the currency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCurrency(String value) { + this.currency = value; + } + + /** + * Gets the value of the formatted property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormatted() { + return formatted; + } + + /** + * Sets the value of the formatted property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormatted(String value) { + this.formatted = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessMoneyV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessMoneyV3.java new file mode 100644 index 0000000..bcadb43 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessMoneyV3.java @@ -0,0 +1,119 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessMoneyV3 complex type. + * + *

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

+ * <complexType name="DutchBusinessMoneyV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="formatted" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessMoneyV3", propOrder = { + +}) +public class DutchBusinessMoneyV3 { + + protected Long amount; + protected String currency; + protected String formatted; + + /** + * Gets the value of the amount property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getAmount() { + return amount; + } + + /** + * Sets the value of the amount property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setAmount(Long value) { + this.amount = value; + } + + /** + * Gets the value of the currency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCurrency() { + return currency; + } + + /** + * Sets the value of the currency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCurrency(String value) { + this.currency = value; + } + + /** + * Gets the value of the formatted property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormatted() { + return formatted; + } + + /** + * Sets the value of the formatted property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormatted(String value) { + this.formatted = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsCompany.java new file mode 100644 index 0000000..13e2020 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsCompany.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessNewsCompany complex type. + * + *

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

+ * <complexType name="DutchBusinessNewsCompany">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessNewsCompany", propOrder = { + +}) +public class DutchBusinessNewsCompany { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(required = true) + protected String name; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsCompanyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsCompanyArray.java new file mode 100644 index 0000000..c7e03ca --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsCompanyArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessNewsCompanyArray complex type. + * + *

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

+ * <complexType name="DutchBusinessNewsCompanyArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessNewsCompany" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessNewsCompanyArray", propOrder = { + "item" +}) +public class DutchBusinessNewsCompanyArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessNewsCompany } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItem.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItem.java new file mode 100644 index 0000000..a8876d4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItem.java @@ -0,0 +1,289 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessNewsItem complex type. + * + *

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

+ * <complexType name="DutchBusinessNewsItem">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="short" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="source" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sentiment" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
+ *         <element name="topics" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="companies" type="{http://www.webservices.nl/soap/}DutchBusinessNewsCompanyArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessNewsItem", propOrder = { + +}) +public class DutchBusinessNewsItem { + + @XmlElement(required = true) + protected String title; + @XmlElement(required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar date; + @XmlElement(name = "short", required = true) + protected String _short; + @XmlElement(required = true) + protected String url; + @XmlElement(required = true) + protected String source; + @XmlElement(required = true) + protected String type; + @XmlElement(required = true) + protected BigDecimal sentiment; + @XmlElement(required = true) + protected StringArray topics; + @XmlElement(required = true) + protected DutchBusinessNewsCompanyArray companies; + + /** + * Gets the value of the title property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTitle() { + return title; + } + + /** + * Sets the value of the title property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTitle(String value) { + this.title = value; + } + + /** + * Gets the value of the date property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDate() { + return date; + } + + /** + * Sets the value of the date property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDate(XMLGregorianCalendar value) { + this.date = value; + } + + /** + * Gets the value of the short property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getShort() { + return _short; + } + + /** + * Sets the value of the short property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setShort(String value) { + this._short = value; + } + + /** + * Gets the value of the url property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUrl() { + return url; + } + + /** + * Sets the value of the url property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUrl(String value) { + this.url = value; + } + + /** + * Gets the value of the source property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSource() { + return source; + } + + /** + * Sets the value of the source property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSource(String value) { + this.source = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the sentiment property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getSentiment() { + return sentiment; + } + + /** + * Sets the value of the sentiment property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setSentiment(BigDecimal value) { + this.sentiment = value; + } + + /** + * Gets the value of the topics property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTopics() { + return topics; + } + + /** + * Sets the value of the topics property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTopics(StringArray value) { + this.topics = value; + } + + /** + * Gets the value of the companies property. + * + * @return + * possible object is + * {@link DutchBusinessNewsCompanyArray } + * + */ + public DutchBusinessNewsCompanyArray getCompanies() { + return companies; + } + + /** + * Sets the value of the companies property. + * + * @param value + * allowed object is + * {@link DutchBusinessNewsCompanyArray } + * + */ + public void setCompanies(DutchBusinessNewsCompanyArray value) { + this.companies = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItemArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItemArray.java new file mode 100644 index 0000000..acd2e3e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItemArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessNewsItemArray complex type. + * + *

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

+ * <complexType name="DutchBusinessNewsItemArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessNewsItem" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessNewsItemArray", propOrder = { + "item" +}) +public class DutchBusinessNewsItemArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessNewsItem } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItemPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItemPagedResult.java new file mode 100644 index 0000000..39e7105 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItemPagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessNewsItemPagedResult complex type. + * + *

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

+ * <complexType name="DutchBusinessNewsItemPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}DutchBusinessNewsItemArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessNewsItemPagedResult", propOrder = { + +}) +public class DutchBusinessNewsItemPagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected DutchBusinessNewsItemArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link DutchBusinessNewsItemArray } + * + */ + public DutchBusinessNewsItemArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link DutchBusinessNewsItemArray } + * + */ + public void setResults(DutchBusinessNewsItemArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNonMarketingIndicator.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNonMarketingIndicator.java new file mode 100644 index 0000000..fb1aead --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNonMarketingIndicator.java @@ -0,0 +1,144 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessNonMarketingIndicator complex type. + * + *

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

+ * <complexType name="DutchBusinessNonMarketingIndicator">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="non_marketing_indicator" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="since" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessNonMarketingIndicator", propOrder = { + +}) +public class DutchBusinessNonMarketingIndicator { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(name = "non_marketing_indicator") + protected boolean nonMarketingIndicator; + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar since; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the nonMarketingIndicator property. + * + */ + public boolean isNonMarketingIndicator() { + return nonMarketingIndicator; + } + + /** + * Sets the value of the nonMarketingIndicator property. + * + */ + public void setNonMarketingIndicator(boolean value) { + this.nonMarketingIndicator = value; + } + + /** + * Gets the value of the since property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSince() { + return since; + } + + /** + * Sets the value of the since property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSince(XMLGregorianCalendar value) { + this.since = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationNode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationNode.java new file mode 100644 index 0000000..273b8dc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationNode.java @@ -0,0 +1,148 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessOrganizationNode complex type. + * + *

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

+ * <complexType name="DutchBusinessOrganizationNode">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="children" type="{http://www.webservices.nl/soap/}DutchBusinessOrganizationNodeArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessOrganizationNode", propOrder = { + +}) +public class DutchBusinessOrganizationNode { + + @XmlElement(required = true) + protected String name; + @XmlElement(required = true) + protected String type; + protected String id; + protected DutchBusinessOrganizationNodeArray children; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the children property. + * + * @return + * possible object is + * {@link DutchBusinessOrganizationNodeArray } + * + */ + public DutchBusinessOrganizationNodeArray getChildren() { + return children; + } + + /** + * Sets the value of the children property. + * + * @param value + * allowed object is + * {@link DutchBusinessOrganizationNodeArray } + * + */ + public void setChildren(DutchBusinessOrganizationNodeArray value) { + this.children = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationNodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationNodeArray.java new file mode 100644 index 0000000..2dc1251 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationNodeArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessOrganizationNodeArray complex type. + * + *

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

+ * <complexType name="DutchBusinessOrganizationNodeArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessOrganizationNode" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessOrganizationNodeArray", propOrder = { + "item" +}) +public class DutchBusinessOrganizationNodeArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessOrganizationNode } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationReferenceV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationReferenceV2.java new file mode 100644 index 0000000..c660199 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationReferenceV2.java @@ -0,0 +1,148 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessOrganizationReferenceV2 complex type. + * + *

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

+ * <complexType name="DutchBusinessOrganizationReferenceV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessOrganizationReferenceV2", propOrder = { + +}) +public class DutchBusinessOrganizationReferenceV2 { + + @XmlElement(name = "dossier_number") + protected String dossierNumber; + protected String registration; + protected String name; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the registration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistration() { + return registration; + } + + /** + * Sets the value of the registration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistration(String value) { + this.registration = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationReferenceV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationReferenceV3.java new file mode 100644 index 0000000..3069f61 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationReferenceV3.java @@ -0,0 +1,148 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessOrganizationReferenceV3 complex type. + * + *

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

+ * <complexType name="DutchBusinessOrganizationReferenceV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessOrganizationReferenceV3", propOrder = { + +}) +public class DutchBusinessOrganizationReferenceV3 { + + @XmlElement(name = "dossier_number") + protected String dossierNumber; + protected String registration; + protected String name; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the registration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistration() { + return registration; + } + + /** + * Sets the value of the registration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistration(String value) { + this.registration = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationTree.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationTree.java new file mode 100644 index 0000000..c2e302c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationTree.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessOrganizationTree complex type. + * + *

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

+ * <complexType name="DutchBusinessOrganizationTree">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="tree" type="{http://www.webservices.nl/soap/}DutchBusinessOrganizationNode"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessOrganizationTree", propOrder = { + +}) +public class DutchBusinessOrganizationTree { + + @XmlElement(required = true) + protected String name; + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(required = true) + protected DutchBusinessOrganizationNode tree; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the tree property. + * + * @return + * possible object is + * {@link DutchBusinessOrganizationNode } + * + */ + public DutchBusinessOrganizationNode getTree() { + return tree; + } + + /** + * Sets the value of the tree property. + * + * @param value + * allowed object is + * {@link DutchBusinessOrganizationNode } + * + */ + public void setTree(DutchBusinessOrganizationNode value) { + this.tree = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnership.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnership.java new file mode 100644 index 0000000..fe913a6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnership.java @@ -0,0 +1,551 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessPartnership complex type. + * + *

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

+ * <complexType name="DutchBusinessPartnership">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="dissolution_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="function_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="limited_partnership_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="limited_partnership_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="establishment_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="silent_partners" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPartnership", propOrder = { + +}) +public class DutchBusinessPartnership { + + @XmlElement(name = "dossier_number") + protected String dossierNumber; + @XmlElement(name = "rsin_number") + protected String rsinNumber; + protected String name; + protected String registration; + protected String status; + @XmlElement(name = "legal_form_text") + protected String legalFormText; + @XmlElement(name = "founding_date") + protected DutchBusinessDate foundingDate; + @XmlElement(name = "dissolution_date") + protected DutchBusinessDate dissolutionDate; + @XmlElement(name = "function_start_date") + protected DutchBusinessDate functionStartDate; + protected String duration; + @XmlElement(name = "limited_partnership_capital") + protected Long limitedPartnershipCapital; + @XmlElement(name = "limited_partnership_capital_currency") + protected String limitedPartnershipCapitalCurrency; + @XmlElement(name = "establishment_postcode") + protected String establishmentPostcode; + @XmlElement(name = "establishment_city") + protected String establishmentCity; + @XmlElement(name = "establishment_street") + protected String establishmentStreet; + @XmlElement(name = "establishment_house_number") + protected Integer establishmentHouseNumber; + @XmlElement(name = "establishment_house_number_addition") + protected String establishmentHouseNumberAddition; + @XmlElement(name = "establishment_country") + protected String establishmentCountry; + @XmlElement(name = "silent_partners") + protected Integer silentPartners; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the rsinNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsinNumber() { + return rsinNumber; + } + + /** + * Sets the value of the rsinNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsinNumber(String value) { + this.rsinNumber = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the registration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistration() { + return registration; + } + + /** + * Sets the value of the registration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistration(String value) { + this.registration = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the foundingDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getFoundingDate() { + return foundingDate; + } + + /** + * Sets the value of the foundingDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setFoundingDate(DutchBusinessDate value) { + this.foundingDate = value; + } + + /** + * Gets the value of the dissolutionDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getDissolutionDate() { + return dissolutionDate; + } + + /** + * Sets the value of the dissolutionDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setDissolutionDate(DutchBusinessDate value) { + this.dissolutionDate = value; + } + + /** + * Gets the value of the functionStartDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getFunctionStartDate() { + return functionStartDate; + } + + /** + * Sets the value of the functionStartDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setFunctionStartDate(DutchBusinessDate value) { + this.functionStartDate = value; + } + + /** + * Gets the value of the duration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDuration() { + return duration; + } + + /** + * Sets the value of the duration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDuration(String value) { + this.duration = value; + } + + /** + * Gets the value of the limitedPartnershipCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getLimitedPartnershipCapital() { + return limitedPartnershipCapital; + } + + /** + * Sets the value of the limitedPartnershipCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setLimitedPartnershipCapital(Long value) { + this.limitedPartnershipCapital = value; + } + + /** + * Gets the value of the limitedPartnershipCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLimitedPartnershipCapitalCurrency() { + return limitedPartnershipCapitalCurrency; + } + + /** + * Sets the value of the limitedPartnershipCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLimitedPartnershipCapitalCurrency(String value) { + this.limitedPartnershipCapitalCurrency = value; + } + + /** + * Gets the value of the establishmentPostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentPostcode() { + return establishmentPostcode; + } + + /** + * Sets the value of the establishmentPostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentPostcode(String value) { + this.establishmentPostcode = value; + } + + /** + * Gets the value of the establishmentCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCity() { + return establishmentCity; + } + + /** + * Sets the value of the establishmentCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCity(String value) { + this.establishmentCity = value; + } + + /** + * Gets the value of the establishmentStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentStreet() { + return establishmentStreet; + } + + /** + * Sets the value of the establishmentStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentStreet(String value) { + this.establishmentStreet = value; + } + + /** + * Gets the value of the establishmentHouseNumber property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getEstablishmentHouseNumber() { + return establishmentHouseNumber; + } + + /** + * Sets the value of the establishmentHouseNumber property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setEstablishmentHouseNumber(Integer value) { + this.establishmentHouseNumber = value; + } + + /** + * Gets the value of the establishmentHouseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentHouseNumberAddition() { + return establishmentHouseNumberAddition; + } + + /** + * Sets the value of the establishmentHouseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentHouseNumberAddition(String value) { + this.establishmentHouseNumberAddition = value; + } + + /** + * Gets the value of the establishmentCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCountry() { + return establishmentCountry; + } + + /** + * Sets the value of the establishmentCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCountry(String value) { + this.establishmentCountry = value; + } + + /** + * Gets the value of the silentPartners property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getSilentPartners() { + return silentPartners; + } + + /** + * Sets the value of the silentPartners property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setSilentPartners(Integer value) { + this.silentPartners = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipArray.java new file mode 100644 index 0000000..b12d873 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessPartnershipArray complex type. + * + *

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

+ * <complexType name="DutchBusinessPartnershipArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessPartnership" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPartnershipArray", propOrder = { + "item" +}) +public class DutchBusinessPartnershipArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessPartnership } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipV2.java new file mode 100644 index 0000000..4663dd5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipV2.java @@ -0,0 +1,416 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessPartnershipV2 complex type. + * + *

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

+ * <complexType name="DutchBusinessPartnershipV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="dissolution_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="function_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="limited_partnership_capital" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV2" minOccurs="0"/>
+ *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
+ *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
+ *         <element name="silent_partners" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPartnershipV2", propOrder = { + +}) +public class DutchBusinessPartnershipV2 { + + @XmlElement(name = "dossier_number") + protected String dossierNumber; + @XmlElement(name = "rsin_number") + protected String rsinNumber; + protected String name; + protected String registration; + @XmlElement(name = "legal_form_text") + protected String legalFormText; + @XmlElement(name = "founding_date") + protected DutchBusinessDateV2 foundingDate; + @XmlElement(name = "dissolution_date") + protected DutchBusinessDateV2 dissolutionDate; + @XmlElement(name = "function_start_date") + protected DutchBusinessDateV2 functionStartDate; + protected String duration; + @XmlElement(name = "limited_partnership_capital") + protected DutchBusinessMoneyV2 limitedPartnershipCapital; + @XmlElement(name = "establishment_address") + protected DutchBusinessAddressV2 establishmentAddress; + @XmlElement(name = "correspondence_address") + protected DutchBusinessAddressV2 correspondenceAddress; + @XmlElement(name = "silent_partners") + protected Integer silentPartners; + protected StringArray remarks; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the rsinNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsinNumber() { + return rsinNumber; + } + + /** + * Sets the value of the rsinNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsinNumber(String value) { + this.rsinNumber = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the registration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistration() { + return registration; + } + + /** + * Sets the value of the registration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistration(String value) { + this.registration = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the foundingDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getFoundingDate() { + return foundingDate; + } + + /** + * Sets the value of the foundingDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setFoundingDate(DutchBusinessDateV2 value) { + this.foundingDate = value; + } + + /** + * Gets the value of the dissolutionDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getDissolutionDate() { + return dissolutionDate; + } + + /** + * Sets the value of the dissolutionDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setDissolutionDate(DutchBusinessDateV2 value) { + this.dissolutionDate = value; + } + + /** + * Gets the value of the functionStartDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getFunctionStartDate() { + return functionStartDate; + } + + /** + * Sets the value of the functionStartDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setFunctionStartDate(DutchBusinessDateV2 value) { + this.functionStartDate = value; + } + + /** + * Gets the value of the duration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDuration() { + return duration; + } + + /** + * Sets the value of the duration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDuration(String value) { + this.duration = value; + } + + /** + * Gets the value of the limitedPartnershipCapital property. + * + * @return + * possible object is + * {@link DutchBusinessMoneyV2 } + * + */ + public DutchBusinessMoneyV2 getLimitedPartnershipCapital() { + return limitedPartnershipCapital; + } + + /** + * Sets the value of the limitedPartnershipCapital property. + * + * @param value + * allowed object is + * {@link DutchBusinessMoneyV2 } + * + */ + public void setLimitedPartnershipCapital(DutchBusinessMoneyV2 value) { + this.limitedPartnershipCapital = value; + } + + /** + * Gets the value of the establishmentAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV2 } + * + */ + public DutchBusinessAddressV2 getEstablishmentAddress() { + return establishmentAddress; + } + + /** + * Sets the value of the establishmentAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV2 } + * + */ + public void setEstablishmentAddress(DutchBusinessAddressV2 value) { + this.establishmentAddress = value; + } + + /** + * Gets the value of the correspondenceAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV2 } + * + */ + public DutchBusinessAddressV2 getCorrespondenceAddress() { + return correspondenceAddress; + } + + /** + * Sets the value of the correspondenceAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV2 } + * + */ + public void setCorrespondenceAddress(DutchBusinessAddressV2 value) { + this.correspondenceAddress = value; + } + + /** + * Gets the value of the silentPartners property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getSilentPartners() { + return silentPartners; + } + + /** + * Sets the value of the silentPartners property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setSilentPartners(Integer value) { + this.silentPartners = value; + } + + /** + * Gets the value of the remarks property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getRemarks() { + return remarks; + } + + /** + * Sets the value of the remarks property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setRemarks(StringArray value) { + this.remarks = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipV3.java new file mode 100644 index 0000000..f4f3067 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipV3.java @@ -0,0 +1,416 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessPartnershipV3 complex type. + * + *

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

+ * <complexType name="DutchBusinessPartnershipV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="dissolution_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="function_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="limited_partnership_capital" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV3" minOccurs="0"/>
+ *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
+ *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
+ *         <element name="silent_partners" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPartnershipV3", propOrder = { + +}) +public class DutchBusinessPartnershipV3 { + + @XmlElement(name = "dossier_number") + protected String dossierNumber; + @XmlElement(name = "rsin_number") + protected String rsinNumber; + protected String name; + protected String registration; + @XmlElement(name = "legal_form_text") + protected String legalFormText; + @XmlElement(name = "founding_date") + protected DutchBusinessDateV3 foundingDate; + @XmlElement(name = "dissolution_date") + protected DutchBusinessDateV3 dissolutionDate; + @XmlElement(name = "function_start_date") + protected DutchBusinessDateV3 functionStartDate; + protected String duration; + @XmlElement(name = "limited_partnership_capital") + protected DutchBusinessMoneyV3 limitedPartnershipCapital; + @XmlElement(name = "establishment_address") + protected DutchBusinessAddressV3 establishmentAddress; + @XmlElement(name = "correspondence_address") + protected DutchBusinessAddressV3 correspondenceAddress; + @XmlElement(name = "silent_partners") + protected Integer silentPartners; + protected StringArray remarks; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the rsinNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsinNumber() { + return rsinNumber; + } + + /** + * Sets the value of the rsinNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsinNumber(String value) { + this.rsinNumber = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the registration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistration() { + return registration; + } + + /** + * Sets the value of the registration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistration(String value) { + this.registration = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the foundingDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getFoundingDate() { + return foundingDate; + } + + /** + * Sets the value of the foundingDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setFoundingDate(DutchBusinessDateV3 value) { + this.foundingDate = value; + } + + /** + * Gets the value of the dissolutionDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getDissolutionDate() { + return dissolutionDate; + } + + /** + * Sets the value of the dissolutionDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setDissolutionDate(DutchBusinessDateV3 value) { + this.dissolutionDate = value; + } + + /** + * Gets the value of the functionStartDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getFunctionStartDate() { + return functionStartDate; + } + + /** + * Sets the value of the functionStartDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setFunctionStartDate(DutchBusinessDateV3 value) { + this.functionStartDate = value; + } + + /** + * Gets the value of the duration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDuration() { + return duration; + } + + /** + * Sets the value of the duration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDuration(String value) { + this.duration = value; + } + + /** + * Gets the value of the limitedPartnershipCapital property. + * + * @return + * possible object is + * {@link DutchBusinessMoneyV3 } + * + */ + public DutchBusinessMoneyV3 getLimitedPartnershipCapital() { + return limitedPartnershipCapital; + } + + /** + * Sets the value of the limitedPartnershipCapital property. + * + * @param value + * allowed object is + * {@link DutchBusinessMoneyV3 } + * + */ + public void setLimitedPartnershipCapital(DutchBusinessMoneyV3 value) { + this.limitedPartnershipCapital = value; + } + + /** + * Gets the value of the establishmentAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV3 } + * + */ + public DutchBusinessAddressV3 getEstablishmentAddress() { + return establishmentAddress; + } + + /** + * Sets the value of the establishmentAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV3 } + * + */ + public void setEstablishmentAddress(DutchBusinessAddressV3 value) { + this.establishmentAddress = value; + } + + /** + * Gets the value of the correspondenceAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV3 } + * + */ + public DutchBusinessAddressV3 getCorrespondenceAddress() { + return correspondenceAddress; + } + + /** + * Sets the value of the correspondenceAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV3 } + * + */ + public void setCorrespondenceAddress(DutchBusinessAddressV3 value) { + this.correspondenceAddress = value; + } + + /** + * Gets the value of the silentPartners property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getSilentPartners() { + return silentPartners; + } + + /** + * Sets the value of the silentPartners property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setSilentPartners(Integer value) { + this.silentPartners = value; + } + + /** + * Gets the value of the remarks property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getRemarks() { + return remarks; + } + + /** + * Sets the value of the remarks property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setRemarks(StringArray value) { + this.remarks = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPeriod.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPeriod.java new file mode 100644 index 0000000..bddcc51 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPeriod.java @@ -0,0 +1,100 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessPeriod complex type. + * + *

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

+ * <complexType name="DutchBusinessPeriod">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="start_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="end_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPeriod", propOrder = { + +}) +public class DutchBusinessPeriod { + + @XmlElement(name = "start_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar startDate; + @XmlElement(name = "end_date", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar endDate; + + /** + * Gets the value of the startDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStartDate() { + return startDate; + } + + /** + * Sets the value of the startDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStartDate(XMLGregorianCalendar value) { + this.startDate = value; + } + + /** + * Gets the value of the endDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEndDate() { + return endDate; + } + + /** + * Sets the value of the endDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEndDate(XMLGregorianCalendar value) { + this.endDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonV2.java new file mode 100644 index 0000000..7ba20c6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonV2.java @@ -0,0 +1,309 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessPersonV2 complex type. + * + *

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

+ * <complexType name="DutchBusinessPersonV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="full_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_deceased" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="date_of_birth" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="place_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPersonV2", propOrder = { + +}) +public class DutchBusinessPersonV2 { + + @XmlElement(name = "full_name") + protected String fullName; + @XmlElement(name = "first_name") + protected String firstName; + protected String title; + protected String initials; + @XmlElement(name = "last_name") + protected String lastName; + protected String gender; + @XmlElement(name = "date_deceased") + protected DutchBusinessDateV2 dateDeceased; + @XmlElement(name = "date_of_birth") + protected DutchBusinessDateV2 dateOfBirth; + @XmlElement(name = "place_of_birth") + protected String placeOfBirth; + @XmlElement(name = "country_of_birth") + protected String countryOfBirth; + + /** + * Gets the value of the fullName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFullName() { + return fullName; + } + + /** + * Sets the value of the fullName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFullName(String value) { + this.fullName = value; + } + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the title property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTitle() { + return title; + } + + /** + * Sets the value of the title property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTitle(String value) { + this.title = value; + } + + /** + * Gets the value of the initials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInitials() { + return initials; + } + + /** + * Sets the value of the initials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInitials(String value) { + this.initials = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the gender property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGender() { + return gender; + } + + /** + * Sets the value of the gender property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGender(String value) { + this.gender = value; + } + + /** + * Gets the value of the dateDeceased property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getDateDeceased() { + return dateDeceased; + } + + /** + * Sets the value of the dateDeceased property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setDateDeceased(DutchBusinessDateV2 value) { + this.dateDeceased = value; + } + + /** + * Gets the value of the dateOfBirth property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getDateOfBirth() { + return dateOfBirth; + } + + /** + * Sets the value of the dateOfBirth property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setDateOfBirth(DutchBusinessDateV2 value) { + this.dateOfBirth = value; + } + + /** + * Gets the value of the placeOfBirth property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaceOfBirth() { + return placeOfBirth; + } + + /** + * Sets the value of the placeOfBirth property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaceOfBirth(String value) { + this.placeOfBirth = value; + } + + /** + * Gets the value of the countryOfBirth property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryOfBirth() { + return countryOfBirth; + } + + /** + * Sets the value of the countryOfBirth property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryOfBirth(String value) { + this.countryOfBirth = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonV3.java new file mode 100644 index 0000000..3f41c57 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonV3.java @@ -0,0 +1,309 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessPersonV3 complex type. + * + *

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

+ * <complexType name="DutchBusinessPersonV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="full_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_deceased" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="date_of_birth" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="place_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPersonV3", propOrder = { + +}) +public class DutchBusinessPersonV3 { + + @XmlElement(name = "full_name") + protected String fullName; + @XmlElement(name = "first_name") + protected String firstName; + protected String title; + protected String initials; + @XmlElement(name = "last_name") + protected String lastName; + protected String gender; + @XmlElement(name = "date_deceased") + protected DutchBusinessDateV3 dateDeceased; + @XmlElement(name = "date_of_birth") + protected DutchBusinessDateV3 dateOfBirth; + @XmlElement(name = "place_of_birth") + protected String placeOfBirth; + @XmlElement(name = "country_of_birth") + protected String countryOfBirth; + + /** + * Gets the value of the fullName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFullName() { + return fullName; + } + + /** + * Sets the value of the fullName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFullName(String value) { + this.fullName = value; + } + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the title property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTitle() { + return title; + } + + /** + * Sets the value of the title property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTitle(String value) { + this.title = value; + } + + /** + * Gets the value of the initials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInitials() { + return initials; + } + + /** + * Sets the value of the initials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInitials(String value) { + this.initials = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the gender property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGender() { + return gender; + } + + /** + * Sets the value of the gender property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGender(String value) { + this.gender = value; + } + + /** + * Gets the value of the dateDeceased property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getDateDeceased() { + return dateDeceased; + } + + /** + * Sets the value of the dateDeceased property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setDateDeceased(DutchBusinessDateV3 value) { + this.dateDeceased = value; + } + + /** + * Gets the value of the dateOfBirth property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getDateOfBirth() { + return dateOfBirth; + } + + /** + * Sets the value of the dateOfBirth property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setDateOfBirth(DutchBusinessDateV3 value) { + this.dateOfBirth = value; + } + + /** + * Gets the value of the placeOfBirth property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaceOfBirth() { + return placeOfBirth; + } + + /** + * Sets the value of the placeOfBirth property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaceOfBirth(String value) { + this.placeOfBirth = value; + } + + /** + * Gets the value of the countryOfBirth property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryOfBirth() { + return countryOfBirth; + } + + /** + * Sets the value of the countryOfBirth property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryOfBirth(String value) { + this.countryOfBirth = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonnelInfoV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonnelInfoV2.java new file mode 100644 index 0000000..7511ec7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonnelInfoV2.java @@ -0,0 +1,119 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessPersonnelInfoV2 complex type. + * + *

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

+ * <complexType name="DutchBusinessPersonnelInfoV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="fulltime" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="parttime" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPersonnelInfoV2", propOrder = { + +}) +public class DutchBusinessPersonnelInfoV2 { + + protected Integer fulltime; + protected Integer parttime; + protected Integer total; + + /** + * Gets the value of the fulltime property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getFulltime() { + return fulltime; + } + + /** + * Sets the value of the fulltime property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setFulltime(Integer value) { + this.fulltime = value; + } + + /** + * Gets the value of the parttime property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getParttime() { + return parttime; + } + + /** + * Sets the value of the parttime property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setParttime(Integer value) { + this.parttime = value; + } + + /** + * Gets the value of the total property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotal() { + return total; + } + + /** + * Sets the value of the total property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotal(Integer value) { + this.total = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonnelInfoV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonnelInfoV3.java new file mode 100644 index 0000000..8aa3c4b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonnelInfoV3.java @@ -0,0 +1,119 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessPersonnelInfoV3 complex type. + * + *

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

+ * <complexType name="DutchBusinessPersonnelInfoV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="fulltime" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="parttime" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="total" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPersonnelInfoV3", propOrder = { + +}) +public class DutchBusinessPersonnelInfoV3 { + + protected Integer fulltime; + protected Integer parttime; + protected Integer total; + + /** + * Gets the value of the fulltime property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getFulltime() { + return fulltime; + } + + /** + * Sets the value of the fulltime property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setFulltime(Integer value) { + this.fulltime = value; + } + + /** + * Gets the value of the parttime property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getParttime() { + return parttime; + } + + /** + * Sets the value of the parttime property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setParttime(Integer value) { + this.parttime = value; + } + + /** + * Gets the value of the total property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTotal() { + return total; + } + + /** + * Sets the value of the total property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTotal(Integer value) { + this.total = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPosition.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPosition.java new file mode 100644 index 0000000..12de352 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPosition.java @@ -0,0 +1,1221 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessPosition complex type. + * + *

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

+ * <complexType name="DutchBusinessPosition">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="function_registration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="function_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="function_authorization" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_authorization_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_authorization_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="function_authorization_signing_power" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_authorization_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="authorization_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="authorization_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="authorization_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="inauguration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="inauguration_function" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="inauguration_duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="inauguration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="inauguration_body" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="under_receivership" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="rights_against_third_parties" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="release_of_covenant" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_deceased" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="date_of_birth" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="place_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="date_joined" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPosition", propOrder = { + +}) +public class DutchBusinessPosition { + + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + @XmlElement(name = "dossier_number") + protected String dossierNumber; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + protected String name; + @XmlElement(name = "first_name") + protected String firstName; + protected String title; + protected String initials; + @XmlElement(name = "last_name") + protected String lastName; + @XmlElement(name = "function_type") + protected String functionType; + @XmlElement(name = "function_description") + protected String functionDescription; + @XmlElement(name = "function_title") + protected String functionTitle; + @XmlElement(name = "function_start_date") + protected DutchBusinessDate functionStartDate; + @XmlElement(name = "function_registration_date") + protected DutchBusinessDate functionRegistrationDate; + @XmlElement(name = "function_end_date") + protected DutchBusinessDate functionEndDate; + @XmlElement(name = "function_authorization") + protected String functionAuthorization; + @XmlElement(name = "function_authorization_description") + protected String functionAuthorizationDescription; + @XmlElement(name = "function_authorization_start_date") + protected DutchBusinessDate functionAuthorizationStartDate; + @XmlElement(name = "function_authorization_signing_power") + protected String functionAuthorizationSigningPower; + @XmlElement(name = "function_authorization_end_date") + protected DutchBusinessDate functionAuthorizationEndDate; + @XmlElement(name = "authorization_description") + protected String authorizationDescription; + @XmlElement(name = "authorization_start_date") + protected DutchBusinessDate authorizationStartDate; + @XmlElement(name = "authorization_end_date") + protected DutchBusinessDate authorizationEndDate; + protected String inauguration; + @XmlElement(name = "inauguration_function") + protected String inaugurationFunction; + @XmlElement(name = "inauguration_duration") + protected String inaugurationDuration; + @XmlElement(name = "inauguration_date") + protected DutchBusinessDate inaugurationDate; + @XmlElement(name = "inauguration_body") + protected String inaugurationBody; + @XmlElement(name = "under_receivership") + protected String underReceivership; + @XmlElement(name = "rights_against_third_parties") + protected String rightsAgainstThirdParties; + @XmlElement(name = "release_of_covenant") + protected String releaseOfCovenant; + @XmlElement(name = "date_deceased") + protected DutchBusinessDate dateDeceased; + @XmlElement(name = "date_of_birth") + protected DutchBusinessDate dateOfBirth; + @XmlElement(name = "place_of_birth") + protected String placeOfBirth; + @XmlElement(name = "country_of_birth") + protected String countryOfBirth; + protected String postcode; + protected String city; + protected String street; + @XmlElement(name = "house_number") + protected Integer houseNumber; + @XmlElement(name = "house_number_addition") + protected String houseNumberAddition; + protected String country; + @XmlElement(name = "telephone_numbers") + protected StringArray telephoneNumbers; + @XmlElement(name = "date_since") + protected DutchBusinessDate dateSince; + @XmlElement(name = "date_joined") + protected DutchBusinessDate dateJoined; + protected String status; + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the title property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTitle() { + return title; + } + + /** + * Sets the value of the title property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTitle(String value) { + this.title = value; + } + + /** + * Gets the value of the initials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInitials() { + return initials; + } + + /** + * Sets the value of the initials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInitials(String value) { + this.initials = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the functionType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionType() { + return functionType; + } + + /** + * Sets the value of the functionType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionType(String value) { + this.functionType = value; + } + + /** + * Gets the value of the functionDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionDescription() { + return functionDescription; + } + + /** + * Sets the value of the functionDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionDescription(String value) { + this.functionDescription = value; + } + + /** + * Gets the value of the functionTitle property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionTitle() { + return functionTitle; + } + + /** + * Sets the value of the functionTitle property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionTitle(String value) { + this.functionTitle = value; + } + + /** + * Gets the value of the functionStartDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getFunctionStartDate() { + return functionStartDate; + } + + /** + * Sets the value of the functionStartDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setFunctionStartDate(DutchBusinessDate value) { + this.functionStartDate = value; + } + + /** + * Gets the value of the functionRegistrationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getFunctionRegistrationDate() { + return functionRegistrationDate; + } + + /** + * Sets the value of the functionRegistrationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setFunctionRegistrationDate(DutchBusinessDate value) { + this.functionRegistrationDate = value; + } + + /** + * Gets the value of the functionEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getFunctionEndDate() { + return functionEndDate; + } + + /** + * Sets the value of the functionEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setFunctionEndDate(DutchBusinessDate value) { + this.functionEndDate = value; + } + + /** + * Gets the value of the functionAuthorization property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionAuthorization() { + return functionAuthorization; + } + + /** + * Sets the value of the functionAuthorization property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionAuthorization(String value) { + this.functionAuthorization = value; + } + + /** + * Gets the value of the functionAuthorizationDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionAuthorizationDescription() { + return functionAuthorizationDescription; + } + + /** + * Sets the value of the functionAuthorizationDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionAuthorizationDescription(String value) { + this.functionAuthorizationDescription = value; + } + + /** + * Gets the value of the functionAuthorizationStartDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getFunctionAuthorizationStartDate() { + return functionAuthorizationStartDate; + } + + /** + * Sets the value of the functionAuthorizationStartDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setFunctionAuthorizationStartDate(DutchBusinessDate value) { + this.functionAuthorizationStartDate = value; + } + + /** + * Gets the value of the functionAuthorizationSigningPower property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionAuthorizationSigningPower() { + return functionAuthorizationSigningPower; + } + + /** + * Sets the value of the functionAuthorizationSigningPower property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionAuthorizationSigningPower(String value) { + this.functionAuthorizationSigningPower = value; + } + + /** + * Gets the value of the functionAuthorizationEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getFunctionAuthorizationEndDate() { + return functionAuthorizationEndDate; + } + + /** + * Sets the value of the functionAuthorizationEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setFunctionAuthorizationEndDate(DutchBusinessDate value) { + this.functionAuthorizationEndDate = value; + } + + /** + * Gets the value of the authorizationDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAuthorizationDescription() { + return authorizationDescription; + } + + /** + * Sets the value of the authorizationDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAuthorizationDescription(String value) { + this.authorizationDescription = value; + } + + /** + * Gets the value of the authorizationStartDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getAuthorizationStartDate() { + return authorizationStartDate; + } + + /** + * Sets the value of the authorizationStartDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setAuthorizationStartDate(DutchBusinessDate value) { + this.authorizationStartDate = value; + } + + /** + * Gets the value of the authorizationEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getAuthorizationEndDate() { + return authorizationEndDate; + } + + /** + * Sets the value of the authorizationEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setAuthorizationEndDate(DutchBusinessDate value) { + this.authorizationEndDate = value; + } + + /** + * Gets the value of the inauguration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInauguration() { + return inauguration; + } + + /** + * Sets the value of the inauguration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInauguration(String value) { + this.inauguration = value; + } + + /** + * Gets the value of the inaugurationFunction property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInaugurationFunction() { + return inaugurationFunction; + } + + /** + * Sets the value of the inaugurationFunction property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInaugurationFunction(String value) { + this.inaugurationFunction = value; + } + + /** + * Gets the value of the inaugurationDuration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInaugurationDuration() { + return inaugurationDuration; + } + + /** + * Sets the value of the inaugurationDuration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInaugurationDuration(String value) { + this.inaugurationDuration = value; + } + + /** + * Gets the value of the inaugurationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getInaugurationDate() { + return inaugurationDate; + } + + /** + * Sets the value of the inaugurationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setInaugurationDate(DutchBusinessDate value) { + this.inaugurationDate = value; + } + + /** + * Gets the value of the inaugurationBody property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInaugurationBody() { + return inaugurationBody; + } + + /** + * Sets the value of the inaugurationBody property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInaugurationBody(String value) { + this.inaugurationBody = value; + } + + /** + * Gets the value of the underReceivership property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnderReceivership() { + return underReceivership; + } + + /** + * Sets the value of the underReceivership property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnderReceivership(String value) { + this.underReceivership = value; + } + + /** + * Gets the value of the rightsAgainstThirdParties property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRightsAgainstThirdParties() { + return rightsAgainstThirdParties; + } + + /** + * Sets the value of the rightsAgainstThirdParties property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRightsAgainstThirdParties(String value) { + this.rightsAgainstThirdParties = value; + } + + /** + * Gets the value of the releaseOfCovenant property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReleaseOfCovenant() { + return releaseOfCovenant; + } + + /** + * Sets the value of the releaseOfCovenant property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReleaseOfCovenant(String value) { + this.releaseOfCovenant = value; + } + + /** + * Gets the value of the dateDeceased property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getDateDeceased() { + return dateDeceased; + } + + /** + * Sets the value of the dateDeceased property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setDateDeceased(DutchBusinessDate value) { + this.dateDeceased = value; + } + + /** + * Gets the value of the dateOfBirth property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getDateOfBirth() { + return dateOfBirth; + } + + /** + * Sets the value of the dateOfBirth property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setDateOfBirth(DutchBusinessDate value) { + this.dateOfBirth = value; + } + + /** + * Gets the value of the placeOfBirth property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaceOfBirth() { + return placeOfBirth; + } + + /** + * Sets the value of the placeOfBirth property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaceOfBirth(String value) { + this.placeOfBirth = value; + } + + /** + * Gets the value of the countryOfBirth property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryOfBirth() { + return countryOfBirth; + } + + /** + * Sets the value of the countryOfBirth property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryOfBirth(String value) { + this.countryOfBirth = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNumber property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setHouseNumber(Integer value) { + this.houseNumber = value; + } + + /** + * Gets the value of the houseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNumberAddition() { + return houseNumberAddition; + } + + /** + * Sets the value of the houseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNumberAddition(String value) { + this.houseNumberAddition = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the telephoneNumbers property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTelephoneNumbers() { + return telephoneNumbers; + } + + /** + * Sets the value of the telephoneNumbers property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTelephoneNumbers(StringArray value) { + this.telephoneNumbers = value; + } + + /** + * Gets the value of the dateSince property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getDateSince() { + return dateSince; + } + + /** + * Sets the value of the dateSince property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setDateSince(DutchBusinessDate value) { + this.dateSince = value; + } + + /** + * Gets the value of the dateJoined property. + * + * @return + * possible object is + * {@link DutchBusinessDate } + * + */ + public DutchBusinessDate getDateJoined() { + return dateJoined; + } + + /** + * Sets the value of the dateJoined property. + * + * @param value + * allowed object is + * {@link DutchBusinessDate } + * + */ + public void setDateJoined(DutchBusinessDate value) { + this.dateJoined = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionArray.java new file mode 100644 index 0000000..8fc01da --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessPositionArray complex type. + * + *

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

+ * <complexType name="DutchBusinessPositionArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessPosition" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPositionArray", propOrder = { + "item" +}) +public class DutchBusinessPositionArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessPosition } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionAuthorization.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionAuthorization.java new file mode 100644 index 0000000..bab3878 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionAuthorization.java @@ -0,0 +1,154 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessPositionAuthorization complex type. + * + *

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

+ * <complexType name="DutchBusinessPositionAuthorization">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="start_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="end_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="end_date_source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPositionAuthorization", propOrder = { + +}) +public class DutchBusinessPositionAuthorization { + + @XmlElement(name = "start_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar startDate; + @XmlElement(name = "end_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar endDate; + @XmlElement(name = "end_date_source") + protected String endDateSource; + @XmlElement(required = true) + protected String description; + + /** + * Gets the value of the startDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStartDate() { + return startDate; + } + + /** + * Sets the value of the startDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStartDate(XMLGregorianCalendar value) { + this.startDate = value; + } + + /** + * Gets the value of the endDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEndDate() { + return endDate; + } + + /** + * Sets the value of the endDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEndDate(XMLGregorianCalendar value) { + this.endDate = value; + } + + /** + * Gets the value of the endDateSource property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEndDateSource() { + return endDateSource; + } + + /** + * Sets the value of the endDateSource property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEndDateSource(String value) { + this.endDateSource = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionAuthorizationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionAuthorizationArray.java new file mode 100644 index 0000000..9ba30e2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionAuthorizationArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessPositionAuthorizationArray complex type. + * + *

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

+ * <complexType name="DutchBusinessPositionAuthorizationArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessPositionAuthorization" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPositionAuthorizationArray", propOrder = { + "item" +}) +public class DutchBusinessPositionAuthorizationArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessPositionAuthorization } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionCompany.java new file mode 100644 index 0000000..fe7b601 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionCompany.java @@ -0,0 +1,204 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessPositionCompany complex type. + * + *

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

+ * <complexType name="DutchBusinessPositionCompany">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="kvk" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trade_name_full" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="primary_sbi_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="financial_status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPositionCompany", propOrder = { + +}) +public class DutchBusinessPositionCompany { + + @XmlElement(required = true) + protected String kvk; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(name = "legal_name") + protected String legalName; + @XmlElement(name = "trade_name_full") + protected String tradeNameFull; + @XmlElement(name = "primary_sbi_code") + protected Integer primarySbiCode; + @XmlElement(name = "financial_status") + protected String financialStatus; + + /** + * Gets the value of the kvk property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKvk() { + return kvk; + } + + /** + * Sets the value of the kvk property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKvk(String value) { + this.kvk = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the legalName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalName() { + return legalName; + } + + /** + * Sets the value of the legalName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalName(String value) { + this.legalName = value; + } + + /** + * Gets the value of the tradeNameFull property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeNameFull() { + return tradeNameFull; + } + + /** + * Sets the value of the tradeNameFull property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeNameFull(String value) { + this.tradeNameFull = value; + } + + /** + * Gets the value of the primarySbiCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPrimarySbiCode() { + return primarySbiCode; + } + + /** + * Sets the value of the primarySbiCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPrimarySbiCode(Integer value) { + this.primarySbiCode = value; + } + + /** + * Gets the value of the financialStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFinancialStatus() { + return financialStatus; + } + + /** + * Sets the value of the financialStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFinancialStatus(String value) { + this.financialStatus = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV2.java new file mode 100644 index 0000000..8db695c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV2.java @@ -0,0 +1,929 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessPositionV2 complex type. + * + *

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

+ * <complexType name="DutchBusinessPositionV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="functionary" type="{http://www.webservices.nl/soap/}DutchBusinessPersonV2" minOccurs="0"/>
+ *         <element name="organisation" type="{http://www.webservices.nl/soap/}DutchBusinessOrganizationReferenceV2" minOccurs="0"/>
+ *         <element name="residential_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
+ *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
+ *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
+ *         <element name="longest_serving" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="function_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="function_registration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="function_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="function_authorization" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_authorization_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_authorization_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="function_authorization_signing_power" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_authorization_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="authorization_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="authorization_establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="authorization_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="authorization_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="authorization_constraints" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="inauguration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="inauguration_function" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="inauguration_duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="inauguration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="inauguration_body" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="under_receivership" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="rights_against_third_parties" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="release_of_covenant" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="date_joined" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
+ *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPositionV2", propOrder = { + +}) +public class DutchBusinessPositionV2 { + + protected DutchBusinessPersonV2 functionary; + protected DutchBusinessOrganizationReferenceV2 organisation; + @XmlElement(name = "residential_address") + protected DutchBusinessAddressV2 residentialAddress; + @XmlElement(name = "correspondence_address") + protected DutchBusinessAddressV2 correspondenceAddress; + @XmlElement(name = "establishment_address") + protected DutchBusinessAddressV2 establishmentAddress; + @XmlElement(name = "longest_serving") + protected Boolean longestServing; + @XmlElement(name = "function_type") + protected String functionType; + @XmlElement(name = "function_description") + protected String functionDescription; + @XmlElement(name = "function_title") + protected String functionTitle; + @XmlElement(name = "function_start_date") + protected DutchBusinessDateV2 functionStartDate; + @XmlElement(name = "function_registration_date") + protected DutchBusinessDateV2 functionRegistrationDate; + @XmlElement(name = "function_end_date") + protected DutchBusinessDateV2 functionEndDate; + @XmlElement(name = "function_authorization") + protected String functionAuthorization; + @XmlElement(name = "function_authorization_description") + protected String functionAuthorizationDescription; + @XmlElement(name = "function_authorization_start_date") + protected DutchBusinessDateV2 functionAuthorizationStartDate; + @XmlElement(name = "function_authorization_signing_power") + protected String functionAuthorizationSigningPower; + @XmlElement(name = "function_authorization_end_date") + protected DutchBusinessDateV2 functionAuthorizationEndDate; + @XmlElement(name = "authorization_description") + protected String authorizationDescription; + @XmlElement(name = "authorization_establishment_number") + protected String authorizationEstablishmentNumber; + @XmlElement(name = "authorization_start_date") + protected DutchBusinessDateV2 authorizationStartDate; + @XmlElement(name = "authorization_end_date") + protected DutchBusinessDateV2 authorizationEndDate; + @XmlElement(name = "authorization_constraints") + protected StringArray authorizationConstraints; + protected String inauguration; + @XmlElement(name = "inauguration_function") + protected String inaugurationFunction; + @XmlElement(name = "inauguration_duration") + protected String inaugurationDuration; + @XmlElement(name = "inauguration_date") + protected DutchBusinessDateV2 inaugurationDate; + @XmlElement(name = "inauguration_body") + protected String inaugurationBody; + @XmlElement(name = "under_receivership") + protected String underReceivership; + @XmlElement(name = "rights_against_third_parties") + protected String rightsAgainstThirdParties; + @XmlElement(name = "release_of_covenant") + protected String releaseOfCovenant; + @XmlElement(name = "date_since") + protected DutchBusinessDateV2 dateSince; + @XmlElement(name = "date_joined") + protected DutchBusinessDateV2 dateJoined; + protected StringArray remarks; + + /** + * Gets the value of the functionary property. + * + * @return + * possible object is + * {@link DutchBusinessPersonV2 } + * + */ + public DutchBusinessPersonV2 getFunctionary() { + return functionary; + } + + /** + * Sets the value of the functionary property. + * + * @param value + * allowed object is + * {@link DutchBusinessPersonV2 } + * + */ + public void setFunctionary(DutchBusinessPersonV2 value) { + this.functionary = value; + } + + /** + * Gets the value of the organisation property. + * + * @return + * possible object is + * {@link DutchBusinessOrganizationReferenceV2 } + * + */ + public DutchBusinessOrganizationReferenceV2 getOrganisation() { + return organisation; + } + + /** + * Sets the value of the organisation property. + * + * @param value + * allowed object is + * {@link DutchBusinessOrganizationReferenceV2 } + * + */ + public void setOrganisation(DutchBusinessOrganizationReferenceV2 value) { + this.organisation = value; + } + + /** + * Gets the value of the residentialAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV2 } + * + */ + public DutchBusinessAddressV2 getResidentialAddress() { + return residentialAddress; + } + + /** + * Sets the value of the residentialAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV2 } + * + */ + public void setResidentialAddress(DutchBusinessAddressV2 value) { + this.residentialAddress = value; + } + + /** + * Gets the value of the correspondenceAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV2 } + * + */ + public DutchBusinessAddressV2 getCorrespondenceAddress() { + return correspondenceAddress; + } + + /** + * Sets the value of the correspondenceAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV2 } + * + */ + public void setCorrespondenceAddress(DutchBusinessAddressV2 value) { + this.correspondenceAddress = value; + } + + /** + * Gets the value of the establishmentAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV2 } + * + */ + public DutchBusinessAddressV2 getEstablishmentAddress() { + return establishmentAddress; + } + + /** + * Sets the value of the establishmentAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV2 } + * + */ + public void setEstablishmentAddress(DutchBusinessAddressV2 value) { + this.establishmentAddress = value; + } + + /** + * Gets the value of the longestServing property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isLongestServing() { + return longestServing; + } + + /** + * Sets the value of the longestServing property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setLongestServing(Boolean value) { + this.longestServing = value; + } + + /** + * Gets the value of the functionType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionType() { + return functionType; + } + + /** + * Sets the value of the functionType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionType(String value) { + this.functionType = value; + } + + /** + * Gets the value of the functionDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionDescription() { + return functionDescription; + } + + /** + * Sets the value of the functionDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionDescription(String value) { + this.functionDescription = value; + } + + /** + * Gets the value of the functionTitle property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionTitle() { + return functionTitle; + } + + /** + * Sets the value of the functionTitle property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionTitle(String value) { + this.functionTitle = value; + } + + /** + * Gets the value of the functionStartDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getFunctionStartDate() { + return functionStartDate; + } + + /** + * Sets the value of the functionStartDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setFunctionStartDate(DutchBusinessDateV2 value) { + this.functionStartDate = value; + } + + /** + * Gets the value of the functionRegistrationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getFunctionRegistrationDate() { + return functionRegistrationDate; + } + + /** + * Sets the value of the functionRegistrationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setFunctionRegistrationDate(DutchBusinessDateV2 value) { + this.functionRegistrationDate = value; + } + + /** + * Gets the value of the functionEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getFunctionEndDate() { + return functionEndDate; + } + + /** + * Sets the value of the functionEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setFunctionEndDate(DutchBusinessDateV2 value) { + this.functionEndDate = value; + } + + /** + * Gets the value of the functionAuthorization property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionAuthorization() { + return functionAuthorization; + } + + /** + * Sets the value of the functionAuthorization property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionAuthorization(String value) { + this.functionAuthorization = value; + } + + /** + * Gets the value of the functionAuthorizationDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionAuthorizationDescription() { + return functionAuthorizationDescription; + } + + /** + * Sets the value of the functionAuthorizationDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionAuthorizationDescription(String value) { + this.functionAuthorizationDescription = value; + } + + /** + * Gets the value of the functionAuthorizationStartDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getFunctionAuthorizationStartDate() { + return functionAuthorizationStartDate; + } + + /** + * Sets the value of the functionAuthorizationStartDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setFunctionAuthorizationStartDate(DutchBusinessDateV2 value) { + this.functionAuthorizationStartDate = value; + } + + /** + * Gets the value of the functionAuthorizationSigningPower property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionAuthorizationSigningPower() { + return functionAuthorizationSigningPower; + } + + /** + * Sets the value of the functionAuthorizationSigningPower property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionAuthorizationSigningPower(String value) { + this.functionAuthorizationSigningPower = value; + } + + /** + * Gets the value of the functionAuthorizationEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getFunctionAuthorizationEndDate() { + return functionAuthorizationEndDate; + } + + /** + * Sets the value of the functionAuthorizationEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setFunctionAuthorizationEndDate(DutchBusinessDateV2 value) { + this.functionAuthorizationEndDate = value; + } + + /** + * Gets the value of the authorizationDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAuthorizationDescription() { + return authorizationDescription; + } + + /** + * Sets the value of the authorizationDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAuthorizationDescription(String value) { + this.authorizationDescription = value; + } + + /** + * Gets the value of the authorizationEstablishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAuthorizationEstablishmentNumber() { + return authorizationEstablishmentNumber; + } + + /** + * Sets the value of the authorizationEstablishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAuthorizationEstablishmentNumber(String value) { + this.authorizationEstablishmentNumber = value; + } + + /** + * Gets the value of the authorizationStartDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getAuthorizationStartDate() { + return authorizationStartDate; + } + + /** + * Sets the value of the authorizationStartDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setAuthorizationStartDate(DutchBusinessDateV2 value) { + this.authorizationStartDate = value; + } + + /** + * Gets the value of the authorizationEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getAuthorizationEndDate() { + return authorizationEndDate; + } + + /** + * Sets the value of the authorizationEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setAuthorizationEndDate(DutchBusinessDateV2 value) { + this.authorizationEndDate = value; + } + + /** + * Gets the value of the authorizationConstraints property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getAuthorizationConstraints() { + return authorizationConstraints; + } + + /** + * Sets the value of the authorizationConstraints property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setAuthorizationConstraints(StringArray value) { + this.authorizationConstraints = value; + } + + /** + * Gets the value of the inauguration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInauguration() { + return inauguration; + } + + /** + * Sets the value of the inauguration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInauguration(String value) { + this.inauguration = value; + } + + /** + * Gets the value of the inaugurationFunction property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInaugurationFunction() { + return inaugurationFunction; + } + + /** + * Sets the value of the inaugurationFunction property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInaugurationFunction(String value) { + this.inaugurationFunction = value; + } + + /** + * Gets the value of the inaugurationDuration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInaugurationDuration() { + return inaugurationDuration; + } + + /** + * Sets the value of the inaugurationDuration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInaugurationDuration(String value) { + this.inaugurationDuration = value; + } + + /** + * Gets the value of the inaugurationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getInaugurationDate() { + return inaugurationDate; + } + + /** + * Sets the value of the inaugurationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setInaugurationDate(DutchBusinessDateV2 value) { + this.inaugurationDate = value; + } + + /** + * Gets the value of the inaugurationBody property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInaugurationBody() { + return inaugurationBody; + } + + /** + * Sets the value of the inaugurationBody property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInaugurationBody(String value) { + this.inaugurationBody = value; + } + + /** + * Gets the value of the underReceivership property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnderReceivership() { + return underReceivership; + } + + /** + * Sets the value of the underReceivership property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnderReceivership(String value) { + this.underReceivership = value; + } + + /** + * Gets the value of the rightsAgainstThirdParties property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRightsAgainstThirdParties() { + return rightsAgainstThirdParties; + } + + /** + * Sets the value of the rightsAgainstThirdParties property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRightsAgainstThirdParties(String value) { + this.rightsAgainstThirdParties = value; + } + + /** + * Gets the value of the releaseOfCovenant property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReleaseOfCovenant() { + return releaseOfCovenant; + } + + /** + * Sets the value of the releaseOfCovenant property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReleaseOfCovenant(String value) { + this.releaseOfCovenant = value; + } + + /** + * Gets the value of the dateSince property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getDateSince() { + return dateSince; + } + + /** + * Sets the value of the dateSince property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setDateSince(DutchBusinessDateV2 value) { + this.dateSince = value; + } + + /** + * Gets the value of the dateJoined property. + * + * @return + * possible object is + * {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 getDateJoined() { + return dateJoined; + } + + /** + * Sets the value of the dateJoined property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV2 } + * + */ + public void setDateJoined(DutchBusinessDateV2 value) { + this.dateJoined = value; + } + + /** + * Gets the value of the remarks property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getRemarks() { + return remarks; + } + + /** + * Sets the value of the remarks property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setRemarks(StringArray value) { + this.remarks = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV2Array.java new file mode 100644 index 0000000..ff10616 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessPositionV2Array complex type. + * + *

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

+ * <complexType name="DutchBusinessPositionV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessPositionV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPositionV2Array", propOrder = { + "item" +}) +public class DutchBusinessPositionV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessPositionV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV3.java new file mode 100644 index 0000000..891ca6c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV3.java @@ -0,0 +1,929 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessPositionV3 complex type. + * + *

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

+ * <complexType name="DutchBusinessPositionV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="functionary" type="{http://www.webservices.nl/soap/}DutchBusinessPersonV3" minOccurs="0"/>
+ *         <element name="organisation" type="{http://www.webservices.nl/soap/}DutchBusinessOrganizationReferenceV3" minOccurs="0"/>
+ *         <element name="residential_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
+ *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
+ *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
+ *         <element name="longest_serving" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="function_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="function_registration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="function_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="function_authorization" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_authorization_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_authorization_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="function_authorization_signing_power" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_authorization_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="authorization_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="authorization_establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="authorization_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="authorization_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="authorization_constraints" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="inauguration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="inauguration_function" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="inauguration_duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="inauguration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="inauguration_body" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="under_receivership" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="rights_against_third_parties" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="release_of_covenant" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="date_joined" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
+ *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPositionV3", propOrder = { + +}) +public class DutchBusinessPositionV3 { + + protected DutchBusinessPersonV3 functionary; + protected DutchBusinessOrganizationReferenceV3 organisation; + @XmlElement(name = "residential_address") + protected DutchBusinessAddressV3 residentialAddress; + @XmlElement(name = "correspondence_address") + protected DutchBusinessAddressV3 correspondenceAddress; + @XmlElement(name = "establishment_address") + protected DutchBusinessAddressV3 establishmentAddress; + @XmlElement(name = "longest_serving") + protected Boolean longestServing; + @XmlElement(name = "function_type") + protected String functionType; + @XmlElement(name = "function_description") + protected String functionDescription; + @XmlElement(name = "function_title") + protected String functionTitle; + @XmlElement(name = "function_start_date") + protected DutchBusinessDateV3 functionStartDate; + @XmlElement(name = "function_registration_date") + protected DutchBusinessDateV3 functionRegistrationDate; + @XmlElement(name = "function_end_date") + protected DutchBusinessDateV3 functionEndDate; + @XmlElement(name = "function_authorization") + protected String functionAuthorization; + @XmlElement(name = "function_authorization_description") + protected String functionAuthorizationDescription; + @XmlElement(name = "function_authorization_start_date") + protected DutchBusinessDateV3 functionAuthorizationStartDate; + @XmlElement(name = "function_authorization_signing_power") + protected String functionAuthorizationSigningPower; + @XmlElement(name = "function_authorization_end_date") + protected DutchBusinessDateV3 functionAuthorizationEndDate; + @XmlElement(name = "authorization_description") + protected String authorizationDescription; + @XmlElement(name = "authorization_establishment_number") + protected String authorizationEstablishmentNumber; + @XmlElement(name = "authorization_start_date") + protected DutchBusinessDateV3 authorizationStartDate; + @XmlElement(name = "authorization_end_date") + protected DutchBusinessDateV3 authorizationEndDate; + @XmlElement(name = "authorization_constraints") + protected StringArray authorizationConstraints; + protected String inauguration; + @XmlElement(name = "inauguration_function") + protected String inaugurationFunction; + @XmlElement(name = "inauguration_duration") + protected String inaugurationDuration; + @XmlElement(name = "inauguration_date") + protected DutchBusinessDateV3 inaugurationDate; + @XmlElement(name = "inauguration_body") + protected String inaugurationBody; + @XmlElement(name = "under_receivership") + protected String underReceivership; + @XmlElement(name = "rights_against_third_parties") + protected String rightsAgainstThirdParties; + @XmlElement(name = "release_of_covenant") + protected String releaseOfCovenant; + @XmlElement(name = "date_since") + protected DutchBusinessDateV3 dateSince; + @XmlElement(name = "date_joined") + protected DutchBusinessDateV3 dateJoined; + protected StringArray remarks; + + /** + * Gets the value of the functionary property. + * + * @return + * possible object is + * {@link DutchBusinessPersonV3 } + * + */ + public DutchBusinessPersonV3 getFunctionary() { + return functionary; + } + + /** + * Sets the value of the functionary property. + * + * @param value + * allowed object is + * {@link DutchBusinessPersonV3 } + * + */ + public void setFunctionary(DutchBusinessPersonV3 value) { + this.functionary = value; + } + + /** + * Gets the value of the organisation property. + * + * @return + * possible object is + * {@link DutchBusinessOrganizationReferenceV3 } + * + */ + public DutchBusinessOrganizationReferenceV3 getOrganisation() { + return organisation; + } + + /** + * Sets the value of the organisation property. + * + * @param value + * allowed object is + * {@link DutchBusinessOrganizationReferenceV3 } + * + */ + public void setOrganisation(DutchBusinessOrganizationReferenceV3 value) { + this.organisation = value; + } + + /** + * Gets the value of the residentialAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV3 } + * + */ + public DutchBusinessAddressV3 getResidentialAddress() { + return residentialAddress; + } + + /** + * Sets the value of the residentialAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV3 } + * + */ + public void setResidentialAddress(DutchBusinessAddressV3 value) { + this.residentialAddress = value; + } + + /** + * Gets the value of the correspondenceAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV3 } + * + */ + public DutchBusinessAddressV3 getCorrespondenceAddress() { + return correspondenceAddress; + } + + /** + * Sets the value of the correspondenceAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV3 } + * + */ + public void setCorrespondenceAddress(DutchBusinessAddressV3 value) { + this.correspondenceAddress = value; + } + + /** + * Gets the value of the establishmentAddress property. + * + * @return + * possible object is + * {@link DutchBusinessAddressV3 } + * + */ + public DutchBusinessAddressV3 getEstablishmentAddress() { + return establishmentAddress; + } + + /** + * Sets the value of the establishmentAddress property. + * + * @param value + * allowed object is + * {@link DutchBusinessAddressV3 } + * + */ + public void setEstablishmentAddress(DutchBusinessAddressV3 value) { + this.establishmentAddress = value; + } + + /** + * Gets the value of the longestServing property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isLongestServing() { + return longestServing; + } + + /** + * Sets the value of the longestServing property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setLongestServing(Boolean value) { + this.longestServing = value; + } + + /** + * Gets the value of the functionType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionType() { + return functionType; + } + + /** + * Sets the value of the functionType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionType(String value) { + this.functionType = value; + } + + /** + * Gets the value of the functionDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionDescription() { + return functionDescription; + } + + /** + * Sets the value of the functionDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionDescription(String value) { + this.functionDescription = value; + } + + /** + * Gets the value of the functionTitle property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionTitle() { + return functionTitle; + } + + /** + * Sets the value of the functionTitle property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionTitle(String value) { + this.functionTitle = value; + } + + /** + * Gets the value of the functionStartDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getFunctionStartDate() { + return functionStartDate; + } + + /** + * Sets the value of the functionStartDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setFunctionStartDate(DutchBusinessDateV3 value) { + this.functionStartDate = value; + } + + /** + * Gets the value of the functionRegistrationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getFunctionRegistrationDate() { + return functionRegistrationDate; + } + + /** + * Sets the value of the functionRegistrationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setFunctionRegistrationDate(DutchBusinessDateV3 value) { + this.functionRegistrationDate = value; + } + + /** + * Gets the value of the functionEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getFunctionEndDate() { + return functionEndDate; + } + + /** + * Sets the value of the functionEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setFunctionEndDate(DutchBusinessDateV3 value) { + this.functionEndDate = value; + } + + /** + * Gets the value of the functionAuthorization property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionAuthorization() { + return functionAuthorization; + } + + /** + * Sets the value of the functionAuthorization property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionAuthorization(String value) { + this.functionAuthorization = value; + } + + /** + * Gets the value of the functionAuthorizationDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionAuthorizationDescription() { + return functionAuthorizationDescription; + } + + /** + * Sets the value of the functionAuthorizationDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionAuthorizationDescription(String value) { + this.functionAuthorizationDescription = value; + } + + /** + * Gets the value of the functionAuthorizationStartDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getFunctionAuthorizationStartDate() { + return functionAuthorizationStartDate; + } + + /** + * Sets the value of the functionAuthorizationStartDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setFunctionAuthorizationStartDate(DutchBusinessDateV3 value) { + this.functionAuthorizationStartDate = value; + } + + /** + * Gets the value of the functionAuthorizationSigningPower property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionAuthorizationSigningPower() { + return functionAuthorizationSigningPower; + } + + /** + * Sets the value of the functionAuthorizationSigningPower property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionAuthorizationSigningPower(String value) { + this.functionAuthorizationSigningPower = value; + } + + /** + * Gets the value of the functionAuthorizationEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getFunctionAuthorizationEndDate() { + return functionAuthorizationEndDate; + } + + /** + * Sets the value of the functionAuthorizationEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setFunctionAuthorizationEndDate(DutchBusinessDateV3 value) { + this.functionAuthorizationEndDate = value; + } + + /** + * Gets the value of the authorizationDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAuthorizationDescription() { + return authorizationDescription; + } + + /** + * Sets the value of the authorizationDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAuthorizationDescription(String value) { + this.authorizationDescription = value; + } + + /** + * Gets the value of the authorizationEstablishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAuthorizationEstablishmentNumber() { + return authorizationEstablishmentNumber; + } + + /** + * Sets the value of the authorizationEstablishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAuthorizationEstablishmentNumber(String value) { + this.authorizationEstablishmentNumber = value; + } + + /** + * Gets the value of the authorizationStartDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getAuthorizationStartDate() { + return authorizationStartDate; + } + + /** + * Sets the value of the authorizationStartDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setAuthorizationStartDate(DutchBusinessDateV3 value) { + this.authorizationStartDate = value; + } + + /** + * Gets the value of the authorizationEndDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getAuthorizationEndDate() { + return authorizationEndDate; + } + + /** + * Sets the value of the authorizationEndDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setAuthorizationEndDate(DutchBusinessDateV3 value) { + this.authorizationEndDate = value; + } + + /** + * Gets the value of the authorizationConstraints property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getAuthorizationConstraints() { + return authorizationConstraints; + } + + /** + * Sets the value of the authorizationConstraints property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setAuthorizationConstraints(StringArray value) { + this.authorizationConstraints = value; + } + + /** + * Gets the value of the inauguration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInauguration() { + return inauguration; + } + + /** + * Sets the value of the inauguration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInauguration(String value) { + this.inauguration = value; + } + + /** + * Gets the value of the inaugurationFunction property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInaugurationFunction() { + return inaugurationFunction; + } + + /** + * Sets the value of the inaugurationFunction property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInaugurationFunction(String value) { + this.inaugurationFunction = value; + } + + /** + * Gets the value of the inaugurationDuration property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInaugurationDuration() { + return inaugurationDuration; + } + + /** + * Sets the value of the inaugurationDuration property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInaugurationDuration(String value) { + this.inaugurationDuration = value; + } + + /** + * Gets the value of the inaugurationDate property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getInaugurationDate() { + return inaugurationDate; + } + + /** + * Sets the value of the inaugurationDate property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setInaugurationDate(DutchBusinessDateV3 value) { + this.inaugurationDate = value; + } + + /** + * Gets the value of the inaugurationBody property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInaugurationBody() { + return inaugurationBody; + } + + /** + * Sets the value of the inaugurationBody property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInaugurationBody(String value) { + this.inaugurationBody = value; + } + + /** + * Gets the value of the underReceivership property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnderReceivership() { + return underReceivership; + } + + /** + * Sets the value of the underReceivership property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnderReceivership(String value) { + this.underReceivership = value; + } + + /** + * Gets the value of the rightsAgainstThirdParties property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRightsAgainstThirdParties() { + return rightsAgainstThirdParties; + } + + /** + * Sets the value of the rightsAgainstThirdParties property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRightsAgainstThirdParties(String value) { + this.rightsAgainstThirdParties = value; + } + + /** + * Gets the value of the releaseOfCovenant property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReleaseOfCovenant() { + return releaseOfCovenant; + } + + /** + * Sets the value of the releaseOfCovenant property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReleaseOfCovenant(String value) { + this.releaseOfCovenant = value; + } + + /** + * Gets the value of the dateSince property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getDateSince() { + return dateSince; + } + + /** + * Sets the value of the dateSince property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setDateSince(DutchBusinessDateV3 value) { + this.dateSince = value; + } + + /** + * Gets the value of the dateJoined property. + * + * @return + * possible object is + * {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 getDateJoined() { + return dateJoined; + } + + /** + * Sets the value of the dateJoined property. + * + * @param value + * allowed object is + * {@link DutchBusinessDateV3 } + * + */ + public void setDateJoined(DutchBusinessDateV3 value) { + this.dateJoined = value; + } + + /** + * Gets the value of the remarks property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getRemarks() { + return remarks; + } + + /** + * Sets the value of the remarks property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setRemarks(StringArray value) { + this.remarks = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV3Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV3Array.java new file mode 100644 index 0000000..6ba17a0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV3Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessPositionV3Array complex type. + * + *

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

+ * <complexType name="DutchBusinessPositionV3Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessPositionV3" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPositionV3Array", propOrder = { + "item" +}) +public class DutchBusinessPositionV3Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessPositionV3 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositions.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositions.java new file mode 100644 index 0000000..93608b2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositions.java @@ -0,0 +1,125 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessPositions complex type. + * + *

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

+ * <complexType name="DutchBusinessPositions">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="reference_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="positions" type="{http://www.webservices.nl/soap/}DutchBusinessPositionV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessPositions", propOrder = { + +}) +public class DutchBusinessPositions { + + @XmlElement(name = "dossier_number") + protected String dossierNumber; + @XmlElement(name = "reference_date") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar referenceDate; + protected DutchBusinessPositionV2Array positions; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the referenceDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getReferenceDate() { + return referenceDate; + } + + /** + * Sets the value of the referenceDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setReferenceDate(XMLGregorianCalendar value) { + this.referenceDate = value; + } + + /** + * Gets the value of the positions property. + * + * @return + * possible object is + * {@link DutchBusinessPositionV2Array } + * + */ + public DutchBusinessPositionV2Array getPositions() { + return positions; + } + + /** + * Sets the value of the positions property. + * + * @param value + * allowed object is + * {@link DutchBusinessPositionV2Array } + * + */ + public void setPositions(DutchBusinessPositionV2Array value) { + this.positions = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReference.java new file mode 100644 index 0000000..81e4ecc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReference.java @@ -0,0 +1,250 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessReference complex type. + * + *

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

+ * <complexType name="DutchBusinessReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="indication_economically_active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessReference", propOrder = { + +}) +public class DutchBusinessReference { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(name = "trade_name", required = true) + protected String tradeName; + @XmlElement(name = "establishment_city", required = true) + protected String establishmentCity; + @XmlElement(name = "establishment_street", required = true) + protected String establishmentStreet; + @XmlElement(name = "correspondence_city", required = true) + protected String correspondenceCity; + @XmlElement(name = "correspondence_street", required = true) + protected String correspondenceStreet; + @XmlElement(name = "indication_economically_active") + protected boolean indicationEconomicallyActive; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the tradeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName() { + return tradeName; + } + + /** + * Sets the value of the tradeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName(String value) { + this.tradeName = value; + } + + /** + * Gets the value of the establishmentCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCity() { + return establishmentCity; + } + + /** + * Sets the value of the establishmentCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCity(String value) { + this.establishmentCity = value; + } + + /** + * Gets the value of the establishmentStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentStreet() { + return establishmentStreet; + } + + /** + * Sets the value of the establishmentStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentStreet(String value) { + this.establishmentStreet = value; + } + + /** + * Gets the value of the correspondenceCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCity() { + return correspondenceCity; + } + + /** + * Sets the value of the correspondenceCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCity(String value) { + this.correspondenceCity = value; + } + + /** + * Gets the value of the correspondenceStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceStreet() { + return correspondenceStreet; + } + + /** + * Sets the value of the correspondenceStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceStreet(String value) { + this.correspondenceStreet = value; + } + + /** + * Gets the value of the indicationEconomicallyActive property. + * + */ + public boolean isIndicationEconomicallyActive() { + return indicationEconomicallyActive; + } + + /** + * Sets the value of the indicationEconomicallyActive property. + * + */ + public void setIndicationEconomicallyActive(boolean value) { + this.indicationEconomicallyActive = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceArray.java new file mode 100644 index 0000000..f4dbb24 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessReferenceArray complex type. + * + *

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

+ * <complexType name="DutchBusinessReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessReferenceArray", propOrder = { + "item" +}) +public class DutchBusinessReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferencePagedResult.java new file mode 100644 index 0000000..939b0d5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferencePagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessReferencePagedResult complex type. + * + *

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

+ * <complexType name="DutchBusinessReferencePagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}DutchBusinessReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessReferencePagedResult", propOrder = { + +}) +public class DutchBusinessReferencePagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected DutchBusinessReferenceArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link DutchBusinessReferenceArray } + * + */ + public DutchBusinessReferenceArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link DutchBusinessReferenceArray } + * + */ + public void setResults(DutchBusinessReferenceArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2.java new file mode 100644 index 0000000..03f1520 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2.java @@ -0,0 +1,277 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessReferenceV2 complex type. + * + *

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

+ * <complexType name="DutchBusinessReferenceV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="match_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="indication_economically_active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessReferenceV2", propOrder = { + +}) +public class DutchBusinessReferenceV2 { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(required = true) + protected String name; + @XmlElement(name = "match_type") + protected String matchType; + @XmlElement(name = "establishment_city", required = true) + protected String establishmentCity; + @XmlElement(name = "establishment_street", required = true) + protected String establishmentStreet; + @XmlElement(name = "correspondence_city", required = true) + protected String correspondenceCity; + @XmlElement(name = "correspondence_street", required = true) + protected String correspondenceStreet; + @XmlElement(name = "indication_economically_active") + protected boolean indicationEconomicallyActive; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the matchType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMatchType() { + return matchType; + } + + /** + * Sets the value of the matchType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMatchType(String value) { + this.matchType = value; + } + + /** + * Gets the value of the establishmentCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCity() { + return establishmentCity; + } + + /** + * Sets the value of the establishmentCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCity(String value) { + this.establishmentCity = value; + } + + /** + * Gets the value of the establishmentStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentStreet() { + return establishmentStreet; + } + + /** + * Sets the value of the establishmentStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentStreet(String value) { + this.establishmentStreet = value; + } + + /** + * Gets the value of the correspondenceCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCity() { + return correspondenceCity; + } + + /** + * Sets the value of the correspondenceCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCity(String value) { + this.correspondenceCity = value; + } + + /** + * Gets the value of the correspondenceStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceStreet() { + return correspondenceStreet; + } + + /** + * Sets the value of the correspondenceStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceStreet(String value) { + this.correspondenceStreet = value; + } + + /** + * Gets the value of the indicationEconomicallyActive property. + * + */ + public boolean isIndicationEconomicallyActive() { + return indicationEconomicallyActive; + } + + /** + * Sets the value of the indicationEconomicallyActive property. + * + */ + public void setIndicationEconomicallyActive(boolean value) { + this.indicationEconomicallyActive = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2Array.java new file mode 100644 index 0000000..9ea9a28 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessReferenceV2Array complex type. + * + *

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

+ * <complexType name="DutchBusinessReferenceV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessReferenceV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessReferenceV2Array", propOrder = { + "item" +}) +public class DutchBusinessReferenceV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessReferenceV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2PagedResult.java new file mode 100644 index 0000000..2705a5c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2PagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessReferenceV2PagedResult complex type. + * + *

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

+ * <complexType name="DutchBusinessReferenceV2PagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}DutchBusinessReferenceV2Array"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessReferenceV2PagedResult", propOrder = { + +}) +public class DutchBusinessReferenceV2PagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected DutchBusinessReferenceV2Array results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link DutchBusinessReferenceV2Array } + * + */ + public DutchBusinessReferenceV2Array getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link DutchBusinessReferenceV2Array } + * + */ + public void setResults(DutchBusinessReferenceV2Array value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICode.java new file mode 100644 index 0000000..4cc4beb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICode.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessSBICode complex type. + * + *

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

+ * <complexType name="DutchBusinessSBICode">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="sbi_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessSBICode", propOrder = { + +}) +public class DutchBusinessSBICode { + + @XmlElement(name = "sbi_code", required = true) + protected String sbiCode; + @XmlElement(required = true) + protected String description; + + /** + * Gets the value of the sbiCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSbiCode() { + return sbiCode; + } + + /** + * Sets the value of the sbiCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSbiCode(String value) { + this.sbiCode = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICodeArray.java new file mode 100644 index 0000000..6c480b8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICodeArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessSBICodeArray complex type. + * + *

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

+ * <complexType name="DutchBusinessSBICodeArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessSBICode" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessSBICodeArray", propOrder = { + "item" +}) +public class DutchBusinessSBICodeArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessSBICode } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICodeInfo.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICodeInfo.java new file mode 100644 index 0000000..6c5f2af --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICodeInfo.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessSBICodeInfo complex type. + * + *

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

+ * <complexType name="DutchBusinessSBICodeInfo">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="section" type="{http://www.webservices.nl/soap/}DutchBusinessSBISection"/>
+ *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}DutchBusinessSBICodeArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessSBICodeInfo", propOrder = { + +}) +public class DutchBusinessSBICodeInfo { + + @XmlElement(required = true) + protected DutchBusinessSBISection section; + @XmlElement(name = "sbi_codes", required = true) + protected DutchBusinessSBICodeArray sbiCodes; + + /** + * Gets the value of the section property. + * + * @return + * possible object is + * {@link DutchBusinessSBISection } + * + */ + public DutchBusinessSBISection getSection() { + return section; + } + + /** + * Sets the value of the section property. + * + * @param value + * allowed object is + * {@link DutchBusinessSBISection } + * + */ + public void setSection(DutchBusinessSBISection value) { + this.section = value; + } + + /** + * Gets the value of the sbiCodes property. + * + * @return + * possible object is + * {@link DutchBusinessSBICodeArray } + * + */ + public DutchBusinessSBICodeArray getSbiCodes() { + return sbiCodes; + } + + /** + * Sets the value of the sbiCodes property. + * + * @param value + * allowed object is + * {@link DutchBusinessSBICodeArray } + * + */ + public void setSbiCodes(DutchBusinessSBICodeArray value) { + this.sbiCodes = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICollection.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICollection.java new file mode 100644 index 0000000..b1acf32 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICollection.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessSBICollection complex type. + * + *

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

+ * <complexType name="DutchBusinessSBICollection">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="original" type="{http://www.webservices.nl/soap/}DutchBusinessSBICodeArray"/>
+ *         <element name="company_info" type="{http://www.webservices.nl/soap/}DutchBusinessSBICodeArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessSBICollection", propOrder = { + +}) +public class DutchBusinessSBICollection { + + @XmlElement(required = true) + protected DutchBusinessSBICodeArray original; + @XmlElement(name = "company_info") + protected DutchBusinessSBICodeArray companyInfo; + + /** + * Gets the value of the original property. + * + * @return + * possible object is + * {@link DutchBusinessSBICodeArray } + * + */ + public DutchBusinessSBICodeArray getOriginal() { + return original; + } + + /** + * Sets the value of the original property. + * + * @param value + * allowed object is + * {@link DutchBusinessSBICodeArray } + * + */ + public void setOriginal(DutchBusinessSBICodeArray value) { + this.original = value; + } + + /** + * Gets the value of the companyInfo property. + * + * @return + * possible object is + * {@link DutchBusinessSBICodeArray } + * + */ + public DutchBusinessSBICodeArray getCompanyInfo() { + return companyInfo; + } + + /** + * Sets the value of the companyInfo property. + * + * @param value + * allowed object is + * {@link DutchBusinessSBICodeArray } + * + */ + public void setCompanyInfo(DutchBusinessSBICodeArray value) { + this.companyInfo = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICollectionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICollectionArray.java new file mode 100644 index 0000000..e36e84f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICollectionArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessSBICollectionArray complex type. + * + *

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

+ * <complexType name="DutchBusinessSBICollectionArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessSBICollection" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessSBICollectionArray", propOrder = { + "item" +}) +public class DutchBusinessSBICollectionArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessSBICollection } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBISection.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBISection.java new file mode 100644 index 0000000..5e63bfb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBISection.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessSBISection complex type. + * + *

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

+ * <complexType name="DutchBusinessSBISection">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="section_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessSBISection", propOrder = { + +}) +public class DutchBusinessSBISection { + + @XmlElement(name = "section_code", required = true) + protected String sectionCode; + @XmlElement(required = true) + protected String description; + + /** + * Gets the value of the sectionCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectionCode() { + return sectionCode; + } + + /** + * Sets the value of the sectionCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectionCode(String value) { + this.sectionCode = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV2.java new file mode 100644 index 0000000..ad74689 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV2.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessSbiCodeV2 complex type. + * + *

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

+ * <complexType name="DutchBusinessSbiCodeV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="sbi_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessSbiCodeV2", propOrder = { + +}) +public class DutchBusinessSbiCodeV2 { + + @XmlElement(name = "sbi_code") + protected String sbiCode; + protected String description; + + /** + * Gets the value of the sbiCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSbiCode() { + return sbiCode; + } + + /** + * Sets the value of the sbiCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSbiCode(String value) { + this.sbiCode = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV2Array.java new file mode 100644 index 0000000..731ce93 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessSbiCodeV2Array complex type. + * + *

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

+ * <complexType name="DutchBusinessSbiCodeV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessSbiCodeV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessSbiCodeV2Array", propOrder = { + "item" +}) +public class DutchBusinessSbiCodeV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessSbiCodeV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV3.java new file mode 100644 index 0000000..ccd0ab3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV3.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessSbiCodeV3 complex type. + * + *

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

+ * <complexType name="DutchBusinessSbiCodeV3">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="sbi_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessSbiCodeV3", propOrder = { + +}) +public class DutchBusinessSbiCodeV3 { + + @XmlElement(name = "sbi_code") + protected String sbiCode; + protected String description; + + /** + * Gets the value of the sbiCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSbiCode() { + return sbiCode; + } + + /** + * Sets the value of the sbiCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSbiCode(String value) { + this.sbiCode = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV3Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV3Array.java new file mode 100644 index 0000000..38cde44 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV3Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessSbiCodeV3Array complex type. + * + *

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

+ * <complexType name="DutchBusinessSbiCodeV3Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessSbiCodeV3" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessSbiCodeV3Array", propOrder = { + "item" +}) +public class DutchBusinessSbiCodeV3Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessSbiCodeV3 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchDossierNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchDossierNumberRequestType.java new file mode 100644 index 0000000..7fed302 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchDossierNumberRequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchDossierNumberRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchDossierNumberRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchDossierNumberRequestType", propOrder = { + +}) +public class DutchBusinessSearchDossierNumberRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number", required = true) + protected String establishmentNumber; + @XmlElement(name = "rsin_number", required = true) + protected String rsinNumber; + protected int page; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the rsinNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsinNumber() { + return rsinNumber; + } + + /** + * Sets the value of the rsinNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsinNumber(String value) { + this.rsinNumber = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchDossierNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchDossierNumberResponseType.java new file mode 100644 index 0000000..73bbd5b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchDossierNumberResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchDossierNumberResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchDossierNumberResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchDossierNumberResponseType", propOrder = { + +}) +public class DutchBusinessSearchDossierNumberResponseType { + + @XmlElement(required = true) + protected DutchBusinessReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessReferencePagedResult } + * + */ + public DutchBusinessReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessReferencePagedResult } + * + */ + public void setOut(DutchBusinessReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchEstablishmentsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchEstablishmentsRequestType.java new file mode 100644 index 0000000..661e001 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchEstablishmentsRequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchEstablishmentsRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchEstablishmentsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchEstablishmentsRequestType", propOrder = { + +}) +public class DutchBusinessSearchEstablishmentsRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number", required = true) + protected String establishmentNumber; + @XmlElement(name = "rsin_number", required = true) + protected String rsinNumber; + protected int page; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the rsinNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsinNumber() { + return rsinNumber; + } + + /** + * Sets the value of the rsinNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsinNumber(String value) { + this.rsinNumber = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchEstablishmentsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchEstablishmentsResponseType.java new file mode 100644 index 0000000..de64edf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchEstablishmentsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchEstablishmentsResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchEstablishmentsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchEstablishmentsResponseType", propOrder = { + +}) +public class DutchBusinessSearchEstablishmentsResponseType { + + @XmlElement(required = true) + protected DutchBusinessEstablishmentReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessEstablishmentReferencePagedResult } + * + */ + public DutchBusinessEstablishmentReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessEstablishmentReferencePagedResult } + * + */ + public void setOut(DutchBusinessEstablishmentReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchNewsByDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchNewsByDossierRequestType.java new file mode 100644 index 0000000..53404d7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchNewsByDossierRequestType.java @@ -0,0 +1,172 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for dutchBusinessSearchNewsByDossierRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchNewsByDossierRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="period_start" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="period_end" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="sort_order" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchNewsByDossierRequestType", propOrder = { + +}) +public class DutchBusinessSearchNewsByDossierRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "period_start", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar periodStart; + @XmlElement(name = "period_end", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar periodEnd; + @XmlElement(name = "sort_order", required = true) + protected String sortOrder; + protected int page; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the periodStart property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPeriodStart() { + return periodStart; + } + + /** + * Sets the value of the periodStart property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPeriodStart(XMLGregorianCalendar value) { + this.periodStart = value; + } + + /** + * Gets the value of the periodEnd property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPeriodEnd() { + return periodEnd; + } + + /** + * Sets the value of the periodEnd property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPeriodEnd(XMLGregorianCalendar value) { + this.periodEnd = value; + } + + /** + * Gets the value of the sortOrder property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSortOrder() { + return sortOrder; + } + + /** + * Sets the value of the sortOrder property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSortOrder(String value) { + this.sortOrder = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchNewsByDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchNewsByDossierResponseType.java new file mode 100644 index 0000000..ea9a276 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchNewsByDossierResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchNewsByDossierResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchNewsByDossierResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessNewsItemPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchNewsByDossierResponseType", propOrder = { + +}) +public class DutchBusinessSearchNewsByDossierResponseType { + + @XmlElement(required = true) + protected DutchBusinessNewsItemPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessNewsItemPagedResult } + * + */ + public DutchBusinessNewsItemPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessNewsItemPagedResult } + * + */ + public void setOut(DutchBusinessNewsItemPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersRequestType.java new file mode 100644 index 0000000..1facdf5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersRequestType.java @@ -0,0 +1,287 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchParametersRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchParametersRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="domain_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="strict_search" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchParametersRequestType", propOrder = { + +}) +public class DutchBusinessSearchParametersRequestType { + + @XmlElement(name = "trade_name", required = true) + protected String tradeName; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String street; + @XmlElement(required = true) + protected String postcode; + @XmlElement(name = "house_number") + protected int houseNumber; + @XmlElement(name = "house_number_addition", required = true) + protected String houseNumberAddition; + @XmlElement(name = "telephone_number", required = true) + protected String telephoneNumber; + @XmlElement(name = "domain_name", required = true) + protected String domainName; + @XmlElement(name = "strict_search") + protected boolean strictSearch; + protected int page; + + /** + * Gets the value of the tradeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName() { + return tradeName; + } + + /** + * Sets the value of the tradeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName(String value) { + this.tradeName = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the houseNumber property. + * + */ + public int getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + */ + public void setHouseNumber(int value) { + this.houseNumber = value; + } + + /** + * Gets the value of the houseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNumberAddition() { + return houseNumberAddition; + } + + /** + * Sets the value of the houseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNumberAddition(String value) { + this.houseNumberAddition = value; + } + + /** + * Gets the value of the telephoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNumber() { + return telephoneNumber; + } + + /** + * Sets the value of the telephoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNumber(String value) { + this.telephoneNumber = value; + } + + /** + * Gets the value of the domainName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDomainName() { + return domainName; + } + + /** + * Sets the value of the domainName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDomainName(String value) { + this.domainName = value; + } + + /** + * Gets the value of the strictSearch property. + * + */ + public boolean isStrictSearch() { + return strictSearch; + } + + /** + * Sets the value of the strictSearch property. + * + */ + public void setStrictSearch(boolean value) { + this.strictSearch = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersResponseType.java new file mode 100644 index 0000000..88cbdc2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchParametersResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchParametersResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchParametersResponseType", propOrder = { + +}) +public class DutchBusinessSearchParametersResponseType { + + @XmlElement(required = true) + protected DutchBusinessReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessReferencePagedResult } + * + */ + public DutchBusinessReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessReferencePagedResult } + * + */ + public void setOut(DutchBusinessReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersV2RequestType.java new file mode 100644 index 0000000..1c9a3bd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersV2RequestType.java @@ -0,0 +1,287 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchParametersV2RequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchParametersV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="domain_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="strict_search" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchParametersV2RequestType", propOrder = { + +}) +public class DutchBusinessSearchParametersV2RequestType { + + @XmlElement(name = "trade_name", required = true) + protected String tradeName; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String street; + @XmlElement(required = true) + protected String postcode; + @XmlElement(name = "house_number") + protected int houseNumber; + @XmlElement(name = "house_number_addition", required = true) + protected String houseNumberAddition; + @XmlElement(name = "telephone_number", required = true) + protected String telephoneNumber; + @XmlElement(name = "domain_name", required = true) + protected String domainName; + @XmlElement(name = "strict_search") + protected boolean strictSearch; + protected int page; + + /** + * Gets the value of the tradeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName() { + return tradeName; + } + + /** + * Sets the value of the tradeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName(String value) { + this.tradeName = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the houseNumber property. + * + */ + public int getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + */ + public void setHouseNumber(int value) { + this.houseNumber = value; + } + + /** + * Gets the value of the houseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNumberAddition() { + return houseNumberAddition; + } + + /** + * Sets the value of the houseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNumberAddition(String value) { + this.houseNumberAddition = value; + } + + /** + * Gets the value of the telephoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNumber() { + return telephoneNumber; + } + + /** + * Sets the value of the telephoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNumber(String value) { + this.telephoneNumber = value; + } + + /** + * Gets the value of the domainName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDomainName() { + return domainName; + } + + /** + * Sets the value of the domainName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDomainName(String value) { + this.domainName = value; + } + + /** + * Gets the value of the strictSearch property. + * + */ + public boolean isStrictSearch() { + return strictSearch; + } + + /** + * Sets the value of the strictSearch property. + * + */ + public void setStrictSearch(boolean value) { + this.strictSearch = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersV2ResponseType.java new file mode 100644 index 0000000..8d441a3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchParametersV2ResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchParametersV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessReferenceV2PagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchParametersV2ResponseType", propOrder = { + +}) +public class DutchBusinessSearchParametersV2ResponseType { + + @XmlElement(required = true) + protected DutchBusinessReferenceV2PagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessReferenceV2PagedResult } + * + */ + public DutchBusinessReferenceV2PagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessReferenceV2PagedResult } + * + */ + public void setOut(DutchBusinessReferenceV2PagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchPostcodeRequestType.java new file mode 100644 index 0000000..ce076f7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchPostcodeRequestType.java @@ -0,0 +1,133 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchPostcodeRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchPostcodeRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchPostcodeRequestType", propOrder = { + +}) +public class DutchBusinessSearchPostcodeRequestType { + + @XmlElement(required = true) + protected String postcode; + @XmlElement(name = "house_number") + protected int houseNumber; + @XmlElement(name = "house_number_addition", required = true) + protected String houseNumberAddition; + protected int page; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the houseNumber property. + * + */ + public int getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + */ + public void setHouseNumber(int value) { + this.houseNumber = value; + } + + /** + * Gets the value of the houseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNumberAddition() { + return houseNumberAddition; + } + + /** + * Sets the value of the houseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNumberAddition(String value) { + this.houseNumberAddition = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchPostcodeResponseType.java new file mode 100644 index 0000000..cc2b011 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchPostcodeResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchPostcodeResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchPostcodeResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchPostcodeResponseType", propOrder = { + +}) +public class DutchBusinessSearchPostcodeResponseType { + + @XmlElement(required = true) + protected DutchBusinessReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessReferencePagedResult } + * + */ + public DutchBusinessReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessReferencePagedResult } + * + */ + public void setOut(DutchBusinessReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchRequestType.java new file mode 100644 index 0000000..e16f835 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchRequestType.java @@ -0,0 +1,314 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="domain_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="strict_search" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchRequestType", propOrder = { + +}) +public class DutchBusinessSearchRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "trade_name", required = true) + protected String tradeName; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String street; + @XmlElement(required = true) + protected String postcode; + @XmlElement(name = "house_number") + protected int houseNumber; + @XmlElement(name = "house_number_addition", required = true) + protected String houseNumberAddition; + @XmlElement(name = "telephone_number", required = true) + protected String telephoneNumber; + @XmlElement(name = "domain_name", required = true) + protected String domainName; + @XmlElement(name = "strict_search") + protected boolean strictSearch; + protected int page; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the tradeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName() { + return tradeName; + } + + /** + * Sets the value of the tradeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName(String value) { + this.tradeName = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the houseNumber property. + * + */ + public int getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + */ + public void setHouseNumber(int value) { + this.houseNumber = value; + } + + /** + * Gets the value of the houseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNumberAddition() { + return houseNumberAddition; + } + + /** + * Sets the value of the houseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNumberAddition(String value) { + this.houseNumberAddition = value; + } + + /** + * Gets the value of the telephoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNumber() { + return telephoneNumber; + } + + /** + * Sets the value of the telephoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNumber(String value) { + this.telephoneNumber = value; + } + + /** + * Gets the value of the domainName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDomainName() { + return domainName; + } + + /** + * Sets the value of the domainName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDomainName(String value) { + this.domainName = value; + } + + /** + * Gets the value of the strictSearch property. + * + */ + public boolean isStrictSearch() { + return strictSearch; + } + + /** + * Sets the value of the strictSearch property. + * + */ + public void setStrictSearch(boolean value) { + this.strictSearch = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchResponseType.java new file mode 100644 index 0000000..a685e54 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchResponseType", propOrder = { + +}) +public class DutchBusinessSearchResponseType { + + @XmlElement(required = true) + protected DutchBusinessEstablishmentReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessEstablishmentReferencePagedResult } + * + */ + public DutchBusinessEstablishmentReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessEstablishmentReferencePagedResult } + * + */ + public void setOut(DutchBusinessEstablishmentReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionRequestType.java new file mode 100644 index 0000000..f179d43 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionRequestType.java @@ -0,0 +1,387 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchSelectionRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchSelectionRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="city" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="postcode" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="sbi" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="primary_sbi_only" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="legal_form" type="{http://www.webservices.nl/soap/}intArray"/>
+ *         <element name="employees_min" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="employees_max" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="economically_active" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="financial_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="new_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="provinces" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="sbi_match_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchSelectionRequestType", propOrder = { + +}) +public class DutchBusinessSearchSelectionRequestType { + + @XmlElement(required = true) + protected StringArray city; + @XmlElement(required = true) + protected StringArray postcode; + @XmlElement(required = true) + protected StringArray sbi; + @XmlElement(name = "primary_sbi_only") + protected boolean primarySbiOnly; + @XmlElement(name = "legal_form", required = true) + protected IntArray legalForm; + @XmlElement(name = "employees_min") + protected int employeesMin; + @XmlElement(name = "employees_max") + protected int employeesMax; + @XmlElement(name = "economically_active", required = true) + protected String economicallyActive; + @XmlElement(name = "financial_status", required = true) + protected String financialStatus; + @XmlElement(name = "changed_since", required = true) + protected String changedSince; + @XmlElement(name = "new_since", required = true) + protected String newSince; + protected int page; + @XmlElement(required = true) + protected StringArray provinces; + @XmlElement(name = "sbi_match_type", required = true) + protected String sbiMatchType; + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setCity(StringArray value) { + this.city = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setPostcode(StringArray value) { + this.postcode = value; + } + + /** + * Gets the value of the sbi property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getSbi() { + return sbi; + } + + /** + * Sets the value of the sbi property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setSbi(StringArray value) { + this.sbi = value; + } + + /** + * Gets the value of the primarySbiOnly property. + * + */ + public boolean isPrimarySbiOnly() { + return primarySbiOnly; + } + + /** + * Sets the value of the primarySbiOnly property. + * + */ + public void setPrimarySbiOnly(boolean value) { + this.primarySbiOnly = value; + } + + /** + * Gets the value of the legalForm property. + * + * @return + * possible object is + * {@link IntArray } + * + */ + public IntArray getLegalForm() { + return legalForm; + } + + /** + * Sets the value of the legalForm property. + * + * @param value + * allowed object is + * {@link IntArray } + * + */ + public void setLegalForm(IntArray value) { + this.legalForm = value; + } + + /** + * Gets the value of the employeesMin property. + * + */ + public int getEmployeesMin() { + return employeesMin; + } + + /** + * Sets the value of the employeesMin property. + * + */ + public void setEmployeesMin(int value) { + this.employeesMin = value; + } + + /** + * Gets the value of the employeesMax property. + * + */ + public int getEmployeesMax() { + return employeesMax; + } + + /** + * Sets the value of the employeesMax property. + * + */ + public void setEmployeesMax(int value) { + this.employeesMax = value; + } + + /** + * Gets the value of the economicallyActive property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEconomicallyActive() { + return economicallyActive; + } + + /** + * Sets the value of the economicallyActive property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEconomicallyActive(String value) { + this.economicallyActive = value; + } + + /** + * Gets the value of the financialStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFinancialStatus() { + return financialStatus; + } + + /** + * Sets the value of the financialStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFinancialStatus(String value) { + this.financialStatus = value; + } + + /** + * Gets the value of the changedSince property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getChangedSince() { + return changedSince; + } + + /** + * Sets the value of the changedSince property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setChangedSince(String value) { + this.changedSince = value; + } + + /** + * Gets the value of the newSince property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNewSince() { + return newSince; + } + + /** + * Sets the value of the newSince property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNewSince(String value) { + this.newSince = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + + /** + * Gets the value of the provinces property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getProvinces() { + return provinces; + } + + /** + * Sets the value of the provinces property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setProvinces(StringArray value) { + this.provinces = value; + } + + /** + * Gets the value of the sbiMatchType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSbiMatchType() { + return sbiMatchType; + } + + /** + * Sets the value of the sbiMatchType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSbiMatchType(String value) { + this.sbiMatchType = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionResponseType.java new file mode 100644 index 0000000..3455ea2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchSelectionResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchSelectionResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchSelectionResponseType", propOrder = { + +}) +public class DutchBusinessSearchSelectionResponseType { + + @XmlElement(required = true) + protected DutchBusinessReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessReferencePagedResult } + * + */ + public DutchBusinessReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessReferencePagedResult } + * + */ + public void setOut(DutchBusinessReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionSimpleRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionSimpleRequestType.java new file mode 100644 index 0000000..81efec0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionSimpleRequestType.java @@ -0,0 +1,360 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchSelectionSimpleRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchSelectionSimpleRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="city" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="postcode" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="sbi" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="primary_sbi_only" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="legal_form" type="{http://www.webservices.nl/soap/}intArray"/>
+ *         <element name="employees_min" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="employees_max" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="economically_active" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="financial_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="new_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="provinces" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchSelectionSimpleRequestType", propOrder = { + +}) +public class DutchBusinessSearchSelectionSimpleRequestType { + + @XmlElement(required = true) + protected StringArray city; + @XmlElement(required = true) + protected StringArray postcode; + @XmlElement(required = true) + protected StringArray sbi; + @XmlElement(name = "primary_sbi_only") + protected boolean primarySbiOnly; + @XmlElement(name = "legal_form", required = true) + protected IntArray legalForm; + @XmlElement(name = "employees_min") + protected int employeesMin; + @XmlElement(name = "employees_max") + protected int employeesMax; + @XmlElement(name = "economically_active", required = true) + protected String economicallyActive; + @XmlElement(name = "financial_status", required = true) + protected String financialStatus; + @XmlElement(name = "changed_since", required = true) + protected String changedSince; + @XmlElement(name = "new_since", required = true) + protected String newSince; + protected int page; + @XmlElement(required = true) + protected StringArray provinces; + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setCity(StringArray value) { + this.city = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setPostcode(StringArray value) { + this.postcode = value; + } + + /** + * Gets the value of the sbi property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getSbi() { + return sbi; + } + + /** + * Sets the value of the sbi property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setSbi(StringArray value) { + this.sbi = value; + } + + /** + * Gets the value of the primarySbiOnly property. + * + */ + public boolean isPrimarySbiOnly() { + return primarySbiOnly; + } + + /** + * Sets the value of the primarySbiOnly property. + * + */ + public void setPrimarySbiOnly(boolean value) { + this.primarySbiOnly = value; + } + + /** + * Gets the value of the legalForm property. + * + * @return + * possible object is + * {@link IntArray } + * + */ + public IntArray getLegalForm() { + return legalForm; + } + + /** + * Sets the value of the legalForm property. + * + * @param value + * allowed object is + * {@link IntArray } + * + */ + public void setLegalForm(IntArray value) { + this.legalForm = value; + } + + /** + * Gets the value of the employeesMin property. + * + */ + public int getEmployeesMin() { + return employeesMin; + } + + /** + * Sets the value of the employeesMin property. + * + */ + public void setEmployeesMin(int value) { + this.employeesMin = value; + } + + /** + * Gets the value of the employeesMax property. + * + */ + public int getEmployeesMax() { + return employeesMax; + } + + /** + * Sets the value of the employeesMax property. + * + */ + public void setEmployeesMax(int value) { + this.employeesMax = value; + } + + /** + * Gets the value of the economicallyActive property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEconomicallyActive() { + return economicallyActive; + } + + /** + * Sets the value of the economicallyActive property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEconomicallyActive(String value) { + this.economicallyActive = value; + } + + /** + * Gets the value of the financialStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFinancialStatus() { + return financialStatus; + } + + /** + * Sets the value of the financialStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFinancialStatus(String value) { + this.financialStatus = value; + } + + /** + * Gets the value of the changedSince property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getChangedSince() { + return changedSince; + } + + /** + * Sets the value of the changedSince property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setChangedSince(String value) { + this.changedSince = value; + } + + /** + * Gets the value of the newSince property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNewSince() { + return newSince; + } + + /** + * Sets the value of the newSince property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNewSince(String value) { + this.newSince = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + + /** + * Gets the value of the provinces property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getProvinces() { + return provinces; + } + + /** + * Sets the value of the provinces property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setProvinces(StringArray value) { + this.provinces = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionSimpleResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionSimpleResponseType.java new file mode 100644 index 0000000..8edacc4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionSimpleResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessSearchSelectionSimpleResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessSearchSelectionSimpleResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessSearchSelectionSimpleResponseType", propOrder = { + +}) +public class DutchBusinessSearchSelectionSimpleResponseType { + + @XmlElement(required = true) + protected DutchBusinessReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessReferencePagedResult } + * + */ + public DutchBusinessReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessReferencePagedResult } + * + */ + public void setOut(DutchBusinessReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessStructure.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessStructure.java new file mode 100644 index 0000000..4f9c752 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessStructure.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessStructure complex type. + * + *

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

+ * <complexType name="DutchBusinessStructure">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="ultimate_parent" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="number_of_subsidiaries" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="parent" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessStructure", propOrder = { + +}) +public class DutchBusinessStructure { + + @XmlElement(name = "ultimate_parent") + protected String ultimateParent; + @XmlElement(name = "number_of_subsidiaries") + protected Integer numberOfSubsidiaries; + protected String parent; + + /** + * Gets the value of the ultimateParent property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUltimateParent() { + return ultimateParent; + } + + /** + * Sets the value of the ultimateParent property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUltimateParent(String value) { + this.ultimateParent = value; + } + + /** + * Gets the value of the numberOfSubsidiaries property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getNumberOfSubsidiaries() { + return numberOfSubsidiaries; + } + + /** + * Sets the value of the numberOfSubsidiaries property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setNumberOfSubsidiaries(Integer value) { + this.numberOfSubsidiaries = value; + } + + /** + * Gets the value of the parent property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getParent() { + return parent; + } + + /** + * Sets the value of the parent property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setParent(String value) { + this.parent = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCheckInvestigationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCheckInvestigationRequestType.java new file mode 100644 index 0000000..bb68988 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCheckInvestigationRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUBOCheckInvestigationRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessUBOCheckInvestigationRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUBOCheckInvestigationRequestType", propOrder = { + +}) +public class DutchBusinessUBOCheckInvestigationRequestType { + + @XmlElement(required = true) + protected String token; + + /** + * Gets the value of the token property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToken() { + return token; + } + + /** + * Sets the value of the token property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToken(String value) { + this.token = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCheckInvestigationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCheckInvestigationResponseType.java new file mode 100644 index 0000000..00083d4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCheckInvestigationResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUBOCheckInvestigationResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessUBOCheckInvestigationResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessUBOInvestigationStatus"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUBOCheckInvestigationResponseType", propOrder = { + +}) +public class DutchBusinessUBOCheckInvestigationResponseType { + + @XmlElement(required = true) + protected DutchBusinessUBOInvestigationStatus out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessUBOInvestigationStatus } + * + */ + public DutchBusinessUBOInvestigationStatus getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBOInvestigationStatus } + * + */ + public void setOut(DutchBusinessUBOInvestigationStatus value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassificationResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassificationResult.java new file mode 100644 index 0000000..598f763 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassificationResult.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUBOClassificationResult complex type. + * + *

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

+ * <complexType name="DutchBusinessUBOClassificationResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="scenario" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="suspects" type="{http://www.webservices.nl/soap/}DutchBusinessUBOClassifiedSuspectArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOClassificationResult", propOrder = { + +}) +public class DutchBusinessUBOClassificationResult { + + @XmlElement(required = true) + protected String token; + @XmlElement(required = true) + protected String scenario; + @XmlElement(required = true) + protected DutchBusinessUBOClassifiedSuspectArray suspects; + + /** + * Gets the value of the token property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToken() { + return token; + } + + /** + * Sets the value of the token property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToken(String value) { + this.token = value; + } + + /** + * Gets the value of the scenario property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getScenario() { + return scenario; + } + + /** + * Sets the value of the scenario property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setScenario(String value) { + this.scenario = value; + } + + /** + * Gets the value of the suspects property. + * + * @return + * possible object is + * {@link DutchBusinessUBOClassifiedSuspectArray } + * + */ + public DutchBusinessUBOClassifiedSuspectArray getSuspects() { + return suspects; + } + + /** + * Sets the value of the suspects property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBOClassifiedSuspectArray } + * + */ + public void setSuspects(DutchBusinessUBOClassifiedSuspectArray value) { + this.suspects = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedPerson.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedPerson.java new file mode 100644 index 0000000..94293f6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedPerson.java @@ -0,0 +1,126 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessUBOClassifiedPerson complex type. + * + *

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

+ * <complexType name="DutchBusinessUBOClassifiedPerson">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOClassifiedPerson", propOrder = { + +}) +public class DutchBusinessUBOClassifiedPerson { + + @XmlElement(name = "first_name") + protected String firstName; + @XmlElement(name = "last_name") + protected String lastName; + @XmlElement(name = "date_of_birth") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateOfBirth; + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the dateOfBirth property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfBirth() { + return dateOfBirth; + } + + /** + * Sets the value of the dateOfBirth property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfBirth(XMLGregorianCalendar value) { + this.dateOfBirth = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedRole.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedRole.java new file mode 100644 index 0000000..8b81f05 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedRole.java @@ -0,0 +1,149 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUBOClassifiedRole complex type. + * + *

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

+ * <complexType name="DutchBusinessUBOClassifiedRole">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="organisation_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOClassifiedRole", propOrder = { + +}) +public class DutchBusinessUBOClassifiedRole { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "organisation_name", required = true) + protected String organisationName; + protected String title; + @XmlElement(name = "function_type", required = true) + protected String functionType; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the organisationName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOrganisationName() { + return organisationName; + } + + /** + * Sets the value of the organisationName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOrganisationName(String value) { + this.organisationName = value; + } + + /** + * Gets the value of the title property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTitle() { + return title; + } + + /** + * Sets the value of the title property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTitle(String value) { + this.title = value; + } + + /** + * Gets the value of the functionType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionType() { + return functionType; + } + + /** + * Sets the value of the functionType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionType(String value) { + this.functionType = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedSuspect.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedSuspect.java new file mode 100644 index 0000000..f9fc242 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedSuspect.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUBOClassifiedSuspect complex type. + * + *

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

+ * <complexType name="DutchBusinessUBOClassifiedSuspect">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="person" type="{http://www.webservices.nl/soap/}DutchBusinessUBOClassifiedPerson"/>
+ *         <element name="role" type="{http://www.webservices.nl/soap/}DutchBusinessUBOClassifiedRole"/>
+ *         <element name="classification" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOClassifiedSuspect", propOrder = { + +}) +public class DutchBusinessUBOClassifiedSuspect { + + @XmlElement(required = true) + protected String key; + @XmlElement(required = true) + protected DutchBusinessUBOClassifiedPerson person; + @XmlElement(required = true) + protected DutchBusinessUBOClassifiedRole role; + @XmlElement(required = true) + protected String classification; + + /** + * Gets the value of the key property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKey() { + return key; + } + + /** + * Sets the value of the key property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKey(String value) { + this.key = value; + } + + /** + * Gets the value of the person property. + * + * @return + * possible object is + * {@link DutchBusinessUBOClassifiedPerson } + * + */ + public DutchBusinessUBOClassifiedPerson getPerson() { + return person; + } + + /** + * Sets the value of the person property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBOClassifiedPerson } + * + */ + public void setPerson(DutchBusinessUBOClassifiedPerson value) { + this.person = value; + } + + /** + * Gets the value of the role property. + * + * @return + * possible object is + * {@link DutchBusinessUBOClassifiedRole } + * + */ + public DutchBusinessUBOClassifiedRole getRole() { + return role; + } + + /** + * Sets the value of the role property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBOClassifiedRole } + * + */ + public void setRole(DutchBusinessUBOClassifiedRole value) { + this.role = value; + } + + /** + * Gets the value of the classification property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getClassification() { + return classification; + } + + /** + * Sets the value of the classification property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setClassification(String value) { + this.classification = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedSuspectArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedSuspectArray.java new file mode 100644 index 0000000..398e5b2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedSuspectArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUBOClassifiedSuspectArray complex type. + * + *

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

+ * <complexType name="DutchBusinessUBOClassifiedSuspectArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessUBOClassifiedSuspect" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOClassifiedSuspectArray", propOrder = { + "item" +}) +public class DutchBusinessUBOClassifiedSuspectArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessUBOClassifiedSuspect } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifyInvestigationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifyInvestigationRequestType.java new file mode 100644 index 0000000..9b41076 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifyInvestigationRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUBOClassifyInvestigationRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessUBOClassifyInvestigationRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="scenario" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUBOClassifyInvestigationRequestType", propOrder = { + +}) +public class DutchBusinessUBOClassifyInvestigationRequestType { + + @XmlElement(required = true) + protected String token; + @XmlElement(required = true) + protected String scenario; + + /** + * Gets the value of the token property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToken() { + return token; + } + + /** + * Sets the value of the token property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToken(String value) { + this.token = value; + } + + /** + * Gets the value of the scenario property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getScenario() { + return scenario; + } + + /** + * Sets the value of the scenario property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setScenario(String value) { + this.scenario = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifyInvestigationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifyInvestigationResponseType.java new file mode 100644 index 0000000..2df3042 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifyInvestigationResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUBOClassifyInvestigationResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessUBOClassifyInvestigationResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessUBOClassificationResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUBOClassifyInvestigationResponseType", propOrder = { + +}) +public class DutchBusinessUBOClassifyInvestigationResponseType { + + @XmlElement(required = true) + protected DutchBusinessUBOClassificationResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessUBOClassificationResult } + * + */ + public DutchBusinessUBOClassificationResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBOClassificationResult } + * + */ + public void setOut(DutchBusinessUBOClassificationResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationRequestType.java new file mode 100644 index 0000000..e6568ba --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUBOCostsInvestigationRequestType complex type. + * + *

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

+ * <complexType name="dutchBusinessUBOCostsInvestigationRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUBOCostsInvestigationRequestType", propOrder = { + +}) +public class DutchBusinessUBOCostsInvestigationRequestType { + + @XmlElement(required = true) + protected String token; + + /** + * Gets the value of the token property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToken() { + return token; + } + + /** + * Sets the value of the token property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToken(String value) { + this.token = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationResponseType.java new file mode 100644 index 0000000..9da1f9f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUBOCostsInvestigationResponseType complex type. + * + *

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

+ * <complexType name="dutchBusinessUBOCostsInvestigationResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}dutchBusinessUBOCostsInvestigationResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUBOCostsInvestigationResponseType", propOrder = { + +}) +public class DutchBusinessUBOCostsInvestigationResponseType { + + @XmlElement(required = true) + protected DutchBusinessUBOCostsInvestigationResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessUBOCostsInvestigationResult } + * + */ + public DutchBusinessUBOCostsInvestigationResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBOCostsInvestigationResult } + * + */ + public void setOut(DutchBusinessUBOCostsInvestigationResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationResult.java new file mode 100644 index 0000000..10bd084 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationResult.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUBOCostsInvestigationResult complex type. + * + *

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

+ * <complexType name="dutchBusinessUBOCostsInvestigationResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="receipt" type="{http://www.webservices.nl/soap/}DutchBusinessUBOReceipt"/>
+ *         <element name="payment" type="{http://www.webservices.nl/soap/}DutchBusinessUBOPayment"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUBOCostsInvestigationResult", propOrder = { + +}) +public class DutchBusinessUBOCostsInvestigationResult { + + @XmlElement(required = true) + protected String token; + @XmlElement(required = true) + protected String status; + @XmlElement(required = true) + protected DutchBusinessUBOReceipt receipt; + @XmlElement(required = true) + protected DutchBusinessUBOPayment payment; + + /** + * Gets the value of the token property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToken() { + return token; + } + + /** + * Sets the value of the token property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToken(String value) { + this.token = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + + /** + * Gets the value of the receipt property. + * + * @return + * possible object is + * {@link DutchBusinessUBOReceipt } + * + */ + public DutchBusinessUBOReceipt getReceipt() { + return receipt; + } + + /** + * Sets the value of the receipt property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBOReceipt } + * + */ + public void setReceipt(DutchBusinessUBOReceipt value) { + this.receipt = value; + } + + /** + * Gets the value of the payment property. + * + * @return + * possible object is + * {@link DutchBusinessUBOPayment } + * + */ + public DutchBusinessUBOPayment getPayment() { + return payment; + } + + /** + * Sets the value of the payment property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBOPayment } + * + */ + public void setPayment(DutchBusinessUBOPayment value) { + this.payment = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOExtract.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOExtract.java new file mode 100644 index 0000000..b1ffa83 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOExtract.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessUBOExtract complex type. + * + *

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

+ * <complexType name="DutchBusinessUBOExtract">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="data" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentData" minOccurs="0"/>
+ *         <element name="extract_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOExtract", propOrder = { + +}) +public class DutchBusinessUBOExtract { + + protected String document; + protected String source; + protected DutchBusinessExtractDocumentData data; + @XmlElement(name = "extract_date", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar extractDate; + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocument(String value) { + this.document = value; + } + + /** + * Gets the value of the source property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSource() { + return source; + } + + /** + * Sets the value of the source property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSource(String value) { + this.source = value; + } + + /** + * Gets the value of the data property. + * + * @return + * possible object is + * {@link DutchBusinessExtractDocumentData } + * + */ + public DutchBusinessExtractDocumentData getData() { + return data; + } + + /** + * Sets the value of the data property. + * + * @param value + * allowed object is + * {@link DutchBusinessExtractDocumentData } + * + */ + public void setData(DutchBusinessExtractDocumentData value) { + this.data = value; + } + + /** + * Gets the value of the extractDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getExtractDate() { + return extractDate; + } + + /** + * Sets the value of the extractDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setExtractDate(XMLGregorianCalendar value) { + this.extractDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationResult.java new file mode 100644 index 0000000..52e2ae5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationResult.java @@ -0,0 +1,177 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUBOInvestigationResult complex type. + * + *

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

+ * <complexType name="DutchBusinessUBOInvestigationResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="persons" type="{http://www.webservices.nl/soap/}DutchBusinessUBOPersonArray"/>
+ *         <element name="organisations" type="{http://www.webservices.nl/soap/}DutchBusinessUBOOrganisationArray"/>
+ *         <element name="tree" type="{http://www.webservices.nl/soap/}DutchBusinessUBOOrganizationNode"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOInvestigationResult", propOrder = { + +}) +public class DutchBusinessUBOInvestigationResult { + + @XmlElement(required = true) + protected String name; + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(required = true) + protected DutchBusinessUBOPersonArray persons; + @XmlElement(required = true) + protected DutchBusinessUBOOrganisationArray organisations; + @XmlElement(required = true) + protected DutchBusinessUBOOrganizationNode tree; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the persons property. + * + * @return + * possible object is + * {@link DutchBusinessUBOPersonArray } + * + */ + public DutchBusinessUBOPersonArray getPersons() { + return persons; + } + + /** + * Sets the value of the persons property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBOPersonArray } + * + */ + public void setPersons(DutchBusinessUBOPersonArray value) { + this.persons = value; + } + + /** + * Gets the value of the organisations property. + * + * @return + * possible object is + * {@link DutchBusinessUBOOrganisationArray } + * + */ + public DutchBusinessUBOOrganisationArray getOrganisations() { + return organisations; + } + + /** + * Sets the value of the organisations property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBOOrganisationArray } + * + */ + public void setOrganisations(DutchBusinessUBOOrganisationArray value) { + this.organisations = value; + } + + /** + * Gets the value of the tree property. + * + * @return + * possible object is + * {@link DutchBusinessUBOOrganizationNode } + * + */ + public DutchBusinessUBOOrganizationNode getTree() { + return tree; + } + + /** + * Sets the value of the tree property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBOOrganizationNode } + * + */ + public void setTree(DutchBusinessUBOOrganizationNode value) { + this.tree = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationStatus.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationStatus.java new file mode 100644 index 0000000..5ae4673 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationStatus.java @@ -0,0 +1,125 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessUBOInvestigationStatus complex type. + * + *

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

+ * <complexType name="DutchBusinessUBOInvestigationStatus">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_since" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOInvestigationStatus", propOrder = { + +}) +public class DutchBusinessUBOInvestigationStatus { + + @XmlElement(required = true) + protected String status; + @XmlElement(name = "date_since", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateSince; + protected String description; + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + + /** + * Gets the value of the dateSince property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateSince() { + return dateSince; + } + + /** + * Sets the value of the dateSince property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateSince(XMLGregorianCalendar value) { + this.dateSince = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationToken.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationToken.java new file mode 100644 index 0000000..0ddfc12 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationToken.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUBOInvestigationToken complex type. + * + *

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

+ * <complexType name="DutchBusinessUBOInvestigationToken">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOInvestigationToken", propOrder = { + +}) +public class DutchBusinessUBOInvestigationToken { + + @XmlElement(required = true) + protected String token; + + /** + * Gets the value of the token property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToken() { + return token; + } + + /** + * Sets the value of the token property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToken(String value) { + this.token = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganisation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganisation.java new file mode 100644 index 0000000..222b28a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganisation.java @@ -0,0 +1,201 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUBOOrganisation complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUBOOrganisation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="extract" type="{http://www.webservices.nl/soap/}DutchBusinessUBOExtract" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOOrganisation", propOrder = { + +}) +public class DutchBusinessUBOOrganisation { + + @XmlElement(name = "dossier_number") + protected String dossierNumber; + protected String name; + @XmlElement(name = "legal_form_code") + protected String legalFormCode; + @XmlElement(name = "legal_form_text") + protected String legalFormText; + protected String city; + protected DutchBusinessUBOExtract extract; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the legalFormCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormCode() { + return legalFormCode; + } + + /** + * Sets the value of the legalFormCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormCode(String value) { + this.legalFormCode = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the extract property. + * + * @return + * possible object is + * {@link DutchBusinessUBOExtract } + * + */ + public DutchBusinessUBOExtract getExtract() { + return extract; + } + + /** + * Sets the value of the extract property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBOExtract } + * + */ + public void setExtract(DutchBusinessUBOExtract value) { + this.extract = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganisationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganisationArray.java new file mode 100644 index 0000000..6d716d8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganisationArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUBOOrganisationArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUBOOrganisationArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessUBOOrganisation" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOOrganisationArray", propOrder = { + "item" +}) +public class DutchBusinessUBOOrganisationArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessUBOOrganisation } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganizationNode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganizationNode.java new file mode 100644 index 0000000..5459606 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganizationNode.java @@ -0,0 +1,231 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUBOOrganizationNode complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUBOOrganizationNode">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="level" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="role_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registered_in" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="parents" type="{http://www.webservices.nl/soap/}DutchBusinessUBOOrganizationNodeArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOOrganizationNode", propOrder = { + +}) +public class DutchBusinessUBOOrganizationNode { + + @XmlElement(required = true) + protected BigInteger level; + @XmlElement(required = true) + protected String id; + @XmlElement(required = true) + protected String type; + @XmlElement(name = "role_type") + protected String roleType; + @XmlElement(name = "registered_in") + protected String registeredIn; + @XmlElement(required = true) + protected String name; + protected DutchBusinessUBOOrganizationNodeArray parents; + + /** + * Gets the value of the level property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getLevel() { + return level; + } + + /** + * Sets the value of the level property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setLevel(BigInteger value) { + this.level = value; + } + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the roleType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoleType() { + return roleType; + } + + /** + * Sets the value of the roleType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoleType(String value) { + this.roleType = value; + } + + /** + * Gets the value of the registeredIn property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegisteredIn() { + return registeredIn; + } + + /** + * Sets the value of the registeredIn property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegisteredIn(String value) { + this.registeredIn = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the parents property. + * + * @return + * possible object is + * {@link DutchBusinessUBOOrganizationNodeArray } + * + */ + public DutchBusinessUBOOrganizationNodeArray getParents() { + return parents; + } + + /** + * Sets the value of the parents property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBOOrganizationNodeArray } + * + */ + public void setParents(DutchBusinessUBOOrganizationNodeArray value) { + this.parents = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganizationNodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganizationNodeArray.java new file mode 100644 index 0000000..34939ad --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganizationNodeArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUBOOrganizationNodeArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUBOOrganizationNodeArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessUBOOrganizationNode" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOOrganizationNodeArray", propOrder = { + "item" +}) +public class DutchBusinessUBOOrganizationNodeArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessUBOOrganizationNode } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPayment.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPayment.java new file mode 100644 index 0000000..6b933bc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPayment.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUBOPayment complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUBOPayment">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="pre" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="cost" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="refund" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOPayment", propOrder = { + +}) +public class DutchBusinessUBOPayment { + + @XmlElement(required = true) + protected String pre; + @XmlElement(required = true) + protected String cost; + @XmlElement(required = true) + protected String refund; + + /** + * Gets the value of the pre property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPre() { + return pre; + } + + /** + * Sets the value of the pre property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPre(String value) { + this.pre = value; + } + + /** + * Gets the value of the cost property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCost() { + return cost; + } + + /** + * Sets the value of the cost property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCost(String value) { + this.cost = value; + } + + /** + * Gets the value of the refund property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRefund() { + return refund; + } + + /** + * Sets the value of the refund property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRefund(String value) { + this.refund = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPerson.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPerson.java new file mode 100644 index 0000000..94c9e77 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPerson.java @@ -0,0 +1,315 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessUBOPerson complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUBOPerson">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="middle_names" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="place_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_of_death" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="roles" type="{http://www.webservices.nl/soap/}DutchBusinessUBORoleArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOPerson", propOrder = { + +}) +public class DutchBusinessUBOPerson { + + @XmlElement(required = true) + protected String key; + @XmlElement(name = "first_name", required = true) + protected String firstName; + @XmlElement(name = "middle_names") + protected String middleNames; + @XmlElement(name = "last_name", required = true) + protected String lastName; + protected String gender; + @XmlElement(name = "date_of_birth") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateOfBirth; + @XmlElement(name = "place_of_birth") + protected String placeOfBirth; + @XmlElement(name = "country_of_birth") + protected String countryOfBirth; + @XmlElement(name = "date_of_death") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateOfDeath; + @XmlElement(required = true) + protected DutchBusinessUBORoleArray roles; + + /** + * Gets the value of the key property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKey() { + return key; + } + + /** + * Sets the value of the key property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKey(String value) { + this.key = value; + } + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the middleNames property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMiddleNames() { + return middleNames; + } + + /** + * Sets the value of the middleNames property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMiddleNames(String value) { + this.middleNames = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the gender property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGender() { + return gender; + } + + /** + * Sets the value of the gender property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGender(String value) { + this.gender = value; + } + + /** + * Gets the value of the dateOfBirth property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfBirth() { + return dateOfBirth; + } + + /** + * Sets the value of the dateOfBirth property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfBirth(XMLGregorianCalendar value) { + this.dateOfBirth = value; + } + + /** + * Gets the value of the placeOfBirth property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaceOfBirth() { + return placeOfBirth; + } + + /** + * Sets the value of the placeOfBirth property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaceOfBirth(String value) { + this.placeOfBirth = value; + } + + /** + * Gets the value of the countryOfBirth property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryOfBirth() { + return countryOfBirth; + } + + /** + * Sets the value of the countryOfBirth property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryOfBirth(String value) { + this.countryOfBirth = value; + } + + /** + * Gets the value of the dateOfDeath property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfDeath() { + return dateOfDeath; + } + + /** + * Sets the value of the dateOfDeath property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfDeath(XMLGregorianCalendar value) { + this.dateOfDeath = value; + } + + /** + * Gets the value of the roles property. + * + * @return + * possible object is + * {@link DutchBusinessUBORoleArray } + * + */ + public DutchBusinessUBORoleArray getRoles() { + return roles; + } + + /** + * Sets the value of the roles property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBORoleArray } + * + */ + public void setRoles(DutchBusinessUBORoleArray value) { + this.roles = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPersonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPersonArray.java new file mode 100644 index 0000000..c481435 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPersonArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUBOPersonArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUBOPersonArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessUBOPerson" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOPersonArray", propOrder = { + "item" +}) +public class DutchBusinessUBOPersonArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessUBOPerson } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPickupInvestigationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPickupInvestigationRequestType.java new file mode 100644 index 0000000..68f2e50 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPickupInvestigationRequestType.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUBOPickupInvestigationRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchBusinessUBOPickupInvestigationRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="include_source" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUBOPickupInvestigationRequestType", propOrder = { + +}) +public class DutchBusinessUBOPickupInvestigationRequestType { + + @XmlElement(required = true) + protected String token; + @XmlElement(name = "include_source") + protected boolean includeSource; + + /** + * Gets the value of the token property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToken() { + return token; + } + + /** + * Sets the value of the token property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToken(String value) { + this.token = value; + } + + /** + * Gets the value of the includeSource property. + * + */ + public boolean isIncludeSource() { + return includeSource; + } + + /** + * Sets the value of the includeSource property. + * + */ + public void setIncludeSource(boolean value) { + this.includeSource = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPickupInvestigationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPickupInvestigationResponseType.java new file mode 100644 index 0000000..ab18548 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPickupInvestigationResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUBOPickupInvestigationResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchBusinessUBOPickupInvestigationResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessUBOInvestigationResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUBOPickupInvestigationResponseType", propOrder = { + +}) +public class DutchBusinessUBOPickupInvestigationResponseType { + + @XmlElement(required = true) + protected DutchBusinessUBOInvestigationResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessUBOInvestigationResult } + * + */ + public DutchBusinessUBOInvestigationResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBOInvestigationResult } + * + */ + public void setOut(DutchBusinessUBOInvestigationResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceipt.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceipt.java new file mode 100644 index 0000000..56bd78f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceipt.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUBOReceipt complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUBOReceipt">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="total_price" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="items" type="{http://www.webservices.nl/soap/}DutchBusinessUBOReceiptItemArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOReceipt", propOrder = { + +}) +public class DutchBusinessUBOReceipt { + + @XmlElement(name = "total_price", required = true) + protected String totalPrice; + @XmlElement(required = true) + protected DutchBusinessUBOReceiptItemArray items; + + /** + * Gets the value of the totalPrice property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTotalPrice() { + return totalPrice; + } + + /** + * Sets the value of the totalPrice property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTotalPrice(String value) { + this.totalPrice = value; + } + + /** + * Gets the value of the items property. + * + * @return + * possible object is + * {@link DutchBusinessUBOReceiptItemArray } + * + */ + public DutchBusinessUBOReceiptItemArray getItems() { + return items; + } + + /** + * Sets the value of the items property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBOReceiptItemArray } + * + */ + public void setItems(DutchBusinessUBOReceiptItemArray value) { + this.items = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceiptItem.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceiptItem.java new file mode 100644 index 0000000..18c625a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceiptItem.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUBOReceiptItem complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUBOReceiptItem">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="quantity" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="unit_price" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="total_price" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOReceiptItem", propOrder = { + +}) +public class DutchBusinessUBOReceiptItem { + + @XmlElement(required = true) + protected String description; + protected int quantity; + @XmlElement(name = "unit_price", required = true) + protected String unitPrice; + @XmlElement(name = "total_price", required = true) + protected String totalPrice; + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the quantity property. + * + */ + public int getQuantity() { + return quantity; + } + + /** + * Sets the value of the quantity property. + * + */ + public void setQuantity(int value) { + this.quantity = value; + } + + /** + * Gets the value of the unitPrice property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUnitPrice() { + return unitPrice; + } + + /** + * Sets the value of the unitPrice property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUnitPrice(String value) { + this.unitPrice = value; + } + + /** + * Gets the value of the totalPrice property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTotalPrice() { + return totalPrice; + } + + /** + * Sets the value of the totalPrice property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTotalPrice(String value) { + this.totalPrice = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceiptItemArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceiptItemArray.java new file mode 100644 index 0000000..b99403a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceiptItemArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUBOReceiptItemArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUBOReceiptItemArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessUBOReceiptItem" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBOReceiptItemArray", propOrder = { + "item" +}) +public class DutchBusinessUBOReceiptItemArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessUBOReceiptItem } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBORole.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBORole.java new file mode 100644 index 0000000..09ce657 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBORole.java @@ -0,0 +1,178 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessUBORole complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUBORole">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="role_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="competency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="start_role_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBORole", propOrder = { + +}) +public class DutchBusinessUBORole { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + protected String title; + @XmlElement(name = "role_type") + protected String roleType; + protected String competency; + @XmlElement(name = "start_role_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar startRoleDate; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the title property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTitle() { + return title; + } + + /** + * Sets the value of the title property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTitle(String value) { + this.title = value; + } + + /** + * Gets the value of the roleType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoleType() { + return roleType; + } + + /** + * Sets the value of the roleType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoleType(String value) { + this.roleType = value; + } + + /** + * Gets the value of the competency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompetency() { + return competency; + } + + /** + * Sets the value of the competency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompetency(String value) { + this.competency = value; + } + + /** + * Gets the value of the startRoleDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStartRoleDate() { + return startRoleDate; + } + + /** + * Sets the value of the startRoleDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStartRoleDate(XMLGregorianCalendar value) { + this.startRoleDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBORoleArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBORoleArray.java new file mode 100644 index 0000000..531623e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBORoleArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUBORoleArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUBORoleArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessUBORole" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUBORoleArray", propOrder = { + "item" +}) +public class DutchBusinessUBORoleArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessUBORole } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOStartInvestigationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOStartInvestigationRequestType.java new file mode 100644 index 0000000..b57b097 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOStartInvestigationRequestType.java @@ -0,0 +1,118 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for dutchBusinessUBOStartInvestigationRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchBusinessUBOStartInvestigationRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="oldest_extract_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="use_updates" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUBOStartInvestigationRequestType", propOrder = { + +}) +public class DutchBusinessUBOStartInvestigationRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "oldest_extract_date", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar oldestExtractDate; + @XmlElement(name = "use_updates") + protected boolean useUpdates; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the oldestExtractDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getOldestExtractDate() { + return oldestExtractDate; + } + + /** + * Sets the value of the oldestExtractDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setOldestExtractDate(XMLGregorianCalendar value) { + this.oldestExtractDate = value; + } + + /** + * Gets the value of the useUpdates property. + * + */ + public boolean isUseUpdates() { + return useUpdates; + } + + /** + * Sets the value of the useUpdates property. + * + */ + public void setUseUpdates(boolean value) { + this.useUpdates = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOStartInvestigationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOStartInvestigationResponseType.java new file mode 100644 index 0000000..f737b8b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOStartInvestigationResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUBOStartInvestigationResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchBusinessUBOStartInvestigationResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessUBOInvestigationToken"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUBOStartInvestigationResponseType", propOrder = { + +}) +public class DutchBusinessUBOStartInvestigationResponseType { + + @XmlElement(required = true) + protected DutchBusinessUBOInvestigationToken out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessUBOInvestigationToken } + * + */ + public DutchBusinessUBOInvestigationToken getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessUBOInvestigationToken } + * + */ + public void setOut(DutchBusinessUBOInvestigationToken value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateAddDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateAddDossierRequestType.java new file mode 100644 index 0000000..84f8b96 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateAddDossierRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUpdateAddDossierRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchBusinessUpdateAddDossierRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUpdateAddDossierRequestType", propOrder = { + +}) +public class DutchBusinessUpdateAddDossierRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number", required = true) + protected String establishmentNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateAddDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateAddDossierResponseType.java new file mode 100644 index 0000000..b3d08b2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateAddDossierResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUpdateAddDossierResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchBusinessUpdateAddDossierResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUpdateAddDossierResponseType") +public class DutchBusinessUpdateAddDossierResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateCheckDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateCheckDossierRequestType.java new file mode 100644 index 0000000..737e1e4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateCheckDossierRequestType.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUpdateCheckDossierRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchBusinessUpdateCheckDossierRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUpdateCheckDossierRequestType", propOrder = { + +}) +public class DutchBusinessUpdateCheckDossierRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number", required = true) + protected String establishmentNumber; + @XmlElement(name = "update_types", required = true) + protected StringArray updateTypes; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the updateTypes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getUpdateTypes() { + return updateTypes; + } + + /** + * Sets the value of the updateTypes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setUpdateTypes(StringArray value) { + this.updateTypes = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateCheckDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateCheckDossierResponseType.java new file mode 100644 index 0000000..8e071d0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateCheckDossierResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUpdateCheckDossierResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchBusinessUpdateCheckDossierResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateReference"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUpdateCheckDossierResponseType", propOrder = { + +}) +public class DutchBusinessUpdateCheckDossierResponseType { + + @XmlElement(required = true) + protected DutchBusinessUpdateReference out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessUpdateReference } + * + */ + public DutchBusinessUpdateReference getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessUpdateReference } + * + */ + public void setOut(DutchBusinessUpdateReference value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetChangedDossiersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetChangedDossiersRequestType.java new file mode 100644 index 0000000..a3aedbe --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetChangedDossiersRequestType.java @@ -0,0 +1,117 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for dutchBusinessUpdateGetChangedDossiersRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchBusinessUpdateGetChangedDossiersRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUpdateGetChangedDossiersRequestType", propOrder = { + +}) +public class DutchBusinessUpdateGetChangedDossiersRequestType { + + @XmlElement(name = "changed_since", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar changedSince; + @XmlElement(name = "update_types", required = true) + protected StringArray updateTypes; + protected int page; + + /** + * Gets the value of the changedSince property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getChangedSince() { + return changedSince; + } + + /** + * Sets the value of the changedSince property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setChangedSince(XMLGregorianCalendar value) { + this.changedSince = value; + } + + /** + * Gets the value of the updateTypes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getUpdateTypes() { + return updateTypes; + } + + /** + * Sets the value of the updateTypes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setUpdateTypes(StringArray value) { + this.updateTypes = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetChangedDossiersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetChangedDossiersResponseType.java new file mode 100644 index 0000000..a7ca8c1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetChangedDossiersResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUpdateGetChangedDossiersResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchBusinessUpdateGetChangedDossiersResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUpdateGetChangedDossiersResponseType", propOrder = { + +}) +public class DutchBusinessUpdateGetChangedDossiersResponseType { + + @XmlElement(required = true) + protected DutchBusinessUpdateReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessUpdateReferencePagedResult } + * + */ + public DutchBusinessUpdateReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessUpdateReferencePagedResult } + * + */ + public void setOut(DutchBusinessUpdateReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetDossiersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetDossiersRequestType.java new file mode 100644 index 0000000..067020a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetDossiersRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUpdateGetDossiersRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchBusinessUpdateGetDossiersRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUpdateGetDossiersRequestType", propOrder = { + +}) +public class DutchBusinessUpdateGetDossiersRequestType { + + @XmlElement(name = "update_types", required = true) + protected StringArray updateTypes; + protected int page; + + /** + * Gets the value of the updateTypes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getUpdateTypes() { + return updateTypes; + } + + /** + * Sets the value of the updateTypes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setUpdateTypes(StringArray value) { + this.updateTypes = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetDossiersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetDossiersResponseType.java new file mode 100644 index 0000000..17780ca --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetDossiersResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUpdateGetDossiersResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchBusinessUpdateGetDossiersResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUpdateGetDossiersResponseType", propOrder = { + +}) +public class DutchBusinessUpdateGetDossiersResponseType { + + @XmlElement(required = true) + protected DutchBusinessUpdateReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessUpdateReferencePagedResult } + * + */ + public DutchBusinessUpdateReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessUpdateReferencePagedResult } + * + */ + public void setOut(DutchBusinessUpdateReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetOverviewRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetOverviewRequestType.java new file mode 100644 index 0000000..5ce133c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetOverviewRequestType.java @@ -0,0 +1,59 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUpdateGetOverviewRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchBusinessUpdateGetOverviewRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUpdateGetOverviewRequestType", propOrder = { + +}) +public class DutchBusinessUpdateGetOverviewRequestType { + + protected int page; + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetOverviewResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetOverviewResponseType.java new file mode 100644 index 0000000..88b7493 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetOverviewResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUpdateGetOverviewResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchBusinessUpdateGetOverviewResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateSubscriptionPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUpdateGetOverviewResponseType", propOrder = { + +}) +public class DutchBusinessUpdateGetOverviewResponseType { + + @XmlElement(required = true) + protected DutchBusinessUpdateSubscriptionPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchBusinessUpdateSubscriptionPagedResult } + * + */ + public DutchBusinessUpdateSubscriptionPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchBusinessUpdateSubscriptionPagedResult } + * + */ + public void setOut(DutchBusinessUpdateSubscriptionPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReference.java new file mode 100644 index 0000000..d4264ec --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReference.java @@ -0,0 +1,153 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessUpdateReference complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUpdateReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="date_last_update" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUpdateReference", propOrder = { + +}) +public class DutchBusinessUpdateReference { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(name = "update_types", required = true) + protected StringArray updateTypes; + @XmlElement(name = "date_last_update", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateLastUpdate; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the updateTypes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getUpdateTypes() { + return updateTypes; + } + + /** + * Sets the value of the updateTypes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setUpdateTypes(StringArray value) { + this.updateTypes = value; + } + + /** + * Gets the value of the dateLastUpdate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateLastUpdate() { + return dateLastUpdate; + } + + /** + * Sets the value of the dateLastUpdate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateLastUpdate(XMLGregorianCalendar value) { + this.dateLastUpdate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReferenceArray.java new file mode 100644 index 0000000..7a777cc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUpdateReferenceArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUpdateReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUpdateReferenceArray", propOrder = { + "item" +}) +public class DutchBusinessUpdateReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessUpdateReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReferencePagedResult.java new file mode 100644 index 0000000..4797219 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReferencePagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUpdateReferencePagedResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUpdateReferencePagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUpdateReferencePagedResult", propOrder = { + +}) +public class DutchBusinessUpdateReferencePagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected DutchBusinessUpdateReferenceArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link DutchBusinessUpdateReferenceArray } + * + */ + public DutchBusinessUpdateReferenceArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link DutchBusinessUpdateReferenceArray } + * + */ + public void setResults(DutchBusinessUpdateReferenceArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateRemoveDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateRemoveDossierRequestType.java new file mode 100644 index 0000000..9458fc7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateRemoveDossierRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUpdateRemoveDossierRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchBusinessUpdateRemoveDossierRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUpdateRemoveDossierRequestType", propOrder = { + +}) +public class DutchBusinessUpdateRemoveDossierRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number", required = true) + protected String establishmentNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateRemoveDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateRemoveDossierResponseType.java new file mode 100644 index 0000000..db72f82 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateRemoveDossierResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchBusinessUpdateRemoveDossierResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchBusinessUpdateRemoveDossierResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchBusinessUpdateRemoveDossierResponseType") +public class DutchBusinessUpdateRemoveDossierResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscription.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscription.java new file mode 100644 index 0000000..7ae573a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscription.java @@ -0,0 +1,142 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUpdateSubscription complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUpdateSubscription">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="up_to_date" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="pending_updates" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUpdateSubscription", propOrder = { + +}) +public class DutchBusinessUpdateSubscription { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(name = "up_to_date") + protected boolean upToDate; + @XmlElement(name = "pending_updates") + protected StringArray pendingUpdates; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the upToDate property. + * + */ + public boolean isUpToDate() { + return upToDate; + } + + /** + * Sets the value of the upToDate property. + * + */ + public void setUpToDate(boolean value) { + this.upToDate = value; + } + + /** + * Gets the value of the pendingUpdates property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getPendingUpdates() { + return pendingUpdates; + } + + /** + * Sets the value of the pendingUpdates property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setPendingUpdates(StringArray value) { + this.pendingUpdates = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscriptionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscriptionArray.java new file mode 100644 index 0000000..33be620 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscriptionArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUpdateSubscriptionArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUpdateSubscriptionArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateSubscription" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUpdateSubscriptionArray", propOrder = { + "item" +}) +public class DutchBusinessUpdateSubscriptionArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchBusinessUpdateSubscription } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscriptionPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscriptionPagedResult.java new file mode 100644 index 0000000..c10a725 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscriptionPagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchBusinessUpdateSubscriptionPagedResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessUpdateSubscriptionPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateSubscriptionArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessUpdateSubscriptionPagedResult", propOrder = { + +}) +public class DutchBusinessUpdateSubscriptionPagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected DutchBusinessUpdateSubscriptionArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link DutchBusinessUpdateSubscriptionArray } + * + */ + public DutchBusinessUpdateSubscriptionArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link DutchBusinessUpdateSubscriptionArray } + * + */ + public void setResults(DutchBusinessUpdateSubscriptionArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessVatNumber.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessVatNumber.java new file mode 100644 index 0000000..094577d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessVatNumber.java @@ -0,0 +1,126 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchBusinessVatNumber complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchBusinessVatNumber">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_last_update" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchBusinessVatNumber", propOrder = { + +}) +public class DutchBusinessVatNumber { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "vat_number", required = true) + protected String vatNumber; + @XmlElement(name = "date_last_update", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateLastUpdate; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the vatNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVatNumber() { + return vatNumber; + } + + /** + * Sets the value of the vatNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVatNumber(String value) { + this.vatNumber = value; + } + + /** + * Gets the value of the dateLastUpdate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateLastUpdate() { + return dateLastUpdate; + } + + /** + * Sets the value of the dateLastUpdate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateLastUpdate(XMLGregorianCalendar value) { + this.dateLastUpdate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicle.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicle.java new file mode 100644 index 0000000..47bb878 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicle.java @@ -0,0 +1,386 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicle complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicle">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="basic_data" type="{http://www.webservices.nl/soap/}DutchVehicleData"/>
+ *         <element name="status" type="{http://www.webservices.nl/soap/}DutchVehicleStatus" minOccurs="0"/>
+ *         <element name="registration" type="{http://www.webservices.nl/soap/}DutchVehicleRegistration" minOccurs="0"/>
+ *         <element name="details" type="{http://www.webservices.nl/soap/}DutchVehicleFeature" minOccurs="0"/>
+ *         <element name="tax" type="{http://www.webservices.nl/soap/}DutchVehicleTaxData" minOccurs="0"/>
+ *         <element name="technical_weight" type="{http://www.webservices.nl/soap/}DutchVehicleTechnicalWeight" minOccurs="0"/>
+ *         <element name="engine" type="{http://www.webservices.nl/soap/}DutchVehicleEngine" minOccurs="0"/>
+ *         <element name="environmental_impact" type="{http://www.webservices.nl/soap/}DutchVehicleEnvironmentArray" minOccurs="0"/>
+ *         <element name="axle_information" type="{http://www.webservices.nl/soap/}DutchVehicleAxleArray" minOccurs="0"/>
+ *         <element name="type_approval" type="{http://www.webservices.nl/soap/}DutchVehicleTypeApproval" minOccurs="0"/>
+ *         <element name="body_approval" type="{http://www.webservices.nl/soap/}DutchVehicleBodyApprovalArray" minOccurs="0"/>
+ *         <element name="remark" type="{http://www.webservices.nl/soap/}DutchVehicleRemarkArray" minOccurs="0"/>
+ *         <element name="recall" type="{http://www.webservices.nl/soap/}DutchVehicleRecall" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicle", propOrder = { + +}) +public class DutchVehicle { + + @XmlElement(name = "basic_data", required = true) + protected DutchVehicleData basicData; + protected DutchVehicleStatus status; + protected DutchVehicleRegistration registration; + protected DutchVehicleFeature details; + protected DutchVehicleTaxData tax; + @XmlElement(name = "technical_weight") + protected DutchVehicleTechnicalWeight technicalWeight; + protected DutchVehicleEngine engine; + @XmlElement(name = "environmental_impact") + protected DutchVehicleEnvironmentArray environmentalImpact; + @XmlElement(name = "axle_information") + protected DutchVehicleAxleArray axleInformation; + @XmlElement(name = "type_approval") + protected DutchVehicleTypeApproval typeApproval; + @XmlElement(name = "body_approval") + protected DutchVehicleBodyApprovalArray bodyApproval; + protected DutchVehicleRemarkArray remark; + protected DutchVehicleRecall recall; + + /** + * Gets the value of the basicData property. + * + * @return + * possible object is + * {@link DutchVehicleData } + * + */ + public DutchVehicleData getBasicData() { + return basicData; + } + + /** + * Sets the value of the basicData property. + * + * @param value + * allowed object is + * {@link DutchVehicleData } + * + */ + public void setBasicData(DutchVehicleData value) { + this.basicData = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link DutchVehicleStatus } + * + */ + public DutchVehicleStatus getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link DutchVehicleStatus } + * + */ + public void setStatus(DutchVehicleStatus value) { + this.status = value; + } + + /** + * Gets the value of the registration property. + * + * @return + * possible object is + * {@link DutchVehicleRegistration } + * + */ + public DutchVehicleRegistration getRegistration() { + return registration; + } + + /** + * Sets the value of the registration property. + * + * @param value + * allowed object is + * {@link DutchVehicleRegistration } + * + */ + public void setRegistration(DutchVehicleRegistration value) { + this.registration = value; + } + + /** + * Gets the value of the details property. + * + * @return + * possible object is + * {@link DutchVehicleFeature } + * + */ + public DutchVehicleFeature getDetails() { + return details; + } + + /** + * Sets the value of the details property. + * + * @param value + * allowed object is + * {@link DutchVehicleFeature } + * + */ + public void setDetails(DutchVehicleFeature value) { + this.details = value; + } + + /** + * Gets the value of the tax property. + * + * @return + * possible object is + * {@link DutchVehicleTaxData } + * + */ + public DutchVehicleTaxData getTax() { + return tax; + } + + /** + * Sets the value of the tax property. + * + * @param value + * allowed object is + * {@link DutchVehicleTaxData } + * + */ + public void setTax(DutchVehicleTaxData value) { + this.tax = value; + } + + /** + * Gets the value of the technicalWeight property. + * + * @return + * possible object is + * {@link DutchVehicleTechnicalWeight } + * + */ + public DutchVehicleTechnicalWeight getTechnicalWeight() { + return technicalWeight; + } + + /** + * Sets the value of the technicalWeight property. + * + * @param value + * allowed object is + * {@link DutchVehicleTechnicalWeight } + * + */ + public void setTechnicalWeight(DutchVehicleTechnicalWeight value) { + this.technicalWeight = value; + } + + /** + * Gets the value of the engine property. + * + * @return + * possible object is + * {@link DutchVehicleEngine } + * + */ + public DutchVehicleEngine getEngine() { + return engine; + } + + /** + * Sets the value of the engine property. + * + * @param value + * allowed object is + * {@link DutchVehicleEngine } + * + */ + public void setEngine(DutchVehicleEngine value) { + this.engine = value; + } + + /** + * Gets the value of the environmentalImpact property. + * + * @return + * possible object is + * {@link DutchVehicleEnvironmentArray } + * + */ + public DutchVehicleEnvironmentArray getEnvironmentalImpact() { + return environmentalImpact; + } + + /** + * Sets the value of the environmentalImpact property. + * + * @param value + * allowed object is + * {@link DutchVehicleEnvironmentArray } + * + */ + public void setEnvironmentalImpact(DutchVehicleEnvironmentArray value) { + this.environmentalImpact = value; + } + + /** + * Gets the value of the axleInformation property. + * + * @return + * possible object is + * {@link DutchVehicleAxleArray } + * + */ + public DutchVehicleAxleArray getAxleInformation() { + return axleInformation; + } + + /** + * Sets the value of the axleInformation property. + * + * @param value + * allowed object is + * {@link DutchVehicleAxleArray } + * + */ + public void setAxleInformation(DutchVehicleAxleArray value) { + this.axleInformation = value; + } + + /** + * Gets the value of the typeApproval property. + * + * @return + * possible object is + * {@link DutchVehicleTypeApproval } + * + */ + public DutchVehicleTypeApproval getTypeApproval() { + return typeApproval; + } + + /** + * Sets the value of the typeApproval property. + * + * @param value + * allowed object is + * {@link DutchVehicleTypeApproval } + * + */ + public void setTypeApproval(DutchVehicleTypeApproval value) { + this.typeApproval = value; + } + + /** + * Gets the value of the bodyApproval property. + * + * @return + * possible object is + * {@link DutchVehicleBodyApprovalArray } + * + */ + public DutchVehicleBodyApprovalArray getBodyApproval() { + return bodyApproval; + } + + /** + * Sets the value of the bodyApproval property. + * + * @param value + * allowed object is + * {@link DutchVehicleBodyApprovalArray } + * + */ + public void setBodyApproval(DutchVehicleBodyApprovalArray value) { + this.bodyApproval = value; + } + + /** + * Gets the value of the remark property. + * + * @return + * possible object is + * {@link DutchVehicleRemarkArray } + * + */ + public DutchVehicleRemarkArray getRemark() { + return remark; + } + + /** + * Sets the value of the remark property. + * + * @param value + * allowed object is + * {@link DutchVehicleRemarkArray } + * + */ + public void setRemark(DutchVehicleRemarkArray value) { + this.remark = value; + } + + /** + * Gets the value of the recall property. + * + * @return + * possible object is + * {@link DutchVehicleRecall } + * + */ + public DutchVehicleRecall getRecall() { + return recall; + } + + /** + * Sets the value of the recall property. + * + * @param value + * allowed object is + * {@link DutchVehicleRecall } + * + */ + public void setRecall(DutchVehicleRecall value) { + this.recall = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleAxle.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleAxle.java new file mode 100644 index 0000000..f54e600 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleAxle.java @@ -0,0 +1,284 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleAxle complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleAxle">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="indication_driven_axle" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="indication_bogie_lift" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="max_axle_load" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="max_axle_load_technical" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="location_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="track_width" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="road_behavior_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="road_behavior_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleAxle", propOrder = { + +}) +public class DutchVehicleAxle { + + protected Integer number; + @XmlElement(name = "indication_driven_axle") + protected Boolean indicationDrivenAxle; + @XmlElement(name = "indication_bogie_lift") + protected Boolean indicationBogieLift; + @XmlElement(name = "max_axle_load") + protected Integer maxAxleLoad; + @XmlElement(name = "max_axle_load_technical") + protected Integer maxAxleLoadTechnical; + @XmlElement(name = "location_code") + protected String locationCode; + @XmlElement(name = "track_width") + protected Integer trackWidth; + @XmlElement(name = "road_behavior_code") + protected String roadBehaviorCode; + @XmlElement(name = "road_behavior_description") + protected String roadBehaviorDescription; + + /** + * Gets the value of the number property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getNumber() { + return number; + } + + /** + * Sets the value of the number property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setNumber(Integer value) { + this.number = value; + } + + /** + * Gets the value of the indicationDrivenAxle property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicationDrivenAxle() { + return indicationDrivenAxle; + } + + /** + * Sets the value of the indicationDrivenAxle property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicationDrivenAxle(Boolean value) { + this.indicationDrivenAxle = value; + } + + /** + * Gets the value of the indicationBogieLift property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicationBogieLift() { + return indicationBogieLift; + } + + /** + * Sets the value of the indicationBogieLift property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicationBogieLift(Boolean value) { + this.indicationBogieLift = value; + } + + /** + * Gets the value of the maxAxleLoad property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMaxAxleLoad() { + return maxAxleLoad; + } + + /** + * Sets the value of the maxAxleLoad property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMaxAxleLoad(Integer value) { + this.maxAxleLoad = value; + } + + /** + * Gets the value of the maxAxleLoadTechnical property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMaxAxleLoadTechnical() { + return maxAxleLoadTechnical; + } + + /** + * Sets the value of the maxAxleLoadTechnical property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMaxAxleLoadTechnical(Integer value) { + this.maxAxleLoadTechnical = value; + } + + /** + * Gets the value of the locationCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLocationCode() { + return locationCode; + } + + /** + * Sets the value of the locationCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLocationCode(String value) { + this.locationCode = value; + } + + /** + * Gets the value of the trackWidth property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTrackWidth() { + return trackWidth; + } + + /** + * Sets the value of the trackWidth property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTrackWidth(Integer value) { + this.trackWidth = value; + } + + /** + * Gets the value of the roadBehaviorCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoadBehaviorCode() { + return roadBehaviorCode; + } + + /** + * Sets the value of the roadBehaviorCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoadBehaviorCode(String value) { + this.roadBehaviorCode = value; + } + + /** + * Gets the value of the roadBehaviorDescription property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoadBehaviorDescription() { + return roadBehaviorDescription; + } + + /** + * Sets the value of the roadBehaviorDescription property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoadBehaviorDescription(String value) { + this.roadBehaviorDescription = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleAxleArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleAxleArray.java new file mode 100644 index 0000000..52ce66b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleAxleArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleAxleArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleAxleArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchVehicleAxle" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleAxleArray", propOrder = { + "item" +}) +public class DutchVehicleAxleArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchVehicleAxle } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleBodyApproval.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleBodyApproval.java new file mode 100644 index 0000000..f87d383 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleBodyApproval.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleBodyApproval complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleBodyApproval">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="type_id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="type_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleBodyApproval", propOrder = { + +}) +public class DutchVehicleBodyApproval { + + @XmlElement(name = "type_id") + protected Integer typeId; + @XmlElement(name = "type_code") + protected String typeCode; + protected String description; + + /** + * Gets the value of the typeId property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getTypeId() { + return typeId; + } + + /** + * Sets the value of the typeId property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setTypeId(Integer value) { + this.typeId = value; + } + + /** + * Gets the value of the typeCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTypeCode() { + return typeCode; + } + + /** + * Sets the value of the typeCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTypeCode(String value) { + this.typeCode = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleBodyApprovalArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleBodyApprovalArray.java new file mode 100644 index 0000000..9a26418 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleBodyApprovalArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleBodyApprovalArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleBodyApprovalArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchVehicleBodyApproval" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleBodyApprovalArray", propOrder = { + "item" +}) +public class DutchVehicleBodyApprovalArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchVehicleBodyApproval } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleData.java new file mode 100644 index 0000000..b8aad0e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleData.java @@ -0,0 +1,334 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleData complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleData">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="location_vin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="catalog_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="brand_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="brand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="body_style" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="color" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="secondary_color" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleData", propOrder = { + +}) +public class DutchVehicleData { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + @XmlElement(name = "location_vin_number") + protected String locationVinNumber; + @XmlElement(name = "catalog_price") + protected Integer catalogPrice; + protected String category; + @XmlElement(name = "brand_code") + protected String brandCode; + protected String brand; + protected String model; + protected String type; + @XmlElement(name = "body_style") + protected String bodyStyle; + protected String color; + @XmlElement(name = "secondary_color") + protected String secondaryColor; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + + /** + * Gets the value of the locationVinNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLocationVinNumber() { + return locationVinNumber; + } + + /** + * Sets the value of the locationVinNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLocationVinNumber(String value) { + this.locationVinNumber = value; + } + + /** + * Gets the value of the catalogPrice property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCatalogPrice() { + return catalogPrice; + } + + /** + * Sets the value of the catalogPrice property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCatalogPrice(Integer value) { + this.catalogPrice = value; + } + + /** + * Gets the value of the category property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCategory() { + return category; + } + + /** + * Sets the value of the category property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCategory(String value) { + this.category = value; + } + + /** + * Gets the value of the brandCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrandCode() { + return brandCode; + } + + /** + * Sets the value of the brandCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrandCode(String value) { + this.brandCode = value; + } + + /** + * Gets the value of the brand property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrand() { + return brand; + } + + /** + * Sets the value of the brand property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrand(String value) { + this.brand = value; + } + + /** + * Gets the value of the model property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModel() { + return model; + } + + /** + * Sets the value of the model property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModel(String value) { + this.model = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the bodyStyle property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBodyStyle() { + return bodyStyle; + } + + /** + * Sets the value of the bodyStyle property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBodyStyle(String value) { + this.bodyStyle = value; + } + + /** + * Gets the value of the color property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getColor() { + return color; + } + + /** + * Sets the value of the color property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setColor(String value) { + this.color = value; + } + + /** + * Gets the value of the secondaryColor property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondaryColor() { + return secondaryColor; + } + + /** + * Sets the value of the secondaryColor property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondaryColor(String value) { + this.secondaryColor = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEngine.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEngine.java new file mode 100644 index 0000000..1827e55 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEngine.java @@ -0,0 +1,149 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleEngine complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleEngine">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="cylinder_capacity" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="cylinders" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="g3_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="energy_label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleEngine", propOrder = { + +}) +public class DutchVehicleEngine { + + @XmlElement(name = "cylinder_capacity") + protected Integer cylinderCapacity; + protected Integer cylinders; + @XmlElement(name = "g3_indication") + protected Boolean g3Indication; + @XmlElement(name = "energy_label") + protected String energyLabel; + + /** + * Gets the value of the cylinderCapacity property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCylinderCapacity() { + return cylinderCapacity; + } + + /** + * Sets the value of the cylinderCapacity property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCylinderCapacity(Integer value) { + this.cylinderCapacity = value; + } + + /** + * Gets the value of the cylinders property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCylinders() { + return cylinders; + } + + /** + * Sets the value of the cylinders property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCylinders(Integer value) { + this.cylinders = value; + } + + /** + * Gets the value of the g3Indication property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isG3Indication() { + return g3Indication; + } + + /** + * Sets the value of the g3Indication property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setG3Indication(Boolean value) { + this.g3Indication = value; + } + + /** + * Gets the value of the energyLabel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEnergyLabel() { + return energyLabel; + } + + /** + * Sets the value of the energyLabel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEnergyLabel(String value) { + this.energyLabel = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEnvironment.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEnvironment.java new file mode 100644 index 0000000..f306b2d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEnvironment.java @@ -0,0 +1,502 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleEnvironment complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleEnvironment">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="fuel_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="fuel_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="usage_city" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="usage_highway" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="usage_combined" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="max_power" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="max_power_continuous" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="noise_level_stationary" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="noise_level_stationary_rpm" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="noise_level_driving" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="emission_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="co2_emission_combined" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="co2_emission_weighted" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="particulate_emission" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="particulate_filter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="emission_particles_light" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="emission_particles_heavy" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleEnvironment", propOrder = { + +}) +public class DutchVehicleEnvironment { + + @XmlElement(name = "fuel_type") + protected String fuelType; + @XmlElement(name = "fuel_code") + protected String fuelCode; + @XmlElement(name = "usage_city") + protected BigDecimal usageCity; + @XmlElement(name = "usage_highway") + protected BigDecimal usageHighway; + @XmlElement(name = "usage_combined") + protected BigDecimal usageCombined; + @XmlElement(name = "max_power") + protected BigDecimal maxPower; + @XmlElement(name = "max_power_continuous") + protected BigDecimal maxPowerContinuous; + @XmlElement(name = "noise_level_stationary") + protected Integer noiseLevelStationary; + @XmlElement(name = "noise_level_stationary_rpm") + protected Integer noiseLevelStationaryRpm; + @XmlElement(name = "noise_level_driving") + protected Integer noiseLevelDriving; + @XmlElement(name = "emission_code") + protected String emissionCode; + @XmlElement(name = "co2_emission_combined") + protected Integer co2EmissionCombined; + @XmlElement(name = "co2_emission_weighted") + protected Integer co2EmissionWeighted; + @XmlElement(name = "particulate_emission") + protected BigDecimal particulateEmission; + @XmlElement(name = "particulate_filter") + protected String particulateFilter; + @XmlElement(name = "emission_particles_light") + protected BigDecimal emissionParticlesLight; + @XmlElement(name = "emission_particles_heavy") + protected BigDecimal emissionParticlesHeavy; + + /** + * Gets the value of the fuelType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFuelType() { + return fuelType; + } + + /** + * Sets the value of the fuelType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFuelType(String value) { + this.fuelType = value; + } + + /** + * Gets the value of the fuelCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFuelCode() { + return fuelCode; + } + + /** + * Sets the value of the fuelCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFuelCode(String value) { + this.fuelCode = value; + } + + /** + * Gets the value of the usageCity property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getUsageCity() { + return usageCity; + } + + /** + * Sets the value of the usageCity property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setUsageCity(BigDecimal value) { + this.usageCity = value; + } + + /** + * Gets the value of the usageHighway property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getUsageHighway() { + return usageHighway; + } + + /** + * Sets the value of the usageHighway property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setUsageHighway(BigDecimal value) { + this.usageHighway = value; + } + + /** + * Gets the value of the usageCombined property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getUsageCombined() { + return usageCombined; + } + + /** + * Sets the value of the usageCombined property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setUsageCombined(BigDecimal value) { + this.usageCombined = value; + } + + /** + * Gets the value of the maxPower property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getMaxPower() { + return maxPower; + } + + /** + * Sets the value of the maxPower property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setMaxPower(BigDecimal value) { + this.maxPower = value; + } + + /** + * Gets the value of the maxPowerContinuous property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getMaxPowerContinuous() { + return maxPowerContinuous; + } + + /** + * Sets the value of the maxPowerContinuous property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setMaxPowerContinuous(BigDecimal value) { + this.maxPowerContinuous = value; + } + + /** + * Gets the value of the noiseLevelStationary property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getNoiseLevelStationary() { + return noiseLevelStationary; + } + + /** + * Sets the value of the noiseLevelStationary property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setNoiseLevelStationary(Integer value) { + this.noiseLevelStationary = value; + } + + /** + * Gets the value of the noiseLevelStationaryRpm property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getNoiseLevelStationaryRpm() { + return noiseLevelStationaryRpm; + } + + /** + * Sets the value of the noiseLevelStationaryRpm property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setNoiseLevelStationaryRpm(Integer value) { + this.noiseLevelStationaryRpm = value; + } + + /** + * Gets the value of the noiseLevelDriving property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getNoiseLevelDriving() { + return noiseLevelDriving; + } + + /** + * Sets the value of the noiseLevelDriving property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setNoiseLevelDriving(Integer value) { + this.noiseLevelDriving = value; + } + + /** + * Gets the value of the emissionCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmissionCode() { + return emissionCode; + } + + /** + * Sets the value of the emissionCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmissionCode(String value) { + this.emissionCode = value; + } + + /** + * Gets the value of the co2EmissionCombined property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCo2EmissionCombined() { + return co2EmissionCombined; + } + + /** + * Sets the value of the co2EmissionCombined property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCo2EmissionCombined(Integer value) { + this.co2EmissionCombined = value; + } + + /** + * Gets the value of the co2EmissionWeighted property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCo2EmissionWeighted() { + return co2EmissionWeighted; + } + + /** + * Sets the value of the co2EmissionWeighted property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCo2EmissionWeighted(Integer value) { + this.co2EmissionWeighted = value; + } + + /** + * Gets the value of the particulateEmission property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getParticulateEmission() { + return particulateEmission; + } + + /** + * Sets the value of the particulateEmission property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setParticulateEmission(BigDecimal value) { + this.particulateEmission = value; + } + + /** + * Gets the value of the particulateFilter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getParticulateFilter() { + return particulateFilter; + } + + /** + * Sets the value of the particulateFilter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setParticulateFilter(String value) { + this.particulateFilter = value; + } + + /** + * Gets the value of the emissionParticlesLight property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getEmissionParticlesLight() { + return emissionParticlesLight; + } + + /** + * Sets the value of the emissionParticlesLight property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setEmissionParticlesLight(BigDecimal value) { + this.emissionParticlesLight = value; + } + + /** + * Gets the value of the emissionParticlesHeavy property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getEmissionParticlesHeavy() { + return emissionParticlesHeavy; + } + + /** + * Sets the value of the emissionParticlesHeavy property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setEmissionParticlesHeavy(BigDecimal value) { + this.emissionParticlesHeavy = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEnvironmentArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEnvironmentArray.java new file mode 100644 index 0000000..c000fc4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEnvironmentArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleEnvironmentArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleEnvironmentArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchVehicleEnvironment" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleEnvironmentArray", propOrder = { + "item" +}) +public class DutchVehicleEnvironmentArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchVehicleEnvironment } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleFeature.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleFeature.java new file mode 100644 index 0000000..6d99b9c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleFeature.java @@ -0,0 +1,359 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleFeature complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleFeature">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="length" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="width" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="doors" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="seats" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="standing_room" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="axles" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="wheels" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="wheel_base" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="distance_front_to_clutch" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="distance_clutch_to_rear" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="speed_limit_difference" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleFeature", propOrder = { + +}) +public class DutchVehicleFeature { + + protected Integer length; + protected Integer width; + protected Integer doors; + protected Integer seats; + @XmlElement(name = "standing_room") + protected Integer standingRoom; + protected Integer weight; + protected Integer axles; + protected Integer wheels; + @XmlElement(name = "wheel_base") + protected Integer wheelBase; + @XmlElement(name = "distance_front_to_clutch") + protected Integer distanceFrontToClutch; + @XmlElement(name = "distance_clutch_to_rear") + protected Integer distanceClutchToRear; + @XmlElement(name = "speed_limit_difference") + protected Integer speedLimitDifference; + + /** + * Gets the value of the length property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getLength() { + return length; + } + + /** + * Sets the value of the length property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setLength(Integer value) { + this.length = value; + } + + /** + * Gets the value of the width property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getWidth() { + return width; + } + + /** + * Sets the value of the width property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setWidth(Integer value) { + this.width = value; + } + + /** + * Gets the value of the doors property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDoors() { + return doors; + } + + /** + * Sets the value of the doors property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDoors(Integer value) { + this.doors = value; + } + + /** + * Gets the value of the seats property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getSeats() { + return seats; + } + + /** + * Sets the value of the seats property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setSeats(Integer value) { + this.seats = value; + } + + /** + * Gets the value of the standingRoom property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getStandingRoom() { + return standingRoom; + } + + /** + * Sets the value of the standingRoom property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setStandingRoom(Integer value) { + this.standingRoom = value; + } + + /** + * Gets the value of the weight property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getWeight() { + return weight; + } + + /** + * Sets the value of the weight property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setWeight(Integer value) { + this.weight = value; + } + + /** + * Gets the value of the axles property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getAxles() { + return axles; + } + + /** + * Sets the value of the axles property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setAxles(Integer value) { + this.axles = value; + } + + /** + * Gets the value of the wheels property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getWheels() { + return wheels; + } + + /** + * Sets the value of the wheels property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setWheels(Integer value) { + this.wheels = value; + } + + /** + * Gets the value of the wheelBase property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getWheelBase() { + return wheelBase; + } + + /** + * Sets the value of the wheelBase property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setWheelBase(Integer value) { + this.wheelBase = value; + } + + /** + * Gets the value of the distanceFrontToClutch property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDistanceFrontToClutch() { + return distanceFrontToClutch; + } + + /** + * Sets the value of the distanceFrontToClutch property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDistanceFrontToClutch(Integer value) { + this.distanceFrontToClutch = value; + } + + /** + * Gets the value of the distanceClutchToRear property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDistanceClutchToRear() { + return distanceClutchToRear; + } + + /** + * Sets the value of the distanceClutchToRear property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDistanceClutchToRear(Integer value) { + this.distanceClutchToRear = value; + } + + /** + * Gets the value of the speedLimitDifference property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getSpeedLimitDifference() { + return speedLimitDifference; + } + + /** + * Sets the value of the speedLimitDifference property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setSpeedLimitDifference(Integer value) { + this.speedLimitDifference = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetMarketValueRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetMarketValueRequestType.java new file mode 100644 index 0000000..947fa2f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetMarketValueRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchVehicleGetMarketValueRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchVehicleGetMarketValueRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchVehicleGetMarketValueRequestType", propOrder = { + +}) +public class DutchVehicleGetMarketValueRequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetMarketValueResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetMarketValueResponseType.java new file mode 100644 index 0000000..6e10f68 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetMarketValueResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchVehicleGetMarketValueResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchVehicleGetMarketValueResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchVehicleMarketValue"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchVehicleGetMarketValueResponseType", propOrder = { + +}) +public class DutchVehicleGetMarketValueResponseType { + + @XmlElement(required = true) + protected DutchVehicleMarketValue out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchVehicleMarketValue } + * + */ + public DutchVehicleMarketValue getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchVehicleMarketValue } + * + */ + public void setOut(DutchVehicleMarketValue value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetOwnerHistoryRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetOwnerHistoryRequestType.java new file mode 100644 index 0000000..7a50a9a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetOwnerHistoryRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchVehicleGetOwnerHistoryRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchVehicleGetOwnerHistoryRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchVehicleGetOwnerHistoryRequestType", propOrder = { + +}) +public class DutchVehicleGetOwnerHistoryRequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetOwnerHistoryResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetOwnerHistoryResponseType.java new file mode 100644 index 0000000..ad9fc1b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetOwnerHistoryResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchVehicleGetOwnerHistoryResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchVehicleGetOwnerHistoryResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchVehicleOwnerHistory"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchVehicleGetOwnerHistoryResponseType", propOrder = { + +}) +public class DutchVehicleGetOwnerHistoryResponseType { + + @XmlElement(required = true) + protected DutchVehicleOwnerHistory out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchVehicleOwnerHistory } + * + */ + public DutchVehicleOwnerHistory getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchVehicleOwnerHistory } + * + */ + public void setOut(DutchVehicleOwnerHistory value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetPurchaseReferenceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetPurchaseReferenceRequestType.java new file mode 100644 index 0000000..d396ab0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetPurchaseReferenceRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchVehicleGetPurchaseReferenceRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchVehicleGetPurchaseReferenceRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchVehicleGetPurchaseReferenceRequestType", propOrder = { + +}) +public class DutchVehicleGetPurchaseReferenceRequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetPurchaseReferenceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetPurchaseReferenceResponseType.java new file mode 100644 index 0000000..badabe5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetPurchaseReferenceResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchVehicleGetPurchaseReferenceResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchVehicleGetPurchaseReferenceResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchVehiclePurchaseReference"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchVehicleGetPurchaseReferenceResponseType", propOrder = { + +}) +public class DutchVehicleGetPurchaseReferenceResponseType { + + @XmlElement(required = true) + protected DutchVehiclePurchaseReference out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchVehiclePurchaseReference } + * + */ + public DutchVehiclePurchaseReference getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchVehiclePurchaseReference } + * + */ + public void setOut(DutchVehiclePurchaseReference value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleRequestType.java new file mode 100644 index 0000000..42ad0a5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchVehicleGetVehicleRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchVehicleGetVehicleRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchVehicleGetVehicleRequestType", propOrder = { + +}) +public class DutchVehicleGetVehicleRequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleResponseType.java new file mode 100644 index 0000000..e4f2005 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchVehicleGetVehicleResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchVehicleGetVehicleResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchVehicle"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchVehicleGetVehicleResponseType", propOrder = { + +}) +public class DutchVehicleGetVehicleResponseType { + + @XmlElement(required = true) + protected DutchVehicle out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchVehicle } + * + */ + public DutchVehicle getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchVehicle } + * + */ + public void setOut(DutchVehicle value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleV2RequestType.java new file mode 100644 index 0000000..1a2b287 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleV2RequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchVehicleGetVehicleV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchVehicleGetVehicleV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchVehicleGetVehicleV2RequestType", propOrder = { + +}) +public class DutchVehicleGetVehicleV2RequestType { + + @XmlElement(name = "license_plate", required = true) + protected String licensePlate; + + /** + * Gets the value of the licensePlate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLicensePlate() { + return licensePlate; + } + + /** + * Sets the value of the licensePlate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLicensePlate(String value) { + this.licensePlate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleV2ResponseType.java new file mode 100644 index 0000000..95f1b37 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for dutchVehicleGetVehicleV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="dutchVehicleGetVehicleV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}DutchVehicleV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "dutchVehicleGetVehicleV2ResponseType", propOrder = { + +}) +public class DutchVehicleGetVehicleV2ResponseType { + + @XmlElement(required = true) + protected DutchVehicleV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link DutchVehicleV2 } + * + */ + public DutchVehicleV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link DutchVehicleV2 } + * + */ + public void setOut(DutchVehicleV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleMarketValue.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleMarketValue.java new file mode 100644 index 0000000..69bc7ff --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleMarketValue.java @@ -0,0 +1,67 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleMarketValue complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleMarketValue">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="valuations" type="{http://www.webservices.nl/soap/}DutchVehiclePriceValuationArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleMarketValue", propOrder = { + +}) +public class DutchVehicleMarketValue { + + protected DutchVehiclePriceValuationArray valuations; + + /** + * Gets the value of the valuations property. + * + * @return + * possible object is + * {@link DutchVehiclePriceValuationArray } + * + */ + public DutchVehiclePriceValuationArray getValuations() { + return valuations; + } + + /** + * Sets the value of the valuations property. + * + * @param value + * allowed object is + * {@link DutchVehiclePriceValuationArray } + * + */ + public void setValuations(DutchVehiclePriceValuationArray value) { + this.valuations = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleMileage.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleMileage.java new file mode 100644 index 0000000..6fd5533 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleMileage.java @@ -0,0 +1,115 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleMileage complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleMileage">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="registration_year" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="indication" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleMileage", propOrder = { + +}) +public class DutchVehicleMileage { + + @XmlElement(name = "registration_year") + protected int registrationYear; + @XmlElement(required = true) + protected String indication; + @XmlElement(required = true) + protected String description; + + /** + * Gets the value of the registrationYear property. + * + */ + public int getRegistrationYear() { + return registrationYear; + } + + /** + * Sets the value of the registrationYear property. + * + */ + public void setRegistrationYear(int value) { + this.registrationYear = value; + } + + /** + * Gets the value of the indication property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIndication() { + return indication; + } + + /** + * Sets the value of the indication property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIndication(String value) { + this.indication = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnerHistory.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnerHistory.java new file mode 100644 index 0000000..4fb348b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnerHistory.java @@ -0,0 +1,67 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleOwnerHistory complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleOwnerHistory">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="ownerships" type="{http://www.webservices.nl/soap/}DutchVehicleOwnershipArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleOwnerHistory", propOrder = { + +}) +public class DutchVehicleOwnerHistory { + + protected DutchVehicleOwnershipArray ownerships; + + /** + * Gets the value of the ownerships property. + * + * @return + * possible object is + * {@link DutchVehicleOwnershipArray } + * + */ + public DutchVehicleOwnershipArray getOwnerships() { + return ownerships; + } + + /** + * Sets the value of the ownerships property. + * + * @param value + * allowed object is + * {@link DutchVehicleOwnershipArray } + * + */ + public void setOwnerships(DutchVehicleOwnershipArray value) { + this.ownerships = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnership.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnership.java new file mode 100644 index 0000000..0a269d6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnership.java @@ -0,0 +1,145 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchVehicleOwnership complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleOwnership">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_start" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="date_end" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="duration" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleOwnership", propOrder = { + +}) +public class DutchVehicleOwnership { + + @XmlElement(required = true) + protected String type; + @XmlElement(name = "date_start", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateStart; + @XmlElement(name = "date_end") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateEnd; + protected int duration; + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the dateStart property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateStart() { + return dateStart; + } + + /** + * Sets the value of the dateStart property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateStart(XMLGregorianCalendar value) { + this.dateStart = value; + } + + /** + * Gets the value of the dateEnd property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateEnd() { + return dateEnd; + } + + /** + * Sets the value of the dateEnd property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateEnd(XMLGregorianCalendar value) { + this.dateEnd = value; + } + + /** + * Gets the value of the duration property. + * + */ + public int getDuration() { + return duration; + } + + /** + * Sets the value of the duration property. + * + */ + public void setDuration(int value) { + this.duration = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnershipArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnershipArray.java new file mode 100644 index 0000000..a4cf6a8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnershipArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleOwnershipArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleOwnershipArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchVehicleOwnership" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleOwnershipArray", propOrder = { + "item" +}) +public class DutchVehicleOwnershipArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchVehicleOwnership } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePrice.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePrice.java new file mode 100644 index 0000000..8017b81 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePrice.java @@ -0,0 +1,178 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehiclePrice complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehiclePrice">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="purchase_price" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
+ *         <element name="vehicle_purchase_tax" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="value_added_tax" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="net_purchase_price" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="calculation_method" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehiclePrice", propOrder = { + +}) +public class DutchVehiclePrice { + + @XmlElement(name = "purchase_price", required = true) + protected BigDecimal purchasePrice; + @XmlElement(name = "vehicle_purchase_tax") + protected BigDecimal vehiclePurchaseTax; + @XmlElement(name = "value_added_tax") + protected BigDecimal valueAddedTax; + @XmlElement(name = "net_purchase_price") + protected BigDecimal netPurchasePrice; + @XmlElement(name = "calculation_method", required = true) + protected String calculationMethod; + + /** + * Gets the value of the purchasePrice property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getPurchasePrice() { + return purchasePrice; + } + + /** + * Sets the value of the purchasePrice property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setPurchasePrice(BigDecimal value) { + this.purchasePrice = value; + } + + /** + * Gets the value of the vehiclePurchaseTax property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getVehiclePurchaseTax() { + return vehiclePurchaseTax; + } + + /** + * Sets the value of the vehiclePurchaseTax property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setVehiclePurchaseTax(BigDecimal value) { + this.vehiclePurchaseTax = value; + } + + /** + * Gets the value of the valueAddedTax property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getValueAddedTax() { + return valueAddedTax; + } + + /** + * Sets the value of the valueAddedTax property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setValueAddedTax(BigDecimal value) { + this.valueAddedTax = value; + } + + /** + * Gets the value of the netPurchasePrice property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getNetPurchasePrice() { + return netPurchasePrice; + } + + /** + * Sets the value of the netPurchasePrice property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setNetPurchasePrice(BigDecimal value) { + this.netPurchasePrice = value; + } + + /** + * Gets the value of the calculationMethod property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCalculationMethod() { + return calculationMethod; + } + + /** + * Sets the value of the calculationMethod property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCalculationMethod(String value) { + this.calculationMethod = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePriceValuation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePriceValuation.java new file mode 100644 index 0000000..4ba04b1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePriceValuation.java @@ -0,0 +1,226 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehiclePriceValuation complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehiclePriceValuation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="brand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="retail" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="exchange" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="trade" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="calculation_method" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehiclePriceValuation", propOrder = { + +}) +public class DutchVehiclePriceValuation { + + protected String brand; + protected String model; + protected String type; + protected BigInteger retail; + protected BigInteger exchange; + protected BigInteger trade; + @XmlElement(name = "calculation_method") + protected String calculationMethod; + + /** + * Gets the value of the brand property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBrand() { + return brand; + } + + /** + * Sets the value of the brand property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBrand(String value) { + this.brand = value; + } + + /** + * Gets the value of the model property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getModel() { + return model; + } + + /** + * Sets the value of the model property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setModel(String value) { + this.model = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the retail property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getRetail() { + return retail; + } + + /** + * Sets the value of the retail property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setRetail(BigInteger value) { + this.retail = value; + } + + /** + * Gets the value of the exchange property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getExchange() { + return exchange; + } + + /** + * Sets the value of the exchange property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setExchange(BigInteger value) { + this.exchange = value; + } + + /** + * Gets the value of the trade property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getTrade() { + return trade; + } + + /** + * Sets the value of the trade property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setTrade(BigInteger value) { + this.trade = value; + } + + /** + * Gets the value of the calculationMethod property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCalculationMethod() { + return calculationMethod; + } + + /** + * Sets the value of the calculationMethod property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCalculationMethod(String value) { + this.calculationMethod = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePriceValuationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePriceValuationArray.java new file mode 100644 index 0000000..34c864c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePriceValuationArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehiclePriceValuationArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehiclePriceValuationArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchVehiclePriceValuation" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehiclePriceValuationArray", propOrder = { + "item" +}) +public class DutchVehiclePriceValuationArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchVehiclePriceValuation } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePurchase.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePurchase.java new file mode 100644 index 0000000..f7e62b2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePurchase.java @@ -0,0 +1,99 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchVehiclePurchase complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehiclePurchase">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="reference_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="price_data" type="{http://www.webservices.nl/soap/}DutchVehiclePrice"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehiclePurchase", propOrder = { + +}) +public class DutchVehiclePurchase { + + @XmlElement(name = "reference_date", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar referenceDate; + @XmlElement(name = "price_data", required = true) + protected DutchVehiclePrice priceData; + + /** + * Gets the value of the referenceDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getReferenceDate() { + return referenceDate; + } + + /** + * Sets the value of the referenceDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setReferenceDate(XMLGregorianCalendar value) { + this.referenceDate = value; + } + + /** + * Gets the value of the priceData property. + * + * @return + * possible object is + * {@link DutchVehiclePrice } + * + */ + public DutchVehiclePrice getPriceData() { + return priceData; + } + + /** + * Sets the value of the priceData property. + * + * @param value + * allowed object is + * {@link DutchVehiclePrice } + * + */ + public void setPriceData(DutchVehiclePrice value) { + this.priceData = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePurchaseReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePurchaseReference.java new file mode 100644 index 0000000..1708521 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePurchaseReference.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehiclePurchaseReference complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehiclePurchaseReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="basic_data" type="{http://www.webservices.nl/soap/}DutchVehicleData"/>
+ *         <element name="reference" type="{http://www.webservices.nl/soap/}DutchVehicleReference"/>
+ *         <element name="purchase_data" type="{http://www.webservices.nl/soap/}DutchVehiclePurchase"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehiclePurchaseReference", propOrder = { + +}) +public class DutchVehiclePurchaseReference { + + @XmlElement(name = "basic_data", required = true) + protected DutchVehicleData basicData; + @XmlElement(required = true) + protected DutchVehicleReference reference; + @XmlElement(name = "purchase_data", required = true) + protected DutchVehiclePurchase purchaseData; + + /** + * Gets the value of the basicData property. + * + * @return + * possible object is + * {@link DutchVehicleData } + * + */ + public DutchVehicleData getBasicData() { + return basicData; + } + + /** + * Sets the value of the basicData property. + * + * @param value + * allowed object is + * {@link DutchVehicleData } + * + */ + public void setBasicData(DutchVehicleData value) { + this.basicData = value; + } + + /** + * Gets the value of the reference property. + * + * @return + * possible object is + * {@link DutchVehicleReference } + * + */ + public DutchVehicleReference getReference() { + return reference; + } + + /** + * Sets the value of the reference property. + * + * @param value + * allowed object is + * {@link DutchVehicleReference } + * + */ + public void setReference(DutchVehicleReference value) { + this.reference = value; + } + + /** + * Gets the value of the purchaseData property. + * + * @return + * possible object is + * {@link DutchVehiclePurchase } + * + */ + public DutchVehiclePurchase getPurchaseData() { + return purchaseData; + } + + /** + * Sets the value of the purchaseData property. + * + * @param value + * allowed object is + * {@link DutchVehiclePurchase } + * + */ + public void setPurchaseData(DutchVehiclePurchase value) { + this.purchaseData = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRecall.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRecall.java new file mode 100644 index 0000000..c0bed3d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRecall.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleRecall complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleRecall">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="defects" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleRecall", propOrder = { + +}) +public class DutchVehicleRecall { + + protected String status; + protected String defects; + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + + /** + * Gets the value of the defects property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDefects() { + return defects; + } + + /** + * Sets the value of the defects property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDefects(String value) { + this.defects = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleReference.java new file mode 100644 index 0000000..2ebc134 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleReference.java @@ -0,0 +1,205 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchVehicleReference complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_first_admission" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="year_manufactored" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="fuel_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="maximum_mass_payload" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleReference", propOrder = { + +}) +public class DutchVehicleReference { + + protected String version; + @XmlElement(name = "date_first_admission") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFirstAdmission; + @XmlElement(name = "year_manufactored") + protected Integer yearManufactored; + @XmlElement(name = "fuel_type") + protected String fuelType; + protected Integer weight; + @XmlElement(name = "maximum_mass_payload") + protected Integer maximumMassPayload; + + /** + * Gets the value of the version property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVersion() { + return version; + } + + /** + * Sets the value of the version property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVersion(String value) { + this.version = value; + } + + /** + * Gets the value of the dateFirstAdmission property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFirstAdmission() { + return dateFirstAdmission; + } + + /** + * Sets the value of the dateFirstAdmission property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFirstAdmission(XMLGregorianCalendar value) { + this.dateFirstAdmission = value; + } + + /** + * Gets the value of the yearManufactored property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getYearManufactored() { + return yearManufactored; + } + + /** + * Sets the value of the yearManufactored property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setYearManufactored(Integer value) { + this.yearManufactored = value; + } + + /** + * Gets the value of the fuelType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFuelType() { + return fuelType; + } + + /** + * Sets the value of the fuelType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFuelType(String value) { + this.fuelType = value; + } + + /** + * Gets the value of the weight property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getWeight() { + return weight; + } + + /** + * Sets the value of the weight property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setWeight(Integer value) { + this.weight = value; + } + + /** + * Gets the value of the maximumMassPayload property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMaximumMassPayload() { + return maximumMassPayload; + } + + /** + * Sets the value of the maximumMassPayload property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMaximumMassPayload(Integer value) { + this.maximumMassPayload = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRegistration.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRegistration.java new file mode 100644 index 0000000..d6197f4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRegistration.java @@ -0,0 +1,238 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for DutchVehicleRegistration complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleRegistration">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="date_apk_due_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="date_first_issuing" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="date_first_admission" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="date_suspension_end_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="date_tachograph_expiration" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="date_latest_name_registration" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="ownerships" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleRegistration", propOrder = { + +}) +public class DutchVehicleRegistration { + + @XmlElement(name = "date_apk_due_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateApkDueDate; + @XmlElement(name = "date_first_issuing") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFirstIssuing; + @XmlElement(name = "date_first_admission") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFirstAdmission; + @XmlElement(name = "date_suspension_end_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateSuspensionEndDate; + @XmlElement(name = "date_tachograph_expiration") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateTachographExpiration; + @XmlElement(name = "date_latest_name_registration") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateLatestNameRegistration; + protected Integer ownerships; + + /** + * Gets the value of the dateApkDueDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateApkDueDate() { + return dateApkDueDate; + } + + /** + * Sets the value of the dateApkDueDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateApkDueDate(XMLGregorianCalendar value) { + this.dateApkDueDate = value; + } + + /** + * Gets the value of the dateFirstIssuing property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFirstIssuing() { + return dateFirstIssuing; + } + + /** + * Sets the value of the dateFirstIssuing property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFirstIssuing(XMLGregorianCalendar value) { + this.dateFirstIssuing = value; + } + + /** + * Gets the value of the dateFirstAdmission property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFirstAdmission() { + return dateFirstAdmission; + } + + /** + * Sets the value of the dateFirstAdmission property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFirstAdmission(XMLGregorianCalendar value) { + this.dateFirstAdmission = value; + } + + /** + * Gets the value of the dateSuspensionEndDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateSuspensionEndDate() { + return dateSuspensionEndDate; + } + + /** + * Sets the value of the dateSuspensionEndDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateSuspensionEndDate(XMLGregorianCalendar value) { + this.dateSuspensionEndDate = value; + } + + /** + * Gets the value of the dateTachographExpiration property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateTachographExpiration() { + return dateTachographExpiration; + } + + /** + * Sets the value of the dateTachographExpiration property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateTachographExpiration(XMLGregorianCalendar value) { + this.dateTachographExpiration = value; + } + + /** + * Gets the value of the dateLatestNameRegistration property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateLatestNameRegistration() { + return dateLatestNameRegistration; + } + + /** + * Sets the value of the dateLatestNameRegistration property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateLatestNameRegistration(XMLGregorianCalendar value) { + this.dateLatestNameRegistration = value; + } + + /** + * Gets the value of the ownerships property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getOwnerships() { + return ownerships; + } + + /** + * Sets the value of the ownerships property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setOwnerships(Integer value) { + this.ownerships = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRemark.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRemark.java new file mode 100644 index 0000000..2fbb391 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRemark.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleRemark complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleRemark">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="vehicle_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="variable_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleRemark", propOrder = { + +}) +public class DutchVehicleRemark { + + @XmlElement(name = "vehicle_code") + protected String vehicleCode; + @XmlElement(name = "variable_code") + protected String variableCode; + protected String description; + + /** + * Gets the value of the vehicleCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVehicleCode() { + return vehicleCode; + } + + /** + * Sets the value of the vehicleCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVehicleCode(String value) { + this.vehicleCode = value; + } + + /** + * Gets the value of the variableCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVariableCode() { + return variableCode; + } + + /** + * Sets the value of the variableCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVariableCode(String value) { + this.variableCode = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRemarkArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRemarkArray.java new file mode 100644 index 0000000..ab9ad98 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRemarkArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleRemarkArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleRemarkArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}DutchVehicleRemark" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleRemarkArray", propOrder = { + "item" +}) +public class DutchVehicleRemarkArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link DutchVehicleRemark } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleStatus.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleStatus.java new file mode 100644 index 0000000..06ca6e6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleStatus.java @@ -0,0 +1,199 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleStatus complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleStatus">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="insured" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="awaiting_inspection" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="missed" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="stolen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="exported" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="suspended" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleStatus", propOrder = { + +}) +public class DutchVehicleStatus { + + protected Boolean insured; + @XmlElement(name = "awaiting_inspection") + protected Boolean awaitingInspection; + protected Boolean missed; + protected Boolean stolen; + protected Boolean exported; + protected Boolean suspended; + + /** + * Gets the value of the insured property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isInsured() { + return insured; + } + + /** + * Sets the value of the insured property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setInsured(Boolean value) { + this.insured = value; + } + + /** + * Gets the value of the awaitingInspection property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isAwaitingInspection() { + return awaitingInspection; + } + + /** + * Sets the value of the awaitingInspection property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setAwaitingInspection(Boolean value) { + this.awaitingInspection = value; + } + + /** + * Gets the value of the missed property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isMissed() { + return missed; + } + + /** + * Sets the value of the missed property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setMissed(Boolean value) { + this.missed = value; + } + + /** + * Gets the value of the stolen property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isStolen() { + return stolen; + } + + /** + * Sets the value of the stolen property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setStolen(Boolean value) { + this.stolen = value; + } + + /** + * Gets the value of the exported property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isExported() { + return exported; + } + + /** + * Sets the value of the exported property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setExported(Boolean value) { + this.exported = value; + } + + /** + * Gets the value of the suspended property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isSuspended() { + return suspended; + } + + /** + * Sets the value of the suspended property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setSuspended(Boolean value) { + this.suspended = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTaxData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTaxData.java new file mode 100644 index 0000000..a73ddde --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTaxData.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleTaxData complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleTaxData">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="base" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleTaxData", propOrder = { + +}) +public class DutchVehicleTaxData { + + protected Integer amount; + protected String base; + + /** + * Gets the value of the amount property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getAmount() { + return amount; + } + + /** + * Sets the value of the amount property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setAmount(Integer value) { + this.amount = value; + } + + /** + * Gets the value of the base property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBase() { + return base; + } + + /** + * Sets the value of the base property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBase(String value) { + this.base = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTechnicalWeight.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTechnicalWeight.java new file mode 100644 index 0000000..1682be2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTechnicalWeight.java @@ -0,0 +1,258 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleTechnicalWeight complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleTechnicalWeight">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="mass_ready" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="gross_vehicle_mass" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="maximum_mass_payload" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="maximum_mass_unbraked" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="maximum_mass_braked" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="maximum_mass_trailer_braked" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="maximum_mass_self_braked" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="maximum_mass_axle_braked" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleTechnicalWeight", propOrder = { + +}) +public class DutchVehicleTechnicalWeight { + + @XmlElement(name = "mass_ready") + protected Integer massReady; + @XmlElement(name = "gross_vehicle_mass") + protected Integer grossVehicleMass; + @XmlElement(name = "maximum_mass_payload") + protected Integer maximumMassPayload; + @XmlElement(name = "maximum_mass_unbraked") + protected Integer maximumMassUnbraked; + @XmlElement(name = "maximum_mass_braked") + protected Integer maximumMassBraked; + @XmlElement(name = "maximum_mass_trailer_braked") + protected Integer maximumMassTrailerBraked; + @XmlElement(name = "maximum_mass_self_braked") + protected Integer maximumMassSelfBraked; + @XmlElement(name = "maximum_mass_axle_braked") + protected Integer maximumMassAxleBraked; + + /** + * Gets the value of the massReady property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMassReady() { + return massReady; + } + + /** + * Sets the value of the massReady property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMassReady(Integer value) { + this.massReady = value; + } + + /** + * Gets the value of the grossVehicleMass property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getGrossVehicleMass() { + return grossVehicleMass; + } + + /** + * Sets the value of the grossVehicleMass property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setGrossVehicleMass(Integer value) { + this.grossVehicleMass = value; + } + + /** + * Gets the value of the maximumMassPayload property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMaximumMassPayload() { + return maximumMassPayload; + } + + /** + * Sets the value of the maximumMassPayload property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMaximumMassPayload(Integer value) { + this.maximumMassPayload = value; + } + + /** + * Gets the value of the maximumMassUnbraked property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMaximumMassUnbraked() { + return maximumMassUnbraked; + } + + /** + * Sets the value of the maximumMassUnbraked property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMaximumMassUnbraked(Integer value) { + this.maximumMassUnbraked = value; + } + + /** + * Gets the value of the maximumMassBraked property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMaximumMassBraked() { + return maximumMassBraked; + } + + /** + * Sets the value of the maximumMassBraked property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMaximumMassBraked(Integer value) { + this.maximumMassBraked = value; + } + + /** + * Gets the value of the maximumMassTrailerBraked property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMaximumMassTrailerBraked() { + return maximumMassTrailerBraked; + } + + /** + * Sets the value of the maximumMassTrailerBraked property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMaximumMassTrailerBraked(Integer value) { + this.maximumMassTrailerBraked = value; + } + + /** + * Gets the value of the maximumMassSelfBraked property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMaximumMassSelfBraked() { + return maximumMassSelfBraked; + } + + /** + * Sets the value of the maximumMassSelfBraked property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMaximumMassSelfBraked(Integer value) { + this.maximumMassSelfBraked = value; + } + + /** + * Gets the value of the maximumMassAxleBraked property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMaximumMassAxleBraked() { + return maximumMassAxleBraked; + } + + /** + * Sets the value of the maximumMassAxleBraked property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMaximumMassAxleBraked(Integer value) { + this.maximumMassAxleBraked = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTypeApproval.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTypeApproval.java new file mode 100644 index 0000000..073c90a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTypeApproval.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleTypeApproval complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleTypeApproval">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="type_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="version_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="type_approval_mark" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleTypeApproval", propOrder = { + +}) +public class DutchVehicleTypeApproval { + + @XmlElement(name = "type_code") + protected String typeCode; + @XmlElement(name = "version_code") + protected String versionCode; + @XmlElement(name = "type_approval_mark") + protected String typeApprovalMark; + + /** + * Gets the value of the typeCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTypeCode() { + return typeCode; + } + + /** + * Sets the value of the typeCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTypeCode(String value) { + this.typeCode = value; + } + + /** + * Gets the value of the versionCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVersionCode() { + return versionCode; + } + + /** + * Sets the value of the versionCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVersionCode(String value) { + this.versionCode = value; + } + + /** + * Gets the value of the typeApprovalMark property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTypeApprovalMark() { + return typeApprovalMark; + } + + /** + * Sets the value of the typeApprovalMark property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTypeApprovalMark(String value) { + this.typeApprovalMark = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleV2.java new file mode 100644 index 0000000..761d1b0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleV2.java @@ -0,0 +1,412 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for DutchVehicleV2 complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="DutchVehicleV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="basic_data" type="{http://www.webservices.nl/soap/}DutchVehicleData"/>
+ *         <element name="status" type="{http://www.webservices.nl/soap/}DutchVehicleStatus" minOccurs="0"/>
+ *         <element name="registration" type="{http://www.webservices.nl/soap/}DutchVehicleRegistration" minOccurs="0"/>
+ *         <element name="details" type="{http://www.webservices.nl/soap/}DutchVehicleFeature" minOccurs="0"/>
+ *         <element name="tax" type="{http://www.webservices.nl/soap/}DutchVehicleTaxData" minOccurs="0"/>
+ *         <element name="technical_weight" type="{http://www.webservices.nl/soap/}DutchVehicleTechnicalWeight" minOccurs="0"/>
+ *         <element name="engine" type="{http://www.webservices.nl/soap/}DutchVehicleEngine" minOccurs="0"/>
+ *         <element name="environmental_impact" type="{http://www.webservices.nl/soap/}DutchVehicleEnvironmentArray" minOccurs="0"/>
+ *         <element name="axle_information" type="{http://www.webservices.nl/soap/}DutchVehicleAxleArray" minOccurs="0"/>
+ *         <element name="type_approval" type="{http://www.webservices.nl/soap/}DutchVehicleTypeApproval" minOccurs="0"/>
+ *         <element name="body_approval" type="{http://www.webservices.nl/soap/}DutchVehicleBodyApprovalArray" minOccurs="0"/>
+ *         <element name="remark" type="{http://www.webservices.nl/soap/}DutchVehicleRemarkArray" minOccurs="0"/>
+ *         <element name="recall" type="{http://www.webservices.nl/soap/}DutchVehicleRecall" minOccurs="0"/>
+ *         <element name="mileage" type="{http://www.webservices.nl/soap/}DutchVehicleMileage" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "DutchVehicleV2", propOrder = { + +}) +public class DutchVehicleV2 { + + @XmlElement(name = "basic_data", required = true) + protected DutchVehicleData basicData; + protected DutchVehicleStatus status; + protected DutchVehicleRegistration registration; + protected DutchVehicleFeature details; + protected DutchVehicleTaxData tax; + @XmlElement(name = "technical_weight") + protected DutchVehicleTechnicalWeight technicalWeight; + protected DutchVehicleEngine engine; + @XmlElement(name = "environmental_impact") + protected DutchVehicleEnvironmentArray environmentalImpact; + @XmlElement(name = "axle_information") + protected DutchVehicleAxleArray axleInformation; + @XmlElement(name = "type_approval") + protected DutchVehicleTypeApproval typeApproval; + @XmlElement(name = "body_approval") + protected DutchVehicleBodyApprovalArray bodyApproval; + protected DutchVehicleRemarkArray remark; + protected DutchVehicleRecall recall; + protected DutchVehicleMileage mileage; + + /** + * Gets the value of the basicData property. + * + * @return + * possible object is + * {@link DutchVehicleData } + * + */ + public DutchVehicleData getBasicData() { + return basicData; + } + + /** + * Sets the value of the basicData property. + * + * @param value + * allowed object is + * {@link DutchVehicleData } + * + */ + public void setBasicData(DutchVehicleData value) { + this.basicData = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link DutchVehicleStatus } + * + */ + public DutchVehicleStatus getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link DutchVehicleStatus } + * + */ + public void setStatus(DutchVehicleStatus value) { + this.status = value; + } + + /** + * Gets the value of the registration property. + * + * @return + * possible object is + * {@link DutchVehicleRegistration } + * + */ + public DutchVehicleRegistration getRegistration() { + return registration; + } + + /** + * Sets the value of the registration property. + * + * @param value + * allowed object is + * {@link DutchVehicleRegistration } + * + */ + public void setRegistration(DutchVehicleRegistration value) { + this.registration = value; + } + + /** + * Gets the value of the details property. + * + * @return + * possible object is + * {@link DutchVehicleFeature } + * + */ + public DutchVehicleFeature getDetails() { + return details; + } + + /** + * Sets the value of the details property. + * + * @param value + * allowed object is + * {@link DutchVehicleFeature } + * + */ + public void setDetails(DutchVehicleFeature value) { + this.details = value; + } + + /** + * Gets the value of the tax property. + * + * @return + * possible object is + * {@link DutchVehicleTaxData } + * + */ + public DutchVehicleTaxData getTax() { + return tax; + } + + /** + * Sets the value of the tax property. + * + * @param value + * allowed object is + * {@link DutchVehicleTaxData } + * + */ + public void setTax(DutchVehicleTaxData value) { + this.tax = value; + } + + /** + * Gets the value of the technicalWeight property. + * + * @return + * possible object is + * {@link DutchVehicleTechnicalWeight } + * + */ + public DutchVehicleTechnicalWeight getTechnicalWeight() { + return technicalWeight; + } + + /** + * Sets the value of the technicalWeight property. + * + * @param value + * allowed object is + * {@link DutchVehicleTechnicalWeight } + * + */ + public void setTechnicalWeight(DutchVehicleTechnicalWeight value) { + this.technicalWeight = value; + } + + /** + * Gets the value of the engine property. + * + * @return + * possible object is + * {@link DutchVehicleEngine } + * + */ + public DutchVehicleEngine getEngine() { + return engine; + } + + /** + * Sets the value of the engine property. + * + * @param value + * allowed object is + * {@link DutchVehicleEngine } + * + */ + public void setEngine(DutchVehicleEngine value) { + this.engine = value; + } + + /** + * Gets the value of the environmentalImpact property. + * + * @return + * possible object is + * {@link DutchVehicleEnvironmentArray } + * + */ + public DutchVehicleEnvironmentArray getEnvironmentalImpact() { + return environmentalImpact; + } + + /** + * Sets the value of the environmentalImpact property. + * + * @param value + * allowed object is + * {@link DutchVehicleEnvironmentArray } + * + */ + public void setEnvironmentalImpact(DutchVehicleEnvironmentArray value) { + this.environmentalImpact = value; + } + + /** + * Gets the value of the axleInformation property. + * + * @return + * possible object is + * {@link DutchVehicleAxleArray } + * + */ + public DutchVehicleAxleArray getAxleInformation() { + return axleInformation; + } + + /** + * Sets the value of the axleInformation property. + * + * @param value + * allowed object is + * {@link DutchVehicleAxleArray } + * + */ + public void setAxleInformation(DutchVehicleAxleArray value) { + this.axleInformation = value; + } + + /** + * Gets the value of the typeApproval property. + * + * @return + * possible object is + * {@link DutchVehicleTypeApproval } + * + */ + public DutchVehicleTypeApproval getTypeApproval() { + return typeApproval; + } + + /** + * Sets the value of the typeApproval property. + * + * @param value + * allowed object is + * {@link DutchVehicleTypeApproval } + * + */ + public void setTypeApproval(DutchVehicleTypeApproval value) { + this.typeApproval = value; + } + + /** + * Gets the value of the bodyApproval property. + * + * @return + * possible object is + * {@link DutchVehicleBodyApprovalArray } + * + */ + public DutchVehicleBodyApprovalArray getBodyApproval() { + return bodyApproval; + } + + /** + * Sets the value of the bodyApproval property. + * + * @param value + * allowed object is + * {@link DutchVehicleBodyApprovalArray } + * + */ + public void setBodyApproval(DutchVehicleBodyApprovalArray value) { + this.bodyApproval = value; + } + + /** + * Gets the value of the remark property. + * + * @return + * possible object is + * {@link DutchVehicleRemarkArray } + * + */ + public DutchVehicleRemarkArray getRemark() { + return remark; + } + + /** + * Sets the value of the remark property. + * + * @param value + * allowed object is + * {@link DutchVehicleRemarkArray } + * + */ + public void setRemark(DutchVehicleRemarkArray value) { + this.remark = value; + } + + /** + * Gets the value of the recall property. + * + * @return + * possible object is + * {@link DutchVehicleRecall } + * + */ + public DutchVehicleRecall getRecall() { + return recall; + } + + /** + * Sets the value of the recall property. + * + * @param value + * allowed object is + * {@link DutchVehicleRecall } + * + */ + public void setRecall(DutchVehicleRecall value) { + this.recall = value; + } + + /** + * Gets the value of the mileage property. + * + * @return + * possible object is + * {@link DutchVehicleMileage } + * + */ + public DutchVehicleMileage getMileage() { + return mileage; + } + + /** + * Sets the value of the mileage property. + * + * @param value + * allowed object is + * {@link DutchVehicleMileage } + * + */ + public void setMileage(DutchVehicleMileage value) { + this.mileage = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EDRScore.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EDRScore.java new file mode 100644 index 0000000..128d4ac --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EDRScore.java @@ -0,0 +1,118 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for EDRScore complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="EDRScore">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="person_score" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="region_score" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="edr_region_score" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="weighted_score" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "EDRScore", propOrder = { + +}) +public class EDRScore { + + @XmlElement(name = "person_score") + protected int personScore; + @XmlElement(name = "region_score") + protected int regionScore; + @XmlElement(name = "edr_region_score") + protected int edrRegionScore; + @XmlElement(name = "weighted_score") + protected int weightedScore; + + /** + * Gets the value of the personScore property. + * + */ + public int getPersonScore() { + return personScore; + } + + /** + * Sets the value of the personScore property. + * + */ + public void setPersonScore(int value) { + this.personScore = value; + } + + /** + * Gets the value of the regionScore property. + * + */ + public int getRegionScore() { + return regionScore; + } + + /** + * Sets the value of the regionScore property. + * + */ + public void setRegionScore(int value) { + this.regionScore = value; + } + + /** + * Gets the value of the edrRegionScore property. + * + */ + public int getEdrRegionScore() { + return edrRegionScore; + } + + /** + * Sets the value of the edrRegionScore property. + * + */ + public void setEdrRegionScore(int value) { + this.edrRegionScore = value; + } + + /** + * Gets the value of the weightedScore property. + * + */ + public int getWeightedScore() { + return weightedScore; + } + + /** + * Sets the value of the weightedScore property. + * + */ + public void setWeightedScore(int value) { + this.weightedScore = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EdrGetScoreRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EdrGetScoreRequestType.java new file mode 100644 index 0000000..d824735 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EdrGetScoreRequestType.java @@ -0,0 +1,285 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for edrGetScoreRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="edrGetScoreRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="surname_prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="birth_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "edrGetScoreRequestType", propOrder = { + +}) +public class EdrGetScoreRequestType { + + @XmlElement(name = "last_name", required = true) + protected String lastName; + @XmlElement(required = true) + protected String initials; + @XmlElement(name = "surname_prefix", required = true) + protected String surnamePrefix; + @XmlElement(required = true) + protected String gender; + @XmlElement(name = "birth_date", required = true) + protected String birthDate; + @XmlElement(required = true) + protected String street; + @XmlElement(name = "house_number", required = true) + protected String houseNumber; + @XmlElement(required = true) + protected String postcode; + @XmlElement(name = "phone_number", required = true) + protected String phoneNumber; + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the initials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInitials() { + return initials; + } + + /** + * Sets the value of the initials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInitials(String value) { + this.initials = value; + } + + /** + * Gets the value of the surnamePrefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSurnamePrefix() { + return surnamePrefix; + } + + /** + * Sets the value of the surnamePrefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSurnamePrefix(String value) { + this.surnamePrefix = value; + } + + /** + * Gets the value of the gender property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGender() { + return gender; + } + + /** + * Sets the value of the gender property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGender(String value) { + this.gender = value; + } + + /** + * Gets the value of the birthDate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBirthDate() { + return birthDate; + } + + /** + * Sets the value of the birthDate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBirthDate(String value) { + this.birthDate = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNumber(String value) { + this.houseNumber = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the phoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPhoneNumber() { + return phoneNumber; + } + + /** + * Sets the value of the phoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPhoneNumber(String value) { + this.phoneNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EdrGetScoreResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EdrGetScoreResponseType.java new file mode 100644 index 0000000..fe166f8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EdrGetScoreResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for edrGetScoreResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="edrGetScoreResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}EDRScore"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "edrGetScoreResponseType", propOrder = { + +}) +public class EdrGetScoreResponseType { + + @XmlElement(required = true) + protected EDRScore out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link EDRScore } + * + */ + public EDRScore getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link EDRScore } + * + */ + public void setOut(EDRScore value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAddress.java new file mode 100644 index 0000000..e3391f4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAddress.java @@ -0,0 +1,393 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRAddress complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRAddress">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="address_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="address_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="date_until" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="house_no" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="house_no_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="pobox" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="residence" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="country_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRAddress", propOrder = { + +}) +public class GCRAddress { + + @XmlElement(name = "is_current") + protected Boolean isCurrent; + @XmlElement(name = "address_code") + protected Integer addressCode; + @XmlElement(name = "address_text") + protected String addressText; + @XmlElement(name = "date_from") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFrom; + @XmlElement(name = "date_until") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateUntil; + protected String street; + @XmlElement(name = "house_no") + protected String houseNo; + @XmlElement(name = "house_no_addition") + protected String houseNoAddition; + protected String pobox; + protected String postcode; + protected String residence; + @XmlElement(name = "country_code") + protected Integer countryCode; + @XmlElement(name = "country_text") + protected String countryText; + + /** + * Gets the value of the isCurrent property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIsCurrent() { + return isCurrent; + } + + /** + * Sets the value of the isCurrent property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIsCurrent(Boolean value) { + this.isCurrent = value; + } + + /** + * Gets the value of the addressCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getAddressCode() { + return addressCode; + } + + /** + * Sets the value of the addressCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setAddressCode(Integer value) { + this.addressCode = value; + } + + /** + * Gets the value of the addressText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddressText() { + return addressText; + } + + /** + * Sets the value of the addressText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddressText(String value) { + this.addressText = value; + } + + /** + * Gets the value of the dateFrom property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFrom() { + return dateFrom; + } + + /** + * Sets the value of the dateFrom property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFrom(XMLGregorianCalendar value) { + this.dateFrom = value; + } + + /** + * Gets the value of the dateUntil property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateUntil() { + return dateUntil; + } + + /** + * Sets the value of the dateUntil property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateUntil(XMLGregorianCalendar value) { + this.dateUntil = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNo() { + return houseNo; + } + + /** + * Sets the value of the houseNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNo(String value) { + this.houseNo = value; + } + + /** + * Gets the value of the houseNoAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNoAddition() { + return houseNoAddition; + } + + /** + * Sets the value of the houseNoAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNoAddition(String value) { + this.houseNoAddition = value; + } + + /** + * Gets the value of the pobox property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPobox() { + return pobox; + } + + /** + * Sets the value of the pobox property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPobox(String value) { + this.pobox = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the residence property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getResidence() { + return residence; + } + + /** + * Sets the value of the residence property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setResidence(String value) { + this.residence = value; + } + + /** + * Gets the value of the countryCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCountryCode() { + return countryCode; + } + + /** + * Sets the value of the countryCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCountryCode(Integer value) { + this.countryCode = value; + } + + /** + * Gets the value of the countryText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryText() { + return countryText; + } + + /** + * Sets the value of the countryText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryText(String value) { + this.countryText = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAddressArray.java new file mode 100644 index 0000000..9e5a1c7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAddressArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRAddressArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRAddressArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRAddress" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRAddressArray", propOrder = { + "item" +}) +public class GCRAddressArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRAddress } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAlarm.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAlarm.java new file mode 100644 index 0000000..c410d01 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAlarm.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRAlarm complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRAlarm">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="alarm_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="alarm_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRAlarm", propOrder = { + +}) +public class GCRAlarm { + + @XmlElement(name = "alarm_code") + protected int alarmCode; + @XmlElement(name = "alarm_text", required = true) + protected String alarmText; + + /** + * Gets the value of the alarmCode property. + * + */ + public int getAlarmCode() { + return alarmCode; + } + + /** + * Sets the value of the alarmCode property. + * + */ + public void setAlarmCode(int value) { + this.alarmCode = value; + } + + /** + * Gets the value of the alarmText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAlarmText() { + return alarmText; + } + + /** + * Sets the value of the alarmText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAlarmText(String value) { + this.alarmText = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAlarmContactDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAlarmContactDetails.java new file mode 100644 index 0000000..f9bfcb5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAlarmContactDetails.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRAlarmContactDetails complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRAlarmContactDetails">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}GCRTradeNameArray" minOccurs="0"/>
+ *         <element name="addresses" type="{http://www.webservices.nl/soap/}GCRAddressArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRAlarmContactDetails", propOrder = { + +}) +public class GCRAlarmContactDetails { + + @XmlElement(name = "company_name") + protected String companyName; + @XmlElement(name = "trade_names") + protected GCRTradeNameArray tradeNames; + protected GCRAddressArray addresses; + + /** + * Gets the value of the companyName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyName() { + return companyName; + } + + /** + * Sets the value of the companyName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyName(String value) { + this.companyName = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link GCRTradeNameArray } + * + */ + public GCRTradeNameArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link GCRTradeNameArray } + * + */ + public void setTradeNames(GCRTradeNameArray value) { + this.tradeNames = value; + } + + /** + * Gets the value of the addresses property. + * + * @return + * possible object is + * {@link GCRAddressArray } + * + */ + public GCRAddressArray getAddresses() { + return addresses; + } + + /** + * Sets the value of the addresses property. + * + * @param value + * allowed object is + * {@link GCRAddressArray } + * + */ + public void setAddresses(GCRAddressArray value) { + this.addresses = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAnnualFigures.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAnnualFigures.java new file mode 100644 index 0000000..2eb86cb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAnnualFigures.java @@ -0,0 +1,124 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRAnnualFigures complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRAnnualFigures">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="company_annual_accounts" type="{http://www.webservices.nl/soap/}GCRCompanyAnnualAccountArray" minOccurs="0"/>
+ *         <element name="bank_and_insurer_data" type="{http://www.webservices.nl/soap/}GCRBankAndInsurerDataArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRAnnualFigures", propOrder = { + +}) +public class GCRAnnualFigures { + + @XmlElement(name = "graydon_company_id") + protected BigInteger graydonCompanyId; + @XmlElement(name = "company_annual_accounts") + protected GCRCompanyAnnualAccountArray companyAnnualAccounts; + @XmlElement(name = "bank_and_insurer_data") + protected GCRBankAndInsurerDataArray bankAndInsurerData; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the companyAnnualAccounts property. + * + * @return + * possible object is + * {@link GCRCompanyAnnualAccountArray } + * + */ + public GCRCompanyAnnualAccountArray getCompanyAnnualAccounts() { + return companyAnnualAccounts; + } + + /** + * Sets the value of the companyAnnualAccounts property. + * + * @param value + * allowed object is + * {@link GCRCompanyAnnualAccountArray } + * + */ + public void setCompanyAnnualAccounts(GCRCompanyAnnualAccountArray value) { + this.companyAnnualAccounts = value; + } + + /** + * Gets the value of the bankAndInsurerData property. + * + * @return + * possible object is + * {@link GCRBankAndInsurerDataArray } + * + */ + public GCRBankAndInsurerDataArray getBankAndInsurerData() { + return bankAndInsurerData; + } + + /** + * Sets the value of the bankAndInsurerData property. + * + * @param value + * allowed object is + * {@link GCRBankAndInsurerDataArray } + * + */ + public void setBankAndInsurerData(GCRBankAndInsurerDataArray value) { + this.bankAndInsurerData = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAnnualFiguresArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAnnualFiguresArray.java new file mode 100644 index 0000000..b16b58c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAnnualFiguresArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRAnnualFiguresArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRAnnualFiguresArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRAnnualFigures" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRAnnualFiguresArray", propOrder = { + "item" +}) +public class GCRAnnualFiguresArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRAnnualFigures } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAssets.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAssets.java new file mode 100644 index 0000000..3546ed2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAssets.java @@ -0,0 +1,178 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRAssets complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRAssets">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="fixed_assets_total" type="{http://www.webservices.nl/soap/}GCRItem" minOccurs="0"/>
+ *         <element name="fixed_assets_items" type="{http://www.webservices.nl/soap/}GCRItemArray" minOccurs="0"/>
+ *         <element name="current_assets_total" type="{http://www.webservices.nl/soap/}GCRItem" minOccurs="0"/>
+ *         <element name="current_assets_items" type="{http://www.webservices.nl/soap/}GCRItemArray" minOccurs="0"/>
+ *         <element name="balance_sheet_total" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRAssets", propOrder = { + +}) +public class GCRAssets { + + @XmlElement(name = "fixed_assets_total") + protected GCRItem fixedAssetsTotal; + @XmlElement(name = "fixed_assets_items") + protected GCRItemArray fixedAssetsItems; + @XmlElement(name = "current_assets_total") + protected GCRItem currentAssetsTotal; + @XmlElement(name = "current_assets_items") + protected GCRItemArray currentAssetsItems; + @XmlElement(name = "balance_sheet_total") + protected BigDecimal balanceSheetTotal; + + /** + * Gets the value of the fixedAssetsTotal property. + * + * @return + * possible object is + * {@link GCRItem } + * + */ + public GCRItem getFixedAssetsTotal() { + return fixedAssetsTotal; + } + + /** + * Sets the value of the fixedAssetsTotal property. + * + * @param value + * allowed object is + * {@link GCRItem } + * + */ + public void setFixedAssetsTotal(GCRItem value) { + this.fixedAssetsTotal = value; + } + + /** + * Gets the value of the fixedAssetsItems property. + * + * @return + * possible object is + * {@link GCRItemArray } + * + */ + public GCRItemArray getFixedAssetsItems() { + return fixedAssetsItems; + } + + /** + * Sets the value of the fixedAssetsItems property. + * + * @param value + * allowed object is + * {@link GCRItemArray } + * + */ + public void setFixedAssetsItems(GCRItemArray value) { + this.fixedAssetsItems = value; + } + + /** + * Gets the value of the currentAssetsTotal property. + * + * @return + * possible object is + * {@link GCRItem } + * + */ + public GCRItem getCurrentAssetsTotal() { + return currentAssetsTotal; + } + + /** + * Sets the value of the currentAssetsTotal property. + * + * @param value + * allowed object is + * {@link GCRItem } + * + */ + public void setCurrentAssetsTotal(GCRItem value) { + this.currentAssetsTotal = value; + } + + /** + * Gets the value of the currentAssetsItems property. + * + * @return + * possible object is + * {@link GCRItemArray } + * + */ + public GCRItemArray getCurrentAssetsItems() { + return currentAssetsItems; + } + + /** + * Sets the value of the currentAssetsItems property. + * + * @param value + * allowed object is + * {@link GCRItemArray } + * + */ + public void setCurrentAssetsItems(GCRItemArray value) { + this.currentAssetsItems = value; + } + + /** + * Gets the value of the balanceSheetTotal property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getBalanceSheetTotal() { + return balanceSheetTotal; + } + + /** + * Sets the value of the balanceSheetTotal property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setBalanceSheetTotal(BigDecimal value) { + this.balanceSheetTotal = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBalanceSheet.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBalanceSheet.java new file mode 100644 index 0000000..6d3cfa6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBalanceSheet.java @@ -0,0 +1,119 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRBalanceSheet complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRBalanceSheet">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="items" type="{http://www.webservices.nl/soap/}GCRItemArray" minOccurs="0"/>
+ *         <element name="assets" type="{http://www.webservices.nl/soap/}GCRAssets" minOccurs="0"/>
+ *         <element name="liabilities" type="{http://www.webservices.nl/soap/}GCRLiabilities" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRBalanceSheet", propOrder = { + +}) +public class GCRBalanceSheet { + + protected GCRItemArray items; + protected GCRAssets assets; + protected GCRLiabilities liabilities; + + /** + * Gets the value of the items property. + * + * @return + * possible object is + * {@link GCRItemArray } + * + */ + public GCRItemArray getItems() { + return items; + } + + /** + * Sets the value of the items property. + * + * @param value + * allowed object is + * {@link GCRItemArray } + * + */ + public void setItems(GCRItemArray value) { + this.items = value; + } + + /** + * Gets the value of the assets property. + * + * @return + * possible object is + * {@link GCRAssets } + * + */ + public GCRAssets getAssets() { + return assets; + } + + /** + * Sets the value of the assets property. + * + * @param value + * allowed object is + * {@link GCRAssets } + * + */ + public void setAssets(GCRAssets value) { + this.assets = value; + } + + /** + * Gets the value of the liabilities property. + * + * @return + * possible object is + * {@link GCRLiabilities } + * + */ + public GCRLiabilities getLiabilities() { + return liabilities; + } + + /** + * Sets the value of the liabilities property. + * + * @param value + * allowed object is + * {@link GCRLiabilities } + * + */ + public void setLiabilities(GCRLiabilities value) { + this.liabilities = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerData.java new file mode 100644 index 0000000..0d341d0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerData.java @@ -0,0 +1,503 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRBankAndInsurerData complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRBankAndInsurerData">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="financial_year" type="{http://www.w3.org/2001/XMLSchema}gYear" minOccurs="0"/>
+ *         <element name="month_end_financial_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="day_end_financial_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="length_financial_year_in_months" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="reliable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="account_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="account_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="filing" type="{http://www.webservices.nl/soap/}GCRFiling" minOccurs="0"/>
+ *         <element name="financial_year_graydon" type="{http://www.w3.org/2001/XMLSchema}gYear" minOccurs="0"/>
+ *         <element name="currency_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="scale_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="scale_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_of_drawing_up" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="balance_sheet_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="balance_sheet_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bank_and_insurer_key_figures" type="{http://www.webservices.nl/soap/}GCRBankAndInsurerKeyFigures" minOccurs="0"/>
+ *         <element name="ratios" type="{http://www.webservices.nl/soap/}GCRRatioArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRBankAndInsurerData", propOrder = { + +}) +public class GCRBankAndInsurerData { + + @XmlElement(name = "financial_year") + @XmlSchemaType(name = "gYear") + protected XMLGregorianCalendar financialYear; + @XmlElement(name = "month_end_financial_year") + protected Integer monthEndFinancialYear; + @XmlElement(name = "day_end_financial_year") + protected Integer dayEndFinancialYear; + @XmlElement(name = "length_financial_year_in_months") + protected Integer lengthFinancialYearInMonths; + protected Boolean reliable; + @XmlElement(name = "account_code") + protected String accountCode; + @XmlElement(name = "account_text") + protected String accountText; + protected GCRFiling filing; + @XmlElement(name = "financial_year_graydon") + @XmlSchemaType(name = "gYear") + protected XMLGregorianCalendar financialYearGraydon; + @XmlElement(name = "currency_code") + protected String currencyCode; + @XmlElement(name = "scale_code") + protected String scaleCode; + @XmlElement(name = "scale_text") + protected String scaleText; + @XmlElement(name = "date_of_drawing_up") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateOfDrawingUp; + @XmlElement(name = "balance_sheet_code") + protected String balanceSheetCode; + @XmlElement(name = "balance_sheet_text") + protected String balanceSheetText; + @XmlElement(name = "bank_and_insurer_key_figures") + protected GCRBankAndInsurerKeyFigures bankAndInsurerKeyFigures; + protected GCRRatioArray ratios; + + /** + * Gets the value of the financialYear property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFinancialYear() { + return financialYear; + } + + /** + * Sets the value of the financialYear property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFinancialYear(XMLGregorianCalendar value) { + this.financialYear = value; + } + + /** + * Gets the value of the monthEndFinancialYear property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMonthEndFinancialYear() { + return monthEndFinancialYear; + } + + /** + * Sets the value of the monthEndFinancialYear property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMonthEndFinancialYear(Integer value) { + this.monthEndFinancialYear = value; + } + + /** + * Gets the value of the dayEndFinancialYear property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDayEndFinancialYear() { + return dayEndFinancialYear; + } + + /** + * Sets the value of the dayEndFinancialYear property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDayEndFinancialYear(Integer value) { + this.dayEndFinancialYear = value; + } + + /** + * Gets the value of the lengthFinancialYearInMonths property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getLengthFinancialYearInMonths() { + return lengthFinancialYearInMonths; + } + + /** + * Sets the value of the lengthFinancialYearInMonths property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setLengthFinancialYearInMonths(Integer value) { + this.lengthFinancialYearInMonths = value; + } + + /** + * Gets the value of the reliable property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isReliable() { + return reliable; + } + + /** + * Sets the value of the reliable property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setReliable(Boolean value) { + this.reliable = value; + } + + /** + * Gets the value of the accountCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAccountCode() { + return accountCode; + } + + /** + * Sets the value of the accountCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAccountCode(String value) { + this.accountCode = value; + } + + /** + * Gets the value of the accountText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAccountText() { + return accountText; + } + + /** + * Sets the value of the accountText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAccountText(String value) { + this.accountText = value; + } + + /** + * Gets the value of the filing property. + * + * @return + * possible object is + * {@link GCRFiling } + * + */ + public GCRFiling getFiling() { + return filing; + } + + /** + * Sets the value of the filing property. + * + * @param value + * allowed object is + * {@link GCRFiling } + * + */ + public void setFiling(GCRFiling value) { + this.filing = value; + } + + /** + * Gets the value of the financialYearGraydon property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFinancialYearGraydon() { + return financialYearGraydon; + } + + /** + * Sets the value of the financialYearGraydon property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFinancialYearGraydon(XMLGregorianCalendar value) { + this.financialYearGraydon = value; + } + + /** + * Gets the value of the currencyCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCurrencyCode() { + return currencyCode; + } + + /** + * Sets the value of the currencyCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCurrencyCode(String value) { + this.currencyCode = value; + } + + /** + * Gets the value of the scaleCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getScaleCode() { + return scaleCode; + } + + /** + * Sets the value of the scaleCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setScaleCode(String value) { + this.scaleCode = value; + } + + /** + * Gets the value of the scaleText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getScaleText() { + return scaleText; + } + + /** + * Sets the value of the scaleText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setScaleText(String value) { + this.scaleText = value; + } + + /** + * Gets the value of the dateOfDrawingUp property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfDrawingUp() { + return dateOfDrawingUp; + } + + /** + * Sets the value of the dateOfDrawingUp property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfDrawingUp(XMLGregorianCalendar value) { + this.dateOfDrawingUp = value; + } + + /** + * Gets the value of the balanceSheetCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBalanceSheetCode() { + return balanceSheetCode; + } + + /** + * Sets the value of the balanceSheetCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBalanceSheetCode(String value) { + this.balanceSheetCode = value; + } + + /** + * Gets the value of the balanceSheetText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBalanceSheetText() { + return balanceSheetText; + } + + /** + * Sets the value of the balanceSheetText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBalanceSheetText(String value) { + this.balanceSheetText = value; + } + + /** + * Gets the value of the bankAndInsurerKeyFigures property. + * + * @return + * possible object is + * {@link GCRBankAndInsurerKeyFigures } + * + */ + public GCRBankAndInsurerKeyFigures getBankAndInsurerKeyFigures() { + return bankAndInsurerKeyFigures; + } + + /** + * Sets the value of the bankAndInsurerKeyFigures property. + * + * @param value + * allowed object is + * {@link GCRBankAndInsurerKeyFigures } + * + */ + public void setBankAndInsurerKeyFigures(GCRBankAndInsurerKeyFigures value) { + this.bankAndInsurerKeyFigures = value; + } + + /** + * Gets the value of the ratios property. + * + * @return + * possible object is + * {@link GCRRatioArray } + * + */ + public GCRRatioArray getRatios() { + return ratios; + } + + /** + * Sets the value of the ratios property. + * + * @param value + * allowed object is + * {@link GCRRatioArray } + * + */ + public void setRatios(GCRRatioArray value) { + this.ratios = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerDataArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerDataArray.java new file mode 100644 index 0000000..07ec58d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerDataArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRBankAndInsurerDataArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRBankAndInsurerDataArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRBankAndInsurerData" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRBankAndInsurerDataArray", propOrder = { + "item" +}) +public class GCRBankAndInsurerDataArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRBankAndInsurerData } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerKeyFigures.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerKeyFigures.java new file mode 100644 index 0000000..0a859a8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerKeyFigures.java @@ -0,0 +1,580 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRBankAndInsurerKeyFigures complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRBankAndInsurerKeyFigures">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="balance_sheet_total" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="equity_capital" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="group_equity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="liable_equity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="technical_provisions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="entrusted_funds" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="debt_securities" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="credits" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="attracted_bankers_funds" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="issued_bankers_funds" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="interest" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="premium_income" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="other_income" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="total_benefits" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="yield_on_investments" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="operating_investments" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="holding_gain_of_accounts_receivable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="result_before_taxes" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="group_profit" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="net_profit" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRBankAndInsurerKeyFigures", propOrder = { + +}) +public class GCRBankAndInsurerKeyFigures { + + @XmlElement(name = "balance_sheet_total") + protected String balanceSheetTotal; + @XmlElement(name = "equity_capital") + protected String equityCapital; + @XmlElement(name = "group_equity") + protected String groupEquity; + @XmlElement(name = "liable_equity") + protected String liableEquity; + @XmlElement(name = "technical_provisions") + protected String technicalProvisions; + @XmlElement(name = "entrusted_funds") + protected String entrustedFunds; + @XmlElement(name = "debt_securities") + protected String debtSecurities; + protected String credits; + @XmlElement(name = "attracted_bankers_funds") + protected String attractedBankersFunds; + @XmlElement(name = "issued_bankers_funds") + protected String issuedBankersFunds; + protected String interest; + @XmlElement(name = "premium_income") + protected String premiumIncome; + @XmlElement(name = "other_income") + protected String otherIncome; + @XmlElement(name = "total_benefits") + protected String totalBenefits; + @XmlElement(name = "yield_on_investments") + protected String yieldOnInvestments; + @XmlElement(name = "operating_investments") + protected String operatingInvestments; + @XmlElement(name = "holding_gain_of_accounts_receivable") + protected String holdingGainOfAccountsReceivable; + @XmlElement(name = "result_before_taxes") + protected String resultBeforeTaxes; + @XmlElement(name = "group_profit") + protected String groupProfit; + @XmlElement(name = "net_profit") + protected String netProfit; + + /** + * Gets the value of the balanceSheetTotal property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBalanceSheetTotal() { + return balanceSheetTotal; + } + + /** + * Sets the value of the balanceSheetTotal property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBalanceSheetTotal(String value) { + this.balanceSheetTotal = value; + } + + /** + * Gets the value of the equityCapital property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEquityCapital() { + return equityCapital; + } + + /** + * Sets the value of the equityCapital property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEquityCapital(String value) { + this.equityCapital = value; + } + + /** + * Gets the value of the groupEquity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGroupEquity() { + return groupEquity; + } + + /** + * Sets the value of the groupEquity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGroupEquity(String value) { + this.groupEquity = value; + } + + /** + * Gets the value of the liableEquity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLiableEquity() { + return liableEquity; + } + + /** + * Sets the value of the liableEquity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLiableEquity(String value) { + this.liableEquity = value; + } + + /** + * Gets the value of the technicalProvisions property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTechnicalProvisions() { + return technicalProvisions; + } + + /** + * Sets the value of the technicalProvisions property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTechnicalProvisions(String value) { + this.technicalProvisions = value; + } + + /** + * Gets the value of the entrustedFunds property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEntrustedFunds() { + return entrustedFunds; + } + + /** + * Sets the value of the entrustedFunds property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEntrustedFunds(String value) { + this.entrustedFunds = value; + } + + /** + * Gets the value of the debtSecurities property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDebtSecurities() { + return debtSecurities; + } + + /** + * Sets the value of the debtSecurities property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDebtSecurities(String value) { + this.debtSecurities = value; + } + + /** + * Gets the value of the credits property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCredits() { + return credits; + } + + /** + * Sets the value of the credits property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCredits(String value) { + this.credits = value; + } + + /** + * Gets the value of the attractedBankersFunds property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAttractedBankersFunds() { + return attractedBankersFunds; + } + + /** + * Sets the value of the attractedBankersFunds property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAttractedBankersFunds(String value) { + this.attractedBankersFunds = value; + } + + /** + * Gets the value of the issuedBankersFunds property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIssuedBankersFunds() { + return issuedBankersFunds; + } + + /** + * Sets the value of the issuedBankersFunds property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIssuedBankersFunds(String value) { + this.issuedBankersFunds = value; + } + + /** + * Gets the value of the interest property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInterest() { + return interest; + } + + /** + * Sets the value of the interest property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInterest(String value) { + this.interest = value; + } + + /** + * Gets the value of the premiumIncome property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPremiumIncome() { + return premiumIncome; + } + + /** + * Sets the value of the premiumIncome property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPremiumIncome(String value) { + this.premiumIncome = value; + } + + /** + * Gets the value of the otherIncome property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOtherIncome() { + return otherIncome; + } + + /** + * Sets the value of the otherIncome property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOtherIncome(String value) { + this.otherIncome = value; + } + + /** + * Gets the value of the totalBenefits property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTotalBenefits() { + return totalBenefits; + } + + /** + * Sets the value of the totalBenefits property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTotalBenefits(String value) { + this.totalBenefits = value; + } + + /** + * Gets the value of the yieldOnInvestments property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getYieldOnInvestments() { + return yieldOnInvestments; + } + + /** + * Sets the value of the yieldOnInvestments property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setYieldOnInvestments(String value) { + this.yieldOnInvestments = value; + } + + /** + * Gets the value of the operatingInvestments property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOperatingInvestments() { + return operatingInvestments; + } + + /** + * Sets the value of the operatingInvestments property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOperatingInvestments(String value) { + this.operatingInvestments = value; + } + + /** + * Gets the value of the holdingGainOfAccountsReceivable property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHoldingGainOfAccountsReceivable() { + return holdingGainOfAccountsReceivable; + } + + /** + * Sets the value of the holdingGainOfAccountsReceivable property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHoldingGainOfAccountsReceivable(String value) { + this.holdingGainOfAccountsReceivable = value; + } + + /** + * Gets the value of the resultBeforeTaxes property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getResultBeforeTaxes() { + return resultBeforeTaxes; + } + + /** + * Sets the value of the resultBeforeTaxes property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setResultBeforeTaxes(String value) { + this.resultBeforeTaxes = value; + } + + /** + * Gets the value of the groupProfit property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGroupProfit() { + return groupProfit; + } + + /** + * Sets the value of the groupProfit property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGroupProfit(String value) { + this.groupProfit = value; + } + + /** + * Gets the value of the netProfit property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNetProfit() { + return netProfit; + } + + /** + * Sets the value of the netProfit property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNetProfit(String value) { + this.netProfit = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankruptcy.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankruptcy.java new file mode 100644 index 0000000..3e4e2f5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankruptcy.java @@ -0,0 +1,235 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRBankruptcy complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRBankruptcy">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="official_registration_number" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="currently_active" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="date_of_verdict" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="definite_discontinuance_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="definite_discontinuance_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="definite_discontinuance_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="curators" type="{http://www.webservices.nl/soap/}GCRCuratorArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRBankruptcy", propOrder = { + +}) +public class GCRBankruptcy { + + @XmlElement(name = "official_registration_number") + protected BigInteger officialRegistrationNumber; + @XmlElement(name = "currently_active") + protected Boolean currentlyActive; + @XmlElement(name = "date_of_verdict") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateOfVerdict; + @XmlElement(name = "definite_discontinuance_code") + protected Integer definiteDiscontinuanceCode; + @XmlElement(name = "definite_discontinuance_text") + protected String definiteDiscontinuanceText; + @XmlElement(name = "definite_discontinuance_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar definiteDiscontinuanceDate; + protected GCRCuratorArray curators; + + /** + * Gets the value of the officialRegistrationNumber property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getOfficialRegistrationNumber() { + return officialRegistrationNumber; + } + + /** + * Sets the value of the officialRegistrationNumber property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setOfficialRegistrationNumber(BigInteger value) { + this.officialRegistrationNumber = value; + } + + /** + * Gets the value of the currentlyActive property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isCurrentlyActive() { + return currentlyActive; + } + + /** + * Sets the value of the currentlyActive property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setCurrentlyActive(Boolean value) { + this.currentlyActive = value; + } + + /** + * Gets the value of the dateOfVerdict property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfVerdict() { + return dateOfVerdict; + } + + /** + * Sets the value of the dateOfVerdict property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfVerdict(XMLGregorianCalendar value) { + this.dateOfVerdict = value; + } + + /** + * Gets the value of the definiteDiscontinuanceCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDefiniteDiscontinuanceCode() { + return definiteDiscontinuanceCode; + } + + /** + * Sets the value of the definiteDiscontinuanceCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDefiniteDiscontinuanceCode(Integer value) { + this.definiteDiscontinuanceCode = value; + } + + /** + * Gets the value of the definiteDiscontinuanceText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDefiniteDiscontinuanceText() { + return definiteDiscontinuanceText; + } + + /** + * Sets the value of the definiteDiscontinuanceText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDefiniteDiscontinuanceText(String value) { + this.definiteDiscontinuanceText = value; + } + + /** + * Gets the value of the definiteDiscontinuanceDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDefiniteDiscontinuanceDate() { + return definiteDiscontinuanceDate; + } + + /** + * Sets the value of the definiteDiscontinuanceDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDefiniteDiscontinuanceDate(XMLGregorianCalendar value) { + this.definiteDiscontinuanceDate = value; + } + + /** + * Gets the value of the curators property. + * + * @return + * possible object is + * {@link GCRCuratorArray } + * + */ + public GCRCuratorArray getCurators() { + return curators; + } + + /** + * Sets the value of the curators property. + * + * @param value + * allowed object is + * {@link GCRCuratorArray } + * + */ + public void setCurators(GCRCuratorArray value) { + this.curators = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBirthInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBirthInformation.java new file mode 100644 index 0000000..c6ca1fe --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBirthInformation.java @@ -0,0 +1,151 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRBirthInformation complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRBirthInformation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="residence" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="country_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRBirthInformation", propOrder = { + +}) +public class GCRBirthInformation { + + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar date; + protected String residence; + @XmlElement(name = "country_code") + protected Integer countryCode; + @XmlElement(name = "country_text") + protected String countryText; + + /** + * Gets the value of the date property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDate() { + return date; + } + + /** + * Sets the value of the date property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDate(XMLGregorianCalendar value) { + this.date = value; + } + + /** + * Gets the value of the residence property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getResidence() { + return residence; + } + + /** + * Sets the value of the residence property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setResidence(String value) { + this.residence = value; + } + + /** + * Gets the value of the countryCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getCountryCode() { + return countryCode; + } + + /** + * Sets the value of the countryCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setCountryCode(Integer value) { + this.countryCode = value; + } + + /** + * Gets the value of the countryText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryText() { + return countryText; + } + + /** + * Sets the value of the countryText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryText(String value) { + this.countryText = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBranchOffice.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBranchOffice.java new file mode 100644 index 0000000..451d227 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBranchOffice.java @@ -0,0 +1,259 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRBranchOffice complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRBranchOffice">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="branch_office_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="business_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}GCRTradeNameArray" minOccurs="0"/>
+ *         <element name="addresses" type="{http://www.webservices.nl/soap/}GCRAddressArray" minOccurs="0"/>
+ *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}GCRTelephoneNumberArray" minOccurs="0"/>
+ *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="estabishment_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="discontinuance" type="{http://www.webservices.nl/soap/}GCRDiscontinuance" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRBranchOffice", propOrder = { + +}) +public class GCRBranchOffice { + + @XmlElement(name = "branch_office_id", required = true) + protected String branchOfficeId; + @XmlElement(name = "business_name") + protected String businessName; + @XmlElement(name = "trade_names") + protected GCRTradeNameArray tradeNames; + protected GCRAddressArray addresses; + @XmlElement(name = "telephone_numbers") + protected GCRTelephoneNumberArray telephoneNumbers; + @XmlElement(name = "email_addresses") + protected StringArray emailAddresses; + @XmlElement(name = "estabishment_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar estabishmentDate; + protected GCRDiscontinuance discontinuance; + + /** + * Gets the value of the branchOfficeId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBranchOfficeId() { + return branchOfficeId; + } + + /** + * Sets the value of the branchOfficeId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBranchOfficeId(String value) { + this.branchOfficeId = value; + } + + /** + * Gets the value of the businessName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBusinessName() { + return businessName; + } + + /** + * Sets the value of the businessName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBusinessName(String value) { + this.businessName = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link GCRTradeNameArray } + * + */ + public GCRTradeNameArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link GCRTradeNameArray } + * + */ + public void setTradeNames(GCRTradeNameArray value) { + this.tradeNames = value; + } + + /** + * Gets the value of the addresses property. + * + * @return + * possible object is + * {@link GCRAddressArray } + * + */ + public GCRAddressArray getAddresses() { + return addresses; + } + + /** + * Sets the value of the addresses property. + * + * @param value + * allowed object is + * {@link GCRAddressArray } + * + */ + public void setAddresses(GCRAddressArray value) { + this.addresses = value; + } + + /** + * Gets the value of the telephoneNumbers property. + * + * @return + * possible object is + * {@link GCRTelephoneNumberArray } + * + */ + public GCRTelephoneNumberArray getTelephoneNumbers() { + return telephoneNumbers; + } + + /** + * Sets the value of the telephoneNumbers property. + * + * @param value + * allowed object is + * {@link GCRTelephoneNumberArray } + * + */ + public void setTelephoneNumbers(GCRTelephoneNumberArray value) { + this.telephoneNumbers = value; + } + + /** + * Gets the value of the emailAddresses property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getEmailAddresses() { + return emailAddresses; + } + + /** + * Sets the value of the emailAddresses property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setEmailAddresses(StringArray value) { + this.emailAddresses = value; + } + + /** + * Gets the value of the estabishmentDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEstabishmentDate() { + return estabishmentDate; + } + + /** + * Sets the value of the estabishmentDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEstabishmentDate(XMLGregorianCalendar value) { + this.estabishmentDate = value; + } + + /** + * Gets the value of the discontinuance property. + * + * @return + * possible object is + * {@link GCRDiscontinuance } + * + */ + public GCRDiscontinuance getDiscontinuance() { + return discontinuance; + } + + /** + * Sets the value of the discontinuance property. + * + * @param value + * allowed object is + * {@link GCRDiscontinuance } + * + */ + public void setDiscontinuance(GCRDiscontinuance value) { + this.discontinuance = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBranchOfficeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBranchOfficeArray.java new file mode 100644 index 0000000..d9b96c5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBranchOfficeArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRBranchOfficeArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRBranchOfficeArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRBranchOffice" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRBranchOfficeArray", propOrder = { + "item" +}) +public class GCRBranchOfficeArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRBranchOffice } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamity.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamity.java new file mode 100644 index 0000000..8028b3c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamity.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCalamity complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCalamity">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="calamity_events" type="{http://www.webservices.nl/soap/}GCRCalamityEventArray" minOccurs="0"/>
+ *         <element name="other_calamities" type="{http://www.webservices.nl/soap/}GCRCalamityOtherArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCalamity", propOrder = { + +}) +public class GCRCalamity { + + @XmlElement(name = "calamity_events") + protected GCRCalamityEventArray calamityEvents; + @XmlElement(name = "other_calamities") + protected GCRCalamityOtherArray otherCalamities; + + /** + * Gets the value of the calamityEvents property. + * + * @return + * possible object is + * {@link GCRCalamityEventArray } + * + */ + public GCRCalamityEventArray getCalamityEvents() { + return calamityEvents; + } + + /** + * Sets the value of the calamityEvents property. + * + * @param value + * allowed object is + * {@link GCRCalamityEventArray } + * + */ + public void setCalamityEvents(GCRCalamityEventArray value) { + this.calamityEvents = value; + } + + /** + * Gets the value of the otherCalamities property. + * + * @return + * possible object is + * {@link GCRCalamityOtherArray } + * + */ + public GCRCalamityOtherArray getOtherCalamities() { + return otherCalamities; + } + + /** + * Sets the value of the otherCalamities property. + * + * @param value + * allowed object is + * {@link GCRCalamityOtherArray } + * + */ + public void setOtherCalamities(GCRCalamityOtherArray value) { + this.otherCalamities = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityEvent.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityEvent.java new file mode 100644 index 0000000..774f572 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityEvent.java @@ -0,0 +1,282 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRCalamityEvent complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCalamityEvent">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="event_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="event_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="event_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="expiration_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="damage_amount" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="damage_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="insurance_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="insurance_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="instigator_graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCalamityEvent", propOrder = { + +}) +public class GCRCalamityEvent { + + @XmlElement(name = "event_code") + protected int eventCode; + @XmlElement(name = "event_text") + protected String eventText; + @XmlElement(name = "event_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar eventDate; + @XmlElement(name = "expiration_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar expirationDate; + @XmlElement(name = "damage_amount") + protected String damageAmount; + @XmlElement(name = "damage_currency") + protected String damageCurrency; + @XmlElement(name = "insurance_code") + protected Integer insuranceCode; + @XmlElement(name = "insurance_text") + protected String insuranceText; + @XmlElement(name = "instigator_graydon_company_id") + protected BigInteger instigatorGraydonCompanyId; + + /** + * Gets the value of the eventCode property. + * + */ + public int getEventCode() { + return eventCode; + } + + /** + * Sets the value of the eventCode property. + * + */ + public void setEventCode(int value) { + this.eventCode = value; + } + + /** + * Gets the value of the eventText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEventText() { + return eventText; + } + + /** + * Sets the value of the eventText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEventText(String value) { + this.eventText = value; + } + + /** + * Gets the value of the eventDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEventDate() { + return eventDate; + } + + /** + * Sets the value of the eventDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEventDate(XMLGregorianCalendar value) { + this.eventDate = value; + } + + /** + * Gets the value of the expirationDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getExpirationDate() { + return expirationDate; + } + + /** + * Sets the value of the expirationDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setExpirationDate(XMLGregorianCalendar value) { + this.expirationDate = value; + } + + /** + * Gets the value of the damageAmount property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDamageAmount() { + return damageAmount; + } + + /** + * Sets the value of the damageAmount property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDamageAmount(String value) { + this.damageAmount = value; + } + + /** + * Gets the value of the damageCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDamageCurrency() { + return damageCurrency; + } + + /** + * Sets the value of the damageCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDamageCurrency(String value) { + this.damageCurrency = value; + } + + /** + * Gets the value of the insuranceCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getInsuranceCode() { + return insuranceCode; + } + + /** + * Sets the value of the insuranceCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setInsuranceCode(Integer value) { + this.insuranceCode = value; + } + + /** + * Gets the value of the insuranceText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInsuranceText() { + return insuranceText; + } + + /** + * Sets the value of the insuranceText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInsuranceText(String value) { + this.insuranceText = value; + } + + /** + * Gets the value of the instigatorGraydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getInstigatorGraydonCompanyId() { + return instigatorGraydonCompanyId; + } + + /** + * Sets the value of the instigatorGraydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setInstigatorGraydonCompanyId(BigInteger value) { + this.instigatorGraydonCompanyId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityEventArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityEventArray.java new file mode 100644 index 0000000..0809c89 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityEventArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCalamityEventArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCalamityEventArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCalamityEvent" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCalamityEventArray", propOrder = { + "item" +}) +public class GCRCalamityEventArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRCalamityEvent } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityOther.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityOther.java new file mode 100644 index 0000000..6c46a2f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityOther.java @@ -0,0 +1,118 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRCalamityOther complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCalamityOther">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="calamity_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="calamity_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="expiration_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCalamityOther", propOrder = { + +}) +public class GCRCalamityOther { + + @XmlElement(name = "calamity_code") + protected int calamityCode; + @XmlElement(name = "calamity_text") + protected String calamityText; + @XmlElement(name = "expiration_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar expirationDate; + + /** + * Gets the value of the calamityCode property. + * + */ + public int getCalamityCode() { + return calamityCode; + } + + /** + * Sets the value of the calamityCode property. + * + */ + public void setCalamityCode(int value) { + this.calamityCode = value; + } + + /** + * Gets the value of the calamityText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCalamityText() { + return calamityText; + } + + /** + * Sets the value of the calamityText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCalamityText(String value) { + this.calamityText = value; + } + + /** + * Gets the value of the expirationDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getExpirationDate() { + return expirationDate; + } + + /** + * Sets the value of the expirationDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setExpirationDate(XMLGregorianCalendar value) { + this.expirationDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityOtherArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityOtherArray.java new file mode 100644 index 0000000..ea384db --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityOtherArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCalamityOtherArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCalamityOtherArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCalamityOther" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCalamityOtherArray", propOrder = { + "item" +}) +public class GCRCalamityOtherArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRCalamityOther } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCapital.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCapital.java new file mode 100644 index 0000000..e32a004 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCapital.java @@ -0,0 +1,234 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRCapital complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCapital">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="date_change" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="social_capital" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="capital_of_commandite_partnership" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="issued_capital" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="paid_up_capital" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="monetary_amount_specified_in_corporate_deed" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCapital", propOrder = { + +}) +public class GCRCapital { + + @XmlElement(name = "is_current") + protected Boolean isCurrent; + @XmlElement(name = "date_change") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateChange; + @XmlElement(name = "social_capital") + protected String socialCapital; + @XmlElement(name = "capital_of_commandite_partnership") + protected String capitalOfCommanditePartnership; + @XmlElement(name = "issued_capital") + protected String issuedCapital; + @XmlElement(name = "paid_up_capital") + protected String paidUpCapital; + @XmlElement(name = "monetary_amount_specified_in_corporate_deed") + protected String monetaryAmountSpecifiedInCorporateDeed; + + /** + * Gets the value of the isCurrent property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIsCurrent() { + return isCurrent; + } + + /** + * Sets the value of the isCurrent property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIsCurrent(Boolean value) { + this.isCurrent = value; + } + + /** + * Gets the value of the dateChange property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateChange() { + return dateChange; + } + + /** + * Sets the value of the dateChange property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateChange(XMLGregorianCalendar value) { + this.dateChange = value; + } + + /** + * Gets the value of the socialCapital property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSocialCapital() { + return socialCapital; + } + + /** + * Sets the value of the socialCapital property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSocialCapital(String value) { + this.socialCapital = value; + } + + /** + * Gets the value of the capitalOfCommanditePartnership property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCapitalOfCommanditePartnership() { + return capitalOfCommanditePartnership; + } + + /** + * Sets the value of the capitalOfCommanditePartnership property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCapitalOfCommanditePartnership(String value) { + this.capitalOfCommanditePartnership = value; + } + + /** + * Gets the value of the issuedCapital property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIssuedCapital() { + return issuedCapital; + } + + /** + * Sets the value of the issuedCapital property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIssuedCapital(String value) { + this.issuedCapital = value; + } + + /** + * Gets the value of the paidUpCapital property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPaidUpCapital() { + return paidUpCapital; + } + + /** + * Sets the value of the paidUpCapital property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPaidUpCapital(String value) { + this.paidUpCapital = value; + } + + /** + * Gets the value of the monetaryAmountSpecifiedInCorporateDeed property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMonetaryAmountSpecifiedInCorporateDeed() { + return monetaryAmountSpecifiedInCorporateDeed; + } + + /** + * Sets the value of the monetaryAmountSpecifiedInCorporateDeed property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMonetaryAmountSpecifiedInCorporateDeed(String value) { + this.monetaryAmountSpecifiedInCorporateDeed = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCapitalArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCapitalArray.java new file mode 100644 index 0000000..97ad4a7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCapitalArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCapitalArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCapitalArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCapital" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCapitalArray", propOrder = { + "item" +}) +public class GCRCapitalArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRCapital } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRChamberOfCommerce.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRChamberOfCommerce.java new file mode 100644 index 0000000..a2c6309 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRChamberOfCommerce.java @@ -0,0 +1,177 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRChamberOfCommerce complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRChamberOfCommerce">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="chamber_no" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="dossier_no" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sub_dossier_no" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="administering_chamber_no" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trade_register_location" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRChamberOfCommerce", propOrder = { + +}) +public class GCRChamberOfCommerce { + + @XmlElement(name = "chamber_no", required = true) + protected String chamberNo; + @XmlElement(name = "dossier_no", required = true) + protected String dossierNo; + @XmlElement(name = "sub_dossier_no", required = true) + protected String subDossierNo; + @XmlElement(name = "administering_chamber_no") + protected String administeringChamberNo; + @XmlElement(name = "trade_register_location") + protected String tradeRegisterLocation; + + /** + * Gets the value of the chamberNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getChamberNo() { + return chamberNo; + } + + /** + * Sets the value of the chamberNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setChamberNo(String value) { + this.chamberNo = value; + } + + /** + * Gets the value of the dossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNo() { + return dossierNo; + } + + /** + * Sets the value of the dossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNo(String value) { + this.dossierNo = value; + } + + /** + * Gets the value of the subDossierNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubDossierNo() { + return subDossierNo; + } + + /** + * Sets the value of the subDossierNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubDossierNo(String value) { + this.subDossierNo = value; + } + + /** + * Gets the value of the administeringChamberNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAdministeringChamberNo() { + return administeringChamberNo; + } + + /** + * Sets the value of the administeringChamberNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAdministeringChamberNo(String value) { + this.administeringChamberNo = value; + } + + /** + * Gets the value of the tradeRegisterLocation property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeRegisterLocation() { + return tradeRegisterLocation; + } + + /** + * Sets the value of the tradeRegisterLocation property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeRegisterLocation(String value) { + this.tradeRegisterLocation = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompany.java new file mode 100644 index 0000000..3944ccb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompany.java @@ -0,0 +1,285 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCompany complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCompany">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="contact_details" type="{http://www.webservices.nl/soap/}GCRContactDetails" minOccurs="0"/>
+ *         <element name="official_data" type="{http://www.webservices.nl/soap/}GCROfficialData" minOccurs="0"/>
+ *         <element name="history" type="{http://www.webservices.nl/soap/}GCRHistory" minOccurs="0"/>
+ *         <element name="sectors_of_industry" type="{http://www.webservices.nl/soap/}GCRSectorOfIndustryArray" minOccurs="0"/>
+ *         <element name="positions_in_other_companies" type="{http://www.webservices.nl/soap/}GCRJobTitleArray" minOccurs="0"/>
+ *         <element name="annual_figures" type="{http://www.webservices.nl/soap/}GCRAnnualFiguresArray" minOccurs="0"/>
+ *         <element name="financial_details" type="{http://www.webservices.nl/soap/}GCRFinancialDetails" minOccurs="0"/>
+ *         <element name="financial_calamities" type="{http://www.webservices.nl/soap/}GCRFinancialCalamityArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCompany", propOrder = { + +}) +public class GCRCompany { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + @XmlElement(name = "contact_details") + protected GCRContactDetails contactDetails; + @XmlElement(name = "official_data") + protected GCROfficialData officialData; + protected GCRHistory history; + @XmlElement(name = "sectors_of_industry") + protected GCRSectorOfIndustryArray sectorsOfIndustry; + @XmlElement(name = "positions_in_other_companies") + protected GCRJobTitleArray positionsInOtherCompanies; + @XmlElement(name = "annual_figures") + protected GCRAnnualFiguresArray annualFigures; + @XmlElement(name = "financial_details") + protected GCRFinancialDetails financialDetails; + @XmlElement(name = "financial_calamities") + protected GCRFinancialCalamityArray financialCalamities; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the contactDetails property. + * + * @return + * possible object is + * {@link GCRContactDetails } + * + */ + public GCRContactDetails getContactDetails() { + return contactDetails; + } + + /** + * Sets the value of the contactDetails property. + * + * @param value + * allowed object is + * {@link GCRContactDetails } + * + */ + public void setContactDetails(GCRContactDetails value) { + this.contactDetails = value; + } + + /** + * Gets the value of the officialData property. + * + * @return + * possible object is + * {@link GCROfficialData } + * + */ + public GCROfficialData getOfficialData() { + return officialData; + } + + /** + * Sets the value of the officialData property. + * + * @param value + * allowed object is + * {@link GCROfficialData } + * + */ + public void setOfficialData(GCROfficialData value) { + this.officialData = value; + } + + /** + * Gets the value of the history property. + * + * @return + * possible object is + * {@link GCRHistory } + * + */ + public GCRHistory getHistory() { + return history; + } + + /** + * Sets the value of the history property. + * + * @param value + * allowed object is + * {@link GCRHistory } + * + */ + public void setHistory(GCRHistory value) { + this.history = value; + } + + /** + * Gets the value of the sectorsOfIndustry property. + * + * @return + * possible object is + * {@link GCRSectorOfIndustryArray } + * + */ + public GCRSectorOfIndustryArray getSectorsOfIndustry() { + return sectorsOfIndustry; + } + + /** + * Sets the value of the sectorsOfIndustry property. + * + * @param value + * allowed object is + * {@link GCRSectorOfIndustryArray } + * + */ + public void setSectorsOfIndustry(GCRSectorOfIndustryArray value) { + this.sectorsOfIndustry = value; + } + + /** + * Gets the value of the positionsInOtherCompanies property. + * + * @return + * possible object is + * {@link GCRJobTitleArray } + * + */ + public GCRJobTitleArray getPositionsInOtherCompanies() { + return positionsInOtherCompanies; + } + + /** + * Sets the value of the positionsInOtherCompanies property. + * + * @param value + * allowed object is + * {@link GCRJobTitleArray } + * + */ + public void setPositionsInOtherCompanies(GCRJobTitleArray value) { + this.positionsInOtherCompanies = value; + } + + /** + * Gets the value of the annualFigures property. + * + * @return + * possible object is + * {@link GCRAnnualFiguresArray } + * + */ + public GCRAnnualFiguresArray getAnnualFigures() { + return annualFigures; + } + + /** + * Sets the value of the annualFigures property. + * + * @param value + * allowed object is + * {@link GCRAnnualFiguresArray } + * + */ + public void setAnnualFigures(GCRAnnualFiguresArray value) { + this.annualFigures = value; + } + + /** + * Gets the value of the financialDetails property. + * + * @return + * possible object is + * {@link GCRFinancialDetails } + * + */ + public GCRFinancialDetails getFinancialDetails() { + return financialDetails; + } + + /** + * Sets the value of the financialDetails property. + * + * @param value + * allowed object is + * {@link GCRFinancialDetails } + * + */ + public void setFinancialDetails(GCRFinancialDetails value) { + this.financialDetails = value; + } + + /** + * Gets the value of the financialCalamities property. + * + * @return + * possible object is + * {@link GCRFinancialCalamityArray } + * + */ + public GCRFinancialCalamityArray getFinancialCalamities() { + return financialCalamities; + } + + /** + * Sets the value of the financialCalamities property. + * + * @param value + * allowed object is + * {@link GCRFinancialCalamityArray } + * + */ + public void setFinancialCalamities(GCRFinancialCalamityArray value) { + this.financialCalamities = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyAnnualAccount.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyAnnualAccount.java new file mode 100644 index 0000000..1e73584 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyAnnualAccount.java @@ -0,0 +1,557 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRCompanyAnnualAccount complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCompanyAnnualAccount">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="financial_year" type="{http://www.w3.org/2001/XMLSchema}gYear" minOccurs="0"/>
+ *         <element name="month_end_financial_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="day_end_financial_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="length_financial_year_in_months" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="reliable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="account_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="account_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="filing" type="{http://www.webservices.nl/soap/}GCRFiling" minOccurs="0"/>
+ *         <element name="financial_year_graydon" type="{http://www.w3.org/2001/XMLSchema}gYear" minOccurs="0"/>
+ *         <element name="currency_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="scale_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="scale_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_of_drawing_up" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="balance_sheet_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="balance_sheet_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="balance_sheet" type="{http://www.webservices.nl/soap/}GCRBalanceSheet" minOccurs="0"/>
+ *         <element name="profit_and_loss_account" type="{http://www.webservices.nl/soap/}GCRItemArray" minOccurs="0"/>
+ *         <element name="supplement_to_annual_account" type="{http://www.webservices.nl/soap/}GCRItemArray" minOccurs="0"/>
+ *         <element name="ratios" type="{http://www.webservices.nl/soap/}GCRRatioArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCompanyAnnualAccount", propOrder = { + +}) +public class GCRCompanyAnnualAccount { + + @XmlElement(name = "financial_year") + @XmlSchemaType(name = "gYear") + protected XMLGregorianCalendar financialYear; + @XmlElement(name = "month_end_financial_year") + protected Integer monthEndFinancialYear; + @XmlElement(name = "day_end_financial_year") + protected Integer dayEndFinancialYear; + @XmlElement(name = "length_financial_year_in_months") + protected Integer lengthFinancialYearInMonths; + protected Boolean reliable; + @XmlElement(name = "account_code") + protected String accountCode; + @XmlElement(name = "account_text") + protected String accountText; + protected GCRFiling filing; + @XmlElement(name = "financial_year_graydon") + @XmlSchemaType(name = "gYear") + protected XMLGregorianCalendar financialYearGraydon; + @XmlElement(name = "currency_code") + protected String currencyCode; + @XmlElement(name = "scale_code") + protected String scaleCode; + @XmlElement(name = "scale_text") + protected String scaleText; + @XmlElement(name = "date_of_drawing_up") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateOfDrawingUp; + @XmlElement(name = "balance_sheet_code") + protected String balanceSheetCode; + @XmlElement(name = "balance_sheet_text") + protected String balanceSheetText; + @XmlElement(name = "balance_sheet") + protected GCRBalanceSheet balanceSheet; + @XmlElement(name = "profit_and_loss_account") + protected GCRItemArray profitAndLossAccount; + @XmlElement(name = "supplement_to_annual_account") + protected GCRItemArray supplementToAnnualAccount; + protected GCRRatioArray ratios; + + /** + * Gets the value of the financialYear property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFinancialYear() { + return financialYear; + } + + /** + * Sets the value of the financialYear property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFinancialYear(XMLGregorianCalendar value) { + this.financialYear = value; + } + + /** + * Gets the value of the monthEndFinancialYear property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMonthEndFinancialYear() { + return monthEndFinancialYear; + } + + /** + * Sets the value of the monthEndFinancialYear property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMonthEndFinancialYear(Integer value) { + this.monthEndFinancialYear = value; + } + + /** + * Gets the value of the dayEndFinancialYear property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDayEndFinancialYear() { + return dayEndFinancialYear; + } + + /** + * Sets the value of the dayEndFinancialYear property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDayEndFinancialYear(Integer value) { + this.dayEndFinancialYear = value; + } + + /** + * Gets the value of the lengthFinancialYearInMonths property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getLengthFinancialYearInMonths() { + return lengthFinancialYearInMonths; + } + + /** + * Sets the value of the lengthFinancialYearInMonths property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setLengthFinancialYearInMonths(Integer value) { + this.lengthFinancialYearInMonths = value; + } + + /** + * Gets the value of the reliable property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isReliable() { + return reliable; + } + + /** + * Sets the value of the reliable property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setReliable(Boolean value) { + this.reliable = value; + } + + /** + * Gets the value of the accountCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAccountCode() { + return accountCode; + } + + /** + * Sets the value of the accountCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAccountCode(String value) { + this.accountCode = value; + } + + /** + * Gets the value of the accountText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAccountText() { + return accountText; + } + + /** + * Sets the value of the accountText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAccountText(String value) { + this.accountText = value; + } + + /** + * Gets the value of the filing property. + * + * @return + * possible object is + * {@link GCRFiling } + * + */ + public GCRFiling getFiling() { + return filing; + } + + /** + * Sets the value of the filing property. + * + * @param value + * allowed object is + * {@link GCRFiling } + * + */ + public void setFiling(GCRFiling value) { + this.filing = value; + } + + /** + * Gets the value of the financialYearGraydon property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFinancialYearGraydon() { + return financialYearGraydon; + } + + /** + * Sets the value of the financialYearGraydon property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFinancialYearGraydon(XMLGregorianCalendar value) { + this.financialYearGraydon = value; + } + + /** + * Gets the value of the currencyCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCurrencyCode() { + return currencyCode; + } + + /** + * Sets the value of the currencyCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCurrencyCode(String value) { + this.currencyCode = value; + } + + /** + * Gets the value of the scaleCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getScaleCode() { + return scaleCode; + } + + /** + * Sets the value of the scaleCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setScaleCode(String value) { + this.scaleCode = value; + } + + /** + * Gets the value of the scaleText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getScaleText() { + return scaleText; + } + + /** + * Sets the value of the scaleText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setScaleText(String value) { + this.scaleText = value; + } + + /** + * Gets the value of the dateOfDrawingUp property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateOfDrawingUp() { + return dateOfDrawingUp; + } + + /** + * Sets the value of the dateOfDrawingUp property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateOfDrawingUp(XMLGregorianCalendar value) { + this.dateOfDrawingUp = value; + } + + /** + * Gets the value of the balanceSheetCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBalanceSheetCode() { + return balanceSheetCode; + } + + /** + * Sets the value of the balanceSheetCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBalanceSheetCode(String value) { + this.balanceSheetCode = value; + } + + /** + * Gets the value of the balanceSheetText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBalanceSheetText() { + return balanceSheetText; + } + + /** + * Sets the value of the balanceSheetText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBalanceSheetText(String value) { + this.balanceSheetText = value; + } + + /** + * Gets the value of the balanceSheet property. + * + * @return + * possible object is + * {@link GCRBalanceSheet } + * + */ + public GCRBalanceSheet getBalanceSheet() { + return balanceSheet; + } + + /** + * Sets the value of the balanceSheet property. + * + * @param value + * allowed object is + * {@link GCRBalanceSheet } + * + */ + public void setBalanceSheet(GCRBalanceSheet value) { + this.balanceSheet = value; + } + + /** + * Gets the value of the profitAndLossAccount property. + * + * @return + * possible object is + * {@link GCRItemArray } + * + */ + public GCRItemArray getProfitAndLossAccount() { + return profitAndLossAccount; + } + + /** + * Sets the value of the profitAndLossAccount property. + * + * @param value + * allowed object is + * {@link GCRItemArray } + * + */ + public void setProfitAndLossAccount(GCRItemArray value) { + this.profitAndLossAccount = value; + } + + /** + * Gets the value of the supplementToAnnualAccount property. + * + * @return + * possible object is + * {@link GCRItemArray } + * + */ + public GCRItemArray getSupplementToAnnualAccount() { + return supplementToAnnualAccount; + } + + /** + * Sets the value of the supplementToAnnualAccount property. + * + * @param value + * allowed object is + * {@link GCRItemArray } + * + */ + public void setSupplementToAnnualAccount(GCRItemArray value) { + this.supplementToAnnualAccount = value; + } + + /** + * Gets the value of the ratios property. + * + * @return + * possible object is + * {@link GCRRatioArray } + * + */ + public GCRRatioArray getRatios() { + return ratios; + } + + /** + * Sets the value of the ratios property. + * + * @param value + * allowed object is + * {@link GCRRatioArray } + * + */ + public void setRatios(GCRRatioArray value) { + this.ratios = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyAnnualAccountArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyAnnualAccountArray.java new file mode 100644 index 0000000..300938f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyAnnualAccountArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCompanyAnnualAccountArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCompanyAnnualAccountArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCompanyAnnualAccount" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCompanyAnnualAccountArray", propOrder = { + "item" +}) +public class GCRCompanyAnnualAccountArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRCompanyAnnualAccount } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyArray.java new file mode 100644 index 0000000..41d5d98 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCompanyArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCompanyArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCompany" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCompanyArray", propOrder = { + "item" +}) +public class GCRCompanyArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRCompany } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyContinuedUnder.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyContinuedUnder.java new file mode 100644 index 0000000..295ec33 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyContinuedUnder.java @@ -0,0 +1,154 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRCompanyContinuedUnder complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCompanyContinuedUnder">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="continued_under_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="continued_under_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCompanyContinuedUnder", propOrder = { + +}) +public class GCRCompanyContinuedUnder { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + @XmlElement(name = "continued_under_code") + protected Integer continuedUnderCode; + @XmlElement(name = "continued_under_text") + protected String continuedUnderText; + @XmlElement(name = "date_from") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFrom; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the continuedUnderCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getContinuedUnderCode() { + return continuedUnderCode; + } + + /** + * Sets the value of the continuedUnderCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setContinuedUnderCode(Integer value) { + this.continuedUnderCode = value; + } + + /** + * Gets the value of the continuedUnderText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContinuedUnderText() { + return continuedUnderText; + } + + /** + * Sets the value of the continuedUnderText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContinuedUnderText(String value) { + this.continuedUnderText = value; + } + + /** + * Gets the value of the dateFrom property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFrom() { + return dateFrom; + } + + /** + * Sets the value of the dateFrom property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFrom(XMLGregorianCalendar value) { + this.dateFrom = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyContinuedUnderArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyContinuedUnderArray.java new file mode 100644 index 0000000..1ecc7f6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyContinuedUnderArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCompanyContinuedUnderArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCompanyContinuedUnderArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCompanyContinuedUnder" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCompanyContinuedUnderArray", propOrder = { + "item" +}) +public class GCRCompanyContinuedUnderArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRCompanyContinuedUnder } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItself.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItself.java new file mode 100644 index 0000000..1e28006 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItself.java @@ -0,0 +1,472 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCompanyItself complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCompanyItself">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="contact_details" type="{http://www.webservices.nl/soap/}GCRContactDetails" minOccurs="0"/>
+ *         <element name="official_data" type="{http://www.webservices.nl/soap/}GCROfficialData" minOccurs="0"/>
+ *         <element name="history" type="{http://www.webservices.nl/soap/}GCRHistory" minOccurs="0"/>
+ *         <element name="positions_in_other_companies" type="{http://www.webservices.nl/soap/}GCRJobTitleArray" minOccurs="0"/>
+ *         <element name="annual_figures" type="{http://www.webservices.nl/soap/}GCRAnnualFiguresArray" minOccurs="0"/>
+ *         <element name="financial_details" type="{http://www.webservices.nl/soap/}GCRFinancialDetails" minOccurs="0"/>
+ *         <element name="financial_calamities" type="{http://www.webservices.nl/soap/}GCRFinancialCalamityArray" minOccurs="0"/>
+ *         <element name="personnel" type="{http://www.webservices.nl/soap/}GCRPersonnel" minOccurs="0"/>
+ *         <element name="credit_advice_data" type="{http://www.webservices.nl/soap/}GCRCreditAdviceData" minOccurs="0"/>
+ *         <element name="sectors_of_industry" type="{http://www.webservices.nl/soap/}GCRSectorOfIndustryArray" minOccurs="0"/>
+ *         <element name="calamity" type="{http://www.webservices.nl/soap/}GCRCalamity" minOccurs="0"/>
+ *         <element name="payment_information" type="{http://www.webservices.nl/soap/}GCRPaymentInformationArray" minOccurs="0"/>
+ *         <element name="declarations_of_liability" type="{http://www.webservices.nl/soap/}GCRDeclarationOfLiabilityArray" minOccurs="0"/>
+ *         <element name="concern_liaisons" type="{http://www.webservices.nl/soap/}GCRLiaisonArray" minOccurs="0"/>
+ *         <element name="company_management" type="{http://www.webservices.nl/soap/}GCRCompanyManagement" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCompanyItself", propOrder = { + +}) +public class GCRCompanyItself { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + @XmlElement(name = "contact_details") + protected GCRContactDetails contactDetails; + @XmlElement(name = "official_data") + protected GCROfficialData officialData; + protected GCRHistory history; + @XmlElement(name = "positions_in_other_companies") + protected GCRJobTitleArray positionsInOtherCompanies; + @XmlElement(name = "annual_figures") + protected GCRAnnualFiguresArray annualFigures; + @XmlElement(name = "financial_details") + protected GCRFinancialDetails financialDetails; + @XmlElement(name = "financial_calamities") + protected GCRFinancialCalamityArray financialCalamities; + protected GCRPersonnel personnel; + @XmlElement(name = "credit_advice_data") + protected GCRCreditAdviceData creditAdviceData; + @XmlElement(name = "sectors_of_industry") + protected GCRSectorOfIndustryArray sectorsOfIndustry; + protected GCRCalamity calamity; + @XmlElement(name = "payment_information") + protected GCRPaymentInformationArray paymentInformation; + @XmlElement(name = "declarations_of_liability") + protected GCRDeclarationOfLiabilityArray declarationsOfLiability; + @XmlElement(name = "concern_liaisons") + protected GCRLiaisonArray concernLiaisons; + @XmlElement(name = "company_management") + protected GCRCompanyManagement companyManagement; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the contactDetails property. + * + * @return + * possible object is + * {@link GCRContactDetails } + * + */ + public GCRContactDetails getContactDetails() { + return contactDetails; + } + + /** + * Sets the value of the contactDetails property. + * + * @param value + * allowed object is + * {@link GCRContactDetails } + * + */ + public void setContactDetails(GCRContactDetails value) { + this.contactDetails = value; + } + + /** + * Gets the value of the officialData property. + * + * @return + * possible object is + * {@link GCROfficialData } + * + */ + public GCROfficialData getOfficialData() { + return officialData; + } + + /** + * Sets the value of the officialData property. + * + * @param value + * allowed object is + * {@link GCROfficialData } + * + */ + public void setOfficialData(GCROfficialData value) { + this.officialData = value; + } + + /** + * Gets the value of the history property. + * + * @return + * possible object is + * {@link GCRHistory } + * + */ + public GCRHistory getHistory() { + return history; + } + + /** + * Sets the value of the history property. + * + * @param value + * allowed object is + * {@link GCRHistory } + * + */ + public void setHistory(GCRHistory value) { + this.history = value; + } + + /** + * Gets the value of the positionsInOtherCompanies property. + * + * @return + * possible object is + * {@link GCRJobTitleArray } + * + */ + public GCRJobTitleArray getPositionsInOtherCompanies() { + return positionsInOtherCompanies; + } + + /** + * Sets the value of the positionsInOtherCompanies property. + * + * @param value + * allowed object is + * {@link GCRJobTitleArray } + * + */ + public void setPositionsInOtherCompanies(GCRJobTitleArray value) { + this.positionsInOtherCompanies = value; + } + + /** + * Gets the value of the annualFigures property. + * + * @return + * possible object is + * {@link GCRAnnualFiguresArray } + * + */ + public GCRAnnualFiguresArray getAnnualFigures() { + return annualFigures; + } + + /** + * Sets the value of the annualFigures property. + * + * @param value + * allowed object is + * {@link GCRAnnualFiguresArray } + * + */ + public void setAnnualFigures(GCRAnnualFiguresArray value) { + this.annualFigures = value; + } + + /** + * Gets the value of the financialDetails property. + * + * @return + * possible object is + * {@link GCRFinancialDetails } + * + */ + public GCRFinancialDetails getFinancialDetails() { + return financialDetails; + } + + /** + * Sets the value of the financialDetails property. + * + * @param value + * allowed object is + * {@link GCRFinancialDetails } + * + */ + public void setFinancialDetails(GCRFinancialDetails value) { + this.financialDetails = value; + } + + /** + * Gets the value of the financialCalamities property. + * + * @return + * possible object is + * {@link GCRFinancialCalamityArray } + * + */ + public GCRFinancialCalamityArray getFinancialCalamities() { + return financialCalamities; + } + + /** + * Sets the value of the financialCalamities property. + * + * @param value + * allowed object is + * {@link GCRFinancialCalamityArray } + * + */ + public void setFinancialCalamities(GCRFinancialCalamityArray value) { + this.financialCalamities = value; + } + + /** + * Gets the value of the personnel property. + * + * @return + * possible object is + * {@link GCRPersonnel } + * + */ + public GCRPersonnel getPersonnel() { + return personnel; + } + + /** + * Sets the value of the personnel property. + * + * @param value + * allowed object is + * {@link GCRPersonnel } + * + */ + public void setPersonnel(GCRPersonnel value) { + this.personnel = value; + } + + /** + * Gets the value of the creditAdviceData property. + * + * @return + * possible object is + * {@link GCRCreditAdviceData } + * + */ + public GCRCreditAdviceData getCreditAdviceData() { + return creditAdviceData; + } + + /** + * Sets the value of the creditAdviceData property. + * + * @param value + * allowed object is + * {@link GCRCreditAdviceData } + * + */ + public void setCreditAdviceData(GCRCreditAdviceData value) { + this.creditAdviceData = value; + } + + /** + * Gets the value of the sectorsOfIndustry property. + * + * @return + * possible object is + * {@link GCRSectorOfIndustryArray } + * + */ + public GCRSectorOfIndustryArray getSectorsOfIndustry() { + return sectorsOfIndustry; + } + + /** + * Sets the value of the sectorsOfIndustry property. + * + * @param value + * allowed object is + * {@link GCRSectorOfIndustryArray } + * + */ + public void setSectorsOfIndustry(GCRSectorOfIndustryArray value) { + this.sectorsOfIndustry = value; + } + + /** + * Gets the value of the calamity property. + * + * @return + * possible object is + * {@link GCRCalamity } + * + */ + public GCRCalamity getCalamity() { + return calamity; + } + + /** + * Sets the value of the calamity property. + * + * @param value + * allowed object is + * {@link GCRCalamity } + * + */ + public void setCalamity(GCRCalamity value) { + this.calamity = value; + } + + /** + * Gets the value of the paymentInformation property. + * + * @return + * possible object is + * {@link GCRPaymentInformationArray } + * + */ + public GCRPaymentInformationArray getPaymentInformation() { + return paymentInformation; + } + + /** + * Sets the value of the paymentInformation property. + * + * @param value + * allowed object is + * {@link GCRPaymentInformationArray } + * + */ + public void setPaymentInformation(GCRPaymentInformationArray value) { + this.paymentInformation = value; + } + + /** + * Gets the value of the declarationsOfLiability property. + * + * @return + * possible object is + * {@link GCRDeclarationOfLiabilityArray } + * + */ + public GCRDeclarationOfLiabilityArray getDeclarationsOfLiability() { + return declarationsOfLiability; + } + + /** + * Sets the value of the declarationsOfLiability property. + * + * @param value + * allowed object is + * {@link GCRDeclarationOfLiabilityArray } + * + */ + public void setDeclarationsOfLiability(GCRDeclarationOfLiabilityArray value) { + this.declarationsOfLiability = value; + } + + /** + * Gets the value of the concernLiaisons property. + * + * @return + * possible object is + * {@link GCRLiaisonArray } + * + */ + public GCRLiaisonArray getConcernLiaisons() { + return concernLiaisons; + } + + /** + * Sets the value of the concernLiaisons property. + * + * @param value + * allowed object is + * {@link GCRLiaisonArray } + * + */ + public void setConcernLiaisons(GCRLiaisonArray value) { + this.concernLiaisons = value; + } + + /** + * Gets the value of the companyManagement property. + * + * @return + * possible object is + * {@link GCRCompanyManagement } + * + */ + public GCRCompanyManagement getCompanyManagement() { + return companyManagement; + } + + /** + * Sets the value of the companyManagement property. + * + * @param value + * allowed object is + * {@link GCRCompanyManagement } + * + */ + public void setCompanyManagement(GCRCompanyManagement value) { + this.companyManagement = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItselfAlarm.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItselfAlarm.java new file mode 100644 index 0000000..4a59c33 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItselfAlarm.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCompanyItselfAlarm complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCompanyItselfAlarm">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="contact_details" type="{http://www.webservices.nl/soap/}GCRAlarmContactDetails" minOccurs="0"/>
+ *         <element name="discontinuance" type="{http://www.webservices.nl/soap/}GCRDiscontinuance" minOccurs="0"/>
+ *         <element name="special_company_information" type="{http://www.webservices.nl/soap/}GCRSpecialCompanyInformationArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCompanyItselfAlarm", propOrder = { + +}) +public class GCRCompanyItselfAlarm { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + @XmlElement(name = "contact_details") + protected GCRAlarmContactDetails contactDetails; + protected GCRDiscontinuance discontinuance; + @XmlElement(name = "special_company_information") + protected GCRSpecialCompanyInformationArray specialCompanyInformation; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the contactDetails property. + * + * @return + * possible object is + * {@link GCRAlarmContactDetails } + * + */ + public GCRAlarmContactDetails getContactDetails() { + return contactDetails; + } + + /** + * Sets the value of the contactDetails property. + * + * @param value + * allowed object is + * {@link GCRAlarmContactDetails } + * + */ + public void setContactDetails(GCRAlarmContactDetails value) { + this.contactDetails = value; + } + + /** + * Gets the value of the discontinuance property. + * + * @return + * possible object is + * {@link GCRDiscontinuance } + * + */ + public GCRDiscontinuance getDiscontinuance() { + return discontinuance; + } + + /** + * Sets the value of the discontinuance property. + * + * @param value + * allowed object is + * {@link GCRDiscontinuance } + * + */ + public void setDiscontinuance(GCRDiscontinuance value) { + this.discontinuance = value; + } + + /** + * Gets the value of the specialCompanyInformation property. + * + * @return + * possible object is + * {@link GCRSpecialCompanyInformationArray } + * + */ + public GCRSpecialCompanyInformationArray getSpecialCompanyInformation() { + return specialCompanyInformation; + } + + /** + * Sets the value of the specialCompanyInformation property. + * + * @param value + * allowed object is + * {@link GCRSpecialCompanyInformationArray } + * + */ + public void setSpecialCompanyInformation(GCRSpecialCompanyInformationArray value) { + this.specialCompanyInformation = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItselfCalamity.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItselfCalamity.java new file mode 100644 index 0000000..6bc60bd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItselfCalamity.java @@ -0,0 +1,392 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCompanyItselfCalamity complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCompanyItselfCalamity">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="contact_details" type="{http://www.webservices.nl/soap/}GCRContactDetails" minOccurs="0"/>
+ *         <element name="official_data" type="{http://www.webservices.nl/soap/}GCROfficialData" minOccurs="0"/>
+ *         <element name="history" type="{http://www.webservices.nl/soap/}GCRHistory" minOccurs="0"/>
+ *         <element name="sectors_of_industry" type="{http://www.webservices.nl/soap/}GCRSectorOfIndustryArray" minOccurs="0"/>
+ *         <element name="share_holders" type="{http://www.webservices.nl/soap/}GCRShareHolderArray" minOccurs="0"/>
+ *         <element name="branch_offices" type="{http://www.webservices.nl/soap/}GCRBranchOfficeArray" minOccurs="0"/>
+ *         <element name="participations" type="{http://www.webservices.nl/soap/}GCRParticipationArray" minOccurs="0"/>
+ *         <element name="import_export" type="{http://www.webservices.nl/soap/}GCRImportExport" minOccurs="0"/>
+ *         <element name="special_company_information" type="{http://www.webservices.nl/soap/}GCRSpecialCompanyInformationArray" minOccurs="0"/>
+ *         <element name="financial_calamities" type="{http://www.webservices.nl/soap/}GCRFinancialCalamityArray" minOccurs="0"/>
+ *         <element name="concern_liaisons" type="{http://www.webservices.nl/soap/}GCRLiaisonArray" minOccurs="0"/>
+ *         <element name="company_management" type="{http://www.webservices.nl/soap/}GCRCompanyManagement" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCompanyItselfCalamity", propOrder = { + +}) +public class GCRCompanyItselfCalamity { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + @XmlElement(name = "contact_details") + protected GCRContactDetails contactDetails; + @XmlElement(name = "official_data") + protected GCROfficialData officialData; + protected GCRHistory history; + @XmlElement(name = "sectors_of_industry") + protected GCRSectorOfIndustryArray sectorsOfIndustry; + @XmlElement(name = "share_holders") + protected GCRShareHolderArray shareHolders; + @XmlElement(name = "branch_offices") + protected GCRBranchOfficeArray branchOffices; + protected GCRParticipationArray participations; + @XmlElement(name = "import_export") + protected GCRImportExport importExport; + @XmlElement(name = "special_company_information") + protected GCRSpecialCompanyInformationArray specialCompanyInformation; + @XmlElement(name = "financial_calamities") + protected GCRFinancialCalamityArray financialCalamities; + @XmlElement(name = "concern_liaisons") + protected GCRLiaisonArray concernLiaisons; + @XmlElement(name = "company_management") + protected GCRCompanyManagement companyManagement; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the contactDetails property. + * + * @return + * possible object is + * {@link GCRContactDetails } + * + */ + public GCRContactDetails getContactDetails() { + return contactDetails; + } + + /** + * Sets the value of the contactDetails property. + * + * @param value + * allowed object is + * {@link GCRContactDetails } + * + */ + public void setContactDetails(GCRContactDetails value) { + this.contactDetails = value; + } + + /** + * Gets the value of the officialData property. + * + * @return + * possible object is + * {@link GCROfficialData } + * + */ + public GCROfficialData getOfficialData() { + return officialData; + } + + /** + * Sets the value of the officialData property. + * + * @param value + * allowed object is + * {@link GCROfficialData } + * + */ + public void setOfficialData(GCROfficialData value) { + this.officialData = value; + } + + /** + * Gets the value of the history property. + * + * @return + * possible object is + * {@link GCRHistory } + * + */ + public GCRHistory getHistory() { + return history; + } + + /** + * Sets the value of the history property. + * + * @param value + * allowed object is + * {@link GCRHistory } + * + */ + public void setHistory(GCRHistory value) { + this.history = value; + } + + /** + * Gets the value of the sectorsOfIndustry property. + * + * @return + * possible object is + * {@link GCRSectorOfIndustryArray } + * + */ + public GCRSectorOfIndustryArray getSectorsOfIndustry() { + return sectorsOfIndustry; + } + + /** + * Sets the value of the sectorsOfIndustry property. + * + * @param value + * allowed object is + * {@link GCRSectorOfIndustryArray } + * + */ + public void setSectorsOfIndustry(GCRSectorOfIndustryArray value) { + this.sectorsOfIndustry = value; + } + + /** + * Gets the value of the shareHolders property. + * + * @return + * possible object is + * {@link GCRShareHolderArray } + * + */ + public GCRShareHolderArray getShareHolders() { + return shareHolders; + } + + /** + * Sets the value of the shareHolders property. + * + * @param value + * allowed object is + * {@link GCRShareHolderArray } + * + */ + public void setShareHolders(GCRShareHolderArray value) { + this.shareHolders = value; + } + + /** + * Gets the value of the branchOffices property. + * + * @return + * possible object is + * {@link GCRBranchOfficeArray } + * + */ + public GCRBranchOfficeArray getBranchOffices() { + return branchOffices; + } + + /** + * Sets the value of the branchOffices property. + * + * @param value + * allowed object is + * {@link GCRBranchOfficeArray } + * + */ + public void setBranchOffices(GCRBranchOfficeArray value) { + this.branchOffices = value; + } + + /** + * Gets the value of the participations property. + * + * @return + * possible object is + * {@link GCRParticipationArray } + * + */ + public GCRParticipationArray getParticipations() { + return participations; + } + + /** + * Sets the value of the participations property. + * + * @param value + * allowed object is + * {@link GCRParticipationArray } + * + */ + public void setParticipations(GCRParticipationArray value) { + this.participations = value; + } + + /** + * Gets the value of the importExport property. + * + * @return + * possible object is + * {@link GCRImportExport } + * + */ + public GCRImportExport getImportExport() { + return importExport; + } + + /** + * Sets the value of the importExport property. + * + * @param value + * allowed object is + * {@link GCRImportExport } + * + */ + public void setImportExport(GCRImportExport value) { + this.importExport = value; + } + + /** + * Gets the value of the specialCompanyInformation property. + * + * @return + * possible object is + * {@link GCRSpecialCompanyInformationArray } + * + */ + public GCRSpecialCompanyInformationArray getSpecialCompanyInformation() { + return specialCompanyInformation; + } + + /** + * Sets the value of the specialCompanyInformation property. + * + * @param value + * allowed object is + * {@link GCRSpecialCompanyInformationArray } + * + */ + public void setSpecialCompanyInformation(GCRSpecialCompanyInformationArray value) { + this.specialCompanyInformation = value; + } + + /** + * Gets the value of the financialCalamities property. + * + * @return + * possible object is + * {@link GCRFinancialCalamityArray } + * + */ + public GCRFinancialCalamityArray getFinancialCalamities() { + return financialCalamities; + } + + /** + * Sets the value of the financialCalamities property. + * + * @param value + * allowed object is + * {@link GCRFinancialCalamityArray } + * + */ + public void setFinancialCalamities(GCRFinancialCalamityArray value) { + this.financialCalamities = value; + } + + /** + * Gets the value of the concernLiaisons property. + * + * @return + * possible object is + * {@link GCRLiaisonArray } + * + */ + public GCRLiaisonArray getConcernLiaisons() { + return concernLiaisons; + } + + /** + * Sets the value of the concernLiaisons property. + * + * @param value + * allowed object is + * {@link GCRLiaisonArray } + * + */ + public void setConcernLiaisons(GCRLiaisonArray value) { + this.concernLiaisons = value; + } + + /** + * Gets the value of the companyManagement property. + * + * @return + * possible object is + * {@link GCRCompanyManagement } + * + */ + public GCRCompanyManagement getCompanyManagement() { + return companyManagement; + } + + /** + * Sets the value of the companyManagement property. + * + * @param value + * allowed object is + * {@link GCRCompanyManagement } + * + */ + public void setCompanyManagement(GCRCompanyManagement value) { + this.companyManagement = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyManagement.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyManagement.java new file mode 100644 index 0000000..87f9ef4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyManagement.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCompanyManagement complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCompanyManagement">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="management" type="{http://www.webservices.nl/soap/}GCRManagementArray" minOccurs="0"/>
+ *         <element name="first_directors" type="{http://www.webservices.nl/soap/}GCRFirstDirectorArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCompanyManagement", propOrder = { + +}) +public class GCRCompanyManagement { + + protected GCRManagementArray management; + @XmlElement(name = "first_directors") + protected GCRFirstDirectorArray firstDirectors; + + /** + * Gets the value of the management property. + * + * @return + * possible object is + * {@link GCRManagementArray } + * + */ + public GCRManagementArray getManagement() { + return management; + } + + /** + * Sets the value of the management property. + * + * @param value + * allowed object is + * {@link GCRManagementArray } + * + */ + public void setManagement(GCRManagementArray value) { + this.management = value; + } + + /** + * Gets the value of the firstDirectors property. + * + * @return + * possible object is + * {@link GCRFirstDirectorArray } + * + */ + public GCRFirstDirectorArray getFirstDirectors() { + return firstDirectors; + } + + /** + * Sets the value of the firstDirectors property. + * + * @param value + * allowed object is + * {@link GCRFirstDirectorArray } + * + */ + public void setFirstDirectors(GCRFirstDirectorArray value) { + this.firstDirectors = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyRelations.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyRelations.java new file mode 100644 index 0000000..0e66aaf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyRelations.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCompanyRelations complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCompanyRelations">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="companies" type="{http://www.webservices.nl/soap/}GCRCompanyArray" minOccurs="0"/>
+ *         <element name="persons" type="{http://www.webservices.nl/soap/}GCRPersonArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCompanyRelations", propOrder = { + +}) +public class GCRCompanyRelations { + + protected GCRCompanyArray companies; + protected GCRPersonArray persons; + + /** + * Gets the value of the companies property. + * + * @return + * possible object is + * {@link GCRCompanyArray } + * + */ + public GCRCompanyArray getCompanies() { + return companies; + } + + /** + * Sets the value of the companies property. + * + * @param value + * allowed object is + * {@link GCRCompanyArray } + * + */ + public void setCompanies(GCRCompanyArray value) { + this.companies = value; + } + + /** + * Gets the value of the persons property. + * + * @return + * possible object is + * {@link GCRPersonArray } + * + */ + public GCRPersonArray getPersons() { + return persons; + } + + /** + * Sets the value of the persons property. + * + * @param value + * allowed object is + * {@link GCRPersonArray } + * + */ + public void setPersons(GCRPersonArray value) { + this.persons = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyRelationsSimple.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyRelationsSimple.java new file mode 100644 index 0000000..0c7be84 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyRelationsSimple.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCompanyRelationsSimple complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCompanyRelationsSimple">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="companies" type="{http://www.webservices.nl/soap/}GCRCompanySimpleArray" minOccurs="0"/>
+ *         <element name="persons" type="{http://www.webservices.nl/soap/}GCRPersonSimpleArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCompanyRelationsSimple", propOrder = { + +}) +public class GCRCompanyRelationsSimple { + + protected GCRCompanySimpleArray companies; + protected GCRPersonSimpleArray persons; + + /** + * Gets the value of the companies property. + * + * @return + * possible object is + * {@link GCRCompanySimpleArray } + * + */ + public GCRCompanySimpleArray getCompanies() { + return companies; + } + + /** + * Sets the value of the companies property. + * + * @param value + * allowed object is + * {@link GCRCompanySimpleArray } + * + */ + public void setCompanies(GCRCompanySimpleArray value) { + this.companies = value; + } + + /** + * Gets the value of the persons property. + * + * @return + * possible object is + * {@link GCRPersonSimpleArray } + * + */ + public GCRPersonSimpleArray getPersons() { + return persons; + } + + /** + * Sets the value of the persons property. + * + * @param value + * allowed object is + * {@link GCRPersonSimpleArray } + * + */ + public void setPersons(GCRPersonSimpleArray value) { + this.persons = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanySimple.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanySimple.java new file mode 100644 index 0000000..5babf71 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanySimple.java @@ -0,0 +1,177 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCompanySimple complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCompanySimple">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="contact_details" type="{http://www.webservices.nl/soap/}GCRContactDetails" minOccurs="0"/>
+ *         <element name="official_data" type="{http://www.webservices.nl/soap/}GCROfficialData" minOccurs="0"/>
+ *         <element name="history" type="{http://www.webservices.nl/soap/}GCRHistory" minOccurs="0"/>
+ *         <element name="sectors_of_industry" type="{http://www.webservices.nl/soap/}GCRSectorOfIndustryArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCompanySimple", propOrder = { + +}) +public class GCRCompanySimple { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + @XmlElement(name = "contact_details") + protected GCRContactDetails contactDetails; + @XmlElement(name = "official_data") + protected GCROfficialData officialData; + protected GCRHistory history; + @XmlElement(name = "sectors_of_industry") + protected GCRSectorOfIndustryArray sectorsOfIndustry; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the contactDetails property. + * + * @return + * possible object is + * {@link GCRContactDetails } + * + */ + public GCRContactDetails getContactDetails() { + return contactDetails; + } + + /** + * Sets the value of the contactDetails property. + * + * @param value + * allowed object is + * {@link GCRContactDetails } + * + */ + public void setContactDetails(GCRContactDetails value) { + this.contactDetails = value; + } + + /** + * Gets the value of the officialData property. + * + * @return + * possible object is + * {@link GCROfficialData } + * + */ + public GCROfficialData getOfficialData() { + return officialData; + } + + /** + * Sets the value of the officialData property. + * + * @param value + * allowed object is + * {@link GCROfficialData } + * + */ + public void setOfficialData(GCROfficialData value) { + this.officialData = value; + } + + /** + * Gets the value of the history property. + * + * @return + * possible object is + * {@link GCRHistory } + * + */ + public GCRHistory getHistory() { + return history; + } + + /** + * Sets the value of the history property. + * + * @param value + * allowed object is + * {@link GCRHistory } + * + */ + public void setHistory(GCRHistory value) { + this.history = value; + } + + /** + * Gets the value of the sectorsOfIndustry property. + * + * @return + * possible object is + * {@link GCRSectorOfIndustryArray } + * + */ + public GCRSectorOfIndustryArray getSectorsOfIndustry() { + return sectorsOfIndustry; + } + + /** + * Sets the value of the sectorsOfIndustry property. + * + * @param value + * allowed object is + * {@link GCRSectorOfIndustryArray } + * + */ + public void setSectorsOfIndustry(GCRSectorOfIndustryArray value) { + this.sectorsOfIndustry = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanySimpleArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanySimpleArray.java new file mode 100644 index 0000000..3bae0e5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanySimpleArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCompanySimpleArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCompanySimpleArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCompanySimple" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCompanySimpleArray", propOrder = { + "item" +}) +public class GCRCompanySimpleArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRCompanySimple } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContactDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContactDetails.java new file mode 100644 index 0000000..23e1a4d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContactDetails.java @@ -0,0 +1,149 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRContactDetails complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRContactDetails">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}GCRTradeNameArray" minOccurs="0"/>
+ *         <element name="addresses" type="{http://www.webservices.nl/soap/}GCRAddressArray" minOccurs="0"/>
+ *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}GCRTelephoneNumberArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRContactDetails", propOrder = { + +}) +public class GCRContactDetails { + + @XmlElement(name = "company_name") + protected String companyName; + @XmlElement(name = "trade_names") + protected GCRTradeNameArray tradeNames; + protected GCRAddressArray addresses; + @XmlElement(name = "telephone_numbers") + protected GCRTelephoneNumberArray telephoneNumbers; + + /** + * Gets the value of the companyName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyName() { + return companyName; + } + + /** + * Sets the value of the companyName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyName(String value) { + this.companyName = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link GCRTradeNameArray } + * + */ + public GCRTradeNameArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link GCRTradeNameArray } + * + */ + public void setTradeNames(GCRTradeNameArray value) { + this.tradeNames = value; + } + + /** + * Gets the value of the addresses property. + * + * @return + * possible object is + * {@link GCRAddressArray } + * + */ + public GCRAddressArray getAddresses() { + return addresses; + } + + /** + * Sets the value of the addresses property. + * + * @param value + * allowed object is + * {@link GCRAddressArray } + * + */ + public void setAddresses(GCRAddressArray value) { + this.addresses = value; + } + + /** + * Gets the value of the telephoneNumbers property. + * + * @return + * possible object is + * {@link GCRTelephoneNumberArray } + * + */ + public GCRTelephoneNumberArray getTelephoneNumbers() { + return telephoneNumbers; + } + + /** + * Sets the value of the telephoneNumbers property. + * + * @param value + * allowed object is + * {@link GCRTelephoneNumberArray } + * + */ + public void setTelephoneNumbers(GCRTelephoneNumberArray value) { + this.telephoneNumbers = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContinuation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContinuation.java new file mode 100644 index 0000000..61769a6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContinuation.java @@ -0,0 +1,152 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRContinuation complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRContinuation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="residence" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRContinuation", propOrder = { + +}) +public class GCRContinuation { + + @XmlElement(name = "date_from") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFrom; + protected String residence; + @XmlElement(name = "legal_form_code") + protected Integer legalFormCode; + @XmlElement(name = "legal_form_text") + protected String legalFormText; + + /** + * Gets the value of the dateFrom property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFrom() { + return dateFrom; + } + + /** + * Sets the value of the dateFrom property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFrom(XMLGregorianCalendar value) { + this.dateFrom = value; + } + + /** + * Gets the value of the residence property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getResidence() { + return residence; + } + + /** + * Sets the value of the residence property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setResidence(String value) { + this.residence = value; + } + + /** + * Gets the value of the legalFormCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getLegalFormCode() { + return legalFormCode; + } + + /** + * Sets the value of the legalFormCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setLegalFormCode(Integer value) { + this.legalFormCode = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContinuationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContinuationArray.java new file mode 100644 index 0000000..1303e54 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContinuationArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRContinuationArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRContinuationArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRContinuation" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRContinuationArray", propOrder = { + "item" +}) +public class GCRContinuationArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRContinuation } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCountry.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCountry.java new file mode 100644 index 0000000..841dcce --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCountry.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCountry complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCountry">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="country_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCountry", propOrder = { + +}) +public class GCRCountry { + + @XmlElement(name = "country_code") + protected int countryCode; + @XmlElement(name = "country_text", required = true) + protected String countryText; + + /** + * Gets the value of the countryCode property. + * + */ + public int getCountryCode() { + return countryCode; + } + + /** + * Sets the value of the countryCode property. + * + */ + public void setCountryCode(int value) { + this.countryCode = value; + } + + /** + * Gets the value of the countryText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryText() { + return countryText; + } + + /** + * Sets the value of the countryText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryText(String value) { + this.countryText = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCountryArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCountryArray.java new file mode 100644 index 0000000..23ac17f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCountryArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCountryArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCountryArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCountry" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCountryArray", propOrder = { + "item" +}) +public class GCRCountryArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRCountry } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdvice.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdvice.java new file mode 100644 index 0000000..1b7a1b5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdvice.java @@ -0,0 +1,178 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCreditAdvice complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCreditAdvice">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="credit_amount" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="credit_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="history_advised_limits" type="{http://www.webservices.nl/soap/}GCRHistoryAdvisedLimitArray" minOccurs="0"/>
+ *         <element name="credit_factors" type="{http://www.webservices.nl/soap/}GCRCreditFactorArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCreditAdvice", propOrder = { + +}) +public class GCRCreditAdvice { + + @XmlElement(name = "graydon_company_id") + protected BigInteger graydonCompanyId; + @XmlElement(name = "credit_amount") + protected String creditAmount; + @XmlElement(name = "credit_currency") + protected String creditCurrency; + @XmlElement(name = "history_advised_limits") + protected GCRHistoryAdvisedLimitArray historyAdvisedLimits; + @XmlElement(name = "credit_factors") + protected GCRCreditFactorArray creditFactors; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the creditAmount property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreditAmount() { + return creditAmount; + } + + /** + * Sets the value of the creditAmount property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreditAmount(String value) { + this.creditAmount = value; + } + + /** + * Gets the value of the creditCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreditCurrency() { + return creditCurrency; + } + + /** + * Sets the value of the creditCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreditCurrency(String value) { + this.creditCurrency = value; + } + + /** + * Gets the value of the historyAdvisedLimits property. + * + * @return + * possible object is + * {@link GCRHistoryAdvisedLimitArray } + * + */ + public GCRHistoryAdvisedLimitArray getHistoryAdvisedLimits() { + return historyAdvisedLimits; + } + + /** + * Sets the value of the historyAdvisedLimits property. + * + * @param value + * allowed object is + * {@link GCRHistoryAdvisedLimitArray } + * + */ + public void setHistoryAdvisedLimits(GCRHistoryAdvisedLimitArray value) { + this.historyAdvisedLimits = value; + } + + /** + * Gets the value of the creditFactors property. + * + * @return + * possible object is + * {@link GCRCreditFactorArray } + * + */ + public GCRCreditFactorArray getCreditFactors() { + return creditFactors; + } + + /** + * Sets the value of the creditFactors property. + * + * @param value + * allowed object is + * {@link GCRCreditFactorArray } + * + */ + public void setCreditFactors(GCRCreditFactorArray value) { + this.creditFactors = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdviceData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdviceData.java new file mode 100644 index 0000000..478def5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdviceData.java @@ -0,0 +1,142 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCreditAdviceData complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCreditAdviceData">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="including_personal_judgement" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="credit_advice" type="{http://www.webservices.nl/soap/}GCRCreditAdvice" minOccurs="0"/>
+ *         <element name="credit_advice_mother" type="{http://www.webservices.nl/soap/}GCRCreditAdviceMother" minOccurs="0"/>
+ *         <element name="credit_rating" type="{http://www.webservices.nl/soap/}GCRCreditRating" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCreditAdviceData", propOrder = { + +}) +public class GCRCreditAdviceData { + + @XmlElement(name = "including_personal_judgement") + protected boolean includingPersonalJudgement; + @XmlElement(name = "credit_advice") + protected GCRCreditAdvice creditAdvice; + @XmlElement(name = "credit_advice_mother") + protected GCRCreditAdviceMother creditAdviceMother; + @XmlElement(name = "credit_rating") + protected GCRCreditRating creditRating; + + /** + * Gets the value of the includingPersonalJudgement property. + * + */ + public boolean isIncludingPersonalJudgement() { + return includingPersonalJudgement; + } + + /** + * Sets the value of the includingPersonalJudgement property. + * + */ + public void setIncludingPersonalJudgement(boolean value) { + this.includingPersonalJudgement = value; + } + + /** + * Gets the value of the creditAdvice property. + * + * @return + * possible object is + * {@link GCRCreditAdvice } + * + */ + public GCRCreditAdvice getCreditAdvice() { + return creditAdvice; + } + + /** + * Sets the value of the creditAdvice property. + * + * @param value + * allowed object is + * {@link GCRCreditAdvice } + * + */ + public void setCreditAdvice(GCRCreditAdvice value) { + this.creditAdvice = value; + } + + /** + * Gets the value of the creditAdviceMother property. + * + * @return + * possible object is + * {@link GCRCreditAdviceMother } + * + */ + public GCRCreditAdviceMother getCreditAdviceMother() { + return creditAdviceMother; + } + + /** + * Sets the value of the creditAdviceMother property. + * + * @param value + * allowed object is + * {@link GCRCreditAdviceMother } + * + */ + public void setCreditAdviceMother(GCRCreditAdviceMother value) { + this.creditAdviceMother = value; + } + + /** + * Gets the value of the creditRating property. + * + * @return + * possible object is + * {@link GCRCreditRating } + * + */ + public GCRCreditRating getCreditRating() { + return creditRating; + } + + /** + * Sets the value of the creditRating property. + * + * @param value + * allowed object is + * {@link GCRCreditRating } + * + */ + public void setCreditRating(GCRCreditRating value) { + this.creditRating = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdviceMother.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdviceMother.java new file mode 100644 index 0000000..b0946e8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdviceMother.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCreditAdviceMother complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCreditAdviceMother">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCreditAdviceMother", propOrder = { + +}) +public class GCRCreditAdviceMother { + + @XmlElement(name = "graydon_company_id") + protected BigInteger graydonCompanyId; + protected String amount; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the amount property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAmount() { + return amount; + } + + /** + * Sets the value of the amount property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAmount(String value) { + this.amount = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditFactor.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditFactor.java new file mode 100644 index 0000000..0364637 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditFactor.java @@ -0,0 +1,114 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCreditFactor complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCreditFactor">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="adjustment" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCreditFactor", propOrder = { + +}) +public class GCRCreditFactor { + + @XmlElement(required = true) + protected String type; + @XmlElement(required = true) + protected String description; + protected int adjustment; + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the adjustment property. + * + */ + public int getAdjustment() { + return adjustment; + } + + /** + * Sets the value of the adjustment property. + * + */ + public void setAdjustment(int value) { + this.adjustment = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditFactorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditFactorArray.java new file mode 100644 index 0000000..0524a35 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditFactorArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCreditFactorArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCreditFactorArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCreditFactor" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCreditFactorArray", propOrder = { + "item" +}) +public class GCRCreditFactorArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRCreditFactor } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditRating.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditRating.java new file mode 100644 index 0000000..becd85a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditRating.java @@ -0,0 +1,311 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCreditRating complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCreditRating">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="y_rating" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="pd_rating" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="pd_percentage" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="erc_score" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="credit_flag_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="credit_flag_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ratings" type="{http://www.webservices.nl/soap/}GCRRatingArray" minOccurs="0"/>
+ *         <element name="y_rating_history" type="{http://www.webservices.nl/soap/}GCRRatingHistoryArray" minOccurs="0"/>
+ *         <element name="pd_rating_history" type="{http://www.webservices.nl/soap/}GCRRatingHistoryArray" minOccurs="0"/>
+ *         <element name="pd_percentage_history" type="{http://www.webservices.nl/soap/}GCRPercentageHistoryArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCreditRating", propOrder = { + +}) +public class GCRCreditRating { + + @XmlElement(name = "y_rating") + protected String yRating; + @XmlElement(name = "pd_rating") + protected String pdRating; + @XmlElement(name = "pd_percentage") + protected Float pdPercentage; + @XmlElement(name = "erc_score") + protected String ercScore; + @XmlElement(name = "credit_flag_code") + protected String creditFlagCode; + @XmlElement(name = "credit_flag_text") + protected String creditFlagText; + protected GCRRatingArray ratings; + @XmlElement(name = "y_rating_history") + protected GCRRatingHistoryArray yRatingHistory; + @XmlElement(name = "pd_rating_history") + protected GCRRatingHistoryArray pdRatingHistory; + @XmlElement(name = "pd_percentage_history") + protected GCRPercentageHistoryArray pdPercentageHistory; + + /** + * Gets the value of the yRating property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getYRating() { + return yRating; + } + + /** + * Sets the value of the yRating property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setYRating(String value) { + this.yRating = value; + } + + /** + * Gets the value of the pdRating property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPdRating() { + return pdRating; + } + + /** + * Sets the value of the pdRating property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPdRating(String value) { + this.pdRating = value; + } + + /** + * Gets the value of the pdPercentage property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getPdPercentage() { + return pdPercentage; + } + + /** + * Sets the value of the pdPercentage property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setPdPercentage(Float value) { + this.pdPercentage = value; + } + + /** + * Gets the value of the ercScore property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getErcScore() { + return ercScore; + } + + /** + * Sets the value of the ercScore property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setErcScore(String value) { + this.ercScore = value; + } + + /** + * Gets the value of the creditFlagCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreditFlagCode() { + return creditFlagCode; + } + + /** + * Sets the value of the creditFlagCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreditFlagCode(String value) { + this.creditFlagCode = value; + } + + /** + * Gets the value of the creditFlagText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreditFlagText() { + return creditFlagText; + } + + /** + * Sets the value of the creditFlagText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreditFlagText(String value) { + this.creditFlagText = value; + } + + /** + * Gets the value of the ratings property. + * + * @return + * possible object is + * {@link GCRRatingArray } + * + */ + public GCRRatingArray getRatings() { + return ratings; + } + + /** + * Sets the value of the ratings property. + * + * @param value + * allowed object is + * {@link GCRRatingArray } + * + */ + public void setRatings(GCRRatingArray value) { + this.ratings = value; + } + + /** + * Gets the value of the yRatingHistory property. + * + * @return + * possible object is + * {@link GCRRatingHistoryArray } + * + */ + public GCRRatingHistoryArray getYRatingHistory() { + return yRatingHistory; + } + + /** + * Sets the value of the yRatingHistory property. + * + * @param value + * allowed object is + * {@link GCRRatingHistoryArray } + * + */ + public void setYRatingHistory(GCRRatingHistoryArray value) { + this.yRatingHistory = value; + } + + /** + * Gets the value of the pdRatingHistory property. + * + * @return + * possible object is + * {@link GCRRatingHistoryArray } + * + */ + public GCRRatingHistoryArray getPdRatingHistory() { + return pdRatingHistory; + } + + /** + * Sets the value of the pdRatingHistory property. + * + * @param value + * allowed object is + * {@link GCRRatingHistoryArray } + * + */ + public void setPdRatingHistory(GCRRatingHistoryArray value) { + this.pdRatingHistory = value; + } + + /** + * Gets the value of the pdPercentageHistory property. + * + * @return + * possible object is + * {@link GCRPercentageHistoryArray } + * + */ + public GCRPercentageHistoryArray getPdPercentageHistory() { + return pdPercentageHistory; + } + + /** + * Sets the value of the pdPercentageHistory property. + * + * @param value + * allowed object is + * {@link GCRPercentageHistoryArray } + * + */ + public void setPdPercentageHistory(GCRPercentageHistoryArray value) { + this.pdPercentageHistory = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCurator.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCurator.java new file mode 100644 index 0000000..7469f0f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCurator.java @@ -0,0 +1,100 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRCurator complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCurator">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_person_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="date_when_active_in_job_title" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCurator", propOrder = { + +}) +public class GCRCurator { + + @XmlElement(name = "graydon_person_id", required = true) + protected BigInteger graydonPersonId; + @XmlElement(name = "date_when_active_in_job_title") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateWhenActiveInJobTitle; + + /** + * Gets the value of the graydonPersonId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonPersonId() { + return graydonPersonId; + } + + /** + * Sets the value of the graydonPersonId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonPersonId(BigInteger value) { + this.graydonPersonId = value; + } + + /** + * Gets the value of the dateWhenActiveInJobTitle property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateWhenActiveInJobTitle() { + return dateWhenActiveInJobTitle; + } + + /** + * Sets the value of the dateWhenActiveInJobTitle property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateWhenActiveInJobTitle(XMLGregorianCalendar value) { + this.dateWhenActiveInJobTitle = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCuratorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCuratorArray.java new file mode 100644 index 0000000..b9ac445 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCuratorArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRCuratorArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRCuratorArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCurator" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRCuratorArray", propOrder = { + "item" +}) +public class GCRCuratorArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRCurator } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDebtRestructuringPrivatePersons.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDebtRestructuringPrivatePersons.java new file mode 100644 index 0000000..2e886a3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDebtRestructuringPrivatePersons.java @@ -0,0 +1,372 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRDebtRestructuringPrivatePersons complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRDebtRestructuringPrivatePersons">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="official_registration_number" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="currently_active" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="provisional_verdict_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="definite_verdict_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="debt_restructuring_term_in_months" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="provisional_discontinuance_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="provisional_discontinuance_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="provisional_discontinuance_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="definite_discontinuance_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="definite_discontinuance_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="definite_discontinuance_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="receivers" type="{http://www.webservices.nl/soap/}GCRReceiverArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRDebtRestructuringPrivatePersons", propOrder = { + +}) +public class GCRDebtRestructuringPrivatePersons { + + @XmlElement(name = "official_registration_number") + protected BigInteger officialRegistrationNumber; + @XmlElement(name = "currently_active") + protected Boolean currentlyActive; + @XmlElement(name = "provisional_verdict_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar provisionalVerdictDate; + @XmlElement(name = "definite_verdict_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar definiteVerdictDate; + @XmlElement(name = "debt_restructuring_term_in_months") + protected Integer debtRestructuringTermInMonths; + @XmlElement(name = "provisional_discontinuance_code") + protected Integer provisionalDiscontinuanceCode; + @XmlElement(name = "provisional_discontinuance_text") + protected String provisionalDiscontinuanceText; + @XmlElement(name = "provisional_discontinuance_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar provisionalDiscontinuanceDate; + @XmlElement(name = "definite_discontinuance_code") + protected Integer definiteDiscontinuanceCode; + @XmlElement(name = "definite_discontinuance_text") + protected String definiteDiscontinuanceText; + @XmlElement(name = "definite_discontinuance_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar definiteDiscontinuanceDate; + protected GCRReceiverArray receivers; + + /** + * Gets the value of the officialRegistrationNumber property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getOfficialRegistrationNumber() { + return officialRegistrationNumber; + } + + /** + * Sets the value of the officialRegistrationNumber property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setOfficialRegistrationNumber(BigInteger value) { + this.officialRegistrationNumber = value; + } + + /** + * Gets the value of the currentlyActive property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isCurrentlyActive() { + return currentlyActive; + } + + /** + * Sets the value of the currentlyActive property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setCurrentlyActive(Boolean value) { + this.currentlyActive = value; + } + + /** + * Gets the value of the provisionalVerdictDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getProvisionalVerdictDate() { + return provisionalVerdictDate; + } + + /** + * Sets the value of the provisionalVerdictDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setProvisionalVerdictDate(XMLGregorianCalendar value) { + this.provisionalVerdictDate = value; + } + + /** + * Gets the value of the definiteVerdictDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDefiniteVerdictDate() { + return definiteVerdictDate; + } + + /** + * Sets the value of the definiteVerdictDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDefiniteVerdictDate(XMLGregorianCalendar value) { + this.definiteVerdictDate = value; + } + + /** + * Gets the value of the debtRestructuringTermInMonths property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDebtRestructuringTermInMonths() { + return debtRestructuringTermInMonths; + } + + /** + * Sets the value of the debtRestructuringTermInMonths property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDebtRestructuringTermInMonths(Integer value) { + this.debtRestructuringTermInMonths = value; + } + + /** + * Gets the value of the provisionalDiscontinuanceCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getProvisionalDiscontinuanceCode() { + return provisionalDiscontinuanceCode; + } + + /** + * Sets the value of the provisionalDiscontinuanceCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setProvisionalDiscontinuanceCode(Integer value) { + this.provisionalDiscontinuanceCode = value; + } + + /** + * Gets the value of the provisionalDiscontinuanceText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvisionalDiscontinuanceText() { + return provisionalDiscontinuanceText; + } + + /** + * Sets the value of the provisionalDiscontinuanceText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvisionalDiscontinuanceText(String value) { + this.provisionalDiscontinuanceText = value; + } + + /** + * Gets the value of the provisionalDiscontinuanceDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getProvisionalDiscontinuanceDate() { + return provisionalDiscontinuanceDate; + } + + /** + * Sets the value of the provisionalDiscontinuanceDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setProvisionalDiscontinuanceDate(XMLGregorianCalendar value) { + this.provisionalDiscontinuanceDate = value; + } + + /** + * Gets the value of the definiteDiscontinuanceCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDefiniteDiscontinuanceCode() { + return definiteDiscontinuanceCode; + } + + /** + * Sets the value of the definiteDiscontinuanceCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDefiniteDiscontinuanceCode(Integer value) { + this.definiteDiscontinuanceCode = value; + } + + /** + * Gets the value of the definiteDiscontinuanceText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDefiniteDiscontinuanceText() { + return definiteDiscontinuanceText; + } + + /** + * Sets the value of the definiteDiscontinuanceText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDefiniteDiscontinuanceText(String value) { + this.definiteDiscontinuanceText = value; + } + + /** + * Gets the value of the definiteDiscontinuanceDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDefiniteDiscontinuanceDate() { + return definiteDiscontinuanceDate; + } + + /** + * Sets the value of the definiteDiscontinuanceDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDefiniteDiscontinuanceDate(XMLGregorianCalendar value) { + this.definiteDiscontinuanceDate = value; + } + + /** + * Gets the value of the receivers property. + * + * @return + * possible object is + * {@link GCRReceiverArray } + * + */ + public GCRReceiverArray getReceivers() { + return receivers; + } + + /** + * Sets the value of the receivers property. + * + * @param value + * allowed object is + * {@link GCRReceiverArray } + * + */ + public void setReceivers(GCRReceiverArray value) { + this.receivers = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDeclarationOfLiability.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDeclarationOfLiability.java new file mode 100644 index 0000000..437484f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDeclarationOfLiability.java @@ -0,0 +1,155 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRDeclarationOfLiability complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRDeclarationOfLiability">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="date_until" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRDeclarationOfLiability", propOrder = { + +}) +public class GCRDeclarationOfLiability { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + @XmlElement(name = "is_current") + protected Boolean isCurrent; + @XmlElement(name = "date_from") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFrom; + @XmlElement(name = "date_until") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateUntil; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the isCurrent property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIsCurrent() { + return isCurrent; + } + + /** + * Sets the value of the isCurrent property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIsCurrent(Boolean value) { + this.isCurrent = value; + } + + /** + * Gets the value of the dateFrom property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFrom() { + return dateFrom; + } + + /** + * Sets the value of the dateFrom property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFrom(XMLGregorianCalendar value) { + this.dateFrom = value; + } + + /** + * Gets the value of the dateUntil property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateUntil() { + return dateUntil; + } + + /** + * Sets the value of the dateUntil property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateUntil(XMLGregorianCalendar value) { + this.dateUntil = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDeclarationOfLiabilityArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDeclarationOfLiabilityArray.java new file mode 100644 index 0000000..8e04fb0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDeclarationOfLiabilityArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRDeclarationOfLiabilityArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRDeclarationOfLiabilityArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRDeclarationOfLiability" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRDeclarationOfLiabilityArray", propOrder = { + "item" +}) +public class GCRDeclarationOfLiabilityArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRDeclarationOfLiability } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDiscontinuance.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDiscontinuance.java new file mode 100644 index 0000000..d56927e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDiscontinuance.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRDiscontinuance complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRDiscontinuance">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="reason" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRDiscontinuance", propOrder = { + +}) +public class GCRDiscontinuance { + + @XmlElement(required = true) + protected String type; + protected String date; + @XmlElement(required = true) + protected String reason; + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the date property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDate() { + return date; + } + + /** + * Sets the value of the date property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDate(String value) { + this.date = value; + } + + /** + * Gets the value of the reason property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReason() { + return reason; + } + + /** + * Sets the value of the reason property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReason(String value) { + this.reason = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFiling.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFiling.java new file mode 100644 index 0000000..2641bf2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFiling.java @@ -0,0 +1,153 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRFiling complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRFiling">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="filing_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="filing_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="filing_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="chamber_of_commerce" type="{http://www.webservices.nl/soap/}GCRChamberOfCommerce" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRFiling", propOrder = { + +}) +public class GCRFiling { + + @XmlElement(name = "filing_code") + protected String filingCode; + @XmlElement(name = "filing_text") + protected String filingText; + @XmlElement(name = "filing_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar filingDate; + @XmlElement(name = "chamber_of_commerce") + protected GCRChamberOfCommerce chamberOfCommerce; + + /** + * Gets the value of the filingCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFilingCode() { + return filingCode; + } + + /** + * Sets the value of the filingCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFilingCode(String value) { + this.filingCode = value; + } + + /** + * Gets the value of the filingText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFilingText() { + return filingText; + } + + /** + * Sets the value of the filingText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFilingText(String value) { + this.filingText = value; + } + + /** + * Gets the value of the filingDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFilingDate() { + return filingDate; + } + + /** + * Sets the value of the filingDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFilingDate(XMLGregorianCalendar value) { + this.filingDate = value; + } + + /** + * Gets the value of the chamberOfCommerce property. + * + * @return + * possible object is + * {@link GCRChamberOfCommerce } + * + */ + public GCRChamberOfCommerce getChamberOfCommerce() { + return chamberOfCommerce; + } + + /** + * Sets the value of the chamberOfCommerce property. + * + * @param value + * allowed object is + * {@link GCRChamberOfCommerce } + * + */ + public void setChamberOfCommerce(GCRChamberOfCommerce value) { + this.chamberOfCommerce = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialCalamity.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialCalamity.java new file mode 100644 index 0000000..ac99eec --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialCalamity.java @@ -0,0 +1,121 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRFinancialCalamity complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRFinancialCalamity">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bankruptcy" type="{http://www.webservices.nl/soap/}GCRBankruptcy" minOccurs="0"/>
+ *         <element name="moratorium" type="{http://www.webservices.nl/soap/}GCRMoratorium" minOccurs="0"/>
+ *         <element name="debt_restructuring_private_persons" type="{http://www.webservices.nl/soap/}GCRDebtRestructuringPrivatePersons" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRFinancialCalamity", propOrder = { + +}) +public class GCRFinancialCalamity { + + protected GCRBankruptcy bankruptcy; + protected GCRMoratorium moratorium; + @XmlElement(name = "debt_restructuring_private_persons") + protected GCRDebtRestructuringPrivatePersons debtRestructuringPrivatePersons; + + /** + * Gets the value of the bankruptcy property. + * + * @return + * possible object is + * {@link GCRBankruptcy } + * + */ + public GCRBankruptcy getBankruptcy() { + return bankruptcy; + } + + /** + * Sets the value of the bankruptcy property. + * + * @param value + * allowed object is + * {@link GCRBankruptcy } + * + */ + public void setBankruptcy(GCRBankruptcy value) { + this.bankruptcy = value; + } + + /** + * Gets the value of the moratorium property. + * + * @return + * possible object is + * {@link GCRMoratorium } + * + */ + public GCRMoratorium getMoratorium() { + return moratorium; + } + + /** + * Sets the value of the moratorium property. + * + * @param value + * allowed object is + * {@link GCRMoratorium } + * + */ + public void setMoratorium(GCRMoratorium value) { + this.moratorium = value; + } + + /** + * Gets the value of the debtRestructuringPrivatePersons property. + * + * @return + * possible object is + * {@link GCRDebtRestructuringPrivatePersons } + * + */ + public GCRDebtRestructuringPrivatePersons getDebtRestructuringPrivatePersons() { + return debtRestructuringPrivatePersons; + } + + /** + * Sets the value of the debtRestructuringPrivatePersons property. + * + * @param value + * allowed object is + * {@link GCRDebtRestructuringPrivatePersons } + * + */ + public void setDebtRestructuringPrivatePersons(GCRDebtRestructuringPrivatePersons value) { + this.debtRestructuringPrivatePersons = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialCalamityArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialCalamityArray.java new file mode 100644 index 0000000..16414b5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialCalamityArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRFinancialCalamityArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRFinancialCalamityArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRFinancialCalamity" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRFinancialCalamityArray", propOrder = { + "item" +}) +public class GCRFinancialCalamityArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRFinancialCalamity } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetailValue.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetailValue.java new file mode 100644 index 0000000..e9ab301 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetailValue.java @@ -0,0 +1,194 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRFinancialDetailValue complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRFinancialDetailValue">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="financial_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="financial_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="amount_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="forecast" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRFinancialDetailValue", propOrder = { + +}) +public class GCRFinancialDetailValue { + + @XmlElement(name = "financial_code") + protected String financialCode; + @XmlElement(name = "financial_text") + protected String financialText; + protected int year; + protected BigDecimal amount; + @XmlElement(name = "amount_currency") + protected String amountCurrency; + protected BigDecimal forecast; + + /** + * Gets the value of the financialCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFinancialCode() { + return financialCode; + } + + /** + * Sets the value of the financialCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFinancialCode(String value) { + this.financialCode = value; + } + + /** + * Gets the value of the financialText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFinancialText() { + return financialText; + } + + /** + * Sets the value of the financialText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFinancialText(String value) { + this.financialText = value; + } + + /** + * Gets the value of the year property. + * + */ + public int getYear() { + return year; + } + + /** + * Sets the value of the year property. + * + */ + public void setYear(int value) { + this.year = value; + } + + /** + * Gets the value of the amount property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getAmount() { + return amount; + } + + /** + * Sets the value of the amount property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setAmount(BigDecimal value) { + this.amount = value; + } + + /** + * Gets the value of the amountCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAmountCurrency() { + return amountCurrency; + } + + /** + * Sets the value of the amountCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAmountCurrency(String value) { + this.amountCurrency = value; + } + + /** + * Gets the value of the forecast property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getForecast() { + return forecast; + } + + /** + * Sets the value of the forecast property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setForecast(BigDecimal value) { + this.forecast = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetailValueArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetailValueArray.java new file mode 100644 index 0000000..460bac9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetailValueArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRFinancialDetailValueArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRFinancialDetailValueArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRFinancialDetailValue" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRFinancialDetailValueArray", propOrder = { + "item" +}) +public class GCRFinancialDetailValueArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRFinancialDetailValue } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetails.java new file mode 100644 index 0000000..f58b1cf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetails.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRFinancialDetails complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRFinancialDetails">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="turnovers" type="{http://www.webservices.nl/soap/}GCRFinancialDetailValueArray" minOccurs="0"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}GCRFinancialDetailValueArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRFinancialDetails", propOrder = { + +}) +public class GCRFinancialDetails { + + @XmlElement(name = "graydon_company_id") + protected BigInteger graydonCompanyId; + protected GCRFinancialDetailValueArray turnovers; + protected GCRFinancialDetailValueArray results; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the turnovers property. + * + * @return + * possible object is + * {@link GCRFinancialDetailValueArray } + * + */ + public GCRFinancialDetailValueArray getTurnovers() { + return turnovers; + } + + /** + * Sets the value of the turnovers property. + * + * @param value + * allowed object is + * {@link GCRFinancialDetailValueArray } + * + */ + public void setTurnovers(GCRFinancialDetailValueArray value) { + this.turnovers = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link GCRFinancialDetailValueArray } + * + */ + public GCRFinancialDetailValueArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link GCRFinancialDetailValueArray } + * + */ + public void setResults(GCRFinancialDetailValueArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFirstDirector.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFirstDirector.java new file mode 100644 index 0000000..61de349 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFirstDirector.java @@ -0,0 +1,209 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRFirstDirector complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRFirstDirector">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_person_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="job_title_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="job_title_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="date_until" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRFirstDirector", propOrder = { + +}) +public class GCRFirstDirector { + + @XmlElement(name = "graydon_person_id") + protected BigInteger graydonPersonId; + @XmlElement(name = "is_current") + protected Boolean isCurrent; + @XmlElement(name = "job_title_code") + protected Integer jobTitleCode; + @XmlElement(name = "job_title_text") + protected String jobTitleText; + @XmlElement(name = "date_from") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFrom; + @XmlElement(name = "date_until") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateUntil; + + /** + * Gets the value of the graydonPersonId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonPersonId() { + return graydonPersonId; + } + + /** + * Sets the value of the graydonPersonId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonPersonId(BigInteger value) { + this.graydonPersonId = value; + } + + /** + * Gets the value of the isCurrent property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIsCurrent() { + return isCurrent; + } + + /** + * Sets the value of the isCurrent property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIsCurrent(Boolean value) { + this.isCurrent = value; + } + + /** + * Gets the value of the jobTitleCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getJobTitleCode() { + return jobTitleCode; + } + + /** + * Sets the value of the jobTitleCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setJobTitleCode(Integer value) { + this.jobTitleCode = value; + } + + /** + * Gets the value of the jobTitleText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getJobTitleText() { + return jobTitleText; + } + + /** + * Sets the value of the jobTitleText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setJobTitleText(String value) { + this.jobTitleText = value; + } + + /** + * Gets the value of the dateFrom property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFrom() { + return dateFrom; + } + + /** + * Sets the value of the dateFrom property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFrom(XMLGregorianCalendar value) { + this.dateFrom = value; + } + + /** + * Gets the value of the dateUntil property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateUntil() { + return dateUntil; + } + + /** + * Sets the value of the dateUntil property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateUntil(XMLGregorianCalendar value) { + this.dateUntil = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFirstDirectorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFirstDirectorArray.java new file mode 100644 index 0000000..9f93b89 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFirstDirectorArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRFirstDirectorArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRFirstDirectorArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRFirstDirector" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRFirstDirectorArray", propOrder = { + "item" +}) +public class GCRFirstDirectorArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRFirstDirector } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFounded.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFounded.java new file mode 100644 index 0000000..2b0d06b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFounded.java @@ -0,0 +1,208 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRFounded complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRFounded">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="residence" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="legal_form_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="start_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="founded_at" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRFounded", propOrder = { + +}) +public class GCRFounded { + + @XmlElement(name = "date_from") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFrom; + protected String residence; + @XmlElement(name = "legal_form_code") + protected Integer legalFormCode; + @XmlElement(name = "legal_form_text") + protected String legalFormText; + @XmlElement(name = "start_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar startDate; + @XmlElement(name = "founded_at") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar foundedAt; + + /** + * Gets the value of the dateFrom property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFrom() { + return dateFrom; + } + + /** + * Sets the value of the dateFrom property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFrom(XMLGregorianCalendar value) { + this.dateFrom = value; + } + + /** + * Gets the value of the residence property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getResidence() { + return residence; + } + + /** + * Sets the value of the residence property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setResidence(String value) { + this.residence = value; + } + + /** + * Gets the value of the legalFormCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getLegalFormCode() { + return legalFormCode; + } + + /** + * Sets the value of the legalFormCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setLegalFormCode(Integer value) { + this.legalFormCode = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the startDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStartDate() { + return startDate; + } + + /** + * Sets the value of the startDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStartDate(XMLGregorianCalendar value) { + this.startDate = value; + } + + /** + * Gets the value of the foundedAt property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFoundedAt() { + return foundedAt; + } + + /** + * Sets the value of the foundedAt property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFoundedAt(XMLGregorianCalendar value) { + this.foundedAt = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFoundedArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFoundedArray.java new file mode 100644 index 0000000..50be97c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFoundedArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRFoundedArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRFoundedArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRFounded" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRFoundedArray", propOrder = { + "item" +}) +public class GCRFoundedArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRFounded } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistory.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistory.java new file mode 100644 index 0000000..c6f1109 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistory.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRHistory complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRHistory">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="originated_from" type="{http://www.webservices.nl/soap/}GCROriginatedFromArray" minOccurs="0"/>
+ *         <element name="continuation" type="{http://www.webservices.nl/soap/}GCRContinuationArray" minOccurs="0"/>
+ *         <element name="company_continued_under" type="{http://www.webservices.nl/soap/}GCRCompanyContinuedUnderArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRHistory", propOrder = { + +}) +public class GCRHistory { + + @XmlElement(name = "originated_from") + protected GCROriginatedFromArray originatedFrom; + protected GCRContinuationArray continuation; + @XmlElement(name = "company_continued_under") + protected GCRCompanyContinuedUnderArray companyContinuedUnder; + + /** + * Gets the value of the originatedFrom property. + * + * @return + * possible object is + * {@link GCROriginatedFromArray } + * + */ + public GCROriginatedFromArray getOriginatedFrom() { + return originatedFrom; + } + + /** + * Sets the value of the originatedFrom property. + * + * @param value + * allowed object is + * {@link GCROriginatedFromArray } + * + */ + public void setOriginatedFrom(GCROriginatedFromArray value) { + this.originatedFrom = value; + } + + /** + * Gets the value of the continuation property. + * + * @return + * possible object is + * {@link GCRContinuationArray } + * + */ + public GCRContinuationArray getContinuation() { + return continuation; + } + + /** + * Sets the value of the continuation property. + * + * @param value + * allowed object is + * {@link GCRContinuationArray } + * + */ + public void setContinuation(GCRContinuationArray value) { + this.continuation = value; + } + + /** + * Gets the value of the companyContinuedUnder property. + * + * @return + * possible object is + * {@link GCRCompanyContinuedUnderArray } + * + */ + public GCRCompanyContinuedUnderArray getCompanyContinuedUnder() { + return companyContinuedUnder; + } + + /** + * Sets the value of the companyContinuedUnder property. + * + * @param value + * allowed object is + * {@link GCRCompanyContinuedUnderArray } + * + */ + public void setCompanyContinuedUnder(GCRCompanyContinuedUnderArray value) { + this.companyContinuedUnder = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistoryAdvisedLimit.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistoryAdvisedLimit.java new file mode 100644 index 0000000..eae66ee --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistoryAdvisedLimit.java @@ -0,0 +1,99 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRHistoryAdvisedLimit complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRHistoryAdvisedLimit">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="year_month" type="{http://www.w3.org/2001/XMLSchema}gYearMonth"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRHistoryAdvisedLimit", propOrder = { + +}) +public class GCRHistoryAdvisedLimit { + + @XmlElement(required = true) + protected String value; + @XmlElement(name = "year_month", required = true) + @XmlSchemaType(name = "gYearMonth") + protected XMLGregorianCalendar yearMonth; + + /** + * Gets the value of the value property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValue(String value) { + this.value = value; + } + + /** + * Gets the value of the yearMonth property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getYearMonth() { + return yearMonth; + } + + /** + * Sets the value of the yearMonth property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setYearMonth(XMLGregorianCalendar value) { + this.yearMonth = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistoryAdvisedLimitArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistoryAdvisedLimitArray.java new file mode 100644 index 0000000..80ce757 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistoryAdvisedLimitArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRHistoryAdvisedLimitArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRHistoryAdvisedLimitArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRHistoryAdvisedLimit" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRHistoryAdvisedLimitArray", propOrder = { + "item" +}) +public class GCRHistoryAdvisedLimitArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRHistoryAdvisedLimit } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRImportExport.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRImportExport.java new file mode 100644 index 0000000..05f21b0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRImportExport.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRImportExport complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRImportExport">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="import_countries" type="{http://www.webservices.nl/soap/}GCRCountryArray" minOccurs="0"/>
+ *         <element name="export_countries" type="{http://www.webservices.nl/soap/}GCRCountryArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRImportExport", propOrder = { + +}) +public class GCRImportExport { + + @XmlElement(name = "import_countries") + protected GCRCountryArray importCountries; + @XmlElement(name = "export_countries") + protected GCRCountryArray exportCountries; + + /** + * Gets the value of the importCountries property. + * + * @return + * possible object is + * {@link GCRCountryArray } + * + */ + public GCRCountryArray getImportCountries() { + return importCountries; + } + + /** + * Sets the value of the importCountries property. + * + * @param value + * allowed object is + * {@link GCRCountryArray } + * + */ + public void setImportCountries(GCRCountryArray value) { + this.importCountries = value; + } + + /** + * Gets the value of the exportCountries property. + * + * @return + * possible object is + * {@link GCRCountryArray } + * + */ + public GCRCountryArray getExportCountries() { + return exportCountries; + } + + /** + * Sets the value of the exportCountries property. + * + * @param value + * allowed object is + * {@link GCRCountryArray } + * + */ + public void setExportCountries(GCRCountryArray value) { + this.exportCountries = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRItem.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRItem.java new file mode 100644 index 0000000..c582d88 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRItem.java @@ -0,0 +1,204 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRItem complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRItem">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="main_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sub_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="free_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRItem", propOrder = { + +}) +public class GCRItem { + + @XmlElement(name = "main_code", required = true) + protected String mainCode; + @XmlElement(required = true) + protected String code; + @XmlElement(name = "sub_code", required = true) + protected String subCode; + @XmlElement(required = true) + protected String description; + protected BigDecimal value; + @XmlElement(name = "free_text") + protected String freeText; + + /** + * Gets the value of the mainCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMainCode() { + return mainCode; + } + + /** + * Sets the value of the mainCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMainCode(String value) { + this.mainCode = value; + } + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCode(String value) { + this.code = value; + } + + /** + * Gets the value of the subCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubCode() { + return subCode; + } + + /** + * Sets the value of the subCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubCode(String value) { + this.subCode = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the value property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setValue(BigDecimal value) { + this.value = value; + } + + /** + * Gets the value of the freeText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFreeText() { + return freeText; + } + + /** + * Sets the value of the freeText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFreeText(String value) { + this.freeText = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRItemArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRItemArray.java new file mode 100644 index 0000000..36ea4f5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRItemArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRItemArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRItemArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRItem" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRItemArray", propOrder = { + "item" +}) +public class GCRItemArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRItem } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRJobTitle.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRJobTitle.java new file mode 100644 index 0000000..8d830ba --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRJobTitle.java @@ -0,0 +1,263 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRJobTitle complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRJobTitle">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="job_title_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="job_title_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="authority_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="authority_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="date_until" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRJobTitle", propOrder = { + +}) +public class GCRJobTitle { + + @XmlElement(name = "graydon_company_id") + protected BigInteger graydonCompanyId; + @XmlElement(name = "is_current") + protected Boolean isCurrent; + @XmlElement(name = "job_title_code") + protected Integer jobTitleCode; + @XmlElement(name = "job_title_text") + protected String jobTitleText; + @XmlElement(name = "authority_code") + protected Integer authorityCode; + @XmlElement(name = "authority_text") + protected String authorityText; + @XmlElement(name = "date_from") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFrom; + @XmlElement(name = "date_until") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateUntil; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the isCurrent property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIsCurrent() { + return isCurrent; + } + + /** + * Sets the value of the isCurrent property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIsCurrent(Boolean value) { + this.isCurrent = value; + } + + /** + * Gets the value of the jobTitleCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getJobTitleCode() { + return jobTitleCode; + } + + /** + * Sets the value of the jobTitleCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setJobTitleCode(Integer value) { + this.jobTitleCode = value; + } + + /** + * Gets the value of the jobTitleText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getJobTitleText() { + return jobTitleText; + } + + /** + * Sets the value of the jobTitleText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setJobTitleText(String value) { + this.jobTitleText = value; + } + + /** + * Gets the value of the authorityCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getAuthorityCode() { + return authorityCode; + } + + /** + * Sets the value of the authorityCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setAuthorityCode(Integer value) { + this.authorityCode = value; + } + + /** + * Gets the value of the authorityText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAuthorityText() { + return authorityText; + } + + /** + * Sets the value of the authorityText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAuthorityText(String value) { + this.authorityText = value; + } + + /** + * Gets the value of the dateFrom property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFrom() { + return dateFrom; + } + + /** + * Sets the value of the dateFrom property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFrom(XMLGregorianCalendar value) { + this.dateFrom = value; + } + + /** + * Gets the value of the dateUntil property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateUntil() { + return dateUntil; + } + + /** + * Sets the value of the dateUntil property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateUntil(XMLGregorianCalendar value) { + this.dateUntil = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRJobTitleArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRJobTitleArray.java new file mode 100644 index 0000000..7f7f92e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRJobTitleArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRJobTitleArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRJobTitleArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRJobTitle" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRJobTitleArray", propOrder = { + "item" +}) +public class GCRJobTitleArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRJobTitle } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiabilities.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiabilities.java new file mode 100644 index 0000000..d7e833c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiabilities.java @@ -0,0 +1,97 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRLiabilities complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRLiabilities">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="liabilities_items" type="{http://www.webservices.nl/soap/}GCRItemArray" minOccurs="0"/>
+ *         <element name="balance_sheet_total" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRLiabilities", propOrder = { + +}) +public class GCRLiabilities { + + @XmlElement(name = "liabilities_items") + protected GCRItemArray liabilitiesItems; + @XmlElement(name = "balance_sheet_total") + protected BigDecimal balanceSheetTotal; + + /** + * Gets the value of the liabilitiesItems property. + * + * @return + * possible object is + * {@link GCRItemArray } + * + */ + public GCRItemArray getLiabilitiesItems() { + return liabilitiesItems; + } + + /** + * Sets the value of the liabilitiesItems property. + * + * @param value + * allowed object is + * {@link GCRItemArray } + * + */ + public void setLiabilitiesItems(GCRItemArray value) { + this.liabilitiesItems = value; + } + + /** + * Gets the value of the balanceSheetTotal property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getBalanceSheetTotal() { + return balanceSheetTotal; + } + + /** + * Sets the value of the balanceSheetTotal property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setBalanceSheetTotal(BigDecimal value) { + this.balanceSheetTotal = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaison.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaison.java new file mode 100644 index 0000000..5c46fea --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaison.java @@ -0,0 +1,124 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRLiaison complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRLiaison">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="liaison_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="liaison_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRLiaison", propOrder = { + +}) +public class GCRLiaison { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + @XmlElement(name = "liaison_code") + protected String liaisonCode; + @XmlElement(name = "liaison_text") + protected String liaisonText; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the liaisonCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLiaisonCode() { + return liaisonCode; + } + + /** + * Sets the value of the liaisonCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLiaisonCode(String value) { + this.liaisonCode = value; + } + + /** + * Gets the value of the liaisonText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLiaisonText() { + return liaisonText; + } + + /** + * Sets the value of the liaisonText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLiaisonText(String value) { + this.liaisonText = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonArray.java new file mode 100644 index 0000000..f18805a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRLiaisonArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRLiaisonArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRLiaison" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRLiaisonArray", propOrder = { + "item" +}) +public class GCRLiaisonArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRLiaison } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonCompany.java new file mode 100644 index 0000000..9a4912b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonCompany.java @@ -0,0 +1,151 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRLiaisonCompany complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRLiaisonCompany">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="contact_details" type="{http://www.webservices.nl/soap/}GCRLiaisonContactDetails" minOccurs="0"/>
+ *         <element name="official_data" type="{http://www.webservices.nl/soap/}GCRLiaisonOfficialData" minOccurs="0"/>
+ *         <element name="financial_calamities" type="{http://www.webservices.nl/soap/}GCRFinancialCalamityArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRLiaisonCompany", propOrder = { + +}) +public class GCRLiaisonCompany { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + @XmlElement(name = "contact_details") + protected GCRLiaisonContactDetails contactDetails; + @XmlElement(name = "official_data") + protected GCRLiaisonOfficialData officialData; + @XmlElement(name = "financial_calamities") + protected GCRFinancialCalamityArray financialCalamities; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the contactDetails property. + * + * @return + * possible object is + * {@link GCRLiaisonContactDetails } + * + */ + public GCRLiaisonContactDetails getContactDetails() { + return contactDetails; + } + + /** + * Sets the value of the contactDetails property. + * + * @param value + * allowed object is + * {@link GCRLiaisonContactDetails } + * + */ + public void setContactDetails(GCRLiaisonContactDetails value) { + this.contactDetails = value; + } + + /** + * Gets the value of the officialData property. + * + * @return + * possible object is + * {@link GCRLiaisonOfficialData } + * + */ + public GCRLiaisonOfficialData getOfficialData() { + return officialData; + } + + /** + * Sets the value of the officialData property. + * + * @param value + * allowed object is + * {@link GCRLiaisonOfficialData } + * + */ + public void setOfficialData(GCRLiaisonOfficialData value) { + this.officialData = value; + } + + /** + * Gets the value of the financialCalamities property. + * + * @return + * possible object is + * {@link GCRFinancialCalamityArray } + * + */ + public GCRFinancialCalamityArray getFinancialCalamities() { + return financialCalamities; + } + + /** + * Sets the value of the financialCalamities property. + * + * @param value + * allowed object is + * {@link GCRFinancialCalamityArray } + * + */ + public void setFinancialCalamities(GCRFinancialCalamityArray value) { + this.financialCalamities = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonCompanyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonCompanyArray.java new file mode 100644 index 0000000..ed85cb5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonCompanyArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRLiaisonCompanyArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRLiaisonCompanyArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRLiaisonCompany" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRLiaisonCompanyArray", propOrder = { + "item" +}) +public class GCRLiaisonCompanyArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRLiaisonCompany } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonContactDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonContactDetails.java new file mode 100644 index 0000000..e131061 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonContactDetails.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRLiaisonContactDetails complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRLiaisonContactDetails">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="addresses" type="{http://www.webservices.nl/soap/}GCRAddressArray" minOccurs="0"/>
+ *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}GCRTelephoneNumberArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRLiaisonContactDetails", propOrder = { + +}) +public class GCRLiaisonContactDetails { + + @XmlElement(name = "company_name") + protected String companyName; + protected GCRAddressArray addresses; + @XmlElement(name = "telephone_numbers") + protected GCRTelephoneNumberArray telephoneNumbers; + + /** + * Gets the value of the companyName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyName() { + return companyName; + } + + /** + * Sets the value of the companyName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyName(String value) { + this.companyName = value; + } + + /** + * Gets the value of the addresses property. + * + * @return + * possible object is + * {@link GCRAddressArray } + * + */ + public GCRAddressArray getAddresses() { + return addresses; + } + + /** + * Sets the value of the addresses property. + * + * @param value + * allowed object is + * {@link GCRAddressArray } + * + */ + public void setAddresses(GCRAddressArray value) { + this.addresses = value; + } + + /** + * Gets the value of the telephoneNumbers property. + * + * @return + * possible object is + * {@link GCRTelephoneNumberArray } + * + */ + public GCRTelephoneNumberArray getTelephoneNumbers() { + return telephoneNumbers; + } + + /** + * Sets the value of the telephoneNumbers property. + * + * @param value + * allowed object is + * {@link GCRTelephoneNumberArray } + * + */ + public void setTelephoneNumbers(GCRTelephoneNumberArray value) { + this.telephoneNumbers = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonOfficialData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonOfficialData.java new file mode 100644 index 0000000..1d00ec4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonOfficialData.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRLiaisonOfficialData complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRLiaisonOfficialData">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="chamber_of_commerce" type="{http://www.webservices.nl/soap/}GCRChamberOfCommerce" minOccurs="0"/>
+ *         <element name="present_legal_form_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="present_legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRLiaisonOfficialData", propOrder = { + +}) +public class GCRLiaisonOfficialData { + + @XmlElement(name = "chamber_of_commerce") + protected GCRChamberOfCommerce chamberOfCommerce; + @XmlElement(name = "present_legal_form_code") + protected Integer presentLegalFormCode; + @XmlElement(name = "present_legal_form_text") + protected String presentLegalFormText; + + /** + * Gets the value of the chamberOfCommerce property. + * + * @return + * possible object is + * {@link GCRChamberOfCommerce } + * + */ + public GCRChamberOfCommerce getChamberOfCommerce() { + return chamberOfCommerce; + } + + /** + * Sets the value of the chamberOfCommerce property. + * + * @param value + * allowed object is + * {@link GCRChamberOfCommerce } + * + */ + public void setChamberOfCommerce(GCRChamberOfCommerce value) { + this.chamberOfCommerce = value; + } + + /** + * Gets the value of the presentLegalFormCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPresentLegalFormCode() { + return presentLegalFormCode; + } + + /** + * Sets the value of the presentLegalFormCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPresentLegalFormCode(Integer value) { + this.presentLegalFormCode = value; + } + + /** + * Gets the value of the presentLegalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPresentLegalFormText() { + return presentLegalFormText; + } + + /** + * Sets the value of the presentLegalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPresentLegalFormText(String value) { + this.presentLegalFormText = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRManagement.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRManagement.java new file mode 100644 index 0000000..28933aa --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRManagement.java @@ -0,0 +1,151 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRManagement complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRManagement">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="graydon_person_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="job_titles" type="{http://www.webservices.nl/soap/}GCRJobTitleArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRManagement", propOrder = { + +}) +public class GCRManagement { + + @XmlElement(name = "graydon_company_id") + protected BigInteger graydonCompanyId; + @XmlElement(name = "graydon_person_id") + protected BigInteger graydonPersonId; + @XmlElement(name = "is_current") + protected Boolean isCurrent; + @XmlElement(name = "job_titles") + protected GCRJobTitleArray jobTitles; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the graydonPersonId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonPersonId() { + return graydonPersonId; + } + + /** + * Sets the value of the graydonPersonId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonPersonId(BigInteger value) { + this.graydonPersonId = value; + } + + /** + * Gets the value of the isCurrent property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIsCurrent() { + return isCurrent; + } + + /** + * Sets the value of the isCurrent property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIsCurrent(Boolean value) { + this.isCurrent = value; + } + + /** + * Gets the value of the jobTitles property. + * + * @return + * possible object is + * {@link GCRJobTitleArray } + * + */ + public GCRJobTitleArray getJobTitles() { + return jobTitles; + } + + /** + * Sets the value of the jobTitles property. + * + * @param value + * allowed object is + * {@link GCRJobTitleArray } + * + */ + public void setJobTitles(GCRJobTitleArray value) { + this.jobTitles = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRManagementArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRManagementArray.java new file mode 100644 index 0000000..d4d123c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRManagementArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRManagementArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRManagementArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRManagement" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRManagementArray", propOrder = { + "item" +}) +public class GCRManagementArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRManagement } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRMoratorium.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRMoratorium.java new file mode 100644 index 0000000..c89ad54 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRMoratorium.java @@ -0,0 +1,455 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRMoratorium complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRMoratorium">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="official_registration_number" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="currently_active" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="provisional_verdict_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="definite_verdict_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="moratorium_term_in_months" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="prolongation_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="prolongation_in_months" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="vote_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="vote_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="vote_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="definite_discontinuance_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="definite_discontinuance_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="definite_discontinuance_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="receivers" type="{http://www.webservices.nl/soap/}GCRReceiverArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRMoratorium", propOrder = { + +}) +public class GCRMoratorium { + + @XmlElement(name = "official_registration_number") + protected BigInteger officialRegistrationNumber; + @XmlElement(name = "currently_active") + protected Boolean currentlyActive; + @XmlElement(name = "date_from") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFrom; + @XmlElement(name = "provisional_verdict_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar provisionalVerdictDate; + @XmlElement(name = "definite_verdict_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar definiteVerdictDate; + @XmlElement(name = "moratorium_term_in_months") + protected Integer moratoriumTermInMonths; + @XmlElement(name = "prolongation_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar prolongationDate; + @XmlElement(name = "prolongation_in_months") + protected Integer prolongationInMonths; + @XmlElement(name = "vote_code") + protected Integer voteCode; + @XmlElement(name = "vote_text") + protected String voteText; + @XmlElement(name = "vote_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar voteDate; + @XmlElement(name = "definite_discontinuance_code") + protected Integer definiteDiscontinuanceCode; + @XmlElement(name = "definite_discontinuance_text") + protected String definiteDiscontinuanceText; + @XmlElement(name = "definite_discontinuance_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar definiteDiscontinuanceDate; + protected GCRReceiverArray receivers; + + /** + * Gets the value of the officialRegistrationNumber property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getOfficialRegistrationNumber() { + return officialRegistrationNumber; + } + + /** + * Sets the value of the officialRegistrationNumber property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setOfficialRegistrationNumber(BigInteger value) { + this.officialRegistrationNumber = value; + } + + /** + * Gets the value of the currentlyActive property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isCurrentlyActive() { + return currentlyActive; + } + + /** + * Sets the value of the currentlyActive property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setCurrentlyActive(Boolean value) { + this.currentlyActive = value; + } + + /** + * Gets the value of the dateFrom property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFrom() { + return dateFrom; + } + + /** + * Sets the value of the dateFrom property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFrom(XMLGregorianCalendar value) { + this.dateFrom = value; + } + + /** + * Gets the value of the provisionalVerdictDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getProvisionalVerdictDate() { + return provisionalVerdictDate; + } + + /** + * Sets the value of the provisionalVerdictDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setProvisionalVerdictDate(XMLGregorianCalendar value) { + this.provisionalVerdictDate = value; + } + + /** + * Gets the value of the definiteVerdictDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDefiniteVerdictDate() { + return definiteVerdictDate; + } + + /** + * Sets the value of the definiteVerdictDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDefiniteVerdictDate(XMLGregorianCalendar value) { + this.definiteVerdictDate = value; + } + + /** + * Gets the value of the moratoriumTermInMonths property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMoratoriumTermInMonths() { + return moratoriumTermInMonths; + } + + /** + * Sets the value of the moratoriumTermInMonths property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMoratoriumTermInMonths(Integer value) { + this.moratoriumTermInMonths = value; + } + + /** + * Gets the value of the prolongationDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getProlongationDate() { + return prolongationDate; + } + + /** + * Sets the value of the prolongationDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setProlongationDate(XMLGregorianCalendar value) { + this.prolongationDate = value; + } + + /** + * Gets the value of the prolongationInMonths property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getProlongationInMonths() { + return prolongationInMonths; + } + + /** + * Sets the value of the prolongationInMonths property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setProlongationInMonths(Integer value) { + this.prolongationInMonths = value; + } + + /** + * Gets the value of the voteCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getVoteCode() { + return voteCode; + } + + /** + * Sets the value of the voteCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setVoteCode(Integer value) { + this.voteCode = value; + } + + /** + * Gets the value of the voteText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVoteText() { + return voteText; + } + + /** + * Sets the value of the voteText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVoteText(String value) { + this.voteText = value; + } + + /** + * Gets the value of the voteDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getVoteDate() { + return voteDate; + } + + /** + * Sets the value of the voteDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setVoteDate(XMLGregorianCalendar value) { + this.voteDate = value; + } + + /** + * Gets the value of the definiteDiscontinuanceCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDefiniteDiscontinuanceCode() { + return definiteDiscontinuanceCode; + } + + /** + * Sets the value of the definiteDiscontinuanceCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDefiniteDiscontinuanceCode(Integer value) { + this.definiteDiscontinuanceCode = value; + } + + /** + * Gets the value of the definiteDiscontinuanceText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDefiniteDiscontinuanceText() { + return definiteDiscontinuanceText; + } + + /** + * Sets the value of the definiteDiscontinuanceText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDefiniteDiscontinuanceText(String value) { + this.definiteDiscontinuanceText = value; + } + + /** + * Gets the value of the definiteDiscontinuanceDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDefiniteDiscontinuanceDate() { + return definiteDiscontinuanceDate; + } + + /** + * Sets the value of the definiteDiscontinuanceDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDefiniteDiscontinuanceDate(XMLGregorianCalendar value) { + this.definiteDiscontinuanceDate = value; + } + + /** + * Gets the value of the receivers property. + * + * @return + * possible object is + * {@link GCRReceiverArray } + * + */ + public GCRReceiverArray getReceivers() { + return receivers; + } + + /** + * Sets the value of the receivers property. + * + * @param value + * allowed object is + * {@link GCRReceiverArray } + * + */ + public void setReceivers(GCRReceiverArray value) { + this.receivers = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRNumberOfEmployees.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRNumberOfEmployees.java new file mode 100644 index 0000000..920c71c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRNumberOfEmployees.java @@ -0,0 +1,79 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRNumberOfEmployees complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRNumberOfEmployees">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="number_of_employees" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRNumberOfEmployees", propOrder = { + +}) +public class GCRNumberOfEmployees { + + protected int year; + @XmlElement(name = "number_of_employees") + protected float numberOfEmployees; + + /** + * Gets the value of the year property. + * + */ + public int getYear() { + return year; + } + + /** + * Sets the value of the year property. + * + */ + public void setYear(int value) { + this.year = value; + } + + /** + * Gets the value of the numberOfEmployees property. + * + */ + public float getNumberOfEmployees() { + return numberOfEmployees; + } + + /** + * Sets the value of the numberOfEmployees property. + * + */ + public void setNumberOfEmployees(float value) { + this.numberOfEmployees = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRNumberOfEmployeesArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRNumberOfEmployeesArray.java new file mode 100644 index 0000000..ca58ba7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRNumberOfEmployeesArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRNumberOfEmployeesArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRNumberOfEmployeesArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRNumberOfEmployees" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRNumberOfEmployeesArray", propOrder = { + "item" +}) +public class GCRNumberOfEmployeesArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRNumberOfEmployees } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROfficialData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROfficialData.java new file mode 100644 index 0000000..30d96d5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROfficialData.java @@ -0,0 +1,363 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCROfficialData complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCROfficialData">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="chamber_of_commerce" type="{http://www.webservices.nl/soap/}GCRChamberOfCommerce" minOccurs="0"/>
+ *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="present_legal_form_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="present_legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="present_legal_form_fine_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="present_legal_form_fine_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="number_of_non_executive_partners" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="publication_duty_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="publication_duty_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="capital" type="{http://www.webservices.nl/soap/}GCRCapitalArray" minOccurs="0"/>
+ *         <element name="founded" type="{http://www.webservices.nl/soap/}GCRFoundedArray" minOccurs="0"/>
+ *         <element name="discontinuance" type="{http://www.webservices.nl/soap/}GCRDiscontinuance" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCROfficialData", propOrder = { + +}) +public class GCROfficialData { + + @XmlElement(name = "chamber_of_commerce") + protected GCRChamberOfCommerce chamberOfCommerce; + @XmlElement(name = "vat_number") + protected String vatNumber; + @XmlElement(name = "present_legal_form_code") + protected Integer presentLegalFormCode; + @XmlElement(name = "present_legal_form_text") + protected String presentLegalFormText; + @XmlElement(name = "present_legal_form_fine_code") + protected Integer presentLegalFormFineCode; + @XmlElement(name = "present_legal_form_fine_text") + protected String presentLegalFormFineText; + @XmlElement(name = "number_of_non_executive_partners") + protected String numberOfNonExecutivePartners; + @XmlElement(name = "publication_duty_code") + protected String publicationDutyCode; + @XmlElement(name = "publication_duty_text") + protected String publicationDutyText; + protected GCRCapitalArray capital; + protected GCRFoundedArray founded; + protected GCRDiscontinuance discontinuance; + + /** + * Gets the value of the chamberOfCommerce property. + * + * @return + * possible object is + * {@link GCRChamberOfCommerce } + * + */ + public GCRChamberOfCommerce getChamberOfCommerce() { + return chamberOfCommerce; + } + + /** + * Sets the value of the chamberOfCommerce property. + * + * @param value + * allowed object is + * {@link GCRChamberOfCommerce } + * + */ + public void setChamberOfCommerce(GCRChamberOfCommerce value) { + this.chamberOfCommerce = value; + } + + /** + * Gets the value of the vatNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVatNumber() { + return vatNumber; + } + + /** + * Sets the value of the vatNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVatNumber(String value) { + this.vatNumber = value; + } + + /** + * Gets the value of the presentLegalFormCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPresentLegalFormCode() { + return presentLegalFormCode; + } + + /** + * Sets the value of the presentLegalFormCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPresentLegalFormCode(Integer value) { + this.presentLegalFormCode = value; + } + + /** + * Gets the value of the presentLegalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPresentLegalFormText() { + return presentLegalFormText; + } + + /** + * Sets the value of the presentLegalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPresentLegalFormText(String value) { + this.presentLegalFormText = value; + } + + /** + * Gets the value of the presentLegalFormFineCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getPresentLegalFormFineCode() { + return presentLegalFormFineCode; + } + + /** + * Sets the value of the presentLegalFormFineCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setPresentLegalFormFineCode(Integer value) { + this.presentLegalFormFineCode = value; + } + + /** + * Gets the value of the presentLegalFormFineText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPresentLegalFormFineText() { + return presentLegalFormFineText; + } + + /** + * Sets the value of the presentLegalFormFineText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPresentLegalFormFineText(String value) { + this.presentLegalFormFineText = value; + } + + /** + * Gets the value of the numberOfNonExecutivePartners property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumberOfNonExecutivePartners() { + return numberOfNonExecutivePartners; + } + + /** + * Sets the value of the numberOfNonExecutivePartners property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumberOfNonExecutivePartners(String value) { + this.numberOfNonExecutivePartners = value; + } + + /** + * Gets the value of the publicationDutyCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPublicationDutyCode() { + return publicationDutyCode; + } + + /** + * Sets the value of the publicationDutyCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPublicationDutyCode(String value) { + this.publicationDutyCode = value; + } + + /** + * Gets the value of the publicationDutyText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPublicationDutyText() { + return publicationDutyText; + } + + /** + * Sets the value of the publicationDutyText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPublicationDutyText(String value) { + this.publicationDutyText = value; + } + + /** + * Gets the value of the capital property. + * + * @return + * possible object is + * {@link GCRCapitalArray } + * + */ + public GCRCapitalArray getCapital() { + return capital; + } + + /** + * Sets the value of the capital property. + * + * @param value + * allowed object is + * {@link GCRCapitalArray } + * + */ + public void setCapital(GCRCapitalArray value) { + this.capital = value; + } + + /** + * Gets the value of the founded property. + * + * @return + * possible object is + * {@link GCRFoundedArray } + * + */ + public GCRFoundedArray getFounded() { + return founded; + } + + /** + * Sets the value of the founded property. + * + * @param value + * allowed object is + * {@link GCRFoundedArray } + * + */ + public void setFounded(GCRFoundedArray value) { + this.founded = value; + } + + /** + * Gets the value of the discontinuance property. + * + * @return + * possible object is + * {@link GCRDiscontinuance } + * + */ + public GCRDiscontinuance getDiscontinuance() { + return discontinuance; + } + + /** + * Sets the value of the discontinuance property. + * + * @param value + * allowed object is + * {@link GCRDiscontinuance } + * + */ + public void setDiscontinuance(GCRDiscontinuance value) { + this.discontinuance = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROriginatedFrom.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROriginatedFrom.java new file mode 100644 index 0000000..131795f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROriginatedFrom.java @@ -0,0 +1,146 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCROriginatedFrom complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCROriginatedFrom">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="originated_from_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="originated_from_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCROriginatedFrom", propOrder = { + +}) +public class GCROriginatedFrom { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + @XmlElement(name = "originated_from_code") + protected int originatedFromCode; + @XmlElement(name = "originated_from_text", required = true) + protected String originatedFromText; + @XmlElement(name = "date_from") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFrom; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the originatedFromCode property. + * + */ + public int getOriginatedFromCode() { + return originatedFromCode; + } + + /** + * Sets the value of the originatedFromCode property. + * + */ + public void setOriginatedFromCode(int value) { + this.originatedFromCode = value; + } + + /** + * Gets the value of the originatedFromText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOriginatedFromText() { + return originatedFromText; + } + + /** + * Sets the value of the originatedFromText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOriginatedFromText(String value) { + this.originatedFromText = value; + } + + /** + * Gets the value of the dateFrom property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFrom() { + return dateFrom; + } + + /** + * Sets the value of the dateFrom property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFrom(XMLGregorianCalendar value) { + this.dateFrom = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROriginatedFromArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROriginatedFromArray.java new file mode 100644 index 0000000..8f0f439 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROriginatedFromArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCROriginatedFromArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCROriginatedFromArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCROriginatedFrom" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCROriginatedFromArray", propOrder = { + "item" +}) +public class GCROriginatedFromArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCROriginatedFrom } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRParticipation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRParticipation.java new file mode 100644 index 0000000..7520ca9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRParticipation.java @@ -0,0 +1,182 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRParticipation complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRParticipation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="percentage_of_shares" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="date_until" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRParticipation", propOrder = { + +}) +public class GCRParticipation { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + @XmlElement(name = "is_current") + protected Boolean isCurrent; + @XmlElement(name = "percentage_of_shares") + protected Float percentageOfShares; + @XmlElement(name = "date_from") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFrom; + @XmlElement(name = "date_until") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateUntil; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the isCurrent property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIsCurrent() { + return isCurrent; + } + + /** + * Sets the value of the isCurrent property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIsCurrent(Boolean value) { + this.isCurrent = value; + } + + /** + * Gets the value of the percentageOfShares property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getPercentageOfShares() { + return percentageOfShares; + } + + /** + * Sets the value of the percentageOfShares property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setPercentageOfShares(Float value) { + this.percentageOfShares = value; + } + + /** + * Gets the value of the dateFrom property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFrom() { + return dateFrom; + } + + /** + * Sets the value of the dateFrom property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFrom(XMLGregorianCalendar value) { + this.dateFrom = value; + } + + /** + * Gets the value of the dateUntil property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateUntil() { + return dateUntil; + } + + /** + * Sets the value of the dateUntil property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateUntil(XMLGregorianCalendar value) { + this.dateUntil = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRParticipationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRParticipationArray.java new file mode 100644 index 0000000..85d7c5c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRParticipationArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRParticipationArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRParticipationArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRParticipation" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRParticipationArray", propOrder = { + "item" +}) +public class GCRParticipationArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRParticipation } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPaymentInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPaymentInformation.java new file mode 100644 index 0000000..087741c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPaymentInformation.java @@ -0,0 +1,98 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRPaymentInformation complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRPaymentInformation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="year_month" type="{http://www.w3.org/2001/XMLSchema}gYearMonth"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRPaymentInformation", propOrder = { + +}) +public class GCRPaymentInformation { + + protected Float value; + @XmlElement(name = "year_month", required = true) + @XmlSchemaType(name = "gYearMonth") + protected XMLGregorianCalendar yearMonth; + + /** + * Gets the value of the value property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setValue(Float value) { + this.value = value; + } + + /** + * Gets the value of the yearMonth property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getYearMonth() { + return yearMonth; + } + + /** + * Sets the value of the yearMonth property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setYearMonth(XMLGregorianCalendar value) { + this.yearMonth = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPaymentInformationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPaymentInformationArray.java new file mode 100644 index 0000000..d79b6bf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPaymentInformationArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRPaymentInformationArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRPaymentInformationArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRPaymentInformation" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRPaymentInformationArray", propOrder = { + "item" +}) +public class GCRPaymentInformationArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRPaymentInformation } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPercentageHistory.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPercentageHistory.java new file mode 100644 index 0000000..df8815d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPercentageHistory.java @@ -0,0 +1,98 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRPercentageHistory complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRPercentageHistory">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="year_month" type="{http://www.w3.org/2001/XMLSchema}gYearMonth" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRPercentageHistory", propOrder = { + +}) +public class GCRPercentageHistory { + + protected Float value; + @XmlElement(name = "year_month") + @XmlSchemaType(name = "gYearMonth") + protected XMLGregorianCalendar yearMonth; + + /** + * Gets the value of the value property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setValue(Float value) { + this.value = value; + } + + /** + * Gets the value of the yearMonth property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getYearMonth() { + return yearMonth; + } + + /** + * Sets the value of the yearMonth property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setYearMonth(XMLGregorianCalendar value) { + this.yearMonth = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPercentageHistoryArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPercentageHistoryArray.java new file mode 100644 index 0000000..5f55e73 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPercentageHistoryArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRPercentageHistoryArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRPercentageHistoryArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRPercentageHistory" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRPercentageHistoryArray", propOrder = { + "item" +}) +public class GCRPercentageHistoryArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRPercentageHistory } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPerson.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPerson.java new file mode 100644 index 0000000..5337a48 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPerson.java @@ -0,0 +1,231 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRPerson complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRPerson">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_person_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="personal_details" type="{http://www.webservices.nl/soap/}GCRPersonalDetails" minOccurs="0"/>
+ *         <element name="telephone_number" type="{http://www.webservices.nl/soap/}GCRTelephoneNumber" minOccurs="0"/>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}GCRAddress" minOccurs="0"/>
+ *         <element name="birth_information" type="{http://www.webservices.nl/soap/}GCRBirthInformation" minOccurs="0"/>
+ *         <element name="job_titles" type="{http://www.webservices.nl/soap/}GCRJobTitleArray" minOccurs="0"/>
+ *         <element name="financial_calamities" type="{http://www.webservices.nl/soap/}GCRFinancialCalamityArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRPerson", propOrder = { + +}) +public class GCRPerson { + + @XmlElement(name = "graydon_person_id", required = true) + protected BigInteger graydonPersonId; + @XmlElement(name = "personal_details") + protected GCRPersonalDetails personalDetails; + @XmlElement(name = "telephone_number") + protected GCRTelephoneNumber telephoneNumber; + protected GCRAddress address; + @XmlElement(name = "birth_information") + protected GCRBirthInformation birthInformation; + @XmlElement(name = "job_titles") + protected GCRJobTitleArray jobTitles; + @XmlElement(name = "financial_calamities") + protected GCRFinancialCalamityArray financialCalamities; + + /** + * Gets the value of the graydonPersonId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonPersonId() { + return graydonPersonId; + } + + /** + * Sets the value of the graydonPersonId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonPersonId(BigInteger value) { + this.graydonPersonId = value; + } + + /** + * Gets the value of the personalDetails property. + * + * @return + * possible object is + * {@link GCRPersonalDetails } + * + */ + public GCRPersonalDetails getPersonalDetails() { + return personalDetails; + } + + /** + * Sets the value of the personalDetails property. + * + * @param value + * allowed object is + * {@link GCRPersonalDetails } + * + */ + public void setPersonalDetails(GCRPersonalDetails value) { + this.personalDetails = value; + } + + /** + * Gets the value of the telephoneNumber property. + * + * @return + * possible object is + * {@link GCRTelephoneNumber } + * + */ + public GCRTelephoneNumber getTelephoneNumber() { + return telephoneNumber; + } + + /** + * Sets the value of the telephoneNumber property. + * + * @param value + * allowed object is + * {@link GCRTelephoneNumber } + * + */ + public void setTelephoneNumber(GCRTelephoneNumber value) { + this.telephoneNumber = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link GCRAddress } + * + */ + public GCRAddress getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link GCRAddress } + * + */ + public void setAddress(GCRAddress value) { + this.address = value; + } + + /** + * Gets the value of the birthInformation property. + * + * @return + * possible object is + * {@link GCRBirthInformation } + * + */ + public GCRBirthInformation getBirthInformation() { + return birthInformation; + } + + /** + * Sets the value of the birthInformation property. + * + * @param value + * allowed object is + * {@link GCRBirthInformation } + * + */ + public void setBirthInformation(GCRBirthInformation value) { + this.birthInformation = value; + } + + /** + * Gets the value of the jobTitles property. + * + * @return + * possible object is + * {@link GCRJobTitleArray } + * + */ + public GCRJobTitleArray getJobTitles() { + return jobTitles; + } + + /** + * Sets the value of the jobTitles property. + * + * @param value + * allowed object is + * {@link GCRJobTitleArray } + * + */ + public void setJobTitles(GCRJobTitleArray value) { + this.jobTitles = value; + } + + /** + * Gets the value of the financialCalamities property. + * + * @return + * possible object is + * {@link GCRFinancialCalamityArray } + * + */ + public GCRFinancialCalamityArray getFinancialCalamities() { + return financialCalamities; + } + + /** + * Sets the value of the financialCalamities property. + * + * @param value + * allowed object is + * {@link GCRFinancialCalamityArray } + * + */ + public void setFinancialCalamities(GCRFinancialCalamityArray value) { + this.financialCalamities = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonArray.java new file mode 100644 index 0000000..3517f1e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRPersonArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRPersonArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRPerson" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRPersonArray", propOrder = { + "item" +}) +public class GCRPersonArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRPerson } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonSimple.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonSimple.java new file mode 100644 index 0000000..0abd961 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonSimple.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRPersonSimple complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRPersonSimple">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_person_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="personal_details" type="{http://www.webservices.nl/soap/}GCRPersonalDetails" minOccurs="0"/>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}GCRAddress" minOccurs="0"/>
+ *         <element name="birth_information" type="{http://www.webservices.nl/soap/}GCRBirthInformation" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRPersonSimple", propOrder = { + +}) +public class GCRPersonSimple { + + @XmlElement(name = "graydon_person_id", required = true) + protected BigInteger graydonPersonId; + @XmlElement(name = "personal_details") + protected GCRPersonalDetails personalDetails; + protected GCRAddress address; + @XmlElement(name = "birth_information") + protected GCRBirthInformation birthInformation; + + /** + * Gets the value of the graydonPersonId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonPersonId() { + return graydonPersonId; + } + + /** + * Sets the value of the graydonPersonId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonPersonId(BigInteger value) { + this.graydonPersonId = value; + } + + /** + * Gets the value of the personalDetails property. + * + * @return + * possible object is + * {@link GCRPersonalDetails } + * + */ + public GCRPersonalDetails getPersonalDetails() { + return personalDetails; + } + + /** + * Sets the value of the personalDetails property. + * + * @param value + * allowed object is + * {@link GCRPersonalDetails } + * + */ + public void setPersonalDetails(GCRPersonalDetails value) { + this.personalDetails = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link GCRAddress } + * + */ + public GCRAddress getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link GCRAddress } + * + */ + public void setAddress(GCRAddress value) { + this.address = value; + } + + /** + * Gets the value of the birthInformation property. + * + * @return + * possible object is + * {@link GCRBirthInformation } + * + */ + public GCRBirthInformation getBirthInformation() { + return birthInformation; + } + + /** + * Sets the value of the birthInformation property. + * + * @param value + * allowed object is + * {@link GCRBirthInformation } + * + */ + public void setBirthInformation(GCRBirthInformation value) { + this.birthInformation = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonSimpleArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonSimpleArray.java new file mode 100644 index 0000000..700f959 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonSimpleArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRPersonSimpleArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRPersonSimpleArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRPersonSimple" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRPersonSimpleArray", propOrder = { + "item" +}) +public class GCRPersonSimpleArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRPersonSimple } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonalDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonalDetails.java new file mode 100644 index 0000000..b9cfa4d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonalDetails.java @@ -0,0 +1,200 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRPersonalDetails complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRPersonalDetails">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gender_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="gender_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="titles" type="{http://www.webservices.nl/soap/}GCRTitleArray" minOccurs="0"/>
+ *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="prefixes" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRPersonalDetails", propOrder = { + +}) +public class GCRPersonalDetails { + + @XmlElement(name = "gender_code") + protected String genderCode; + @XmlElement(name = "gender_text") + protected String genderText; + protected GCRTitleArray titles; + protected String initials; + protected String prefixes; + protected String name; + + /** + * Gets the value of the genderCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGenderCode() { + return genderCode; + } + + /** + * Sets the value of the genderCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGenderCode(String value) { + this.genderCode = value; + } + + /** + * Gets the value of the genderText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGenderText() { + return genderText; + } + + /** + * Sets the value of the genderText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGenderText(String value) { + this.genderText = value; + } + + /** + * Gets the value of the titles property. + * + * @return + * possible object is + * {@link GCRTitleArray } + * + */ + public GCRTitleArray getTitles() { + return titles; + } + + /** + * Sets the value of the titles property. + * + * @param value + * allowed object is + * {@link GCRTitleArray } + * + */ + public void setTitles(GCRTitleArray value) { + this.titles = value; + } + + /** + * Gets the value of the initials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInitials() { + return initials; + } + + /** + * Sets the value of the initials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInitials(String value) { + this.initials = value; + } + + /** + * Gets the value of the prefixes property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrefixes() { + return prefixes; + } + + /** + * Sets the value of the prefixes property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrefixes(String value) { + this.prefixes = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonnel.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonnel.java new file mode 100644 index 0000000..b806b63 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonnel.java @@ -0,0 +1,151 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRPersonnel complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRPersonnel">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="employees_class_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="employees_class_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="number_of_employees" type="{http://www.webservices.nl/soap/}GCRNumberOfEmployeesArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRPersonnel", propOrder = { + +}) +public class GCRPersonnel { + + @XmlElement(name = "graydon_company_id") + protected BigInteger graydonCompanyId; + @XmlElement(name = "employees_class_code") + protected Integer employeesClassCode; + @XmlElement(name = "employees_class_text") + protected String employeesClassText; + @XmlElement(name = "number_of_employees") + protected GCRNumberOfEmployeesArray numberOfEmployees; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the employeesClassCode property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getEmployeesClassCode() { + return employeesClassCode; + } + + /** + * Sets the value of the employeesClassCode property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setEmployeesClassCode(Integer value) { + this.employeesClassCode = value; + } + + /** + * Gets the value of the employeesClassText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmployeesClassText() { + return employeesClassText; + } + + /** + * Sets the value of the employeesClassText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmployeesClassText(String value) { + this.employeesClassText = value; + } + + /** + * Gets the value of the numberOfEmployees property. + * + * @return + * possible object is + * {@link GCRNumberOfEmployeesArray } + * + */ + public GCRNumberOfEmployeesArray getNumberOfEmployees() { + return numberOfEmployees; + } + + /** + * Sets the value of the numberOfEmployees property. + * + * @param value + * allowed object is + * {@link GCRNumberOfEmployeesArray } + * + */ + public void setNumberOfEmployees(GCRNumberOfEmployeesArray value) { + this.numberOfEmployees = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRating.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRating.java new file mode 100644 index 0000000..acdcbf9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRating.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRRating complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRRating">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRRating", propOrder = { + +}) +public class GCRRating { + + @XmlElement(required = true) + protected String type; + @XmlElement(required = true) + protected String description; + @XmlElement(required = true) + protected String value; + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the value property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValue(String value) { + this.value = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingArray.java new file mode 100644 index 0000000..63e24e7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRRatingArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRRatingArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRRating" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRRatingArray", propOrder = { + "item" +}) +public class GCRRatingArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRRating } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingHistory.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingHistory.java new file mode 100644 index 0000000..514f895 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingHistory.java @@ -0,0 +1,98 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRRatingHistory complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRRatingHistory">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="year_month" type="{http://www.w3.org/2001/XMLSchema}gYearMonth" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRRatingHistory", propOrder = { + +}) +public class GCRRatingHistory { + + protected String value; + @XmlElement(name = "year_month") + @XmlSchemaType(name = "gYearMonth") + protected XMLGregorianCalendar yearMonth; + + /** + * Gets the value of the value property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValue(String value) { + this.value = value; + } + + /** + * Gets the value of the yearMonth property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getYearMonth() { + return yearMonth; + } + + /** + * Sets the value of the yearMonth property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setYearMonth(XMLGregorianCalendar value) { + this.yearMonth = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingHistoryArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingHistoryArray.java new file mode 100644 index 0000000..daca458 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingHistoryArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRRatingHistoryArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRRatingHistoryArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRRatingHistory" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRRatingHistoryArray", propOrder = { + "item" +}) +public class GCRRatingHistoryArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRRatingHistory } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatio.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatio.java new file mode 100644 index 0000000..4e59af5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatio.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRRatio complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRRatio">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="ratio_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="ratio_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRRatio", propOrder = { + +}) +public class GCRRatio { + + @XmlElement(name = "ratio_code", required = true) + protected String ratioCode; + @XmlElement(name = "ratio_text", required = true) + protected String ratioText; + protected BigDecimal value; + + /** + * Gets the value of the ratioCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRatioCode() { + return ratioCode; + } + + /** + * Sets the value of the ratioCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRatioCode(String value) { + this.ratioCode = value; + } + + /** + * Gets the value of the ratioText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRatioText() { + return ratioText; + } + + /** + * Sets the value of the ratioText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRatioText(String value) { + this.ratioText = value; + } + + /** + * Gets the value of the value property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setValue(BigDecimal value) { + this.value = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatioArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatioArray.java new file mode 100644 index 0000000..a1bbc6b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatioArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRRatioArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRRatioArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRRatio" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRRatioArray", propOrder = { + "item" +}) +public class GCRRatioArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRRatio } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRReceiver.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRReceiver.java new file mode 100644 index 0000000..bc52ac6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRReceiver.java @@ -0,0 +1,100 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRReceiver complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRReceiver">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_person_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="date_when_active_in_job_title" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRReceiver", propOrder = { + +}) +public class GCRReceiver { + + @XmlElement(name = "graydon_person_id", required = true) + protected BigInteger graydonPersonId; + @XmlElement(name = "date_when_active_in_job_title") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateWhenActiveInJobTitle; + + /** + * Gets the value of the graydonPersonId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonPersonId() { + return graydonPersonId; + } + + /** + * Sets the value of the graydonPersonId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonPersonId(BigInteger value) { + this.graydonPersonId = value; + } + + /** + * Gets the value of the dateWhenActiveInJobTitle property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateWhenActiveInJobTitle() { + return dateWhenActiveInJobTitle; + } + + /** + * Sets the value of the dateWhenActiveInJobTitle property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateWhenActiveInJobTitle(XMLGregorianCalendar value) { + this.dateWhenActiveInJobTitle = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRReceiverArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRReceiverArray.java new file mode 100644 index 0000000..ecfa543 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRReceiverArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRReceiverArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRReceiverArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRReceiver" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRReceiverArray", propOrder = { + "item" +}) +public class GCRReceiverArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRReceiver } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSectorOfIndustry.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSectorOfIndustry.java new file mode 100644 index 0000000..31ec116 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSectorOfIndustry.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRSectorOfIndustry complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRSectorOfIndustry">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="is_primary" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="sector_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sector_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRSectorOfIndustry", propOrder = { + +}) +public class GCRSectorOfIndustry { + + @XmlElement(name = "is_primary") + protected Boolean isPrimary; + @XmlElement(name = "sector_code", required = true) + protected String sectorCode; + @XmlElement(name = "sector_text", required = true) + protected String sectorText; + + /** + * Gets the value of the isPrimary property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIsPrimary() { + return isPrimary; + } + + /** + * Sets the value of the isPrimary property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIsPrimary(Boolean value) { + this.isPrimary = value; + } + + /** + * Gets the value of the sectorCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectorCode() { + return sectorCode; + } + + /** + * Sets the value of the sectorCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectorCode(String value) { + this.sectorCode = value; + } + + /** + * Gets the value of the sectorText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectorText() { + return sectorText; + } + + /** + * Sets the value of the sectorText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectorText(String value) { + this.sectorText = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSectorOfIndustryArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSectorOfIndustryArray.java new file mode 100644 index 0000000..d42720b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSectorOfIndustryArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRSectorOfIndustryArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRSectorOfIndustryArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRSectorOfIndustry" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRSectorOfIndustryArray", propOrder = { + "item" +}) +public class GCRSectorOfIndustryArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRSectorOfIndustry } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRShareHolder.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRShareHolder.java new file mode 100644 index 0000000..b064ab1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRShareHolder.java @@ -0,0 +1,209 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRShareHolder complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRShareHolder">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="graydon_person_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="percentage_of_shares" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="date_until" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRShareHolder", propOrder = { + +}) +public class GCRShareHolder { + + @XmlElement(name = "graydon_company_id") + protected BigInteger graydonCompanyId; + @XmlElement(name = "graydon_person_id") + protected BigInteger graydonPersonId; + @XmlElement(name = "is_current") + protected Boolean isCurrent; + @XmlElement(name = "percentage_of_shares") + protected Float percentageOfShares; + @XmlElement(name = "date_from") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFrom; + @XmlElement(name = "date_until") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateUntil; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the graydonPersonId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonPersonId() { + return graydonPersonId; + } + + /** + * Sets the value of the graydonPersonId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonPersonId(BigInteger value) { + this.graydonPersonId = value; + } + + /** + * Gets the value of the isCurrent property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIsCurrent() { + return isCurrent; + } + + /** + * Sets the value of the isCurrent property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIsCurrent(Boolean value) { + this.isCurrent = value; + } + + /** + * Gets the value of the percentageOfShares property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getPercentageOfShares() { + return percentageOfShares; + } + + /** + * Sets the value of the percentageOfShares property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setPercentageOfShares(Float value) { + this.percentageOfShares = value; + } + + /** + * Gets the value of the dateFrom property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFrom() { + return dateFrom; + } + + /** + * Sets the value of the dateFrom property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFrom(XMLGregorianCalendar value) { + this.dateFrom = value; + } + + /** + * Gets the value of the dateUntil property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateUntil() { + return dateUntil; + } + + /** + * Sets the value of the dateUntil property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateUntil(XMLGregorianCalendar value) { + this.dateUntil = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRShareHolderArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRShareHolderArray.java new file mode 100644 index 0000000..97b0ede --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRShareHolderArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRShareHolderArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRShareHolderArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRShareHolder" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRShareHolderArray", propOrder = { + "item" +}) +public class GCRShareHolderArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRShareHolder } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSpecialCompanyInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSpecialCompanyInformation.java new file mode 100644 index 0000000..d6dee6f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSpecialCompanyInformation.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRSpecialCompanyInformation complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRSpecialCompanyInformation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="special_company_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="special_company_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="texts" type="{http://www.webservices.nl/soap/}GCRTextSequenceArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRSpecialCompanyInformation", propOrder = { + +}) +public class GCRSpecialCompanyInformation { + + @XmlElement(name = "special_company_code") + protected String specialCompanyCode; + @XmlElement(name = "special_company_text") + protected String specialCompanyText; + protected GCRTextSequenceArray texts; + + /** + * Gets the value of the specialCompanyCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSpecialCompanyCode() { + return specialCompanyCode; + } + + /** + * Sets the value of the specialCompanyCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSpecialCompanyCode(String value) { + this.specialCompanyCode = value; + } + + /** + * Gets the value of the specialCompanyText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSpecialCompanyText() { + return specialCompanyText; + } + + /** + * Sets the value of the specialCompanyText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSpecialCompanyText(String value) { + this.specialCompanyText = value; + } + + /** + * Gets the value of the texts property. + * + * @return + * possible object is + * {@link GCRTextSequenceArray } + * + */ + public GCRTextSequenceArray getTexts() { + return texts; + } + + /** + * Sets the value of the texts property. + * + * @param value + * allowed object is + * {@link GCRTextSequenceArray } + * + */ + public void setTexts(GCRTextSequenceArray value) { + this.texts = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSpecialCompanyInformationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSpecialCompanyInformationArray.java new file mode 100644 index 0000000..086f445 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSpecialCompanyInformationArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRSpecialCompanyInformationArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRSpecialCompanyInformationArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRSpecialCompanyInformation" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRSpecialCompanyInformationArray", propOrder = { + "item" +}) +public class GCRSpecialCompanyInformationArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRSpecialCompanyInformation } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTelephoneNumber.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTelephoneNumber.java new file mode 100644 index 0000000..dcb0ef3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTelephoneNumber.java @@ -0,0 +1,169 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRTelephoneNumber complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRTelephoneNumber">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="telephone_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="telephone_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="net_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="subscriber_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRTelephoneNumber", propOrder = { + +}) +public class GCRTelephoneNumber { + + @XmlElement(name = "telephone_code") + protected int telephoneCode; + @XmlElement(name = "telephone_text", required = true) + protected String telephoneText; + @XmlElement(name = "country_number") + protected String countryNumber; + @XmlElement(name = "net_number") + protected String netNumber; + @XmlElement(name = "subscriber_number", required = true) + protected String subscriberNumber; + + /** + * Gets the value of the telephoneCode property. + * + */ + public int getTelephoneCode() { + return telephoneCode; + } + + /** + * Sets the value of the telephoneCode property. + * + */ + public void setTelephoneCode(int value) { + this.telephoneCode = value; + } + + /** + * Gets the value of the telephoneText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneText() { + return telephoneText; + } + + /** + * Sets the value of the telephoneText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneText(String value) { + this.telephoneText = value; + } + + /** + * Gets the value of the countryNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryNumber() { + return countryNumber; + } + + /** + * Sets the value of the countryNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryNumber(String value) { + this.countryNumber = value; + } + + /** + * Gets the value of the netNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNetNumber() { + return netNumber; + } + + /** + * Sets the value of the netNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNetNumber(String value) { + this.netNumber = value; + } + + /** + * Gets the value of the subscriberNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSubscriberNumber() { + return subscriberNumber; + } + + /** + * Sets the value of the subscriberNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSubscriberNumber(String value) { + this.subscriberNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTelephoneNumberArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTelephoneNumberArray.java new file mode 100644 index 0000000..a049ccf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTelephoneNumberArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRTelephoneNumberArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRTelephoneNumberArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRTelephoneNumber" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRTelephoneNumberArray", propOrder = { + "item" +}) +public class GCRTelephoneNumberArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRTelephoneNumber } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTextSequence.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTextSequence.java new file mode 100644 index 0000000..4517ed0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTextSequence.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRTextSequence complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRTextSequence">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="sequence_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRTextSequence", propOrder = { + +}) +public class GCRTextSequence { + + @XmlElement(name = "sequence_number") + protected Integer sequenceNumber; + @XmlElement(required = true) + protected String text; + + /** + * Gets the value of the sequenceNumber property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getSequenceNumber() { + return sequenceNumber; + } + + /** + * Sets the value of the sequenceNumber property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setSequenceNumber(Integer value) { + this.sequenceNumber = value; + } + + /** + * Gets the value of the text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getText() { + return text; + } + + /** + * Sets the value of the text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setText(String value) { + this.text = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTextSequenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTextSequenceArray.java new file mode 100644 index 0000000..1af8544 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTextSequenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRTextSequenceArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRTextSequenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRTextSequence" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRTextSequenceArray", propOrder = { + "item" +}) +public class GCRTextSequenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRTextSequence } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTitle.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTitle.java new file mode 100644 index 0000000..0b3bd8f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTitle.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRTitle complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRTitle">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="title_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="title_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRTitle", propOrder = { + +}) +public class GCRTitle { + + @XmlElement(name = "title_code") + protected int titleCode; + @XmlElement(name = "title_text", required = true) + protected String titleText; + + /** + * Gets the value of the titleCode property. + * + */ + public int getTitleCode() { + return titleCode; + } + + /** + * Sets the value of the titleCode property. + * + */ + public void setTitleCode(int value) { + this.titleCode = value; + } + + /** + * Gets the value of the titleText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTitleText() { + return titleText; + } + + /** + * Sets the value of the titleText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTitleText(String value) { + this.titleText = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTitleArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTitleArray.java new file mode 100644 index 0000000..388159e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTitleArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRTitleArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRTitleArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRTitle" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRTitleArray", propOrder = { + "item" +}) +public class GCRTitleArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRTitle } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTradeName.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTradeName.java new file mode 100644 index 0000000..cb28b3e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTradeName.java @@ -0,0 +1,154 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GCRTradeName complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRTradeName">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="date_until" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRTradeName", propOrder = { + +}) +public class GCRTradeName { + + @XmlElement(name = "is_current") + protected Boolean isCurrent; + @XmlElement(required = true) + protected String name; + @XmlElement(name = "date_from") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateFrom; + @XmlElement(name = "date_until") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateUntil; + + /** + * Gets the value of the isCurrent property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIsCurrent() { + return isCurrent; + } + + /** + * Sets the value of the isCurrent property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIsCurrent(Boolean value) { + this.isCurrent = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the dateFrom property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateFrom() { + return dateFrom; + } + + /** + * Sets the value of the dateFrom property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateFrom(XMLGregorianCalendar value) { + this.dateFrom = value; + } + + /** + * Gets the value of the dateUntil property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateUntil() { + return dateUntil; + } + + /** + * Sets the value of the dateUntil property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateUntil(XMLGregorianCalendar value) { + this.dateUntil = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTradeNameArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTradeNameArray.java new file mode 100644 index 0000000..ac0b0dc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTradeNameArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GCRTradeNameArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GCRTradeNameArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GCRTradeName" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GCRTradeNameArray", propOrder = { + "item" +}) +public class GCRTradeNameArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GCRTradeName } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GemeenteStuk.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GemeenteStuk.java new file mode 100644 index 0000000..77977ed --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GemeenteStuk.java @@ -0,0 +1,126 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for GemeenteStuk complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GemeenteStuk">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeentelijke_registratie_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="nummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="datum_in_werking" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GemeenteStuk", propOrder = { + +}) +public class GemeenteStuk { + + @XmlElement(name = "gemeentelijke_registratie_id", required = true) + protected String gemeentelijkeRegistratieId; + @XmlElement(required = true) + protected String nummer; + @XmlElement(name = "datum_in_werking") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar datumInWerking; + + /** + * Gets the value of the gemeentelijkeRegistratieId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentelijkeRegistratieId() { + return gemeentelijkeRegistratieId; + } + + /** + * Sets the value of the gemeentelijkeRegistratieId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentelijkeRegistratieId(String value) { + this.gemeentelijkeRegistratieId = value; + } + + /** + * Gets the value of the nummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNummer() { + return nummer; + } + + /** + * Sets the value of the nummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNummer(String value) { + this.nummer = value; + } + + /** + * Gets the value of the datumInWerking property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDatumInWerking() { + return datumInWerking; + } + + /** + * Sets the value of the datumInWerking property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDatumInWerking(XMLGregorianCalendar value) { + this.datumInWerking = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GemeenteStukArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GemeenteStukArray.java new file mode 100644 index 0000000..7f62978 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GemeenteStukArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GemeenteStukArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GemeenteStukArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GemeenteStuk" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GemeenteStukArray", propOrder = { + "item" +}) +public class GemeenteStukArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GemeenteStuk } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddress.java new file mode 100644 index 0000000..594313f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddress.java @@ -0,0 +1,305 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GeoLocationAddress complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GeoLocationAddress">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="houseno_from" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="houseno_to" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GeoLocationAddress", propOrder = { + +}) +public class GeoLocationAddress { + + @XmlElement(name = "houseno_from") + protected int housenoFrom; + @XmlElement(name = "houseno_to") + protected int housenoTo; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String streetname; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String district; + @XmlElement(required = true) + protected String province; + protected int distance; + protected int x; + protected int y; + protected float latitude; + protected float longitude; + + /** + * Gets the value of the housenoFrom property. + * + */ + public int getHousenoFrom() { + return housenoFrom; + } + + /** + * Sets the value of the housenoFrom property. + * + */ + public void setHousenoFrom(int value) { + this.housenoFrom = value; + } + + /** + * Gets the value of the housenoTo property. + * + */ + public int getHousenoTo() { + return housenoTo; + } + + /** + * Sets the value of the housenoTo property. + * + */ + public void setHousenoTo(int value) { + this.housenoTo = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the streetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetname() { + return streetname; + } + + /** + * Sets the value of the streetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetname(String value) { + this.streetname = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the district property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDistrict() { + return district; + } + + /** + * Sets the value of the district property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDistrict(String value) { + this.district = value; + } + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the distance property. + * + */ + public int getDistance() { + return distance; + } + + /** + * Sets the value of the distance property. + * + */ + public void setDistance(int value) { + this.distance = value; + } + + /** + * Gets the value of the x property. + * + */ + public int getX() { + return x; + } + + /** + * Sets the value of the x property. + * + */ + public void setX(int value) { + this.x = value; + } + + /** + * Gets the value of the y property. + * + */ + public int getY() { + return y; + } + + /** + * Sets the value of the y property. + * + */ + public void setY(int value) { + this.y = value; + } + + /** + * Gets the value of the latitude property. + * + */ + public float getLatitude() { + return latitude; + } + + /** + * Sets the value of the latitude property. + * + */ + public void setLatitude(float value) { + this.latitude = value; + } + + /** + * Gets the value of the longitude property. + * + */ + public float getLongitude() { + return longitude; + } + + /** + * Sets the value of the longitude property. + * + */ + public void setLongitude(float value) { + this.longitude = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesLatLonRequestType.java new file mode 100644 index 0000000..eca5585 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesLatLonRequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationAddressCoordinatesLatLonRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationAddressCoordinatesLatLonRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationAddressCoordinatesLatLonRequestType", propOrder = { + +}) +public class GeoLocationAddressCoordinatesLatLonRequestType { + + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String street; + protected int houseno; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseno property. + * + */ + public int getHouseno() { + return houseno; + } + + /** + * Sets the value of the houseno property. + * + */ + public void setHouseno(int value) { + this.houseno = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesLatLonResponseType.java new file mode 100644 index 0000000..2f09915 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesLatLonResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationAddressCoordinatesLatLonResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationAddressCoordinatesLatLonResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="coordinates" type="{http://www.webservices.nl/soap/}LatLonCoordinatesMatch"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationAddressCoordinatesLatLonResponseType", propOrder = { + +}) +public class GeoLocationAddressCoordinatesLatLonResponseType { + + @XmlElement(required = true) + protected LatLonCoordinatesMatch coordinates; + + /** + * Gets the value of the coordinates property. + * + * @return + * possible object is + * {@link LatLonCoordinatesMatch } + * + */ + public LatLonCoordinatesMatch getCoordinates() { + return coordinates; + } + + /** + * Sets the value of the coordinates property. + * + * @param value + * allowed object is + * {@link LatLonCoordinatesMatch } + * + */ + public void setCoordinates(LatLonCoordinatesMatch value) { + this.coordinates = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesRDRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesRDRequestType.java new file mode 100644 index 0000000..d85554a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesRDRequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationAddressCoordinatesRDRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationAddressCoordinatesRDRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationAddressCoordinatesRDRequestType", propOrder = { + +}) +public class GeoLocationAddressCoordinatesRDRequestType { + + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String street; + protected int houseno; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseno property. + * + */ + public int getHouseno() { + return houseno; + } + + /** + * Sets the value of the houseno property. + * + */ + public void setHouseno(int value) { + this.houseno = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesRDResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesRDResponseType.java new file mode 100644 index 0000000..f80cb08 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesRDResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationAddressCoordinatesRDResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationAddressCoordinatesRDResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="coordinates" type="{http://www.webservices.nl/soap/}RDCoordinatesMatch"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationAddressCoordinatesRDResponseType", propOrder = { + +}) +public class GeoLocationAddressCoordinatesRDResponseType { + + @XmlElement(required = true) + protected RDCoordinatesMatch coordinates; + + /** + * Gets the value of the coordinates property. + * + * @return + * possible object is + * {@link RDCoordinatesMatch } + * + */ + public RDCoordinatesMatch getCoordinates() { + return coordinates; + } + + /** + * Sets the value of the coordinates property. + * + * @param value + * allowed object is + * {@link RDCoordinatesMatch } + * + */ + public void setCoordinates(RDCoordinatesMatch value) { + this.coordinates = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressV2.java new file mode 100644 index 0000000..6c301a2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressV2.java @@ -0,0 +1,313 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GeoLocationAddressV2 complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GeoLocationAddressV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="house_no" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="house_no_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GeoLocationAddressV2", propOrder = { + +}) +public class GeoLocationAddressV2 { + + @XmlElement(name = "house_no") + protected int houseNo; + @XmlElement(name = "house_no_addition", required = true) + protected String houseNoAddition; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String streetname; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String district; + @XmlElement(required = true) + protected String province; + protected int distance; + protected int x; + protected int y; + protected float latitude; + protected float longitude; + + /** + * Gets the value of the houseNo property. + * + */ + public int getHouseNo() { + return houseNo; + } + + /** + * Sets the value of the houseNo property. + * + */ + public void setHouseNo(int value) { + this.houseNo = value; + } + + /** + * Gets the value of the houseNoAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNoAddition() { + return houseNoAddition; + } + + /** + * Sets the value of the houseNoAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNoAddition(String value) { + this.houseNoAddition = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the streetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetname() { + return streetname; + } + + /** + * Sets the value of the streetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetname(String value) { + this.streetname = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the district property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDistrict() { + return district; + } + + /** + * Sets the value of the district property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDistrict(String value) { + this.district = value; + } + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the distance property. + * + */ + public int getDistance() { + return distance; + } + + /** + * Sets the value of the distance property. + * + */ + public void setDistance(int value) { + this.distance = value; + } + + /** + * Gets the value of the x property. + * + */ + public int getX() { + return x; + } + + /** + * Sets the value of the x property. + * + */ + public void setX(int value) { + this.x = value; + } + + /** + * Gets the value of the y property. + * + */ + public int getY() { + return y; + } + + /** + * Sets the value of the y property. + * + */ + public void setY(int value) { + this.y = value; + } + + /** + * Gets the value of the latitude property. + * + */ + public float getLatitude() { + return latitude; + } + + /** + * Sets the value of the latitude property. + * + */ + public void setLatitude(float value) { + this.latitude = value; + } + + /** + * Gets the value of the longitude property. + * + */ + public float getLongitude() { + return longitude; + } + + /** + * Sets the value of the longitude property. + * + */ + public void setLongitude(float value) { + this.longitude = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType.java new file mode 100644 index 0000000..d9417b0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType.java @@ -0,0 +1,124 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationDistanceSortedNeighborhoodCodesRadiusRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationDistanceSortedNeighborhoodCodesRadiusRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nbcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="radius" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationDistanceSortedNeighborhoodCodesRadiusRequestType", propOrder = { + +}) +public class GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType { + + @XmlElement(required = true) + protected String nbcodefrom; + @XmlElement(required = true) + protected BigInteger radius; + @XmlElement(required = true) + protected BigInteger page; + + /** + * Gets the value of the nbcodefrom property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcodefrom() { + return nbcodefrom; + } + + /** + * Sets the value of the nbcodefrom property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcodefrom(String value) { + this.nbcodefrom = value; + } + + /** + * Gets the value of the radius property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getRadius() { + return radius; + } + + /** + * Sets the value of the radius property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setRadius(BigInteger value) { + this.radius = value; + } + + /** + * Gets the value of the page property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setPage(BigInteger value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType.java new file mode 100644 index 0000000..4dd08e7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationDistanceSortedNeighborhoodCodesRadiusResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationDistanceSortedNeighborhoodCodesRadiusResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}SortedPostcodePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationDistanceSortedNeighborhoodCodesRadiusResponseType", propOrder = { + +}) +public class GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType { + + @XmlElement(required = true) + protected SortedPostcodePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link SortedPostcodePagedResult } + * + */ + public SortedPostcodePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link SortedPostcodePagedResult } + * + */ + public void setOut(SortedPostcodePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRequestType.java new file mode 100644 index 0000000..33ac296 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationDistanceSortedNeighborhoodCodesRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationDistanceSortedNeighborhoodCodesRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nbcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="nbcodes" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationDistanceSortedNeighborhoodCodesRequestType", propOrder = { + +}) +public class GeoLocationDistanceSortedNeighborhoodCodesRequestType { + + @XmlElement(required = true) + protected String nbcodefrom; + @XmlElement(required = true) + protected StringArray nbcodes; + + /** + * Gets the value of the nbcodefrom property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcodefrom() { + return nbcodefrom; + } + + /** + * Sets the value of the nbcodefrom property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcodefrom(String value) { + this.nbcodefrom = value; + } + + /** + * Gets the value of the nbcodes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getNbcodes() { + return nbcodes; + } + + /** + * Sets the value of the nbcodes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setNbcodes(StringArray value) { + this.nbcodes = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesResponseType.java new file mode 100644 index 0000000..7877c46 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationDistanceSortedNeighborhoodCodesResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationDistanceSortedNeighborhoodCodesResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nbcodes" type="{http://www.webservices.nl/soap/}SortedPostcodeArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationDistanceSortedNeighborhoodCodesResponseType", propOrder = { + +}) +public class GeoLocationDistanceSortedNeighborhoodCodesResponseType { + + @XmlElement(required = true) + protected SortedPostcodeArray nbcodes; + + /** + * Gets the value of the nbcodes property. + * + * @return + * possible object is + * {@link SortedPostcodeArray } + * + */ + public SortedPostcodeArray getNbcodes() { + return nbcodes; + } + + /** + * Sets the value of the nbcodes property. + * + * @param value + * allowed object is + * {@link SortedPostcodeArray } + * + */ + public void setNbcodes(SortedPostcodeArray value) { + this.nbcodes = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRadiusRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRadiusRequestType.java new file mode 100644 index 0000000..77a3d62 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRadiusRequestType.java @@ -0,0 +1,124 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationDistanceSortedPostcodesRadiusRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationDistanceSortedPostcodesRadiusRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="radius" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationDistanceSortedPostcodesRadiusRequestType", propOrder = { + +}) +public class GeoLocationDistanceSortedPostcodesRadiusRequestType { + + @XmlElement(required = true) + protected String postcodefrom; + @XmlElement(required = true) + protected BigInteger radius; + @XmlElement(required = true) + protected BigInteger page; + + /** + * Gets the value of the postcodefrom property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcodefrom() { + return postcodefrom; + } + + /** + * Sets the value of the postcodefrom property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcodefrom(String value) { + this.postcodefrom = value; + } + + /** + * Gets the value of the radius property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getRadius() { + return radius; + } + + /** + * Sets the value of the radius property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setRadius(BigInteger value) { + this.radius = value; + } + + /** + * Gets the value of the page property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setPage(BigInteger value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRadiusResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRadiusResponseType.java new file mode 100644 index 0000000..737c88a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRadiusResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationDistanceSortedPostcodesRadiusResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationDistanceSortedPostcodesRadiusResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}SortedPostcodePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationDistanceSortedPostcodesRadiusResponseType", propOrder = { + +}) +public class GeoLocationDistanceSortedPostcodesRadiusResponseType { + + @XmlElement(required = true) + protected SortedPostcodePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link SortedPostcodePagedResult } + * + */ + public SortedPostcodePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link SortedPostcodePagedResult } + * + */ + public void setOut(SortedPostcodePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRequestType.java new file mode 100644 index 0000000..479d157 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationDistanceSortedPostcodesRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationDistanceSortedPostcodesRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcodes" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationDistanceSortedPostcodesRequestType", propOrder = { + +}) +public class GeoLocationDistanceSortedPostcodesRequestType { + + @XmlElement(required = true) + protected String postcodefrom; + @XmlElement(required = true) + protected StringArray postcodes; + + /** + * Gets the value of the postcodefrom property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcodefrom() { + return postcodefrom; + } + + /** + * Sets the value of the postcodefrom property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcodefrom(String value) { + this.postcodefrom = value; + } + + /** + * Gets the value of the postcodes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getPostcodes() { + return postcodes; + } + + /** + * Sets the value of the postcodes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setPostcodes(StringArray value) { + this.postcodes = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesResponseType.java new file mode 100644 index 0000000..44bfcb7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationDistanceSortedPostcodesResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationDistanceSortedPostcodesResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcodes" type="{http://www.webservices.nl/soap/}SortedPostcodeArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationDistanceSortedPostcodesResponseType", propOrder = { + +}) +public class GeoLocationDistanceSortedPostcodesResponseType { + + @XmlElement(required = true) + protected SortedPostcodeArray postcodes; + + /** + * Gets the value of the postcodes property. + * + * @return + * possible object is + * {@link SortedPostcodeArray } + * + */ + public SortedPostcodeArray getPostcodes() { + return postcodes; + } + + /** + * Sets the value of the postcodes property. + * + * @param value + * allowed object is + * {@link SortedPostcodeArray } + * + */ + public void setPostcodes(SortedPostcodeArray value) { + this.postcodes = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationHaversineDistanceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationHaversineDistanceRequestType.java new file mode 100644 index 0000000..862c959 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationHaversineDistanceRequestType.java @@ -0,0 +1,137 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationHaversineDistanceRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationHaversineDistanceRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="latitude_coord_1" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitude_coord_1" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="latitude_coord_2" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitude_coord_2" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="in_radians" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationHaversineDistanceRequestType", propOrder = { + +}) +public class GeoLocationHaversineDistanceRequestType { + + @XmlElement(name = "latitude_coord_1") + protected float latitudeCoord1; + @XmlElement(name = "longitude_coord_1") + protected float longitudeCoord1; + @XmlElement(name = "latitude_coord_2") + protected float latitudeCoord2; + @XmlElement(name = "longitude_coord_2") + protected float longitudeCoord2; + @XmlElement(name = "in_radians") + protected boolean inRadians; + + /** + * Gets the value of the latitudeCoord1 property. + * + */ + public float getLatitudeCoord1() { + return latitudeCoord1; + } + + /** + * Sets the value of the latitudeCoord1 property. + * + */ + public void setLatitudeCoord1(float value) { + this.latitudeCoord1 = value; + } + + /** + * Gets the value of the longitudeCoord1 property. + * + */ + public float getLongitudeCoord1() { + return longitudeCoord1; + } + + /** + * Sets the value of the longitudeCoord1 property. + * + */ + public void setLongitudeCoord1(float value) { + this.longitudeCoord1 = value; + } + + /** + * Gets the value of the latitudeCoord2 property. + * + */ + public float getLatitudeCoord2() { + return latitudeCoord2; + } + + /** + * Sets the value of the latitudeCoord2 property. + * + */ + public void setLatitudeCoord2(float value) { + this.latitudeCoord2 = value; + } + + /** + * Gets the value of the longitudeCoord2 property. + * + */ + public float getLongitudeCoord2() { + return longitudeCoord2; + } + + /** + * Sets the value of the longitudeCoord2 property. + * + */ + public void setLongitudeCoord2(float value) { + this.longitudeCoord2 = value; + } + + /** + * Gets the value of the inRadians property. + * + */ + public boolean isInRadians() { + return inRadians; + } + + /** + * Sets the value of the inRadians property. + * + */ + public void setInRadians(boolean value) { + this.inRadians = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationHaversineDistanceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationHaversineDistanceResponseType.java new file mode 100644 index 0000000..fff3bf8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationHaversineDistanceResponseType.java @@ -0,0 +1,59 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationHaversineDistanceResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationHaversineDistanceResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationHaversineDistanceResponseType", propOrder = { + +}) +public class GeoLocationHaversineDistanceResponseType { + + protected int distance; + + /** + * Gets the value of the distance property. + * + */ + public int getDistance() { + return distance; + } + + /** + * Sets the value of the distance property. + * + */ + public void setDistance(int value) { + this.distance = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddress.java new file mode 100644 index 0000000..882487b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddress.java @@ -0,0 +1,258 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GeoLocationInternationalAddress complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GeoLocationInternationalAddress">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country_iso3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GeoLocationInternationalAddress", propOrder = { + +}) +public class GeoLocationInternationalAddress { + + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String streetname; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String province; + @XmlElement(required = true) + protected String country; + @XmlElement(name = "country_iso3", required = true) + protected String countryIso3; + protected int distance; + protected float latitude; + protected float longitude; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the streetname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetname() { + return streetname; + } + + /** + * Sets the value of the streetname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetname(String value) { + this.streetname = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the countryIso3 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryIso3() { + return countryIso3; + } + + /** + * Sets the value of the countryIso3 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryIso3(String value) { + this.countryIso3 = value; + } + + /** + * Gets the value of the distance property. + * + */ + public int getDistance() { + return distance; + } + + /** + * Sets the value of the distance property. + * + */ + public void setDistance(int value) { + this.distance = value; + } + + /** + * Gets the value of the latitude property. + * + */ + public float getLatitude() { + return latitude; + } + + /** + * Sets the value of the latitude property. + * + */ + public void setLatitude(float value) { + this.latitude = value; + } + + /** + * Gets the value of the longitude property. + * + */ + public float getLongitude() { + return longitude; + } + + /** + * Sets the value of the longitude property. + * + */ + public void setLongitude(float value) { + this.longitude = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonRequestType.java new file mode 100644 index 0000000..5614171 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonRequestType.java @@ -0,0 +1,195 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationInternationalAddressCoordinatesLatLonRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationInternationalAddressCoordinatesLatLonRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationInternationalAddressCoordinatesLatLonRequestType", propOrder = { + +}) +public class GeoLocationInternationalAddressCoordinatesLatLonRequestType { + + @XmlElement(required = true) + protected String street; + protected int houseno; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String province; + @XmlElement(required = true) + protected String country; + @XmlElement(required = true) + protected String language; + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseno property. + * + */ + public int getHouseno() { + return houseno; + } + + /** + * Sets the value of the houseno property. + * + */ + public void setHouseno(int value) { + this.houseno = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the language property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLanguage() { + return language; + } + + /** + * Sets the value of the language property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLanguage(String value) { + this.language = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonResponseType.java new file mode 100644 index 0000000..429d4d7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationInternationalAddressCoordinatesLatLonResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationInternationalAddressCoordinatesLatLonResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="coordinates" type="{http://www.webservices.nl/soap/}LatLonCoordinatesInternationalAddressArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationInternationalAddressCoordinatesLatLonResponseType", propOrder = { + +}) +public class GeoLocationInternationalAddressCoordinatesLatLonResponseType { + + @XmlElement(required = true) + protected LatLonCoordinatesInternationalAddressArray coordinates; + + /** + * Gets the value of the coordinates property. + * + * @return + * possible object is + * {@link LatLonCoordinatesInternationalAddressArray } + * + */ + public LatLonCoordinatesInternationalAddressArray getCoordinates() { + return coordinates; + } + + /** + * Sets the value of the coordinates property. + * + * @param value + * allowed object is + * {@link LatLonCoordinatesInternationalAddressArray } + * + */ + public void setCoordinates(LatLonCoordinatesInternationalAddressArray value) { + this.coordinates = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonV2RequestType.java new file mode 100644 index 0000000..0b2c610 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonV2RequestType.java @@ -0,0 +1,240 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationInternationalAddressCoordinatesLatLonV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationInternationalAddressCoordinatesLatLonV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="matchrate" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationInternationalAddressCoordinatesLatLonV2RequestType", propOrder = { + +}) +public class GeoLocationInternationalAddressCoordinatesLatLonV2RequestType { + + @XmlElement(required = true) + protected String country; + @XmlElement(required = true) + protected String postalcode; + protected int houseno; + @XmlElement(required = true) + protected String street; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String province; + protected float matchrate; + @XmlElement(required = true) + protected String language; + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the postalcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostalcode() { + return postalcode; + } + + /** + * Sets the value of the postalcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostalcode(String value) { + this.postalcode = value; + } + + /** + * Gets the value of the houseno property. + * + */ + public int getHouseno() { + return houseno; + } + + /** + * Sets the value of the houseno property. + * + */ + public void setHouseno(int value) { + this.houseno = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the matchrate property. + * + */ + public float getMatchrate() { + return matchrate; + } + + /** + * Sets the value of the matchrate property. + * + */ + public void setMatchrate(float value) { + this.matchrate = value; + } + + /** + * Gets the value of the language property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLanguage() { + return language; + } + + /** + * Sets the value of the language property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLanguage(String value) { + this.language = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType.java new file mode 100644 index 0000000..43aaadc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationInternationalAddressCoordinatesLatLonV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationInternationalAddressCoordinatesLatLonV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="coordinates" type="{http://www.webservices.nl/soap/}LatLonCoordinatesInternationalAddressArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationInternationalAddressCoordinatesLatLonV2ResponseType", propOrder = { + +}) +public class GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType { + + @XmlElement(required = true) + protected LatLonCoordinatesInternationalAddressArray coordinates; + + /** + * Gets the value of the coordinates property. + * + * @return + * possible object is + * {@link LatLonCoordinatesInternationalAddressArray } + * + */ + public LatLonCoordinatesInternationalAddressArray getCoordinates() { + return coordinates; + } + + /** + * Sets the value of the coordinates property. + * + * @param value + * allowed object is + * {@link LatLonCoordinatesInternationalAddressArray } + * + */ + public void setCoordinates(LatLonCoordinatesInternationalAddressArray value) { + this.coordinates = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalLatLonToAddressRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalLatLonToAddressRequestType.java new file mode 100644 index 0000000..ef86572 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalLatLonToAddressRequestType.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationInternationalLatLonToAddressRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationInternationalLatLonToAddressRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationInternationalLatLonToAddressRequestType", propOrder = { + +}) +public class GeoLocationInternationalLatLonToAddressRequestType { + + protected float latitude; + protected float longitude; + + /** + * Gets the value of the latitude property. + * + */ + public float getLatitude() { + return latitude; + } + + /** + * Sets the value of the latitude property. + * + */ + public void setLatitude(float value) { + this.latitude = value; + } + + /** + * Gets the value of the longitude property. + * + */ + public float getLongitude() { + return longitude; + } + + /** + * Sets the value of the longitude property. + * + */ + public void setLongitude(float value) { + this.longitude = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalLatLonToAddressResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalLatLonToAddressResponseType.java new file mode 100644 index 0000000..eec274d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalLatLonToAddressResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationInternationalLatLonToAddressResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationInternationalLatLonToAddressResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}GeoLocationInternationalAddress"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationInternationalLatLonToAddressResponseType", propOrder = { + +}) +public class GeoLocationInternationalLatLonToAddressResponseType { + + @XmlElement(required = true) + protected GeoLocationInternationalAddress address; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link GeoLocationInternationalAddress } + * + */ + public GeoLocationInternationalAddress getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link GeoLocationInternationalAddress } + * + */ + public void setAddress(GeoLocationInternationalAddress value) { + this.address = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalPostcodeCoordinatesLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalPostcodeCoordinatesLatLonRequestType.java new file mode 100644 index 0000000..7884d3f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalPostcodeCoordinatesLatLonRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationInternationalPostcodeCoordinatesLatLonRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationInternationalPostcodeCoordinatesLatLonRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationInternationalPostcodeCoordinatesLatLonRequestType", propOrder = { + +}) +public class GeoLocationInternationalPostcodeCoordinatesLatLonRequestType { + + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String country; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalPostcodeCoordinatesLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalPostcodeCoordinatesLatLonResponseType.java new file mode 100644 index 0000000..7dd24f1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalPostcodeCoordinatesLatLonResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationInternationalPostcodeCoordinatesLatLonResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationInternationalPostcodeCoordinatesLatLonResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="coordinates" type="{http://www.webservices.nl/soap/}LatLonCoordinates"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationInternationalPostcodeCoordinatesLatLonResponseType", propOrder = { + +}) +public class GeoLocationInternationalPostcodeCoordinatesLatLonResponseType { + + @XmlElement(required = true) + protected LatLonCoordinates coordinates; + + /** + * Gets the value of the coordinates property. + * + * @return + * possible object is + * {@link LatLonCoordinates } + * + */ + public LatLonCoordinates getCoordinates() { + return coordinates; + } + + /** + * Sets the value of the coordinates property. + * + * @param value + * allowed object is + * {@link LatLonCoordinates } + * + */ + public void setCoordinates(LatLonCoordinates value) { + this.coordinates = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToAddressV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToAddressV2RequestType.java new file mode 100644 index 0000000..32f78dd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToAddressV2RequestType.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationLatLonToAddressV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationLatLonToAddressV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationLatLonToAddressV2RequestType", propOrder = { + +}) +public class GeoLocationLatLonToAddressV2RequestType { + + protected float latitude; + protected float longitude; + + /** + * Gets the value of the latitude property. + * + */ + public float getLatitude() { + return latitude; + } + + /** + * Sets the value of the latitude property. + * + */ + public void setLatitude(float value) { + this.latitude = value; + } + + /** + * Gets the value of the longitude property. + * + */ + public float getLongitude() { + return longitude; + } + + /** + * Sets the value of the longitude property. + * + */ + public void setLongitude(float value) { + this.longitude = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToAddressV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToAddressV2ResponseType.java new file mode 100644 index 0000000..962b61f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToAddressV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationLatLonToAddressV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationLatLonToAddressV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}GeoLocationAddressV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationLatLonToAddressV2ResponseType", propOrder = { + +}) +public class GeoLocationLatLonToAddressV2ResponseType { + + @XmlElement(required = true) + protected GeoLocationAddressV2 address; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link GeoLocationAddressV2 } + * + */ + public GeoLocationAddressV2 getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link GeoLocationAddressV2 } + * + */ + public void setAddress(GeoLocationAddressV2 value) { + this.address = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToPostcodeRequestType.java new file mode 100644 index 0000000..a634efa --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToPostcodeRequestType.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationLatLonToPostcodeRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationLatLonToPostcodeRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationLatLonToPostcodeRequestType", propOrder = { + +}) +public class GeoLocationLatLonToPostcodeRequestType { + + protected float latitude; + protected float longitude; + + /** + * Gets the value of the latitude property. + * + */ + public float getLatitude() { + return latitude; + } + + /** + * Sets the value of the latitude property. + * + */ + public void setLatitude(float value) { + this.latitude = value; + } + + /** + * Gets the value of the longitude property. + * + */ + public float getLongitude() { + return longitude; + } + + /** + * Sets the value of the longitude property. + * + */ + public void setLongitude(float value) { + this.longitude = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToPostcodeResponseType.java new file mode 100644 index 0000000..f8d2989 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToPostcodeResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationLatLonToPostcodeResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationLatLonToPostcodeResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationLatLonToPostcodeResponseType", propOrder = { + +}) +public class GeoLocationLatLonToPostcodeResponseType { + + @XmlElement(required = true) + protected String postcode; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToRDRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToRDRequestType.java new file mode 100644 index 0000000..707ae7e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToRDRequestType.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationLatLonToRDRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationLatLonToRDRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationLatLonToRDRequestType", propOrder = { + +}) +public class GeoLocationLatLonToRDRequestType { + + protected float latitude; + protected float longitude; + + /** + * Gets the value of the latitude property. + * + */ + public float getLatitude() { + return latitude; + } + + /** + * Sets the value of the latitude property. + * + */ + public void setLatitude(float value) { + this.latitude = value; + } + + /** + * Gets the value of the longitude property. + * + */ + public float getLongitude() { + return longitude; + } + + /** + * Sets the value of the longitude property. + * + */ + public void setLongitude(float value) { + this.longitude = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToRDResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToRDResponseType.java new file mode 100644 index 0000000..1750718 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToRDResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationLatLonToRDResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationLatLonToRDResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}RDCoordinates"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationLatLonToRDResponseType", propOrder = { + +}) +public class GeoLocationLatLonToRDResponseType { + + @XmlElement(required = true) + protected RDCoordinates out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link RDCoordinates } + * + */ + public RDCoordinates getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link RDCoordinates } + * + */ + public void setOut(RDCoordinates value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesLatLonRequestType.java new file mode 100644 index 0000000..8e087d7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesLatLonRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationNeighborhoodCoordinatesLatLonRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationNeighborhoodCoordinatesLatLonRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationNeighborhoodCoordinatesLatLonRequestType", propOrder = { + +}) +public class GeoLocationNeighborhoodCoordinatesLatLonRequestType { + + @XmlElement(required = true) + protected String nbcode; + + /** + * Gets the value of the nbcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcode() { + return nbcode; + } + + /** + * Sets the value of the nbcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcode(String value) { + this.nbcode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesLatLonResponseType.java new file mode 100644 index 0000000..f77d08d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesLatLonResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationNeighborhoodCoordinatesLatLonResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationNeighborhoodCoordinatesLatLonResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="coordinates" type="{http://www.webservices.nl/soap/}LatLonCoordinates"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationNeighborhoodCoordinatesLatLonResponseType", propOrder = { + +}) +public class GeoLocationNeighborhoodCoordinatesLatLonResponseType { + + @XmlElement(required = true) + protected LatLonCoordinates coordinates; + + /** + * Gets the value of the coordinates property. + * + * @return + * possible object is + * {@link LatLonCoordinates } + * + */ + public LatLonCoordinates getCoordinates() { + return coordinates; + } + + /** + * Sets the value of the coordinates property. + * + * @param value + * allowed object is + * {@link LatLonCoordinates } + * + */ + public void setCoordinates(LatLonCoordinates value) { + this.coordinates = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesRDRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesRDRequestType.java new file mode 100644 index 0000000..f6bc403 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesRDRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationNeighborhoodCoordinatesRDRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationNeighborhoodCoordinatesRDRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationNeighborhoodCoordinatesRDRequestType", propOrder = { + +}) +public class GeoLocationNeighborhoodCoordinatesRDRequestType { + + @XmlElement(required = true) + protected String nbcode; + + /** + * Gets the value of the nbcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcode() { + return nbcode; + } + + /** + * Sets the value of the nbcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcode(String value) { + this.nbcode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesRDResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesRDResponseType.java new file mode 100644 index 0000000..25af98c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesRDResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationNeighborhoodCoordinatesRDResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationNeighborhoodCoordinatesRDResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="coordinates" type="{http://www.webservices.nl/soap/}RDCoordinates"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationNeighborhoodCoordinatesRDResponseType", propOrder = { + +}) +public class GeoLocationNeighborhoodCoordinatesRDResponseType { + + @XmlElement(required = true) + protected RDCoordinates coordinates; + + /** + * Gets the value of the coordinates property. + * + * @return + * possible object is + * {@link RDCoordinates } + * + */ + public RDCoordinates getCoordinates() { + return coordinates; + } + + /** + * Sets the value of the coordinates property. + * + * @param value + * allowed object is + * {@link RDCoordinates } + * + */ + public void setCoordinates(RDCoordinates value) { + this.coordinates = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodDistanceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodDistanceRequestType.java new file mode 100644 index 0000000..c013f2a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodDistanceRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationNeighborhoodDistanceRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationNeighborhoodDistanceRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nbcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="nbcodeto" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationNeighborhoodDistanceRequestType", propOrder = { + +}) +public class GeoLocationNeighborhoodDistanceRequestType { + + @XmlElement(required = true) + protected String nbcodefrom; + @XmlElement(required = true) + protected String nbcodeto; + + /** + * Gets the value of the nbcodefrom property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcodefrom() { + return nbcodefrom; + } + + /** + * Sets the value of the nbcodefrom property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcodefrom(String value) { + this.nbcodefrom = value; + } + + /** + * Gets the value of the nbcodeto property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcodeto() { + return nbcodeto; + } + + /** + * Sets the value of the nbcodeto property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcodeto(String value) { + this.nbcodeto = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodDistanceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodDistanceResponseType.java new file mode 100644 index 0000000..9e8edf5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodDistanceResponseType.java @@ -0,0 +1,59 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationNeighborhoodDistanceResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationNeighborhoodDistanceResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationNeighborhoodDistanceResponseType", propOrder = { + +}) +public class GeoLocationNeighborhoodDistanceResponseType { + + protected int distance; + + /** + * Gets the value of the distance property. + * + */ + public int getDistance() { + return distance; + } + + /** + * Sets the value of the distance property. + * + */ + public void setDistance(int value) { + this.distance = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesLatLonRequestType.java new file mode 100644 index 0000000..5794264 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesLatLonRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationPostcodeCoordinatesLatLonRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationPostcodeCoordinatesLatLonRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationPostcodeCoordinatesLatLonRequestType", propOrder = { + +}) +public class GeoLocationPostcodeCoordinatesLatLonRequestType { + + @XmlElement(required = true) + protected String postcode; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesLatLonResponseType.java new file mode 100644 index 0000000..4340fd4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesLatLonResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationPostcodeCoordinatesLatLonResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationPostcodeCoordinatesLatLonResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="coordinates" type="{http://www.webservices.nl/soap/}LatLonCoordinates"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationPostcodeCoordinatesLatLonResponseType", propOrder = { + +}) +public class GeoLocationPostcodeCoordinatesLatLonResponseType { + + @XmlElement(required = true) + protected LatLonCoordinates coordinates; + + /** + * Gets the value of the coordinates property. + * + * @return + * possible object is + * {@link LatLonCoordinates } + * + */ + public LatLonCoordinates getCoordinates() { + return coordinates; + } + + /** + * Sets the value of the coordinates property. + * + * @param value + * allowed object is + * {@link LatLonCoordinates } + * + */ + public void setCoordinates(LatLonCoordinates value) { + this.coordinates = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesRDRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesRDRequestType.java new file mode 100644 index 0000000..e7ca10c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesRDRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationPostcodeCoordinatesRDRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationPostcodeCoordinatesRDRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationPostcodeCoordinatesRDRequestType", propOrder = { + +}) +public class GeoLocationPostcodeCoordinatesRDRequestType { + + @XmlElement(required = true) + protected String postcode; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesRDResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesRDResponseType.java new file mode 100644 index 0000000..7c50e46 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesRDResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationPostcodeCoordinatesRDResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationPostcodeCoordinatesRDResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="coordinates" type="{http://www.webservices.nl/soap/}RDCoordinates"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationPostcodeCoordinatesRDResponseType", propOrder = { + +}) +public class GeoLocationPostcodeCoordinatesRDResponseType { + + @XmlElement(required = true) + protected RDCoordinates coordinates; + + /** + * Gets the value of the coordinates property. + * + * @return + * possible object is + * {@link RDCoordinates } + * + */ + public RDCoordinates getCoordinates() { + return coordinates; + } + + /** + * Sets the value of the coordinates property. + * + * @param value + * allowed object is + * {@link RDCoordinates } + * + */ + public void setCoordinates(RDCoordinates value) { + this.coordinates = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeDistanceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeDistanceRequestType.java new file mode 100644 index 0000000..500b941 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeDistanceRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationPostcodeDistanceRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationPostcodeDistanceRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcodeto" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationPostcodeDistanceRequestType", propOrder = { + +}) +public class GeoLocationPostcodeDistanceRequestType { + + @XmlElement(required = true) + protected String postcodefrom; + @XmlElement(required = true) + protected String postcodeto; + + /** + * Gets the value of the postcodefrom property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcodefrom() { + return postcodefrom; + } + + /** + * Sets the value of the postcodefrom property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcodefrom(String value) { + this.postcodefrom = value; + } + + /** + * Gets the value of the postcodeto property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcodeto() { + return postcodeto; + } + + /** + * Sets the value of the postcodeto property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcodeto(String value) { + this.postcodeto = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeDistanceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeDistanceResponseType.java new file mode 100644 index 0000000..65fbb52 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeDistanceResponseType.java @@ -0,0 +1,59 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationPostcodeDistanceResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationPostcodeDistanceResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationPostcodeDistanceResponseType", propOrder = { + +}) +public class GeoLocationPostcodeDistanceResponseType { + + protected int distance; + + /** + * Gets the value of the distance property. + * + */ + public int getDistance() { + return distance; + } + + /** + * Sets the value of the distance property. + * + */ + public void setDistance(int value) { + this.distance = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToAddressV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToAddressV2RequestType.java new file mode 100644 index 0000000..5bf3523 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToAddressV2RequestType.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationRDToAddressV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationRDToAddressV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationRDToAddressV2RequestType", propOrder = { + +}) +public class GeoLocationRDToAddressV2RequestType { + + protected int x; + protected int y; + + /** + * Gets the value of the x property. + * + */ + public int getX() { + return x; + } + + /** + * Sets the value of the x property. + * + */ + public void setX(int value) { + this.x = value; + } + + /** + * Gets the value of the y property. + * + */ + public int getY() { + return y; + } + + /** + * Sets the value of the y property. + * + */ + public void setY(int value) { + this.y = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToAddressV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToAddressV2ResponseType.java new file mode 100644 index 0000000..d36e3e1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToAddressV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationRDToAddressV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationRDToAddressV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}GeoLocationAddressV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationRDToAddressV2ResponseType", propOrder = { + +}) +public class GeoLocationRDToAddressV2ResponseType { + + @XmlElement(required = true) + protected GeoLocationAddressV2 address; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link GeoLocationAddressV2 } + * + */ + public GeoLocationAddressV2 getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link GeoLocationAddressV2 } + * + */ + public void setAddress(GeoLocationAddressV2 value) { + this.address = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToLatLonRequestType.java new file mode 100644 index 0000000..a55363b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToLatLonRequestType.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationRDToLatLonRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationRDToLatLonRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationRDToLatLonRequestType", propOrder = { + +}) +public class GeoLocationRDToLatLonRequestType { + + protected int x; + protected int y; + + /** + * Gets the value of the x property. + * + */ + public int getX() { + return x; + } + + /** + * Sets the value of the x property. + * + */ + public void setX(int value) { + this.x = value; + } + + /** + * Gets the value of the y property. + * + */ + public int getY() { + return y; + } + + /** + * Sets the value of the y property. + * + */ + public void setY(int value) { + this.y = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToLatLonResponseType.java new file mode 100644 index 0000000..3412246 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToLatLonResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationRDToLatLonResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationRDToLatLonResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}LatLonCoordinates"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationRDToLatLonResponseType", propOrder = { + +}) +public class GeoLocationRDToLatLonResponseType { + + @XmlElement(required = true) + protected LatLonCoordinates out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link LatLonCoordinates } + * + */ + public LatLonCoordinates getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link LatLonCoordinates } + * + */ + public void setOut(LatLonCoordinates value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToPostcodeRequestType.java new file mode 100644 index 0000000..f241a86 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToPostcodeRequestType.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationRDToPostcodeRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationRDToPostcodeRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationRDToPostcodeRequestType", propOrder = { + +}) +public class GeoLocationRDToPostcodeRequestType { + + protected int x; + protected int y; + + /** + * Gets the value of the x property. + * + */ + public int getX() { + return x; + } + + /** + * Sets the value of the x property. + * + */ + public void setX(int value) { + this.x = value; + } + + /** + * Gets the value of the y property. + * + */ + public int getY() { + return y; + } + + /** + * Sets the value of the y property. + * + */ + public void setY(int value) { + this.y = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToPostcodeResponseType.java new file mode 100644 index 0000000..71f0fdd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToPostcodeResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for geoLocationRDToPostcodeResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="geoLocationRDToPostcodeResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "geoLocationRDToPostcodeResponseType", propOrder = { + +}) +public class GeoLocationRDToPostcodeResponseType { + + @XmlElement(required = true) + protected String postcode; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditCompanyLiaisonsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditCompanyLiaisonsRequestType.java new file mode 100644 index 0000000..7e1ccdf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditCompanyLiaisonsRequestType.java @@ -0,0 +1,70 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditCompanyLiaisonsRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditCompanyLiaisonsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditCompanyLiaisonsRequestType", propOrder = { + +}) +public class GraydonCreditCompanyLiaisonsRequestType { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditCompanyLiaisonsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditCompanyLiaisonsResponseType.java new file mode 100644 index 0000000..6a5a8e9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditCompanyLiaisonsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditCompanyLiaisonsResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditCompanyLiaisonsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonCreditReportCompanyLiaisons"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditCompanyLiaisonsResponseType", propOrder = { + +}) +public class GraydonCreditCompanyLiaisonsResponseType { + + @XmlElement(required = true) + protected GraydonCreditReportCompanyLiaisons out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link GraydonCreditReportCompanyLiaisons } + * + */ + public GraydonCreditReportCompanyLiaisons getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link GraydonCreditReportCompanyLiaisons } + * + */ + public void setOut(GraydonCreditReportCompanyLiaisons value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditGetReportRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditGetReportRequestType.java new file mode 100644 index 0000000..ba66f5c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditGetReportRequestType.java @@ -0,0 +1,97 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditGetReportRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditGetReportRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditGetReportRequestType", propOrder = { + +}) +public class GraydonCreditGetReportRequestType { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + @XmlElement(required = true) + protected String document; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocument(String value) { + this.document = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditGetReportResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditGetReportResponseType.java new file mode 100644 index 0000000..b983029 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditGetReportResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditGetReportResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditGetReportResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonCreditReport"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditGetReportResponseType", propOrder = { + +}) +public class GraydonCreditGetReportResponseType { + + @XmlElement(required = true) + protected GraydonCreditReport out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link GraydonCreditReport } + * + */ + public GraydonCreditReport getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link GraydonCreditReport } + * + */ + public void setOut(GraydonCreditReport value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditManagementRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditManagementRequestType.java new file mode 100644 index 0000000..8ebecc8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditManagementRequestType.java @@ -0,0 +1,70 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditManagementRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditManagementRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditManagementRequestType", propOrder = { + +}) +public class GraydonCreditManagementRequestType { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditManagementResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditManagementResponseType.java new file mode 100644 index 0000000..b40a051 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditManagementResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditManagementResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditManagementResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonCreditReportManagement"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditManagementResponseType", propOrder = { + +}) +public class GraydonCreditManagementResponseType { + + @XmlElement(required = true) + protected GraydonCreditReportManagement out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link GraydonCreditReportManagement } + * + */ + public GraydonCreditReportManagement getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link GraydonCreditReportManagement } + * + */ + public void setOut(GraydonCreditReportManagement value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditQuickscanRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditQuickscanRequestType.java new file mode 100644 index 0000000..5d74821 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditQuickscanRequestType.java @@ -0,0 +1,70 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditQuickscanRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditQuickscanRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditQuickscanRequestType", propOrder = { + +}) +public class GraydonCreditQuickscanRequestType { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditQuickscanResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditQuickscanResponseType.java new file mode 100644 index 0000000..6819aeb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditQuickscanResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditQuickscanResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditQuickscanResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonCreditReportQuickscan"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditQuickscanResponseType", propOrder = { + +}) +public class GraydonCreditQuickscanResponseType { + + @XmlElement(required = true) + protected GraydonCreditReportQuickscan out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link GraydonCreditReportQuickscan } + * + */ + public GraydonCreditReportQuickscan getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link GraydonCreditReportQuickscan } + * + */ + public void setOut(GraydonCreditReportQuickscan value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditRatingsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditRatingsRequestType.java new file mode 100644 index 0000000..de59c5e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditRatingsRequestType.java @@ -0,0 +1,70 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditRatingsRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditRatingsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditRatingsRequestType", propOrder = { + +}) +public class GraydonCreditRatingsRequestType { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditRatingsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditRatingsResponseType.java new file mode 100644 index 0000000..11e6fc1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditRatingsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditRatingsResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditRatingsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonCreditReportRatings"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditRatingsResponseType", propOrder = { + +}) +public class GraydonCreditRatingsResponseType { + + @XmlElement(required = true) + protected GraydonCreditReportRatings out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link GraydonCreditReportRatings } + * + */ + public GraydonCreditReportRatings getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link GraydonCreditReportRatings } + * + */ + public void setOut(GraydonCreditReportRatings value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReport.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReport.java new file mode 100644 index 0000000..27d4559 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReport.java @@ -0,0 +1,173 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GraydonCreditReport complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GraydonCreditReport">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="report_normal" type="{http://www.webservices.nl/soap/}GraydonCreditReportNormal" minOccurs="0"/>
+ *         <element name="report_calamity" type="{http://www.webservices.nl/soap/}GraydonCreditReportCalamity" minOccurs="0"/>
+ *         <element name="report_alarm" type="{http://www.webservices.nl/soap/}GraydonCreditReportAlarm" minOccurs="0"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
+ *         <element name="alarm" type="{http://www.webservices.nl/soap/}GCRAlarm" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GraydonCreditReport", propOrder = { + +}) +public class GraydonCreditReport { + + @XmlElement(name = "report_normal") + protected GraydonCreditReportNormal reportNormal; + @XmlElement(name = "report_calamity") + protected GraydonCreditReportCalamity reportCalamity; + @XmlElement(name = "report_alarm") + protected GraydonCreditReportAlarm reportAlarm; + protected byte[] document; + protected GCRAlarm alarm; + + /** + * Gets the value of the reportNormal property. + * + * @return + * possible object is + * {@link GraydonCreditReportNormal } + * + */ + public GraydonCreditReportNormal getReportNormal() { + return reportNormal; + } + + /** + * Sets the value of the reportNormal property. + * + * @param value + * allowed object is + * {@link GraydonCreditReportNormal } + * + */ + public void setReportNormal(GraydonCreditReportNormal value) { + this.reportNormal = value; + } + + /** + * Gets the value of the reportCalamity property. + * + * @return + * possible object is + * {@link GraydonCreditReportCalamity } + * + */ + public GraydonCreditReportCalamity getReportCalamity() { + return reportCalamity; + } + + /** + * Sets the value of the reportCalamity property. + * + * @param value + * allowed object is + * {@link GraydonCreditReportCalamity } + * + */ + public void setReportCalamity(GraydonCreditReportCalamity value) { + this.reportCalamity = value; + } + + /** + * Gets the value of the reportAlarm property. + * + * @return + * possible object is + * {@link GraydonCreditReportAlarm } + * + */ + public GraydonCreditReportAlarm getReportAlarm() { + return reportAlarm; + } + + /** + * Sets the value of the reportAlarm property. + * + * @param value + * allowed object is + * {@link GraydonCreditReportAlarm } + * + */ + public void setReportAlarm(GraydonCreditReportAlarm value) { + this.reportAlarm = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + + /** + * Gets the value of the alarm property. + * + * @return + * possible object is + * {@link GCRAlarm } + * + */ + public GCRAlarm getAlarm() { + return alarm; + } + + /** + * Sets the value of the alarm property. + * + * @param value + * allowed object is + * {@link GCRAlarm } + * + */ + public void setAlarm(GCRAlarm value) { + this.alarm = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportAlarm.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportAlarm.java new file mode 100644 index 0000000..af5cf43 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportAlarm.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GraydonCreditReportAlarm complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GraydonCreditReportAlarm">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company" type="{http://www.webservices.nl/soap/}GCRCompanyItselfAlarm"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GraydonCreditReportAlarm", propOrder = { + +}) +public class GraydonCreditReportAlarm { + + @XmlElement(required = true) + protected GCRCompanyItselfAlarm company; + + /** + * Gets the value of the company property. + * + * @return + * possible object is + * {@link GCRCompanyItselfAlarm } + * + */ + public GCRCompanyItselfAlarm getCompany() { + return company; + } + + /** + * Sets the value of the company property. + * + * @param value + * allowed object is + * {@link GCRCompanyItselfAlarm } + * + */ + public void setCompany(GCRCompanyItselfAlarm value) { + this.company = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportCalamity.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportCalamity.java new file mode 100644 index 0000000..4454648 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportCalamity.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GraydonCreditReportCalamity complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GraydonCreditReportCalamity">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company" type="{http://www.webservices.nl/soap/}GCRCompanyItselfCalamity"/>
+ *         <element name="company_relations" type="{http://www.webservices.nl/soap/}GCRCompanyRelationsSimple"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GraydonCreditReportCalamity", propOrder = { + +}) +public class GraydonCreditReportCalamity { + + @XmlElement(required = true) + protected GCRCompanyItselfCalamity company; + @XmlElement(name = "company_relations", required = true) + protected GCRCompanyRelationsSimple companyRelations; + + /** + * Gets the value of the company property. + * + * @return + * possible object is + * {@link GCRCompanyItselfCalamity } + * + */ + public GCRCompanyItselfCalamity getCompany() { + return company; + } + + /** + * Sets the value of the company property. + * + * @param value + * allowed object is + * {@link GCRCompanyItselfCalamity } + * + */ + public void setCompany(GCRCompanyItselfCalamity value) { + this.company = value; + } + + /** + * Gets the value of the companyRelations property. + * + * @return + * possible object is + * {@link GCRCompanyRelationsSimple } + * + */ + public GCRCompanyRelationsSimple getCompanyRelations() { + return companyRelations; + } + + /** + * Sets the value of the companyRelations property. + * + * @param value + * allowed object is + * {@link GCRCompanyRelationsSimple } + * + */ + public void setCompanyRelations(GCRCompanyRelationsSimple value) { + this.companyRelations = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportCompanyLiaisons.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportCompanyLiaisons.java new file mode 100644 index 0000000..8127c08 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportCompanyLiaisons.java @@ -0,0 +1,121 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GraydonCreditReportCompanyLiaisons complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GraydonCreditReportCompanyLiaisons">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="concern_liaisons" type="{http://www.webservices.nl/soap/}GCRLiaisonArray" minOccurs="0"/>
+ *         <element name="companies" type="{http://www.webservices.nl/soap/}GCRLiaisonCompanyArray" minOccurs="0"/>
+ *         <element name="alarm" type="{http://www.webservices.nl/soap/}GCRAlarm" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GraydonCreditReportCompanyLiaisons", propOrder = { + +}) +public class GraydonCreditReportCompanyLiaisons { + + @XmlElement(name = "concern_liaisons") + protected GCRLiaisonArray concernLiaisons; + protected GCRLiaisonCompanyArray companies; + protected GCRAlarm alarm; + + /** + * Gets the value of the concernLiaisons property. + * + * @return + * possible object is + * {@link GCRLiaisonArray } + * + */ + public GCRLiaisonArray getConcernLiaisons() { + return concernLiaisons; + } + + /** + * Sets the value of the concernLiaisons property. + * + * @param value + * allowed object is + * {@link GCRLiaisonArray } + * + */ + public void setConcernLiaisons(GCRLiaisonArray value) { + this.concernLiaisons = value; + } + + /** + * Gets the value of the companies property. + * + * @return + * possible object is + * {@link GCRLiaisonCompanyArray } + * + */ + public GCRLiaisonCompanyArray getCompanies() { + return companies; + } + + /** + * Sets the value of the companies property. + * + * @param value + * allowed object is + * {@link GCRLiaisonCompanyArray } + * + */ + public void setCompanies(GCRLiaisonCompanyArray value) { + this.companies = value; + } + + /** + * Gets the value of the alarm property. + * + * @return + * possible object is + * {@link GCRAlarm } + * + */ + public GCRAlarm getAlarm() { + return alarm; + } + + /** + * Sets the value of the alarm property. + * + * @param value + * allowed object is + * {@link GCRAlarm } + * + */ + public void setAlarm(GCRAlarm value) { + this.alarm = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportManagement.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportManagement.java new file mode 100644 index 0000000..7e548de --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportManagement.java @@ -0,0 +1,121 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GraydonCreditReportManagement complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GraydonCreditReportManagement">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_management" type="{http://www.webservices.nl/soap/}GCRCompanyManagement" minOccurs="0"/>
+ *         <element name="persons" type="{http://www.webservices.nl/soap/}GCRPersonArray" minOccurs="0"/>
+ *         <element name="alarm" type="{http://www.webservices.nl/soap/}GCRAlarm" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GraydonCreditReportManagement", propOrder = { + +}) +public class GraydonCreditReportManagement { + + @XmlElement(name = "company_management") + protected GCRCompanyManagement companyManagement; + protected GCRPersonArray persons; + protected GCRAlarm alarm; + + /** + * Gets the value of the companyManagement property. + * + * @return + * possible object is + * {@link GCRCompanyManagement } + * + */ + public GCRCompanyManagement getCompanyManagement() { + return companyManagement; + } + + /** + * Sets the value of the companyManagement property. + * + * @param value + * allowed object is + * {@link GCRCompanyManagement } + * + */ + public void setCompanyManagement(GCRCompanyManagement value) { + this.companyManagement = value; + } + + /** + * Gets the value of the persons property. + * + * @return + * possible object is + * {@link GCRPersonArray } + * + */ + public GCRPersonArray getPersons() { + return persons; + } + + /** + * Sets the value of the persons property. + * + * @param value + * allowed object is + * {@link GCRPersonArray } + * + */ + public void setPersons(GCRPersonArray value) { + this.persons = value; + } + + /** + * Gets the value of the alarm property. + * + * @return + * possible object is + * {@link GCRAlarm } + * + */ + public GCRAlarm getAlarm() { + return alarm; + } + + /** + * Sets the value of the alarm property. + * + * @param value + * allowed object is + * {@link GCRAlarm } + * + */ + public void setAlarm(GCRAlarm value) { + this.alarm = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportNormal.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportNormal.java new file mode 100644 index 0000000..2d08a92 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportNormal.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GraydonCreditReportNormal complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GraydonCreditReportNormal">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company" type="{http://www.webservices.nl/soap/}GCRCompanyItself"/>
+ *         <element name="company_relations" type="{http://www.webservices.nl/soap/}GCRCompanyRelations"/>
+ *         <element name="indirect_company_relations" type="{http://www.webservices.nl/soap/}GCRCompanyRelations"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GraydonCreditReportNormal", propOrder = { + +}) +public class GraydonCreditReportNormal { + + @XmlElement(required = true) + protected GCRCompanyItself company; + @XmlElement(name = "company_relations", required = true) + protected GCRCompanyRelations companyRelations; + @XmlElement(name = "indirect_company_relations", required = true) + protected GCRCompanyRelations indirectCompanyRelations; + + /** + * Gets the value of the company property. + * + * @return + * possible object is + * {@link GCRCompanyItself } + * + */ + public GCRCompanyItself getCompany() { + return company; + } + + /** + * Sets the value of the company property. + * + * @param value + * allowed object is + * {@link GCRCompanyItself } + * + */ + public void setCompany(GCRCompanyItself value) { + this.company = value; + } + + /** + * Gets the value of the companyRelations property. + * + * @return + * possible object is + * {@link GCRCompanyRelations } + * + */ + public GCRCompanyRelations getCompanyRelations() { + return companyRelations; + } + + /** + * Sets the value of the companyRelations property. + * + * @param value + * allowed object is + * {@link GCRCompanyRelations } + * + */ + public void setCompanyRelations(GCRCompanyRelations value) { + this.companyRelations = value; + } + + /** + * Gets the value of the indirectCompanyRelations property. + * + * @return + * possible object is + * {@link GCRCompanyRelations } + * + */ + public GCRCompanyRelations getIndirectCompanyRelations() { + return indirectCompanyRelations; + } + + /** + * Sets the value of the indirectCompanyRelations property. + * + * @param value + * allowed object is + * {@link GCRCompanyRelations } + * + */ + public void setIndirectCompanyRelations(GCRCompanyRelations value) { + this.indirectCompanyRelations = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportQuickscan.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportQuickscan.java new file mode 100644 index 0000000..f6bf22a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportQuickscan.java @@ -0,0 +1,149 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GraydonCreditReportQuickscan complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GraydonCreditReportQuickscan">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="pd_rating" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="credit_flag_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="credit_flag_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="alarm" type="{http://www.webservices.nl/soap/}GCRAlarm" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GraydonCreditReportQuickscan", propOrder = { + +}) +public class GraydonCreditReportQuickscan { + + @XmlElement(name = "pd_rating") + protected String pdRating; + @XmlElement(name = "credit_flag_code") + protected String creditFlagCode; + @XmlElement(name = "credit_flag_text") + protected String creditFlagText; + protected GCRAlarm alarm; + + /** + * Gets the value of the pdRating property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPdRating() { + return pdRating; + } + + /** + * Sets the value of the pdRating property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPdRating(String value) { + this.pdRating = value; + } + + /** + * Gets the value of the creditFlagCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreditFlagCode() { + return creditFlagCode; + } + + /** + * Sets the value of the creditFlagCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreditFlagCode(String value) { + this.creditFlagCode = value; + } + + /** + * Gets the value of the creditFlagText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreditFlagText() { + return creditFlagText; + } + + /** + * Sets the value of the creditFlagText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreditFlagText(String value) { + this.creditFlagText = value; + } + + /** + * Gets the value of the alarm property. + * + * @return + * possible object is + * {@link GCRAlarm } + * + */ + public GCRAlarm getAlarm() { + return alarm; + } + + /** + * Sets the value of the alarm property. + * + * @param value + * allowed object is + * {@link GCRAlarm } + * + */ + public void setAlarm(GCRAlarm value) { + this.alarm = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportRatings.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportRatings.java new file mode 100644 index 0000000..15c4899 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportRatings.java @@ -0,0 +1,229 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GraydonCreditReportRatings complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GraydonCreditReportRatings">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="credit_advice_amount" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="credit_advice_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="credit_advice_factors" type="{http://www.webservices.nl/soap/}GCRCreditFactorArray" minOccurs="0"/>
+ *         <element name="pd_rating" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="ratings" type="{http://www.webservices.nl/soap/}GCRRatingArray" minOccurs="0"/>
+ *         <element name="payment_information" type="{http://www.webservices.nl/soap/}GCRPaymentInformationArray" minOccurs="0"/>
+ *         <element name="alarm" type="{http://www.webservices.nl/soap/}GCRAlarm" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GraydonCreditReportRatings", propOrder = { + +}) +public class GraydonCreditReportRatings { + + @XmlElement(name = "credit_advice_amount") + protected String creditAdviceAmount; + @XmlElement(name = "credit_advice_currency") + protected String creditAdviceCurrency; + @XmlElement(name = "credit_advice_factors") + protected GCRCreditFactorArray creditAdviceFactors; + @XmlElement(name = "pd_rating") + protected String pdRating; + protected GCRRatingArray ratings; + @XmlElement(name = "payment_information") + protected GCRPaymentInformationArray paymentInformation; + protected GCRAlarm alarm; + + /** + * Gets the value of the creditAdviceAmount property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreditAdviceAmount() { + return creditAdviceAmount; + } + + /** + * Sets the value of the creditAdviceAmount property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreditAdviceAmount(String value) { + this.creditAdviceAmount = value; + } + + /** + * Gets the value of the creditAdviceCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreditAdviceCurrency() { + return creditAdviceCurrency; + } + + /** + * Sets the value of the creditAdviceCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreditAdviceCurrency(String value) { + this.creditAdviceCurrency = value; + } + + /** + * Gets the value of the creditAdviceFactors property. + * + * @return + * possible object is + * {@link GCRCreditFactorArray } + * + */ + public GCRCreditFactorArray getCreditAdviceFactors() { + return creditAdviceFactors; + } + + /** + * Sets the value of the creditAdviceFactors property. + * + * @param value + * allowed object is + * {@link GCRCreditFactorArray } + * + */ + public void setCreditAdviceFactors(GCRCreditFactorArray value) { + this.creditAdviceFactors = value; + } + + /** + * Gets the value of the pdRating property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPdRating() { + return pdRating; + } + + /** + * Sets the value of the pdRating property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPdRating(String value) { + this.pdRating = value; + } + + /** + * Gets the value of the ratings property. + * + * @return + * possible object is + * {@link GCRRatingArray } + * + */ + public GCRRatingArray getRatings() { + return ratings; + } + + /** + * Sets the value of the ratings property. + * + * @param value + * allowed object is + * {@link GCRRatingArray } + * + */ + public void setRatings(GCRRatingArray value) { + this.ratings = value; + } + + /** + * Gets the value of the paymentInformation property. + * + * @return + * possible object is + * {@link GCRPaymentInformationArray } + * + */ + public GCRPaymentInformationArray getPaymentInformation() { + return paymentInformation; + } + + /** + * Sets the value of the paymentInformation property. + * + * @param value + * allowed object is + * {@link GCRPaymentInformationArray } + * + */ + public void setPaymentInformation(GCRPaymentInformationArray value) { + this.paymentInformation = value; + } + + /** + * Gets the value of the alarm property. + * + * @return + * possible object is + * {@link GCRAlarm } + * + */ + public GCRAlarm getAlarm() { + return alarm; + } + + /** + * Sets the value of the alarm property. + * + * @param value + * allowed object is + * {@link GCRAlarm } + * + */ + public void setAlarm(GCRAlarm value) { + this.alarm = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportVatNumber.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportVatNumber.java new file mode 100644 index 0000000..4da85ff --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportVatNumber.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GraydonCreditReportVatNumber complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GraydonCreditReportVatNumber">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="alarm" type="{http://www.webservices.nl/soap/}GCRAlarm" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GraydonCreditReportVatNumber", propOrder = { + +}) +public class GraydonCreditReportVatNumber { + + @XmlElement(name = "vat_number") + protected String vatNumber; + protected GCRAlarm alarm; + + /** + * Gets the value of the vatNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVatNumber() { + return vatNumber; + } + + /** + * Sets the value of the vatNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVatNumber(String value) { + this.vatNumber = value; + } + + /** + * Gets the value of the alarm property. + * + * @return + * possible object is + * {@link GCRAlarm } + * + */ + public GCRAlarm getAlarm() { + return alarm; + } + + /** + * Sets the value of the alarm property. + * + * @param value + * allowed object is + * {@link GCRAlarm } + * + */ + public void setAlarm(GCRAlarm value) { + this.alarm = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchIdentificationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchIdentificationRequestType.java new file mode 100644 index 0000000..02d8d7b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchIdentificationRequestType.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditSearchIdentificationRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditSearchIdentificationRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country_iso2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditSearchIdentificationRequestType", propOrder = { + +}) +public class GraydonCreditSearchIdentificationRequestType { + + @XmlElement(name = "company_id", required = true) + protected String companyId; + @XmlElement(name = "company_id_type", required = true) + protected String companyIdType; + @XmlElement(name = "country_iso2", required = true) + protected String countryIso2; + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + + /** + * Gets the value of the companyIdType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyIdType() { + return companyIdType; + } + + /** + * Sets the value of the companyIdType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyIdType(String value) { + this.companyIdType = value; + } + + /** + * Gets the value of the countryIso2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryIso2() { + return countryIso2; + } + + /** + * Sets the value of the countryIso2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryIso2(String value) { + this.countryIso2 = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchIdentificationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchIdentificationResponseType.java new file mode 100644 index 0000000..336324e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchIdentificationResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditSearchIdentificationResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditSearchIdentificationResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditSearchIdentificationResponseType", propOrder = { + +}) +public class GraydonCreditSearchIdentificationResponseType { + + @XmlElement(required = true) + protected GraydonReferenceArray out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link GraydonReferenceArray } + * + */ + public GraydonReferenceArray getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link GraydonReferenceArray } + * + */ + public void setOut(GraydonReferenceArray value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchNameRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchNameRequestType.java new file mode 100644 index 0000000..c4006a6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchNameRequestType.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditSearchNameRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditSearchNameRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="residence" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country_iso2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditSearchNameRequestType", propOrder = { + +}) +public class GraydonCreditSearchNameRequestType { + + @XmlElement(name = "company_name", required = true) + protected String companyName; + @XmlElement(required = true) + protected String residence; + @XmlElement(name = "country_iso2", required = true) + protected String countryIso2; + + /** + * Gets the value of the companyName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyName() { + return companyName; + } + + /** + * Sets the value of the companyName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyName(String value) { + this.companyName = value; + } + + /** + * Gets the value of the residence property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getResidence() { + return residence; + } + + /** + * Sets the value of the residence property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setResidence(String value) { + this.residence = value; + } + + /** + * Gets the value of the countryIso2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryIso2() { + return countryIso2; + } + + /** + * Sets the value of the countryIso2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryIso2(String value) { + this.countryIso2 = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchNameResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchNameResponseType.java new file mode 100644 index 0000000..5103123 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchNameResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditSearchNameResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditSearchNameResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditSearchNameResponseType", propOrder = { + +}) +public class GraydonCreditSearchNameResponseType { + + @XmlElement(required = true) + protected GraydonReferenceArray out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link GraydonReferenceArray } + * + */ + public GraydonReferenceArray getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link GraydonReferenceArray } + * + */ + public void setOut(GraydonReferenceArray value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchPostcodeRequestType.java new file mode 100644 index 0000000..97b4411 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchPostcodeRequestType.java @@ -0,0 +1,142 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditSearchPostcodeRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditSearchPostcodeRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_no" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="telephone_no" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country_iso2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditSearchPostcodeRequestType", propOrder = { + +}) +public class GraydonCreditSearchPostcodeRequestType { + + @XmlElement(required = true) + protected String postcode; + @XmlElement(name = "house_no") + protected int houseNo; + @XmlElement(name = "telephone_no", required = true) + protected String telephoneNo; + @XmlElement(name = "country_iso2", required = true) + protected String countryIso2; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the houseNo property. + * + */ + public int getHouseNo() { + return houseNo; + } + + /** + * Sets the value of the houseNo property. + * + */ + public void setHouseNo(int value) { + this.houseNo = value; + } + + /** + * Gets the value of the telephoneNo property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNo() { + return telephoneNo; + } + + /** + * Sets the value of the telephoneNo property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNo(String value) { + this.telephoneNo = value; + } + + /** + * Gets the value of the countryIso2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryIso2() { + return countryIso2; + } + + /** + * Sets the value of the countryIso2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryIso2(String value) { + this.countryIso2 = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchPostcodeResponseType.java new file mode 100644 index 0000000..3377a25 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchPostcodeResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditSearchPostcodeResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditSearchPostcodeResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditSearchPostcodeResponseType", propOrder = { + +}) +public class GraydonCreditSearchPostcodeResponseType { + + @XmlElement(required = true) + protected GraydonReferenceArray out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link GraydonReferenceArray } + * + */ + public GraydonReferenceArray getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link GraydonReferenceArray } + * + */ + public void setOut(GraydonReferenceArray value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditVatNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditVatNumberRequestType.java new file mode 100644 index 0000000..4de4620 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditVatNumberRequestType.java @@ -0,0 +1,70 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditVatNumberRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditVatNumberRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditVatNumberRequestType", propOrder = { + +}) +public class GraydonCreditVatNumberRequestType { + + @XmlElement(name = "graydon_company_id", required = true) + protected BigInteger graydonCompanyId; + + /** + * Gets the value of the graydonCompanyId property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getGraydonCompanyId() { + return graydonCompanyId; + } + + /** + * Sets the value of the graydonCompanyId property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setGraydonCompanyId(BigInteger value) { + this.graydonCompanyId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditVatNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditVatNumberResponseType.java new file mode 100644 index 0000000..2af9c3a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditVatNumberResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for graydonCreditVatNumberResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="graydonCreditVatNumberResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonCreditReportVatNumber"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "graydonCreditVatNumberResponseType", propOrder = { + +}) +public class GraydonCreditVatNumberResponseType { + + @XmlElement(required = true) + protected GraydonCreditReportVatNumber out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link GraydonCreditReportVatNumber } + * + */ + public GraydonCreditReportVatNumber getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link GraydonCreditReportVatNumber } + * + */ + public void setOut(GraydonCreditReportVatNumber value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonReference.java new file mode 100644 index 0000000..6b70680 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonReference.java @@ -0,0 +1,331 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GraydonReference complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GraydonReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_no" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="house_no_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="residence" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country_iso2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GraydonReference", propOrder = { + +}) +public class GraydonReference { + + @XmlElement(name = "company_id", required = true) + protected String companyId; + @XmlElement(name = "company_id_type", required = true) + protected String companyIdType; + @XmlElement(name = "trade_name", required = true) + protected String tradeName; + @XmlElement(required = true) + protected String street; + @XmlElement(name = "house_no") + protected int houseNo; + @XmlElement(name = "house_no_addition", required = true) + protected String houseNoAddition; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String residence; + @XmlElement(name = "country_iso2", required = true) + protected String countryIso2; + @XmlElement(required = true) + protected String url; + @XmlElement(required = true) + protected String email; + + /** + * Gets the value of the companyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyId() { + return companyId; + } + + /** + * Sets the value of the companyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyId(String value) { + this.companyId = value; + } + + /** + * Gets the value of the companyIdType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyIdType() { + return companyIdType; + } + + /** + * Sets the value of the companyIdType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyIdType(String value) { + this.companyIdType = value; + } + + /** + * Gets the value of the tradeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName() { + return tradeName; + } + + /** + * Sets the value of the tradeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName(String value) { + this.tradeName = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNo property. + * + */ + public int getHouseNo() { + return houseNo; + } + + /** + * Sets the value of the houseNo property. + * + */ + public void setHouseNo(int value) { + this.houseNo = value; + } + + /** + * Gets the value of the houseNoAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNoAddition() { + return houseNoAddition; + } + + /** + * Sets the value of the houseNoAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNoAddition(String value) { + this.houseNoAddition = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the residence property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getResidence() { + return residence; + } + + /** + * Sets the value of the residence property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setResidence(String value) { + this.residence = value; + } + + /** + * Gets the value of the countryIso2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryIso2() { + return countryIso2; + } + + /** + * Sets the value of the countryIso2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryIso2(String value) { + this.countryIso2 = value; + } + + /** + * Gets the value of the url property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUrl() { + return url; + } + + /** + * Sets the value of the url property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUrl(String value) { + this.url = value; + } + + /** + * Gets the value of the email property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmail() { + return email; + } + + /** + * Sets the value of the email property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmail(String value) { + this.email = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonReferenceArray.java new file mode 100644 index 0000000..e2db4d4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for GraydonReferenceArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GraydonReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}GraydonReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GraydonReferenceArray", propOrder = { + "item" +}) +public class GraydonReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link GraydonReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/HeaderAuthenticateType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/HeaderAuthenticateType.java new file mode 100644 index 0000000..8d02e21 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/HeaderAuthenticateType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for HeaderAuthenticateType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="HeaderAuthenticateType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="reactid" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "HeaderAuthenticateType", propOrder = { + +}) +public class HeaderAuthenticateType { + + @XmlElement(required = true) + protected String reactid; + + /** + * Gets the value of the reactid property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReactid() { + return reactid; + } + + /** + * Sets the value of the reactid property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReactid(String value) { + this.reactid = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/HeaderLoginType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/HeaderLoginType.java new file mode 100644 index 0000000..8e9cfa8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/HeaderLoginType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for HeaderLoginType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="HeaderLoginType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="username" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "HeaderLoginType", propOrder = { + +}) +public class HeaderLoginType { + + @XmlElement(required = true) + protected String username; + @XmlElement(required = true) + protected String password; + + /** + * Gets the value of the username property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUsername() { + return username; + } + + /** + * Sets the value of the username property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUsername(String value) { + this.username = value; + } + + /** + * Gets the value of the password property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPassword() { + return password; + } + + /** + * Sets the value of the password property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPassword(String value) { + this.password = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddress.java new file mode 100644 index 0000000..7a08fa0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddress.java @@ -0,0 +1,257 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for InsolvencyAddress complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyAddress">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="start_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyAddress", propOrder = { + +}) +public class InsolvencyAddress { + + protected String street; + @XmlElement(name = "house_number") + protected BigInteger houseNumber; + protected String addition; + protected String postcode; + protected String city; + @XmlElement(name = "phone_number") + protected String phoneNumber; + protected String type; + @XmlElement(name = "start_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar startDate; + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNumber property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setHouseNumber(BigInteger value) { + this.houseNumber = value; + } + + /** + * Gets the value of the addition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddition() { + return addition; + } + + /** + * Sets the value of the addition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddition(String value) { + this.addition = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the phoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPhoneNumber() { + return phoneNumber; + } + + /** + * Sets the value of the phoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPhoneNumber(String value) { + this.phoneNumber = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the startDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStartDate() { + return startDate; + } + + /** + * Sets the value of the startDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStartDate(XMLGregorianCalendar value) { + this.startDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddressArray.java new file mode 100644 index 0000000..d6c10cf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddressArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InsolvencyAddressArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyAddressArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}InsolvencyAddress" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyAddressArray", propOrder = { + "item" +}) +public class InsolvencyAddressArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link InsolvencyAddress } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddresses.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddresses.java new file mode 100644 index 0000000..15575f7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddresses.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InsolvencyAddresses complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyAddresses">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="hidden" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}InsolvencyAddressArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyAddresses", propOrder = { + +}) +public class InsolvencyAddresses { + + protected Boolean hidden; + protected InsolvencyAddressArray address; + + /** + * Gets the value of the hidden property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isHidden() { + return hidden; + } + + /** + * Sets the value of the hidden property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setHidden(Boolean value) { + this.hidden = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link InsolvencyAddressArray } + * + */ + public InsolvencyAddressArray getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link InsolvencyAddressArray } + * + */ + public void setAddress(InsolvencyAddressArray value) { + this.address = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAffectedCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAffectedCompany.java new file mode 100644 index 0000000..ca2eebd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAffectedCompany.java @@ -0,0 +1,176 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InsolvencyAffectedCompany complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyAffectedCompany">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="coc_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="coc_registered_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="addresses" type="{http://www.webservices.nl/soap/}InsolvencyAddresses" minOccurs="0"/>
+ *         <element name="is_former" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyAffectedCompany", propOrder = { + +}) +public class InsolvencyAffectedCompany { + + @XmlElement(name = "trade_name", required = true) + protected String tradeName; + @XmlElement(name = "coc_number") + protected String cocNumber; + @XmlElement(name = "coc_registered_city") + protected String cocRegisteredCity; + protected InsolvencyAddresses addresses; + @XmlElement(name = "is_former") + protected Boolean isFormer; + + /** + * Gets the value of the tradeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName() { + return tradeName; + } + + /** + * Sets the value of the tradeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName(String value) { + this.tradeName = value; + } + + /** + * Gets the value of the cocNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCocNumber() { + return cocNumber; + } + + /** + * Sets the value of the cocNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCocNumber(String value) { + this.cocNumber = value; + } + + /** + * Gets the value of the cocRegisteredCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCocRegisteredCity() { + return cocRegisteredCity; + } + + /** + * Sets the value of the cocRegisteredCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCocRegisteredCity(String value) { + this.cocRegisteredCity = value; + } + + /** + * Gets the value of the addresses property. + * + * @return + * possible object is + * {@link InsolvencyAddresses } + * + */ + public InsolvencyAddresses getAddresses() { + return addresses; + } + + /** + * Sets the value of the addresses property. + * + * @param value + * allowed object is + * {@link InsolvencyAddresses } + * + */ + public void setAddresses(InsolvencyAddresses value) { + this.addresses = value; + } + + /** + * Gets the value of the isFormer property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIsFormer() { + return isFormer; + } + + /** + * Sets the value of the isFormer property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIsFormer(Boolean value) { + this.isFormer = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAffectedCompanyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAffectedCompanyArray.java new file mode 100644 index 0000000..59e3442 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAffectedCompanyArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InsolvencyAffectedCompanyArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyAffectedCompanyArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}InsolvencyAffectedCompany" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyAffectedCompanyArray", propOrder = { + "item" +}) +public class InsolvencyAffectedCompanyArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link InsolvencyAffectedCompany } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCase.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCase.java new file mode 100644 index 0000000..a597b2f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCase.java @@ -0,0 +1,438 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for InsolvencyCase complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyCase">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="insolvency_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="magistrate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="previous_insolvency_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="previous_magistrate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="is_pre_hgk_published" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="pre_hgk_insolvency_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="dept_restructuring_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="removal_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="legal_subject" type="{http://www.webservices.nl/soap/}InsolvencyLegalSubject"/>
+ *         <element name="treating_authority" type="{http://www.webservices.nl/soap/}InsolvencyTreatingAuthority"/>
+ *         <element name="curators" type="{http://www.webservices.nl/soap/}InsolvencyCurators" minOccurs="0"/>
+ *         <element name="receivers" type="{http://www.webservices.nl/soap/}InsolvencyReceivers" minOccurs="0"/>
+ *         <element name="events" type="{http://www.webservices.nl/soap/}InsolvencyPublications"/>
+ *         <element name="reports" type="{http://www.webservices.nl/soap/}InsolvencyReportArray" minOccurs="0"/>
+ *         <element name="affected_companies" type="{http://www.webservices.nl/soap/}InsolvencyAffectedCompanyArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyCase", propOrder = { + +}) +public class InsolvencyCase { + + @XmlElement(name = "insolvency_id", required = true) + protected String insolvencyId; + protected String magistrate; + @XmlElement(name = "previous_insolvency_id") + protected String previousInsolvencyId; + @XmlElement(name = "previous_magistrate") + protected String previousMagistrate; + @XmlElement(name = "is_pre_hgk_published") + protected boolean isPreHgkPublished; + @XmlElement(name = "pre_hgk_insolvency_id") + protected String preHgkInsolvencyId; + @XmlElement(name = "dept_restructuring_number") + protected String deptRestructuringNumber; + @XmlElement(name = "removal_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar removalDate; + @XmlElement(name = "legal_subject", required = true) + protected InsolvencyLegalSubject legalSubject; + @XmlElement(name = "treating_authority", required = true) + protected InsolvencyTreatingAuthority treatingAuthority; + protected InsolvencyCurators curators; + protected InsolvencyReceivers receivers; + @XmlElement(required = true) + protected InsolvencyPublications events; + protected InsolvencyReportArray reports; + @XmlElement(name = "affected_companies") + protected InsolvencyAffectedCompanyArray affectedCompanies; + + /** + * Gets the value of the insolvencyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInsolvencyId() { + return insolvencyId; + } + + /** + * Sets the value of the insolvencyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInsolvencyId(String value) { + this.insolvencyId = value; + } + + /** + * Gets the value of the magistrate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMagistrate() { + return magistrate; + } + + /** + * Sets the value of the magistrate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMagistrate(String value) { + this.magistrate = value; + } + + /** + * Gets the value of the previousInsolvencyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreviousInsolvencyId() { + return previousInsolvencyId; + } + + /** + * Sets the value of the previousInsolvencyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreviousInsolvencyId(String value) { + this.previousInsolvencyId = value; + } + + /** + * Gets the value of the previousMagistrate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreviousMagistrate() { + return previousMagistrate; + } + + /** + * Sets the value of the previousMagistrate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreviousMagistrate(String value) { + this.previousMagistrate = value; + } + + /** + * Gets the value of the isPreHgkPublished property. + * + */ + public boolean isIsPreHgkPublished() { + return isPreHgkPublished; + } + + /** + * Sets the value of the isPreHgkPublished property. + * + */ + public void setIsPreHgkPublished(boolean value) { + this.isPreHgkPublished = value; + } + + /** + * Gets the value of the preHgkInsolvencyId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreHgkInsolvencyId() { + return preHgkInsolvencyId; + } + + /** + * Sets the value of the preHgkInsolvencyId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreHgkInsolvencyId(String value) { + this.preHgkInsolvencyId = value; + } + + /** + * Gets the value of the deptRestructuringNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDeptRestructuringNumber() { + return deptRestructuringNumber; + } + + /** + * Sets the value of the deptRestructuringNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDeptRestructuringNumber(String value) { + this.deptRestructuringNumber = value; + } + + /** + * Gets the value of the removalDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getRemovalDate() { + return removalDate; + } + + /** + * Sets the value of the removalDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setRemovalDate(XMLGregorianCalendar value) { + this.removalDate = value; + } + + /** + * Gets the value of the legalSubject property. + * + * @return + * possible object is + * {@link InsolvencyLegalSubject } + * + */ + public InsolvencyLegalSubject getLegalSubject() { + return legalSubject; + } + + /** + * Sets the value of the legalSubject property. + * + * @param value + * allowed object is + * {@link InsolvencyLegalSubject } + * + */ + public void setLegalSubject(InsolvencyLegalSubject value) { + this.legalSubject = value; + } + + /** + * Gets the value of the treatingAuthority property. + * + * @return + * possible object is + * {@link InsolvencyTreatingAuthority } + * + */ + public InsolvencyTreatingAuthority getTreatingAuthority() { + return treatingAuthority; + } + + /** + * Sets the value of the treatingAuthority property. + * + * @param value + * allowed object is + * {@link InsolvencyTreatingAuthority } + * + */ + public void setTreatingAuthority(InsolvencyTreatingAuthority value) { + this.treatingAuthority = value; + } + + /** + * Gets the value of the curators property. + * + * @return + * possible object is + * {@link InsolvencyCurators } + * + */ + public InsolvencyCurators getCurators() { + return curators; + } + + /** + * Sets the value of the curators property. + * + * @param value + * allowed object is + * {@link InsolvencyCurators } + * + */ + public void setCurators(InsolvencyCurators value) { + this.curators = value; + } + + /** + * Gets the value of the receivers property. + * + * @return + * possible object is + * {@link InsolvencyReceivers } + * + */ + public InsolvencyReceivers getReceivers() { + return receivers; + } + + /** + * Sets the value of the receivers property. + * + * @param value + * allowed object is + * {@link InsolvencyReceivers } + * + */ + public void setReceivers(InsolvencyReceivers value) { + this.receivers = value; + } + + /** + * Gets the value of the events property. + * + * @return + * possible object is + * {@link InsolvencyPublications } + * + */ + public InsolvencyPublications getEvents() { + return events; + } + + /** + * Sets the value of the events property. + * + * @param value + * allowed object is + * {@link InsolvencyPublications } + * + */ + public void setEvents(InsolvencyPublications value) { + this.events = value; + } + + /** + * Gets the value of the reports property. + * + * @return + * possible object is + * {@link InsolvencyReportArray } + * + */ + public InsolvencyReportArray getReports() { + return reports; + } + + /** + * Sets the value of the reports property. + * + * @param value + * allowed object is + * {@link InsolvencyReportArray } + * + */ + public void setReports(InsolvencyReportArray value) { + this.reports = value; + } + + /** + * Gets the value of the affectedCompanies property. + * + * @return + * possible object is + * {@link InsolvencyAffectedCompanyArray } + * + */ + public InsolvencyAffectedCompanyArray getAffectedCompanies() { + return affectedCompanies; + } + + /** + * Sets the value of the affectedCompanies property. + * + * @param value + * allowed object is + * {@link InsolvencyAffectedCompanyArray } + * + */ + public void setAffectedCompanies(InsolvencyAffectedCompanyArray value) { + this.affectedCompanies = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyConcernedPerson.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyConcernedPerson.java new file mode 100644 index 0000000..8c381cc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyConcernedPerson.java @@ -0,0 +1,286 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for InsolvencyConcernedPerson complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyConcernedPerson">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="addresses" type="{http://www.webservices.nl/soap/}InsolvencyAddresses" minOccurs="0"/>
+ *         <element name="birth_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="birth_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="birth_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="deceased_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyConcernedPerson", propOrder = { + +}) +public class InsolvencyConcernedPerson { + + @XmlElement(name = "first_name") + protected String firstName; + protected String initials; + protected String prefix; + @XmlElement(name = "last_name", required = true) + protected String lastName; + protected InsolvencyAddresses addresses; + @XmlElement(name = "birth_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar birthDate; + @XmlElement(name = "birth_city") + protected String birthCity; + @XmlElement(name = "birth_country") + protected String birthCountry; + @XmlElement(name = "deceased_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar deceasedDate; + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the initials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInitials() { + return initials; + } + + /** + * Sets the value of the initials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInitials(String value) { + this.initials = value; + } + + /** + * Gets the value of the prefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrefix() { + return prefix; + } + + /** + * Sets the value of the prefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrefix(String value) { + this.prefix = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the addresses property. + * + * @return + * possible object is + * {@link InsolvencyAddresses } + * + */ + public InsolvencyAddresses getAddresses() { + return addresses; + } + + /** + * Sets the value of the addresses property. + * + * @param value + * allowed object is + * {@link InsolvencyAddresses } + * + */ + public void setAddresses(InsolvencyAddresses value) { + this.addresses = value; + } + + /** + * Gets the value of the birthDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getBirthDate() { + return birthDate; + } + + /** + * Sets the value of the birthDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setBirthDate(XMLGregorianCalendar value) { + this.birthDate = value; + } + + /** + * Gets the value of the birthCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBirthCity() { + return birthCity; + } + + /** + * Sets the value of the birthCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBirthCity(String value) { + this.birthCity = value; + } + + /** + * Gets the value of the birthCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBirthCountry() { + return birthCountry; + } + + /** + * Sets the value of the birthCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBirthCountry(String value) { + this.birthCountry = value; + } + + /** + * Gets the value of the deceasedDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDeceasedDate() { + return deceasedDate; + } + + /** + * Sets the value of the deceasedDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDeceasedDate(XMLGregorianCalendar value) { + this.deceasedDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCourtSession.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCourtSession.java new file mode 100644 index 0000000..16decd1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCourtSession.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InsolvencyCourtSession complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyCourtSession">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyCourtSession", propOrder = { + +}) +public class InsolvencyCourtSession { + + @XmlElement(required = true) + protected String street; + @XmlElement(name = "house_number", required = true) + protected BigInteger houseNumber; + protected String addition; + @XmlElement(required = true) + protected String city; + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNumber property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setHouseNumber(BigInteger value) { + this.houseNumber = value; + } + + /** + * Gets the value of the addition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddition() { + return addition; + } + + /** + * Sets the value of the addition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddition(String value) { + this.addition = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCurators.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCurators.java new file mode 100644 index 0000000..e24a820 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCurators.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InsolvencyCurators complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyCurators">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="curator" type="{http://www.webservices.nl/soap/}InsolvencyLegalPerformingPersonArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyCurators", propOrder = { + +}) +public class InsolvencyCurators { + + @XmlElement(required = true) + protected InsolvencyLegalPerformingPersonArray curator; + + /** + * Gets the value of the curator property. + * + * @return + * possible object is + * {@link InsolvencyLegalPerformingPersonArray } + * + */ + public InsolvencyLegalPerformingPersonArray getCurator() { + return curator; + } + + /** + * Sets the value of the curator property. + * + * @param value + * allowed object is + * {@link InsolvencyLegalPerformingPersonArray } + * + */ + public void setCurator(InsolvencyLegalPerformingPersonArray value) { + this.curator = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyGetCaseByPublicationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyGetCaseByPublicationRequestType.java new file mode 100644 index 0000000..131e978 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyGetCaseByPublicationRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for insolvencyGetCaseByPublicationRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="insolvencyGetCaseByPublicationRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="publication_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "insolvencyGetCaseByPublicationRequestType", propOrder = { + +}) +public class InsolvencyGetCaseByPublicationRequestType { + + @XmlElement(name = "publication_id", required = true) + protected String publicationId; + + /** + * Gets the value of the publicationId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPublicationId() { + return publicationId; + } + + /** + * Sets the value of the publicationId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPublicationId(String value) { + this.publicationId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyGetCaseByPublicationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyGetCaseByPublicationResponseType.java new file mode 100644 index 0000000..cd17d65 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyGetCaseByPublicationResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for insolvencyGetCaseByPublicationResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="insolvencyGetCaseByPublicationResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}InsolvencyCase"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "insolvencyGetCaseByPublicationResponseType", propOrder = { + +}) +public class InsolvencyGetCaseByPublicationResponseType { + + @XmlElement(required = true) + protected InsolvencyCase out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link InsolvencyCase } + * + */ + public InsolvencyCase getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link InsolvencyCase } + * + */ + public void setOut(InsolvencyCase value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalPerformingPerson.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalPerformingPerson.java new file mode 100644 index 0000000..6cadfc7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalPerformingPerson.java @@ -0,0 +1,232 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for InsolvencyLegalPerformingPerson complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyLegalPerformingPerson">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="titles" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_info" type="{http://www.webservices.nl/soap/}InsolvencyAddress"/>
+ *         <element name="start_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="end_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyLegalPerformingPerson", propOrder = { + +}) +public class InsolvencyLegalPerformingPerson { + + protected String titles; + protected String initials; + protected String prefix; + @XmlElement(name = "last_name", required = true) + protected String lastName; + @XmlElement(name = "contact_info", required = true) + protected InsolvencyAddress contactInfo; + @XmlElement(name = "start_date", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar startDate; + @XmlElement(name = "end_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar endDate; + + /** + * Gets the value of the titles property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTitles() { + return titles; + } + + /** + * Sets the value of the titles property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTitles(String value) { + this.titles = value; + } + + /** + * Gets the value of the initials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInitials() { + return initials; + } + + /** + * Sets the value of the initials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInitials(String value) { + this.initials = value; + } + + /** + * Gets the value of the prefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrefix() { + return prefix; + } + + /** + * Sets the value of the prefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrefix(String value) { + this.prefix = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the contactInfo property. + * + * @return + * possible object is + * {@link InsolvencyAddress } + * + */ + public InsolvencyAddress getContactInfo() { + return contactInfo; + } + + /** + * Sets the value of the contactInfo property. + * + * @param value + * allowed object is + * {@link InsolvencyAddress } + * + */ + public void setContactInfo(InsolvencyAddress value) { + this.contactInfo = value; + } + + /** + * Gets the value of the startDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getStartDate() { + return startDate; + } + + /** + * Sets the value of the startDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setStartDate(XMLGregorianCalendar value) { + this.startDate = value; + } + + /** + * Gets the value of the endDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEndDate() { + return endDate; + } + + /** + * Sets the value of the endDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEndDate(XMLGregorianCalendar value) { + this.endDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalPerformingPersonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalPerformingPersonArray.java new file mode 100644 index 0000000..1bb372c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalPerformingPersonArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InsolvencyLegalPerformingPersonArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyLegalPerformingPersonArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}InsolvencyLegalPerformingPerson" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyLegalPerformingPersonArray", propOrder = { + "item" +}) +public class InsolvencyLegalPerformingPersonArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link InsolvencyLegalPerformingPerson } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalSubject.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalSubject.java new file mode 100644 index 0000000..7122077 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalSubject.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InsolvencyLegalSubject complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyLegalSubject">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="natural_person" type="{http://www.webservices.nl/soap/}InsolvencyConcernedPerson" minOccurs="0"/>
+ *         <element name="legal_entity" type="{http://www.webservices.nl/soap/}InsolvencyAffectedCompany" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyLegalSubject", propOrder = { + +}) +public class InsolvencyLegalSubject { + + @XmlElement(name = "natural_person") + protected InsolvencyConcernedPerson naturalPerson; + @XmlElement(name = "legal_entity") + protected InsolvencyAffectedCompany legalEntity; + + /** + * Gets the value of the naturalPerson property. + * + * @return + * possible object is + * {@link InsolvencyConcernedPerson } + * + */ + public InsolvencyConcernedPerson getNaturalPerson() { + return naturalPerson; + } + + /** + * Sets the value of the naturalPerson property. + * + * @param value + * allowed object is + * {@link InsolvencyConcernedPerson } + * + */ + public void setNaturalPerson(InsolvencyConcernedPerson value) { + this.naturalPerson = value; + } + + /** + * Gets the value of the legalEntity property. + * + * @return + * possible object is + * {@link InsolvencyAffectedCompany } + * + */ + public InsolvencyAffectedCompany getLegalEntity() { + return legalEntity; + } + + /** + * Sets the value of the legalEntity property. + * + * @param value + * allowed object is + * {@link InsolvencyAffectedCompany } + * + */ + public void setLegalEntity(InsolvencyAffectedCompany value) { + this.legalEntity = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublication.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublication.java new file mode 100644 index 0000000..87bd3ed --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublication.java @@ -0,0 +1,208 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for InsolvencyPublication complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyPublication">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="publication_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="authority_code" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="court_session" type="{http://www.webservices.nl/soap/}InsolvencyCourtSession" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyPublication", propOrder = { + +}) +public class InsolvencyPublication { + + @XmlElement(name = "publication_id", required = true) + protected String publicationId; + @XmlElement(required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar date; + @XmlElement(required = true) + protected String description; + @XmlElement(required = true) + protected String code; + @XmlElement(name = "authority_code", required = true) + protected BigInteger authorityCode; + @XmlElement(name = "court_session") + protected InsolvencyCourtSession courtSession; + + /** + * Gets the value of the publicationId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPublicationId() { + return publicationId; + } + + /** + * Sets the value of the publicationId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPublicationId(String value) { + this.publicationId = value; + } + + /** + * Gets the value of the date property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDate() { + return date; + } + + /** + * Sets the value of the date property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDate(XMLGregorianCalendar value) { + this.date = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCode(String value) { + this.code = value; + } + + /** + * Gets the value of the authorityCode property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getAuthorityCode() { + return authorityCode; + } + + /** + * Sets the value of the authorityCode property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setAuthorityCode(BigInteger value) { + this.authorityCode = value; + } + + /** + * Gets the value of the courtSession property. + * + * @return + * possible object is + * {@link InsolvencyCourtSession } + * + */ + public InsolvencyCourtSession getCourtSession() { + return courtSession; + } + + /** + * Sets the value of the courtSession property. + * + * @param value + * allowed object is + * {@link InsolvencyCourtSession } + * + */ + public void setCourtSession(InsolvencyCourtSession value) { + this.courtSession = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublicationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublicationArray.java new file mode 100644 index 0000000..fc94ad6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublicationArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InsolvencyPublicationArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyPublicationArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}InsolvencyPublication" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyPublicationArray", propOrder = { + "item" +}) +public class InsolvencyPublicationArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link InsolvencyPublication } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublicationList.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublicationList.java new file mode 100644 index 0000000..74c74bc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublicationList.java @@ -0,0 +1,99 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for InsolvencyPublicationList complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyPublicationList">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="publications" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyPublicationList", propOrder = { + +}) +public class InsolvencyPublicationList { + + @XmlElement(required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar date; + @XmlElement(required = true) + protected StringArray publications; + + /** + * Gets the value of the date property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDate() { + return date; + } + + /** + * Sets the value of the date property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDate(XMLGregorianCalendar value) { + this.date = value; + } + + /** + * Gets the value of the publications property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getPublications() { + return publications; + } + + /** + * Sets the value of the publications property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setPublications(StringArray value) { + this.publications = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublications.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublications.java new file mode 100644 index 0000000..7e14311 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublications.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InsolvencyPublications complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyPublications">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="is_legacy" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="event" type="{http://www.webservices.nl/soap/}InsolvencyPublicationArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyPublications", propOrder = { + +}) +public class InsolvencyPublications { + + @XmlElement(name = "is_legacy") + protected boolean isLegacy; + @XmlElement(required = true) + protected InsolvencyPublicationArray event; + + /** + * Gets the value of the isLegacy property. + * + */ + public boolean isIsLegacy() { + return isLegacy; + } + + /** + * Sets the value of the isLegacy property. + * + */ + public void setIsLegacy(boolean value) { + this.isLegacy = value; + } + + /** + * Gets the value of the event property. + * + * @return + * possible object is + * {@link InsolvencyPublicationArray } + * + */ + public InsolvencyPublicationArray getEvent() { + return event; + } + + /** + * Sets the value of the event property. + * + * @param value + * allowed object is + * {@link InsolvencyPublicationArray } + * + */ + public void setEvent(InsolvencyPublicationArray value) { + this.event = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReceivers.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReceivers.java new file mode 100644 index 0000000..ae60ea5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReceivers.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InsolvencyReceivers complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyReceivers">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="receiver" type="{http://www.webservices.nl/soap/}InsolvencyLegalPerformingPersonArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyReceivers", propOrder = { + +}) +public class InsolvencyReceivers { + + @XmlElement(required = true) + protected InsolvencyLegalPerformingPersonArray receiver; + + /** + * Gets the value of the receiver property. + * + * @return + * possible object is + * {@link InsolvencyLegalPerformingPersonArray } + * + */ + public InsolvencyLegalPerformingPersonArray getReceiver() { + return receiver; + } + + /** + * Sets the value of the receiver property. + * + * @param value + * allowed object is + * {@link InsolvencyLegalPerformingPersonArray } + * + */ + public void setReceiver(InsolvencyLegalPerformingPersonArray value) { + this.receiver = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReport.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReport.java new file mode 100644 index 0000000..e557225 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReport.java @@ -0,0 +1,145 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for InsolvencyReport complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyReport">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="report_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="is_final" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyReport", propOrder = { + +}) +public class InsolvencyReport { + + @XmlElement(name = "report_id", required = true) + protected String reportId; + @XmlElement(required = true) + protected String title; + @XmlElement(required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar date; + @XmlElement(name = "is_final") + protected boolean isFinal; + + /** + * Gets the value of the reportId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReportId() { + return reportId; + } + + /** + * Sets the value of the reportId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReportId(String value) { + this.reportId = value; + } + + /** + * Gets the value of the title property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTitle() { + return title; + } + + /** + * Sets the value of the title property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTitle(String value) { + this.title = value; + } + + /** + * Gets the value of the date property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDate() { + return date; + } + + /** + * Sets the value of the date property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDate(XMLGregorianCalendar value) { + this.date = value; + } + + /** + * Gets the value of the isFinal property. + * + */ + public boolean isIsFinal() { + return isFinal; + } + + /** + * Sets the value of the isFinal property. + * + */ + public void setIsFinal(boolean value) { + this.isFinal = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReportArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReportArray.java new file mode 100644 index 0000000..71c709f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReportArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InsolvencyReportArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyReportArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}InsolvencyReport" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyReportArray", propOrder = { + "item" +}) +public class InsolvencyReportArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link InsolvencyReport } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByCoCNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByCoCNumberRequestType.java new file mode 100644 index 0000000..a464567 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByCoCNumberRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for insolvencySearchPublicationsByCoCNumberRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="insolvencySearchPublicationsByCoCNumberRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="coc_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "insolvencySearchPublicationsByCoCNumberRequestType", propOrder = { + +}) +public class InsolvencySearchPublicationsByCoCNumberRequestType { + + @XmlElement(name = "coc_number", required = true) + protected String cocNumber; + + /** + * Gets the value of the cocNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCocNumber() { + return cocNumber; + } + + /** + * Sets the value of the cocNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCocNumber(String value) { + this.cocNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByCoCNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByCoCNumberResponseType.java new file mode 100644 index 0000000..d28fd9b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByCoCNumberResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for insolvencySearchPublicationsByCoCNumberResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="insolvencySearchPublicationsByCoCNumberResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}InsolvencyPublicationList"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "insolvencySearchPublicationsByCoCNumberResponseType", propOrder = { + +}) +public class InsolvencySearchPublicationsByCoCNumberResponseType { + + @XmlElement(required = true) + protected InsolvencyPublicationList out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link InsolvencyPublicationList } + * + */ + public InsolvencyPublicationList getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link InsolvencyPublicationList } + * + */ + public void setOut(InsolvencyPublicationList value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByPersonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByPersonRequestType.java new file mode 100644 index 0000000..5aa66b4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByPersonRequestType.java @@ -0,0 +1,172 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for insolvencySearchPublicationsByPersonRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="insolvencySearchPublicationsByPersonRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="birth_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "insolvencySearchPublicationsByPersonRequestType", propOrder = { + +}) +public class InsolvencySearchPublicationsByPersonRequestType { + + @XmlElement(name = "last_name", required = true) + protected String lastName; + @XmlElement(required = true) + protected String prefix; + @XmlElement(name = "birth_date", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar birthDate; + @XmlElement(required = true) + protected String postcode; + @XmlElement(name = "house_number") + protected int houseNumber; + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the prefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrefix() { + return prefix; + } + + /** + * Sets the value of the prefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrefix(String value) { + this.prefix = value; + } + + /** + * Gets the value of the birthDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getBirthDate() { + return birthDate; + } + + /** + * Sets the value of the birthDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setBirthDate(XMLGregorianCalendar value) { + this.birthDate = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the houseNumber property. + * + */ + public int getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + */ + public void setHouseNumber(int value) { + this.houseNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByPersonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByPersonResponseType.java new file mode 100644 index 0000000..0c8eb75 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByPersonResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for insolvencySearchPublicationsByPersonResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="insolvencySearchPublicationsByPersonResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}InsolvencyPublicationList"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "insolvencySearchPublicationsByPersonResponseType", propOrder = { + +}) +public class InsolvencySearchPublicationsByPersonResponseType { + + @XmlElement(required = true) + protected InsolvencyPublicationList out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link InsolvencyPublicationList } + * + */ + public InsolvencyPublicationList getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link InsolvencyPublicationList } + * + */ + public void setOut(InsolvencyPublicationList value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyTreatingAuthority.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyTreatingAuthority.java new file mode 100644 index 0000000..eb120c3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyTreatingAuthority.java @@ -0,0 +1,151 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InsolvencyTreatingAuthority complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InsolvencyTreatingAuthority">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_code" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="establishment_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InsolvencyTreatingAuthority", propOrder = { + +}) +public class InsolvencyTreatingAuthority { + + @XmlElement(required = true) + protected BigInteger code; + @XmlElement(required = true) + protected String name; + @XmlElement(name = "establishment_code", required = true) + protected BigInteger establishmentCode; + @XmlElement(name = "establishment_name", required = true) + protected String establishmentName; + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setCode(BigInteger value) { + this.code = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the establishmentCode property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getEstablishmentCode() { + return establishmentCode; + } + + /** + * Sets the value of the establishmentCode property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setEstablishmentCode(BigInteger value) { + this.establishmentCode = value; + } + + /** + * Gets the value of the establishmentName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentName() { + return establishmentName; + } + + /** + * Sets the value of the establishmentName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentName(String value) { + this.establishmentName = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/IntArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/IntArray.java new file mode 100644 index 0000000..78e83ec --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/IntArray.java @@ -0,0 +1,76 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for intArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="intArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "intArray", propOrder = { + "item" +}) +public class IntArray { + + @XmlElement(type = Integer.class) + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Integer } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/International.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/International.java new file mode 100644 index 0000000..3988ef8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/International.java @@ -0,0 +1,249 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for International complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="International">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="matchrate" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="housenr" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="pobox" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="locality" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "International", propOrder = { + +}) +public class International { + + protected float matchrate; + @XmlElement(required = true) + protected String street; + @XmlElement(required = true) + protected String housenr; + @XmlElement(required = true) + protected String pobox; + @XmlElement(required = true) + protected String locality; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String province; + @XmlElement(required = true) + protected String country; + + /** + * Gets the value of the matchrate property. + * + */ + public float getMatchrate() { + return matchrate; + } + + /** + * Sets the value of the matchrate property. + * + */ + public void setMatchrate(float value) { + this.matchrate = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the housenr property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHousenr() { + return housenr; + } + + /** + * Sets the value of the housenr property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHousenr(String value) { + this.housenr = value; + } + + /** + * Gets the value of the pobox property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPobox() { + return pobox; + } + + /** + * Sets the value of the pobox property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPobox(String value) { + this.pobox = value; + } + + /** + * Gets the value of the locality property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLocality() { + return locality; + } + + /** + * Sets the value of the locality property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLocality(String value) { + this.locality = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchInteractiveRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchInteractiveRequestType.java new file mode 100644 index 0000000..bcc2a45 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchInteractiveRequestType.java @@ -0,0 +1,339 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for internationalAddressSearchInteractiveRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="internationalAddressSearchInteractiveRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="organization" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="building" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="housenr" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="pobox" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="locality" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country_format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "internationalAddressSearchInteractiveRequestType", propOrder = { + +}) +public class InternationalAddressSearchInteractiveRequestType { + + @XmlElement(required = true) + protected String organization; + @XmlElement(required = true) + protected String building; + @XmlElement(required = true) + protected String street; + @XmlElement(required = true) + protected String housenr; + @XmlElement(required = true) + protected String pobox; + @XmlElement(required = true) + protected String locality; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String province; + @XmlElement(required = true) + protected String country; + @XmlElement(required = true) + protected String language; + @XmlElement(name = "country_format", required = true) + protected String countryFormat; + + /** + * Gets the value of the organization property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOrganization() { + return organization; + } + + /** + * Sets the value of the organization property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOrganization(String value) { + this.organization = value; + } + + /** + * Gets the value of the building property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBuilding() { + return building; + } + + /** + * Sets the value of the building property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBuilding(String value) { + this.building = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the housenr property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHousenr() { + return housenr; + } + + /** + * Sets the value of the housenr property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHousenr(String value) { + this.housenr = value; + } + + /** + * Gets the value of the pobox property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPobox() { + return pobox; + } + + /** + * Sets the value of the pobox property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPobox(String value) { + this.pobox = value; + } + + /** + * Gets the value of the locality property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLocality() { + return locality; + } + + /** + * Sets the value of the locality property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLocality(String value) { + this.locality = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the language property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLanguage() { + return language; + } + + /** + * Sets the value of the language property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLanguage(String value) { + this.language = value; + } + + /** + * Gets the value of the countryFormat property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryFormat() { + return countryFormat; + } + + /** + * Sets the value of the countryFormat property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryFormat(String value) { + this.countryFormat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchInteractiveResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchInteractiveResponseType.java new file mode 100644 index 0000000..ae5b924 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchInteractiveResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for internationalAddressSearchInteractiveResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="internationalAddressSearchInteractiveResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}InternationalAddressSearchV2Result"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "internationalAddressSearchInteractiveResponseType", propOrder = { + +}) +public class InternationalAddressSearchInteractiveResponseType { + + @XmlElement(required = true) + protected InternationalAddressSearchV2Result out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link InternationalAddressSearchV2Result } + * + */ + public InternationalAddressSearchV2Result getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link InternationalAddressSearchV2Result } + * + */ + public void setOut(InternationalAddressSearchV2Result value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2RequestType.java new file mode 100644 index 0000000..9b0c088 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2RequestType.java @@ -0,0 +1,339 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for internationalAddressSearchV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="internationalAddressSearchV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="organization" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="building" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="housenr" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="pobox" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="locality" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country_format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "internationalAddressSearchV2RequestType", propOrder = { + +}) +public class InternationalAddressSearchV2RequestType { + + @XmlElement(required = true) + protected String organization; + @XmlElement(required = true) + protected String building; + @XmlElement(required = true) + protected String street; + @XmlElement(required = true) + protected String housenr; + @XmlElement(required = true) + protected String pobox; + @XmlElement(required = true) + protected String locality; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String province; + @XmlElement(required = true) + protected String country; + @XmlElement(required = true) + protected String language; + @XmlElement(name = "country_format", required = true) + protected String countryFormat; + + /** + * Gets the value of the organization property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOrganization() { + return organization; + } + + /** + * Sets the value of the organization property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOrganization(String value) { + this.organization = value; + } + + /** + * Gets the value of the building property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBuilding() { + return building; + } + + /** + * Sets the value of the building property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBuilding(String value) { + this.building = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the housenr property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHousenr() { + return housenr; + } + + /** + * Sets the value of the housenr property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHousenr(String value) { + this.housenr = value; + } + + /** + * Gets the value of the pobox property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPobox() { + return pobox; + } + + /** + * Sets the value of the pobox property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPobox(String value) { + this.pobox = value; + } + + /** + * Gets the value of the locality property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLocality() { + return locality; + } + + /** + * Sets the value of the locality property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLocality(String value) { + this.locality = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the language property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLanguage() { + return language; + } + + /** + * Sets the value of the language property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLanguage(String value) { + this.language = value; + } + + /** + * Gets the value of the countryFormat property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryFormat() { + return countryFormat; + } + + /** + * Sets the value of the countryFormat property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryFormat(String value) { + this.countryFormat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2ResponseType.java new file mode 100644 index 0000000..5f43a51 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for internationalAddressSearchV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="internationalAddressSearchV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}InternationalAddressSearchV2Result"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "internationalAddressSearchV2ResponseType", propOrder = { + +}) +public class InternationalAddressSearchV2ResponseType { + + @XmlElement(required = true) + protected InternationalAddressSearchV2Result out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link InternationalAddressSearchV2Result } + * + */ + public InternationalAddressSearchV2Result getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link InternationalAddressSearchV2Result } + * + */ + public void setOut(InternationalAddressSearchV2Result value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2Result.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2Result.java new file mode 100644 index 0000000..bd04881 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2Result.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InternationalAddressSearchV2Result complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InternationalAddressSearchV2Result">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="validation_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="result" type="{http://www.webservices.nl/soap/}InternationalV2Array"/>
+ *         <element name="country_iso3" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InternationalAddressSearchV2Result", propOrder = { + +}) +public class InternationalAddressSearchV2Result { + + @XmlElement(name = "validation_status", required = true) + protected String validationStatus; + @XmlElement(required = true) + protected InternationalV2Array result; + @XmlElement(name = "country_iso3", required = true) + protected String countryIso3; + + /** + * Gets the value of the validationStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValidationStatus() { + return validationStatus; + } + + /** + * Sets the value of the validationStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValidationStatus(String value) { + this.validationStatus = value; + } + + /** + * Gets the value of the result property. + * + * @return + * possible object is + * {@link InternationalV2Array } + * + */ + public InternationalV2Array getResult() { + return result; + } + + /** + * Sets the value of the result property. + * + * @param value + * allowed object is + * {@link InternationalV2Array } + * + */ + public void setResult(InternationalV2Array value) { + this.result = value; + } + + /** + * Gets the value of the countryIso3 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryIso3() { + return countryIso3; + } + + /** + * Sets the value of the countryIso3 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryIso3(String value) { + this.countryIso3 = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalArray.java new file mode 100644 index 0000000..7c61d24 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InternationalArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InternationalArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}International" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InternationalArray", propOrder = { + "item" +}) +public class InternationalArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link International } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddress.java new file mode 100644 index 0000000..addcaa7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddress.java @@ -0,0 +1,438 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InternationalFormattedAddress complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InternationalFormattedAddress">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="matchrate" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="housenr" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="pobox" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="locality" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="countryspecific_locality" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="delivery_address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="formatted_address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="organization" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="department" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="building" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InternationalFormattedAddress", propOrder = { + +}) +public class InternationalFormattedAddress { + + protected float matchrate; + @XmlElement(required = true) + protected String street; + @XmlElement(required = true) + protected String housenr; + @XmlElement(required = true) + protected String pobox; + @XmlElement(required = true) + protected String locality; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String province; + @XmlElement(required = true) + protected String country; + @XmlElement(name = "countryspecific_locality", required = true) + protected String countryspecificLocality; + @XmlElement(name = "delivery_address", required = true) + protected String deliveryAddress; + @XmlElement(name = "formatted_address", required = true) + protected String formattedAddress; + @XmlElement(required = true) + protected String organization; + @XmlElement(required = true) + protected String department; + @XmlElement(required = true) + protected String contact; + @XmlElement(required = true) + protected String building; + + /** + * Gets the value of the matchrate property. + * + */ + public float getMatchrate() { + return matchrate; + } + + /** + * Sets the value of the matchrate property. + * + */ + public void setMatchrate(float value) { + this.matchrate = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the housenr property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHousenr() { + return housenr; + } + + /** + * Sets the value of the housenr property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHousenr(String value) { + this.housenr = value; + } + + /** + * Gets the value of the pobox property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPobox() { + return pobox; + } + + /** + * Sets the value of the pobox property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPobox(String value) { + this.pobox = value; + } + + /** + * Gets the value of the locality property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLocality() { + return locality; + } + + /** + * Sets the value of the locality property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLocality(String value) { + this.locality = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the countryspecificLocality property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryspecificLocality() { + return countryspecificLocality; + } + + /** + * Sets the value of the countryspecificLocality property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryspecificLocality(String value) { + this.countryspecificLocality = value; + } + + /** + * Gets the value of the deliveryAddress property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDeliveryAddress() { + return deliveryAddress; + } + + /** + * Sets the value of the deliveryAddress property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDeliveryAddress(String value) { + this.deliveryAddress = value; + } + + /** + * Gets the value of the formattedAddress property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormattedAddress() { + return formattedAddress; + } + + /** + * Sets the value of the formattedAddress property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormattedAddress(String value) { + this.formattedAddress = value; + } + + /** + * Gets the value of the organization property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOrganization() { + return organization; + } + + /** + * Sets the value of the organization property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOrganization(String value) { + this.organization = value; + } + + /** + * Gets the value of the department property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDepartment() { + return department; + } + + /** + * Sets the value of the department property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDepartment(String value) { + this.department = value; + } + + /** + * Gets the value of the contact property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContact() { + return contact; + } + + /** + * Sets the value of the contact property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContact(String value) { + this.contact = value; + } + + /** + * Gets the value of the building property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBuilding() { + return building; + } + + /** + * Sets the value of the building property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBuilding(String value) { + this.building = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddressArray.java new file mode 100644 index 0000000..cc6a39c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddressArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InternationalFormattedAddressArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InternationalFormattedAddressArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}InternationalFormattedAddress" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InternationalFormattedAddressArray", propOrder = { + "item" +}) +public class InternationalFormattedAddressArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link InternationalFormattedAddress } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddressPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddressPagedResult.java new file mode 100644 index 0000000..540e177 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddressPagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InternationalFormattedAddressPagedResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InternationalFormattedAddressPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}InternationalFormattedAddressArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InternationalFormattedAddressPagedResult", propOrder = { + +}) +public class InternationalFormattedAddressPagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected InternationalFormattedAddressArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link InternationalFormattedAddressArray } + * + */ + public InternationalFormattedAddressArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link InternationalFormattedAddressArray } + * + */ + public void setResults(InternationalFormattedAddressArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalPagedResult.java new file mode 100644 index 0000000..7dff45d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalPagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InternationalPagedResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InternationalPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}InternationalArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InternationalPagedResult", propOrder = { + +}) +public class InternationalPagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected InternationalArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link InternationalArray } + * + */ + public InternationalArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link InternationalArray } + * + */ + public void setResults(InternationalArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalV2.java new file mode 100644 index 0000000..e025689 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalV2.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InternationalV2 complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InternationalV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}InternationalFormattedAddress"/>
+ *         <element name="element_match_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="element_result_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InternationalV2", propOrder = { + +}) +public class InternationalV2 { + + @XmlElement(required = true) + protected InternationalFormattedAddress address; + @XmlElement(name = "element_match_status", required = true) + protected String elementMatchStatus; + @XmlElement(name = "element_result_status", required = true) + protected String elementResultStatus; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link InternationalFormattedAddress } + * + */ + public InternationalFormattedAddress getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link InternationalFormattedAddress } + * + */ + public void setAddress(InternationalFormattedAddress value) { + this.address = value; + } + + /** + * Gets the value of the elementMatchStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getElementMatchStatus() { + return elementMatchStatus; + } + + /** + * Sets the value of the elementMatchStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setElementMatchStatus(String value) { + this.elementMatchStatus = value; + } + + /** + * Gets the value of the elementResultStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getElementResultStatus() { + return elementResultStatus; + } + + /** + * Sets the value of the elementResultStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setElementResultStatus(String value) { + this.elementResultStatus = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalV2Array.java new file mode 100644 index 0000000..1aceb95 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for InternationalV2Array complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="InternationalV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}InternationalV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "InternationalV2Array", propOrder = { + "item" +}) +public class InternationalV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link InternationalV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterAddressCoordinatesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterAddressCoordinatesRequestType.java new file mode 100644 index 0000000..2e61a46 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterAddressCoordinatesRequestType.java @@ -0,0 +1,168 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterAddressCoordinatesRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterAddressCoordinatesRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="housenoaddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterAddressCoordinatesRequestType", propOrder = { + +}) +public class KadasterAddressCoordinatesRequestType { + + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String street; + protected int houseno; + @XmlElement(required = true) + protected String housenoaddition; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseno property. + * + */ + public int getHouseno() { + return houseno; + } + + /** + * Sets the value of the houseno property. + * + */ + public void setHouseno(int value) { + this.houseno = value; + } + + /** + * Gets the value of the housenoaddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHousenoaddition() { + return housenoaddition; + } + + /** + * Sets the value of the housenoaddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHousenoaddition(String value) { + this.housenoaddition = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterAddressCoordinatesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterAddressCoordinatesResponseType.java new file mode 100644 index 0000000..5a8848e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterAddressCoordinatesResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterAddressCoordinatesResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterAddressCoordinatesResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="coordinates" type="{http://www.webservices.nl/soap/}KadasterCoordinates"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterAddressCoordinatesResponseType", propOrder = { + +}) +public class KadasterAddressCoordinatesResponseType { + + @XmlElement(required = true) + protected KadasterCoordinates coordinates; + + /** + * Gets the value of the coordinates property. + * + * @return + * possible object is + * {@link KadasterCoordinates } + * + */ + public KadasterCoordinates getCoordinates() { + return coordinates; + } + + /** + * Sets the value of the coordinates property. + * + * @param value + * allowed object is + * {@link KadasterCoordinates } + * + */ + public void setCoordinates(KadasterCoordinates value) { + this.coordinates = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBedrag.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBedrag.java new file mode 100644 index 0000000..61487d1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBedrag.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterBedrag complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterBedrag">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="valuta" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="bedrag" type="{http://www.w3.org/2001/XMLSchema}long"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterBedrag", propOrder = { + +}) +public class KadasterBedrag { + + @XmlElement(required = true) + protected String valuta; + protected long bedrag; + + /** + * Gets the value of the valuta property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValuta() { + return valuta; + } + + /** + * Sets the value of the valuta property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValuta(String value) { + this.valuta = value; + } + + /** + * Gets the value of the bedrag property. + * + */ + public long getBedrag() { + return bedrag; + } + + /** + * Sets the value of the bedrag property. + * + */ + public void setBedrag(long value) { + this.bedrag = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBeknoptOnroerendeZaak.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBeknoptOnroerendeZaak.java new file mode 100644 index 0000000..f55a01b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBeknoptOnroerendeZaak.java @@ -0,0 +1,284 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigDecimal; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterBeknoptOnroerendeZaak complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterBeknoptOnroerendeZaak">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="kadastrale_aanduiding" type="{http://www.webservices.nl/soap/}KadastraleAanduiding"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="voorlopige_aantekening" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="meerdere_splitsingen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="gerechtigde" type="{http://www.webservices.nl/soap/}kadasterPersoon" minOccurs="0"/>
+ *         <element name="onverwerkte_documenten" type="{http://www.webservices.nl/soap/}kadasterHypotheekStukLijst" minOccurs="0"/>
+ *         <element name="grootte" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
+ *         <element name="vastgestelde_grootte" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterBeknoptOnroerendeZaak", propOrder = { + +}) +public class KadasterBeknoptOnroerendeZaak { + + @XmlElement(name = "object_id", required = true) + protected String objectId; + @XmlElement(name = "kadastrale_aanduiding", required = true) + protected KadastraleAanduiding kadastraleAanduiding; + @XmlElement(required = true) + protected String type; + @XmlElement(name = "voorlopige_aantekening") + protected Boolean voorlopigeAantekening; + @XmlElement(name = "meerdere_splitsingen") + protected Boolean meerdereSplitsingen; + protected KadasterPersoon gerechtigde; + @XmlElement(name = "onverwerkte_documenten") + protected KadasterHypotheekStukLijst onverwerkteDocumenten; + protected BigDecimal grootte; + @XmlElement(name = "vastgestelde_grootte") + protected Boolean vastgesteldeGrootte; + + /** + * Gets the value of the objectId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjectId() { + return objectId; + } + + /** + * Sets the value of the objectId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjectId(String value) { + this.objectId = value; + } + + /** + * Gets the value of the kadastraleAanduiding property. + * + * @return + * possible object is + * {@link KadastraleAanduiding } + * + */ + public KadastraleAanduiding getKadastraleAanduiding() { + return kadastraleAanduiding; + } + + /** + * Sets the value of the kadastraleAanduiding property. + * + * @param value + * allowed object is + * {@link KadastraleAanduiding } + * + */ + public void setKadastraleAanduiding(KadastraleAanduiding value) { + this.kadastraleAanduiding = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the voorlopigeAantekening property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isVoorlopigeAantekening() { + return voorlopigeAantekening; + } + + /** + * Sets the value of the voorlopigeAantekening property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setVoorlopigeAantekening(Boolean value) { + this.voorlopigeAantekening = value; + } + + /** + * Gets the value of the meerdereSplitsingen property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isMeerdereSplitsingen() { + return meerdereSplitsingen; + } + + /** + * Sets the value of the meerdereSplitsingen property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setMeerdereSplitsingen(Boolean value) { + this.meerdereSplitsingen = value; + } + + /** + * Gets the value of the gerechtigde property. + * + * @return + * possible object is + * {@link KadasterPersoon } + * + */ + public KadasterPersoon getGerechtigde() { + return gerechtigde; + } + + /** + * Sets the value of the gerechtigde property. + * + * @param value + * allowed object is + * {@link KadasterPersoon } + * + */ + public void setGerechtigde(KadasterPersoon value) { + this.gerechtigde = value; + } + + /** + * Gets the value of the onverwerkteDocumenten property. + * + * @return + * possible object is + * {@link KadasterHypotheekStukLijst } + * + */ + public KadasterHypotheekStukLijst getOnverwerkteDocumenten() { + return onverwerkteDocumenten; + } + + /** + * Sets the value of the onverwerkteDocumenten property. + * + * @param value + * allowed object is + * {@link KadasterHypotheekStukLijst } + * + */ + public void setOnverwerkteDocumenten(KadasterHypotheekStukLijst value) { + this.onverwerkteDocumenten = value; + } + + /** + * Gets the value of the grootte property. + * + * @return + * possible object is + * {@link BigDecimal } + * + */ + public BigDecimal getGrootte() { + return grootte; + } + + /** + * Sets the value of the grootte property. + * + * @param value + * allowed object is + * {@link BigDecimal } + * + */ + public void setGrootte(BigDecimal value) { + this.grootte = value; + } + + /** + * Gets the value of the vastgesteldeGrootte property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isVastgesteldeGrootte() { + return vastgesteldeGrootte; + } + + /** + * Sets the value of the vastgesteldeGrootte property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setVastgesteldeGrootte(Boolean value) { + this.vastgesteldeGrootte = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBeknoptOnroerendeZaakArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBeknoptOnroerendeZaakArray.java new file mode 100644 index 0000000..d5ce7ff --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBeknoptOnroerendeZaakArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterBeknoptOnroerendeZaakArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterBeknoptOnroerendeZaakArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterBeknoptOnroerendeZaak" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterBeknoptOnroerendeZaakArray", propOrder = { + "item" +}) +public class KadasterBeknoptOnroerendeZaakArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterBeknoptOnroerendeZaak } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBerichtObjectDocument.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBerichtObjectDocument.java new file mode 100644 index 0000000..168345e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBerichtObjectDocument.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterBerichtObjectDocument complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterBerichtObjectDocument">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *         <element name="afbeeldingen" type="{http://www.webservices.nl/soap/}base64BinaryArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterBerichtObjectDocument", propOrder = { + +}) +public class KadasterBerichtObjectDocument { + + @XmlElement(required = true) + protected byte[] document; + protected Base64BinaryArray afbeeldingen; + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + + /** + * Gets the value of the afbeeldingen property. + * + * @return + * possible object is + * {@link Base64BinaryArray } + * + */ + public Base64BinaryArray getAfbeeldingen() { + return afbeeldingen; + } + + /** + * Sets the value of the afbeeldingen property. + * + * @param value + * allowed object is + * {@link Base64BinaryArray } + * + */ + public void setAfbeeldingen(Base64BinaryArray value) { + this.afbeeldingen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocument.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocument.java new file mode 100644 index 0000000..fdb4280 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocument.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterBronDocument complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterBronDocument">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *         <element name="images" type="{http://www.webservices.nl/soap/}base64BinaryArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterBronDocument", propOrder = { + +}) +public class KadasterBronDocument { + + @XmlElement(required = true) + protected byte[] document; + protected Base64BinaryArray images; + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + + /** + * Gets the value of the images property. + * + * @return + * possible object is + * {@link Base64BinaryArray } + * + */ + public Base64BinaryArray getImages() { + return images; + } + + /** + * Sets the value of the images property. + * + * @param value + * allowed object is + * {@link Base64BinaryArray } + * + */ + public void setImages(Base64BinaryArray value) { + this.images = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocumentRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocumentRequestType.java new file mode 100644 index 0000000..af348d4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocumentRequestType.java @@ -0,0 +1,177 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterBronDocumentRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterBronDocumentRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="aanduiding_soort_register" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="deel" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="nummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="reeks" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterBronDocumentRequestType", propOrder = { + +}) +public class KadasterBronDocumentRequestType { + + @XmlElement(name = "aanduiding_soort_register", required = true) + protected String aanduidingSoortRegister; + @XmlElement(required = true) + protected String deel; + @XmlElement(required = true) + protected String nummer; + @XmlElement(required = true) + protected String reeks; + @XmlElement(required = true) + protected String format; + + /** + * Gets the value of the aanduidingSoortRegister property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAanduidingSoortRegister() { + return aanduidingSoortRegister; + } + + /** + * Sets the value of the aanduidingSoortRegister property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAanduidingSoortRegister(String value) { + this.aanduidingSoortRegister = value; + } + + /** + * Gets the value of the deel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDeel() { + return deel; + } + + /** + * Sets the value of the deel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDeel(String value) { + this.deel = value; + } + + /** + * Gets the value of the nummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNummer() { + return nummer; + } + + /** + * Sets the value of the nummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNummer(String value) { + this.nummer = value; + } + + /** + * Gets the value of the reeks property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReeks() { + return reeks; + } + + /** + * Sets the value of the reeks property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReeks(String value) { + this.reeks = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocumentResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocumentResponseType.java new file mode 100644 index 0000000..b2352f6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocumentResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterBronDocumentResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterBronDocumentResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bron_document" type="{http://www.webservices.nl/soap/}KadasterBronDocument"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterBronDocumentResponseType", propOrder = { + +}) +public class KadasterBronDocumentResponseType { + + @XmlElement(name = "bron_document", required = true) + protected KadasterBronDocument bronDocument; + + /** + * Gets the value of the bronDocument property. + * + * @return + * possible object is + * {@link KadasterBronDocument } + * + */ + public KadasterBronDocument getBronDocument() { + return bronDocument; + } + + /** + * Sets the value of the bronDocument property. + * + * @param value + * allowed object is + * {@link KadasterBronDocument } + * + */ + public void setBronDocument(KadasterBronDocument value) { + this.bronDocument = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterCoordinates.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterCoordinates.java new file mode 100644 index 0000000..36fe521 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterCoordinates.java @@ -0,0 +1,133 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterCoordinates complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterCoordinates">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="within_structure" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterCoordinates", propOrder = { + +}) +public class KadasterCoordinates { + + protected int x; + protected int y; + protected float latitude; + protected float longitude; + @XmlElement(name = "within_structure") + protected boolean withinStructure; + + /** + * Gets the value of the x property. + * + */ + public int getX() { + return x; + } + + /** + * Sets the value of the x property. + * + */ + public void setX(int value) { + this.x = value; + } + + /** + * Gets the value of the y property. + * + */ + public int getY() { + return y; + } + + /** + * Sets the value of the y property. + * + */ + public void setY(int value) { + this.y = value; + } + + /** + * Gets the value of the latitude property. + * + */ + public float getLatitude() { + return latitude; + } + + /** + * Sets the value of the latitude property. + * + */ + public void setLatitude(float value) { + this.latitude = value; + } + + /** + * Gets the value of the longitude property. + * + */ + public float getLongitude() { + return longitude; + } + + /** + * Sets the value of the longitude property. + * + */ + public void setLongitude(float value) { + this.longitude = value; + } + + /** + * Gets the value of the withinStructure property. + * + */ + public boolean isWithinStructure() { + return withinStructure; + } + + /** + * Sets the value of the withinStructure property. + * + */ + public void setWithinStructure(boolean value) { + this.withinStructure = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuze.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuze.java new file mode 100644 index 0000000..9e33b71 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuze.java @@ -0,0 +1,145 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterDomicilieKeuze complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterDomicilieKeuze">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="voorletters" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="voorvoegsels" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="achternaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="adres" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterDomicilieKeuze", propOrder = { + +}) +public class KadasterDomicilieKeuze { + + protected String voorletters; + protected String voorvoegsels; + protected String achternaam; + protected String adres; + + /** + * Gets the value of the voorletters property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVoorletters() { + return voorletters; + } + + /** + * Sets the value of the voorletters property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVoorletters(String value) { + this.voorletters = value; + } + + /** + * Gets the value of the voorvoegsels property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVoorvoegsels() { + return voorvoegsels; + } + + /** + * Sets the value of the voorvoegsels property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVoorvoegsels(String value) { + this.voorvoegsels = value; + } + + /** + * Gets the value of the achternaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAchternaam() { + return achternaam; + } + + /** + * Sets the value of the achternaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAchternaam(String value) { + this.achternaam = value; + } + + /** + * Gets the value of the adres property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAdres() { + return adres; + } + + /** + * Sets the value of the adres property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAdres(String value) { + this.adres = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuzeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuzeArray.java new file mode 100644 index 0000000..2c84a5f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuzeArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterDomicilieKeuzeArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterDomicilieKeuzeArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterDomicilieKeuze" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterDomicilieKeuzeArray", propOrder = { + "item" +}) +public class KadasterDomicilieKeuzeArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterDomicilieKeuze } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuzeLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuzeLijst.java new file mode 100644 index 0000000..4a167c1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuzeLijst.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterDomicilieKeuzeLijst complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterDomicilieKeuzeLijst">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="domicilie_keuzes" type="{http://www.webservices.nl/soap/}kadasterDomicilieKeuzeArray"/>
+ *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterDomicilieKeuzeLijst", propOrder = { + +}) +public class KadasterDomicilieKeuzeLijst { + + @XmlElement(name = "domicilie_keuzes", required = true) + protected KadasterDomicilieKeuzeArray domicilieKeuzes; + @XmlElement(name = "indicatie_compleet") + protected Boolean indicatieCompleet; + + /** + * Gets the value of the domicilieKeuzes property. + * + * @return + * possible object is + * {@link KadasterDomicilieKeuzeArray } + * + */ + public KadasterDomicilieKeuzeArray getDomicilieKeuzes() { + return domicilieKeuzes; + } + + /** + * Sets the value of the domicilieKeuzes property. + * + * @param value + * allowed object is + * {@link KadasterDomicilieKeuzeArray } + * + */ + public void setDomicilieKeuzes(KadasterDomicilieKeuzeArray value) { + this.domicilieKeuzes = value; + } + + /** + * Gets the value of the indicatieCompleet property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicatieCompleet() { + return indicatieCompleet; + } + + /** + * Sets the value of the indicatieCompleet property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicatieCompleet(Boolean value) { + this.indicatieCompleet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPerceelRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPerceelRequestType.java new file mode 100644 index 0000000..14081a3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPerceelRequestType.java @@ -0,0 +1,231 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterEigendomsBerichtDocumentPerceelRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterEigendomsBerichtDocumentPerceelRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterEigendomsBerichtDocumentPerceelRequestType", propOrder = { + +}) +public class KadasterEigendomsBerichtDocumentPerceelRequestType { + + @XmlElement(required = true) + protected String gemeentecode; + @XmlElement(required = true) + protected String gemeentenaam; + @XmlElement(required = true) + protected String sectie; + @XmlElement(required = true) + protected String perceelnummer; + @XmlElement(required = true) + protected String relatiecode; + @XmlElement(required = true) + protected String volgnummer; + @XmlElement(required = true) + protected String format; + + /** + * Gets the value of the gemeentecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentecode() { + return gemeentecode; + } + + /** + * Sets the value of the gemeentecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentecode(String value) { + this.gemeentecode = value; + } + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the sectie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectie() { + return sectie; + } + + /** + * Sets the value of the sectie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectie(String value) { + this.sectie = value; + } + + /** + * Gets the value of the perceelnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPerceelnummer(String value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the relatiecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRelatiecode() { + return relatiecode; + } + + /** + * Sets the value of the relatiecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRelatiecode(String value) { + this.relatiecode = value; + } + + /** + * Gets the value of the volgnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVolgnummer() { + return volgnummer; + } + + /** + * Sets the value of the volgnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVolgnummer(String value) { + this.volgnummer = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPerceelResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPerceelResponseType.java new file mode 100644 index 0000000..c07f410 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPerceelResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterEigendomsBerichtDocumentPerceelResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterEigendomsBerichtDocumentPerceelResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="berichtobjectresultaat" type="{http://www.webservices.nl/soap/}BerichtObjectDocumentResultaat"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterEigendomsBerichtDocumentPerceelResponseType", propOrder = { + +}) +public class KadasterEigendomsBerichtDocumentPerceelResponseType { + + @XmlElement(required = true) + protected BerichtObjectDocumentResultaat berichtobjectresultaat; + + /** + * Gets the value of the berichtobjectresultaat property. + * + * @return + * possible object is + * {@link BerichtObjectDocumentResultaat } + * + */ + public BerichtObjectDocumentResultaat getBerichtobjectresultaat() { + return berichtobjectresultaat; + } + + /** + * Sets the value of the berichtobjectresultaat property. + * + * @param value + * allowed object is + * {@link BerichtObjectDocumentResultaat } + * + */ + public void setBerichtobjectresultaat(BerichtObjectDocumentResultaat value) { + this.berichtobjectresultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPostcodeRequestType.java new file mode 100644 index 0000000..15e5491 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPostcodeRequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterEigendomsBerichtDocumentPostcodeRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterEigendomsBerichtDocumentPostcodeRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterEigendomsBerichtDocumentPostcodeRequestType", propOrder = { + +}) +public class KadasterEigendomsBerichtDocumentPostcodeRequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + @XmlElement(required = true) + protected String format; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPostcodeResponseType.java new file mode 100644 index 0000000..5cfa3bb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPostcodeResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterEigendomsBerichtDocumentPostcodeResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterEigendomsBerichtDocumentPostcodeResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="berichtobjectresultaat" type="{http://www.webservices.nl/soap/}BerichtObjectDocumentResultaat"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterEigendomsBerichtDocumentPostcodeResponseType", propOrder = { + +}) +public class KadasterEigendomsBerichtDocumentPostcodeResponseType { + + @XmlElement(required = true) + protected BerichtObjectDocumentResultaat berichtobjectresultaat; + + /** + * Gets the value of the berichtobjectresultaat property. + * + * @return + * possible object is + * {@link BerichtObjectDocumentResultaat } + * + */ + public BerichtObjectDocumentResultaat getBerichtobjectresultaat() { + return berichtobjectresultaat; + } + + /** + * Sets the value of the berichtobjectresultaat property. + * + * @param value + * allowed object is + * {@link BerichtObjectDocumentResultaat } + * + */ + public void setBerichtobjectresultaat(BerichtObjectDocumentResultaat value) { + this.berichtobjectresultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelRequestType.java new file mode 100644 index 0000000..eccf91d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelRequestType.java @@ -0,0 +1,204 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterEigendomsBerichtPerceelRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterEigendomsBerichtPerceelRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterEigendomsBerichtPerceelRequestType", propOrder = { + +}) +public class KadasterEigendomsBerichtPerceelRequestType { + + @XmlElement(required = true) + protected String gemeentecode; + @XmlElement(required = true) + protected String gemeentenaam; + @XmlElement(required = true) + protected String sectie; + @XmlElement(required = true) + protected String perceelnummer; + @XmlElement(required = true) + protected String relatiecode; + @XmlElement(required = true) + protected String volgnummer; + + /** + * Gets the value of the gemeentecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentecode() { + return gemeentecode; + } + + /** + * Sets the value of the gemeentecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentecode(String value) { + this.gemeentecode = value; + } + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the sectie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectie() { + return sectie; + } + + /** + * Sets the value of the sectie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectie(String value) { + this.sectie = value; + } + + /** + * Gets the value of the perceelnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPerceelnummer(String value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the relatiecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRelatiecode() { + return relatiecode; + } + + /** + * Sets the value of the relatiecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRelatiecode(String value) { + this.relatiecode = value; + } + + /** + * Gets the value of the volgnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVolgnummer() { + return volgnummer; + } + + /** + * Sets the value of the volgnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVolgnummer(String value) { + this.volgnummer = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelResponseType.java new file mode 100644 index 0000000..e7cac97 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterEigendomsBerichtPerceelResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterEigendomsBerichtPerceelResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="berichtobjectresultaat" type="{http://www.webservices.nl/soap/}BerichtObjectResultaat"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterEigendomsBerichtPerceelResponseType", propOrder = { + +}) +public class KadasterEigendomsBerichtPerceelResponseType { + + @XmlElement(required = true) + protected BerichtObjectResultaat berichtobjectresultaat; + + /** + * Gets the value of the berichtobjectresultaat property. + * + * @return + * possible object is + * {@link BerichtObjectResultaat } + * + */ + public BerichtObjectResultaat getBerichtobjectresultaat() { + return berichtobjectresultaat; + } + + /** + * Sets the value of the berichtobjectresultaat property. + * + * @param value + * allowed object is + * {@link BerichtObjectResultaat } + * + */ + public void setBerichtobjectresultaat(BerichtObjectResultaat value) { + this.berichtobjectresultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelV2RequestType.java new file mode 100644 index 0000000..8e89b5d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelV2RequestType.java @@ -0,0 +1,204 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterEigendomsBerichtPerceelV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterEigendomsBerichtPerceelV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterEigendomsBerichtPerceelV2RequestType", propOrder = { + +}) +public class KadasterEigendomsBerichtPerceelV2RequestType { + + @XmlElement(required = true) + protected String gemeentecode; + @XmlElement(required = true) + protected String gemeentenaam; + @XmlElement(required = true) + protected String sectie; + @XmlElement(required = true) + protected String perceelnummer; + @XmlElement(required = true) + protected String relatiecode; + @XmlElement(required = true) + protected String volgnummer; + + /** + * Gets the value of the gemeentecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentecode() { + return gemeentecode; + } + + /** + * Sets the value of the gemeentecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentecode(String value) { + this.gemeentecode = value; + } + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the sectie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectie() { + return sectie; + } + + /** + * Sets the value of the sectie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectie(String value) { + this.sectie = value; + } + + /** + * Gets the value of the perceelnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPerceelnummer(String value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the relatiecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRelatiecode() { + return relatiecode; + } + + /** + * Sets the value of the relatiecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRelatiecode(String value) { + this.relatiecode = value; + } + + /** + * Gets the value of the volgnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVolgnummer() { + return volgnummer; + } + + /** + * Sets the value of the volgnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVolgnummer(String value) { + this.volgnummer = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelV2ResponseType.java new file mode 100644 index 0000000..dc6ee2b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterEigendomsBerichtPerceelV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterEigendomsBerichtPerceelV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="berichtobjectresultaat" type="{http://www.webservices.nl/soap/}BerichtObjectResultaatV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterEigendomsBerichtPerceelV2ResponseType", propOrder = { + +}) +public class KadasterEigendomsBerichtPerceelV2ResponseType { + + @XmlElement(required = true) + protected BerichtObjectResultaatV2 berichtobjectresultaat; + + /** + * Gets the value of the berichtobjectresultaat property. + * + * @return + * possible object is + * {@link BerichtObjectResultaatV2 } + * + */ + public BerichtObjectResultaatV2 getBerichtobjectresultaat() { + return berichtobjectresultaat; + } + + /** + * Sets the value of the berichtobjectresultaat property. + * + * @param value + * allowed object is + * {@link BerichtObjectResultaatV2 } + * + */ + public void setBerichtobjectresultaat(BerichtObjectResultaatV2 value) { + this.berichtobjectresultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeRequestType.java new file mode 100644 index 0000000..318ea89 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeRequestType.java @@ -0,0 +1,114 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterEigendomsBerichtPostcodeRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterEigendomsBerichtPostcodeRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterEigendomsBerichtPostcodeRequestType", propOrder = { + +}) +public class KadasterEigendomsBerichtPostcodeRequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeResponseType.java new file mode 100644 index 0000000..27c08df --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterEigendomsBerichtPostcodeResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterEigendomsBerichtPostcodeResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="berichtobjectresultaat" type="{http://www.webservices.nl/soap/}BerichtObjectResultaat"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterEigendomsBerichtPostcodeResponseType", propOrder = { + +}) +public class KadasterEigendomsBerichtPostcodeResponseType { + + @XmlElement(required = true) + protected BerichtObjectResultaat berichtobjectresultaat; + + /** + * Gets the value of the berichtobjectresultaat property. + * + * @return + * possible object is + * {@link BerichtObjectResultaat } + * + */ + public BerichtObjectResultaat getBerichtobjectresultaat() { + return berichtobjectresultaat; + } + + /** + * Sets the value of the berichtobjectresultaat property. + * + * @param value + * allowed object is + * {@link BerichtObjectResultaat } + * + */ + public void setBerichtobjectresultaat(BerichtObjectResultaat value) { + this.berichtobjectresultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeV2RequestType.java new file mode 100644 index 0000000..44ec7c2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeV2RequestType.java @@ -0,0 +1,114 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterEigendomsBerichtPostcodeV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterEigendomsBerichtPostcodeV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterEigendomsBerichtPostcodeV2RequestType", propOrder = { + +}) +public class KadasterEigendomsBerichtPostcodeV2RequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeV2ResponseType.java new file mode 100644 index 0000000..b119475 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterEigendomsBerichtPostcodeV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterEigendomsBerichtPostcodeV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="berichtobjectresultaat" type="{http://www.webservices.nl/soap/}BerichtObjectResultaatV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterEigendomsBerichtPostcodeV2ResponseType", propOrder = { + +}) +public class KadasterEigendomsBerichtPostcodeV2ResponseType { + + @XmlElement(required = true) + protected BerichtObjectResultaatV2 berichtobjectresultaat; + + /** + * Gets the value of the berichtobjectresultaat property. + * + * @return + * possible object is + * {@link BerichtObjectResultaatV2 } + * + */ + public BerichtObjectResultaatV2 getBerichtobjectresultaat() { + return berichtobjectresultaat; + } + + /** + * Sets the value of the berichtobjectresultaat property. + * + * @param value + * allowed object is + * {@link BerichtObjectResultaatV2 } + * + */ + public void setBerichtobjectresultaat(BerichtObjectResultaatV2 value) { + this.berichtobjectresultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterGerelateerdStukdeel.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterGerelateerdStukdeel.java new file mode 100644 index 0000000..dd2071a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterGerelateerdStukdeel.java @@ -0,0 +1,121 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterGerelateerdStukdeel complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterGerelateerdStukdeel">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="aard_stukdeel_omschrijving" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="stuk" type="{http://www.webservices.nl/soap/}Stuk" minOccurs="0"/>
+ *         <element name="gefiatteerd" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterGerelateerdStukdeel", propOrder = { + +}) +public class KadasterGerelateerdStukdeel { + + @XmlElement(name = "aard_stukdeel_omschrijving", required = true) + protected String aardStukdeelOmschrijving; + protected Stuk stuk; + protected Boolean gefiatteerd; + + /** + * Gets the value of the aardStukdeelOmschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAardStukdeelOmschrijving() { + return aardStukdeelOmschrijving; + } + + /** + * Sets the value of the aardStukdeelOmschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAardStukdeelOmschrijving(String value) { + this.aardStukdeelOmschrijving = value; + } + + /** + * Gets the value of the stuk property. + * + * @return + * possible object is + * {@link Stuk } + * + */ + public Stuk getStuk() { + return stuk; + } + + /** + * Sets the value of the stuk property. + * + * @param value + * allowed object is + * {@link Stuk } + * + */ + public void setStuk(Stuk value) { + this.stuk = value; + } + + /** + * Gets the value of the gefiatteerd property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isGefiatteerd() { + return gefiatteerd; + } + + /** + * Sets the value of the gefiatteerd property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setGefiatteerd(Boolean value) { + this.gefiatteerd = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterGerelateerdStukdeelArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterGerelateerdStukdeelArray.java new file mode 100644 index 0000000..1da36a9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterGerelateerdStukdeelArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterGerelateerdStukdeelArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterGerelateerdStukdeelArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterGerelateerdStukdeel" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterGerelateerdStukdeelArray", propOrder = { + "item" +}) +public class KadasterGerelateerdStukdeelArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterGerelateerdStukdeel } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtObject.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtObject.java new file mode 100644 index 0000000..9dde85f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtObject.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypothecairBerichtObject complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypothecairBerichtObject">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="datum_bijgewerkt" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="onroerende_zaak" type="{http://www.webservices.nl/soap/}kadasterBeknoptOnroerendeZaak"/>
+ *         <element name="hypotheek_stuk_lijst" type="{http://www.webservices.nl/soap/}kadasterHypotheekStukLijst"/>
+ *         <element name="hypothecair_document" type="{http://www.webservices.nl/soap/}kadasterBerichtObjectDocument" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypothecairBerichtObject", propOrder = { + +}) +public class KadasterHypothecairBerichtObject { + + @XmlElement(name = "datum_bijgewerkt", required = true) + protected String datumBijgewerkt; + @XmlElement(name = "onroerende_zaak", required = true) + protected KadasterBeknoptOnroerendeZaak onroerendeZaak; + @XmlElement(name = "hypotheek_stuk_lijst", required = true) + protected KadasterHypotheekStukLijst hypotheekStukLijst; + @XmlElement(name = "hypothecair_document") + protected KadasterBerichtObjectDocument hypothecairDocument; + + /** + * Gets the value of the datumBijgewerkt property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDatumBijgewerkt() { + return datumBijgewerkt; + } + + /** + * Sets the value of the datumBijgewerkt property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDatumBijgewerkt(String value) { + this.datumBijgewerkt = value; + } + + /** + * Gets the value of the onroerendeZaak property. + * + * @return + * possible object is + * {@link KadasterBeknoptOnroerendeZaak } + * + */ + public KadasterBeknoptOnroerendeZaak getOnroerendeZaak() { + return onroerendeZaak; + } + + /** + * Sets the value of the onroerendeZaak property. + * + * @param value + * allowed object is + * {@link KadasterBeknoptOnroerendeZaak } + * + */ + public void setOnroerendeZaak(KadasterBeknoptOnroerendeZaak value) { + this.onroerendeZaak = value; + } + + /** + * Gets the value of the hypotheekStukLijst property. + * + * @return + * possible object is + * {@link KadasterHypotheekStukLijst } + * + */ + public KadasterHypotheekStukLijst getHypotheekStukLijst() { + return hypotheekStukLijst; + } + + /** + * Sets the value of the hypotheekStukLijst property. + * + * @param value + * allowed object is + * {@link KadasterHypotheekStukLijst } + * + */ + public void setHypotheekStukLijst(KadasterHypotheekStukLijst value) { + this.hypotheekStukLijst = value; + } + + /** + * Gets the value of the hypothecairDocument property. + * + * @return + * possible object is + * {@link KadasterBerichtObjectDocument } + * + */ + public KadasterBerichtObjectDocument getHypothecairDocument() { + return hypothecairDocument; + } + + /** + * Sets the value of the hypothecairDocument property. + * + * @param value + * allowed object is + * {@link KadasterBerichtObjectDocument } + * + */ + public void setHypothecairDocument(KadasterBerichtObjectDocument value) { + this.hypothecairDocument = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelRequestType.java new file mode 100644 index 0000000..9212f66 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelRequestType.java @@ -0,0 +1,231 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypothecairBerichtPerceelRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypothecairBerichtPerceelRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypothecairBerichtPerceelRequestType", propOrder = { + +}) +public class KadasterHypothecairBerichtPerceelRequestType { + + @XmlElement(required = true) + protected String gemeentecode; + @XmlElement(required = true) + protected String gemeentenaam; + @XmlElement(required = true) + protected String sectie; + @XmlElement(required = true) + protected String perceelnummer; + @XmlElement(required = true) + protected String relatiecode; + @XmlElement(required = true) + protected String volgnummer; + @XmlElement(required = true) + protected String format; + + /** + * Gets the value of the gemeentecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentecode() { + return gemeentecode; + } + + /** + * Sets the value of the gemeentecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentecode(String value) { + this.gemeentecode = value; + } + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the sectie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectie() { + return sectie; + } + + /** + * Sets the value of the sectie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectie(String value) { + this.sectie = value; + } + + /** + * Gets the value of the perceelnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPerceelnummer(String value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the relatiecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRelatiecode() { + return relatiecode; + } + + /** + * Sets the value of the relatiecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRelatiecode(String value) { + this.relatiecode = value; + } + + /** + * Gets the value of the volgnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVolgnummer() { + return volgnummer; + } + + /** + * Sets the value of the volgnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVolgnummer(String value) { + this.volgnummer = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelResponseType.java new file mode 100644 index 0000000..ad35032 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypothecairBerichtPerceelResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypothecairBerichtPerceelResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}kadasterHypothecairBerichtResultaat"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypothecairBerichtPerceelResponseType", propOrder = { + +}) +public class KadasterHypothecairBerichtPerceelResponseType { + + @XmlElement(required = true) + protected KadasterHypothecairBerichtResultaat out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KadasterHypothecairBerichtResultaat } + * + */ + public KadasterHypothecairBerichtResultaat getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KadasterHypothecairBerichtResultaat } + * + */ + public void setOut(KadasterHypothecairBerichtResultaat value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV2RequestType.java new file mode 100644 index 0000000..2253849 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV2RequestType.java @@ -0,0 +1,231 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypothecairBerichtPerceelV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypothecairBerichtPerceelV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypothecairBerichtPerceelV2RequestType", propOrder = { + +}) +public class KadasterHypothecairBerichtPerceelV2RequestType { + + @XmlElement(required = true) + protected String gemeentecode; + @XmlElement(required = true) + protected String gemeentenaam; + @XmlElement(required = true) + protected String sectie; + @XmlElement(required = true) + protected String perceelnummer; + @XmlElement(required = true) + protected String relatiecode; + @XmlElement(required = true) + protected String volgnummer; + @XmlElement(required = true) + protected String format; + + /** + * Gets the value of the gemeentecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentecode() { + return gemeentecode; + } + + /** + * Sets the value of the gemeentecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentecode(String value) { + this.gemeentecode = value; + } + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the sectie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectie() { + return sectie; + } + + /** + * Sets the value of the sectie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectie(String value) { + this.sectie = value; + } + + /** + * Gets the value of the perceelnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPerceelnummer(String value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the relatiecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRelatiecode() { + return relatiecode; + } + + /** + * Sets the value of the relatiecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRelatiecode(String value) { + this.relatiecode = value; + } + + /** + * Gets the value of the volgnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVolgnummer() { + return volgnummer; + } + + /** + * Sets the value of the volgnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVolgnummer(String value) { + this.volgnummer = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV2ResponseType.java new file mode 100644 index 0000000..44a0092 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypothecairBerichtPerceelV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypothecairBerichtPerceelV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}kadasterHypothecairBerichtResultaat"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypothecairBerichtPerceelV2ResponseType", propOrder = { + +}) +public class KadasterHypothecairBerichtPerceelV2ResponseType { + + @XmlElement(required = true) + protected KadasterHypothecairBerichtResultaat out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KadasterHypothecairBerichtResultaat } + * + */ + public KadasterHypothecairBerichtResultaat getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KadasterHypothecairBerichtResultaat } + * + */ + public void setOut(KadasterHypothecairBerichtResultaat value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV3RequestType.java new file mode 100644 index 0000000..37de7bc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV3RequestType.java @@ -0,0 +1,231 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypothecairBerichtPerceelV3RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypothecairBerichtPerceelV3RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypothecairBerichtPerceelV3RequestType", propOrder = { + +}) +public class KadasterHypothecairBerichtPerceelV3RequestType { + + @XmlElement(required = true) + protected String gemeentecode; + @XmlElement(required = true) + protected String gemeentenaam; + @XmlElement(required = true) + protected String sectie; + @XmlElement(required = true) + protected String perceelnummer; + @XmlElement(required = true) + protected String relatiecode; + @XmlElement(required = true) + protected String volgnummer; + @XmlElement(required = true) + protected String format; + + /** + * Gets the value of the gemeentecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentecode() { + return gemeentecode; + } + + /** + * Sets the value of the gemeentecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentecode(String value) { + this.gemeentecode = value; + } + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the sectie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectie() { + return sectie; + } + + /** + * Sets the value of the sectie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectie(String value) { + this.sectie = value; + } + + /** + * Gets the value of the perceelnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPerceelnummer(String value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the relatiecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRelatiecode() { + return relatiecode; + } + + /** + * Sets the value of the relatiecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRelatiecode(String value) { + this.relatiecode = value; + } + + /** + * Gets the value of the volgnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVolgnummer() { + return volgnummer; + } + + /** + * Sets the value of the volgnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVolgnummer(String value) { + this.volgnummer = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV3ResponseType.java new file mode 100644 index 0000000..0f4816f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV3ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypothecairBerichtPerceelV3ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypothecairBerichtPerceelV3ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}kadasterHypothecairBerichtResultaatV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypothecairBerichtPerceelV3ResponseType", propOrder = { + +}) +public class KadasterHypothecairBerichtPerceelV3ResponseType { + + @XmlElement(required = true) + protected KadasterHypothecairBerichtResultaatV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KadasterHypothecairBerichtResultaatV2 } + * + */ + public KadasterHypothecairBerichtResultaatV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KadasterHypothecairBerichtResultaatV2 } + * + */ + public void setOut(KadasterHypothecairBerichtResultaatV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeRequestType.java new file mode 100644 index 0000000..d2786a5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeRequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypothecairBerichtPostcodeRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypothecairBerichtPostcodeRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypothecairBerichtPostcodeRequestType", propOrder = { + +}) +public class KadasterHypothecairBerichtPostcodeRequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + @XmlElement(required = true) + protected String format; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeResponseType.java new file mode 100644 index 0000000..ab4e5df --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypothecairBerichtPostcodeResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypothecairBerichtPostcodeResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}kadasterHypothecairBerichtResultaat"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypothecairBerichtPostcodeResponseType", propOrder = { + +}) +public class KadasterHypothecairBerichtPostcodeResponseType { + + @XmlElement(required = true) + protected KadasterHypothecairBerichtResultaat out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KadasterHypothecairBerichtResultaat } + * + */ + public KadasterHypothecairBerichtResultaat getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KadasterHypothecairBerichtResultaat } + * + */ + public void setOut(KadasterHypothecairBerichtResultaat value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV2RequestType.java new file mode 100644 index 0000000..6788b2e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV2RequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypothecairBerichtPostcodeV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypothecairBerichtPostcodeV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypothecairBerichtPostcodeV2RequestType", propOrder = { + +}) +public class KadasterHypothecairBerichtPostcodeV2RequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + @XmlElement(required = true) + protected String format; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV2ResponseType.java new file mode 100644 index 0000000..7740bfa --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypothecairBerichtPostcodeV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypothecairBerichtPostcodeV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}kadasterHypothecairBerichtResultaat"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypothecairBerichtPostcodeV2ResponseType", propOrder = { + +}) +public class KadasterHypothecairBerichtPostcodeV2ResponseType { + + @XmlElement(required = true) + protected KadasterHypothecairBerichtResultaat out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KadasterHypothecairBerichtResultaat } + * + */ + public KadasterHypothecairBerichtResultaat getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KadasterHypothecairBerichtResultaat } + * + */ + public void setOut(KadasterHypothecairBerichtResultaat value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV3RequestType.java new file mode 100644 index 0000000..f1d98b4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV3RequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypothecairBerichtPostcodeV3RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypothecairBerichtPostcodeV3RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypothecairBerichtPostcodeV3RequestType", propOrder = { + +}) +public class KadasterHypothecairBerichtPostcodeV3RequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + @XmlElement(required = true) + protected String format; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV3ResponseType.java new file mode 100644 index 0000000..ff30ca2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV3ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypothecairBerichtPostcodeV3ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypothecairBerichtPostcodeV3ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}kadasterHypothecairBerichtResultaatV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypothecairBerichtPostcodeV3ResponseType", propOrder = { + +}) +public class KadasterHypothecairBerichtPostcodeV3ResponseType { + + @XmlElement(required = true) + protected KadasterHypothecairBerichtResultaatV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KadasterHypothecairBerichtResultaatV2 } + * + */ + public KadasterHypothecairBerichtResultaatV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KadasterHypothecairBerichtResultaatV2 } + * + */ + public void setOut(KadasterHypothecairBerichtResultaatV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtResultaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtResultaat.java new file mode 100644 index 0000000..19c9608 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtResultaat.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypothecairBerichtResultaat complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypothecairBerichtResultaat">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="overzicht" type="{http://www.webservices.nl/soap/}kadasterOverzicht" minOccurs="0"/>
+ *         <element name="hypothecairbericht" type="{http://www.webservices.nl/soap/}kadasterHypothecairBerichtObject" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypothecairBerichtResultaat", propOrder = { + +}) +public class KadasterHypothecairBerichtResultaat { + + protected KadasterOverzicht overzicht; + protected KadasterHypothecairBerichtObject hypothecairbericht; + + /** + * Gets the value of the overzicht property. + * + * @return + * possible object is + * {@link KadasterOverzicht } + * + */ + public KadasterOverzicht getOverzicht() { + return overzicht; + } + + /** + * Sets the value of the overzicht property. + * + * @param value + * allowed object is + * {@link KadasterOverzicht } + * + */ + public void setOverzicht(KadasterOverzicht value) { + this.overzicht = value; + } + + /** + * Gets the value of the hypothecairbericht property. + * + * @return + * possible object is + * {@link KadasterHypothecairBerichtObject } + * + */ + public KadasterHypothecairBerichtObject getHypothecairbericht() { + return hypothecairbericht; + } + + /** + * Sets the value of the hypothecairbericht property. + * + * @param value + * allowed object is + * {@link KadasterHypothecairBerichtObject } + * + */ + public void setHypothecairbericht(KadasterHypothecairBerichtObject value) { + this.hypothecairbericht = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtResultaatV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtResultaatV2.java new file mode 100644 index 0000000..23f5a23 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtResultaatV2.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypothecairBerichtResultaatV2 complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypothecairBerichtResultaatV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="overzicht" type="{http://www.webservices.nl/soap/}kadasterOverzichtV2" minOccurs="0"/>
+ *         <element name="hypothecairbericht" type="{http://www.webservices.nl/soap/}kadasterHypothecairBerichtObject" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypothecairBerichtResultaatV2", propOrder = { + +}) +public class KadasterHypothecairBerichtResultaatV2 { + + protected KadasterOverzichtV2 overzicht; + protected KadasterHypothecairBerichtObject hypothecairbericht; + + /** + * Gets the value of the overzicht property. + * + * @return + * possible object is + * {@link KadasterOverzichtV2 } + * + */ + public KadasterOverzichtV2 getOverzicht() { + return overzicht; + } + + /** + * Sets the value of the overzicht property. + * + * @param value + * allowed object is + * {@link KadasterOverzichtV2 } + * + */ + public void setOverzicht(KadasterOverzichtV2 value) { + this.overzicht = value; + } + + /** + * Gets the value of the hypothecairbericht property. + * + * @return + * possible object is + * {@link KadasterHypothecairBerichtObject } + * + */ + public KadasterHypothecairBerichtObject getHypothecairbericht() { + return hypothecairbericht; + } + + /** + * Sets the value of the hypothecairbericht property. + * + * @param value + * allowed object is + * {@link KadasterHypothecairBerichtObject } + * + */ + public void setHypothecairbericht(KadasterHypothecairBerichtObject value) { + this.hypothecairbericht = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheek.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheek.java new file mode 100644 index 0000000..5bc44a6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheek.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypotheek complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypotheek">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="hoofdsom" type="{http://www.webservices.nl/soap/}kadasterBedrag"/>
+ *         <element name="rentevoet" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="meerdere_rentevoet" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypotheek", propOrder = { + +}) +public class KadasterHypotheek { + + @XmlElement(required = true) + protected KadasterBedrag hoofdsom; + protected Float rentevoet; + @XmlElement(name = "meerdere_rentevoet") + protected Boolean meerdereRentevoet; + + /** + * Gets the value of the hoofdsom property. + * + * @return + * possible object is + * {@link KadasterBedrag } + * + */ + public KadasterBedrag getHoofdsom() { + return hoofdsom; + } + + /** + * Sets the value of the hoofdsom property. + * + * @param value + * allowed object is + * {@link KadasterBedrag } + * + */ + public void setHoofdsom(KadasterBedrag value) { + this.hoofdsom = value; + } + + /** + * Gets the value of the rentevoet property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getRentevoet() { + return rentevoet; + } + + /** + * Sets the value of the rentevoet property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setRentevoet(Float value) { + this.rentevoet = value; + } + + /** + * Gets the value of the meerdereRentevoet property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isMeerdereRentevoet() { + return meerdereRentevoet; + } + + /** + * Sets the value of the meerdereRentevoet property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setMeerdereRentevoet(Boolean value) { + this.meerdereRentevoet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStuk.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStuk.java new file mode 100644 index 0000000..952e34f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStuk.java @@ -0,0 +1,256 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypotheekStuk complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypotheekStuk">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="stuk" type="{http://www.webservices.nl/soap/}Stuk"/>
+ *         <element name="stukdelen" type="{http://www.webservices.nl/soap/}kadasterStukdeelArray"/>
+ *         <element name="datum_aanbieding" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="datum_ondertekening" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="rectificatie_verzocht" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="eenzijdig_opzegbaar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="gefiatteerd" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypotheekStuk", propOrder = { + +}) +public class KadasterHypotheekStuk { + + @XmlElement(required = true) + protected Stuk stuk; + @XmlElement(required = true) + protected KadasterStukdeelArray stukdelen; + @XmlElement(name = "datum_aanbieding") + protected String datumAanbieding; + @XmlElement(name = "datum_ondertekening") + protected String datumOndertekening; + protected String omschrijving; + @XmlElement(name = "rectificatie_verzocht") + protected Boolean rectificatieVerzocht; + @XmlElement(name = "eenzijdig_opzegbaar") + protected Boolean eenzijdigOpzegbaar; + protected Boolean gefiatteerd; + + /** + * Gets the value of the stuk property. + * + * @return + * possible object is + * {@link Stuk } + * + */ + public Stuk getStuk() { + return stuk; + } + + /** + * Sets the value of the stuk property. + * + * @param value + * allowed object is + * {@link Stuk } + * + */ + public void setStuk(Stuk value) { + this.stuk = value; + } + + /** + * Gets the value of the stukdelen property. + * + * @return + * possible object is + * {@link KadasterStukdeelArray } + * + */ + public KadasterStukdeelArray getStukdelen() { + return stukdelen; + } + + /** + * Sets the value of the stukdelen property. + * + * @param value + * allowed object is + * {@link KadasterStukdeelArray } + * + */ + public void setStukdelen(KadasterStukdeelArray value) { + this.stukdelen = value; + } + + /** + * Gets the value of the datumAanbieding property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDatumAanbieding() { + return datumAanbieding; + } + + /** + * Sets the value of the datumAanbieding property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDatumAanbieding(String value) { + this.datumAanbieding = value; + } + + /** + * Gets the value of the datumOndertekening property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDatumOndertekening() { + return datumOndertekening; + } + + /** + * Sets the value of the datumOndertekening property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDatumOndertekening(String value) { + this.datumOndertekening = value; + } + + /** + * Gets the value of the omschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijving() { + return omschrijving; + } + + /** + * Sets the value of the omschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijving(String value) { + this.omschrijving = value; + } + + /** + * Gets the value of the rectificatieVerzocht property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isRectificatieVerzocht() { + return rectificatieVerzocht; + } + + /** + * Sets the value of the rectificatieVerzocht property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setRectificatieVerzocht(Boolean value) { + this.rectificatieVerzocht = value; + } + + /** + * Gets the value of the eenzijdigOpzegbaar property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isEenzijdigOpzegbaar() { + return eenzijdigOpzegbaar; + } + + /** + * Sets the value of the eenzijdigOpzegbaar property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setEenzijdigOpzegbaar(Boolean value) { + this.eenzijdigOpzegbaar = value; + } + + /** + * Gets the value of the gefiatteerd property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isGefiatteerd() { + return gefiatteerd; + } + + /** + * Sets the value of the gefiatteerd property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setGefiatteerd(Boolean value) { + this.gefiatteerd = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStukArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStukArray.java new file mode 100644 index 0000000..6e2b298 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStukArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypotheekStukArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypotheekStukArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterHypotheekStuk" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypotheekStukArray", propOrder = { + "item" +}) +public class KadasterHypotheekStukArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterHypotheekStuk } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStukLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStukLijst.java new file mode 100644 index 0000000..83522b7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStukLijst.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterHypotheekStukLijst complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterHypotheekStukLijst">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="hypotheek_stukken" type="{http://www.webservices.nl/soap/}kadasterHypotheekStukArray"/>
+ *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterHypotheekStukLijst", propOrder = { + +}) +public class KadasterHypotheekStukLijst { + + @XmlElement(name = "hypotheek_stukken", required = true) + protected KadasterHypotheekStukArray hypotheekStukken; + @XmlElement(name = "indicatie_compleet") + protected boolean indicatieCompleet; + + /** + * Gets the value of the hypotheekStukken property. + * + * @return + * possible object is + * {@link KadasterHypotheekStukArray } + * + */ + public KadasterHypotheekStukArray getHypotheekStukken() { + return hypotheekStukken; + } + + /** + * Sets the value of the hypotheekStukken property. + * + * @param value + * allowed object is + * {@link KadasterHypotheekStukArray } + * + */ + public void setHypotheekStukken(KadasterHypotheekStukArray value) { + this.hypotheekStukken = value; + } + + /** + * Gets the value of the indicatieCompleet property. + * + */ + public boolean isIndicatieCompleet() { + return indicatieCompleet; + } + + /** + * Sets the value of the indicatieCompleet property. + * + */ + public void setIndicatieCompleet(boolean value) { + this.indicatieCompleet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaart.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaart.java new file mode 100644 index 0000000..5e57887 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaart.java @@ -0,0 +1,111 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterKadastraleKaart complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterKadastraleKaart">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="kaart" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *         <element name="schaal" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="afbeeldingen" type="{http://www.webservices.nl/soap/}base64BinaryArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterKadastraleKaart", propOrder = { + +}) +public class KadasterKadastraleKaart { + + @XmlElement(required = true) + protected byte[] kaart; + protected int schaal; + protected Base64BinaryArray afbeeldingen; + + /** + * Gets the value of the kaart property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getKaart() { + return kaart; + } + + /** + * Sets the value of the kaart property. + * + * @param value + * allowed object is + * byte[] + */ + public void setKaart(byte[] value) { + this.kaart = value; + } + + /** + * Gets the value of the schaal property. + * + */ + public int getSchaal() { + return schaal; + } + + /** + * Sets the value of the schaal property. + * + */ + public void setSchaal(int value) { + this.schaal = value; + } + + /** + * Gets the value of the afbeeldingen property. + * + * @return + * possible object is + * {@link Base64BinaryArray } + * + */ + public Base64BinaryArray getAfbeeldingen() { + return afbeeldingen; + } + + /** + * Sets the value of the afbeeldingen property. + * + * @param value + * allowed object is + * {@link Base64BinaryArray } + * + */ + public void setAfbeeldingen(Base64BinaryArray value) { + this.afbeeldingen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelRequestType.java new file mode 100644 index 0000000..5d4a7d3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelRequestType.java @@ -0,0 +1,249 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterKadastraleKaartPerceelRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterKadastraleKaartPerceelRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="schaal" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterKadastraleKaartPerceelRequestType", propOrder = { + +}) +public class KadasterKadastraleKaartPerceelRequestType { + + @XmlElement(required = true) + protected String gemeentecode; + @XmlElement(required = true) + protected String gemeentenaam; + @XmlElement(required = true) + protected String sectie; + @XmlElement(required = true) + protected String perceelnummer; + @XmlElement(required = true) + protected String relatiecode; + @XmlElement(required = true) + protected String volgnummer; + @XmlElement(required = true) + protected String format; + protected int schaal; + + /** + * Gets the value of the gemeentecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentecode() { + return gemeentecode; + } + + /** + * Sets the value of the gemeentecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentecode(String value) { + this.gemeentecode = value; + } + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the sectie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectie() { + return sectie; + } + + /** + * Sets the value of the sectie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectie(String value) { + this.sectie = value; + } + + /** + * Gets the value of the perceelnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPerceelnummer(String value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the relatiecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRelatiecode() { + return relatiecode; + } + + /** + * Sets the value of the relatiecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRelatiecode(String value) { + this.relatiecode = value; + } + + /** + * Gets the value of the volgnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVolgnummer() { + return volgnummer; + } + + /** + * Sets the value of the volgnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVolgnummer(String value) { + this.volgnummer = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + + /** + * Gets the value of the schaal property. + * + */ + public int getSchaal() { + return schaal; + } + + /** + * Sets the value of the schaal property. + * + */ + public void setSchaal(int value) { + this.schaal = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelResponseType.java new file mode 100644 index 0000000..d55afca --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterKadastraleKaartPerceelResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterKadastraleKaartPerceelResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterKadastraleKaartResultaat"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterKadastraleKaartPerceelResponseType", propOrder = { + +}) +public class KadasterKadastraleKaartPerceelResponseType { + + @XmlElement(required = true) + protected KadasterKadastraleKaartResultaat out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KadasterKadastraleKaartResultaat } + * + */ + public KadasterKadastraleKaartResultaat getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KadasterKadastraleKaartResultaat } + * + */ + public void setOut(KadasterKadastraleKaartResultaat value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelV2RequestType.java new file mode 100644 index 0000000..c2feec8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelV2RequestType.java @@ -0,0 +1,249 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterKadastraleKaartPerceelV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterKadastraleKaartPerceelV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="schaal" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterKadastraleKaartPerceelV2RequestType", propOrder = { + +}) +public class KadasterKadastraleKaartPerceelV2RequestType { + + @XmlElement(required = true) + protected String gemeentecode; + @XmlElement(required = true) + protected String gemeentenaam; + @XmlElement(required = true) + protected String sectie; + @XmlElement(required = true) + protected String perceelnummer; + @XmlElement(required = true) + protected String relatiecode; + @XmlElement(required = true) + protected String volgnummer; + @XmlElement(required = true) + protected String format; + protected int schaal; + + /** + * Gets the value of the gemeentecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentecode() { + return gemeentecode; + } + + /** + * Sets the value of the gemeentecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentecode(String value) { + this.gemeentecode = value; + } + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the sectie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectie() { + return sectie; + } + + /** + * Sets the value of the sectie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectie(String value) { + this.sectie = value; + } + + /** + * Gets the value of the perceelnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPerceelnummer(String value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the relatiecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRelatiecode() { + return relatiecode; + } + + /** + * Sets the value of the relatiecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRelatiecode(String value) { + this.relatiecode = value; + } + + /** + * Gets the value of the volgnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVolgnummer() { + return volgnummer; + } + + /** + * Sets the value of the volgnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVolgnummer(String value) { + this.volgnummer = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + + /** + * Gets the value of the schaal property. + * + */ + public int getSchaal() { + return schaal; + } + + /** + * Sets the value of the schaal property. + * + */ + public void setSchaal(int value) { + this.schaal = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelV2ResponseType.java new file mode 100644 index 0000000..64a5703 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterKadastraleKaartPerceelV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterKadastraleKaartPerceelV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterKadastraleKaartResultaatV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterKadastraleKaartPerceelV2ResponseType", propOrder = { + +}) +public class KadasterKadastraleKaartPerceelV2ResponseType { + + @XmlElement(required = true) + protected KadasterKadastraleKaartResultaatV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KadasterKadastraleKaartResultaatV2 } + * + */ + public KadasterKadastraleKaartResultaatV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KadasterKadastraleKaartResultaatV2 } + * + */ + public void setOut(KadasterKadastraleKaartResultaatV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeRequestType.java new file mode 100644 index 0000000..083bf92 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeRequestType.java @@ -0,0 +1,159 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterKadastraleKaartPostcodeRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterKadastraleKaartPostcodeRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="schaal" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterKadastraleKaartPostcodeRequestType", propOrder = { + +}) +public class KadasterKadastraleKaartPostcodeRequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + @XmlElement(required = true) + protected String format; + protected int schaal; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + + /** + * Gets the value of the schaal property. + * + */ + public int getSchaal() { + return schaal; + } + + /** + * Sets the value of the schaal property. + * + */ + public void setSchaal(int value) { + this.schaal = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeResponseType.java new file mode 100644 index 0000000..acbd4fa --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterKadastraleKaartPostcodeResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterKadastraleKaartPostcodeResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterKadastraleKaartResultaat"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterKadastraleKaartPostcodeResponseType", propOrder = { + +}) +public class KadasterKadastraleKaartPostcodeResponseType { + + @XmlElement(required = true) + protected KadasterKadastraleKaartResultaat out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KadasterKadastraleKaartResultaat } + * + */ + public KadasterKadastraleKaartResultaat getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KadasterKadastraleKaartResultaat } + * + */ + public void setOut(KadasterKadastraleKaartResultaat value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeV2RequestType.java new file mode 100644 index 0000000..bfe1d8e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeV2RequestType.java @@ -0,0 +1,159 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterKadastraleKaartPostcodeV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterKadastraleKaartPostcodeV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="schaal" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterKadastraleKaartPostcodeV2RequestType", propOrder = { + +}) +public class KadasterKadastraleKaartPostcodeV2RequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + @XmlElement(required = true) + protected String format; + protected int schaal; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + + /** + * Gets the value of the schaal property. + * + */ + public int getSchaal() { + return schaal; + } + + /** + * Sets the value of the schaal property. + * + */ + public void setSchaal(int value) { + this.schaal = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeV2ResponseType.java new file mode 100644 index 0000000..87a22cd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterKadastraleKaartPostcodeV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterKadastraleKaartPostcodeV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterKadastraleKaartResultaatV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterKadastraleKaartPostcodeV2ResponseType", propOrder = { + +}) +public class KadasterKadastraleKaartPostcodeV2ResponseType { + + @XmlElement(required = true) + protected KadasterKadastraleKaartResultaatV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KadasterKadastraleKaartResultaatV2 } + * + */ + public KadasterKadastraleKaartResultaatV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KadasterKadastraleKaartResultaatV2 } + * + */ + public void setOut(KadasterKadastraleKaartResultaatV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartResultaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartResultaat.java new file mode 100644 index 0000000..adaaa86 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartResultaat.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterKadastraleKaartResultaat complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterKadastraleKaartResultaat">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="overzicht" type="{http://www.webservices.nl/soap/}kadasterOverzicht" minOccurs="0"/>
+ *         <element name="kadastrale_kaart" type="{http://www.webservices.nl/soap/}KadasterKadastraleKaart" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterKadastraleKaartResultaat", propOrder = { + +}) +public class KadasterKadastraleKaartResultaat { + + protected KadasterOverzicht overzicht; + @XmlElement(name = "kadastrale_kaart") + protected KadasterKadastraleKaart kadastraleKaart; + + /** + * Gets the value of the overzicht property. + * + * @return + * possible object is + * {@link KadasterOverzicht } + * + */ + public KadasterOverzicht getOverzicht() { + return overzicht; + } + + /** + * Sets the value of the overzicht property. + * + * @param value + * allowed object is + * {@link KadasterOverzicht } + * + */ + public void setOverzicht(KadasterOverzicht value) { + this.overzicht = value; + } + + /** + * Gets the value of the kadastraleKaart property. + * + * @return + * possible object is + * {@link KadasterKadastraleKaart } + * + */ + public KadasterKadastraleKaart getKadastraleKaart() { + return kadastraleKaart; + } + + /** + * Sets the value of the kadastraleKaart property. + * + * @param value + * allowed object is + * {@link KadasterKadastraleKaart } + * + */ + public void setKadastraleKaart(KadasterKadastraleKaart value) { + this.kadastraleKaart = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartResultaatV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartResultaatV2.java new file mode 100644 index 0000000..6fa4920 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartResultaatV2.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterKadastraleKaartResultaatV2 complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterKadastraleKaartResultaatV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="overzicht" type="{http://www.webservices.nl/soap/}DocumentOverzicht" minOccurs="0"/>
+ *         <element name="kadastrale_kaart" type="{http://www.webservices.nl/soap/}KadasterKadastraleKaart" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterKadastraleKaartResultaatV2", propOrder = { + +}) +public class KadasterKadastraleKaartResultaatV2 { + + protected DocumentOverzicht overzicht; + @XmlElement(name = "kadastrale_kaart") + protected KadasterKadastraleKaart kadastraleKaart; + + /** + * Gets the value of the overzicht property. + * + * @return + * possible object is + * {@link DocumentOverzicht } + * + */ + public DocumentOverzicht getOverzicht() { + return overzicht; + } + + /** + * Sets the value of the overzicht property. + * + * @param value + * allowed object is + * {@link DocumentOverzicht } + * + */ + public void setOverzicht(DocumentOverzicht value) { + this.overzicht = value; + } + + /** + * Gets the value of the kadastraleKaart property. + * + * @return + * possible object is + * {@link KadasterKadastraleKaart } + * + */ + public KadasterKadastraleKaart getKadastraleKaart() { + return kadastraleKaart; + } + + /** + * Sets the value of the kadastraleKaart property. + * + * @param value + * allowed object is + * {@link KadasterKadastraleKaart } + * + */ + public void setKadastraleKaart(KadasterKadastraleKaart value) { + this.kadastraleKaart = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtRequestType.java new file mode 100644 index 0000000..fc80eaf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterKoopsommenOverzichtRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterKoopsommenOverzichtRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterKoopsommenOverzichtRequestType", propOrder = { + +}) +public class KadasterKoopsommenOverzichtRequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtResponseType.java new file mode 100644 index 0000000..14f59eb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterKoopsommenOverzichtResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterKoopsommenOverzichtResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="koopsommenoverzicht" type="{http://www.webservices.nl/soap/}KoopsommenOverzicht"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterKoopsommenOverzichtResponseType", propOrder = { + +}) +public class KadasterKoopsommenOverzichtResponseType { + + @XmlElement(required = true) + protected KoopsommenOverzicht koopsommenoverzicht; + + /** + * Gets the value of the koopsommenoverzicht property. + * + * @return + * possible object is + * {@link KoopsommenOverzicht } + * + */ + public KoopsommenOverzicht getKoopsommenoverzicht() { + return koopsommenoverzicht; + } + + /** + * Sets the value of the koopsommenoverzicht property. + * + * @param value + * allowed object is + * {@link KoopsommenOverzicht } + * + */ + public void setKoopsommenoverzicht(KoopsommenOverzicht value) { + this.koopsommenoverzicht = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtV2RequestType.java new file mode 100644 index 0000000..740a3fb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtV2RequestType.java @@ -0,0 +1,114 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterKoopsommenOverzichtV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterKoopsommenOverzichtV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterKoopsommenOverzichtV2RequestType", propOrder = { + +}) +public class KadasterKoopsommenOverzichtV2RequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(required = true) + protected String format; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtV2ResponseType.java new file mode 100644 index 0000000..0d1e505 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterKoopsommenOverzichtV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterKoopsommenOverzichtV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="koopsommenoverzicht" type="{http://www.webservices.nl/soap/}KoopsommenOverzichtV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterKoopsommenOverzichtV2ResponseType", propOrder = { + +}) +public class KadasterKoopsommenOverzichtV2ResponseType { + + @XmlElement(required = true) + protected KoopsommenOverzichtV2 koopsommenoverzicht; + + /** + * Gets the value of the koopsommenoverzicht property. + * + * @return + * possible object is + * {@link KoopsommenOverzichtV2 } + * + */ + public KoopsommenOverzichtV2 getKoopsommenoverzicht() { + return koopsommenoverzicht; + } + + /** + * Sets the value of the koopsommenoverzicht property. + * + * @param value + * allowed object is + * {@link KoopsommenOverzichtV2 } + * + */ + public void setKoopsommenoverzicht(KoopsommenOverzichtV2 value) { + this.koopsommenoverzicht = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterListValue.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterListValue.java new file mode 100644 index 0000000..98190ea --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterListValue.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterListValue complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterListValue">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterListValue", propOrder = { + +}) +public class KadasterListValue { + + protected String key; + @XmlElement(required = true) + protected String value; + + /** + * Gets the value of the key property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKey() { + return key; + } + + /** + * Sets the value of the key property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKey(String value) { + this.key = value; + } + + /** + * Gets the value of the value property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValue(String value) { + this.value = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterListValueArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterListValueArray.java new file mode 100644 index 0000000..655d763 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterListValueArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterListValueArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterListValueArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterListValue" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterListValueArray", propOrder = { + "item" +}) +public class KadasterListValueArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterListValue } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatie.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatie.java new file mode 100644 index 0000000..6e160fa --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatie.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterLocatie complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterLocatie">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="locatie_binnenland" type="{http://www.webservices.nl/soap/}kadasterLocatieBinnenland" minOccurs="0"/>
+ *         <element name="locatie_buitenland" type="{http://www.webservices.nl/soap/}kadasterLocatieBuitenland" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterLocatie", propOrder = { + +}) +public class KadasterLocatie { + + @XmlElement(name = "locatie_binnenland") + protected KadasterLocatieBinnenland locatieBinnenland; + @XmlElement(name = "locatie_buitenland") + protected KadasterLocatieBuitenland locatieBuitenland; + + /** + * Gets the value of the locatieBinnenland property. + * + * @return + * possible object is + * {@link KadasterLocatieBinnenland } + * + */ + public KadasterLocatieBinnenland getLocatieBinnenland() { + return locatieBinnenland; + } + + /** + * Sets the value of the locatieBinnenland property. + * + * @param value + * allowed object is + * {@link KadasterLocatieBinnenland } + * + */ + public void setLocatieBinnenland(KadasterLocatieBinnenland value) { + this.locatieBinnenland = value; + } + + /** + * Gets the value of the locatieBuitenland property. + * + * @return + * possible object is + * {@link KadasterLocatieBuitenland } + * + */ + public KadasterLocatieBuitenland getLocatieBuitenland() { + return locatieBuitenland; + } + + /** + * Sets the value of the locatieBuitenland property. + * + * @param value + * allowed object is + * {@link KadasterLocatieBuitenland } + * + */ + public void setLocatieBuitenland(KadasterLocatieBuitenland value) { + this.locatieBuitenland = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBinnenland.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBinnenland.java new file mode 100644 index 0000000..0986fab --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBinnenland.java @@ -0,0 +1,225 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterLocatieBinnenland complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterLocatieBinnenland">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="plaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="straatnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="huisletter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="positie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterLocatieBinnenland", propOrder = { + +}) +public class KadasterLocatieBinnenland { + + protected String plaats; + protected String straatnaam; + protected String postcode; + protected Integer huisnummer; + @XmlElement(name = "huisnummer_toevoeging") + protected String huisnummerToevoeging; + protected String huisletter; + protected String positie; + + /** + * Gets the value of the plaats property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaats() { + return plaats; + } + + /** + * Sets the value of the plaats property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaats(String value) { + this.plaats = value; + } + + /** + * Gets the value of the straatnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStraatnaam() { + return straatnaam; + } + + /** + * Sets the value of the straatnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStraatnaam(String value) { + this.straatnaam = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setHuisnummer(Integer value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the huisletter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisletter() { + return huisletter; + } + + /** + * Sets the value of the huisletter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisletter(String value) { + this.huisletter = value; + } + + /** + * Gets the value of the positie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPositie() { + return positie; + } + + /** + * Sets the value of the positie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPositie(String value) { + this.positie = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBinnenlandArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBinnenlandArray.java new file mode 100644 index 0000000..b24fb70 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBinnenlandArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterLocatieBinnenlandArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterLocatieBinnenlandArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterLocatieBinnenland" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterLocatieBinnenlandArray", propOrder = { + "item" +}) +public class KadasterLocatieBinnenlandArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterLocatieBinnenland } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBuitenland.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBuitenland.java new file mode 100644 index 0000000..3e29439 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBuitenland.java @@ -0,0 +1,147 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterLocatieBuitenland complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterLocatieBuitenland">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="adres" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="woonplaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="regio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="land" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterLocatieBuitenland", propOrder = { + +}) +public class KadasterLocatieBuitenland { + + protected String adres; + protected String woonplaats; + protected String regio; + @XmlElement(required = true) + protected String land; + + /** + * Gets the value of the adres property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAdres() { + return adres; + } + + /** + * Sets the value of the adres property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAdres(String value) { + this.adres = value; + } + + /** + * Gets the value of the woonplaats property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWoonplaats() { + return woonplaats; + } + + /** + * Sets the value of the woonplaats property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWoonplaats(String value) { + this.woonplaats = value; + } + + /** + * Gets the value of the regio property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegio() { + return regio; + } + + /** + * Sets the value of the regio property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegio(String value) { + this.regio = value; + } + + /** + * Gets the value of the land property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLand() { + return land; + } + + /** + * Sets the value of the land property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLand(String value) { + this.land = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterNatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterNatuurlijkPersoon.java new file mode 100644 index 0000000..cf29ea8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterNatuurlijkPersoon.java @@ -0,0 +1,310 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for kadasterNatuurlijkPersoon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterNatuurlijkPersoon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bsn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="voorvoegsel_geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="voornamen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="geslacht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="geboorteplaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="geboortedatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="datum_overlijden" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="indicatie_overleden" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="burgerlijke_staat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterNatuurlijkPersoon", propOrder = { + +}) +public class KadasterNatuurlijkPersoon { + + protected String bsn; + protected String geslachtsnaam; + @XmlElement(name = "voorvoegsel_geslachtsnaam") + protected String voorvoegselGeslachtsnaam; + protected String voornamen; + protected String geslacht; + protected String geboorteplaats; + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar geboortedatum; + @XmlElement(name = "datum_overlijden") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar datumOverlijden; + @XmlElement(name = "indicatie_overleden") + protected Boolean indicatieOverleden; + @XmlElement(name = "burgerlijke_staat") + protected String burgerlijkeStaat; + + /** + * Gets the value of the bsn property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBsn() { + return bsn; + } + + /** + * Sets the value of the bsn property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBsn(String value) { + this.bsn = value; + } + + /** + * Gets the value of the geslachtsnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeslachtsnaam() { + return geslachtsnaam; + } + + /** + * Sets the value of the geslachtsnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeslachtsnaam(String value) { + this.geslachtsnaam = value; + } + + /** + * Gets the value of the voorvoegselGeslachtsnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVoorvoegselGeslachtsnaam() { + return voorvoegselGeslachtsnaam; + } + + /** + * Sets the value of the voorvoegselGeslachtsnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVoorvoegselGeslachtsnaam(String value) { + this.voorvoegselGeslachtsnaam = value; + } + + /** + * Gets the value of the voornamen property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVoornamen() { + return voornamen; + } + + /** + * Sets the value of the voornamen property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVoornamen(String value) { + this.voornamen = value; + } + + /** + * Gets the value of the geslacht property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeslacht() { + return geslacht; + } + + /** + * Sets the value of the geslacht property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeslacht(String value) { + this.geslacht = value; + } + + /** + * Gets the value of the geboorteplaats property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeboorteplaats() { + return geboorteplaats; + } + + /** + * Sets the value of the geboorteplaats property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeboorteplaats(String value) { + this.geboorteplaats = value; + } + + /** + * Gets the value of the geboortedatum property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGeboortedatum() { + return geboortedatum; + } + + /** + * Sets the value of the geboortedatum property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGeboortedatum(XMLGregorianCalendar value) { + this.geboortedatum = value; + } + + /** + * Gets the value of the datumOverlijden property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDatumOverlijden() { + return datumOverlijden; + } + + /** + * Sets the value of the datumOverlijden property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDatumOverlijden(XMLGregorianCalendar value) { + this.datumOverlijden = value; + } + + /** + * Gets the value of the indicatieOverleden property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicatieOverleden() { + return indicatieOverleden; + } + + /** + * Sets the value of the indicatieOverleden property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicatieOverleden(Boolean value) { + this.indicatieOverleden = value; + } + + /** + * Gets the value of the burgerlijkeStaat property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBurgerlijkeStaat() { + return burgerlijkeStaat; + } + + /** + * Sets the value of the burgerlijkeStaat property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBurgerlijkeStaat(String value) { + this.burgerlijkeStaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterNietNatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterNietNatuurlijkPersoon.java new file mode 100644 index 0000000..4a56c8b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterNietNatuurlijkPersoon.java @@ -0,0 +1,149 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterNietNatuurlijkPersoon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterNietNatuurlijkPersoon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="naam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="rechtsvorm" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="statutaire_zetel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bedrijven_nummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterNietNatuurlijkPersoon", propOrder = { + +}) +public class KadasterNietNatuurlijkPersoon { + + protected String naam; + @XmlElement(required = true) + protected String rechtsvorm; + @XmlElement(name = "statutaire_zetel") + protected String statutaireZetel; + @XmlElement(name = "bedrijven_nummer") + protected String bedrijvenNummer; + + /** + * Gets the value of the naam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNaam() { + return naam; + } + + /** + * Sets the value of the naam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNaam(String value) { + this.naam = value; + } + + /** + * Gets the value of the rechtsvorm property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRechtsvorm() { + return rechtsvorm; + } + + /** + * Sets the value of the rechtsvorm property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRechtsvorm(String value) { + this.rechtsvorm = value; + } + + /** + * Gets the value of the statutaireZetel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatutaireZetel() { + return statutaireZetel; + } + + /** + * Sets the value of the statutaireZetel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatutaireZetel(String value) { + this.statutaireZetel = value; + } + + /** + * Gets the value of the bedrijvenNummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBedrijvenNummer() { + return bedrijvenNummer; + } + + /** + * Sets the value of the bedrijvenNummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBedrijvenNummer(String value) { + this.bedrijvenNummer = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzicht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzicht.java new file mode 100644 index 0000000..f191222 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzicht.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterOverzicht complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterOverzicht">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="onroerende_zaken" type="{http://www.webservices.nl/soap/}kadasterOverzichtOnroerendeZaakArray"/>
+ *         <element name="rechten" type="{http://www.webservices.nl/soap/}kadasterOverzichtRechtArray"/>
+ *         <element name="personen" type="{http://www.webservices.nl/soap/}kadasterOverzichtPersoonArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterOverzicht", propOrder = { + +}) +public class KadasterOverzicht { + + @XmlElement(name = "onroerende_zaken", required = true) + protected KadasterOverzichtOnroerendeZaakArray onroerendeZaken; + @XmlElement(required = true) + protected KadasterOverzichtRechtArray rechten; + @XmlElement(required = true) + protected KadasterOverzichtPersoonArray personen; + + /** + * Gets the value of the onroerendeZaken property. + * + * @return + * possible object is + * {@link KadasterOverzichtOnroerendeZaakArray } + * + */ + public KadasterOverzichtOnroerendeZaakArray getOnroerendeZaken() { + return onroerendeZaken; + } + + /** + * Sets the value of the onroerendeZaken property. + * + * @param value + * allowed object is + * {@link KadasterOverzichtOnroerendeZaakArray } + * + */ + public void setOnroerendeZaken(KadasterOverzichtOnroerendeZaakArray value) { + this.onroerendeZaken = value; + } + + /** + * Gets the value of the rechten property. + * + * @return + * possible object is + * {@link KadasterOverzichtRechtArray } + * + */ + public KadasterOverzichtRechtArray getRechten() { + return rechten; + } + + /** + * Sets the value of the rechten property. + * + * @param value + * allowed object is + * {@link KadasterOverzichtRechtArray } + * + */ + public void setRechten(KadasterOverzichtRechtArray value) { + this.rechten = value; + } + + /** + * Gets the value of the personen property. + * + * @return + * possible object is + * {@link KadasterOverzichtPersoonArray } + * + */ + public KadasterOverzichtPersoonArray getPersonen() { + return personen; + } + + /** + * Sets the value of the personen property. + * + * @param value + * allowed object is + * {@link KadasterOverzichtPersoonArray } + * + */ + public void setPersonen(KadasterOverzichtPersoonArray value) { + this.personen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtNatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtNatuurlijkPersoon.java new file mode 100644 index 0000000..83d07c4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtNatuurlijkPersoon.java @@ -0,0 +1,174 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterOverzichtNatuurlijkPersoon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterOverzichtNatuurlijkPersoon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bsn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="voorvoegsel_geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="voornamen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="geslacht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterOverzichtNatuurlijkPersoon", propOrder = { + +}) +public class KadasterOverzichtNatuurlijkPersoon { + + protected String bsn; + @XmlElement(required = true) + protected String geslachtsnaam; + @XmlElement(name = "voorvoegsel_geslachtsnaam") + protected String voorvoegselGeslachtsnaam; + protected String voornamen; + protected String geslacht; + + /** + * Gets the value of the bsn property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBsn() { + return bsn; + } + + /** + * Sets the value of the bsn property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBsn(String value) { + this.bsn = value; + } + + /** + * Gets the value of the geslachtsnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeslachtsnaam() { + return geslachtsnaam; + } + + /** + * Sets the value of the geslachtsnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeslachtsnaam(String value) { + this.geslachtsnaam = value; + } + + /** + * Gets the value of the voorvoegselGeslachtsnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVoorvoegselGeslachtsnaam() { + return voorvoegselGeslachtsnaam; + } + + /** + * Sets the value of the voorvoegselGeslachtsnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVoorvoegselGeslachtsnaam(String value) { + this.voorvoegselGeslachtsnaam = value; + } + + /** + * Gets the value of the voornamen property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVoornamen() { + return voornamen; + } + + /** + * Sets the value of the voornamen property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVoornamen(String value) { + this.voornamen = value; + } + + /** + * Gets the value of the geslacht property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeslacht() { + return geslacht; + } + + /** + * Sets the value of the geslacht property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeslacht(String value) { + this.geslacht = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtNietNatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtNietNatuurlijkPersoon.java new file mode 100644 index 0000000..2d73409 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtNietNatuurlijkPersoon.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterOverzichtNietNatuurlijkPersoon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterOverzichtNietNatuurlijkPersoon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="naam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="rechtsvorm" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="bedrijven_nummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterOverzichtNietNatuurlijkPersoon", propOrder = { + +}) +public class KadasterOverzichtNietNatuurlijkPersoon { + + protected String naam; + @XmlElement(required = true) + protected String rechtsvorm; + @XmlElement(name = "bedrijven_nummer") + protected String bedrijvenNummer; + + /** + * Gets the value of the naam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNaam() { + return naam; + } + + /** + * Sets the value of the naam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNaam(String value) { + this.naam = value; + } + + /** + * Gets the value of the rechtsvorm property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRechtsvorm() { + return rechtsvorm; + } + + /** + * Sets the value of the rechtsvorm property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRechtsvorm(String value) { + this.rechtsvorm = value; + } + + /** + * Gets the value of the bedrijvenNummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBedrijvenNummer() { + return bedrijvenNummer; + } + + /** + * Sets the value of the bedrijvenNummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBedrijvenNummer(String value) { + this.bedrijvenNummer = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtOnroerendeZaak.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtOnroerendeZaak.java new file mode 100644 index 0000000..3173db4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtOnroerendeZaak.java @@ -0,0 +1,175 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterOverzichtOnroerendeZaak complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterOverzichtOnroerendeZaak">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="kadastrale_aanduiding" type="{http://www.webservices.nl/soap/}KadastraleAanduiding"/>
+ *         <element name="locatie" type="{http://www.webservices.nl/soap/}kadasterLocatieBinnenland" minOccurs="0"/>
+ *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterOverzichtOnroerendeZaak", propOrder = { + +}) +public class KadasterOverzichtOnroerendeZaak { + + @XmlElement(name = "object_id", required = true) + protected String objectId; + @XmlElement(name = "kadastrale_aanduiding", required = true) + protected KadastraleAanduiding kadastraleAanduiding; + protected KadasterLocatieBinnenland locatie; + protected String omschrijving; + @XmlElement(required = true) + protected String type; + + /** + * Gets the value of the objectId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjectId() { + return objectId; + } + + /** + * Sets the value of the objectId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjectId(String value) { + this.objectId = value; + } + + /** + * Gets the value of the kadastraleAanduiding property. + * + * @return + * possible object is + * {@link KadastraleAanduiding } + * + */ + public KadastraleAanduiding getKadastraleAanduiding() { + return kadastraleAanduiding; + } + + /** + * Sets the value of the kadastraleAanduiding property. + * + * @param value + * allowed object is + * {@link KadastraleAanduiding } + * + */ + public void setKadastraleAanduiding(KadastraleAanduiding value) { + this.kadastraleAanduiding = value; + } + + /** + * Gets the value of the locatie property. + * + * @return + * possible object is + * {@link KadasterLocatieBinnenland } + * + */ + public KadasterLocatieBinnenland getLocatie() { + return locatie; + } + + /** + * Sets the value of the locatie property. + * + * @param value + * allowed object is + * {@link KadasterLocatieBinnenland } + * + */ + public void setLocatie(KadasterLocatieBinnenland value) { + this.locatie = value; + } + + /** + * Gets the value of the omschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijving() { + return omschrijving; + } + + /** + * Sets the value of the omschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijving(String value) { + this.omschrijving = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtOnroerendeZaakArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtOnroerendeZaakArray.java new file mode 100644 index 0000000..8636bc2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtOnroerendeZaakArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterOverzichtOnroerendeZaakArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterOverzichtOnroerendeZaakArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterOverzichtOnroerendeZaak" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterOverzichtOnroerendeZaakArray", propOrder = { + "item" +}) +public class KadasterOverzichtOnroerendeZaakArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterOverzichtOnroerendeZaak } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoon.java new file mode 100644 index 0000000..35338a3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoon.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterOverzichtPersoon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterOverzichtPersoon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="akr_subject_nr" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="kadastrale_identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="natuurlijk_persoon" type="{http://www.webservices.nl/soap/}kadasterOverzichtNatuurlijkPersoon" minOccurs="0"/>
+ *         <element name="niet_natuurlijk_persoon" type="{http://www.webservices.nl/soap/}kadasterOverzichtNietNatuurlijkPersoon" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterOverzichtPersoon", propOrder = { + +}) +public class KadasterOverzichtPersoon { + + @XmlElement(name = "akr_subject_nr", required = true) + protected String akrSubjectNr; + @XmlElement(name = "kadastrale_identificatie") + protected String kadastraleIdentificatie; + @XmlElement(name = "natuurlijk_persoon") + protected KadasterOverzichtNatuurlijkPersoon natuurlijkPersoon; + @XmlElement(name = "niet_natuurlijk_persoon") + protected KadasterOverzichtNietNatuurlijkPersoon nietNatuurlijkPersoon; + + /** + * Gets the value of the akrSubjectNr property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAkrSubjectNr() { + return akrSubjectNr; + } + + /** + * Sets the value of the akrSubjectNr property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAkrSubjectNr(String value) { + this.akrSubjectNr = value; + } + + /** + * Gets the value of the kadastraleIdentificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKadastraleIdentificatie() { + return kadastraleIdentificatie; + } + + /** + * Sets the value of the kadastraleIdentificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKadastraleIdentificatie(String value) { + this.kadastraleIdentificatie = value; + } + + /** + * Gets the value of the natuurlijkPersoon property. + * + * @return + * possible object is + * {@link KadasterOverzichtNatuurlijkPersoon } + * + */ + public KadasterOverzichtNatuurlijkPersoon getNatuurlijkPersoon() { + return natuurlijkPersoon; + } + + /** + * Sets the value of the natuurlijkPersoon property. + * + * @param value + * allowed object is + * {@link KadasterOverzichtNatuurlijkPersoon } + * + */ + public void setNatuurlijkPersoon(KadasterOverzichtNatuurlijkPersoon value) { + this.natuurlijkPersoon = value; + } + + /** + * Gets the value of the nietNatuurlijkPersoon property. + * + * @return + * possible object is + * {@link KadasterOverzichtNietNatuurlijkPersoon } + * + */ + public KadasterOverzichtNietNatuurlijkPersoon getNietNatuurlijkPersoon() { + return nietNatuurlijkPersoon; + } + + /** + * Sets the value of the nietNatuurlijkPersoon property. + * + * @param value + * allowed object is + * {@link KadasterOverzichtNietNatuurlijkPersoon } + * + */ + public void setNietNatuurlijkPersoon(KadasterOverzichtNietNatuurlijkPersoon value) { + this.nietNatuurlijkPersoon = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonArray.java new file mode 100644 index 0000000..4751bcc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterOverzichtPersoonArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterOverzichtPersoonArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterOverzichtPersoon" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterOverzichtPersoonArray", propOrder = { + "item" +}) +public class KadasterOverzichtPersoonArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterOverzichtPersoon } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonV2.java new file mode 100644 index 0000000..1333add --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonV2.java @@ -0,0 +1,176 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterOverzichtPersoonV2 complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterOverzichtPersoonV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="akr_subject_nr" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="kadastrale_identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="natuurlijk_persoon" type="{http://www.webservices.nl/soap/}kadasterOverzichtNatuurlijkPersoon" minOccurs="0"/>
+ *         <element name="niet_natuurlijk_persoon" type="{http://www.webservices.nl/soap/}kadasterOverzichtNietNatuurlijkPersoon" minOccurs="0"/>
+ *         <element name="melding" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterOverzichtPersoonV2", propOrder = { + +}) +public class KadasterOverzichtPersoonV2 { + + @XmlElement(name = "akr_subject_nr", required = true) + protected String akrSubjectNr; + @XmlElement(name = "kadastrale_identificatie") + protected String kadastraleIdentificatie; + @XmlElement(name = "natuurlijk_persoon") + protected KadasterOverzichtNatuurlijkPersoon natuurlijkPersoon; + @XmlElement(name = "niet_natuurlijk_persoon") + protected KadasterOverzichtNietNatuurlijkPersoon nietNatuurlijkPersoon; + protected String melding; + + /** + * Gets the value of the akrSubjectNr property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAkrSubjectNr() { + return akrSubjectNr; + } + + /** + * Sets the value of the akrSubjectNr property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAkrSubjectNr(String value) { + this.akrSubjectNr = value; + } + + /** + * Gets the value of the kadastraleIdentificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKadastraleIdentificatie() { + return kadastraleIdentificatie; + } + + /** + * Sets the value of the kadastraleIdentificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKadastraleIdentificatie(String value) { + this.kadastraleIdentificatie = value; + } + + /** + * Gets the value of the natuurlijkPersoon property. + * + * @return + * possible object is + * {@link KadasterOverzichtNatuurlijkPersoon } + * + */ + public KadasterOverzichtNatuurlijkPersoon getNatuurlijkPersoon() { + return natuurlijkPersoon; + } + + /** + * Sets the value of the natuurlijkPersoon property. + * + * @param value + * allowed object is + * {@link KadasterOverzichtNatuurlijkPersoon } + * + */ + public void setNatuurlijkPersoon(KadasterOverzichtNatuurlijkPersoon value) { + this.natuurlijkPersoon = value; + } + + /** + * Gets the value of the nietNatuurlijkPersoon property. + * + * @return + * possible object is + * {@link KadasterOverzichtNietNatuurlijkPersoon } + * + */ + public KadasterOverzichtNietNatuurlijkPersoon getNietNatuurlijkPersoon() { + return nietNatuurlijkPersoon; + } + + /** + * Sets the value of the nietNatuurlijkPersoon property. + * + * @param value + * allowed object is + * {@link KadasterOverzichtNietNatuurlijkPersoon } + * + */ + public void setNietNatuurlijkPersoon(KadasterOverzichtNietNatuurlijkPersoon value) { + this.nietNatuurlijkPersoon = value; + } + + /** + * Gets the value of the melding property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMelding() { + return melding; + } + + /** + * Sets the value of the melding property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMelding(String value) { + this.melding = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonV2Array.java new file mode 100644 index 0000000..ba95642 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterOverzichtPersoonV2Array complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterOverzichtPersoonV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterOverzichtPersoonV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterOverzichtPersoonV2Array", propOrder = { + "item" +}) +public class KadasterOverzichtPersoonV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterOverzichtPersoonV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtRecht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtRecht.java new file mode 100644 index 0000000..d0bd90b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtRecht.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterOverzichtRecht complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterOverzichtRecht">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gerechtigde_akr" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gerechtigde_kadastrale_identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterOverzichtRecht", propOrder = { + +}) +public class KadasterOverzichtRecht { + + @XmlElement(name = "object_id", required = true) + protected String objectId; + @XmlElement(name = "gerechtigde_akr", required = true) + protected String gerechtigdeAkr; + @XmlElement(name = "gerechtigde_kadastrale_identificatie") + protected String gerechtigdeKadastraleIdentificatie; + + /** + * Gets the value of the objectId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjectId() { + return objectId; + } + + /** + * Sets the value of the objectId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjectId(String value) { + this.objectId = value; + } + + /** + * Gets the value of the gerechtigdeAkr property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGerechtigdeAkr() { + return gerechtigdeAkr; + } + + /** + * Sets the value of the gerechtigdeAkr property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGerechtigdeAkr(String value) { + this.gerechtigdeAkr = value; + } + + /** + * Gets the value of the gerechtigdeKadastraleIdentificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGerechtigdeKadastraleIdentificatie() { + return gerechtigdeKadastraleIdentificatie; + } + + /** + * Sets the value of the gerechtigdeKadastraleIdentificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGerechtigdeKadastraleIdentificatie(String value) { + this.gerechtigdeKadastraleIdentificatie = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtRechtArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtRechtArray.java new file mode 100644 index 0000000..a886bbb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtRechtArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterOverzichtRechtArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterOverzichtRechtArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterOverzichtRecht" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterOverzichtRechtArray", propOrder = { + "item" +}) +public class KadasterOverzichtRechtArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterOverzichtRecht } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtV2.java new file mode 100644 index 0000000..ca64285 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtV2.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterOverzichtV2 complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterOverzichtV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="onroerende_zaken" type="{http://www.webservices.nl/soap/}kadasterOverzichtOnroerendeZaakArray"/>
+ *         <element name="rechten" type="{http://www.webservices.nl/soap/}kadasterOverzichtRechtArray"/>
+ *         <element name="personen" type="{http://www.webservices.nl/soap/}kadasterOverzichtPersoonV2Array"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterOverzichtV2", propOrder = { + +}) +public class KadasterOverzichtV2 { + + @XmlElement(name = "onroerende_zaken", required = true) + protected KadasterOverzichtOnroerendeZaakArray onroerendeZaken; + @XmlElement(required = true) + protected KadasterOverzichtRechtArray rechten; + @XmlElement(required = true) + protected KadasterOverzichtPersoonV2Array personen; + + /** + * Gets the value of the onroerendeZaken property. + * + * @return + * possible object is + * {@link KadasterOverzichtOnroerendeZaakArray } + * + */ + public KadasterOverzichtOnroerendeZaakArray getOnroerendeZaken() { + return onroerendeZaken; + } + + /** + * Sets the value of the onroerendeZaken property. + * + * @param value + * allowed object is + * {@link KadasterOverzichtOnroerendeZaakArray } + * + */ + public void setOnroerendeZaken(KadasterOverzichtOnroerendeZaakArray value) { + this.onroerendeZaken = value; + } + + /** + * Gets the value of the rechten property. + * + * @return + * possible object is + * {@link KadasterOverzichtRechtArray } + * + */ + public KadasterOverzichtRechtArray getRechten() { + return rechten; + } + + /** + * Sets the value of the rechten property. + * + * @param value + * allowed object is + * {@link KadasterOverzichtRechtArray } + * + */ + public void setRechten(KadasterOverzichtRechtArray value) { + this.rechten = value; + } + + /** + * Gets the value of the personen property. + * + * @return + * possible object is + * {@link KadasterOverzichtPersoonV2Array } + * + */ + public KadasterOverzichtPersoonV2Array getPersonen() { + return personen; + } + + /** + * Sets the value of the personen property. + * + * @param value + * allowed object is + * {@link KadasterOverzichtPersoonV2Array } + * + */ + public void setPersonen(KadasterOverzichtPersoonV2Array value) { + this.personen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoon.java new file mode 100644 index 0000000..d563238 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoon.java @@ -0,0 +1,256 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterPersoon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterPersoon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="akr_subject_nr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="kadastrale_identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="natuurlijk_persoon" type="{http://www.webservices.nl/soap/}kadasterNatuurlijkPersoon" minOccurs="0"/>
+ *         <element name="niet_natuurlijk_persoon" type="{http://www.webservices.nl/soap/}kadasterNietNatuurlijkPersoon" minOccurs="0"/>
+ *         <element name="aantekening_beschikkingsbevoegdheid" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="woonlocatie" type="{http://www.webservices.nl/soap/}kadasterLocatie" minOccurs="0"/>
+ *         <element name="postlocatie" type="{http://www.webservices.nl/soap/}kadasterLocatie" minOccurs="0"/>
+ *         <element name="domicilie_keuzes" type="{http://www.webservices.nl/soap/}kadasterDomicilieKeuzeLijst" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterPersoon", propOrder = { + +}) +public class KadasterPersoon { + + @XmlElement(name = "akr_subject_nr") + protected String akrSubjectNr; + @XmlElement(name = "kadastrale_identificatie") + protected String kadastraleIdentificatie; + @XmlElement(name = "natuurlijk_persoon") + protected KadasterNatuurlijkPersoon natuurlijkPersoon; + @XmlElement(name = "niet_natuurlijk_persoon") + protected KadasterNietNatuurlijkPersoon nietNatuurlijkPersoon; + @XmlElement(name = "aantekening_beschikkingsbevoegdheid") + protected Boolean aantekeningBeschikkingsbevoegdheid; + protected KadasterLocatie woonlocatie; + protected KadasterLocatie postlocatie; + @XmlElement(name = "domicilie_keuzes") + protected KadasterDomicilieKeuzeLijst domicilieKeuzes; + + /** + * Gets the value of the akrSubjectNr property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAkrSubjectNr() { + return akrSubjectNr; + } + + /** + * Sets the value of the akrSubjectNr property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAkrSubjectNr(String value) { + this.akrSubjectNr = value; + } + + /** + * Gets the value of the kadastraleIdentificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKadastraleIdentificatie() { + return kadastraleIdentificatie; + } + + /** + * Sets the value of the kadastraleIdentificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKadastraleIdentificatie(String value) { + this.kadastraleIdentificatie = value; + } + + /** + * Gets the value of the natuurlijkPersoon property. + * + * @return + * possible object is + * {@link KadasterNatuurlijkPersoon } + * + */ + public KadasterNatuurlijkPersoon getNatuurlijkPersoon() { + return natuurlijkPersoon; + } + + /** + * Sets the value of the natuurlijkPersoon property. + * + * @param value + * allowed object is + * {@link KadasterNatuurlijkPersoon } + * + */ + public void setNatuurlijkPersoon(KadasterNatuurlijkPersoon value) { + this.natuurlijkPersoon = value; + } + + /** + * Gets the value of the nietNatuurlijkPersoon property. + * + * @return + * possible object is + * {@link KadasterNietNatuurlijkPersoon } + * + */ + public KadasterNietNatuurlijkPersoon getNietNatuurlijkPersoon() { + return nietNatuurlijkPersoon; + } + + /** + * Sets the value of the nietNatuurlijkPersoon property. + * + * @param value + * allowed object is + * {@link KadasterNietNatuurlijkPersoon } + * + */ + public void setNietNatuurlijkPersoon(KadasterNietNatuurlijkPersoon value) { + this.nietNatuurlijkPersoon = value; + } + + /** + * Gets the value of the aantekeningBeschikkingsbevoegdheid property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isAantekeningBeschikkingsbevoegdheid() { + return aantekeningBeschikkingsbevoegdheid; + } + + /** + * Sets the value of the aantekeningBeschikkingsbevoegdheid property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setAantekeningBeschikkingsbevoegdheid(Boolean value) { + this.aantekeningBeschikkingsbevoegdheid = value; + } + + /** + * Gets the value of the woonlocatie property. + * + * @return + * possible object is + * {@link KadasterLocatie } + * + */ + public KadasterLocatie getWoonlocatie() { + return woonlocatie; + } + + /** + * Sets the value of the woonlocatie property. + * + * @param value + * allowed object is + * {@link KadasterLocatie } + * + */ + public void setWoonlocatie(KadasterLocatie value) { + this.woonlocatie = value; + } + + /** + * Gets the value of the postlocatie property. + * + * @return + * possible object is + * {@link KadasterLocatie } + * + */ + public KadasterLocatie getPostlocatie() { + return postlocatie; + } + + /** + * Sets the value of the postlocatie property. + * + * @param value + * allowed object is + * {@link KadasterLocatie } + * + */ + public void setPostlocatie(KadasterLocatie value) { + this.postlocatie = value; + } + + /** + * Gets the value of the domicilieKeuzes property. + * + * @return + * possible object is + * {@link KadasterDomicilieKeuzeLijst } + * + */ + public KadasterDomicilieKeuzeLijst getDomicilieKeuzes() { + return domicilieKeuzes; + } + + /** + * Sets the value of the domicilieKeuzes property. + * + * @param value + * allowed object is + * {@link KadasterDomicilieKeuzeLijst } + * + */ + public void setDomicilieKeuzes(KadasterDomicilieKeuzeLijst value) { + this.domicilieKeuzes = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoonArray.java new file mode 100644 index 0000000..c00f3d4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoonArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterPersoonArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterPersoonArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterPersoon" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterPersoonArray", propOrder = { + "item" +}) +public class KadasterPersoonArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterPersoon } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoonLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoonLijst.java new file mode 100644 index 0000000..50f8032 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoonLijst.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterPersoonLijst complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterPersoonLijst">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="personen" type="{http://www.webservices.nl/soap/}kadasterPersoonArray"/>
+ *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterPersoonLijst", propOrder = { + +}) +public class KadasterPersoonLijst { + + @XmlElement(required = true) + protected KadasterPersoonArray personen; + @XmlElement(name = "indicatie_compleet") + protected boolean indicatieCompleet; + + /** + * Gets the value of the personen property. + * + * @return + * possible object is + * {@link KadasterPersoonArray } + * + */ + public KadasterPersoonArray getPersonen() { + return personen; + } + + /** + * Sets the value of the personen property. + * + * @param value + * allowed object is + * {@link KadasterPersoonArray } + * + */ + public void setPersonen(KadasterPersoonArray value) { + this.personen = value; + } + + /** + * Gets the value of the indicatieCompleet property. + * + */ + public boolean isIndicatieCompleet() { + return indicatieCompleet; + } + + /** + * Sets the value of the indicatieCompleet property. + * + */ + public void setIndicatieCompleet(boolean value) { + this.indicatieCompleet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeel.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeel.java new file mode 100644 index 0000000..0489640 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeel.java @@ -0,0 +1,308 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterStukdeel complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterStukdeel">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="aard_stukdeel_omschrijving" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="hypotheek" type="{http://www.webservices.nl/soap/}kadasterHypotheek" minOccurs="0"/>
+ *         <element name="schuldeisers_beslagleggers" type="{http://www.webservices.nl/soap/}kadasterPersoonLijst" minOccurs="0"/>
+ *         <element name="vordering" type="{http://www.webservices.nl/soap/}kadasterBedrag" minOccurs="0"/>
+ *         <element name="rechten" type="{http://www.webservices.nl/soap/}kadasterStukdeelRechtArray" minOccurs="0"/>
+ *         <element name="onroerende_zaken" type="{http://www.webservices.nl/soap/}kadasterBeknoptOnroerendeZaakArray" minOccurs="0"/>
+ *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="stukdeel_relaties" type="{http://www.webservices.nl/soap/}kadasterStukdeelReferentiesLijst" minOccurs="0"/>
+ *         <element name="hoort_bij" type="{http://www.webservices.nl/soap/}kadasterGerelateerdStukdeelArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterStukdeel", propOrder = { + +}) +public class KadasterStukdeel { + + @XmlElement(required = true) + protected String id; + @XmlElement(name = "aard_stukdeel_omschrijving", required = true) + protected String aardStukdeelOmschrijving; + protected KadasterHypotheek hypotheek; + @XmlElement(name = "schuldeisers_beslagleggers") + protected KadasterPersoonLijst schuldeisersBeslagleggers; + protected KadasterBedrag vordering; + protected KadasterStukdeelRechtArray rechten; + @XmlElement(name = "onroerende_zaken") + protected KadasterBeknoptOnroerendeZaakArray onroerendeZaken; + protected String omschrijving; + @XmlElement(name = "stukdeel_relaties") + protected KadasterStukdeelReferentiesLijst stukdeelRelaties; + @XmlElement(name = "hoort_bij") + protected KadasterGerelateerdStukdeelArray hoortBij; + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the aardStukdeelOmschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAardStukdeelOmschrijving() { + return aardStukdeelOmschrijving; + } + + /** + * Sets the value of the aardStukdeelOmschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAardStukdeelOmschrijving(String value) { + this.aardStukdeelOmschrijving = value; + } + + /** + * Gets the value of the hypotheek property. + * + * @return + * possible object is + * {@link KadasterHypotheek } + * + */ + public KadasterHypotheek getHypotheek() { + return hypotheek; + } + + /** + * Sets the value of the hypotheek property. + * + * @param value + * allowed object is + * {@link KadasterHypotheek } + * + */ + public void setHypotheek(KadasterHypotheek value) { + this.hypotheek = value; + } + + /** + * Gets the value of the schuldeisersBeslagleggers property. + * + * @return + * possible object is + * {@link KadasterPersoonLijst } + * + */ + public KadasterPersoonLijst getSchuldeisersBeslagleggers() { + return schuldeisersBeslagleggers; + } + + /** + * Sets the value of the schuldeisersBeslagleggers property. + * + * @param value + * allowed object is + * {@link KadasterPersoonLijst } + * + */ + public void setSchuldeisersBeslagleggers(KadasterPersoonLijst value) { + this.schuldeisersBeslagleggers = value; + } + + /** + * Gets the value of the vordering property. + * + * @return + * possible object is + * {@link KadasterBedrag } + * + */ + public KadasterBedrag getVordering() { + return vordering; + } + + /** + * Sets the value of the vordering property. + * + * @param value + * allowed object is + * {@link KadasterBedrag } + * + */ + public void setVordering(KadasterBedrag value) { + this.vordering = value; + } + + /** + * Gets the value of the rechten property. + * + * @return + * possible object is + * {@link KadasterStukdeelRechtArray } + * + */ + public KadasterStukdeelRechtArray getRechten() { + return rechten; + } + + /** + * Sets the value of the rechten property. + * + * @param value + * allowed object is + * {@link KadasterStukdeelRechtArray } + * + */ + public void setRechten(KadasterStukdeelRechtArray value) { + this.rechten = value; + } + + /** + * Gets the value of the onroerendeZaken property. + * + * @return + * possible object is + * {@link KadasterBeknoptOnroerendeZaakArray } + * + */ + public KadasterBeknoptOnroerendeZaakArray getOnroerendeZaken() { + return onroerendeZaken; + } + + /** + * Sets the value of the onroerendeZaken property. + * + * @param value + * allowed object is + * {@link KadasterBeknoptOnroerendeZaakArray } + * + */ + public void setOnroerendeZaken(KadasterBeknoptOnroerendeZaakArray value) { + this.onroerendeZaken = value; + } + + /** + * Gets the value of the omschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijving() { + return omschrijving; + } + + /** + * Sets the value of the omschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijving(String value) { + this.omschrijving = value; + } + + /** + * Gets the value of the stukdeelRelaties property. + * + * @return + * possible object is + * {@link KadasterStukdeelReferentiesLijst } + * + */ + public KadasterStukdeelReferentiesLijst getStukdeelRelaties() { + return stukdeelRelaties; + } + + /** + * Sets the value of the stukdeelRelaties property. + * + * @param value + * allowed object is + * {@link KadasterStukdeelReferentiesLijst } + * + */ + public void setStukdeelRelaties(KadasterStukdeelReferentiesLijst value) { + this.stukdeelRelaties = value; + } + + /** + * Gets the value of the hoortBij property. + * + * @return + * possible object is + * {@link KadasterGerelateerdStukdeelArray } + * + */ + public KadasterGerelateerdStukdeelArray getHoortBij() { + return hoortBij; + } + + /** + * Sets the value of the hoortBij property. + * + * @param value + * allowed object is + * {@link KadasterGerelateerdStukdeelArray } + * + */ + public void setHoortBij(KadasterGerelateerdStukdeelArray value) { + this.hoortBij = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelArray.java new file mode 100644 index 0000000..63287fa --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterStukdeelArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterStukdeelArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterStukdeel" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterStukdeelArray", propOrder = { + "item" +}) +public class KadasterStukdeelArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterStukdeel } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelRecht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelRecht.java new file mode 100644 index 0000000..41d2baf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelRecht.java @@ -0,0 +1,230 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterStukdeelRecht complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterStukdeelRecht">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="aandeel_in_recht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="totaal_aandeel_in_recht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gerelateerd_recht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterStukdeelRecht", propOrder = { + +}) +public class KadasterStukdeelRecht { + + @XmlElement(required = true) + protected String id; + @XmlElement(required = true) + protected String type; + protected String omschrijving; + @XmlElement(name = "aandeel_in_recht") + protected String aandeelInRecht; + @XmlElement(name = "totaal_aandeel_in_recht") + protected String totaalAandeelInRecht; + @XmlElement(name = "object_id", required = true) + protected String objectId; + @XmlElement(name = "gerelateerd_recht") + protected String gerelateerdRecht; + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the omschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijving() { + return omschrijving; + } + + /** + * Sets the value of the omschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijving(String value) { + this.omschrijving = value; + } + + /** + * Gets the value of the aandeelInRecht property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAandeelInRecht() { + return aandeelInRecht; + } + + /** + * Sets the value of the aandeelInRecht property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAandeelInRecht(String value) { + this.aandeelInRecht = value; + } + + /** + * Gets the value of the totaalAandeelInRecht property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTotaalAandeelInRecht() { + return totaalAandeelInRecht; + } + + /** + * Sets the value of the totaalAandeelInRecht property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTotaalAandeelInRecht(String value) { + this.totaalAandeelInRecht = value; + } + + /** + * Gets the value of the objectId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjectId() { + return objectId; + } + + /** + * Sets the value of the objectId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjectId(String value) { + this.objectId = value; + } + + /** + * Gets the value of the gerelateerdRecht property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGerelateerdRecht() { + return gerelateerdRecht; + } + + /** + * Sets the value of the gerelateerdRecht property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGerelateerdRecht(String value) { + this.gerelateerdRecht = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelRechtArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelRechtArray.java new file mode 100644 index 0000000..a5560b6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelRechtArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterStukdeelRechtArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterStukdeelRechtArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterStukdeelRecht" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterStukdeelRechtArray", propOrder = { + "item" +}) +public class KadasterStukdeelRechtArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterStukdeelRecht } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelReferentiesLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelReferentiesLijst.java new file mode 100644 index 0000000..1fc3520 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelReferentiesLijst.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterStukdeelReferentiesLijst complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterStukdeelReferentiesLijst">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="stukdelen" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterStukdeelReferentiesLijst", propOrder = { + +}) +public class KadasterStukdeelReferentiesLijst { + + @XmlElement(required = true) + protected StringArray stukdelen; + @XmlElement(name = "indicatie_compleet") + protected Boolean indicatieCompleet; + + /** + * Gets the value of the stukdelen property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getStukdelen() { + return stukdelen; + } + + /** + * Sets the value of the stukdelen property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setStukdelen(StringArray value) { + this.stukdelen = value; + } + + /** + * Gets the value of the indicatieCompleet property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicatieCompleet() { + return indicatieCompleet; + } + + /** + * Sets the value of the indicatieCompleet property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicatieCompleet(Boolean value) { + this.indicatieCompleet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelRequestType.java new file mode 100644 index 0000000..f579bb5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelRequestType.java @@ -0,0 +1,231 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterUittrekselKadastraleKaartPerceelRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterUittrekselKadastraleKaartPerceelRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterUittrekselKadastraleKaartPerceelRequestType", propOrder = { + +}) +public class KadasterUittrekselKadastraleKaartPerceelRequestType { + + @XmlElement(required = true) + protected String gemeentecode; + @XmlElement(required = true) + protected String gemeentenaam; + @XmlElement(required = true) + protected String sectie; + @XmlElement(required = true) + protected String perceelnummer; + @XmlElement(required = true) + protected String relatiecode; + @XmlElement(required = true) + protected String volgnummer; + @XmlElement(required = true) + protected String format; + + /** + * Gets the value of the gemeentecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentecode() { + return gemeentecode; + } + + /** + * Sets the value of the gemeentecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentecode(String value) { + this.gemeentecode = value; + } + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the sectie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectie() { + return sectie; + } + + /** + * Sets the value of the sectie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectie(String value) { + this.sectie = value; + } + + /** + * Gets the value of the perceelnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPerceelnummer(String value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the relatiecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRelatiecode() { + return relatiecode; + } + + /** + * Sets the value of the relatiecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRelatiecode(String value) { + this.relatiecode = value; + } + + /** + * Gets the value of the volgnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVolgnummer() { + return volgnummer; + } + + /** + * Sets the value of the volgnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVolgnummer(String value) { + this.volgnummer = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelResponseType.java new file mode 100644 index 0000000..70efc52 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterUittrekselKadastraleKaartPerceelResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterUittrekselKadastraleKaartPerceelResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="uittreksel" type="{http://www.webservices.nl/soap/}UittrekselKadastraleKaart"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterUittrekselKadastraleKaartPerceelResponseType", propOrder = { + +}) +public class KadasterUittrekselKadastraleKaartPerceelResponseType { + + @XmlElement(required = true) + protected UittrekselKadastraleKaart uittreksel; + + /** + * Gets the value of the uittreksel property. + * + * @return + * possible object is + * {@link UittrekselKadastraleKaart } + * + */ + public UittrekselKadastraleKaart getUittreksel() { + return uittreksel; + } + + /** + * Sets the value of the uittreksel property. + * + * @param value + * allowed object is + * {@link UittrekselKadastraleKaart } + * + */ + public void setUittreksel(UittrekselKadastraleKaart value) { + this.uittreksel = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV2RequestType.java new file mode 100644 index 0000000..ad82ace --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV2RequestType.java @@ -0,0 +1,231 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterUittrekselKadastraleKaartPerceelV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterUittrekselKadastraleKaartPerceelV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterUittrekselKadastraleKaartPerceelV2RequestType", propOrder = { + +}) +public class KadasterUittrekselKadastraleKaartPerceelV2RequestType { + + @XmlElement(required = true) + protected String gemeentecode; + @XmlElement(required = true) + protected String gemeentenaam; + @XmlElement(required = true) + protected String sectie; + @XmlElement(required = true) + protected String perceelnummer; + @XmlElement(required = true) + protected String relatiecode; + @XmlElement(required = true) + protected String volgnummer; + @XmlElement(required = true) + protected String format; + + /** + * Gets the value of the gemeentecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentecode() { + return gemeentecode; + } + + /** + * Sets the value of the gemeentecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentecode(String value) { + this.gemeentecode = value; + } + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the sectie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectie() { + return sectie; + } + + /** + * Sets the value of the sectie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectie(String value) { + this.sectie = value; + } + + /** + * Gets the value of the perceelnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPerceelnummer(String value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the relatiecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRelatiecode() { + return relatiecode; + } + + /** + * Sets the value of the relatiecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRelatiecode(String value) { + this.relatiecode = value; + } + + /** + * Gets the value of the volgnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVolgnummer() { + return volgnummer; + } + + /** + * Sets the value of the volgnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVolgnummer(String value) { + this.volgnummer = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV2ResponseType.java new file mode 100644 index 0000000..52c3221 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterUittrekselKadastraleKaartPerceelV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterUittrekselKadastraleKaartPerceelV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterUittrekselKadastraleKaartResultaat"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterUittrekselKadastraleKaartPerceelV2ResponseType", propOrder = { + +}) +public class KadasterUittrekselKadastraleKaartPerceelV2ResponseType { + + @XmlElement(required = true) + protected KadasterUittrekselKadastraleKaartResultaat out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KadasterUittrekselKadastraleKaartResultaat } + * + */ + public KadasterUittrekselKadastraleKaartResultaat getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KadasterUittrekselKadastraleKaartResultaat } + * + */ + public void setOut(KadasterUittrekselKadastraleKaartResultaat value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV3RequestType.java new file mode 100644 index 0000000..4ca1f91 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV3RequestType.java @@ -0,0 +1,231 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterUittrekselKadastraleKaartPerceelV3RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterUittrekselKadastraleKaartPerceelV3RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterUittrekselKadastraleKaartPerceelV3RequestType", propOrder = { + +}) +public class KadasterUittrekselKadastraleKaartPerceelV3RequestType { + + @XmlElement(required = true) + protected String gemeentecode; + @XmlElement(required = true) + protected String gemeentenaam; + @XmlElement(required = true) + protected String sectie; + @XmlElement(required = true) + protected String perceelnummer; + @XmlElement(required = true) + protected String relatiecode; + @XmlElement(required = true) + protected String volgnummer; + @XmlElement(required = true) + protected String format; + + /** + * Gets the value of the gemeentecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentecode() { + return gemeentecode; + } + + /** + * Sets the value of the gemeentecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentecode(String value) { + this.gemeentecode = value; + } + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the sectie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectie() { + return sectie; + } + + /** + * Sets the value of the sectie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectie(String value) { + this.sectie = value; + } + + /** + * Gets the value of the perceelnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPerceelnummer(String value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the relatiecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRelatiecode() { + return relatiecode; + } + + /** + * Sets the value of the relatiecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRelatiecode(String value) { + this.relatiecode = value; + } + + /** + * Gets the value of the volgnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVolgnummer() { + return volgnummer; + } + + /** + * Sets the value of the volgnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVolgnummer(String value) { + this.volgnummer = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV3ResponseType.java new file mode 100644 index 0000000..c0a3684 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV3ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterUittrekselKadastraleKaartPerceelV3ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterUittrekselKadastraleKaartPerceelV3ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterUittrekselKadastraleKaartResultaatV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterUittrekselKadastraleKaartPerceelV3ResponseType", propOrder = { + +}) +public class KadasterUittrekselKadastraleKaartPerceelV3ResponseType { + + @XmlElement(required = true) + protected KadasterUittrekselKadastraleKaartResultaatV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KadasterUittrekselKadastraleKaartResultaatV2 } + * + */ + public KadasterUittrekselKadastraleKaartResultaatV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KadasterUittrekselKadastraleKaartResultaatV2 } + * + */ + public void setOut(KadasterUittrekselKadastraleKaartResultaatV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeRequestType.java new file mode 100644 index 0000000..dc5edaa --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeRequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterUittrekselKadastraleKaartPostcodeRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterUittrekselKadastraleKaartPostcodeRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterUittrekselKadastraleKaartPostcodeRequestType", propOrder = { + +}) +public class KadasterUittrekselKadastraleKaartPostcodeRequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + @XmlElement(required = true) + protected String format; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeResponseType.java new file mode 100644 index 0000000..38a18ca --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterUittrekselKadastraleKaartPostcodeResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterUittrekselKadastraleKaartPostcodeResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="uittreksel" type="{http://www.webservices.nl/soap/}UittrekselKadastraleKaart"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterUittrekselKadastraleKaartPostcodeResponseType", propOrder = { + +}) +public class KadasterUittrekselKadastraleKaartPostcodeResponseType { + + @XmlElement(required = true) + protected UittrekselKadastraleKaart uittreksel; + + /** + * Gets the value of the uittreksel property. + * + * @return + * possible object is + * {@link UittrekselKadastraleKaart } + * + */ + public UittrekselKadastraleKaart getUittreksel() { + return uittreksel; + } + + /** + * Sets the value of the uittreksel property. + * + * @param value + * allowed object is + * {@link UittrekselKadastraleKaart } + * + */ + public void setUittreksel(UittrekselKadastraleKaart value) { + this.uittreksel = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV2RequestType.java new file mode 100644 index 0000000..07b6ca0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV2RequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterUittrekselKadastraleKaartPostcodeV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterUittrekselKadastraleKaartPostcodeV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterUittrekselKadastraleKaartPostcodeV2RequestType", propOrder = { + +}) +public class KadasterUittrekselKadastraleKaartPostcodeV2RequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + @XmlElement(required = true) + protected String format; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV2ResponseType.java new file mode 100644 index 0000000..1ad4a63 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterUittrekselKadastraleKaartPostcodeV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterUittrekselKadastraleKaartPostcodeV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterUittrekselKadastraleKaartResultaat"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterUittrekselKadastraleKaartPostcodeV2ResponseType", propOrder = { + +}) +public class KadasterUittrekselKadastraleKaartPostcodeV2ResponseType { + + @XmlElement(required = true) + protected KadasterUittrekselKadastraleKaartResultaat out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KadasterUittrekselKadastraleKaartResultaat } + * + */ + public KadasterUittrekselKadastraleKaartResultaat getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KadasterUittrekselKadastraleKaartResultaat } + * + */ + public void setOut(KadasterUittrekselKadastraleKaartResultaat value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV3RequestType.java new file mode 100644 index 0000000..3579519 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV3RequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterUittrekselKadastraleKaartPostcodeV3RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterUittrekselKadastraleKaartPostcodeV3RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterUittrekselKadastraleKaartPostcodeV3RequestType", propOrder = { + +}) +public class KadasterUittrekselKadastraleKaartPostcodeV3RequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + @XmlElement(required = true) + protected String format; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV3ResponseType.java new file mode 100644 index 0000000..b4dcb43 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV3ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterUittrekselKadastraleKaartPostcodeV3ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterUittrekselKadastraleKaartPostcodeV3ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterUittrekselKadastraleKaartResultaatV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterUittrekselKadastraleKaartPostcodeV3ResponseType", propOrder = { + +}) +public class KadasterUittrekselKadastraleKaartPostcodeV3ResponseType { + + @XmlElement(required = true) + protected KadasterUittrekselKadastraleKaartResultaatV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KadasterUittrekselKadastraleKaartResultaatV2 } + * + */ + public KadasterUittrekselKadastraleKaartResultaatV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KadasterUittrekselKadastraleKaartResultaatV2 } + * + */ + public void setOut(KadasterUittrekselKadastraleKaartResultaatV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartResultaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartResultaat.java new file mode 100644 index 0000000..3699d7d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartResultaat.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterUittrekselKadastraleKaartResultaat complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterUittrekselKadastraleKaartResultaat">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="overzicht" type="{http://www.webservices.nl/soap/}kadasterOverzicht" minOccurs="0"/>
+ *         <element name="kadastrale_kaart" type="{http://www.webservices.nl/soap/}KadasterUittrekselKadastraleKaartV2" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterUittrekselKadastraleKaartResultaat", propOrder = { + +}) +public class KadasterUittrekselKadastraleKaartResultaat { + + protected KadasterOverzicht overzicht; + @XmlElement(name = "kadastrale_kaart") + protected KadasterUittrekselKadastraleKaartV2 kadastraleKaart; + + /** + * Gets the value of the overzicht property. + * + * @return + * possible object is + * {@link KadasterOverzicht } + * + */ + public KadasterOverzicht getOverzicht() { + return overzicht; + } + + /** + * Sets the value of the overzicht property. + * + * @param value + * allowed object is + * {@link KadasterOverzicht } + * + */ + public void setOverzicht(KadasterOverzicht value) { + this.overzicht = value; + } + + /** + * Gets the value of the kadastraleKaart property. + * + * @return + * possible object is + * {@link KadasterUittrekselKadastraleKaartV2 } + * + */ + public KadasterUittrekselKadastraleKaartV2 getKadastraleKaart() { + return kadastraleKaart; + } + + /** + * Sets the value of the kadastraleKaart property. + * + * @param value + * allowed object is + * {@link KadasterUittrekselKadastraleKaartV2 } + * + */ + public void setKadastraleKaart(KadasterUittrekselKadastraleKaartV2 value) { + this.kadastraleKaart = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartResultaatV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartResultaatV2.java new file mode 100644 index 0000000..f9c6f9a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartResultaatV2.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterUittrekselKadastraleKaartResultaatV2 complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterUittrekselKadastraleKaartResultaatV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="overzicht" type="{http://www.webservices.nl/soap/}kadasterOverzichtV2" minOccurs="0"/>
+ *         <element name="kadastrale_kaart" type="{http://www.webservices.nl/soap/}KadasterUittrekselKadastraleKaartV2" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterUittrekselKadastraleKaartResultaatV2", propOrder = { + +}) +public class KadasterUittrekselKadastraleKaartResultaatV2 { + + protected KadasterOverzichtV2 overzicht; + @XmlElement(name = "kadastrale_kaart") + protected KadasterUittrekselKadastraleKaartV2 kadastraleKaart; + + /** + * Gets the value of the overzicht property. + * + * @return + * possible object is + * {@link KadasterOverzichtV2 } + * + */ + public KadasterOverzichtV2 getOverzicht() { + return overzicht; + } + + /** + * Sets the value of the overzicht property. + * + * @param value + * allowed object is + * {@link KadasterOverzichtV2 } + * + */ + public void setOverzicht(KadasterOverzichtV2 value) { + this.overzicht = value; + } + + /** + * Gets the value of the kadastraleKaart property. + * + * @return + * possible object is + * {@link KadasterUittrekselKadastraleKaartV2 } + * + */ + public KadasterUittrekselKadastraleKaartV2 getKadastraleKaart() { + return kadastraleKaart; + } + + /** + * Sets the value of the kadastraleKaart property. + * + * @param value + * allowed object is + * {@link KadasterUittrekselKadastraleKaartV2 } + * + */ + public void setKadastraleKaart(KadasterUittrekselKadastraleKaartV2 value) { + this.kadastraleKaart = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartV2.java new file mode 100644 index 0000000..667ad2b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartV2.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterUittrekselKadastraleKaartV2 complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterUittrekselKadastraleKaartV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="kaart" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *         <element name="afbeeldingen" type="{http://www.webservices.nl/soap/}base64BinaryArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterUittrekselKadastraleKaartV2", propOrder = { + +}) +public class KadasterUittrekselKadastraleKaartV2 { + + @XmlElement(required = true) + protected byte[] kaart; + protected Base64BinaryArray afbeeldingen; + + /** + * Gets the value of the kaart property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getKaart() { + return kaart; + } + + /** + * Sets the value of the kaart property. + * + * @param value + * allowed object is + * byte[] + */ + public void setKaart(byte[] value) { + this.kaart = value; + } + + /** + * Gets the value of the afbeeldingen property. + * + * @return + * possible object is + * {@link Base64BinaryArray } + * + */ + public Base64BinaryArray getAfbeeldingen() { + return afbeeldingen; + } + + /** + * Sets the value of the afbeeldingen property. + * + * @param value + * allowed object is + * {@link Base64BinaryArray } + * + */ + public void setAfbeeldingen(Base64BinaryArray value) { + this.afbeeldingen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AangebodenStuk.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AangebodenStuk.java new file mode 100644 index 0000000..082f151 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AangebodenStuk.java @@ -0,0 +1,340 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for KadasterV2AangebodenStuk complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2AangebodenStuk">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="aard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="deel_en_nummer" type="{http://www.webservices.nl/soap/}KadasterV2DeelEnNummer" minOccurs="0"/>
+ *         <element name="verklaring_bewaarder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="toelichting_bewaarder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="tijdstip_aanbieding" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="tijdstip_ondertekening" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="status_stuk_or" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="indicatie_alle_objecten_betrokken" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="verzoeken" type="{http://www.webservices.nl/soap/}KadasterV2VerzoekArray" minOccurs="0"/>
+ *         <element name="stukdelen" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2AangebodenStuk", propOrder = { + +}) +public class KadasterV2AangebodenStuk { + + @XmlElement(required = true) + protected String identificatie; + protected String aard; + @XmlElement(name = "deel_en_nummer") + protected KadasterV2DeelEnNummer deelEnNummer; + @XmlElement(name = "verklaring_bewaarder") + protected String verklaringBewaarder; + @XmlElement(name = "toelichting_bewaarder") + protected String toelichtingBewaarder; + @XmlElement(name = "tijdstip_aanbieding") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar tijdstipAanbieding; + @XmlElement(name = "tijdstip_ondertekening") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar tijdstipOndertekening; + @XmlElement(name = "status_stuk_or") + protected String statusStukOr; + @XmlElement(name = "indicatie_alle_objecten_betrokken") + protected Boolean indicatieAlleObjectenBetrokken; + protected KadasterV2VerzoekArray verzoeken; + protected KadasterV2StukdeelArray stukdelen; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the aard property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAard() { + return aard; + } + + /** + * Sets the value of the aard property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAard(String value) { + this.aard = value; + } + + /** + * Gets the value of the deelEnNummer property. + * + * @return + * possible object is + * {@link KadasterV2DeelEnNummer } + * + */ + public KadasterV2DeelEnNummer getDeelEnNummer() { + return deelEnNummer; + } + + /** + * Sets the value of the deelEnNummer property. + * + * @param value + * allowed object is + * {@link KadasterV2DeelEnNummer } + * + */ + public void setDeelEnNummer(KadasterV2DeelEnNummer value) { + this.deelEnNummer = value; + } + + /** + * Gets the value of the verklaringBewaarder property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerklaringBewaarder() { + return verklaringBewaarder; + } + + /** + * Sets the value of the verklaringBewaarder property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerklaringBewaarder(String value) { + this.verklaringBewaarder = value; + } + + /** + * Gets the value of the toelichtingBewaarder property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToelichtingBewaarder() { + return toelichtingBewaarder; + } + + /** + * Sets the value of the toelichtingBewaarder property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToelichtingBewaarder(String value) { + this.toelichtingBewaarder = value; + } + + /** + * Gets the value of the tijdstipAanbieding property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getTijdstipAanbieding() { + return tijdstipAanbieding; + } + + /** + * Sets the value of the tijdstipAanbieding property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setTijdstipAanbieding(XMLGregorianCalendar value) { + this.tijdstipAanbieding = value; + } + + /** + * Gets the value of the tijdstipOndertekening property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getTijdstipOndertekening() { + return tijdstipOndertekening; + } + + /** + * Sets the value of the tijdstipOndertekening property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setTijdstipOndertekening(XMLGregorianCalendar value) { + this.tijdstipOndertekening = value; + } + + /** + * Gets the value of the statusStukOr property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatusStukOr() { + return statusStukOr; + } + + /** + * Sets the value of the statusStukOr property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatusStukOr(String value) { + this.statusStukOr = value; + } + + /** + * Gets the value of the indicatieAlleObjectenBetrokken property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicatieAlleObjectenBetrokken() { + return indicatieAlleObjectenBetrokken; + } + + /** + * Sets the value of the indicatieAlleObjectenBetrokken property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicatieAlleObjectenBetrokken(Boolean value) { + this.indicatieAlleObjectenBetrokken = value; + } + + /** + * Gets the value of the verzoeken property. + * + * @return + * possible object is + * {@link KadasterV2VerzoekArray } + * + */ + public KadasterV2VerzoekArray getVerzoeken() { + return verzoeken; + } + + /** + * Sets the value of the verzoeken property. + * + * @param value + * allowed object is + * {@link KadasterV2VerzoekArray } + * + */ + public void setVerzoeken(KadasterV2VerzoekArray value) { + this.verzoeken = value; + } + + /** + * Gets the value of the stukdelen property. + * + * @return + * possible object is + * {@link KadasterV2StukdeelArray } + * + */ + public KadasterV2StukdeelArray getStukdelen() { + return stukdelen; + } + + /** + * Sets the value of the stukdelen property. + * + * @param value + * allowed object is + * {@link KadasterV2StukdeelArray } + * + */ + public void setStukdelen(KadasterV2StukdeelArray value) { + this.stukdelen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AangebodenStukArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AangebodenStukArray.java new file mode 100644 index 0000000..e5dac06 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AangebodenStukArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2AangebodenStukArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2AangebodenStukArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2AangebodenStuk" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2AangebodenStukArray", propOrder = { + "item" +}) +public class KadasterV2AangebodenStukArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2AangebodenStuk } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Aantekening.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Aantekening.java new file mode 100644 index 0000000..9a7d607 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Aantekening.java @@ -0,0 +1,391 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for KadasterV2Aantekening complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Aantekening">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="aard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="einddatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="einddatum_recht" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="herkaveling_bloknummer" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="betreft" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak" minOccurs="0"/>
+ *         <element name="hypotheken" type="{http://www.webservices.nl/soap/}KadasterV2HypotheekArray" minOccurs="0"/>
+ *         <element name="beslagleggingen" type="{http://www.webservices.nl/soap/}KadasterV2BeslagleggingArray" minOccurs="0"/>
+ *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
+ *         <element name="tenaamstellingen" type="{http://www.webservices.nl/soap/}KadasterV2TenaamstellingArray" minOccurs="0"/>
+ *         <element name="gebaseerd_op" type="{http://www.webservices.nl/soap/}KadasterV2Stukdeel" minOccurs="0"/>
+ *         <element name="betrokken_personen" type="{http://www.webservices.nl/soap/}KadasterV2Personen" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Aantekening", propOrder = { + +}) +public class KadasterV2Aantekening { + + @XmlElement(required = true) + protected String identificatie; + protected String aard; + protected String omschrijving; + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar einddatum; + @XmlElement(name = "einddatum_recht") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar einddatumRecht; + @XmlElement(name = "herkaveling_bloknummer") + protected BigInteger herkavelingBloknummer; + protected KadasterV2OnroerendeZaak betreft; + protected KadasterV2HypotheekArray hypotheken; + protected KadasterV2BeslagleggingArray beslagleggingen; + @XmlElement(name = "vermeld_in") + protected KadasterV2StukdeelArray vermeldIn; + protected KadasterV2TenaamstellingArray tenaamstellingen; + @XmlElement(name = "gebaseerd_op") + protected KadasterV2Stukdeel gebaseerdOp; + @XmlElement(name = "betrokken_personen") + protected KadasterV2Personen betrokkenPersonen; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the aard property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAard() { + return aard; + } + + /** + * Sets the value of the aard property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAard(String value) { + this.aard = value; + } + + /** + * Gets the value of the omschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijving() { + return omschrijving; + } + + /** + * Sets the value of the omschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijving(String value) { + this.omschrijving = value; + } + + /** + * Gets the value of the einddatum property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEinddatum() { + return einddatum; + } + + /** + * Sets the value of the einddatum property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEinddatum(XMLGregorianCalendar value) { + this.einddatum = value; + } + + /** + * Gets the value of the einddatumRecht property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEinddatumRecht() { + return einddatumRecht; + } + + /** + * Sets the value of the einddatumRecht property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEinddatumRecht(XMLGregorianCalendar value) { + this.einddatumRecht = value; + } + + /** + * Gets the value of the herkavelingBloknummer property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getHerkavelingBloknummer() { + return herkavelingBloknummer; + } + + /** + * Sets the value of the herkavelingBloknummer property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setHerkavelingBloknummer(BigInteger value) { + this.herkavelingBloknummer = value; + } + + /** + * Gets the value of the betreft property. + * + * @return + * possible object is + * {@link KadasterV2OnroerendeZaak } + * + */ + public KadasterV2OnroerendeZaak getBetreft() { + return betreft; + } + + /** + * Sets the value of the betreft property. + * + * @param value + * allowed object is + * {@link KadasterV2OnroerendeZaak } + * + */ + public void setBetreft(KadasterV2OnroerendeZaak value) { + this.betreft = value; + } + + /** + * Gets the value of the hypotheken property. + * + * @return + * possible object is + * {@link KadasterV2HypotheekArray } + * + */ + public KadasterV2HypotheekArray getHypotheken() { + return hypotheken; + } + + /** + * Sets the value of the hypotheken property. + * + * @param value + * allowed object is + * {@link KadasterV2HypotheekArray } + * + */ + public void setHypotheken(KadasterV2HypotheekArray value) { + this.hypotheken = value; + } + + /** + * Gets the value of the beslagleggingen property. + * + * @return + * possible object is + * {@link KadasterV2BeslagleggingArray } + * + */ + public KadasterV2BeslagleggingArray getBeslagleggingen() { + return beslagleggingen; + } + + /** + * Sets the value of the beslagleggingen property. + * + * @param value + * allowed object is + * {@link KadasterV2BeslagleggingArray } + * + */ + public void setBeslagleggingen(KadasterV2BeslagleggingArray value) { + this.beslagleggingen = value; + } + + /** + * Gets the value of the vermeldIn property. + * + * @return + * possible object is + * {@link KadasterV2StukdeelArray } + * + */ + public KadasterV2StukdeelArray getVermeldIn() { + return vermeldIn; + } + + /** + * Sets the value of the vermeldIn property. + * + * @param value + * allowed object is + * {@link KadasterV2StukdeelArray } + * + */ + public void setVermeldIn(KadasterV2StukdeelArray value) { + this.vermeldIn = value; + } + + /** + * Gets the value of the tenaamstellingen property. + * + * @return + * possible object is + * {@link KadasterV2TenaamstellingArray } + * + */ + public KadasterV2TenaamstellingArray getTenaamstellingen() { + return tenaamstellingen; + } + + /** + * Sets the value of the tenaamstellingen property. + * + * @param value + * allowed object is + * {@link KadasterV2TenaamstellingArray } + * + */ + public void setTenaamstellingen(KadasterV2TenaamstellingArray value) { + this.tenaamstellingen = value; + } + + /** + * Gets the value of the gebaseerdOp property. + * + * @return + * possible object is + * {@link KadasterV2Stukdeel } + * + */ + public KadasterV2Stukdeel getGebaseerdOp() { + return gebaseerdOp; + } + + /** + * Sets the value of the gebaseerdOp property. + * + * @param value + * allowed object is + * {@link KadasterV2Stukdeel } + * + */ + public void setGebaseerdOp(KadasterV2Stukdeel value) { + this.gebaseerdOp = value; + } + + /** + * Gets the value of the betrokkenPersonen property. + * + * @return + * possible object is + * {@link KadasterV2Personen } + * + */ + public KadasterV2Personen getBetrokkenPersonen() { + return betrokkenPersonen; + } + + /** + * Sets the value of the betrokkenPersonen property. + * + * @param value + * allowed object is + * {@link KadasterV2Personen } + * + */ + public void setBetrokkenPersonen(KadasterV2Personen value) { + this.betrokkenPersonen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningArray.java new file mode 100644 index 0000000..7bebc1e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2AantekeningArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2AantekeningArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Aantekening" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2AantekeningArray", propOrder = { + "item" +}) +public class KadasterV2AantekeningArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2Aantekening } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningWKPB.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningWKPB.java new file mode 100644 index 0000000..e41ce90 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningWKPB.java @@ -0,0 +1,175 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2AantekeningWKPB complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2AantekeningWKPB">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="gemeentelijke_registratie_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="nummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="datum_in_werking" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="omschrijving_publiekrechtelijke_beperking" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2AantekeningWKPB", propOrder = { + +}) +public class KadasterV2AantekeningWKPB { + + protected String omschrijving; + @XmlElement(name = "gemeentelijke_registratie_id") + protected String gemeentelijkeRegistratieId; + protected String nummer; + @XmlElement(name = "datum_in_werking") + protected String datumInWerking; + @XmlElement(name = "omschrijving_publiekrechtelijke_beperking") + protected String omschrijvingPubliekrechtelijkeBeperking; + + /** + * Gets the value of the omschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijving() { + return omschrijving; + } + + /** + * Sets the value of the omschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijving(String value) { + this.omschrijving = value; + } + + /** + * Gets the value of the gemeentelijkeRegistratieId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentelijkeRegistratieId() { + return gemeentelijkeRegistratieId; + } + + /** + * Sets the value of the gemeentelijkeRegistratieId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentelijkeRegistratieId(String value) { + this.gemeentelijkeRegistratieId = value; + } + + /** + * Gets the value of the nummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNummer() { + return nummer; + } + + /** + * Sets the value of the nummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNummer(String value) { + this.nummer = value; + } + + /** + * Gets the value of the datumInWerking property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDatumInWerking() { + return datumInWerking; + } + + /** + * Sets the value of the datumInWerking property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDatumInWerking(String value) { + this.datumInWerking = value; + } + + /** + * Gets the value of the omschrijvingPubliekrechtelijkeBeperking property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijvingPubliekrechtelijkeBeperking() { + return omschrijvingPubliekrechtelijkeBeperking; + } + + /** + * Sets the value of the omschrijvingPubliekrechtelijkeBeperking property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijvingPubliekrechtelijkeBeperking(String value) { + this.omschrijvingPubliekrechtelijkeBeperking = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningWKPBArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningWKPBArray.java new file mode 100644 index 0000000..41fd115 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningWKPBArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2AantekeningWKPBArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2AantekeningWKPBArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2AantekeningWKPB" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2AantekeningWKPBArray", propOrder = { + "item" +}) +public class KadasterV2AantekeningWKPBArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2AantekeningWKPB } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Aanvulling.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Aanvulling.java new file mode 100644 index 0000000..379a2bb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Aanvulling.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2Aanvulling complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Aanvulling">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="aangeboden_stuk" type="{http://www.webservices.nl/soap/}KadasterV2AangebodenStuk"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Aanvulling", propOrder = { + +}) +public class KadasterV2Aanvulling { + + @XmlElement(required = true) + protected String type; + @XmlElement(name = "aangeboden_stuk", required = true) + protected KadasterV2AangebodenStuk aangebodenStuk; + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the aangebodenStuk property. + * + * @return + * possible object is + * {@link KadasterV2AangebodenStuk } + * + */ + public KadasterV2AangebodenStuk getAangebodenStuk() { + return aangebodenStuk; + } + + /** + * Sets the value of the aangebodenStuk property. + * + * @param value + * allowed object is + * {@link KadasterV2AangebodenStuk } + * + */ + public void setAangebodenStuk(KadasterV2AangebodenStuk value) { + this.aangebodenStuk = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AanvullingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AanvullingArray.java new file mode 100644 index 0000000..fe03d26 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AanvullingArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2AanvullingArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2AanvullingArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Aanvulling" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2AanvullingArray", propOrder = { + "item" +}) +public class KadasterV2AanvullingArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2Aanvulling } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AcgIdentificatie.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AcgIdentificatie.java new file mode 100644 index 0000000..dd504fa --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AcgIdentificatie.java @@ -0,0 +1,124 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2AcgIdentificatie complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2AcgIdentificatie">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="akr_registercode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="akr_stukdelen" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="volgnummer_staat75" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2AcgIdentificatie", propOrder = { + +}) +public class KadasterV2AcgIdentificatie { + + @XmlElement(name = "akr_registercode") + protected String akrRegistercode; + @XmlElement(name = "akr_stukdelen") + protected StringArray akrStukdelen; + @XmlElement(name = "volgnummer_staat75") + protected BigInteger volgnummerStaat75; + + /** + * Gets the value of the akrRegistercode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAkrRegistercode() { + return akrRegistercode; + } + + /** + * Sets the value of the akrRegistercode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAkrRegistercode(String value) { + this.akrRegistercode = value; + } + + /** + * Gets the value of the akrStukdelen property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getAkrStukdelen() { + return akrStukdelen; + } + + /** + * Sets the value of the akrStukdelen property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setAkrStukdelen(StringArray value) { + this.akrStukdelen = value; + } + + /** + * Gets the value of the volgnummerStaat75 property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getVolgnummerStaat75() { + return volgnummerStaat75; + } + + /** + * Sets the value of the volgnummerStaat75 property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setVolgnummerStaat75(BigInteger value) { + this.volgnummerStaat75 = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AdresLocatie.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AdresLocatie.java new file mode 100644 index 0000000..92c064d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AdresLocatie.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2AdresLocatie complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2AdresLocatie">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="locatie_binnenland" type="{http://www.webservices.nl/soap/}KadasterV2LocatieBinnenland" minOccurs="0"/>
+ *         <element name="locatie_buitenland" type="{http://www.webservices.nl/soap/}KadasterV2LocatieBuitenland" minOccurs="0"/>
+ *         <element name="locatie_postbus" type="{http://www.webservices.nl/soap/}KadasterV2LocatiePostbus" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2AdresLocatie", propOrder = { + +}) +public class KadasterV2AdresLocatie { + + @XmlElement(name = "locatie_binnenland") + protected KadasterV2LocatieBinnenland locatieBinnenland; + @XmlElement(name = "locatie_buitenland") + protected KadasterV2LocatieBuitenland locatieBuitenland; + @XmlElement(name = "locatie_postbus") + protected KadasterV2LocatiePostbus locatiePostbus; + + /** + * Gets the value of the locatieBinnenland property. + * + * @return + * possible object is + * {@link KadasterV2LocatieBinnenland } + * + */ + public KadasterV2LocatieBinnenland getLocatieBinnenland() { + return locatieBinnenland; + } + + /** + * Sets the value of the locatieBinnenland property. + * + * @param value + * allowed object is + * {@link KadasterV2LocatieBinnenland } + * + */ + public void setLocatieBinnenland(KadasterV2LocatieBinnenland value) { + this.locatieBinnenland = value; + } + + /** + * Gets the value of the locatieBuitenland property. + * + * @return + * possible object is + * {@link KadasterV2LocatieBuitenland } + * + */ + public KadasterV2LocatieBuitenland getLocatieBuitenland() { + return locatieBuitenland; + } + + /** + * Sets the value of the locatieBuitenland property. + * + * @param value + * allowed object is + * {@link KadasterV2LocatieBuitenland } + * + */ + public void setLocatieBuitenland(KadasterV2LocatieBuitenland value) { + this.locatieBuitenland = value; + } + + /** + * Gets the value of the locatiePostbus property. + * + * @return + * possible object is + * {@link KadasterV2LocatiePostbus } + * + */ + public KadasterV2LocatiePostbus getLocatiePostbus() { + return locatiePostbus; + } + + /** + * Sets the value of the locatiePostbus property. + * + * @param value + * allowed object is + * {@link KadasterV2LocatiePostbus } + * + */ + public void setLocatiePostbus(KadasterV2LocatiePostbus value) { + this.locatiePostbus = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AdresLocatieArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AdresLocatieArray.java new file mode 100644 index 0000000..f908c8e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AdresLocatieArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2AdresLocatieArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2AdresLocatieArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2AdresLocatie" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2AdresLocatieArray", propOrder = { + "item" +}) +public class KadasterV2AdresLocatieArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2AdresLocatie } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Bedrag.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Bedrag.java new file mode 100644 index 0000000..8761d3e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Bedrag.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2Bedrag complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Bedrag">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="som" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="valuta" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Bedrag", propOrder = { + +}) +public class KadasterV2Bedrag { + + protected float som; + @XmlElement(required = true) + protected String valuta; + + /** + * Gets the value of the som property. + * + */ + public float getSom() { + return som; + } + + /** + * Sets the value of the som property. + * + */ + public void setSom(float value) { + this.som = value; + } + + /** + * Gets the value of the valuta property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValuta() { + return valuta; + } + + /** + * Sets the value of the valuta property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValuta(String value) { + this.valuta = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Beslaglegging.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Beslaglegging.java new file mode 100644 index 0000000..46663c8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Beslaglegging.java @@ -0,0 +1,257 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2Beslaglegging complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Beslaglegging">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="omschrijving_betrokken_recht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="aard_beslag" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="aandeel_in_betrokken_recht" type="{http://www.webservices.nl/soap/}KadasterV2Breuk" minOccurs="0"/>
+ *         <element name="onroerende_zaak" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak" minOccurs="0"/>
+ *         <element name="personen" type="{http://www.webservices.nl/soap/}KadasterV2Personen" minOccurs="0"/>
+ *         <element name="gebaseerd_op" type="{http://www.webservices.nl/soap/}KadasterV2Stukdeel" minOccurs="0"/>
+ *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Beslaglegging", propOrder = { + +}) +public class KadasterV2Beslaglegging { + + @XmlElement(required = true) + protected String identificatie; + @XmlElement(name = "omschrijving_betrokken_recht") + protected String omschrijvingBetrokkenRecht; + @XmlElement(name = "aard_beslag", required = true) + protected String aardBeslag; + @XmlElement(name = "aandeel_in_betrokken_recht") + protected KadasterV2Breuk aandeelInBetrokkenRecht; + @XmlElement(name = "onroerende_zaak") + protected KadasterV2OnroerendeZaak onroerendeZaak; + protected KadasterV2Personen personen; + @XmlElement(name = "gebaseerd_op") + protected KadasterV2Stukdeel gebaseerdOp; + @XmlElement(name = "vermeld_in") + protected KadasterV2StukdeelArray vermeldIn; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the omschrijvingBetrokkenRecht property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijvingBetrokkenRecht() { + return omschrijvingBetrokkenRecht; + } + + /** + * Sets the value of the omschrijvingBetrokkenRecht property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijvingBetrokkenRecht(String value) { + this.omschrijvingBetrokkenRecht = value; + } + + /** + * Gets the value of the aardBeslag property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAardBeslag() { + return aardBeslag; + } + + /** + * Sets the value of the aardBeslag property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAardBeslag(String value) { + this.aardBeslag = value; + } + + /** + * Gets the value of the aandeelInBetrokkenRecht property. + * + * @return + * possible object is + * {@link KadasterV2Breuk } + * + */ + public KadasterV2Breuk getAandeelInBetrokkenRecht() { + return aandeelInBetrokkenRecht; + } + + /** + * Sets the value of the aandeelInBetrokkenRecht property. + * + * @param value + * allowed object is + * {@link KadasterV2Breuk } + * + */ + public void setAandeelInBetrokkenRecht(KadasterV2Breuk value) { + this.aandeelInBetrokkenRecht = value; + } + + /** + * Gets the value of the onroerendeZaak property. + * + * @return + * possible object is + * {@link KadasterV2OnroerendeZaak } + * + */ + public KadasterV2OnroerendeZaak getOnroerendeZaak() { + return onroerendeZaak; + } + + /** + * Sets the value of the onroerendeZaak property. + * + * @param value + * allowed object is + * {@link KadasterV2OnroerendeZaak } + * + */ + public void setOnroerendeZaak(KadasterV2OnroerendeZaak value) { + this.onroerendeZaak = value; + } + + /** + * Gets the value of the personen property. + * + * @return + * possible object is + * {@link KadasterV2Personen } + * + */ + public KadasterV2Personen getPersonen() { + return personen; + } + + /** + * Sets the value of the personen property. + * + * @param value + * allowed object is + * {@link KadasterV2Personen } + * + */ + public void setPersonen(KadasterV2Personen value) { + this.personen = value; + } + + /** + * Gets the value of the gebaseerdOp property. + * + * @return + * possible object is + * {@link KadasterV2Stukdeel } + * + */ + public KadasterV2Stukdeel getGebaseerdOp() { + return gebaseerdOp; + } + + /** + * Sets the value of the gebaseerdOp property. + * + * @param value + * allowed object is + * {@link KadasterV2Stukdeel } + * + */ + public void setGebaseerdOp(KadasterV2Stukdeel value) { + this.gebaseerdOp = value; + } + + /** + * Gets the value of the vermeldIn property. + * + * @return + * possible object is + * {@link KadasterV2StukdeelArray } + * + */ + public KadasterV2StukdeelArray getVermeldIn() { + return vermeldIn; + } + + /** + * Sets the value of the vermeldIn property. + * + * @param value + * allowed object is + * {@link KadasterV2StukdeelArray } + * + */ + public void setVermeldIn(KadasterV2StukdeelArray value) { + this.vermeldIn = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BeslagleggingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BeslagleggingArray.java new file mode 100644 index 0000000..aa09109 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BeslagleggingArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2BeslagleggingArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2BeslagleggingArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Beslaglegging" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2BeslagleggingArray", propOrder = { + "item" +}) +public class KadasterV2BeslagleggingArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2Beslaglegging } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Bijlage.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Bijlage.java new file mode 100644 index 0000000..913649b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Bijlage.java @@ -0,0 +1,98 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for KadasterV2Bijlage complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Bijlage">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="aard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="tijdstip_aanbieding_bijlage" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Bijlage", propOrder = { + +}) +public class KadasterV2Bijlage { + + protected String aard; + @XmlElement(name = "tijdstip_aanbieding_bijlage") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar tijdstipAanbiedingBijlage; + + /** + * Gets the value of the aard property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAard() { + return aard; + } + + /** + * Sets the value of the aard property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAard(String value) { + this.aard = value; + } + + /** + * Gets the value of the tijdstipAanbiedingBijlage property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getTijdstipAanbiedingBijlage() { + return tijdstipAanbiedingBijlage; + } + + /** + * Sets the value of the tijdstipAanbiedingBijlage property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setTijdstipAanbiedingBijlage(XMLGregorianCalendar value) { + this.tijdstipAanbiedingBijlage = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BijlageArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BijlageArray.java new file mode 100644 index 0000000..98725bd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BijlageArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2BijlageArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2BijlageArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Bijlage" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2BijlageArray", propOrder = { + "item" +}) +public class KadasterV2BijlageArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2Bijlage } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Breuk.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Breuk.java new file mode 100644 index 0000000..9a46953 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Breuk.java @@ -0,0 +1,94 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2Breuk complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Breuk">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="teller" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="noemer" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Breuk", propOrder = { + +}) +public class KadasterV2Breuk { + + protected BigInteger teller; + protected BigInteger noemer; + + /** + * Gets the value of the teller property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getTeller() { + return teller; + } + + /** + * Sets the value of the teller property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setTeller(BigInteger value) { + this.teller = value; + } + + /** + * Gets the value of the noemer property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getNoemer() { + return noemer; + } + + /** + * Sets the value of the noemer property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setNoemer(BigInteger value) { + this.noemer = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BronDocumentResponse.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BronDocumentResponse.java new file mode 100644 index 0000000..4f77d6e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BronDocumentResponse.java @@ -0,0 +1,65 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2BronDocumentResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2BronDocumentResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2BronDocumentResponse", propOrder = { + +}) +public class KadasterV2BronDocumentResponse { + + protected byte[] document; + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Coordinaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Coordinaat.java new file mode 100644 index 0000000..2a36204 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Coordinaat.java @@ -0,0 +1,148 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2Coordinaat complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Coordinaat">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identifier" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="rd_coordinaat" type="{http://www.webservices.nl/soap/}KadasterV2RDCoordinaat" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Coordinaat", propOrder = { + +}) +public class KadasterV2Coordinaat { + + protected BigInteger identifier; + protected BigInteger name; + protected BigInteger description; + @XmlElement(name = "rd_coordinaat") + protected KadasterV2RDCoordinaat rdCoordinaat; + + /** + * Gets the value of the identifier property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getIdentifier() { + return identifier; + } + + /** + * Sets the value of the identifier property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setIdentifier(BigInteger value) { + this.identifier = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setName(BigInteger value) { + this.name = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setDescription(BigInteger value) { + this.description = value; + } + + /** + * Gets the value of the rdCoordinaat property. + * + * @return + * possible object is + * {@link KadasterV2RDCoordinaat } + * + */ + public KadasterV2RDCoordinaat getRdCoordinaat() { + return rdCoordinaat; + } + + /** + * Sets the value of the rdCoordinaat property. + * + * @param value + * allowed object is + * {@link KadasterV2RDCoordinaat } + * + */ + public void setRdCoordinaat(KadasterV2RDCoordinaat value) { + this.rdCoordinaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2DeelEnNummer.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2DeelEnNummer.java new file mode 100644 index 0000000..6a71fe4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2DeelEnNummer.java @@ -0,0 +1,173 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2DeelEnNummer complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2DeelEnNummer">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="deel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="nummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="reeks" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="registercode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="soort_register" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2DeelEnNummer", propOrder = { + +}) +public class KadasterV2DeelEnNummer { + + protected String deel; + protected String nummer; + protected String reeks; + protected String registercode; + @XmlElement(name = "soort_register") + protected String soortRegister; + + /** + * Gets the value of the deel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDeel() { + return deel; + } + + /** + * Sets the value of the deel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDeel(String value) { + this.deel = value; + } + + /** + * Gets the value of the nummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNummer() { + return nummer; + } + + /** + * Sets the value of the nummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNummer(String value) { + this.nummer = value; + } + + /** + * Gets the value of the reeks property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReeks() { + return reeks; + } + + /** + * Sets the value of the reeks property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReeks(String value) { + this.reeks = value; + } + + /** + * Gets the value of the registercode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegistercode() { + return registercode; + } + + /** + * Sets the value of the registercode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegistercode(String value) { + this.registercode = value; + } + + /** + * Gets the value of the soortRegister property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSoortRegister() { + return soortRegister; + } + + /** + * Sets the value of the soortRegister property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSoortRegister(String value) { + this.soortRegister = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ErfpachtCanon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ErfpachtCanon.java new file mode 100644 index 0000000..591afd3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ErfpachtCanon.java @@ -0,0 +1,259 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for KadasterV2ErfpachtCanon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2ErfpachtCanon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="soort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="einddatum_afkoop" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="indicatie_oude_onroerende_zaak_betrokken" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="jaarlijks_bedrag" type="{http://www.webservices.nl/soap/}KadasterV2JaarlijksBedrag" minOccurs="0"/>
+ *         <element name="betreft" type="{http://www.webservices.nl/soap/}KadasterV2ZakelijkRecht" minOccurs="0"/>
+ *         <element name="gebaseerd_op" type="{http://www.webservices.nl/soap/}KadasterV2Stukdeel" minOccurs="0"/>
+ *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2ErfpachtCanon", propOrder = { + +}) +public class KadasterV2ErfpachtCanon { + + @XmlElement(required = true) + protected String identificatie; + protected String soort; + @XmlElement(name = "einddatum_afkoop") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar einddatumAfkoop; + @XmlElement(name = "indicatie_oude_onroerende_zaak_betrokken") + protected Boolean indicatieOudeOnroerendeZaakBetrokken; + @XmlElement(name = "jaarlijks_bedrag") + protected KadasterV2JaarlijksBedrag jaarlijksBedrag; + protected KadasterV2ZakelijkRecht betreft; + @XmlElement(name = "gebaseerd_op") + protected KadasterV2Stukdeel gebaseerdOp; + @XmlElement(name = "vermeld_in") + protected KadasterV2StukdeelArray vermeldIn; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the soort property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSoort() { + return soort; + } + + /** + * Sets the value of the soort property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSoort(String value) { + this.soort = value; + } + + /** + * Gets the value of the einddatumAfkoop property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEinddatumAfkoop() { + return einddatumAfkoop; + } + + /** + * Sets the value of the einddatumAfkoop property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEinddatumAfkoop(XMLGregorianCalendar value) { + this.einddatumAfkoop = value; + } + + /** + * Gets the value of the indicatieOudeOnroerendeZaakBetrokken property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicatieOudeOnroerendeZaakBetrokken() { + return indicatieOudeOnroerendeZaakBetrokken; + } + + /** + * Sets the value of the indicatieOudeOnroerendeZaakBetrokken property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicatieOudeOnroerendeZaakBetrokken(Boolean value) { + this.indicatieOudeOnroerendeZaakBetrokken = value; + } + + /** + * Gets the value of the jaarlijksBedrag property. + * + * @return + * possible object is + * {@link KadasterV2JaarlijksBedrag } + * + */ + public KadasterV2JaarlijksBedrag getJaarlijksBedrag() { + return jaarlijksBedrag; + } + + /** + * Sets the value of the jaarlijksBedrag property. + * + * @param value + * allowed object is + * {@link KadasterV2JaarlijksBedrag } + * + */ + public void setJaarlijksBedrag(KadasterV2JaarlijksBedrag value) { + this.jaarlijksBedrag = value; + } + + /** + * Gets the value of the betreft property. + * + * @return + * possible object is + * {@link KadasterV2ZakelijkRecht } + * + */ + public KadasterV2ZakelijkRecht getBetreft() { + return betreft; + } + + /** + * Sets the value of the betreft property. + * + * @param value + * allowed object is + * {@link KadasterV2ZakelijkRecht } + * + */ + public void setBetreft(KadasterV2ZakelijkRecht value) { + this.betreft = value; + } + + /** + * Gets the value of the gebaseerdOp property. + * + * @return + * possible object is + * {@link KadasterV2Stukdeel } + * + */ + public KadasterV2Stukdeel getGebaseerdOp() { + return gebaseerdOp; + } + + /** + * Sets the value of the gebaseerdOp property. + * + * @param value + * allowed object is + * {@link KadasterV2Stukdeel } + * + */ + public void setGebaseerdOp(KadasterV2Stukdeel value) { + this.gebaseerdOp = value; + } + + /** + * Gets the value of the vermeldIn property. + * + * @return + * possible object is + * {@link KadasterV2StukdeelArray } + * + */ + public KadasterV2StukdeelArray getVermeldIn() { + return vermeldIn; + } + + /** + * Sets the value of the vermeldIn property. + * + * @param value + * allowed object is + * {@link KadasterV2StukdeelArray } + * + */ + public void setVermeldIn(KadasterV2StukdeelArray value) { + this.vermeldIn = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ErfpachtCanonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ErfpachtCanonArray.java new file mode 100644 index 0000000..eb8e4f8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ErfpachtCanonArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2ErfpachtCanonArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2ErfpachtCanonArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2ErfpachtCanon" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2ErfpachtCanonArray", propOrder = { + "item" +}) +public class KadasterV2ErfpachtCanonArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2ErfpachtCanon } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GerelateerdeOpenbareRuimte.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GerelateerdeOpenbareRuimte.java new file mode 100644 index 0000000..814df3f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GerelateerdeOpenbareRuimte.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2GerelateerdeOpenbareRuimte complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2GerelateerdeOpenbareRuimte">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="openbare_ruimte_naam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="openbare_ruimte_plaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="in_onderzoek" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2GerelateerdeOpenbareRuimte", propOrder = { + +}) +public class KadasterV2GerelateerdeOpenbareRuimte { + + @XmlElement(name = "openbare_ruimte_naam") + protected String openbareRuimteNaam; + @XmlElement(name = "openbare_ruimte_plaats") + protected String openbareRuimtePlaats; + @XmlElement(name = "in_onderzoek") + protected String inOnderzoek; + + /** + * Gets the value of the openbareRuimteNaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOpenbareRuimteNaam() { + return openbareRuimteNaam; + } + + /** + * Sets the value of the openbareRuimteNaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOpenbareRuimteNaam(String value) { + this.openbareRuimteNaam = value; + } + + /** + * Gets the value of the openbareRuimtePlaats property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOpenbareRuimtePlaats() { + return openbareRuimtePlaats; + } + + /** + * Sets the value of the openbareRuimtePlaats property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOpenbareRuimtePlaats(String value) { + this.openbareRuimtePlaats = value; + } + + /** + * Gets the value of the inOnderzoek property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInOnderzoek() { + return inOnderzoek; + } + + /** + * Sets the value of the inOnderzoek property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInOnderzoek(String value) { + this.inOnderzoek = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetBronDocumentRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetBronDocumentRequestType.java new file mode 100644 index 0000000..62ec989 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetBronDocumentRequestType.java @@ -0,0 +1,177 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetBronDocumentRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetBronDocumentRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="register_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="deel" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="nummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="reeks" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="soort_register" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetBronDocumentRequestType", propOrder = { + +}) +public class KadasterV2GetBronDocumentRequestType { + + @XmlElement(name = "register_code", required = true) + protected String registerCode; + @XmlElement(required = true) + protected String deel; + @XmlElement(required = true) + protected String nummer; + @XmlElement(required = true) + protected String reeks; + @XmlElement(name = "soort_register", required = true) + protected String soortRegister; + + /** + * Gets the value of the registerCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegisterCode() { + return registerCode; + } + + /** + * Sets the value of the registerCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegisterCode(String value) { + this.registerCode = value; + } + + /** + * Gets the value of the deel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDeel() { + return deel; + } + + /** + * Sets the value of the deel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDeel(String value) { + this.deel = value; + } + + /** + * Gets the value of the nummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNummer() { + return nummer; + } + + /** + * Sets the value of the nummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNummer(String value) { + this.nummer = value; + } + + /** + * Gets the value of the reeks property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReeks() { + return reeks; + } + + /** + * Sets the value of the reeks property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReeks(String value) { + this.reeks = value; + } + + /** + * Gets the value of the soortRegister property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSoortRegister() { + return soortRegister; + } + + /** + * Sets the value of the soortRegister property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSoortRegister(String value) { + this.soortRegister = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetBronDocumentResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetBronDocumentResponseType.java new file mode 100644 index 0000000..219bc43 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetBronDocumentResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetBronDocumentResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetBronDocumentResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2BronDocumentResponse"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetBronDocumentResponseType", propOrder = { + +}) +public class KadasterV2GetBronDocumentResponseType { + + @XmlElement(required = true) + protected KadasterV2BronDocumentResponse resultaat; + + /** + * Gets the value of the resultaat property. + * + * @return + * possible object is + * {@link KadasterV2BronDocumentResponse } + * + */ + public KadasterV2BronDocumentResponse getResultaat() { + return resultaat; + } + + /** + * Sets the value of the resultaat property. + * + * @param value + * allowed object is + * {@link KadasterV2BronDocumentResponse } + * + */ + public void setResultaat(KadasterV2BronDocumentResponse value) { + this.resultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByAdresRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByAdresRequestType.java new file mode 100644 index 0000000..507387c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByAdresRequestType.java @@ -0,0 +1,168 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetHypothecairBerichtObjectByAdresRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetHypothecairBerichtObjectByAdresRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisletter" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetHypothecairBerichtObjectByAdresRequestType", propOrder = { + +}) +public class KadasterV2GetHypothecairBerichtObjectByAdresRequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + @XmlElement(required = true) + protected String document; + @XmlElement(required = true) + protected String huisletter; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocument(String value) { + this.document = value; + } + + /** + * Gets the value of the huisletter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisletter() { + return huisletter; + } + + /** + * Sets the value of the huisletter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisletter(String value) { + this.huisletter = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByAdresResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByAdresResponseType.java new file mode 100644 index 0000000..23dfaa0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByAdresResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetHypothecairBerichtObjectByAdresResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetHypothecairBerichtObjectByAdresResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2HypothecairBerichtResponse"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetHypothecairBerichtObjectByAdresResponseType", propOrder = { + +}) +public class KadasterV2GetHypothecairBerichtObjectByAdresResponseType { + + @XmlElement(required = true) + protected KadasterV2HypothecairBerichtResponse resultaat; + + /** + * Gets the value of the resultaat property. + * + * @return + * possible object is + * {@link KadasterV2HypothecairBerichtResponse } + * + */ + public KadasterV2HypothecairBerichtResponse getResultaat() { + return resultaat; + } + + /** + * Sets the value of the resultaat property. + * + * @param value + * allowed object is + * {@link KadasterV2HypothecairBerichtResponse } + * + */ + public void setResultaat(KadasterV2HypothecairBerichtResponse value) { + this.resultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType.java new file mode 100644 index 0000000..2ba8663 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType.java @@ -0,0 +1,159 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="appartementsnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType", propOrder = { + +}) +public class KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType { + + @XmlElement(required = true) + protected String gemeentenaam; + @XmlElement(required = true) + protected String sectie; + protected int perceelnummer; + protected int appartementsnummer; + @XmlElement(required = true) + protected String document; + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the sectie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectie() { + return sectie; + } + + /** + * Sets the value of the sectie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectie(String value) { + this.sectie = value; + } + + /** + * Gets the value of the perceelnummer property. + * + */ + public int getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + */ + public void setPerceelnummer(int value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the appartementsnummer property. + * + */ + public int getAppartementsnummer() { + return appartementsnummer; + } + + /** + * Sets the value of the appartementsnummer property. + * + */ + public void setAppartementsnummer(int value) { + this.appartementsnummer = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocument(String value) { + this.document = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType.java new file mode 100644 index 0000000..25f887e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2HypothecairBerichtResponse"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType", propOrder = { + +}) +public class KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType { + + @XmlElement(required = true) + protected KadasterV2HypothecairBerichtResponse resultaat; + + /** + * Gets the value of the resultaat property. + * + * @return + * possible object is + * {@link KadasterV2HypothecairBerichtResponse } + * + */ + public KadasterV2HypothecairBerichtResponse getResultaat() { + return resultaat; + } + + /** + * Sets the value of the resultaat property. + * + * @param value + * allowed object is + * {@link KadasterV2HypothecairBerichtResponse } + * + */ + public void setResultaat(KadasterV2HypothecairBerichtResponse value) { + this.resultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType.java new file mode 100644 index 0000000..a6b9cc7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetHypothecairBerichtObjectByObjectIdRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetHypothecairBerichtObjectByObjectIdRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetHypothecairBerichtObjectByObjectIdRequestType", propOrder = { + +}) +public class KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType { + + @XmlElement(name = "object_id", required = true) + protected String objectId; + @XmlElement(required = true) + protected String document; + + /** + * Gets the value of the objectId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjectId() { + return objectId; + } + + /** + * Sets the value of the objectId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjectId(String value) { + this.objectId = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocument(String value) { + this.document = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType.java new file mode 100644 index 0000000..f097c86 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetHypothecairBerichtObjectByObjectIdResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetHypothecairBerichtObjectByObjectIdResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2HypothecairBerichtResponse"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetHypothecairBerichtObjectByObjectIdResponseType", propOrder = { + +}) +public class KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType { + + @XmlElement(required = true) + protected KadasterV2HypothecairBerichtResponse resultaat; + + /** + * Gets the value of the resultaat property. + * + * @return + * possible object is + * {@link KadasterV2HypothecairBerichtResponse } + * + */ + public KadasterV2HypothecairBerichtResponse getResultaat() { + return resultaat; + } + + /** + * Sets the value of the resultaat property. + * + * @param value + * allowed object is + * {@link KadasterV2HypothecairBerichtResponse } + * + */ + public void setResultaat(KadasterV2HypothecairBerichtResponse value) { + this.resultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByAdresRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByAdresRequestType.java new file mode 100644 index 0000000..649aef7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByAdresRequestType.java @@ -0,0 +1,168 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetKadastraalBerichtObjectByAdresRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetKadastraalBerichtObjectByAdresRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisletter" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetKadastraalBerichtObjectByAdresRequestType", propOrder = { + +}) +public class KadasterV2GetKadastraalBerichtObjectByAdresRequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + @XmlElement(required = true) + protected String document; + @XmlElement(required = true) + protected String huisletter; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocument(String value) { + this.document = value; + } + + /** + * Gets the value of the huisletter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisletter() { + return huisletter; + } + + /** + * Sets the value of the huisletter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisletter(String value) { + this.huisletter = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByAdresResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByAdresResponseType.java new file mode 100644 index 0000000..18c6354 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByAdresResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetKadastraalBerichtObjectByAdresResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetKadastraalBerichtObjectByAdresResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2KadastraalBerichtResponse"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetKadastraalBerichtObjectByAdresResponseType", propOrder = { + +}) +public class KadasterV2GetKadastraalBerichtObjectByAdresResponseType { + + @XmlElement(required = true) + protected KadasterV2KadastraalBerichtResponse resultaat; + + /** + * Gets the value of the resultaat property. + * + * @return + * possible object is + * {@link KadasterV2KadastraalBerichtResponse } + * + */ + public KadasterV2KadastraalBerichtResponse getResultaat() { + return resultaat; + } + + /** + * Sets the value of the resultaat property. + * + * @param value + * allowed object is + * {@link KadasterV2KadastraalBerichtResponse } + * + */ + public void setResultaat(KadasterV2KadastraalBerichtResponse value) { + this.resultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType.java new file mode 100644 index 0000000..507be17 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType.java @@ -0,0 +1,159 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="appartementsnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType", propOrder = { + +}) +public class KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType { + + @XmlElement(required = true) + protected String gemeentenaam; + @XmlElement(required = true) + protected String sectie; + protected int perceelnummer; + protected int appartementsnummer; + @XmlElement(required = true) + protected String document; + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the sectie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectie() { + return sectie; + } + + /** + * Sets the value of the sectie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectie(String value) { + this.sectie = value; + } + + /** + * Gets the value of the perceelnummer property. + * + */ + public int getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + */ + public void setPerceelnummer(int value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the appartementsnummer property. + * + */ + public int getAppartementsnummer() { + return appartementsnummer; + } + + /** + * Sets the value of the appartementsnummer property. + * + */ + public void setAppartementsnummer(int value) { + this.appartementsnummer = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocument(String value) { + this.document = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType.java new file mode 100644 index 0000000..af65bae --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2KadastraalBerichtResponse"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType", propOrder = { + +}) +public class KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType { + + @XmlElement(required = true) + protected KadasterV2KadastraalBerichtResponse resultaat; + + /** + * Gets the value of the resultaat property. + * + * @return + * possible object is + * {@link KadasterV2KadastraalBerichtResponse } + * + */ + public KadasterV2KadastraalBerichtResponse getResultaat() { + return resultaat; + } + + /** + * Sets the value of the resultaat property. + * + * @param value + * allowed object is + * {@link KadasterV2KadastraalBerichtResponse } + * + */ + public void setResultaat(KadasterV2KadastraalBerichtResponse value) { + this.resultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType.java new file mode 100644 index 0000000..79403d8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetKadastraalBerichtObjectByObjectIdRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetKadastraalBerichtObjectByObjectIdRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetKadastraalBerichtObjectByObjectIdRequestType", propOrder = { + +}) +public class KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType { + + @XmlElement(name = "object_id", required = true) + protected String objectId; + @XmlElement(required = true) + protected String document; + + /** + * Gets the value of the objectId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjectId() { + return objectId; + } + + /** + * Sets the value of the objectId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjectId(String value) { + this.objectId = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocument(String value) { + this.document = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType.java new file mode 100644 index 0000000..c6e48c6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetKadastraalBerichtObjectByObjectIdResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetKadastraalBerichtObjectByObjectIdResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2KadastraalBerichtResponse"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetKadastraalBerichtObjectByObjectIdResponseType", propOrder = { + +}) +public class KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType { + + @XmlElement(required = true) + protected KadasterV2KadastraalBerichtResponse resultaat; + + /** + * Gets the value of the resultaat property. + * + * @return + * possible object is + * {@link KadasterV2KadastraalBerichtResponse } + * + */ + public KadasterV2KadastraalBerichtResponse getResultaat() { + return resultaat; + } + + /** + * Sets the value of the resultaat property. + * + * @param value + * allowed object is + * {@link KadasterV2KadastraalBerichtResponse } + * + */ + public void setResultaat(KadasterV2KadastraalBerichtResponse value) { + this.resultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKoopsommenOverzichtRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKoopsommenOverzichtRequestType.java new file mode 100644 index 0000000..7387320 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKoopsommenOverzichtRequestType.java @@ -0,0 +1,168 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetKoopsommenOverzichtRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetKoopsommenOverzichtRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisletter" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetKoopsommenOverzichtRequestType", propOrder = { + +}) +public class KadasterV2GetKoopsommenOverzichtRequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + @XmlElement(required = true) + protected String document; + @XmlElement(required = true) + protected String huisletter; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocument(String value) { + this.document = value; + } + + /** + * Gets the value of the huisletter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisletter() { + return huisletter; + } + + /** + * Sets the value of the huisletter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisletter(String value) { + this.huisletter = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKoopsommenOverzichtResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKoopsommenOverzichtResponseType.java new file mode 100644 index 0000000..6b4f121 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKoopsommenOverzichtResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetKoopsommenOverzichtResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetKoopsommenOverzichtResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2KoopsommenOverzichtResponse"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetKoopsommenOverzichtResponseType", propOrder = { + +}) +public class KadasterV2GetKoopsommenOverzichtResponseType { + + @XmlElement(required = true) + protected KadasterV2KoopsommenOverzichtResponse resultaat; + + /** + * Gets the value of the resultaat property. + * + * @return + * possible object is + * {@link KadasterV2KoopsommenOverzichtResponse } + * + */ + public KadasterV2KoopsommenOverzichtResponse getResultaat() { + return resultaat; + } + + /** + * Sets the value of the resultaat property. + * + * @param value + * allowed object is + * {@link KadasterV2KoopsommenOverzichtResponse } + * + */ + public void setResultaat(KadasterV2KoopsommenOverzichtResponse value) { + this.resultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByAdresRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByAdresRequestType.java new file mode 100644 index 0000000..849ff00 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByAdresRequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetUittrekselKadastraleKaartByAdresRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetUittrekselKadastraleKaartByAdresRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisletter" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetUittrekselKadastraleKaartByAdresRequestType", propOrder = { + +}) +public class KadasterV2GetUittrekselKadastraleKaartByAdresRequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + @XmlElement(required = true) + protected String huisletter; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the huisletter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisletter() { + return huisletter; + } + + /** + * Sets the value of the huisletter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisletter(String value) { + this.huisletter = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByAdresResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByAdresResponseType.java new file mode 100644 index 0000000..4024c01 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByAdresResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetUittrekselKadastraleKaartByAdresResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetUittrekselKadastraleKaartByAdresResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2UittrekselKadastraleKaartResponse"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetUittrekselKadastraleKaartByAdresResponseType", propOrder = { + +}) +public class KadasterV2GetUittrekselKadastraleKaartByAdresResponseType { + + @XmlElement(required = true) + protected KadasterV2UittrekselKadastraleKaartResponse resultaat; + + /** + * Gets the value of the resultaat property. + * + * @return + * possible object is + * {@link KadasterV2UittrekselKadastraleKaartResponse } + * + */ + public KadasterV2UittrekselKadastraleKaartResponse getResultaat() { + return resultaat; + } + + /** + * Sets the value of the resultaat property. + * + * @param value + * allowed object is + * {@link KadasterV2UittrekselKadastraleKaartResponse } + * + */ + public void setResultaat(KadasterV2UittrekselKadastraleKaartResponse value) { + this.resultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType.java new file mode 100644 index 0000000..74112f1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType.java @@ -0,0 +1,132 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="appartementsnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType", propOrder = { + +}) +public class KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType { + + @XmlElement(required = true) + protected String gemeentenaam; + @XmlElement(required = true) + protected String sectie; + protected int perceelnummer; + protected int appartementsnummer; + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the sectie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectie() { + return sectie; + } + + /** + * Sets the value of the sectie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectie(String value) { + this.sectie = value; + } + + /** + * Gets the value of the perceelnummer property. + * + */ + public int getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + */ + public void setPerceelnummer(int value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the appartementsnummer property. + * + */ + public int getAppartementsnummer() { + return appartementsnummer; + } + + /** + * Sets the value of the appartementsnummer property. + * + */ + public void setAppartementsnummer(int value) { + this.appartementsnummer = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType.java new file mode 100644 index 0000000..264a556 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2UittrekselKadastraleKaartResponse"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType", propOrder = { + +}) +public class KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType { + + @XmlElement(required = true) + protected KadasterV2UittrekselKadastraleKaartResponse resultaat; + + /** + * Gets the value of the resultaat property. + * + * @return + * possible object is + * {@link KadasterV2UittrekselKadastraleKaartResponse } + * + */ + public KadasterV2UittrekselKadastraleKaartResponse getResultaat() { + return resultaat; + } + + /** + * Sets the value of the resultaat property. + * + * @param value + * allowed object is + * {@link KadasterV2UittrekselKadastraleKaartResponse } + * + */ + public void setResultaat(KadasterV2UittrekselKadastraleKaartResponse value) { + this.resultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType.java new file mode 100644 index 0000000..2092840 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType", propOrder = { + +}) +public class KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType { + + @XmlElement(name = "object_id", required = true) + protected String objectId; + + /** + * Gets the value of the objectId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjectId() { + return objectId; + } + + /** + * Sets the value of the objectId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjectId(String value) { + this.objectId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType.java new file mode 100644 index 0000000..7261cfe --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2UittrekselKadastraleKaartResponse"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType", propOrder = { + +}) +public class KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType { + + @XmlElement(required = true) + protected KadasterV2UittrekselKadastraleKaartResponse resultaat; + + /** + * Gets the value of the resultaat property. + * + * @return + * possible object is + * {@link KadasterV2UittrekselKadastraleKaartResponse } + * + */ + public KadasterV2UittrekselKadastraleKaartResponse getResultaat() { + return resultaat; + } + + /** + * Sets the value of the resultaat property. + * + * @param value + * allowed object is + * {@link KadasterV2UittrekselKadastraleKaartResponse } + * + */ + public void setResultaat(KadasterV2UittrekselKadastraleKaartResponse value) { + this.resultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GevraagdGebied.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GevraagdGebied.java new file mode 100644 index 0000000..15f521b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GevraagdGebied.java @@ -0,0 +1,228 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2GevraagdGebied complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2GevraagdGebied">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="huisletter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="huisnummertoevoeging" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="koopsom_gegevens" type="{http://www.webservices.nl/soap/}KadasterV2KoopsomGegevenArray" minOccurs="0"/>
+ *         <element name="onroerende_zaken" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaakArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2GevraagdGebied", propOrder = { + +}) +public class KadasterV2GevraagdGebied { + + @XmlElement(required = true) + protected String identificatie; + protected String postcode; + protected BigInteger huisnummer; + protected String huisletter; + protected String huisnummertoevoeging; + @XmlElement(name = "koopsom_gegevens") + protected KadasterV2KoopsomGegevenArray koopsomGegevens; + @XmlElement(name = "onroerende_zaken") + protected KadasterV2OnroerendeZaakArray onroerendeZaken; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setHuisnummer(BigInteger value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisletter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisletter() { + return huisletter; + } + + /** + * Sets the value of the huisletter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisletter(String value) { + this.huisletter = value; + } + + /** + * Gets the value of the huisnummertoevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummertoevoeging() { + return huisnummertoevoeging; + } + + /** + * Sets the value of the huisnummertoevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummertoevoeging(String value) { + this.huisnummertoevoeging = value; + } + + /** + * Gets the value of the koopsomGegevens property. + * + * @return + * possible object is + * {@link KadasterV2KoopsomGegevenArray } + * + */ + public KadasterV2KoopsomGegevenArray getKoopsomGegevens() { + return koopsomGegevens; + } + + /** + * Sets the value of the koopsomGegevens property. + * + * @param value + * allowed object is + * {@link KadasterV2KoopsomGegevenArray } + * + */ + public void setKoopsomGegevens(KadasterV2KoopsomGegevenArray value) { + this.koopsomGegevens = value; + } + + /** + * Gets the value of the onroerendeZaken property. + * + * @return + * possible object is + * {@link KadasterV2OnroerendeZaakArray } + * + */ + public KadasterV2OnroerendeZaakArray getOnroerendeZaken() { + return onroerendeZaken; + } + + /** + * Sets the value of the onroerendeZaken property. + * + * @param value + * allowed object is + * {@link KadasterV2OnroerendeZaakArray } + * + */ + public void setOnroerendeZaken(KadasterV2OnroerendeZaakArray value) { + this.onroerendeZaken = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GezamenlijkAandeel.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GezamenlijkAandeel.java new file mode 100644 index 0000000..47aa4e4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GezamenlijkAandeel.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2GezamenlijkAandeel complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2GezamenlijkAandeel">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="aandeel" type="{http://www.webservices.nl/soap/}KadasterV2Breuk" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2GezamenlijkAandeel", propOrder = { + +}) +public class KadasterV2GezamenlijkAandeel { + + @XmlElement(required = true) + protected String identificatie; + protected KadasterV2Breuk aandeel; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the aandeel property. + * + * @return + * possible object is + * {@link KadasterV2Breuk } + * + */ + public KadasterV2Breuk getAandeel() { + return aandeel; + } + + /** + * Sets the value of the aandeel property. + * + * @param value + * allowed object is + * {@link KadasterV2Breuk } + * + */ + public void setAandeel(KadasterV2Breuk value) { + this.aandeel = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GezamenlijkAandeelArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GezamenlijkAandeelArray.java new file mode 100644 index 0000000..f326607 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GezamenlijkAandeelArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2GezamenlijkAandeelArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2GezamenlijkAandeelArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2GezamenlijkAandeel" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2GezamenlijkAandeelArray", propOrder = { + "item" +}) +public class KadasterV2GezamenlijkAandeelArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2GezamenlijkAandeel } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Historie.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Historie.java new file mode 100644 index 0000000..09ae846 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Historie.java @@ -0,0 +1,210 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for KadasterV2Historie complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Historie">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="logisch_tijdstip_ontstaan" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="logisch_tijdstip_vervallen" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="status_historie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="technisch_tijdstip_ontstaan" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="technisch_tijdstip_vervallen" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Historie", propOrder = { + +}) +public class KadasterV2Historie { + + @XmlElement(name = "logisch_tijdstip_ontstaan") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar logischTijdstipOntstaan; + @XmlElement(name = "logisch_tijdstip_vervallen") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar logischTijdstipVervallen; + protected BigInteger volgnummer; + @XmlElement(name = "status_historie") + protected String statusHistorie; + @XmlElement(name = "technisch_tijdstip_ontstaan") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar technischTijdstipOntstaan; + @XmlElement(name = "technisch_tijdstip_vervallen") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar technischTijdstipVervallen; + + /** + * Gets the value of the logischTijdstipOntstaan property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLogischTijdstipOntstaan() { + return logischTijdstipOntstaan; + } + + /** + * Sets the value of the logischTijdstipOntstaan property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLogischTijdstipOntstaan(XMLGregorianCalendar value) { + this.logischTijdstipOntstaan = value; + } + + /** + * Gets the value of the logischTijdstipVervallen property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getLogischTijdstipVervallen() { + return logischTijdstipVervallen; + } + + /** + * Sets the value of the logischTijdstipVervallen property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setLogischTijdstipVervallen(XMLGregorianCalendar value) { + this.logischTijdstipVervallen = value; + } + + /** + * Gets the value of the volgnummer property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getVolgnummer() { + return volgnummer; + } + + /** + * Sets the value of the volgnummer property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setVolgnummer(BigInteger value) { + this.volgnummer = value; + } + + /** + * Gets the value of the statusHistorie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatusHistorie() { + return statusHistorie; + } + + /** + * Sets the value of the statusHistorie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatusHistorie(String value) { + this.statusHistorie = value; + } + + /** + * Gets the value of the technischTijdstipOntstaan property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getTechnischTijdstipOntstaan() { + return technischTijdstipOntstaan; + } + + /** + * Sets the value of the technischTijdstipOntstaan property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setTechnischTijdstipOntstaan(XMLGregorianCalendar value) { + this.technischTijdstipOntstaan = value; + } + + /** + * Gets the value of the technischTijdstipVervallen property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getTechnischTijdstipVervallen() { + return technischTijdstipVervallen; + } + + /** + * Sets the value of the technischTijdstipVervallen property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setTechnischTijdstipVervallen(XMLGregorianCalendar value) { + this.technischTijdstipVervallen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Hoofdzaak.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Hoofdzaak.java new file mode 100644 index 0000000..fddc017 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Hoofdzaak.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2Hoofdzaak complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Hoofdzaak">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="aandeel_in_mandeligheid" type="{http://www.webservices.nl/soap/}KadasterV2Breuk" minOccurs="0"/>
+ *         <element name="betreft" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Hoofdzaak", propOrder = { + +}) +public class KadasterV2Hoofdzaak { + + @XmlElement(name = "aandeel_in_mandeligheid") + protected KadasterV2Breuk aandeelInMandeligheid; + protected KadasterV2OnroerendeZaak betreft; + + /** + * Gets the value of the aandeelInMandeligheid property. + * + * @return + * possible object is + * {@link KadasterV2Breuk } + * + */ + public KadasterV2Breuk getAandeelInMandeligheid() { + return aandeelInMandeligheid; + } + + /** + * Sets the value of the aandeelInMandeligheid property. + * + * @param value + * allowed object is + * {@link KadasterV2Breuk } + * + */ + public void setAandeelInMandeligheid(KadasterV2Breuk value) { + this.aandeelInMandeligheid = value; + } + + /** + * Gets the value of the betreft property. + * + * @return + * possible object is + * {@link KadasterV2OnroerendeZaak } + * + */ + public KadasterV2OnroerendeZaak getBetreft() { + return betreft; + } + + /** + * Sets the value of the betreft property. + * + * @param value + * allowed object is + * {@link KadasterV2OnroerendeZaak } + * + */ + public void setBetreft(KadasterV2OnroerendeZaak value) { + this.betreft = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HoofdzaakArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HoofdzaakArray.java new file mode 100644 index 0000000..55848fb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HoofdzaakArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2HoofdzaakArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2HoofdzaakArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Hoofdzaak" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2HoofdzaakArray", propOrder = { + "item" +}) +public class KadasterV2HoofdzaakArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2Hoofdzaak } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypothecairBericht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypothecairBericht.java new file mode 100644 index 0000000..09a35d6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypothecairBericht.java @@ -0,0 +1,398 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for KadasterV2HypothecairBericht complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2HypothecairBericht">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="productienummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="tijdstip_samenstelling_bericht" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="actualiteit_tijdstip_hypothecair" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="actualiteit_tijdstip_kadastraal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="signalering_tijdstip_beslagen" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="signalering_tijdstip_hypothecair" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="signalering_tijdstip_kadastraal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="betreft" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak"/>
+ *         <element name="hypotheken" type="{http://www.webservices.nl/soap/}KadasterV2HypotheekArray" minOccurs="0"/>
+ *         <element name="beslagleggingen" type="{http://www.webservices.nl/soap/}KadasterV2BeslagleggingArray" minOccurs="0"/>
+ *         <element name="zakelijk_rechten" type="{http://www.webservices.nl/soap/}KadasterV2ZakelijkRechtArray" minOccurs="0"/>
+ *         <element name="aantekeningen" type="{http://www.webservices.nl/soap/}KadasterV2AantekeningArray" minOccurs="0"/>
+ *         <element name="stukken" type="{http://www.webservices.nl/soap/}KadasterV2Stukken"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2HypothecairBericht", propOrder = { + +}) +public class KadasterV2HypothecairBericht { + + @XmlElement(required = true) + protected String productienummer; + @XmlElement(name = "tijdstip_samenstelling_bericht", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar tijdstipSamenstellingBericht; + @XmlElement(name = "actualiteit_tijdstip_hypothecair") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar actualiteitTijdstipHypothecair; + @XmlElement(name = "actualiteit_tijdstip_kadastraal") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar actualiteitTijdstipKadastraal; + @XmlElement(name = "signalering_tijdstip_beslagen") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar signaleringTijdstipBeslagen; + @XmlElement(name = "signalering_tijdstip_hypothecair") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar signaleringTijdstipHypothecair; + @XmlElement(name = "signalering_tijdstip_kadastraal") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar signaleringTijdstipKadastraal; + @XmlElement(required = true) + protected KadasterV2OnroerendeZaak betreft; + protected KadasterV2HypotheekArray hypotheken; + protected KadasterV2BeslagleggingArray beslagleggingen; + @XmlElement(name = "zakelijk_rechten") + protected KadasterV2ZakelijkRechtArray zakelijkRechten; + protected KadasterV2AantekeningArray aantekeningen; + @XmlElement(required = true) + protected KadasterV2Stukken stukken; + + /** + * Gets the value of the productienummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProductienummer() { + return productienummer; + } + + /** + * Sets the value of the productienummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProductienummer(String value) { + this.productienummer = value; + } + + /** + * Gets the value of the tijdstipSamenstellingBericht property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getTijdstipSamenstellingBericht() { + return tijdstipSamenstellingBericht; + } + + /** + * Sets the value of the tijdstipSamenstellingBericht property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setTijdstipSamenstellingBericht(XMLGregorianCalendar value) { + this.tijdstipSamenstellingBericht = value; + } + + /** + * Gets the value of the actualiteitTijdstipHypothecair property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getActualiteitTijdstipHypothecair() { + return actualiteitTijdstipHypothecair; + } + + /** + * Sets the value of the actualiteitTijdstipHypothecair property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setActualiteitTijdstipHypothecair(XMLGregorianCalendar value) { + this.actualiteitTijdstipHypothecair = value; + } + + /** + * Gets the value of the actualiteitTijdstipKadastraal property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getActualiteitTijdstipKadastraal() { + return actualiteitTijdstipKadastraal; + } + + /** + * Sets the value of the actualiteitTijdstipKadastraal property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setActualiteitTijdstipKadastraal(XMLGregorianCalendar value) { + this.actualiteitTijdstipKadastraal = value; + } + + /** + * Gets the value of the signaleringTijdstipBeslagen property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSignaleringTijdstipBeslagen() { + return signaleringTijdstipBeslagen; + } + + /** + * Sets the value of the signaleringTijdstipBeslagen property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSignaleringTijdstipBeslagen(XMLGregorianCalendar value) { + this.signaleringTijdstipBeslagen = value; + } + + /** + * Gets the value of the signaleringTijdstipHypothecair property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSignaleringTijdstipHypothecair() { + return signaleringTijdstipHypothecair; + } + + /** + * Sets the value of the signaleringTijdstipHypothecair property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSignaleringTijdstipHypothecair(XMLGregorianCalendar value) { + this.signaleringTijdstipHypothecair = value; + } + + /** + * Gets the value of the signaleringTijdstipKadastraal property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSignaleringTijdstipKadastraal() { + return signaleringTijdstipKadastraal; + } + + /** + * Sets the value of the signaleringTijdstipKadastraal property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSignaleringTijdstipKadastraal(XMLGregorianCalendar value) { + this.signaleringTijdstipKadastraal = value; + } + + /** + * Gets the value of the betreft property. + * + * @return + * possible object is + * {@link KadasterV2OnroerendeZaak } + * + */ + public KadasterV2OnroerendeZaak getBetreft() { + return betreft; + } + + /** + * Sets the value of the betreft property. + * + * @param value + * allowed object is + * {@link KadasterV2OnroerendeZaak } + * + */ + public void setBetreft(KadasterV2OnroerendeZaak value) { + this.betreft = value; + } + + /** + * Gets the value of the hypotheken property. + * + * @return + * possible object is + * {@link KadasterV2HypotheekArray } + * + */ + public KadasterV2HypotheekArray getHypotheken() { + return hypotheken; + } + + /** + * Sets the value of the hypotheken property. + * + * @param value + * allowed object is + * {@link KadasterV2HypotheekArray } + * + */ + public void setHypotheken(KadasterV2HypotheekArray value) { + this.hypotheken = value; + } + + /** + * Gets the value of the beslagleggingen property. + * + * @return + * possible object is + * {@link KadasterV2BeslagleggingArray } + * + */ + public KadasterV2BeslagleggingArray getBeslagleggingen() { + return beslagleggingen; + } + + /** + * Sets the value of the beslagleggingen property. + * + * @param value + * allowed object is + * {@link KadasterV2BeslagleggingArray } + * + */ + public void setBeslagleggingen(KadasterV2BeslagleggingArray value) { + this.beslagleggingen = value; + } + + /** + * Gets the value of the zakelijkRechten property. + * + * @return + * possible object is + * {@link KadasterV2ZakelijkRechtArray } + * + */ + public KadasterV2ZakelijkRechtArray getZakelijkRechten() { + return zakelijkRechten; + } + + /** + * Sets the value of the zakelijkRechten property. + * + * @param value + * allowed object is + * {@link KadasterV2ZakelijkRechtArray } + * + */ + public void setZakelijkRechten(KadasterV2ZakelijkRechtArray value) { + this.zakelijkRechten = value; + } + + /** + * Gets the value of the aantekeningen property. + * + * @return + * possible object is + * {@link KadasterV2AantekeningArray } + * + */ + public KadasterV2AantekeningArray getAantekeningen() { + return aantekeningen; + } + + /** + * Sets the value of the aantekeningen property. + * + * @param value + * allowed object is + * {@link KadasterV2AantekeningArray } + * + */ + public void setAantekeningen(KadasterV2AantekeningArray value) { + this.aantekeningen = value; + } + + /** + * Gets the value of the stukken property. + * + * @return + * possible object is + * {@link KadasterV2Stukken } + * + */ + public KadasterV2Stukken getStukken() { + return stukken; + } + + /** + * Sets the value of the stukken property. + * + * @param value + * allowed object is + * {@link KadasterV2Stukken } + * + */ + public void setStukken(KadasterV2Stukken value) { + this.stukken = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypothecairBerichtResponse.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypothecairBerichtResponse.java new file mode 100644 index 0000000..ece1e2b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypothecairBerichtResponse.java @@ -0,0 +1,146 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2HypothecairBerichtResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2HypothecairBerichtResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bericht" type="{http://www.webservices.nl/soap/}KadasterV2HypothecairBericht" minOccurs="0"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
+ *         <element name="overgegaan_in" type="{http://www.webservices.nl/soap/}KadasterV2OvergegaanIn" minOccurs="0"/>
+ *         <element name="postcode_treffers" type="{http://www.webservices.nl/soap/}KadasterV2PostcodeTreffers" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2HypothecairBerichtResponse", propOrder = { + +}) +public class KadasterV2HypothecairBerichtResponse { + + protected KadasterV2HypothecairBericht bericht; + protected byte[] document; + @XmlElement(name = "overgegaan_in") + protected KadasterV2OvergegaanIn overgegaanIn; + @XmlElement(name = "postcode_treffers") + protected KadasterV2PostcodeTreffers postcodeTreffers; + + /** + * Gets the value of the bericht property. + * + * @return + * possible object is + * {@link KadasterV2HypothecairBericht } + * + */ + public KadasterV2HypothecairBericht getBericht() { + return bericht; + } + + /** + * Sets the value of the bericht property. + * + * @param value + * allowed object is + * {@link KadasterV2HypothecairBericht } + * + */ + public void setBericht(KadasterV2HypothecairBericht value) { + this.bericht = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + + /** + * Gets the value of the overgegaanIn property. + * + * @return + * possible object is + * {@link KadasterV2OvergegaanIn } + * + */ + public KadasterV2OvergegaanIn getOvergegaanIn() { + return overgegaanIn; + } + + /** + * Sets the value of the overgegaanIn property. + * + * @param value + * allowed object is + * {@link KadasterV2OvergegaanIn } + * + */ + public void setOvergegaanIn(KadasterV2OvergegaanIn value) { + this.overgegaanIn = value; + } + + /** + * Gets the value of the postcodeTreffers property. + * + * @return + * possible object is + * {@link KadasterV2PostcodeTreffers } + * + */ + public KadasterV2PostcodeTreffers getPostcodeTreffers() { + return postcodeTreffers; + } + + /** + * Sets the value of the postcodeTreffers property. + * + * @param value + * allowed object is + * {@link KadasterV2PostcodeTreffers } + * + */ + public void setPostcodeTreffers(KadasterV2PostcodeTreffers value) { + this.postcodeTreffers = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Hypotheek.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Hypotheek.java new file mode 100644 index 0000000..2eee240 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Hypotheek.java @@ -0,0 +1,230 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2Hypotheek complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Hypotheek">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="omschrijving_betrokken_recht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="aandeel_in_betrokken_recht" type="{http://www.webservices.nl/soap/}KadasterV2Breuk" minOccurs="0"/>
+ *         <element name="onroerende_zaak" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak" minOccurs="0"/>
+ *         <element name="personen" type="{http://www.webservices.nl/soap/}KadasterV2Personen" minOccurs="0"/>
+ *         <element name="gebaseerd_op" type="{http://www.webservices.nl/soap/}KadasterV2Stukdeel" minOccurs="0"/>
+ *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Hypotheek", propOrder = { + +}) +public class KadasterV2Hypotheek { + + @XmlElement(required = true) + protected String identificatie; + @XmlElement(name = "omschrijving_betrokken_recht") + protected String omschrijvingBetrokkenRecht; + @XmlElement(name = "aandeel_in_betrokken_recht") + protected KadasterV2Breuk aandeelInBetrokkenRecht; + @XmlElement(name = "onroerende_zaak") + protected KadasterV2OnroerendeZaak onroerendeZaak; + protected KadasterV2Personen personen; + @XmlElement(name = "gebaseerd_op") + protected KadasterV2Stukdeel gebaseerdOp; + @XmlElement(name = "vermeld_in") + protected KadasterV2StukdeelArray vermeldIn; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the omschrijvingBetrokkenRecht property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijvingBetrokkenRecht() { + return omschrijvingBetrokkenRecht; + } + + /** + * Sets the value of the omschrijvingBetrokkenRecht property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijvingBetrokkenRecht(String value) { + this.omschrijvingBetrokkenRecht = value; + } + + /** + * Gets the value of the aandeelInBetrokkenRecht property. + * + * @return + * possible object is + * {@link KadasterV2Breuk } + * + */ + public KadasterV2Breuk getAandeelInBetrokkenRecht() { + return aandeelInBetrokkenRecht; + } + + /** + * Sets the value of the aandeelInBetrokkenRecht property. + * + * @param value + * allowed object is + * {@link KadasterV2Breuk } + * + */ + public void setAandeelInBetrokkenRecht(KadasterV2Breuk value) { + this.aandeelInBetrokkenRecht = value; + } + + /** + * Gets the value of the onroerendeZaak property. + * + * @return + * possible object is + * {@link KadasterV2OnroerendeZaak } + * + */ + public KadasterV2OnroerendeZaak getOnroerendeZaak() { + return onroerendeZaak; + } + + /** + * Sets the value of the onroerendeZaak property. + * + * @param value + * allowed object is + * {@link KadasterV2OnroerendeZaak } + * + */ + public void setOnroerendeZaak(KadasterV2OnroerendeZaak value) { + this.onroerendeZaak = value; + } + + /** + * Gets the value of the personen property. + * + * @return + * possible object is + * {@link KadasterV2Personen } + * + */ + public KadasterV2Personen getPersonen() { + return personen; + } + + /** + * Sets the value of the personen property. + * + * @param value + * allowed object is + * {@link KadasterV2Personen } + * + */ + public void setPersonen(KadasterV2Personen value) { + this.personen = value; + } + + /** + * Gets the value of the gebaseerdOp property. + * + * @return + * possible object is + * {@link KadasterV2Stukdeel } + * + */ + public KadasterV2Stukdeel getGebaseerdOp() { + return gebaseerdOp; + } + + /** + * Sets the value of the gebaseerdOp property. + * + * @param value + * allowed object is + * {@link KadasterV2Stukdeel } + * + */ + public void setGebaseerdOp(KadasterV2Stukdeel value) { + this.gebaseerdOp = value; + } + + /** + * Gets the value of the vermeldIn property. + * + * @return + * possible object is + * {@link KadasterV2StukdeelArray } + * + */ + public KadasterV2StukdeelArray getVermeldIn() { + return vermeldIn; + } + + /** + * Sets the value of the vermeldIn property. + * + * @param value + * allowed object is + * {@link KadasterV2StukdeelArray } + * + */ + public void setVermeldIn(KadasterV2StukdeelArray value) { + this.vermeldIn = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypotheekArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypotheekArray.java new file mode 100644 index 0000000..4ade523 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypotheekArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2HypotheekArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2HypotheekArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Hypotheek" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2HypotheekArray", propOrder = { + "item" +}) +public class KadasterV2HypotheekArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2Hypotheek } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2JaarlijksBedrag.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2JaarlijksBedrag.java new file mode 100644 index 0000000..4ca7199 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2JaarlijksBedrag.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2JaarlijksBedrag complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2JaarlijksBedrag">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bedrag" type="{http://www.webservices.nl/soap/}KadasterV2Bedrag" minOccurs="0"/>
+ *         <element name="betreft_meer_onroerende_zaken" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2JaarlijksBedrag", propOrder = { + +}) +public class KadasterV2JaarlijksBedrag { + + protected KadasterV2Bedrag bedrag; + @XmlElement(name = "betreft_meer_onroerende_zaken") + protected Boolean betreftMeerOnroerendeZaken; + + /** + * Gets the value of the bedrag property. + * + * @return + * possible object is + * {@link KadasterV2Bedrag } + * + */ + public KadasterV2Bedrag getBedrag() { + return bedrag; + } + + /** + * Sets the value of the bedrag property. + * + * @param value + * allowed object is + * {@link KadasterV2Bedrag } + * + */ + public void setBedrag(KadasterV2Bedrag value) { + this.bedrag = value; + } + + /** + * Gets the value of the betreftMeerOnroerendeZaken property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isBetreftMeerOnroerendeZaken() { + return betreftMeerOnroerendeZaken; + } + + /** + * Sets the value of the betreftMeerOnroerendeZaken property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setBetreftMeerOnroerendeZaken(Boolean value) { + this.betreftMeerOnroerendeZaken = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2JaarlijksBedragArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2JaarlijksBedragArray.java new file mode 100644 index 0000000..d478211 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2JaarlijksBedragArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2JaarlijksBedragArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2JaarlijksBedragArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2JaarlijksBedrag" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2JaarlijksBedragArray", propOrder = { + "item" +}) +public class KadasterV2JaarlijksBedragArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2JaarlijksBedrag } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraalBericht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraalBericht.java new file mode 100644 index 0000000..7d38baf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraalBericht.java @@ -0,0 +1,397 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for KadasterV2KadastraalBericht complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2KadastraalBericht">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="productienummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="tijdstip_samenstelling_bericht" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="actualiteit_tijdstip_hypothecair" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="actualiteit_tijdstip_kadastraal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="signalering_tijdstip_beslagen" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="signalering_tijdstip_hypothecair" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="signalering_tijdstip_kadastraal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="betreft" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak"/>
+ *         <element name="tenaamstellingen" type="{http://www.webservices.nl/soap/}KadasterV2TenaamstellingArray" minOccurs="0"/>
+ *         <element name="zakelijk_rechten" type="{http://www.webservices.nl/soap/}KadasterV2ZakelijkRechtArray" minOccurs="0"/>
+ *         <element name="aantekeningen" type="{http://www.webservices.nl/soap/}KadasterV2AantekeningArray" minOccurs="0"/>
+ *         <element name="erfpachtcanon" type="{http://www.webservices.nl/soap/}KadasterV2ErfpachtCanonArray" minOccurs="0"/>
+ *         <element name="stukken" type="{http://www.webservices.nl/soap/}KadasterV2Stukken" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2KadastraalBericht", propOrder = { + +}) +public class KadasterV2KadastraalBericht { + + @XmlElement(required = true) + protected String productienummer; + @XmlElement(name = "tijdstip_samenstelling_bericht", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar tijdstipSamenstellingBericht; + @XmlElement(name = "actualiteit_tijdstip_hypothecair") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar actualiteitTijdstipHypothecair; + @XmlElement(name = "actualiteit_tijdstip_kadastraal") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar actualiteitTijdstipKadastraal; + @XmlElement(name = "signalering_tijdstip_beslagen") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar signaleringTijdstipBeslagen; + @XmlElement(name = "signalering_tijdstip_hypothecair") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar signaleringTijdstipHypothecair; + @XmlElement(name = "signalering_tijdstip_kadastraal") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar signaleringTijdstipKadastraal; + @XmlElement(required = true) + protected KadasterV2OnroerendeZaak betreft; + protected KadasterV2TenaamstellingArray tenaamstellingen; + @XmlElement(name = "zakelijk_rechten") + protected KadasterV2ZakelijkRechtArray zakelijkRechten; + protected KadasterV2AantekeningArray aantekeningen; + protected KadasterV2ErfpachtCanonArray erfpachtcanon; + protected KadasterV2Stukken stukken; + + /** + * Gets the value of the productienummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProductienummer() { + return productienummer; + } + + /** + * Sets the value of the productienummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProductienummer(String value) { + this.productienummer = value; + } + + /** + * Gets the value of the tijdstipSamenstellingBericht property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getTijdstipSamenstellingBericht() { + return tijdstipSamenstellingBericht; + } + + /** + * Sets the value of the tijdstipSamenstellingBericht property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setTijdstipSamenstellingBericht(XMLGregorianCalendar value) { + this.tijdstipSamenstellingBericht = value; + } + + /** + * Gets the value of the actualiteitTijdstipHypothecair property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getActualiteitTijdstipHypothecair() { + return actualiteitTijdstipHypothecair; + } + + /** + * Sets the value of the actualiteitTijdstipHypothecair property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setActualiteitTijdstipHypothecair(XMLGregorianCalendar value) { + this.actualiteitTijdstipHypothecair = value; + } + + /** + * Gets the value of the actualiteitTijdstipKadastraal property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getActualiteitTijdstipKadastraal() { + return actualiteitTijdstipKadastraal; + } + + /** + * Sets the value of the actualiteitTijdstipKadastraal property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setActualiteitTijdstipKadastraal(XMLGregorianCalendar value) { + this.actualiteitTijdstipKadastraal = value; + } + + /** + * Gets the value of the signaleringTijdstipBeslagen property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSignaleringTijdstipBeslagen() { + return signaleringTijdstipBeslagen; + } + + /** + * Sets the value of the signaleringTijdstipBeslagen property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSignaleringTijdstipBeslagen(XMLGregorianCalendar value) { + this.signaleringTijdstipBeslagen = value; + } + + /** + * Gets the value of the signaleringTijdstipHypothecair property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSignaleringTijdstipHypothecair() { + return signaleringTijdstipHypothecair; + } + + /** + * Sets the value of the signaleringTijdstipHypothecair property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSignaleringTijdstipHypothecair(XMLGregorianCalendar value) { + this.signaleringTijdstipHypothecair = value; + } + + /** + * Gets the value of the signaleringTijdstipKadastraal property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSignaleringTijdstipKadastraal() { + return signaleringTijdstipKadastraal; + } + + /** + * Sets the value of the signaleringTijdstipKadastraal property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSignaleringTijdstipKadastraal(XMLGregorianCalendar value) { + this.signaleringTijdstipKadastraal = value; + } + + /** + * Gets the value of the betreft property. + * + * @return + * possible object is + * {@link KadasterV2OnroerendeZaak } + * + */ + public KadasterV2OnroerendeZaak getBetreft() { + return betreft; + } + + /** + * Sets the value of the betreft property. + * + * @param value + * allowed object is + * {@link KadasterV2OnroerendeZaak } + * + */ + public void setBetreft(KadasterV2OnroerendeZaak value) { + this.betreft = value; + } + + /** + * Gets the value of the tenaamstellingen property. + * + * @return + * possible object is + * {@link KadasterV2TenaamstellingArray } + * + */ + public KadasterV2TenaamstellingArray getTenaamstellingen() { + return tenaamstellingen; + } + + /** + * Sets the value of the tenaamstellingen property. + * + * @param value + * allowed object is + * {@link KadasterV2TenaamstellingArray } + * + */ + public void setTenaamstellingen(KadasterV2TenaamstellingArray value) { + this.tenaamstellingen = value; + } + + /** + * Gets the value of the zakelijkRechten property. + * + * @return + * possible object is + * {@link KadasterV2ZakelijkRechtArray } + * + */ + public KadasterV2ZakelijkRechtArray getZakelijkRechten() { + return zakelijkRechten; + } + + /** + * Sets the value of the zakelijkRechten property. + * + * @param value + * allowed object is + * {@link KadasterV2ZakelijkRechtArray } + * + */ + public void setZakelijkRechten(KadasterV2ZakelijkRechtArray value) { + this.zakelijkRechten = value; + } + + /** + * Gets the value of the aantekeningen property. + * + * @return + * possible object is + * {@link KadasterV2AantekeningArray } + * + */ + public KadasterV2AantekeningArray getAantekeningen() { + return aantekeningen; + } + + /** + * Sets the value of the aantekeningen property. + * + * @param value + * allowed object is + * {@link KadasterV2AantekeningArray } + * + */ + public void setAantekeningen(KadasterV2AantekeningArray value) { + this.aantekeningen = value; + } + + /** + * Gets the value of the erfpachtcanon property. + * + * @return + * possible object is + * {@link KadasterV2ErfpachtCanonArray } + * + */ + public KadasterV2ErfpachtCanonArray getErfpachtcanon() { + return erfpachtcanon; + } + + /** + * Sets the value of the erfpachtcanon property. + * + * @param value + * allowed object is + * {@link KadasterV2ErfpachtCanonArray } + * + */ + public void setErfpachtcanon(KadasterV2ErfpachtCanonArray value) { + this.erfpachtcanon = value; + } + + /** + * Gets the value of the stukken property. + * + * @return + * possible object is + * {@link KadasterV2Stukken } + * + */ + public KadasterV2Stukken getStukken() { + return stukken; + } + + /** + * Sets the value of the stukken property. + * + * @param value + * allowed object is + * {@link KadasterV2Stukken } + * + */ + public void setStukken(KadasterV2Stukken value) { + this.stukken = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraalBerichtResponse.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraalBerichtResponse.java new file mode 100644 index 0000000..360b6de --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraalBerichtResponse.java @@ -0,0 +1,146 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2KadastraalBerichtResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2KadastraalBerichtResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bericht" type="{http://www.webservices.nl/soap/}KadasterV2KadastraalBericht" minOccurs="0"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
+ *         <element name="overgegaan_in" type="{http://www.webservices.nl/soap/}KadasterV2OvergegaanIn" minOccurs="0"/>
+ *         <element name="postcode_treffers" type="{http://www.webservices.nl/soap/}KadasterV2PostcodeTreffers" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2KadastraalBerichtResponse", propOrder = { + +}) +public class KadasterV2KadastraalBerichtResponse { + + protected KadasterV2KadastraalBericht bericht; + protected byte[] document; + @XmlElement(name = "overgegaan_in") + protected KadasterV2OvergegaanIn overgegaanIn; + @XmlElement(name = "postcode_treffers") + protected KadasterV2PostcodeTreffers postcodeTreffers; + + /** + * Gets the value of the bericht property. + * + * @return + * possible object is + * {@link KadasterV2KadastraalBericht } + * + */ + public KadasterV2KadastraalBericht getBericht() { + return bericht; + } + + /** + * Sets the value of the bericht property. + * + * @param value + * allowed object is + * {@link KadasterV2KadastraalBericht } + * + */ + public void setBericht(KadasterV2KadastraalBericht value) { + this.bericht = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + + /** + * Gets the value of the overgegaanIn property. + * + * @return + * possible object is + * {@link KadasterV2OvergegaanIn } + * + */ + public KadasterV2OvergegaanIn getOvergegaanIn() { + return overgegaanIn; + } + + /** + * Sets the value of the overgegaanIn property. + * + * @param value + * allowed object is + * {@link KadasterV2OvergegaanIn } + * + */ + public void setOvergegaanIn(KadasterV2OvergegaanIn value) { + this.overgegaanIn = value; + } + + /** + * Gets the value of the postcodeTreffers property. + * + * @return + * possible object is + * {@link KadasterV2PostcodeTreffers } + * + */ + public KadasterV2PostcodeTreffers getPostcodeTreffers() { + return postcodeTreffers; + } + + /** + * Sets the value of the postcodeTreffers property. + * + * @param value + * allowed object is + * {@link KadasterV2PostcodeTreffers } + * + */ + public void setPostcodeTreffers(KadasterV2PostcodeTreffers value) { + this.postcodeTreffers = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraleAanduiding.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraleAanduiding.java new file mode 100644 index 0000000..6370294 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraleAanduiding.java @@ -0,0 +1,149 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2KadastraleAanduiding complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2KadastraleAanduiding">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="kadastrale_gemeente" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="appartementsrecht_volgnummer" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2KadastraleAanduiding", propOrder = { + +}) +public class KadasterV2KadastraleAanduiding { + + @XmlElement(name = "kadastrale_gemeente") + protected String kadastraleGemeente; + protected String sectie; + protected BigInteger perceelnummer; + @XmlElement(name = "appartementsrecht_volgnummer") + protected BigInteger appartementsrechtVolgnummer; + + /** + * Gets the value of the kadastraleGemeente property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKadastraleGemeente() { + return kadastraleGemeente; + } + + /** + * Sets the value of the kadastraleGemeente property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKadastraleGemeente(String value) { + this.kadastraleGemeente = value; + } + + /** + * Gets the value of the sectie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectie() { + return sectie; + } + + /** + * Sets the value of the sectie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectie(String value) { + this.sectie = value; + } + + /** + * Gets the value of the perceelnummer property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setPerceelnummer(BigInteger value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the appartementsrechtVolgnummer property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getAppartementsrechtVolgnummer() { + return appartementsrechtVolgnummer; + } + + /** + * Sets the value of the appartementsrechtVolgnummer property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setAppartementsrechtVolgnummer(BigInteger value) { + this.appartementsrechtVolgnummer = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraleGrootte.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraleGrootte.java new file mode 100644 index 0000000..97f3d0b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraleGrootte.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2KadastraleGrootte complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2KadastraleGrootte">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="waarde" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="soort_grootte" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2KadastraleGrootte", propOrder = { + +}) +public class KadasterV2KadastraleGrootte { + + protected Float waarde; + @XmlElement(name = "soort_grootte") + protected String soortGrootte; + + /** + * Gets the value of the waarde property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getWaarde() { + return waarde; + } + + /** + * Sets the value of the waarde property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setWaarde(Float value) { + this.waarde = value; + } + + /** + * Gets the value of the soortGrootte property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSoortGrootte() { + return soortGrootte; + } + + /** + * Sets the value of the soortGrootte property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSoortGrootte(String value) { + this.soortGrootte = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Koopsom.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Koopsom.java new file mode 100644 index 0000000..ad3deb3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Koopsom.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for KadasterV2Koopsom complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Koopsom">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bedrag" type="{http://www.webservices.nl/soap/}KadasterV2Bedrag" minOccurs="0"/>
+ *         <element name="indicatie_meer_objecten" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="koopjaar" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="koopdatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Koopsom", propOrder = { + +}) +public class KadasterV2Koopsom { + + protected KadasterV2Bedrag bedrag; + @XmlElement(name = "indicatie_meer_objecten") + protected Boolean indicatieMeerObjecten; + protected Integer koopjaar; + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar koopdatum; + + /** + * Gets the value of the bedrag property. + * + * @return + * possible object is + * {@link KadasterV2Bedrag } + * + */ + public KadasterV2Bedrag getBedrag() { + return bedrag; + } + + /** + * Sets the value of the bedrag property. + * + * @param value + * allowed object is + * {@link KadasterV2Bedrag } + * + */ + public void setBedrag(KadasterV2Bedrag value) { + this.bedrag = value; + } + + /** + * Gets the value of the indicatieMeerObjecten property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicatieMeerObjecten() { + return indicatieMeerObjecten; + } + + /** + * Sets the value of the indicatieMeerObjecten property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicatieMeerObjecten(Boolean value) { + this.indicatieMeerObjecten = value; + } + + /** + * Gets the value of the koopjaar property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getKoopjaar() { + return koopjaar; + } + + /** + * Sets the value of the koopjaar property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setKoopjaar(Integer value) { + this.koopjaar = value; + } + + /** + * Gets the value of the koopdatum property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getKoopdatum() { + return koopdatum; + } + + /** + * Sets the value of the koopdatum property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setKoopdatum(XMLGregorianCalendar value) { + this.koopdatum = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsomGegeven.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsomGegeven.java new file mode 100644 index 0000000..d8fcf57 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsomGegeven.java @@ -0,0 +1,175 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2KoopsomGegeven complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2KoopsomGegeven">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="huisnummer_volledig" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="omschrijving_cultuur" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="kadastrale_grootte" type="{http://www.webservices.nl/soap/}KadasterV2KadastraleGrootte" minOccurs="0"/>
+ *         <element name="koopsom" type="{http://www.webservices.nl/soap/}KadasterV2Koopsom" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2KoopsomGegeven", propOrder = { + +}) +public class KadasterV2KoopsomGegeven { + + protected String identificatie; + @XmlElement(name = "huisnummer_volledig") + protected String huisnummerVolledig; + @XmlElement(name = "omschrijving_cultuur") + protected String omschrijvingCultuur; + @XmlElement(name = "kadastrale_grootte") + protected KadasterV2KadastraleGrootte kadastraleGrootte; + protected KadasterV2Koopsom koopsom; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the huisnummerVolledig property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerVolledig() { + return huisnummerVolledig; + } + + /** + * Sets the value of the huisnummerVolledig property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerVolledig(String value) { + this.huisnummerVolledig = value; + } + + /** + * Gets the value of the omschrijvingCultuur property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijvingCultuur() { + return omschrijvingCultuur; + } + + /** + * Sets the value of the omschrijvingCultuur property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijvingCultuur(String value) { + this.omschrijvingCultuur = value; + } + + /** + * Gets the value of the kadastraleGrootte property. + * + * @return + * possible object is + * {@link KadasterV2KadastraleGrootte } + * + */ + public KadasterV2KadastraleGrootte getKadastraleGrootte() { + return kadastraleGrootte; + } + + /** + * Sets the value of the kadastraleGrootte property. + * + * @param value + * allowed object is + * {@link KadasterV2KadastraleGrootte } + * + */ + public void setKadastraleGrootte(KadasterV2KadastraleGrootte value) { + this.kadastraleGrootte = value; + } + + /** + * Gets the value of the koopsom property. + * + * @return + * possible object is + * {@link KadasterV2Koopsom } + * + */ + public KadasterV2Koopsom getKoopsom() { + return koopsom; + } + + /** + * Sets the value of the koopsom property. + * + * @param value + * allowed object is + * {@link KadasterV2Koopsom } + * + */ + public void setKoopsom(KadasterV2Koopsom value) { + this.koopsom = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsomGegevenArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsomGegevenArray.java new file mode 100644 index 0000000..1e34349 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsomGegevenArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2KoopsomGegevenArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2KoopsomGegevenArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2KoopsomGegeven" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2KoopsomGegevenArray", propOrder = { + "item" +}) +public class KadasterV2KoopsomGegevenArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2KoopsomGegeven } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsommenOverzicht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsommenOverzicht.java new file mode 100644 index 0000000..ce917d6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsommenOverzicht.java @@ -0,0 +1,207 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for KadasterV2KoopsommenOverzicht complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2KoopsommenOverzicht">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="productienummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="adres_range" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="woonplaats_naam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="actualiteittijdstip_koopsommen" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="tijdstip_samenstelling_bericht" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="gevraagd_gebied" type="{http://www.webservices.nl/soap/}KadasterV2GevraagdGebied" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2KoopsommenOverzicht", propOrder = { + +}) +public class KadasterV2KoopsommenOverzicht { + + protected String productienummer; + @XmlElement(name = "adres_range") + protected String adresRange; + @XmlElement(name = "woonplaats_naam") + protected String woonplaatsNaam; + @XmlElement(name = "actualiteittijdstip_koopsommen") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar actualiteittijdstipKoopsommen; + @XmlElement(name = "tijdstip_samenstelling_bericht") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar tijdstipSamenstellingBericht; + @XmlElement(name = "gevraagd_gebied") + protected KadasterV2GevraagdGebied gevraagdGebied; + + /** + * Gets the value of the productienummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProductienummer() { + return productienummer; + } + + /** + * Sets the value of the productienummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProductienummer(String value) { + this.productienummer = value; + } + + /** + * Gets the value of the adresRange property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAdresRange() { + return adresRange; + } + + /** + * Sets the value of the adresRange property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAdresRange(String value) { + this.adresRange = value; + } + + /** + * Gets the value of the woonplaatsNaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWoonplaatsNaam() { + return woonplaatsNaam; + } + + /** + * Sets the value of the woonplaatsNaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWoonplaatsNaam(String value) { + this.woonplaatsNaam = value; + } + + /** + * Gets the value of the actualiteittijdstipKoopsommen property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getActualiteittijdstipKoopsommen() { + return actualiteittijdstipKoopsommen; + } + + /** + * Sets the value of the actualiteittijdstipKoopsommen property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setActualiteittijdstipKoopsommen(XMLGregorianCalendar value) { + this.actualiteittijdstipKoopsommen = value; + } + + /** + * Gets the value of the tijdstipSamenstellingBericht property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getTijdstipSamenstellingBericht() { + return tijdstipSamenstellingBericht; + } + + /** + * Sets the value of the tijdstipSamenstellingBericht property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setTijdstipSamenstellingBericht(XMLGregorianCalendar value) { + this.tijdstipSamenstellingBericht = value; + } + + /** + * Gets the value of the gevraagdGebied property. + * + * @return + * possible object is + * {@link KadasterV2GevraagdGebied } + * + */ + public KadasterV2GevraagdGebied getGevraagdGebied() { + return gevraagdGebied; + } + + /** + * Sets the value of the gevraagdGebied property. + * + * @param value + * allowed object is + * {@link KadasterV2GevraagdGebied } + * + */ + public void setGevraagdGebied(KadasterV2GevraagdGebied value) { + this.gevraagdGebied = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsommenOverzichtResponse.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsommenOverzichtResponse.java new file mode 100644 index 0000000..4e2df51 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsommenOverzichtResponse.java @@ -0,0 +1,91 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2KoopsommenOverzichtResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2KoopsommenOverzichtResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="overzicht" type="{http://www.webservices.nl/soap/}KadasterV2KoopsommenOverzicht" minOccurs="0"/>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2KoopsommenOverzichtResponse", propOrder = { + +}) +public class KadasterV2KoopsommenOverzichtResponse { + + protected KadasterV2KoopsommenOverzicht overzicht; + protected byte[] document; + + /** + * Gets the value of the overzicht property. + * + * @return + * possible object is + * {@link KadasterV2KoopsommenOverzicht } + * + */ + public KadasterV2KoopsommenOverzicht getOverzicht() { + return overzicht; + } + + /** + * Sets the value of the overzicht property. + * + * @param value + * allowed object is + * {@link KadasterV2KoopsommenOverzicht } + * + */ + public void setOverzicht(KadasterV2KoopsommenOverzicht value) { + this.overzicht = value; + } + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LandinrichtingsRente.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LandinrichtingsRente.java new file mode 100644 index 0000000..db0db26 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LandinrichtingsRente.java @@ -0,0 +1,94 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2LandinrichtingsRente complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2LandinrichtingsRente">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bedrag" type="{http://www.webservices.nl/soap/}KadasterV2Bedrag" minOccurs="0"/>
+ *         <element name="eindjaar" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2LandinrichtingsRente", propOrder = { + +}) +public class KadasterV2LandinrichtingsRente { + + protected KadasterV2Bedrag bedrag; + protected BigInteger eindjaar; + + /** + * Gets the value of the bedrag property. + * + * @return + * possible object is + * {@link KadasterV2Bedrag } + * + */ + public KadasterV2Bedrag getBedrag() { + return bedrag; + } + + /** + * Sets the value of the bedrag property. + * + * @param value + * allowed object is + * {@link KadasterV2Bedrag } + * + */ + public void setBedrag(KadasterV2Bedrag value) { + this.bedrag = value; + } + + /** + * Gets the value of the eindjaar property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getEindjaar() { + return eindjaar; + } + + /** + * Sets the value of the eindjaar property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setEindjaar(BigInteger value) { + this.eindjaar = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LandinrichtingsRenteArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LandinrichtingsRenteArray.java new file mode 100644 index 0000000..9d39ae2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LandinrichtingsRenteArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2LandinrichtingsRenteArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2LandinrichtingsRenteArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2LandinrichtingsRente" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2LandinrichtingsRenteArray", propOrder = { + "item" +}) +public class KadasterV2LandinrichtingsRenteArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2LandinrichtingsRente } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBinnenland.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBinnenland.java new file mode 100644 index 0000000..03956c2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBinnenland.java @@ -0,0 +1,253 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2LocatieBinnenland complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2LocatieBinnenland">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="straatnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="huisletter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="huisnummertoevoeging" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="in_onderzoek" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="woonplaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2LocatieBinnenland", propOrder = { + +}) +public class KadasterV2LocatieBinnenland { + + @XmlElement(required = true) + protected String identificatie; + protected String straatnaam; + protected BigInteger huisnummer; + protected String huisletter; + protected String huisnummertoevoeging; + protected String postcode; + @XmlElement(name = "in_onderzoek") + protected String inOnderzoek; + protected String woonplaats; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the straatnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStraatnaam() { + return straatnaam; + } + + /** + * Sets the value of the straatnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStraatnaam(String value) { + this.straatnaam = value; + } + + /** + * Gets the value of the huisnummer property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setHuisnummer(BigInteger value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisletter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisletter() { + return huisletter; + } + + /** + * Sets the value of the huisletter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisletter(String value) { + this.huisletter = value; + } + + /** + * Gets the value of the huisnummertoevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummertoevoeging() { + return huisnummertoevoeging; + } + + /** + * Sets the value of the huisnummertoevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummertoevoeging(String value) { + this.huisnummertoevoeging = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the inOnderzoek property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInOnderzoek() { + return inOnderzoek; + } + + /** + * Sets the value of the inOnderzoek property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInOnderzoek(String value) { + this.inOnderzoek = value; + } + + /** + * Gets the value of the woonplaats property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWoonplaats() { + return woonplaats; + } + + /** + * Sets the value of the woonplaats property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWoonplaats(String value) { + this.woonplaats = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBinnenlandArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBinnenlandArray.java new file mode 100644 index 0000000..0c4ccd1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBinnenlandArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2LocatieBinnenlandArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2LocatieBinnenlandArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2LocatieBinnenland" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2LocatieBinnenlandArray", propOrder = { + "item" +}) +public class KadasterV2LocatieBinnenlandArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2LocatieBinnenland } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBuitenland.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBuitenland.java new file mode 100644 index 0000000..82b96e5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBuitenland.java @@ -0,0 +1,200 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2LocatieBuitenland complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2LocatieBuitenland">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="adres" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="adres_regels" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="woonplaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="regio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="land" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2LocatieBuitenland", propOrder = { + +}) +public class KadasterV2LocatieBuitenland { + + @XmlElement(required = true) + protected String identificatie; + protected String adres; + @XmlElement(name = "adres_regels") + protected StringArray adresRegels; + protected String woonplaats; + protected String regio; + protected String land; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the adres property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAdres() { + return adres; + } + + /** + * Sets the value of the adres property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAdres(String value) { + this.adres = value; + } + + /** + * Gets the value of the adresRegels property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getAdresRegels() { + return adresRegels; + } + + /** + * Sets the value of the adresRegels property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setAdresRegels(StringArray value) { + this.adresRegels = value; + } + + /** + * Gets the value of the woonplaats property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWoonplaats() { + return woonplaats; + } + + /** + * Sets the value of the woonplaats property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWoonplaats(String value) { + this.woonplaats = value; + } + + /** + * Gets the value of the regio property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegio() { + return regio; + } + + /** + * Sets the value of the regio property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegio(String value) { + this.regio = value; + } + + /** + * Gets the value of the land property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLand() { + return land; + } + + /** + * Sets the value of the land property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLand(String value) { + this.land = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBuitenlandArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBuitenlandArray.java new file mode 100644 index 0000000..ce0cb0f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBuitenlandArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2LocatieBuitenlandArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2LocatieBuitenlandArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2LocatieBuitenland" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2LocatieBuitenlandArray", propOrder = { + "item" +}) +public class KadasterV2LocatieBuitenlandArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2LocatieBuitenland } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatiePostbus.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatiePostbus.java new file mode 100644 index 0000000..e5c3f8b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatiePostbus.java @@ -0,0 +1,148 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2LocatiePostbus complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2LocatiePostbus">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postbus_nummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="woonplaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2LocatiePostbus", propOrder = { + +}) +public class KadasterV2LocatiePostbus { + + @XmlElement(required = true) + protected String identificatie; + @XmlElement(name = "postbus_nummer") + protected String postbusNummer; + protected String postcode; + protected String woonplaats; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the postbusNummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostbusNummer() { + return postbusNummer; + } + + /** + * Sets the value of the postbusNummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostbusNummer(String value) { + this.postbusNummer = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the woonplaats property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWoonplaats() { + return woonplaats; + } + + /** + * Sets the value of the woonplaats property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWoonplaats(String value) { + this.woonplaats = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatiePostbusArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatiePostbusArray.java new file mode 100644 index 0000000..b57de2d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatiePostbusArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2LocatiePostbusArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2LocatiePostbusArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2LocatiePostbus" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2LocatiePostbusArray", propOrder = { + "item" +}) +public class KadasterV2LocatiePostbusArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2LocatiePostbus } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Mandeligheid.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Mandeligheid.java new file mode 100644 index 0000000..c807a30 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Mandeligheid.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2Mandeligheid complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Mandeligheid">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="hoort_bij" type="{http://www.webservices.nl/soap/}KadasterV2HoofdzaakArray" minOccurs="0"/>
+ *         <element name="gebaseerd_op" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Mandeligheid", propOrder = { + +}) +public class KadasterV2Mandeligheid { + + protected String identificatie; + @XmlElement(name = "hoort_bij") + protected KadasterV2HoofdzaakArray hoortBij; + @XmlElement(name = "gebaseerd_op") + protected KadasterV2StukdeelArray gebaseerdOp; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the hoortBij property. + * + * @return + * possible object is + * {@link KadasterV2HoofdzaakArray } + * + */ + public KadasterV2HoofdzaakArray getHoortBij() { + return hoortBij; + } + + /** + * Sets the value of the hoortBij property. + * + * @param value + * allowed object is + * {@link KadasterV2HoofdzaakArray } + * + */ + public void setHoortBij(KadasterV2HoofdzaakArray value) { + this.hoortBij = value; + } + + /** + * Gets the value of the gebaseerdOp property. + * + * @return + * possible object is + * {@link KadasterV2StukdeelArray } + * + */ + public KadasterV2StukdeelArray getGebaseerdOp() { + return gebaseerdOp; + } + + /** + * Sets the value of the gebaseerdOp property. + * + * @param value + * allowed object is + * {@link KadasterV2StukdeelArray } + * + */ + public void setGebaseerdOp(KadasterV2StukdeelArray value) { + this.gebaseerdOp = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2MandeligheidArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2MandeligheidArray.java new file mode 100644 index 0000000..409f8da --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2MandeligheidArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2MandeligheidArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2MandeligheidArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Mandeligheid" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2MandeligheidArray", propOrder = { + "item" +}) +public class KadasterV2MandeligheidArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2Mandeligheid } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NatuurlijkPersoon.java new file mode 100644 index 0000000..4c23554 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NatuurlijkPersoon.java @@ -0,0 +1,577 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for KadasterV2NatuurlijkPersoon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2NatuurlijkPersoon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="indicatie_beschikkingsbevoegdheid" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="bsn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="aanduiding_naamgebruik" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="adellijke_titel_of_predikaat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="voorletters" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="voornamen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="voorvoegsel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="geslachtnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="geslacht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="datum_geboorte" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="indicatie_overleden" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="datum_overlijden" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="land_waarnaar_vertrokken" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bpr_gekoppeld" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="burgerlijke_staat_omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="postlocatie" type="{http://www.webservices.nl/soap/}KadasterV2AdresLocatie" minOccurs="0"/>
+ *         <element name="woonlocatie" type="{http://www.webservices.nl/soap/}KadasterV2AdresLocatie" minOccurs="0"/>
+ *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
+ *         <element name="aanvullingen" type="{http://www.webservices.nl/soap/}KadasterV2AanvullingArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2NatuurlijkPersoon", propOrder = { + +}) +public class KadasterV2NatuurlijkPersoon { + + @XmlElement(required = true) + protected String identificatie; + @XmlElement(name = "indicatie_beschikkingsbevoegdheid") + protected Boolean indicatieBeschikkingsbevoegdheid; + protected String bsn; + @XmlElement(name = "aanduiding_naamgebruik") + protected String aanduidingNaamgebruik; + @XmlElement(name = "adellijke_titel_of_predikaat") + protected String adellijkeTitelOfPredikaat; + protected String voorletters; + protected String voornamen; + protected String voorvoegsel; + protected String geslachtnaam; + protected String geslacht; + @XmlElement(name = "datum_geboorte") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar datumGeboorte; + @XmlElement(name = "indicatie_overleden") + protected Boolean indicatieOverleden; + @XmlElement(name = "datum_overlijden") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar datumOverlijden; + @XmlElement(name = "land_waarnaar_vertrokken") + protected String landWaarnaarVertrokken; + @XmlElement(name = "bpr_gekoppeld") + protected Boolean bprGekoppeld; + @XmlElement(name = "burgerlijke_staat_omschrijving") + protected String burgerlijkeStaatOmschrijving; + protected KadasterV2AdresLocatie postlocatie; + protected KadasterV2AdresLocatie woonlocatie; + @XmlElement(name = "vermeld_in") + protected KadasterV2StukdeelArray vermeldIn; + protected KadasterV2AanvullingArray aanvullingen; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the indicatieBeschikkingsbevoegdheid property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicatieBeschikkingsbevoegdheid() { + return indicatieBeschikkingsbevoegdheid; + } + + /** + * Sets the value of the indicatieBeschikkingsbevoegdheid property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicatieBeschikkingsbevoegdheid(Boolean value) { + this.indicatieBeschikkingsbevoegdheid = value; + } + + /** + * Gets the value of the bsn property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBsn() { + return bsn; + } + + /** + * Sets the value of the bsn property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBsn(String value) { + this.bsn = value; + } + + /** + * Gets the value of the aanduidingNaamgebruik property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAanduidingNaamgebruik() { + return aanduidingNaamgebruik; + } + + /** + * Sets the value of the aanduidingNaamgebruik property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAanduidingNaamgebruik(String value) { + this.aanduidingNaamgebruik = value; + } + + /** + * Gets the value of the adellijkeTitelOfPredikaat property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAdellijkeTitelOfPredikaat() { + return adellijkeTitelOfPredikaat; + } + + /** + * Sets the value of the adellijkeTitelOfPredikaat property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAdellijkeTitelOfPredikaat(String value) { + this.adellijkeTitelOfPredikaat = value; + } + + /** + * Gets the value of the voorletters property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVoorletters() { + return voorletters; + } + + /** + * Sets the value of the voorletters property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVoorletters(String value) { + this.voorletters = value; + } + + /** + * Gets the value of the voornamen property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVoornamen() { + return voornamen; + } + + /** + * Sets the value of the voornamen property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVoornamen(String value) { + this.voornamen = value; + } + + /** + * Gets the value of the voorvoegsel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVoorvoegsel() { + return voorvoegsel; + } + + /** + * Sets the value of the voorvoegsel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVoorvoegsel(String value) { + this.voorvoegsel = value; + } + + /** + * Gets the value of the geslachtnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeslachtnaam() { + return geslachtnaam; + } + + /** + * Sets the value of the geslachtnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeslachtnaam(String value) { + this.geslachtnaam = value; + } + + /** + * Gets the value of the geslacht property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeslacht() { + return geslacht; + } + + /** + * Sets the value of the geslacht property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeslacht(String value) { + this.geslacht = value; + } + + /** + * Gets the value of the datumGeboorte property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDatumGeboorte() { + return datumGeboorte; + } + + /** + * Sets the value of the datumGeboorte property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDatumGeboorte(XMLGregorianCalendar value) { + this.datumGeboorte = value; + } + + /** + * Gets the value of the indicatieOverleden property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicatieOverleden() { + return indicatieOverleden; + } + + /** + * Sets the value of the indicatieOverleden property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicatieOverleden(Boolean value) { + this.indicatieOverleden = value; + } + + /** + * Gets the value of the datumOverlijden property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDatumOverlijden() { + return datumOverlijden; + } + + /** + * Sets the value of the datumOverlijden property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDatumOverlijden(XMLGregorianCalendar value) { + this.datumOverlijden = value; + } + + /** + * Gets the value of the landWaarnaarVertrokken property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLandWaarnaarVertrokken() { + return landWaarnaarVertrokken; + } + + /** + * Sets the value of the landWaarnaarVertrokken property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLandWaarnaarVertrokken(String value) { + this.landWaarnaarVertrokken = value; + } + + /** + * Gets the value of the bprGekoppeld property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isBprGekoppeld() { + return bprGekoppeld; + } + + /** + * Sets the value of the bprGekoppeld property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setBprGekoppeld(Boolean value) { + this.bprGekoppeld = value; + } + + /** + * Gets the value of the burgerlijkeStaatOmschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBurgerlijkeStaatOmschrijving() { + return burgerlijkeStaatOmschrijving; + } + + /** + * Sets the value of the burgerlijkeStaatOmschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBurgerlijkeStaatOmschrijving(String value) { + this.burgerlijkeStaatOmschrijving = value; + } + + /** + * Gets the value of the postlocatie property. + * + * @return + * possible object is + * {@link KadasterV2AdresLocatie } + * + */ + public KadasterV2AdresLocatie getPostlocatie() { + return postlocatie; + } + + /** + * Sets the value of the postlocatie property. + * + * @param value + * allowed object is + * {@link KadasterV2AdresLocatie } + * + */ + public void setPostlocatie(KadasterV2AdresLocatie value) { + this.postlocatie = value; + } + + /** + * Gets the value of the woonlocatie property. + * + * @return + * possible object is + * {@link KadasterV2AdresLocatie } + * + */ + public KadasterV2AdresLocatie getWoonlocatie() { + return woonlocatie; + } + + /** + * Sets the value of the woonlocatie property. + * + * @param value + * allowed object is + * {@link KadasterV2AdresLocatie } + * + */ + public void setWoonlocatie(KadasterV2AdresLocatie value) { + this.woonlocatie = value; + } + + /** + * Gets the value of the vermeldIn property. + * + * @return + * possible object is + * {@link KadasterV2StukdeelArray } + * + */ + public KadasterV2StukdeelArray getVermeldIn() { + return vermeldIn; + } + + /** + * Sets the value of the vermeldIn property. + * + * @param value + * allowed object is + * {@link KadasterV2StukdeelArray } + * + */ + public void setVermeldIn(KadasterV2StukdeelArray value) { + this.vermeldIn = value; + } + + /** + * Gets the value of the aanvullingen property. + * + * @return + * possible object is + * {@link KadasterV2AanvullingArray } + * + */ + public KadasterV2AanvullingArray getAanvullingen() { + return aanvullingen; + } + + /** + * Sets the value of the aanvullingen property. + * + * @param value + * allowed object is + * {@link KadasterV2AanvullingArray } + * + */ + public void setAanvullingen(KadasterV2AanvullingArray value) { + this.aanvullingen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NatuurlijkPersoonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NatuurlijkPersoonArray.java new file mode 100644 index 0000000..b554442 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NatuurlijkPersoonArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2NatuurlijkPersoonArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2NatuurlijkPersoonArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2NatuurlijkPersoon" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2NatuurlijkPersoonArray", propOrder = { + "item" +}) +public class KadasterV2NatuurlijkPersoonArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2NatuurlijkPersoon } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NietNatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NietNatuurlijkPersoon.java new file mode 100644 index 0000000..2ee1ff4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NietNatuurlijkPersoon.java @@ -0,0 +1,333 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2NietNatuurlijkPersoon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2NietNatuurlijkPersoon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="indicatie_beschikkingsbevoegdheid" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="statutaire_naam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="statutaire_zetel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="rechtsvorm" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="dossier_nummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="rsin" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="postlocatie" type="{http://www.webservices.nl/soap/}KadasterV2AdresLocatie" minOccurs="0"/>
+ *         <element name="woonlocatie" type="{http://www.webservices.nl/soap/}KadasterV2AdresLocatie" minOccurs="0"/>
+ *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
+ *         <element name="aanvullingen" type="{http://www.webservices.nl/soap/}KadasterV2AanvullingArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2NietNatuurlijkPersoon", propOrder = { + +}) +public class KadasterV2NietNatuurlijkPersoon { + + protected String identificatie; + @XmlElement(name = "indicatie_beschikkingsbevoegdheid") + protected Boolean indicatieBeschikkingsbevoegdheid; + @XmlElement(name = "statutaire_naam") + protected String statutaireNaam; + @XmlElement(name = "statutaire_zetel") + protected String statutaireZetel; + protected String rechtsvorm; + @XmlElement(name = "dossier_nummer") + protected String dossierNummer; + protected String rsin; + protected KadasterV2AdresLocatie postlocatie; + protected KadasterV2AdresLocatie woonlocatie; + @XmlElement(name = "vermeld_in") + protected KadasterV2StukdeelArray vermeldIn; + protected KadasterV2AanvullingArray aanvullingen; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the indicatieBeschikkingsbevoegdheid property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicatieBeschikkingsbevoegdheid() { + return indicatieBeschikkingsbevoegdheid; + } + + /** + * Sets the value of the indicatieBeschikkingsbevoegdheid property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicatieBeschikkingsbevoegdheid(Boolean value) { + this.indicatieBeschikkingsbevoegdheid = value; + } + + /** + * Gets the value of the statutaireNaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatutaireNaam() { + return statutaireNaam; + } + + /** + * Sets the value of the statutaireNaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatutaireNaam(String value) { + this.statutaireNaam = value; + } + + /** + * Gets the value of the statutaireZetel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatutaireZetel() { + return statutaireZetel; + } + + /** + * Sets the value of the statutaireZetel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatutaireZetel(String value) { + this.statutaireZetel = value; + } + + /** + * Gets the value of the rechtsvorm property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRechtsvorm() { + return rechtsvorm; + } + + /** + * Sets the value of the rechtsvorm property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRechtsvorm(String value) { + this.rechtsvorm = value; + } + + /** + * Gets the value of the dossierNummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNummer() { + return dossierNummer; + } + + /** + * Sets the value of the dossierNummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNummer(String value) { + this.dossierNummer = value; + } + + /** + * Gets the value of the rsin property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsin() { + return rsin; + } + + /** + * Sets the value of the rsin property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsin(String value) { + this.rsin = value; + } + + /** + * Gets the value of the postlocatie property. + * + * @return + * possible object is + * {@link KadasterV2AdresLocatie } + * + */ + public KadasterV2AdresLocatie getPostlocatie() { + return postlocatie; + } + + /** + * Sets the value of the postlocatie property. + * + * @param value + * allowed object is + * {@link KadasterV2AdresLocatie } + * + */ + public void setPostlocatie(KadasterV2AdresLocatie value) { + this.postlocatie = value; + } + + /** + * Gets the value of the woonlocatie property. + * + * @return + * possible object is + * {@link KadasterV2AdresLocatie } + * + */ + public KadasterV2AdresLocatie getWoonlocatie() { + return woonlocatie; + } + + /** + * Sets the value of the woonlocatie property. + * + * @param value + * allowed object is + * {@link KadasterV2AdresLocatie } + * + */ + public void setWoonlocatie(KadasterV2AdresLocatie value) { + this.woonlocatie = value; + } + + /** + * Gets the value of the vermeldIn property. + * + * @return + * possible object is + * {@link KadasterV2StukdeelArray } + * + */ + public KadasterV2StukdeelArray getVermeldIn() { + return vermeldIn; + } + + /** + * Sets the value of the vermeldIn property. + * + * @param value + * allowed object is + * {@link KadasterV2StukdeelArray } + * + */ + public void setVermeldIn(KadasterV2StukdeelArray value) { + this.vermeldIn = value; + } + + /** + * Gets the value of the aanvullingen property. + * + * @return + * possible object is + * {@link KadasterV2AanvullingArray } + * + */ + public KadasterV2AanvullingArray getAanvullingen() { + return aanvullingen; + } + + /** + * Sets the value of the aanvullingen property. + * + * @param value + * allowed object is + * {@link KadasterV2AanvullingArray } + * + */ + public void setAanvullingen(KadasterV2AanvullingArray value) { + this.aanvullingen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NietNatuurlijkPersoonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NietNatuurlijkPersoonArray.java new file mode 100644 index 0000000..c24dad1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NietNatuurlijkPersoonArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2NietNatuurlijkPersoonArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2NietNatuurlijkPersoonArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2NietNatuurlijkPersoon" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2NietNatuurlijkPersoonArray", propOrder = { + "item" +}) +public class KadasterV2NietNatuurlijkPersoonArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2NietNatuurlijkPersoon } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaak.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaak.java new file mode 100644 index 0000000..2343b15 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaak.java @@ -0,0 +1,790 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for KadasterV2OnroerendeZaak complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2OnroerendeZaak">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="kadastrale_aanduiding" type="{http://www.webservices.nl/soap/}KadasterV2KadastraleAanduiding" minOccurs="0"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="adressen" type="{http://www.webservices.nl/soap/}KadasterV2AdresLocatieArray" minOccurs="0"/>
+ *         <element name="tekeningen" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
+ *         <element name="uin" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="aard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="kadastrale_grootte" type="{http://www.webservices.nl/soap/}KadasterV2KadastraleGrootte" minOccurs="0"/>
+ *         <element name="plaatscoordinaten" type="{http://www.webservices.nl/soap/}KadasterV2Coordinaat" minOccurs="0"/>
+ *         <element name="belast_met" type="{http://www.webservices.nl/soap/}KadasterV2LandinrichtingsRenteArray" minOccurs="0"/>
+ *         <element name="aard_cultuur_onbebouwd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="aard_cultuur_bebouwd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="omschrijving_onderzoek_erfdienstbaarheden" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="toestandsdatum_onderzoek_erfdienstbaarheden" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="koopsom" type="{http://www.webservices.nl/soap/}KadasterV2Koopsom" minOccurs="0"/>
+ *         <element name="indicatie_voorlopige_aantekening" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="indicatie_tweede_splitsing" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="indicatie_gedeeltelijk_bezwaard_oud_object" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="indicatie_gesplitst" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="indicatie_voorgenomen_aantekening" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="toelichting_bewaarder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="historie" type="{http://www.webservices.nl/soap/}KadasterV2Historie" minOccurs="0"/>
+ *         <element name="overgegaan_in" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaakFiliatieArray" minOccurs="0"/>
+ *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
+ *         <element name="ontstaan_uit" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaakFiliatieArray" minOccurs="0"/>
+ *         <element name="aantekeningen_wkpb" type="{http://www.webservices.nl/soap/}KadasterV2AantekeningWKPBArray" minOccurs="0"/>
+ *         <element name="aanvullingen" type="{http://www.webservices.nl/soap/}KadasterV2AanvullingArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2OnroerendeZaak", propOrder = { + +}) +public class KadasterV2OnroerendeZaak { + + protected String identificatie; + @XmlElement(name = "kadastrale_aanduiding") + protected KadasterV2KadastraleAanduiding kadastraleAanduiding; + protected String type; + protected KadasterV2AdresLocatieArray adressen; + protected KadasterV2StukdeelArray tekeningen; + protected String uin; + protected String aard; + protected String omschrijving; + @XmlElement(name = "kadastrale_grootte") + protected KadasterV2KadastraleGrootte kadastraleGrootte; + protected KadasterV2Coordinaat plaatscoordinaten; + @XmlElement(name = "belast_met") + protected KadasterV2LandinrichtingsRenteArray belastMet; + @XmlElement(name = "aard_cultuur_onbebouwd") + protected String aardCultuurOnbebouwd; + @XmlElement(name = "aard_cultuur_bebouwd") + protected String aardCultuurBebouwd; + @XmlElement(name = "omschrijving_onderzoek_erfdienstbaarheden") + protected String omschrijvingOnderzoekErfdienstbaarheden; + @XmlElement(name = "toestandsdatum_onderzoek_erfdienstbaarheden") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar toestandsdatumOnderzoekErfdienstbaarheden; + protected KadasterV2Koopsom koopsom; + @XmlElement(name = "indicatie_voorlopige_aantekening") + protected Boolean indicatieVoorlopigeAantekening; + @XmlElement(name = "indicatie_tweede_splitsing") + protected Boolean indicatieTweedeSplitsing; + @XmlElement(name = "indicatie_gedeeltelijk_bezwaard_oud_object") + protected Boolean indicatieGedeeltelijkBezwaardOudObject; + @XmlElement(name = "indicatie_gesplitst") + protected Boolean indicatieGesplitst; + @XmlElement(name = "indicatie_voorgenomen_aantekening") + protected Boolean indicatieVoorgenomenAantekening; + @XmlElement(name = "toelichting_bewaarder") + protected String toelichtingBewaarder; + protected KadasterV2Historie historie; + @XmlElement(name = "overgegaan_in") + protected KadasterV2OnroerendeZaakFiliatieArray overgegaanIn; + @XmlElement(name = "vermeld_in") + protected KadasterV2StukdeelArray vermeldIn; + @XmlElement(name = "ontstaan_uit") + protected KadasterV2OnroerendeZaakFiliatieArray ontstaanUit; + @XmlElement(name = "aantekeningen_wkpb") + protected KadasterV2AantekeningWKPBArray aantekeningenWkpb; + protected KadasterV2AanvullingArray aanvullingen; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the kadastraleAanduiding property. + * + * @return + * possible object is + * {@link KadasterV2KadastraleAanduiding } + * + */ + public KadasterV2KadastraleAanduiding getKadastraleAanduiding() { + return kadastraleAanduiding; + } + + /** + * Sets the value of the kadastraleAanduiding property. + * + * @param value + * allowed object is + * {@link KadasterV2KadastraleAanduiding } + * + */ + public void setKadastraleAanduiding(KadasterV2KadastraleAanduiding value) { + this.kadastraleAanduiding = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the adressen property. + * + * @return + * possible object is + * {@link KadasterV2AdresLocatieArray } + * + */ + public KadasterV2AdresLocatieArray getAdressen() { + return adressen; + } + + /** + * Sets the value of the adressen property. + * + * @param value + * allowed object is + * {@link KadasterV2AdresLocatieArray } + * + */ + public void setAdressen(KadasterV2AdresLocatieArray value) { + this.adressen = value; + } + + /** + * Gets the value of the tekeningen property. + * + * @return + * possible object is + * {@link KadasterV2StukdeelArray } + * + */ + public KadasterV2StukdeelArray getTekeningen() { + return tekeningen; + } + + /** + * Sets the value of the tekeningen property. + * + * @param value + * allowed object is + * {@link KadasterV2StukdeelArray } + * + */ + public void setTekeningen(KadasterV2StukdeelArray value) { + this.tekeningen = value; + } + + /** + * Gets the value of the uin property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUin() { + return uin; + } + + /** + * Sets the value of the uin property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUin(String value) { + this.uin = value; + } + + /** + * Gets the value of the aard property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAard() { + return aard; + } + + /** + * Sets the value of the aard property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAard(String value) { + this.aard = value; + } + + /** + * Gets the value of the omschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijving() { + return omschrijving; + } + + /** + * Sets the value of the omschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijving(String value) { + this.omschrijving = value; + } + + /** + * Gets the value of the kadastraleGrootte property. + * + * @return + * possible object is + * {@link KadasterV2KadastraleGrootte } + * + */ + public KadasterV2KadastraleGrootte getKadastraleGrootte() { + return kadastraleGrootte; + } + + /** + * Sets the value of the kadastraleGrootte property. + * + * @param value + * allowed object is + * {@link KadasterV2KadastraleGrootte } + * + */ + public void setKadastraleGrootte(KadasterV2KadastraleGrootte value) { + this.kadastraleGrootte = value; + } + + /** + * Gets the value of the plaatscoordinaten property. + * + * @return + * possible object is + * {@link KadasterV2Coordinaat } + * + */ + public KadasterV2Coordinaat getPlaatscoordinaten() { + return plaatscoordinaten; + } + + /** + * Sets the value of the plaatscoordinaten property. + * + * @param value + * allowed object is + * {@link KadasterV2Coordinaat } + * + */ + public void setPlaatscoordinaten(KadasterV2Coordinaat value) { + this.plaatscoordinaten = value; + } + + /** + * Gets the value of the belastMet property. + * + * @return + * possible object is + * {@link KadasterV2LandinrichtingsRenteArray } + * + */ + public KadasterV2LandinrichtingsRenteArray getBelastMet() { + return belastMet; + } + + /** + * Sets the value of the belastMet property. + * + * @param value + * allowed object is + * {@link KadasterV2LandinrichtingsRenteArray } + * + */ + public void setBelastMet(KadasterV2LandinrichtingsRenteArray value) { + this.belastMet = value; + } + + /** + * Gets the value of the aardCultuurOnbebouwd property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAardCultuurOnbebouwd() { + return aardCultuurOnbebouwd; + } + + /** + * Sets the value of the aardCultuurOnbebouwd property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAardCultuurOnbebouwd(String value) { + this.aardCultuurOnbebouwd = value; + } + + /** + * Gets the value of the aardCultuurBebouwd property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAardCultuurBebouwd() { + return aardCultuurBebouwd; + } + + /** + * Sets the value of the aardCultuurBebouwd property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAardCultuurBebouwd(String value) { + this.aardCultuurBebouwd = value; + } + + /** + * Gets the value of the omschrijvingOnderzoekErfdienstbaarheden property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijvingOnderzoekErfdienstbaarheden() { + return omschrijvingOnderzoekErfdienstbaarheden; + } + + /** + * Sets the value of the omschrijvingOnderzoekErfdienstbaarheden property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijvingOnderzoekErfdienstbaarheden(String value) { + this.omschrijvingOnderzoekErfdienstbaarheden = value; + } + + /** + * Gets the value of the toestandsdatumOnderzoekErfdienstbaarheden property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getToestandsdatumOnderzoekErfdienstbaarheden() { + return toestandsdatumOnderzoekErfdienstbaarheden; + } + + /** + * Sets the value of the toestandsdatumOnderzoekErfdienstbaarheden property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setToestandsdatumOnderzoekErfdienstbaarheden(XMLGregorianCalendar value) { + this.toestandsdatumOnderzoekErfdienstbaarheden = value; + } + + /** + * Gets the value of the koopsom property. + * + * @return + * possible object is + * {@link KadasterV2Koopsom } + * + */ + public KadasterV2Koopsom getKoopsom() { + return koopsom; + } + + /** + * Sets the value of the koopsom property. + * + * @param value + * allowed object is + * {@link KadasterV2Koopsom } + * + */ + public void setKoopsom(KadasterV2Koopsom value) { + this.koopsom = value; + } + + /** + * Gets the value of the indicatieVoorlopigeAantekening property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicatieVoorlopigeAantekening() { + return indicatieVoorlopigeAantekening; + } + + /** + * Sets the value of the indicatieVoorlopigeAantekening property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicatieVoorlopigeAantekening(Boolean value) { + this.indicatieVoorlopigeAantekening = value; + } + + /** + * Gets the value of the indicatieTweedeSplitsing property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicatieTweedeSplitsing() { + return indicatieTweedeSplitsing; + } + + /** + * Sets the value of the indicatieTweedeSplitsing property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicatieTweedeSplitsing(Boolean value) { + this.indicatieTweedeSplitsing = value; + } + + /** + * Gets the value of the indicatieGedeeltelijkBezwaardOudObject property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicatieGedeeltelijkBezwaardOudObject() { + return indicatieGedeeltelijkBezwaardOudObject; + } + + /** + * Sets the value of the indicatieGedeeltelijkBezwaardOudObject property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicatieGedeeltelijkBezwaardOudObject(Boolean value) { + this.indicatieGedeeltelijkBezwaardOudObject = value; + } + + /** + * Gets the value of the indicatieGesplitst property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicatieGesplitst() { + return indicatieGesplitst; + } + + /** + * Sets the value of the indicatieGesplitst property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicatieGesplitst(Boolean value) { + this.indicatieGesplitst = value; + } + + /** + * Gets the value of the indicatieVoorgenomenAantekening property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicatieVoorgenomenAantekening() { + return indicatieVoorgenomenAantekening; + } + + /** + * Sets the value of the indicatieVoorgenomenAantekening property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicatieVoorgenomenAantekening(Boolean value) { + this.indicatieVoorgenomenAantekening = value; + } + + /** + * Gets the value of the toelichtingBewaarder property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToelichtingBewaarder() { + return toelichtingBewaarder; + } + + /** + * Sets the value of the toelichtingBewaarder property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToelichtingBewaarder(String value) { + this.toelichtingBewaarder = value; + } + + /** + * Gets the value of the historie property. + * + * @return + * possible object is + * {@link KadasterV2Historie } + * + */ + public KadasterV2Historie getHistorie() { + return historie; + } + + /** + * Sets the value of the historie property. + * + * @param value + * allowed object is + * {@link KadasterV2Historie } + * + */ + public void setHistorie(KadasterV2Historie value) { + this.historie = value; + } + + /** + * Gets the value of the overgegaanIn property. + * + * @return + * possible object is + * {@link KadasterV2OnroerendeZaakFiliatieArray } + * + */ + public KadasterV2OnroerendeZaakFiliatieArray getOvergegaanIn() { + return overgegaanIn; + } + + /** + * Sets the value of the overgegaanIn property. + * + * @param value + * allowed object is + * {@link KadasterV2OnroerendeZaakFiliatieArray } + * + */ + public void setOvergegaanIn(KadasterV2OnroerendeZaakFiliatieArray value) { + this.overgegaanIn = value; + } + + /** + * Gets the value of the vermeldIn property. + * + * @return + * possible object is + * {@link KadasterV2StukdeelArray } + * + */ + public KadasterV2StukdeelArray getVermeldIn() { + return vermeldIn; + } + + /** + * Sets the value of the vermeldIn property. + * + * @param value + * allowed object is + * {@link KadasterV2StukdeelArray } + * + */ + public void setVermeldIn(KadasterV2StukdeelArray value) { + this.vermeldIn = value; + } + + /** + * Gets the value of the ontstaanUit property. + * + * @return + * possible object is + * {@link KadasterV2OnroerendeZaakFiliatieArray } + * + */ + public KadasterV2OnroerendeZaakFiliatieArray getOntstaanUit() { + return ontstaanUit; + } + + /** + * Sets the value of the ontstaanUit property. + * + * @param value + * allowed object is + * {@link KadasterV2OnroerendeZaakFiliatieArray } + * + */ + public void setOntstaanUit(KadasterV2OnroerendeZaakFiliatieArray value) { + this.ontstaanUit = value; + } + + /** + * Gets the value of the aantekeningenWkpb property. + * + * @return + * possible object is + * {@link KadasterV2AantekeningWKPBArray } + * + */ + public KadasterV2AantekeningWKPBArray getAantekeningenWkpb() { + return aantekeningenWkpb; + } + + /** + * Sets the value of the aantekeningenWkpb property. + * + * @param value + * allowed object is + * {@link KadasterV2AantekeningWKPBArray } + * + */ + public void setAantekeningenWkpb(KadasterV2AantekeningWKPBArray value) { + this.aantekeningenWkpb = value; + } + + /** + * Gets the value of the aanvullingen property. + * + * @return + * possible object is + * {@link KadasterV2AanvullingArray } + * + */ + public KadasterV2AanvullingArray getAanvullingen() { + return aanvullingen; + } + + /** + * Sets the value of the aanvullingen property. + * + * @param value + * allowed object is + * {@link KadasterV2AanvullingArray } + * + */ + public void setAanvullingen(KadasterV2AanvullingArray value) { + this.aanvullingen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakArray.java new file mode 100644 index 0000000..93dcf8f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2OnroerendeZaakArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2OnroerendeZaakArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2OnroerendeZaakArray", propOrder = { + "item" +}) +public class KadasterV2OnroerendeZaakArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2OnroerendeZaak } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakFiliatie.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakFiliatie.java new file mode 100644 index 0000000..37af3a9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakFiliatie.java @@ -0,0 +1,119 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2OnroerendeZaakFiliatie complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2OnroerendeZaakFiliatie">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="aard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="overgangsgrootte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
+ *         <element name="betreft" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaakReferenceArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2OnroerendeZaakFiliatie", propOrder = { + +}) +public class KadasterV2OnroerendeZaakFiliatie { + + protected String aard; + protected Float overgangsgrootte; + protected KadasterV2OnroerendeZaakReferenceArray betreft; + + /** + * Gets the value of the aard property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAard() { + return aard; + } + + /** + * Sets the value of the aard property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAard(String value) { + this.aard = value; + } + + /** + * Gets the value of the overgangsgrootte property. + * + * @return + * possible object is + * {@link Float } + * + */ + public Float getOvergangsgrootte() { + return overgangsgrootte; + } + + /** + * Sets the value of the overgangsgrootte property. + * + * @param value + * allowed object is + * {@link Float } + * + */ + public void setOvergangsgrootte(Float value) { + this.overgangsgrootte = value; + } + + /** + * Gets the value of the betreft property. + * + * @return + * possible object is + * {@link KadasterV2OnroerendeZaakReferenceArray } + * + */ + public KadasterV2OnroerendeZaakReferenceArray getBetreft() { + return betreft; + } + + /** + * Sets the value of the betreft property. + * + * @param value + * allowed object is + * {@link KadasterV2OnroerendeZaakReferenceArray } + * + */ + public void setBetreft(KadasterV2OnroerendeZaakReferenceArray value) { + this.betreft = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakFiliatieArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakFiliatieArray.java new file mode 100644 index 0000000..089151f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakFiliatieArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2OnroerendeZaakFiliatieArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2OnroerendeZaakFiliatieArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaakFiliatie" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2OnroerendeZaakFiliatieArray", propOrder = { + "item" +}) +public class KadasterV2OnroerendeZaakFiliatieArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2OnroerendeZaakFiliatie } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakReference.java new file mode 100644 index 0000000..a57c7bf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakReference.java @@ -0,0 +1,121 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2OnroerendeZaakReference complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2OnroerendeZaakReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="kadastrale_aanduiding" type="{http://www.webservices.nl/soap/}KadasterV2KadastraleAanduiding" minOccurs="0"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2OnroerendeZaakReference", propOrder = { + +}) +public class KadasterV2OnroerendeZaakReference { + + protected String identificatie; + @XmlElement(name = "kadastrale_aanduiding") + protected KadasterV2KadastraleAanduiding kadastraleAanduiding; + protected String type; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the kadastraleAanduiding property. + * + * @return + * possible object is + * {@link KadasterV2KadastraleAanduiding } + * + */ + public KadasterV2KadastraleAanduiding getKadastraleAanduiding() { + return kadastraleAanduiding; + } + + /** + * Sets the value of the kadastraleAanduiding property. + * + * @param value + * allowed object is + * {@link KadasterV2KadastraleAanduiding } + * + */ + public void setKadastraleAanduiding(KadasterV2KadastraleAanduiding value) { + this.kadastraleAanduiding = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakReferenceArray.java new file mode 100644 index 0000000..04d5d6b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2OnroerendeZaakReferenceArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2OnroerendeZaakReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaakReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2OnroerendeZaakReferenceArray", propOrder = { + "item" +}) +public class KadasterV2OnroerendeZaakReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2OnroerendeZaakReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OvergegaanIn.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OvergegaanIn.java new file mode 100644 index 0000000..8586090 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OvergegaanIn.java @@ -0,0 +1,318 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for KadasterV2OvergegaanIn complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2OvergegaanIn">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="productienummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="tijdstip_samenstelling_bericht" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="actualiteit_tijdstip_hypothecair" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="actualiteit_tijdstip_kadastraal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="signalering_tijdstip_beslagen" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="signalering_tijdstip_hypothecair" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="signalering_tijdstip_kadastraal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="betreft" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak" minOccurs="0"/>
+ *         <element name="tenaamstellingen" type="{http://www.webservices.nl/soap/}KadasterV2TenaamstellingArray" minOccurs="0"/>
+ *         <element name="zakelijk_rechten" type="{http://www.webservices.nl/soap/}KadasterV2ZakelijkRechtArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2OvergegaanIn", propOrder = { + +}) +public class KadasterV2OvergegaanIn { + + @XmlElement(required = true) + protected String productienummer; + @XmlElement(name = "tijdstip_samenstelling_bericht", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar tijdstipSamenstellingBericht; + @XmlElement(name = "actualiteit_tijdstip_hypothecair") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar actualiteitTijdstipHypothecair; + @XmlElement(name = "actualiteit_tijdstip_kadastraal") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar actualiteitTijdstipKadastraal; + @XmlElement(name = "signalering_tijdstip_beslagen") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar signaleringTijdstipBeslagen; + @XmlElement(name = "signalering_tijdstip_hypothecair") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar signaleringTijdstipHypothecair; + @XmlElement(name = "signalering_tijdstip_kadastraal") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar signaleringTijdstipKadastraal; + protected KadasterV2OnroerendeZaak betreft; + protected KadasterV2TenaamstellingArray tenaamstellingen; + @XmlElement(name = "zakelijk_rechten") + protected KadasterV2ZakelijkRechtArray zakelijkRechten; + + /** + * Gets the value of the productienummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProductienummer() { + return productienummer; + } + + /** + * Sets the value of the productienummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProductienummer(String value) { + this.productienummer = value; + } + + /** + * Gets the value of the tijdstipSamenstellingBericht property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getTijdstipSamenstellingBericht() { + return tijdstipSamenstellingBericht; + } + + /** + * Sets the value of the tijdstipSamenstellingBericht property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setTijdstipSamenstellingBericht(XMLGregorianCalendar value) { + this.tijdstipSamenstellingBericht = value; + } + + /** + * Gets the value of the actualiteitTijdstipHypothecair property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getActualiteitTijdstipHypothecair() { + return actualiteitTijdstipHypothecair; + } + + /** + * Sets the value of the actualiteitTijdstipHypothecair property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setActualiteitTijdstipHypothecair(XMLGregorianCalendar value) { + this.actualiteitTijdstipHypothecair = value; + } + + /** + * Gets the value of the actualiteitTijdstipKadastraal property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getActualiteitTijdstipKadastraal() { + return actualiteitTijdstipKadastraal; + } + + /** + * Sets the value of the actualiteitTijdstipKadastraal property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setActualiteitTijdstipKadastraal(XMLGregorianCalendar value) { + this.actualiteitTijdstipKadastraal = value; + } + + /** + * Gets the value of the signaleringTijdstipBeslagen property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSignaleringTijdstipBeslagen() { + return signaleringTijdstipBeslagen; + } + + /** + * Sets the value of the signaleringTijdstipBeslagen property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSignaleringTijdstipBeslagen(XMLGregorianCalendar value) { + this.signaleringTijdstipBeslagen = value; + } + + /** + * Gets the value of the signaleringTijdstipHypothecair property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSignaleringTijdstipHypothecair() { + return signaleringTijdstipHypothecair; + } + + /** + * Sets the value of the signaleringTijdstipHypothecair property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSignaleringTijdstipHypothecair(XMLGregorianCalendar value) { + this.signaleringTijdstipHypothecair = value; + } + + /** + * Gets the value of the signaleringTijdstipKadastraal property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSignaleringTijdstipKadastraal() { + return signaleringTijdstipKadastraal; + } + + /** + * Sets the value of the signaleringTijdstipKadastraal property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSignaleringTijdstipKadastraal(XMLGregorianCalendar value) { + this.signaleringTijdstipKadastraal = value; + } + + /** + * Gets the value of the betreft property. + * + * @return + * possible object is + * {@link KadasterV2OnroerendeZaak } + * + */ + public KadasterV2OnroerendeZaak getBetreft() { + return betreft; + } + + /** + * Sets the value of the betreft property. + * + * @param value + * allowed object is + * {@link KadasterV2OnroerendeZaak } + * + */ + public void setBetreft(KadasterV2OnroerendeZaak value) { + this.betreft = value; + } + + /** + * Gets the value of the tenaamstellingen property. + * + * @return + * possible object is + * {@link KadasterV2TenaamstellingArray } + * + */ + public KadasterV2TenaamstellingArray getTenaamstellingen() { + return tenaamstellingen; + } + + /** + * Sets the value of the tenaamstellingen property. + * + * @param value + * allowed object is + * {@link KadasterV2TenaamstellingArray } + * + */ + public void setTenaamstellingen(KadasterV2TenaamstellingArray value) { + this.tenaamstellingen = value; + } + + /** + * Gets the value of the zakelijkRechten property. + * + * @return + * possible object is + * {@link KadasterV2ZakelijkRechtArray } + * + */ + public KadasterV2ZakelijkRechtArray getZakelijkRechten() { + return zakelijkRechten; + } + + /** + * Sets the value of the zakelijkRechten property. + * + * @param value + * allowed object is + * {@link KadasterV2ZakelijkRechtArray } + * + */ + public void setZakelijkRechten(KadasterV2ZakelijkRechtArray value) { + this.zakelijkRechten = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Personen.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Personen.java new file mode 100644 index 0000000..d4311de --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Personen.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2Personen complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Personen">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="natuurlijk_personen" type="{http://www.webservices.nl/soap/}KadasterV2NatuurlijkPersoonArray" minOccurs="0"/>
+ *         <element name="niet_natuurlijk_personen" type="{http://www.webservices.nl/soap/}KadasterV2NietNatuurlijkPersoonArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Personen", propOrder = { + +}) +public class KadasterV2Personen { + + @XmlElement(name = "natuurlijk_personen") + protected KadasterV2NatuurlijkPersoonArray natuurlijkPersonen; + @XmlElement(name = "niet_natuurlijk_personen") + protected KadasterV2NietNatuurlijkPersoonArray nietNatuurlijkPersonen; + + /** + * Gets the value of the natuurlijkPersonen property. + * + * @return + * possible object is + * {@link KadasterV2NatuurlijkPersoonArray } + * + */ + public KadasterV2NatuurlijkPersoonArray getNatuurlijkPersonen() { + return natuurlijkPersonen; + } + + /** + * Sets the value of the natuurlijkPersonen property. + * + * @param value + * allowed object is + * {@link KadasterV2NatuurlijkPersoonArray } + * + */ + public void setNatuurlijkPersonen(KadasterV2NatuurlijkPersoonArray value) { + this.natuurlijkPersonen = value; + } + + /** + * Gets the value of the nietNatuurlijkPersonen property. + * + * @return + * possible object is + * {@link KadasterV2NietNatuurlijkPersoonArray } + * + */ + public KadasterV2NietNatuurlijkPersoonArray getNietNatuurlijkPersonen() { + return nietNatuurlijkPersonen; + } + + /** + * Sets the value of the nietNatuurlijkPersonen property. + * + * @param value + * allowed object is + * {@link KadasterV2NietNatuurlijkPersoonArray } + * + */ + public void setNietNatuurlijkPersonen(KadasterV2NietNatuurlijkPersoonArray value) { + this.nietNatuurlijkPersonen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2PostcodeTreffers.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2PostcodeTreffers.java new file mode 100644 index 0000000..74f200f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2PostcodeTreffers.java @@ -0,0 +1,266 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for KadasterV2PostcodeTreffers complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2PostcodeTreffers">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="productienummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="tijdstip_samenstelling_bericht" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *         <element name="actualiteit_tijdstip_hypothecair" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="actualiteit_tijdstip_kadastraal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="signalering_tijdstip_beslagen" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="signalering_tijdstip_hypothecair" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="signalering_tijdstip_kadastraal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
+ *         <element name="betreft" type="{http://www.webservices.nl/soap/}KadasterV2GevraagdGebied"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2PostcodeTreffers", propOrder = { + +}) +public class KadasterV2PostcodeTreffers { + + @XmlElement(required = true) + protected String productienummer; + @XmlElement(name = "tijdstip_samenstelling_bericht", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar tijdstipSamenstellingBericht; + @XmlElement(name = "actualiteit_tijdstip_hypothecair") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar actualiteitTijdstipHypothecair; + @XmlElement(name = "actualiteit_tijdstip_kadastraal") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar actualiteitTijdstipKadastraal; + @XmlElement(name = "signalering_tijdstip_beslagen") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar signaleringTijdstipBeslagen; + @XmlElement(name = "signalering_tijdstip_hypothecair") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar signaleringTijdstipHypothecair; + @XmlElement(name = "signalering_tijdstip_kadastraal") + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar signaleringTijdstipKadastraal; + @XmlElement(required = true) + protected KadasterV2GevraagdGebied betreft; + + /** + * Gets the value of the productienummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProductienummer() { + return productienummer; + } + + /** + * Sets the value of the productienummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProductienummer(String value) { + this.productienummer = value; + } + + /** + * Gets the value of the tijdstipSamenstellingBericht property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getTijdstipSamenstellingBericht() { + return tijdstipSamenstellingBericht; + } + + /** + * Sets the value of the tijdstipSamenstellingBericht property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setTijdstipSamenstellingBericht(XMLGregorianCalendar value) { + this.tijdstipSamenstellingBericht = value; + } + + /** + * Gets the value of the actualiteitTijdstipHypothecair property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getActualiteitTijdstipHypothecair() { + return actualiteitTijdstipHypothecair; + } + + /** + * Sets the value of the actualiteitTijdstipHypothecair property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setActualiteitTijdstipHypothecair(XMLGregorianCalendar value) { + this.actualiteitTijdstipHypothecair = value; + } + + /** + * Gets the value of the actualiteitTijdstipKadastraal property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getActualiteitTijdstipKadastraal() { + return actualiteitTijdstipKadastraal; + } + + /** + * Sets the value of the actualiteitTijdstipKadastraal property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setActualiteitTijdstipKadastraal(XMLGregorianCalendar value) { + this.actualiteitTijdstipKadastraal = value; + } + + /** + * Gets the value of the signaleringTijdstipBeslagen property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSignaleringTijdstipBeslagen() { + return signaleringTijdstipBeslagen; + } + + /** + * Sets the value of the signaleringTijdstipBeslagen property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSignaleringTijdstipBeslagen(XMLGregorianCalendar value) { + this.signaleringTijdstipBeslagen = value; + } + + /** + * Gets the value of the signaleringTijdstipHypothecair property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSignaleringTijdstipHypothecair() { + return signaleringTijdstipHypothecair; + } + + /** + * Sets the value of the signaleringTijdstipHypothecair property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSignaleringTijdstipHypothecair(XMLGregorianCalendar value) { + this.signaleringTijdstipHypothecair = value; + } + + /** + * Gets the value of the signaleringTijdstipKadastraal property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getSignaleringTijdstipKadastraal() { + return signaleringTijdstipKadastraal; + } + + /** + * Sets the value of the signaleringTijdstipKadastraal property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setSignaleringTijdstipKadastraal(XMLGregorianCalendar value) { + this.signaleringTijdstipKadastraal = value; + } + + /** + * Gets the value of the betreft property. + * + * @return + * possible object is + * {@link KadasterV2GevraagdGebied } + * + */ + public KadasterV2GevraagdGebied getBetreft() { + return betreft; + } + + /** + * Sets the value of the betreft property. + * + * @param value + * allowed object is + * {@link KadasterV2GevraagdGebied } + * + */ + public void setBetreft(KadasterV2GevraagdGebied value) { + this.betreft = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RDCoordinaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RDCoordinaat.java new file mode 100644 index 0000000..671fcc2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RDCoordinaat.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2RDCoordinaat complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2RDCoordinaat">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2RDCoordinaat", propOrder = { + +}) +public class KadasterV2RDCoordinaat { + + @XmlElement(required = true) + protected String x; + @XmlElement(required = true) + protected String y; + + /** + * Gets the value of the x property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getX() { + return x; + } + + /** + * Sets the value of the x property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setX(String value) { + this.x = value; + } + + /** + * Gets the value of the y property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getY() { + return y; + } + + /** + * Sets the value of the y property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setY(String value) { + this.y = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RedenVerzoek.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RedenVerzoek.java new file mode 100644 index 0000000..3bdf658 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RedenVerzoek.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2RedenVerzoek complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2RedenVerzoek">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="reden" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="reden_omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2RedenVerzoek", propOrder = { + +}) +public class KadasterV2RedenVerzoek { + + protected String reden; + @XmlElement(name = "reden_omschrijving") + protected String redenOmschrijving; + + /** + * Gets the value of the reden property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReden() { + return reden; + } + + /** + * Sets the value of the reden property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReden(String value) { + this.reden = value; + } + + /** + * Gets the value of the redenOmschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRedenOmschrijving() { + return redenOmschrijving; + } + + /** + * Sets the value of the redenOmschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRedenOmschrijving(String value) { + this.redenOmschrijving = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RedenVerzoekArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RedenVerzoekArray.java new file mode 100644 index 0000000..7677e2d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RedenVerzoekArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2RedenVerzoekArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2RedenVerzoekArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2RedenVerzoek" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2RedenVerzoekArray", propOrder = { + "item" +}) +public class KadasterV2RedenVerzoekArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2RedenVerzoek } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Splitsing.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Splitsing.java new file mode 100644 index 0000000..b8ff955 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Splitsing.java @@ -0,0 +1,148 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2Splitsing complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Splitsing">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="vereniging_van_eigenaren" type="{http://www.webservices.nl/soap/}KadasterV2NietNatuurlijkPersoon" minOccurs="0"/>
+ *         <element name="gebaseerd_op" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Splitsing", propOrder = { + +}) +public class KadasterV2Splitsing { + + protected String identificatie; + protected String type; + @XmlElement(name = "vereniging_van_eigenaren") + protected KadasterV2NietNatuurlijkPersoon verenigingVanEigenaren; + @XmlElement(name = "gebaseerd_op") + protected KadasterV2StukdeelArray gebaseerdOp; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the verenigingVanEigenaren property. + * + * @return + * possible object is + * {@link KadasterV2NietNatuurlijkPersoon } + * + */ + public KadasterV2NietNatuurlijkPersoon getVerenigingVanEigenaren() { + return verenigingVanEigenaren; + } + + /** + * Sets the value of the verenigingVanEigenaren property. + * + * @param value + * allowed object is + * {@link KadasterV2NietNatuurlijkPersoon } + * + */ + public void setVerenigingVanEigenaren(KadasterV2NietNatuurlijkPersoon value) { + this.verenigingVanEigenaren = value; + } + + /** + * Gets the value of the gebaseerdOp property. + * + * @return + * possible object is + * {@link KadasterV2StukdeelArray } + * + */ + public KadasterV2StukdeelArray getGebaseerdOp() { + return gebaseerdOp; + } + + /** + * Sets the value of the gebaseerdOp property. + * + * @param value + * allowed object is + * {@link KadasterV2StukdeelArray } + * + */ + public void setGebaseerdOp(KadasterV2StukdeelArray value) { + this.gebaseerdOp = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2SplitsingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2SplitsingArray.java new file mode 100644 index 0000000..2b48876 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2SplitsingArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2SplitsingArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2SplitsingArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Splitsing" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2SplitsingArray", propOrder = { + "item" +}) +public class KadasterV2SplitsingArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2Splitsing } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stuk.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stuk.java new file mode 100644 index 0000000..870939d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stuk.java @@ -0,0 +1,201 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2Stuk complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Stuk">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="indicatie_correctie" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="toelichting_bewaarder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="acg_identificatie" type="{http://www.webservices.nl/soap/}KadasterV2AcgIdentificatie" minOccurs="0"/>
+ *         <element name="stukdelen" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
+ *         <element name="bijlages" type="{http://www.webservices.nl/soap/}KadasterV2BijlageArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Stuk", propOrder = { + +}) +public class KadasterV2Stuk { + + protected String identificatie; + @XmlElement(name = "indicatie_correctie") + protected Boolean indicatieCorrectie; + @XmlElement(name = "toelichting_bewaarder") + protected String toelichtingBewaarder; + @XmlElement(name = "acg_identificatie") + protected KadasterV2AcgIdentificatie acgIdentificatie; + protected KadasterV2StukdeelArray stukdelen; + protected KadasterV2BijlageArray bijlages; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the indicatieCorrectie property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicatieCorrectie() { + return indicatieCorrectie; + } + + /** + * Sets the value of the indicatieCorrectie property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicatieCorrectie(Boolean value) { + this.indicatieCorrectie = value; + } + + /** + * Gets the value of the toelichtingBewaarder property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToelichtingBewaarder() { + return toelichtingBewaarder; + } + + /** + * Sets the value of the toelichtingBewaarder property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToelichtingBewaarder(String value) { + this.toelichtingBewaarder = value; + } + + /** + * Gets the value of the acgIdentificatie property. + * + * @return + * possible object is + * {@link KadasterV2AcgIdentificatie } + * + */ + public KadasterV2AcgIdentificatie getAcgIdentificatie() { + return acgIdentificatie; + } + + /** + * Sets the value of the acgIdentificatie property. + * + * @param value + * allowed object is + * {@link KadasterV2AcgIdentificatie } + * + */ + public void setAcgIdentificatie(KadasterV2AcgIdentificatie value) { + this.acgIdentificatie = value; + } + + /** + * Gets the value of the stukdelen property. + * + * @return + * possible object is + * {@link KadasterV2StukdeelArray } + * + */ + public KadasterV2StukdeelArray getStukdelen() { + return stukdelen; + } + + /** + * Sets the value of the stukdelen property. + * + * @param value + * allowed object is + * {@link KadasterV2StukdeelArray } + * + */ + public void setStukdelen(KadasterV2StukdeelArray value) { + this.stukdelen = value; + } + + /** + * Gets the value of the bijlages property. + * + * @return + * possible object is + * {@link KadasterV2BijlageArray } + * + */ + public KadasterV2BijlageArray getBijlages() { + return bijlages; + } + + /** + * Sets the value of the bijlages property. + * + * @param value + * allowed object is + * {@link KadasterV2BijlageArray } + * + */ + public void setBijlages(KadasterV2BijlageArray value) { + this.bijlages = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2StukArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2StukArray.java new file mode 100644 index 0000000..661e2bf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2StukArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2StukArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2StukArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Stuk" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2StukArray", propOrder = { + "item" +}) +public class KadasterV2StukArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2Stuk } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stukdeel.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stukdeel.java new file mode 100644 index 0000000..349288f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stukdeel.java @@ -0,0 +1,283 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2Stukdeel complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Stukdeel">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="aard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="omschrijving_gekozen_woonplaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="omschrijving_kadastrale_objecten" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="bedrag_transacties_om_levering" type="{http://www.webservices.nl/soap/}KadasterV2Bedrag" minOccurs="0"/>
+ *         <element name="bedrag_vorderingsbeslag" type="{http://www.webservices.nl/soap/}KadasterV2Bedrag" minOccurs="0"/>
+ *         <element name="bedrag_zekerheidsstelling_hypotheek" type="{http://www.webservices.nl/soap/}KadasterV2Bedrag" minOccurs="0"/>
+ *         <element name="aanvulling_op" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
+ *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaakReferenceArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Stukdeel", propOrder = { + +}) +public class KadasterV2Stukdeel { + + protected String identificatie; + protected String aard; + @XmlElement(name = "omschrijving_gekozen_woonplaats") + protected String omschrijvingGekozenWoonplaats; + @XmlElement(name = "omschrijving_kadastrale_objecten") + protected String omschrijvingKadastraleObjecten; + @XmlElement(name = "bedrag_transacties_om_levering") + protected KadasterV2Bedrag bedragTransactiesOmLevering; + @XmlElement(name = "bedrag_vorderingsbeslag") + protected KadasterV2Bedrag bedragVorderingsbeslag; + @XmlElement(name = "bedrag_zekerheidsstelling_hypotheek") + protected KadasterV2Bedrag bedragZekerheidsstellingHypotheek; + @XmlElement(name = "aanvulling_op") + protected KadasterV2StukdeelArray aanvullingOp; + @XmlElement(name = "vermeld_in") + protected KadasterV2OnroerendeZaakReferenceArray vermeldIn; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the aard property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAard() { + return aard; + } + + /** + * Sets the value of the aard property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAard(String value) { + this.aard = value; + } + + /** + * Gets the value of the omschrijvingGekozenWoonplaats property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijvingGekozenWoonplaats() { + return omschrijvingGekozenWoonplaats; + } + + /** + * Sets the value of the omschrijvingGekozenWoonplaats property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijvingGekozenWoonplaats(String value) { + this.omschrijvingGekozenWoonplaats = value; + } + + /** + * Gets the value of the omschrijvingKadastraleObjecten property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijvingKadastraleObjecten() { + return omschrijvingKadastraleObjecten; + } + + /** + * Sets the value of the omschrijvingKadastraleObjecten property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijvingKadastraleObjecten(String value) { + this.omschrijvingKadastraleObjecten = value; + } + + /** + * Gets the value of the bedragTransactiesOmLevering property. + * + * @return + * possible object is + * {@link KadasterV2Bedrag } + * + */ + public KadasterV2Bedrag getBedragTransactiesOmLevering() { + return bedragTransactiesOmLevering; + } + + /** + * Sets the value of the bedragTransactiesOmLevering property. + * + * @param value + * allowed object is + * {@link KadasterV2Bedrag } + * + */ + public void setBedragTransactiesOmLevering(KadasterV2Bedrag value) { + this.bedragTransactiesOmLevering = value; + } + + /** + * Gets the value of the bedragVorderingsbeslag property. + * + * @return + * possible object is + * {@link KadasterV2Bedrag } + * + */ + public KadasterV2Bedrag getBedragVorderingsbeslag() { + return bedragVorderingsbeslag; + } + + /** + * Sets the value of the bedragVorderingsbeslag property. + * + * @param value + * allowed object is + * {@link KadasterV2Bedrag } + * + */ + public void setBedragVorderingsbeslag(KadasterV2Bedrag value) { + this.bedragVorderingsbeslag = value; + } + + /** + * Gets the value of the bedragZekerheidsstellingHypotheek property. + * + * @return + * possible object is + * {@link KadasterV2Bedrag } + * + */ + public KadasterV2Bedrag getBedragZekerheidsstellingHypotheek() { + return bedragZekerheidsstellingHypotheek; + } + + /** + * Sets the value of the bedragZekerheidsstellingHypotheek property. + * + * @param value + * allowed object is + * {@link KadasterV2Bedrag } + * + */ + public void setBedragZekerheidsstellingHypotheek(KadasterV2Bedrag value) { + this.bedragZekerheidsstellingHypotheek = value; + } + + /** + * Gets the value of the aanvullingOp property. + * + * @return + * possible object is + * {@link KadasterV2StukdeelArray } + * + */ + public KadasterV2StukdeelArray getAanvullingOp() { + return aanvullingOp; + } + + /** + * Sets the value of the aanvullingOp property. + * + * @param value + * allowed object is + * {@link KadasterV2StukdeelArray } + * + */ + public void setAanvullingOp(KadasterV2StukdeelArray value) { + this.aanvullingOp = value; + } + + /** + * Gets the value of the vermeldIn property. + * + * @return + * possible object is + * {@link KadasterV2OnroerendeZaakReferenceArray } + * + */ + public KadasterV2OnroerendeZaakReferenceArray getVermeldIn() { + return vermeldIn; + } + + /** + * Sets the value of the vermeldIn property. + * + * @param value + * allowed object is + * {@link KadasterV2OnroerendeZaakReferenceArray } + * + */ + public void setVermeldIn(KadasterV2OnroerendeZaakReferenceArray value) { + this.vermeldIn = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2StukdeelArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2StukdeelArray.java new file mode 100644 index 0000000..104c0d3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2StukdeelArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2StukdeelArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2StukdeelArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Stukdeel" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2StukdeelArray", propOrder = { + "item" +}) +public class KadasterV2StukdeelArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2Stukdeel } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stukken.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stukken.java new file mode 100644 index 0000000..4eaad32 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stukken.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2Stukken complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Stukken">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="stukken" type="{http://www.webservices.nl/soap/}KadasterV2StukArray" minOccurs="0"/>
+ *         <element name="aangeboden_stukken" type="{http://www.webservices.nl/soap/}KadasterV2AangebodenStukArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Stukken", propOrder = { + +}) +public class KadasterV2Stukken { + + protected KadasterV2StukArray stukken; + @XmlElement(name = "aangeboden_stukken") + protected KadasterV2AangebodenStukArray aangebodenStukken; + + /** + * Gets the value of the stukken property. + * + * @return + * possible object is + * {@link KadasterV2StukArray } + * + */ + public KadasterV2StukArray getStukken() { + return stukken; + } + + /** + * Sets the value of the stukken property. + * + * @param value + * allowed object is + * {@link KadasterV2StukArray } + * + */ + public void setStukken(KadasterV2StukArray value) { + this.stukken = value; + } + + /** + * Gets the value of the aangebodenStukken property. + * + * @return + * possible object is + * {@link KadasterV2AangebodenStukArray } + * + */ + public KadasterV2AangebodenStukArray getAangebodenStukken() { + return aangebodenStukken; + } + + /** + * Sets the value of the aangebodenStukken property. + * + * @param value + * allowed object is + * {@link KadasterV2AangebodenStukArray } + * + */ + public void setAangebodenStukken(KadasterV2AangebodenStukArray value) { + this.aangebodenStukken = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Tenaamstelling.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Tenaamstelling.java new file mode 100644 index 0000000..9fd254f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Tenaamstelling.java @@ -0,0 +1,389 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2Tenaamstelling complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Tenaamstelling">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="aandeel" type="{http://www.webservices.nl/soap/}KadasterV2Breuk" minOccurs="0"/>
+ *         <element name="burgerlijke_staat_ten_tijde_van_verkrijging" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="verklaring_inzake_derden_bescherming" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="verkregen_namens_samenwerkingsverband" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="betrokken_partner" type="{http://www.webservices.nl/soap/}KadasterV2Personen" minOccurs="0"/>
+ *         <element name="betrokken_samenwerkingsverband" type="{http://www.webservices.nl/soap/}KadasterV2Personen" minOccurs="0"/>
+ *         <element name="van" type="{http://www.webservices.nl/soap/}KadasterV2ZakelijkRecht" minOccurs="0"/>
+ *         <element name="geldt_voor" type="{http://www.webservices.nl/soap/}KadasterV2GezamenlijkAandeel" minOccurs="0"/>
+ *         <element name="gebaseerd_op" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
+ *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
+ *         <element name="ten_name_van" type="{http://www.webservices.nl/soap/}KadasterV2Personen" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Tenaamstelling", propOrder = { + +}) +public class KadasterV2Tenaamstelling { + + protected String identificatie; + protected KadasterV2Breuk aandeel; + @XmlElement(name = "burgerlijke_staat_ten_tijde_van_verkrijging") + protected String burgerlijkeStaatTenTijdeVanVerkrijging; + protected String omschrijving; + @XmlElement(name = "verklaring_inzake_derden_bescherming") + protected String verklaringInzakeDerdenBescherming; + @XmlElement(name = "verkregen_namens_samenwerkingsverband") + protected String verkregenNamensSamenwerkingsverband; + @XmlElement(name = "betrokken_partner") + protected KadasterV2Personen betrokkenPartner; + @XmlElement(name = "betrokken_samenwerkingsverband") + protected KadasterV2Personen betrokkenSamenwerkingsverband; + protected KadasterV2ZakelijkRecht van; + @XmlElement(name = "geldt_voor") + protected KadasterV2GezamenlijkAandeel geldtVoor; + @XmlElement(name = "gebaseerd_op") + protected KadasterV2StukdeelArray gebaseerdOp; + @XmlElement(name = "vermeld_in") + protected KadasterV2StukdeelArray vermeldIn; + @XmlElement(name = "ten_name_van") + protected KadasterV2Personen tenNameVan; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the aandeel property. + * + * @return + * possible object is + * {@link KadasterV2Breuk } + * + */ + public KadasterV2Breuk getAandeel() { + return aandeel; + } + + /** + * Sets the value of the aandeel property. + * + * @param value + * allowed object is + * {@link KadasterV2Breuk } + * + */ + public void setAandeel(KadasterV2Breuk value) { + this.aandeel = value; + } + + /** + * Gets the value of the burgerlijkeStaatTenTijdeVanVerkrijging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBurgerlijkeStaatTenTijdeVanVerkrijging() { + return burgerlijkeStaatTenTijdeVanVerkrijging; + } + + /** + * Sets the value of the burgerlijkeStaatTenTijdeVanVerkrijging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBurgerlijkeStaatTenTijdeVanVerkrijging(String value) { + this.burgerlijkeStaatTenTijdeVanVerkrijging = value; + } + + /** + * Gets the value of the omschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijving() { + return omschrijving; + } + + /** + * Sets the value of the omschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijving(String value) { + this.omschrijving = value; + } + + /** + * Gets the value of the verklaringInzakeDerdenBescherming property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerklaringInzakeDerdenBescherming() { + return verklaringInzakeDerdenBescherming; + } + + /** + * Sets the value of the verklaringInzakeDerdenBescherming property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerklaringInzakeDerdenBescherming(String value) { + this.verklaringInzakeDerdenBescherming = value; + } + + /** + * Gets the value of the verkregenNamensSamenwerkingsverband property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerkregenNamensSamenwerkingsverband() { + return verkregenNamensSamenwerkingsverband; + } + + /** + * Sets the value of the verkregenNamensSamenwerkingsverband property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerkregenNamensSamenwerkingsverband(String value) { + this.verkregenNamensSamenwerkingsverband = value; + } + + /** + * Gets the value of the betrokkenPartner property. + * + * @return + * possible object is + * {@link KadasterV2Personen } + * + */ + public KadasterV2Personen getBetrokkenPartner() { + return betrokkenPartner; + } + + /** + * Sets the value of the betrokkenPartner property. + * + * @param value + * allowed object is + * {@link KadasterV2Personen } + * + */ + public void setBetrokkenPartner(KadasterV2Personen value) { + this.betrokkenPartner = value; + } + + /** + * Gets the value of the betrokkenSamenwerkingsverband property. + * + * @return + * possible object is + * {@link KadasterV2Personen } + * + */ + public KadasterV2Personen getBetrokkenSamenwerkingsverband() { + return betrokkenSamenwerkingsverband; + } + + /** + * Sets the value of the betrokkenSamenwerkingsverband property. + * + * @param value + * allowed object is + * {@link KadasterV2Personen } + * + */ + public void setBetrokkenSamenwerkingsverband(KadasterV2Personen value) { + this.betrokkenSamenwerkingsverband = value; + } + + /** + * Gets the value of the van property. + * + * @return + * possible object is + * {@link KadasterV2ZakelijkRecht } + * + */ + public KadasterV2ZakelijkRecht getVan() { + return van; + } + + /** + * Sets the value of the van property. + * + * @param value + * allowed object is + * {@link KadasterV2ZakelijkRecht } + * + */ + public void setVan(KadasterV2ZakelijkRecht value) { + this.van = value; + } + + /** + * Gets the value of the geldtVoor property. + * + * @return + * possible object is + * {@link KadasterV2GezamenlijkAandeel } + * + */ + public KadasterV2GezamenlijkAandeel getGeldtVoor() { + return geldtVoor; + } + + /** + * Sets the value of the geldtVoor property. + * + * @param value + * allowed object is + * {@link KadasterV2GezamenlijkAandeel } + * + */ + public void setGeldtVoor(KadasterV2GezamenlijkAandeel value) { + this.geldtVoor = value; + } + + /** + * Gets the value of the gebaseerdOp property. + * + * @return + * possible object is + * {@link KadasterV2StukdeelArray } + * + */ + public KadasterV2StukdeelArray getGebaseerdOp() { + return gebaseerdOp; + } + + /** + * Sets the value of the gebaseerdOp property. + * + * @param value + * allowed object is + * {@link KadasterV2StukdeelArray } + * + */ + public void setGebaseerdOp(KadasterV2StukdeelArray value) { + this.gebaseerdOp = value; + } + + /** + * Gets the value of the vermeldIn property. + * + * @return + * possible object is + * {@link KadasterV2StukdeelArray } + * + */ + public KadasterV2StukdeelArray getVermeldIn() { + return vermeldIn; + } + + /** + * Sets the value of the vermeldIn property. + * + * @param value + * allowed object is + * {@link KadasterV2StukdeelArray } + * + */ + public void setVermeldIn(KadasterV2StukdeelArray value) { + this.vermeldIn = value; + } + + /** + * Gets the value of the tenNameVan property. + * + * @return + * possible object is + * {@link KadasterV2Personen } + * + */ + public KadasterV2Personen getTenNameVan() { + return tenNameVan; + } + + /** + * Sets the value of the tenNameVan property. + * + * @param value + * allowed object is + * {@link KadasterV2Personen } + * + */ + public void setTenNameVan(KadasterV2Personen value) { + this.tenNameVan = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2TenaamstellingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2TenaamstellingArray.java new file mode 100644 index 0000000..87440e3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2TenaamstellingArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2TenaamstellingArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2TenaamstellingArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Tenaamstelling" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2TenaamstellingArray", propOrder = { + "item" +}) +public class KadasterV2TenaamstellingArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2Tenaamstelling } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2UittrekselKadastraleKaartResponse.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2UittrekselKadastraleKaartResponse.java new file mode 100644 index 0000000..85bfb8a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2UittrekselKadastraleKaartResponse.java @@ -0,0 +1,120 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2UittrekselKadastraleKaartResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2UittrekselKadastraleKaartResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
+ *         <element name="overgegaan_in" type="{http://www.webservices.nl/soap/}KadasterV2OvergegaanIn" minOccurs="0"/>
+ *         <element name="postcode_treffers" type="{http://www.webservices.nl/soap/}KadasterV2PostcodeTreffers" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2UittrekselKadastraleKaartResponse", propOrder = { + +}) +public class KadasterV2UittrekselKadastraleKaartResponse { + + protected byte[] document; + @XmlElement(name = "overgegaan_in") + protected KadasterV2OvergegaanIn overgegaanIn; + @XmlElement(name = "postcode_treffers") + protected KadasterV2PostcodeTreffers postcodeTreffers; + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + + /** + * Gets the value of the overgegaanIn property. + * + * @return + * possible object is + * {@link KadasterV2OvergegaanIn } + * + */ + public KadasterV2OvergegaanIn getOvergegaanIn() { + return overgegaanIn; + } + + /** + * Sets the value of the overgegaanIn property. + * + * @param value + * allowed object is + * {@link KadasterV2OvergegaanIn } + * + */ + public void setOvergegaanIn(KadasterV2OvergegaanIn value) { + this.overgegaanIn = value; + } + + /** + * Gets the value of the postcodeTreffers property. + * + * @return + * possible object is + * {@link KadasterV2PostcodeTreffers } + * + */ + public KadasterV2PostcodeTreffers getPostcodeTreffers() { + return postcodeTreffers; + } + + /** + * Sets the value of the postcodeTreffers property. + * + * @param value + * allowed object is + * {@link KadasterV2PostcodeTreffers } + * + */ + public void setPostcodeTreffers(KadasterV2PostcodeTreffers value) { + this.postcodeTreffers = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Verzoek.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Verzoek.java new file mode 100644 index 0000000..d04352e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Verzoek.java @@ -0,0 +1,121 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2Verzoek complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2Verzoek">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="aard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="redenen_verzoek" type="{http://www.webservices.nl/soap/}KadasterV2RedenVerzoekArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2Verzoek", propOrder = { + +}) +public class KadasterV2Verzoek { + + protected String identificatie; + protected String aard; + @XmlElement(name = "redenen_verzoek") + protected KadasterV2RedenVerzoekArray redenenVerzoek; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the aard property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAard() { + return aard; + } + + /** + * Sets the value of the aard property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAard(String value) { + this.aard = value; + } + + /** + * Gets the value of the redenenVerzoek property. + * + * @return + * possible object is + * {@link KadasterV2RedenVerzoekArray } + * + */ + public KadasterV2RedenVerzoekArray getRedenenVerzoek() { + return redenenVerzoek; + } + + /** + * Sets the value of the redenenVerzoek property. + * + * @param value + * allowed object is + * {@link KadasterV2RedenVerzoekArray } + * + */ + public void setRedenenVerzoek(KadasterV2RedenVerzoekArray value) { + this.redenenVerzoek = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2VerzoekArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2VerzoekArray.java new file mode 100644 index 0000000..9903558 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2VerzoekArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2VerzoekArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2VerzoekArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Verzoek" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2VerzoekArray", propOrder = { + "item" +}) +public class KadasterV2VerzoekArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2Verzoek } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ZakelijkRecht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ZakelijkRecht.java new file mode 100644 index 0000000..4bbd19b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ZakelijkRecht.java @@ -0,0 +1,283 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2ZakelijkRecht complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2ZakelijkRecht">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="aard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="onroerende_zaak" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak" minOccurs="0"/>
+ *         <element name="belast_met" type="{http://www.webservices.nl/soap/}KadasterV2ZakelijkRechtArray" minOccurs="0"/>
+ *         <element name="bestemt_tot" type="{http://www.webservices.nl/soap/}KadasterV2Mandeligheid" minOccurs="0"/>
+ *         <element name="ontstaan_uit" type="{http://www.webservices.nl/soap/}KadasterV2Splitsing" minOccurs="0"/>
+ *         <element name="betrokken_bij" type="{http://www.webservices.nl/soap/}KadasterV2Splitsing" minOccurs="0"/>
+ *         <element name="beperkt_tot" type="{http://www.webservices.nl/soap/}KadasterV2TenaamstellingArray" minOccurs="0"/>
+ *         <element name="indicatie_splitsing_betrokken" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2ZakelijkRecht", propOrder = { + +}) +public class KadasterV2ZakelijkRecht { + + protected String identificatie; + protected String aard; + @XmlElement(name = "onroerende_zaak") + protected KadasterV2OnroerendeZaak onroerendeZaak; + @XmlElement(name = "belast_met") + protected KadasterV2ZakelijkRechtArray belastMet; + @XmlElement(name = "bestemt_tot") + protected KadasterV2Mandeligheid bestemtTot; + @XmlElement(name = "ontstaan_uit") + protected KadasterV2Splitsing ontstaanUit; + @XmlElement(name = "betrokken_bij") + protected KadasterV2Splitsing betrokkenBij; + @XmlElement(name = "beperkt_tot") + protected KadasterV2TenaamstellingArray beperktTot; + @XmlElement(name = "indicatie_splitsing_betrokken") + protected Boolean indicatieSplitsingBetrokken; + + /** + * Gets the value of the identificatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIdentificatie() { + return identificatie; + } + + /** + * Sets the value of the identificatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIdentificatie(String value) { + this.identificatie = value; + } + + /** + * Gets the value of the aard property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAard() { + return aard; + } + + /** + * Sets the value of the aard property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAard(String value) { + this.aard = value; + } + + /** + * Gets the value of the onroerendeZaak property. + * + * @return + * possible object is + * {@link KadasterV2OnroerendeZaak } + * + */ + public KadasterV2OnroerendeZaak getOnroerendeZaak() { + return onroerendeZaak; + } + + /** + * Sets the value of the onroerendeZaak property. + * + * @param value + * allowed object is + * {@link KadasterV2OnroerendeZaak } + * + */ + public void setOnroerendeZaak(KadasterV2OnroerendeZaak value) { + this.onroerendeZaak = value; + } + + /** + * Gets the value of the belastMet property. + * + * @return + * possible object is + * {@link KadasterV2ZakelijkRechtArray } + * + */ + public KadasterV2ZakelijkRechtArray getBelastMet() { + return belastMet; + } + + /** + * Sets the value of the belastMet property. + * + * @param value + * allowed object is + * {@link KadasterV2ZakelijkRechtArray } + * + */ + public void setBelastMet(KadasterV2ZakelijkRechtArray value) { + this.belastMet = value; + } + + /** + * Gets the value of the bestemtTot property. + * + * @return + * possible object is + * {@link KadasterV2Mandeligheid } + * + */ + public KadasterV2Mandeligheid getBestemtTot() { + return bestemtTot; + } + + /** + * Sets the value of the bestemtTot property. + * + * @param value + * allowed object is + * {@link KadasterV2Mandeligheid } + * + */ + public void setBestemtTot(KadasterV2Mandeligheid value) { + this.bestemtTot = value; + } + + /** + * Gets the value of the ontstaanUit property. + * + * @return + * possible object is + * {@link KadasterV2Splitsing } + * + */ + public KadasterV2Splitsing getOntstaanUit() { + return ontstaanUit; + } + + /** + * Sets the value of the ontstaanUit property. + * + * @param value + * allowed object is + * {@link KadasterV2Splitsing } + * + */ + public void setOntstaanUit(KadasterV2Splitsing value) { + this.ontstaanUit = value; + } + + /** + * Gets the value of the betrokkenBij property. + * + * @return + * possible object is + * {@link KadasterV2Splitsing } + * + */ + public KadasterV2Splitsing getBetrokkenBij() { + return betrokkenBij; + } + + /** + * Sets the value of the betrokkenBij property. + * + * @param value + * allowed object is + * {@link KadasterV2Splitsing } + * + */ + public void setBetrokkenBij(KadasterV2Splitsing value) { + this.betrokkenBij = value; + } + + /** + * Gets the value of the beperktTot property. + * + * @return + * possible object is + * {@link KadasterV2TenaamstellingArray } + * + */ + public KadasterV2TenaamstellingArray getBeperktTot() { + return beperktTot; + } + + /** + * Sets the value of the beperktTot property. + * + * @param value + * allowed object is + * {@link KadasterV2TenaamstellingArray } + * + */ + public void setBeperktTot(KadasterV2TenaamstellingArray value) { + this.beperktTot = value; + } + + /** + * Gets the value of the indicatieSplitsingBetrokken property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicatieSplitsingBetrokken() { + return indicatieSplitsingBetrokken; + } + + /** + * Sets the value of the indicatieSplitsingBetrokken property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicatieSplitsingBetrokken(Boolean value) { + this.indicatieSplitsingBetrokken = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ZakelijkRechtArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ZakelijkRechtArray.java new file mode 100644 index 0000000..a8c5ca7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ZakelijkRechtArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterV2ZakelijkRechtArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterV2ZakelijkRechtArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2ZakelijkRecht" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterV2ZakelijkRechtArray", propOrder = { + "item" +}) +public class KadasterV2ZakelijkRechtArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadasterV2ZakelijkRecht } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueList.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueList.java new file mode 100644 index 0000000..38449df --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueList.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadasterValueList complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadasterValueList">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="list" type="{http://www.webservices.nl/soap/}KadasterListValueArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadasterValueList", propOrder = { + +}) +public class KadasterValueList { + + @XmlElement(required = true) + protected KadasterListValueArray list; + + /** + * Gets the value of the list property. + * + * @return + * possible object is + * {@link KadasterListValueArray } + * + */ + public KadasterListValueArray getList() { + return list; + } + + /** + * Sets the value of the list property. + * + * @param value + * allowed object is + * {@link KadasterListValueArray } + * + */ + public void setList(KadasterListValueArray value) { + this.list = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetMunicipalitiesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetMunicipalitiesRequestType.java new file mode 100644 index 0000000..75903fd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetMunicipalitiesRequestType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterValueListGetMunicipalitiesRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterValueListGetMunicipalitiesRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterValueListGetMunicipalitiesRequestType") +public class KadasterValueListGetMunicipalitiesRequestType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetMunicipalitiesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetMunicipalitiesResponseType.java new file mode 100644 index 0000000..3b378af --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetMunicipalitiesResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterValueListGetMunicipalitiesResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterValueListGetMunicipalitiesResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterValueList"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterValueListGetMunicipalitiesResponseType", propOrder = { + +}) +public class KadasterValueListGetMunicipalitiesResponseType { + + @XmlElement(required = true) + protected KadasterValueList out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KadasterValueList } + * + */ + public KadasterValueList getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KadasterValueList } + * + */ + public void setOut(KadasterValueList value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetRangesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetRangesRequestType.java new file mode 100644 index 0000000..8a18c7e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetRangesRequestType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterValueListGetRangesRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterValueListGetRangesRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterValueListGetRangesRequestType") +public class KadasterValueListGetRangesRequestType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetRangesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetRangesResponseType.java new file mode 100644 index 0000000..6162fd8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetRangesResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kadasterValueListGetRangesResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kadasterValueListGetRangesResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterValueList"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kadasterValueListGetRangesResponseType", propOrder = { + +}) +public class KadasterValueListGetRangesResponseType { + + @XmlElement(required = true) + protected KadasterValueList out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KadasterValueList } + * + */ + public KadasterValueList getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KadasterValueList } + * + */ + public void setOut(KadasterValueList value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraalPerceel.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraalPerceel.java new file mode 100644 index 0000000..43fa670 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraalPerceel.java @@ -0,0 +1,142 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadastraalPerceel complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadastraalPerceel">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="x_coordinaat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="y_coordinaat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="grootte_perceel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="indicatie_grootte_geschat" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadastraalPerceel", propOrder = { + +}) +public class KadastraalPerceel { + + @XmlElement(name = "x_coordinaat") + protected String xCoordinaat; + @XmlElement(name = "y_coordinaat") + protected String yCoordinaat; + @XmlElement(name = "grootte_perceel") + protected String groottePerceel; + @XmlElement(name = "indicatie_grootte_geschat") + protected boolean indicatieGrootteGeschat; + + /** + * Gets the value of the xCoordinaat property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getXCoordinaat() { + return xCoordinaat; + } + + /** + * Sets the value of the xCoordinaat property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setXCoordinaat(String value) { + this.xCoordinaat = value; + } + + /** + * Gets the value of the yCoordinaat property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getYCoordinaat() { + return yCoordinaat; + } + + /** + * Sets the value of the yCoordinaat property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setYCoordinaat(String value) { + this.yCoordinaat = value; + } + + /** + * Gets the value of the groottePerceel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGroottePerceel() { + return groottePerceel; + } + + /** + * Sets the value of the groottePerceel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGroottePerceel(String value) { + this.groottePerceel = value; + } + + /** + * Gets the value of the indicatieGrootteGeschat property. + * + */ + public boolean isIndicatieGrootteGeschat() { + return indicatieGrootteGeschat; + } + + /** + * Sets the value of the indicatieGrootteGeschat property. + * + */ + public void setIndicatieGrootteGeschat(boolean value) { + this.indicatieGrootteGeschat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduiding.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduiding.java new file mode 100644 index 0000000..5aafb60 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduiding.java @@ -0,0 +1,200 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadastraleAanduiding complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadastraleAanduiding">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadastraleAanduiding", propOrder = { + +}) +public class KadastraleAanduiding { + + protected String gemeentecode; + protected String gemeentenaam; + @XmlElement(required = true) + protected String sectie; + @XmlElement(required = true) + protected String perceelnummer; + protected String relatiecode; + protected String volgnummer; + + /** + * Gets the value of the gemeentecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentecode() { + return gemeentecode; + } + + /** + * Sets the value of the gemeentecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentecode(String value) { + this.gemeentecode = value; + } + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the sectie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSectie() { + return sectie; + } + + /** + * Sets the value of the sectie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSectie(String value) { + this.sectie = value; + } + + /** + * Gets the value of the perceelnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPerceelnummer(String value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the relatiecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRelatiecode() { + return relatiecode; + } + + /** + * Sets the value of the relatiecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRelatiecode(String value) { + this.relatiecode = value; + } + + /** + * Gets the value of the volgnummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVolgnummer() { + return volgnummer; + } + + /** + * Sets the value of the volgnummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVolgnummer(String value) { + this.volgnummer = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduidingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduidingArray.java new file mode 100644 index 0000000..0ffbc1d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduidingArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadastraleAanduidingArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadastraleAanduidingArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KadastraleAanduiding" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadastraleAanduidingArray", propOrder = { + "item" +}) +public class KadastraleAanduidingArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KadastraleAanduiding } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduidingLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduidingLijst.java new file mode 100644 index 0000000..78122b4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduidingLijst.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KadastraleAanduidingLijst complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KadastraleAanduidingLijst">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="kadastrale_aanduidingen" type="{http://www.webservices.nl/soap/}KadastraleAanduidingArray"/>
+ *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KadastraleAanduidingLijst", propOrder = { + +}) +public class KadastraleAanduidingLijst { + + @XmlElement(name = "kadastrale_aanduidingen", required = true) + protected KadastraleAanduidingArray kadastraleAanduidingen; + @XmlElement(name = "indicatie_compleet") + protected boolean indicatieCompleet; + + /** + * Gets the value of the kadastraleAanduidingen property. + * + * @return + * possible object is + * {@link KadastraleAanduidingArray } + * + */ + public KadastraleAanduidingArray getKadastraleAanduidingen() { + return kadastraleAanduidingen; + } + + /** + * Sets the value of the kadastraleAanduidingen property. + * + * @param value + * allowed object is + * {@link KadastraleAanduidingArray } + * + */ + public void setKadastraleAanduidingen(KadastraleAanduidingArray value) { + this.kadastraleAanduidingen = value; + } + + /** + * Gets the value of the indicatieCompleet property. + * + */ + public boolean isIndicatieCompleet() { + return indicatieCompleet; + } + + /** + * Sets the value of the indicatieCompleet property. + * + */ + public void setIndicatieCompleet(boolean value) { + this.indicatieCompleet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Koopsom.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Koopsom.java new file mode 100644 index 0000000..8669bd5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Koopsom.java @@ -0,0 +1,199 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for Koopsom complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="Koopsom">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="koopdatum" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="bedrag" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="oppervlakte" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="meer_onroerende_goederen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Koopsom", propOrder = { + +}) +public class Koopsom { + + @XmlElement(required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar koopdatum; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + protected int bedrag; + protected int oppervlakte; + @XmlElement(required = true) + protected String omschrijving; + @XmlElement(name = "meer_onroerende_goederen") + protected boolean meerOnroerendeGoederen; + + /** + * Gets the value of the koopdatum property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getKoopdatum() { + return koopdatum; + } + + /** + * Sets the value of the koopdatum property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setKoopdatum(XMLGregorianCalendar value) { + this.koopdatum = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the bedrag property. + * + */ + public int getBedrag() { + return bedrag; + } + + /** + * Sets the value of the bedrag property. + * + */ + public void setBedrag(int value) { + this.bedrag = value; + } + + /** + * Gets the value of the oppervlakte property. + * + */ + public int getOppervlakte() { + return oppervlakte; + } + + /** + * Sets the value of the oppervlakte property. + * + */ + public void setOppervlakte(int value) { + this.oppervlakte = value; + } + + /** + * Gets the value of the omschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijving() { + return omschrijving; + } + + /** + * Sets the value of the omschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijving(String value) { + this.omschrijving = value; + } + + /** + * Gets the value of the meerOnroerendeGoederen property. + * + */ + public boolean isMeerOnroerendeGoederen() { + return meerOnroerendeGoederen; + } + + /** + * Sets the value of the meerOnroerendeGoederen property. + * + */ + public void setMeerOnroerendeGoederen(boolean value) { + this.meerOnroerendeGoederen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsomArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsomArray.java new file mode 100644 index 0000000..8cd6488 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsomArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KoopsomArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KoopsomArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}Koopsom" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KoopsomArray", propOrder = { + "item" +}) +public class KoopsomArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Koopsom } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsommenOverzicht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsommenOverzicht.java new file mode 100644 index 0000000..1e5348f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsommenOverzicht.java @@ -0,0 +1,218 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for KoopsommenOverzicht complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KoopsommenOverzicht">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="eind_datum" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="straatnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnr_van" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnr_tm" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="reeksindicatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeente" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="koopsommen" type="{http://www.webservices.nl/soap/}KoopsomArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KoopsommenOverzicht", propOrder = { + +}) +public class KoopsommenOverzicht { + + @XmlElement(name = "eind_datum", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar eindDatum; + @XmlElement(required = true) + protected String straatnaam; + @XmlElement(name = "huisnr_van") + protected int huisnrVan; + @XmlElement(name = "huisnr_tm") + protected int huisnrTm; + @XmlElement(required = true) + protected String reeksindicatie; + @XmlElement(required = true) + protected String gemeente; + @XmlElement(required = true) + protected KoopsomArray koopsommen; + + /** + * Gets the value of the eindDatum property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEindDatum() { + return eindDatum; + } + + /** + * Sets the value of the eindDatum property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEindDatum(XMLGregorianCalendar value) { + this.eindDatum = value; + } + + /** + * Gets the value of the straatnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStraatnaam() { + return straatnaam; + } + + /** + * Sets the value of the straatnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStraatnaam(String value) { + this.straatnaam = value; + } + + /** + * Gets the value of the huisnrVan property. + * + */ + public int getHuisnrVan() { + return huisnrVan; + } + + /** + * Sets the value of the huisnrVan property. + * + */ + public void setHuisnrVan(int value) { + this.huisnrVan = value; + } + + /** + * Gets the value of the huisnrTm property. + * + */ + public int getHuisnrTm() { + return huisnrTm; + } + + /** + * Sets the value of the huisnrTm property. + * + */ + public void setHuisnrTm(int value) { + this.huisnrTm = value; + } + + /** + * Gets the value of the reeksindicatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReeksindicatie() { + return reeksindicatie; + } + + /** + * Sets the value of the reeksindicatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReeksindicatie(String value) { + this.reeksindicatie = value; + } + + /** + * Gets the value of the gemeente property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeente() { + return gemeente; + } + + /** + * Sets the value of the gemeente property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeente(String value) { + this.gemeente = value; + } + + /** + * Gets the value of the koopsommen property. + * + * @return + * possible object is + * {@link KoopsomArray } + * + */ + public KoopsomArray getKoopsommen() { + return koopsommen; + } + + /** + * Sets the value of the koopsommen property. + * + * @param value + * allowed object is + * {@link KoopsomArray } + * + */ + public void setKoopsommen(KoopsomArray value) { + this.koopsommen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsommenOverzichtV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsommenOverzichtV2.java new file mode 100644 index 0000000..6e3e5b2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsommenOverzichtV2.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KoopsommenOverzichtV2 complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KoopsommenOverzichtV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
+ *         <element name="overzicht" type="{http://www.webservices.nl/soap/}KoopsommenOverzicht"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KoopsommenOverzichtV2", propOrder = { + +}) +public class KoopsommenOverzichtV2 { + + protected byte[] document; + @XmlElement(required = true) + protected KoopsommenOverzicht overzicht; + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + + /** + * Gets the value of the overzicht property. + * + * @return + * possible object is + * {@link KoopsommenOverzicht } + * + */ + public KoopsommenOverzicht getOverzicht() { + return overzicht; + } + + /** + * Sets the value of the overzicht property. + * + * @param value + * allowed object is + * {@link KoopsommenOverzicht } + * + */ + public void setOverzicht(KoopsommenOverzicht value) { + this.overzicht = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkDate.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkDate.java new file mode 100644 index 0000000..907005f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkDate.java @@ -0,0 +1,115 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KvkDate complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KvkDate">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="Year" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="Month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="Day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KvkDate", propOrder = { + +}) +public class KvkDate { + + @XmlElement(name = "Year") + protected int year; + @XmlElement(name = "Month") + protected Integer month; + @XmlElement(name = "Day") + protected Integer day; + + /** + * Gets the value of the year property. + * + */ + public int getYear() { + return year; + } + + /** + * Sets the value of the year property. + * + */ + public void setYear(int value) { + this.year = value; + } + + /** + * Gets the value of the month property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getMonth() { + return month; + } + + /** + * Sets the value of the month property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setMonth(Integer value) { + this.month = value; + } + + /** + * Gets the value of the day property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getDay() { + return day; + } + + /** + * Sets the value of the day property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setDay(Integer value) { + this.day = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkDossier.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkDossier.java new file mode 100644 index 0000000..0035620 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkDossier.java @@ -0,0 +1,1573 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KvkDossier complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KvkDossier">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="update_info" type="{http://www.webservices.nl/soap/}KvkUpdateReference"/>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="main_establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="indication_main_establishment" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="chamber_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_form_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="indication_organisation_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_name_45" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_name_full" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="establishment_postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="establishment_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="correspondence_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mobile_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="domain_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_title1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_title2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_initials" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_surname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contact_gender" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="primary_sbi_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="secondary_sbi_code1" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="secondary_sbi_code2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="primary_sbi_code_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="secondary_sbi_code1_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="secondary_sbi_code2_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="class_personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="personnel_fulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="class_personnel_fulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="personnel_reference_date" type="{http://www.webservices.nl/soap/}KvkDate" minOccurs="0"/>
+ *         <element name="indication_import" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="indication_export" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="indication_economically_active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indication_non_mailing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indication_bankruptcy" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indication_dip" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="authorized_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="authorized_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="paid_up_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="paid_up_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="issued_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
+ *         <element name="issued_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="founding_date" type="{http://www.webservices.nl/soap/}KvkDate" minOccurs="0"/>
+ *         <element name="continuation_date" type="{http://www.webservices.nl/soap/}KvkDate" minOccurs="0"/>
+ *         <element name="establishment_date" type="{http://www.webservices.nl/soap/}KvkDate" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KvkDossier", propOrder = { + +}) +public class KvkDossier { + + @XmlElement(name = "update_info", required = true) + protected KvkUpdateReference updateInfo; + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(name = "main_establishment_number") + protected String mainEstablishmentNumber; + @XmlElement(name = "indication_main_establishment") + protected boolean indicationMainEstablishment; + @XmlElement(name = "rsin_number") + protected String rsinNumber; + @XmlElement(name = "chamber_number", required = true) + protected String chamberNumber; + @XmlElement(name = "legal_form_code", required = true) + protected String legalFormCode; + @XmlElement(name = "legal_form_text", required = true) + protected String legalFormText; + @XmlElement(name = "indication_organisation_code", required = true) + protected String indicationOrganisationCode; + @XmlElement(name = "legal_name", required = true) + protected String legalName; + @XmlElement(name = "trade_name_45", required = true) + protected String tradeName45; + @XmlElement(name = "trade_name_full", required = true) + protected String tradeNameFull; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + @XmlElement(name = "establishment_postcode", required = true) + protected String establishmentPostcode; + @XmlElement(name = "establishment_city", required = true) + protected String establishmentCity; + @XmlElement(name = "establishment_street", required = true) + protected String establishmentStreet; + @XmlElement(name = "establishment_house_number") + protected int establishmentHouseNumber; + @XmlElement(name = "establishment_house_number_addition", required = true) + protected String establishmentHouseNumberAddition; + @XmlElement(name = "correspondence_postcode", required = true) + protected String correspondencePostcode; + @XmlElement(name = "correspondence_city", required = true) + protected String correspondenceCity; + @XmlElement(name = "correspondence_street", required = true) + protected String correspondenceStreet; + @XmlElement(name = "correspondence_house_number") + protected int correspondenceHouseNumber; + @XmlElement(name = "correspondence_house_number_addition", required = true) + protected String correspondenceHouseNumberAddition; + @XmlElement(name = "correspondence_country", required = true) + protected String correspondenceCountry; + @XmlElement(name = "telephone_number", required = true) + protected String telephoneNumber; + @XmlElement(name = "mobile_number", required = true) + protected String mobileNumber; + @XmlElement(name = "domain_name", required = true) + protected String domainName; + @XmlElement(name = "contact_title1", required = true) + protected String contactTitle1; + @XmlElement(name = "contact_title2", required = true) + protected String contactTitle2; + @XmlElement(name = "contact_initials", required = true) + protected String contactInitials; + @XmlElement(name = "contact_prefix", required = true) + protected String contactPrefix; + @XmlElement(name = "contact_surname", required = true) + protected String contactSurname; + @XmlElement(name = "contact_gender", required = true) + protected String contactGender; + @XmlElement(name = "primary_sbi_code", required = true) + protected String primarySbiCode; + @XmlElement(name = "secondary_sbi_code1", required = true) + protected String secondarySbiCode1; + @XmlElement(name = "secondary_sbi_code2", required = true) + protected String secondarySbiCode2; + @XmlElement(name = "primary_sbi_code_text", required = true) + protected String primarySbiCodeText; + @XmlElement(name = "secondary_sbi_code1_text", required = true) + protected String secondarySbiCode1Text; + @XmlElement(name = "secondary_sbi_code2_text", required = true) + protected String secondarySbiCode2Text; + protected int personnel; + @XmlElement(name = "class_personnel") + protected int classPersonnel; + @XmlElement(name = "personnel_fulltime") + protected int personnelFulltime; + @XmlElement(name = "class_personnel_fulltime") + protected int classPersonnelFulltime; + @XmlElement(name = "personnel_reference_date") + protected KvkDate personnelReferenceDate; + @XmlElement(name = "indication_import") + protected Boolean indicationImport; + @XmlElement(name = "indication_export") + protected Boolean indicationExport; + @XmlElement(name = "indication_economically_active") + protected boolean indicationEconomicallyActive; + @XmlElement(name = "indication_non_mailing") + protected boolean indicationNonMailing; + @XmlElement(name = "indication_bankruptcy") + protected boolean indicationBankruptcy; + @XmlElement(name = "indication_dip") + protected boolean indicationDip; + @XmlElement(name = "authorized_share_capital") + protected Long authorizedShareCapital; + @XmlElement(name = "authorized_share_capital_currency") + protected String authorizedShareCapitalCurrency; + @XmlElement(name = "paid_up_share_capital") + protected Long paidUpShareCapital; + @XmlElement(name = "paid_up_share_capital_currency") + protected String paidUpShareCapitalCurrency; + @XmlElement(name = "issued_share_capital") + protected Long issuedShareCapital; + @XmlElement(name = "issued_share_capital_currency") + protected String issuedShareCapitalCurrency; + @XmlElement(name = "founding_date") + protected KvkDate foundingDate; + @XmlElement(name = "continuation_date") + protected KvkDate continuationDate; + @XmlElement(name = "establishment_date") + protected KvkDate establishmentDate; + + /** + * Gets the value of the updateInfo property. + * + * @return + * possible object is + * {@link KvkUpdateReference } + * + */ + public KvkUpdateReference getUpdateInfo() { + return updateInfo; + } + + /** + * Sets the value of the updateInfo property. + * + * @param value + * allowed object is + * {@link KvkUpdateReference } + * + */ + public void setUpdateInfo(KvkUpdateReference value) { + this.updateInfo = value; + } + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the mainEstablishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMainEstablishmentNumber() { + return mainEstablishmentNumber; + } + + /** + * Sets the value of the mainEstablishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMainEstablishmentNumber(String value) { + this.mainEstablishmentNumber = value; + } + + /** + * Gets the value of the indicationMainEstablishment property. + * + */ + public boolean isIndicationMainEstablishment() { + return indicationMainEstablishment; + } + + /** + * Sets the value of the indicationMainEstablishment property. + * + */ + public void setIndicationMainEstablishment(boolean value) { + this.indicationMainEstablishment = value; + } + + /** + * Gets the value of the rsinNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsinNumber() { + return rsinNumber; + } + + /** + * Sets the value of the rsinNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsinNumber(String value) { + this.rsinNumber = value; + } + + /** + * Gets the value of the chamberNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getChamberNumber() { + return chamberNumber; + } + + /** + * Sets the value of the chamberNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setChamberNumber(String value) { + this.chamberNumber = value; + } + + /** + * Gets the value of the legalFormCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormCode() { + return legalFormCode; + } + + /** + * Sets the value of the legalFormCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormCode(String value) { + this.legalFormCode = value; + } + + /** + * Gets the value of the legalFormText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalFormText() { + return legalFormText; + } + + /** + * Sets the value of the legalFormText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalFormText(String value) { + this.legalFormText = value; + } + + /** + * Gets the value of the indicationOrganisationCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIndicationOrganisationCode() { + return indicationOrganisationCode; + } + + /** + * Sets the value of the indicationOrganisationCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIndicationOrganisationCode(String value) { + this.indicationOrganisationCode = value; + } + + /** + * Gets the value of the legalName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLegalName() { + return legalName; + } + + /** + * Sets the value of the legalName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLegalName(String value) { + this.legalName = value; + } + + /** + * Gets the value of the tradeName45 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName45() { + return tradeName45; + } + + /** + * Sets the value of the tradeName45 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName45(String value) { + this.tradeName45 = value; + } + + /** + * Gets the value of the tradeNameFull property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeNameFull() { + return tradeNameFull; + } + + /** + * Sets the value of the tradeNameFull property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeNameFull(String value) { + this.tradeNameFull = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + + /** + * Gets the value of the establishmentPostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentPostcode() { + return establishmentPostcode; + } + + /** + * Sets the value of the establishmentPostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentPostcode(String value) { + this.establishmentPostcode = value; + } + + /** + * Gets the value of the establishmentCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCity() { + return establishmentCity; + } + + /** + * Sets the value of the establishmentCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCity(String value) { + this.establishmentCity = value; + } + + /** + * Gets the value of the establishmentStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentStreet() { + return establishmentStreet; + } + + /** + * Sets the value of the establishmentStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentStreet(String value) { + this.establishmentStreet = value; + } + + /** + * Gets the value of the establishmentHouseNumber property. + * + */ + public int getEstablishmentHouseNumber() { + return establishmentHouseNumber; + } + + /** + * Sets the value of the establishmentHouseNumber property. + * + */ + public void setEstablishmentHouseNumber(int value) { + this.establishmentHouseNumber = value; + } + + /** + * Gets the value of the establishmentHouseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentHouseNumberAddition() { + return establishmentHouseNumberAddition; + } + + /** + * Sets the value of the establishmentHouseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentHouseNumberAddition(String value) { + this.establishmentHouseNumberAddition = value; + } + + /** + * Gets the value of the correspondencePostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondencePostcode() { + return correspondencePostcode; + } + + /** + * Sets the value of the correspondencePostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondencePostcode(String value) { + this.correspondencePostcode = value; + } + + /** + * Gets the value of the correspondenceCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCity() { + return correspondenceCity; + } + + /** + * Sets the value of the correspondenceCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCity(String value) { + this.correspondenceCity = value; + } + + /** + * Gets the value of the correspondenceStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceStreet() { + return correspondenceStreet; + } + + /** + * Sets the value of the correspondenceStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceStreet(String value) { + this.correspondenceStreet = value; + } + + /** + * Gets the value of the correspondenceHouseNumber property. + * + */ + public int getCorrespondenceHouseNumber() { + return correspondenceHouseNumber; + } + + /** + * Sets the value of the correspondenceHouseNumber property. + * + */ + public void setCorrespondenceHouseNumber(int value) { + this.correspondenceHouseNumber = value; + } + + /** + * Gets the value of the correspondenceHouseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceHouseNumberAddition() { + return correspondenceHouseNumberAddition; + } + + /** + * Sets the value of the correspondenceHouseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceHouseNumberAddition(String value) { + this.correspondenceHouseNumberAddition = value; + } + + /** + * Gets the value of the correspondenceCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCountry() { + return correspondenceCountry; + } + + /** + * Sets the value of the correspondenceCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCountry(String value) { + this.correspondenceCountry = value; + } + + /** + * Gets the value of the telephoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNumber() { + return telephoneNumber; + } + + /** + * Sets the value of the telephoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNumber(String value) { + this.telephoneNumber = value; + } + + /** + * Gets the value of the mobileNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMobileNumber() { + return mobileNumber; + } + + /** + * Sets the value of the mobileNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMobileNumber(String value) { + this.mobileNumber = value; + } + + /** + * Gets the value of the domainName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDomainName() { + return domainName; + } + + /** + * Sets the value of the domainName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDomainName(String value) { + this.domainName = value; + } + + /** + * Gets the value of the contactTitle1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactTitle1() { + return contactTitle1; + } + + /** + * Sets the value of the contactTitle1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactTitle1(String value) { + this.contactTitle1 = value; + } + + /** + * Gets the value of the contactTitle2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactTitle2() { + return contactTitle2; + } + + /** + * Sets the value of the contactTitle2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactTitle2(String value) { + this.contactTitle2 = value; + } + + /** + * Gets the value of the contactInitials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactInitials() { + return contactInitials; + } + + /** + * Sets the value of the contactInitials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactInitials(String value) { + this.contactInitials = value; + } + + /** + * Gets the value of the contactPrefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactPrefix() { + return contactPrefix; + } + + /** + * Sets the value of the contactPrefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactPrefix(String value) { + this.contactPrefix = value; + } + + /** + * Gets the value of the contactSurname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactSurname() { + return contactSurname; + } + + /** + * Sets the value of the contactSurname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactSurname(String value) { + this.contactSurname = value; + } + + /** + * Gets the value of the contactGender property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactGender() { + return contactGender; + } + + /** + * Sets the value of the contactGender property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactGender(String value) { + this.contactGender = value; + } + + /** + * Gets the value of the primarySbiCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimarySbiCode() { + return primarySbiCode; + } + + /** + * Sets the value of the primarySbiCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimarySbiCode(String value) { + this.primarySbiCode = value; + } + + /** + * Gets the value of the secondarySbiCode1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySbiCode1() { + return secondarySbiCode1; + } + + /** + * Sets the value of the secondarySbiCode1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySbiCode1(String value) { + this.secondarySbiCode1 = value; + } + + /** + * Gets the value of the secondarySbiCode2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySbiCode2() { + return secondarySbiCode2; + } + + /** + * Sets the value of the secondarySbiCode2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySbiCode2(String value) { + this.secondarySbiCode2 = value; + } + + /** + * Gets the value of the primarySbiCodeText property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrimarySbiCodeText() { + return primarySbiCodeText; + } + + /** + * Sets the value of the primarySbiCodeText property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrimarySbiCodeText(String value) { + this.primarySbiCodeText = value; + } + + /** + * Gets the value of the secondarySbiCode1Text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySbiCode1Text() { + return secondarySbiCode1Text; + } + + /** + * Sets the value of the secondarySbiCode1Text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySbiCode1Text(String value) { + this.secondarySbiCode1Text = value; + } + + /** + * Gets the value of the secondarySbiCode2Text property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSecondarySbiCode2Text() { + return secondarySbiCode2Text; + } + + /** + * Sets the value of the secondarySbiCode2Text property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSecondarySbiCode2Text(String value) { + this.secondarySbiCode2Text = value; + } + + /** + * Gets the value of the personnel property. + * + */ + public int getPersonnel() { + return personnel; + } + + /** + * Sets the value of the personnel property. + * + */ + public void setPersonnel(int value) { + this.personnel = value; + } + + /** + * Gets the value of the classPersonnel property. + * + */ + public int getClassPersonnel() { + return classPersonnel; + } + + /** + * Sets the value of the classPersonnel property. + * + */ + public void setClassPersonnel(int value) { + this.classPersonnel = value; + } + + /** + * Gets the value of the personnelFulltime property. + * + */ + public int getPersonnelFulltime() { + return personnelFulltime; + } + + /** + * Sets the value of the personnelFulltime property. + * + */ + public void setPersonnelFulltime(int value) { + this.personnelFulltime = value; + } + + /** + * Gets the value of the classPersonnelFulltime property. + * + */ + public int getClassPersonnelFulltime() { + return classPersonnelFulltime; + } + + /** + * Sets the value of the classPersonnelFulltime property. + * + */ + public void setClassPersonnelFulltime(int value) { + this.classPersonnelFulltime = value; + } + + /** + * Gets the value of the personnelReferenceDate property. + * + * @return + * possible object is + * {@link KvkDate } + * + */ + public KvkDate getPersonnelReferenceDate() { + return personnelReferenceDate; + } + + /** + * Sets the value of the personnelReferenceDate property. + * + * @param value + * allowed object is + * {@link KvkDate } + * + */ + public void setPersonnelReferenceDate(KvkDate value) { + this.personnelReferenceDate = value; + } + + /** + * Gets the value of the indicationImport property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicationImport() { + return indicationImport; + } + + /** + * Sets the value of the indicationImport property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicationImport(Boolean value) { + this.indicationImport = value; + } + + /** + * Gets the value of the indicationExport property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isIndicationExport() { + return indicationExport; + } + + /** + * Sets the value of the indicationExport property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setIndicationExport(Boolean value) { + this.indicationExport = value; + } + + /** + * Gets the value of the indicationEconomicallyActive property. + * + */ + public boolean isIndicationEconomicallyActive() { + return indicationEconomicallyActive; + } + + /** + * Sets the value of the indicationEconomicallyActive property. + * + */ + public void setIndicationEconomicallyActive(boolean value) { + this.indicationEconomicallyActive = value; + } + + /** + * Gets the value of the indicationNonMailing property. + * + */ + public boolean isIndicationNonMailing() { + return indicationNonMailing; + } + + /** + * Sets the value of the indicationNonMailing property. + * + */ + public void setIndicationNonMailing(boolean value) { + this.indicationNonMailing = value; + } + + /** + * Gets the value of the indicationBankruptcy property. + * + */ + public boolean isIndicationBankruptcy() { + return indicationBankruptcy; + } + + /** + * Sets the value of the indicationBankruptcy property. + * + */ + public void setIndicationBankruptcy(boolean value) { + this.indicationBankruptcy = value; + } + + /** + * Gets the value of the indicationDip property. + * + */ + public boolean isIndicationDip() { + return indicationDip; + } + + /** + * Sets the value of the indicationDip property. + * + */ + public void setIndicationDip(boolean value) { + this.indicationDip = value; + } + + /** + * Gets the value of the authorizedShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getAuthorizedShareCapital() { + return authorizedShareCapital; + } + + /** + * Sets the value of the authorizedShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setAuthorizedShareCapital(Long value) { + this.authorizedShareCapital = value; + } + + /** + * Gets the value of the authorizedShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAuthorizedShareCapitalCurrency() { + return authorizedShareCapitalCurrency; + } + + /** + * Sets the value of the authorizedShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAuthorizedShareCapitalCurrency(String value) { + this.authorizedShareCapitalCurrency = value; + } + + /** + * Gets the value of the paidUpShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getPaidUpShareCapital() { + return paidUpShareCapital; + } + + /** + * Sets the value of the paidUpShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setPaidUpShareCapital(Long value) { + this.paidUpShareCapital = value; + } + + /** + * Gets the value of the paidUpShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPaidUpShareCapitalCurrency() { + return paidUpShareCapitalCurrency; + } + + /** + * Sets the value of the paidUpShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPaidUpShareCapitalCurrency(String value) { + this.paidUpShareCapitalCurrency = value; + } + + /** + * Gets the value of the issuedShareCapital property. + * + * @return + * possible object is + * {@link Long } + * + */ + public Long getIssuedShareCapital() { + return issuedShareCapital; + } + + /** + * Sets the value of the issuedShareCapital property. + * + * @param value + * allowed object is + * {@link Long } + * + */ + public void setIssuedShareCapital(Long value) { + this.issuedShareCapital = value; + } + + /** + * Gets the value of the issuedShareCapitalCurrency property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIssuedShareCapitalCurrency() { + return issuedShareCapitalCurrency; + } + + /** + * Sets the value of the issuedShareCapitalCurrency property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIssuedShareCapitalCurrency(String value) { + this.issuedShareCapitalCurrency = value; + } + + /** + * Gets the value of the foundingDate property. + * + * @return + * possible object is + * {@link KvkDate } + * + */ + public KvkDate getFoundingDate() { + return foundingDate; + } + + /** + * Sets the value of the foundingDate property. + * + * @param value + * allowed object is + * {@link KvkDate } + * + */ + public void setFoundingDate(KvkDate value) { + this.foundingDate = value; + } + + /** + * Gets the value of the continuationDate property. + * + * @return + * possible object is + * {@link KvkDate } + * + */ + public KvkDate getContinuationDate() { + return continuationDate; + } + + /** + * Sets the value of the continuationDate property. + * + * @param value + * allowed object is + * {@link KvkDate } + * + */ + public void setContinuationDate(KvkDate value) { + this.continuationDate = value; + } + + /** + * Gets the value of the establishmentDate property. + * + * @return + * possible object is + * {@link KvkDate } + * + */ + public KvkDate getEstablishmentDate() { + return establishmentDate; + } + + /** + * Sets the value of the establishmentDate property. + * + * @param value + * allowed object is + * {@link KvkDate } + * + */ + public void setEstablishmentDate(KvkDate value) { + this.establishmentDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkExtractDocument.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkExtractDocument.java new file mode 100644 index 0000000..c840254 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkExtractDocument.java @@ -0,0 +1,97 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for KvkExtractDocument complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KvkExtractDocument">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *         <element name="document_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KvkExtractDocument", propOrder = { + +}) +public class KvkExtractDocument { + + @XmlElement(required = true) + protected byte[] document; + @XmlElement(name = "document_date", required = true) + @XmlSchemaType(name = "dateTime") + protected XMLGregorianCalendar documentDate; + + /** + * Gets the value of the document property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getDocument() { + return document; + } + + /** + * Sets the value of the document property. + * + * @param value + * allowed object is + * byte[] + */ + public void setDocument(byte[] value) { + this.document = value; + } + + /** + * Gets the value of the documentDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDocumentDate() { + return documentDate; + } + + /** + * Sets the value of the documentDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDocumentDate(XMLGregorianCalendar value) { + this.documentDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetDossierRequestType.java new file mode 100644 index 0000000..56aeff6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetDossierRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkGetDossierRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkGetDossierRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkGetDossierRequestType", propOrder = { + +}) +public class KvkGetDossierRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number", required = true) + protected String establishmentNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetDossierResponseType.java new file mode 100644 index 0000000..144c970 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetDossierResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkGetDossierResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkGetDossierResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KvkDossier"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkGetDossierResponseType", propOrder = { + +}) +public class KvkGetDossierResponseType { + + @XmlElement(required = true) + protected KvkDossier out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KvkDossier } + * + */ + public KvkDossier getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KvkDossier } + * + */ + public void setOut(KvkDossier value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetExtractDocumentRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetExtractDocumentRequestType.java new file mode 100644 index 0000000..a7a90e4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetExtractDocumentRequestType.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkGetExtractDocumentRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkGetExtractDocumentRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="allow_caching" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkGetExtractDocumentRequestType", propOrder = { + +}) +public class KvkGetExtractDocumentRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "allow_caching") + protected boolean allowCaching; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the allowCaching property. + * + */ + public boolean isAllowCaching() { + return allowCaching; + } + + /** + * Sets the value of the allowCaching property. + * + */ + public void setAllowCaching(boolean value) { + this.allowCaching = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetExtractDocumentResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetExtractDocumentResponseType.java new file mode 100644 index 0000000..effb7fe --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetExtractDocumentResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkGetExtractDocumentResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkGetExtractDocumentResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KvkExtractDocument"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkGetExtractDocumentResponseType", propOrder = { + +}) +public class KvkGetExtractDocumentResponseType { + + @XmlElement(required = true) + protected KvkExtractDocument out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KvkExtractDocument } + * + */ + public KvkExtractDocument getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KvkExtractDocument } + * + */ + public void setOut(KvkExtractDocument value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReference.java new file mode 100644 index 0000000..79702de --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReference.java @@ -0,0 +1,250 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KvkReference complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KvkReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="indication_economically_active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KvkReference", propOrder = { + +}) +public class KvkReference { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(name = "trade_name", required = true) + protected String tradeName; + @XmlElement(name = "establishment_city", required = true) + protected String establishmentCity; + @XmlElement(name = "establishment_street", required = true) + protected String establishmentStreet; + @XmlElement(name = "correspondence_city", required = true) + protected String correspondenceCity; + @XmlElement(name = "correspondence_street", required = true) + protected String correspondenceStreet; + @XmlElement(name = "indication_economically_active") + protected boolean indicationEconomicallyActive; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the tradeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName() { + return tradeName; + } + + /** + * Sets the value of the tradeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName(String value) { + this.tradeName = value; + } + + /** + * Gets the value of the establishmentCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentCity() { + return establishmentCity; + } + + /** + * Sets the value of the establishmentCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentCity(String value) { + this.establishmentCity = value; + } + + /** + * Gets the value of the establishmentStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentStreet() { + return establishmentStreet; + } + + /** + * Sets the value of the establishmentStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentStreet(String value) { + this.establishmentStreet = value; + } + + /** + * Gets the value of the correspondenceCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceCity() { + return correspondenceCity; + } + + /** + * Sets the value of the correspondenceCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceCity(String value) { + this.correspondenceCity = value; + } + + /** + * Gets the value of the correspondenceStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCorrespondenceStreet() { + return correspondenceStreet; + } + + /** + * Sets the value of the correspondenceStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCorrespondenceStreet(String value) { + this.correspondenceStreet = value; + } + + /** + * Gets the value of the indicationEconomicallyActive property. + * + */ + public boolean isIndicationEconomicallyActive() { + return indicationEconomicallyActive; + } + + /** + * Sets the value of the indicationEconomicallyActive property. + * + */ + public void setIndicationEconomicallyActive(boolean value) { + this.indicationEconomicallyActive = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReferenceArray.java new file mode 100644 index 0000000..03afcb9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KvkReferenceArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KvkReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KvkReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KvkReferenceArray", propOrder = { + "item" +}) +public class KvkReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KvkReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReferencePagedResult.java new file mode 100644 index 0000000..aec2d98 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReferencePagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KvkReferencePagedResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KvkReferencePagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}KvkReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KvkReferencePagedResult", propOrder = { + +}) +public class KvkReferencePagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected KvkReferenceArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link KvkReferenceArray } + * + */ + public KvkReferenceArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link KvkReferenceArray } + * + */ + public void setResults(KvkReferenceArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchDossierNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchDossierNumberRequestType.java new file mode 100644 index 0000000..0b7980d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchDossierNumberRequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkSearchDossierNumberRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkSearchDossierNumberRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkSearchDossierNumberRequestType", propOrder = { + +}) +public class KvkSearchDossierNumberRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number", required = true) + protected String establishmentNumber; + @XmlElement(name = "rsin_number", required = true) + protected String rsinNumber; + protected int page; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the rsinNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRsinNumber() { + return rsinNumber; + } + + /** + * Sets the value of the rsinNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRsinNumber(String value) { + this.rsinNumber = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchDossierNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchDossierNumberResponseType.java new file mode 100644 index 0000000..85098f2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchDossierNumberResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkSearchDossierNumberResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkSearchDossierNumberResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KvkReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkSearchDossierNumberResponseType", propOrder = { + +}) +public class KvkSearchDossierNumberResponseType { + + @XmlElement(required = true) + protected KvkReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KvkReferencePagedResult } + * + */ + public KvkReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KvkReferencePagedResult } + * + */ + public void setOut(KvkReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchParametersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchParametersRequestType.java new file mode 100644 index 0000000..d1e034b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchParametersRequestType.java @@ -0,0 +1,287 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkSearchParametersRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkSearchParametersRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="domain_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="strict_search" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkSearchParametersRequestType", propOrder = { + +}) +public class KvkSearchParametersRequestType { + + @XmlElement(name = "trade_name", required = true) + protected String tradeName; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String street; + @XmlElement(required = true) + protected String postcode; + @XmlElement(name = "house_number") + protected int houseNumber; + @XmlElement(name = "house_number_addition", required = true) + protected String houseNumberAddition; + @XmlElement(name = "telephone_number", required = true) + protected String telephoneNumber; + @XmlElement(name = "domain_name", required = true) + protected String domainName; + @XmlElement(name = "strict_search") + protected boolean strictSearch; + protected int page; + + /** + * Gets the value of the tradeName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTradeName() { + return tradeName; + } + + /** + * Sets the value of the tradeName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTradeName(String value) { + this.tradeName = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the houseNumber property. + * + */ + public int getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + */ + public void setHouseNumber(int value) { + this.houseNumber = value; + } + + /** + * Gets the value of the houseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNumberAddition() { + return houseNumberAddition; + } + + /** + * Sets the value of the houseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNumberAddition(String value) { + this.houseNumberAddition = value; + } + + /** + * Gets the value of the telephoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNumber() { + return telephoneNumber; + } + + /** + * Sets the value of the telephoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNumber(String value) { + this.telephoneNumber = value; + } + + /** + * Gets the value of the domainName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDomainName() { + return domainName; + } + + /** + * Sets the value of the domainName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDomainName(String value) { + this.domainName = value; + } + + /** + * Gets the value of the strictSearch property. + * + */ + public boolean isStrictSearch() { + return strictSearch; + } + + /** + * Sets the value of the strictSearch property. + * + */ + public void setStrictSearch(boolean value) { + this.strictSearch = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchParametersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchParametersResponseType.java new file mode 100644 index 0000000..0baadbc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchParametersResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkSearchParametersResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkSearchParametersResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KvkReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkSearchParametersResponseType", propOrder = { + +}) +public class KvkSearchParametersResponseType { + + @XmlElement(required = true) + protected KvkReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KvkReferencePagedResult } + * + */ + public KvkReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KvkReferencePagedResult } + * + */ + public void setOut(KvkReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchPostcodeRequestType.java new file mode 100644 index 0000000..3d0dba4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchPostcodeRequestType.java @@ -0,0 +1,133 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkSearchPostcodeRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkSearchPostcodeRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkSearchPostcodeRequestType", propOrder = { + +}) +public class KvkSearchPostcodeRequestType { + + @XmlElement(required = true) + protected String postcode; + @XmlElement(name = "house_number") + protected int houseNumber; + @XmlElement(name = "house_number_addition", required = true) + protected String houseNumberAddition; + protected int page; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the houseNumber property. + * + */ + public int getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + */ + public void setHouseNumber(int value) { + this.houseNumber = value; + } + + /** + * Gets the value of the houseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNumberAddition() { + return houseNumberAddition; + } + + /** + * Sets the value of the houseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNumberAddition(String value) { + this.houseNumberAddition = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchPostcodeResponseType.java new file mode 100644 index 0000000..d0aea16 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchPostcodeResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkSearchPostcodeResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkSearchPostcodeResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KvkReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkSearchPostcodeResponseType", propOrder = { + +}) +public class KvkSearchPostcodeResponseType { + + @XmlElement(required = true) + protected KvkReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KvkReferencePagedResult } + * + */ + public KvkReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KvkReferencePagedResult } + * + */ + public void setOut(KvkReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchSelectionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchSelectionRequestType.java new file mode 100644 index 0000000..bab3c34 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchSelectionRequestType.java @@ -0,0 +1,333 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkSearchSelectionRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkSearchSelectionRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="city" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="postcode" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="sbi" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="primary_sbi_only" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="legal_form" type="{http://www.webservices.nl/soap/}intArray"/>
+ *         <element name="employees_min" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="employees_max" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="economically_active" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="financial_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="new_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkSearchSelectionRequestType", propOrder = { + +}) +public class KvkSearchSelectionRequestType { + + @XmlElement(required = true) + protected StringArray city; + @XmlElement(required = true) + protected StringArray postcode; + @XmlElement(required = true) + protected StringArray sbi; + @XmlElement(name = "primary_sbi_only") + protected boolean primarySbiOnly; + @XmlElement(name = "legal_form", required = true) + protected IntArray legalForm; + @XmlElement(name = "employees_min") + protected int employeesMin; + @XmlElement(name = "employees_max") + protected int employeesMax; + @XmlElement(name = "economically_active", required = true) + protected String economicallyActive; + @XmlElement(name = "financial_status", required = true) + protected String financialStatus; + @XmlElement(name = "changed_since", required = true) + protected String changedSince; + @XmlElement(name = "new_since", required = true) + protected String newSince; + protected int page; + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setCity(StringArray value) { + this.city = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setPostcode(StringArray value) { + this.postcode = value; + } + + /** + * Gets the value of the sbi property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getSbi() { + return sbi; + } + + /** + * Sets the value of the sbi property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setSbi(StringArray value) { + this.sbi = value; + } + + /** + * Gets the value of the primarySbiOnly property. + * + */ + public boolean isPrimarySbiOnly() { + return primarySbiOnly; + } + + /** + * Sets the value of the primarySbiOnly property. + * + */ + public void setPrimarySbiOnly(boolean value) { + this.primarySbiOnly = value; + } + + /** + * Gets the value of the legalForm property. + * + * @return + * possible object is + * {@link IntArray } + * + */ + public IntArray getLegalForm() { + return legalForm; + } + + /** + * Sets the value of the legalForm property. + * + * @param value + * allowed object is + * {@link IntArray } + * + */ + public void setLegalForm(IntArray value) { + this.legalForm = value; + } + + /** + * Gets the value of the employeesMin property. + * + */ + public int getEmployeesMin() { + return employeesMin; + } + + /** + * Sets the value of the employeesMin property. + * + */ + public void setEmployeesMin(int value) { + this.employeesMin = value; + } + + /** + * Gets the value of the employeesMax property. + * + */ + public int getEmployeesMax() { + return employeesMax; + } + + /** + * Sets the value of the employeesMax property. + * + */ + public void setEmployeesMax(int value) { + this.employeesMax = value; + } + + /** + * Gets the value of the economicallyActive property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEconomicallyActive() { + return economicallyActive; + } + + /** + * Sets the value of the economicallyActive property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEconomicallyActive(String value) { + this.economicallyActive = value; + } + + /** + * Gets the value of the financialStatus property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFinancialStatus() { + return financialStatus; + } + + /** + * Sets the value of the financialStatus property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFinancialStatus(String value) { + this.financialStatus = value; + } + + /** + * Gets the value of the changedSince property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getChangedSince() { + return changedSince; + } + + /** + * Sets the value of the changedSince property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setChangedSince(String value) { + this.changedSince = value; + } + + /** + * Gets the value of the newSince property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNewSince() { + return newSince; + } + + /** + * Sets the value of the newSince property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNewSince(String value) { + this.newSince = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchSelectionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchSelectionResponseType.java new file mode 100644 index 0000000..031c108 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchSelectionResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkSearchSelectionResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkSearchSelectionResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KvkReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkSearchSelectionResponseType", propOrder = { + +}) +public class KvkSearchSelectionResponseType { + + @XmlElement(required = true) + protected KvkReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KvkReferencePagedResult } + * + */ + public KvkReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KvkReferencePagedResult } + * + */ + public void setOut(KvkReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateAddDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateAddDossierRequestType.java new file mode 100644 index 0000000..7e26fcb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateAddDossierRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkUpdateAddDossierRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkUpdateAddDossierRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkUpdateAddDossierRequestType", propOrder = { + +}) +public class KvkUpdateAddDossierRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number", required = true) + protected String establishmentNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateAddDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateAddDossierResponseType.java new file mode 100644 index 0000000..36b7b6f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateAddDossierResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkUpdateAddDossierResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkUpdateAddDossierResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkUpdateAddDossierResponseType") +public class KvkUpdateAddDossierResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateCheckDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateCheckDossierRequestType.java new file mode 100644 index 0000000..abedbfe --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateCheckDossierRequestType.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkUpdateCheckDossierRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkUpdateCheckDossierRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkUpdateCheckDossierRequestType", propOrder = { + +}) +public class KvkUpdateCheckDossierRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number", required = true) + protected String establishmentNumber; + @XmlElement(name = "update_types", required = true) + protected StringArray updateTypes; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the updateTypes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getUpdateTypes() { + return updateTypes; + } + + /** + * Sets the value of the updateTypes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setUpdateTypes(StringArray value) { + this.updateTypes = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateCheckDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateCheckDossierResponseType.java new file mode 100644 index 0000000..85afd74 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateCheckDossierResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkUpdateCheckDossierResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkUpdateCheckDossierResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KvkUpdateReference"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkUpdateCheckDossierResponseType", propOrder = { + +}) +public class KvkUpdateCheckDossierResponseType { + + @XmlElement(required = true) + protected KvkUpdateReference out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KvkUpdateReference } + * + */ + public KvkUpdateReference getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KvkUpdateReference } + * + */ + public void setOut(KvkUpdateReference value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetChangedDossiersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetChangedDossiersRequestType.java new file mode 100644 index 0000000..5e1dfec --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetChangedDossiersRequestType.java @@ -0,0 +1,117 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for kvkUpdateGetChangedDossiersRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkUpdateGetChangedDossiersRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkUpdateGetChangedDossiersRequestType", propOrder = { + +}) +public class KvkUpdateGetChangedDossiersRequestType { + + @XmlElement(name = "changed_since", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar changedSince; + @XmlElement(name = "update_types", required = true) + protected StringArray updateTypes; + protected int page; + + /** + * Gets the value of the changedSince property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getChangedSince() { + return changedSince; + } + + /** + * Sets the value of the changedSince property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setChangedSince(XMLGregorianCalendar value) { + this.changedSince = value; + } + + /** + * Gets the value of the updateTypes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getUpdateTypes() { + return updateTypes; + } + + /** + * Sets the value of the updateTypes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setUpdateTypes(StringArray value) { + this.updateTypes = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetChangedDossiersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetChangedDossiersResponseType.java new file mode 100644 index 0000000..c86cb4d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetChangedDossiersResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkUpdateGetChangedDossiersResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkUpdateGetChangedDossiersResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KvkUpdateReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkUpdateGetChangedDossiersResponseType", propOrder = { + +}) +public class KvkUpdateGetChangedDossiersResponseType { + + @XmlElement(required = true) + protected KvkUpdateReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KvkUpdateReferencePagedResult } + * + */ + public KvkUpdateReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KvkUpdateReferencePagedResult } + * + */ + public void setOut(KvkUpdateReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetDossiersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetDossiersRequestType.java new file mode 100644 index 0000000..9b5d065 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetDossiersRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkUpdateGetDossiersRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkUpdateGetDossiersRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkUpdateGetDossiersRequestType", propOrder = { + +}) +public class KvkUpdateGetDossiersRequestType { + + @XmlElement(name = "update_types", required = true) + protected StringArray updateTypes; + protected int page; + + /** + * Gets the value of the updateTypes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getUpdateTypes() { + return updateTypes; + } + + /** + * Sets the value of the updateTypes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setUpdateTypes(StringArray value) { + this.updateTypes = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetDossiersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetDossiersResponseType.java new file mode 100644 index 0000000..7810c79 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetDossiersResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkUpdateGetDossiersResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkUpdateGetDossiersResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}KvkUpdateReferencePagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkUpdateGetDossiersResponseType", propOrder = { + +}) +public class KvkUpdateGetDossiersResponseType { + + @XmlElement(required = true) + protected KvkUpdateReferencePagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link KvkUpdateReferencePagedResult } + * + */ + public KvkUpdateReferencePagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link KvkUpdateReferencePagedResult } + * + */ + public void setOut(KvkUpdateReferencePagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReference.java new file mode 100644 index 0000000..5838dc3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReference.java @@ -0,0 +1,153 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for KvkUpdateReference complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KvkUpdateReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="date_last_update" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KvkUpdateReference", propOrder = { + +}) +public class KvkUpdateReference { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + @XmlElement(name = "update_types", required = true) + protected StringArray updateTypes; + @XmlElement(name = "date_last_update", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar dateLastUpdate; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the updateTypes property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getUpdateTypes() { + return updateTypes; + } + + /** + * Sets the value of the updateTypes property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setUpdateTypes(StringArray value) { + this.updateTypes = value; + } + + /** + * Gets the value of the dateLastUpdate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDateLastUpdate() { + return dateLastUpdate; + } + + /** + * Sets the value of the dateLastUpdate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDateLastUpdate(XMLGregorianCalendar value) { + this.dateLastUpdate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReferenceArray.java new file mode 100644 index 0000000..566d40f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KvkUpdateReferenceArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KvkUpdateReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}KvkUpdateReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KvkUpdateReferenceArray", propOrder = { + "item" +}) +public class KvkUpdateReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link KvkUpdateReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReferencePagedResult.java new file mode 100644 index 0000000..45c717f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReferencePagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for KvkUpdateReferencePagedResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="KvkUpdateReferencePagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}KvkUpdateReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "KvkUpdateReferencePagedResult", propOrder = { + +}) +public class KvkUpdateReferencePagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected KvkUpdateReferenceArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link KvkUpdateReferenceArray } + * + */ + public KvkUpdateReferenceArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link KvkUpdateReferenceArray } + * + */ + public void setResults(KvkUpdateReferenceArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateRemoveDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateRemoveDossierRequestType.java new file mode 100644 index 0000000..af23f1e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateRemoveDossierRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkUpdateRemoveDossierRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkUpdateRemoveDossierRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkUpdateRemoveDossierRequestType", propOrder = { + +}) +public class KvkUpdateRemoveDossierRequestType { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number", required = true) + protected String establishmentNumber; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateRemoveDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateRemoveDossierResponseType.java new file mode 100644 index 0000000..f072186 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateRemoveDossierResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for kvkUpdateRemoveDossierResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="kvkUpdateRemoveDossierResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "kvkUpdateRemoveDossierResponseType") +public class KvkUpdateRemoveDossierResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Landinrichtingsrente.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Landinrichtingsrente.java new file mode 100644 index 0000000..4282d9d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Landinrichtingsrente.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for Landinrichtingsrente complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="Landinrichtingsrente">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bedrag" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="eindjaar" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Landinrichtingsrente", propOrder = { + +}) +public class Landinrichtingsrente { + + @XmlElement(required = true) + protected String bedrag; + @XmlElement(required = true) + protected String eindjaar; + + /** + * Gets the value of the bedrag property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBedrag() { + return bedrag; + } + + /** + * Sets the value of the bedrag property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBedrag(String value) { + this.bedrag = value; + } + + /** + * Gets the value of the eindjaar property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEindjaar() { + return eindjaar; + } + + /** + * Sets the value of the eindjaar property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEindjaar(String value) { + this.eindjaar = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinates.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinates.java new file mode 100644 index 0000000..58ad818 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinates.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for LatLonCoordinates complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="LatLonCoordinates">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "LatLonCoordinates", propOrder = { + +}) +public class LatLonCoordinates { + + protected float latitude; + protected float longitude; + + /** + * Gets the value of the latitude property. + * + */ + public float getLatitude() { + return latitude; + } + + /** + * Sets the value of the latitude property. + * + */ + public void setLatitude(float value) { + this.latitude = value; + } + + /** + * Gets the value of the longitude property. + * + */ + public float getLongitude() { + return longitude; + } + + /** + * Sets the value of the longitude property. + * + */ + public void setLongitude(float value) { + this.longitude = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesArray.java new file mode 100644 index 0000000..f2504a5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for LatLonCoordinatesArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="LatLonCoordinatesArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}LatLonCoordinates" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "LatLonCoordinatesArray", propOrder = { + "item" +}) +public class LatLonCoordinatesArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link LatLonCoordinates } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesInternationalAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesInternationalAddress.java new file mode 100644 index 0000000..196b91f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesInternationalAddress.java @@ -0,0 +1,213 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for LatLonCoordinatesInternationalAddress complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="LatLonCoordinatesInternationalAddress">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country_iso2" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "LatLonCoordinatesInternationalAddress", propOrder = { + +}) +public class LatLonCoordinatesInternationalAddress { + + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String street; + @XmlElement(required = true) + protected String city; + @XmlElement(required = true) + protected String province; + @XmlElement(name = "country_iso2", required = true) + protected String countryIso2; + protected float latitude; + protected float longitude; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the province property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvince() { + return province; + } + + /** + * Sets the value of the province property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvince(String value) { + this.province = value; + } + + /** + * Gets the value of the countryIso2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryIso2() { + return countryIso2; + } + + /** + * Sets the value of the countryIso2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryIso2(String value) { + this.countryIso2 = value; + } + + /** + * Gets the value of the latitude property. + * + */ + public float getLatitude() { + return latitude; + } + + /** + * Sets the value of the latitude property. + * + */ + public void setLatitude(float value) { + this.latitude = value; + } + + /** + * Gets the value of the longitude property. + * + */ + public float getLongitude() { + return longitude; + } + + /** + * Sets the value of the longitude property. + * + */ + public void setLongitude(float value) { + this.longitude = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesInternationalAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesInternationalAddressArray.java new file mode 100644 index 0000000..1381d44 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesInternationalAddressArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for LatLonCoordinatesInternationalAddressArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="LatLonCoordinatesInternationalAddressArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}LatLonCoordinatesInternationalAddress" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "LatLonCoordinatesInternationalAddressArray", propOrder = { + "item" +}) +public class LatLonCoordinatesInternationalAddressArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link LatLonCoordinatesInternationalAddress } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesMatch.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesMatch.java new file mode 100644 index 0000000..0bd3ce7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesMatch.java @@ -0,0 +1,132 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for LatLonCoordinatesMatch complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="LatLonCoordinatesMatch">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="citymatch" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="streetmatch" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "LatLonCoordinatesMatch", propOrder = { + +}) +public class LatLonCoordinatesMatch { + + protected float latitude; + protected float longitude; + @XmlElement(required = true) + protected String citymatch; + @XmlElement(required = true) + protected String streetmatch; + + /** + * Gets the value of the latitude property. + * + */ + public float getLatitude() { + return latitude; + } + + /** + * Sets the value of the latitude property. + * + */ + public void setLatitude(float value) { + this.latitude = value; + } + + /** + * Gets the value of the longitude property. + * + */ + public float getLongitude() { + return longitude; + } + + /** + * Sets the value of the longitude property. + * + */ + public void setLongitude(float value) { + this.longitude = value; + } + + /** + * Gets the value of the citymatch property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCitymatch() { + return citymatch; + } + + /** + * Sets the value of the citymatch property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCitymatch(String value) { + this.citymatch = value; + } + + /** + * Gets the value of the streetmatch property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetmatch() { + return streetmatch; + } + + /** + * Sets the value of the streetmatch property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetmatch(String value) { + this.streetmatch = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Lid.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Lid.java new file mode 100644 index 0000000..14ddcdb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Lid.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for Lid complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="Lid">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Lid", propOrder = { + +}) +public class Lid { + + @XmlElement(required = true) + protected String id; + @XmlElement(required = true) + protected String omschrijving; + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the omschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijving() { + return omschrijving; + } + + /** + * Sets the value of the omschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijving(String value) { + this.omschrijving = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LidArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LidArray.java new file mode 100644 index 0000000..265a5a6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LidArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for LidArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="LidArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}Lid" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "LidArray", propOrder = { + "item" +}) +public class LidArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Lid } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LidLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LidLijst.java new file mode 100644 index 0000000..7974de8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LidLijst.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for LidLijst complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="LidLijst">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="leden" type="{http://www.webservices.nl/soap/}LidArray"/>
+ *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "LidLijst", propOrder = { + +}) +public class LidLijst { + + @XmlElement(required = true) + protected LidArray leden; + @XmlElement(name = "indicatie_compleet") + protected boolean indicatieCompleet; + + /** + * Gets the value of the leden property. + * + * @return + * possible object is + * {@link LidArray } + * + */ + public LidArray getLeden() { + return leden; + } + + /** + * Sets the value of the leden property. + * + * @param value + * allowed object is + * {@link LidArray } + * + */ + public void setLeden(LidArray value) { + this.leden = value; + } + + /** + * Gets the value of the indicatieCompleet property. + * + */ + public boolean isIndicatieCompleet() { + return indicatieCompleet; + } + + /** + * Sets the value of the indicatieCompleet property. + * + */ + public void setIndicatieCompleet(boolean value) { + this.indicatieCompleet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Locatie.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Locatie.java new file mode 100644 index 0000000..aea6ee1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Locatie.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for Locatie complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="Locatie">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="locatie_binnenland" type="{http://www.webservices.nl/soap/}LocatieBinnenland" minOccurs="0"/>
+ *         <element name="locatie_buitenland" type="{http://www.webservices.nl/soap/}LocatieBuitenland" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Locatie", propOrder = { + +}) +public class Locatie { + + @XmlElement(name = "locatie_binnenland") + protected LocatieBinnenland locatieBinnenland; + @XmlElement(name = "locatie_buitenland") + protected LocatieBuitenland locatieBuitenland; + + /** + * Gets the value of the locatieBinnenland property. + * + * @return + * possible object is + * {@link LocatieBinnenland } + * + */ + public LocatieBinnenland getLocatieBinnenland() { + return locatieBinnenland; + } + + /** + * Sets the value of the locatieBinnenland property. + * + * @param value + * allowed object is + * {@link LocatieBinnenland } + * + */ + public void setLocatieBinnenland(LocatieBinnenland value) { + this.locatieBinnenland = value; + } + + /** + * Gets the value of the locatieBuitenland property. + * + * @return + * possible object is + * {@link LocatieBuitenland } + * + */ + public LocatieBuitenland getLocatieBuitenland() { + return locatieBuitenland; + } + + /** + * Sets the value of the locatieBuitenland property. + * + * @param value + * allowed object is + * {@link LocatieBuitenland } + * + */ + public void setLocatieBuitenland(LocatieBuitenland value) { + this.locatieBuitenland = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenland.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenland.java new file mode 100644 index 0000000..b22911e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenland.java @@ -0,0 +1,199 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for LocatieBinnenland complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="LocatieBinnenland">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gemeente" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="straatnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="huisletter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "LocatieBinnenland", propOrder = { + +}) +public class LocatieBinnenland { + + protected String gemeente; + protected String straatnaam; + protected String postcode; + protected Integer huisnummer; + @XmlElement(name = "huisnummer_toevoeging") + protected String huisnummerToevoeging; + protected String huisletter; + + /** + * Gets the value of the gemeente property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeente() { + return gemeente; + } + + /** + * Sets the value of the gemeente property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeente(String value) { + this.gemeente = value; + } + + /** + * Gets the value of the straatnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStraatnaam() { + return straatnaam; + } + + /** + * Sets the value of the straatnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStraatnaam(String value) { + this.straatnaam = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setHuisnummer(Integer value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the huisletter property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisletter() { + return huisletter; + } + + /** + * Sets the value of the huisletter property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisletter(String value) { + this.huisletter = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenlandArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenlandArray.java new file mode 100644 index 0000000..ab9ad69 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenlandArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for LocatieBinnenlandArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="LocatieBinnenlandArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}LocatieBinnenland" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "LocatieBinnenlandArray", propOrder = { + "item" +}) +public class LocatieBinnenlandArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link LocatieBinnenland } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenlandLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenlandLijst.java new file mode 100644 index 0000000..4df953d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenlandLijst.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for LocatieBinnenlandLijst complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="LocatieBinnenlandLijst">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="locaties_binnenland" type="{http://www.webservices.nl/soap/}LocatieBinnenlandArray"/>
+ *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "LocatieBinnenlandLijst", propOrder = { + +}) +public class LocatieBinnenlandLijst { + + @XmlElement(name = "locaties_binnenland", required = true) + protected LocatieBinnenlandArray locatiesBinnenland; + @XmlElement(name = "indicatie_compleet") + protected boolean indicatieCompleet; + + /** + * Gets the value of the locatiesBinnenland property. + * + * @return + * possible object is + * {@link LocatieBinnenlandArray } + * + */ + public LocatieBinnenlandArray getLocatiesBinnenland() { + return locatiesBinnenland; + } + + /** + * Sets the value of the locatiesBinnenland property. + * + * @param value + * allowed object is + * {@link LocatieBinnenlandArray } + * + */ + public void setLocatiesBinnenland(LocatieBinnenlandArray value) { + this.locatiesBinnenland = value; + } + + /** + * Gets the value of the indicatieCompleet property. + * + */ + public boolean isIndicatieCompleet() { + return indicatieCompleet; + } + + /** + * Sets the value of the indicatieCompleet property. + * + */ + public void setIndicatieCompleet(boolean value) { + this.indicatieCompleet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBuitenland.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBuitenland.java new file mode 100644 index 0000000..5dc24f3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBuitenland.java @@ -0,0 +1,149 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for LocatieBuitenland complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="LocatieBuitenland">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="adres_buitenland1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="adres_buitenland2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="adres_buitenland3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="land" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "LocatieBuitenland", propOrder = { + +}) +public class LocatieBuitenland { + + @XmlElement(name = "adres_buitenland1") + protected String adresBuitenland1; + @XmlElement(name = "adres_buitenland2") + protected String adresBuitenland2; + @XmlElement(name = "adres_buitenland3") + protected String adresBuitenland3; + protected String land; + + /** + * Gets the value of the adresBuitenland1 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAdresBuitenland1() { + return adresBuitenland1; + } + + /** + * Sets the value of the adresBuitenland1 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAdresBuitenland1(String value) { + this.adresBuitenland1 = value; + } + + /** + * Gets the value of the adresBuitenland2 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAdresBuitenland2() { + return adresBuitenland2; + } + + /** + * Sets the value of the adresBuitenland2 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAdresBuitenland2(String value) { + this.adresBuitenland2 = value; + } + + /** + * Gets the value of the adresBuitenland3 property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAdresBuitenland3() { + return adresBuitenland3; + } + + /** + * Sets the value of the adresBuitenland3 property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAdresBuitenland3(String value) { + this.adresBuitenland3 = value; + } + + /** + * Gets the value of the land property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLand() { + return land; + } + + /** + * Sets the value of the land property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLand(String value) { + this.land = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LoginRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LoginRequestType.java new file mode 100644 index 0000000..ed76068 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LoginRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for loginRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="loginRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="username" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "loginRequestType", propOrder = { + +}) +public class LoginRequestType { + + @XmlElement(required = true) + protected String username; + @XmlElement(required = true) + protected String password; + + /** + * Gets the value of the username property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUsername() { + return username; + } + + /** + * Sets the value of the username property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUsername(String value) { + this.username = value; + } + + /** + * Gets the value of the password property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPassword() { + return password; + } + + /** + * Sets the value of the password property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPassword(String value) { + this.password = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LoginResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LoginResponseType.java new file mode 100644 index 0000000..1e0d4cb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LoginResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for loginResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="loginResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="reactid" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "loginResponseType", propOrder = { + +}) +public class LoginResponseType { + + @XmlElement(required = true) + protected String reactid; + + /** + * Gets the value of the reactid property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReactid() { + return reactid; + } + + /** + * Sets the value of the reactid property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReactid(String value) { + this.reactid = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LogoutRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LogoutRequestType.java new file mode 100644 index 0000000..57c9d07 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LogoutRequestType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for logoutRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="logoutRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "logoutRequestType") +public class LogoutRequestType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LogoutResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LogoutResponseType.java new file mode 100644 index 0000000..0996fd5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LogoutResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for logoutResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="logoutResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "logoutResponseType") +public class LogoutResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Mandeligheid.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Mandeligheid.java new file mode 100644 index 0000000..77a0d81 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Mandeligheid.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for Mandeligheid complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="Mandeligheid">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="mandelige_percelen" type="{http://www.webservices.nl/soap/}KadastraleAanduidingLijst" minOccurs="0"/>
+ *         <element name="hoofd_percelen" type="{http://www.webservices.nl/soap/}KadastraleAanduidingLijst" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Mandeligheid", propOrder = { + +}) +public class Mandeligheid { + + @XmlElement(name = "mandelige_percelen") + protected KadastraleAanduidingLijst mandeligePercelen; + @XmlElement(name = "hoofd_percelen") + protected KadastraleAanduidingLijst hoofdPercelen; + + /** + * Gets the value of the mandeligePercelen property. + * + * @return + * possible object is + * {@link KadastraleAanduidingLijst } + * + */ + public KadastraleAanduidingLijst getMandeligePercelen() { + return mandeligePercelen; + } + + /** + * Sets the value of the mandeligePercelen property. + * + * @param value + * allowed object is + * {@link KadastraleAanduidingLijst } + * + */ + public void setMandeligePercelen(KadastraleAanduidingLijst value) { + this.mandeligePercelen = value; + } + + /** + * Gets the value of the hoofdPercelen property. + * + * @return + * possible object is + * {@link KadastraleAanduidingLijst } + * + */ + public KadastraleAanduidingLijst getHoofdPercelen() { + return hoofdPercelen; + } + + /** + * Sets the value of the hoofdPercelen property. + * + * @param value + * allowed object is + * {@link KadastraleAanduidingLijst } + * + */ + public void setHoofdPercelen(KadastraleAanduidingLijst value) { + this.hoofdPercelen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewInternationalLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewInternationalLatLonRequestType.java new file mode 100644 index 0000000..71b27a7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewInternationalLatLonRequestType.java @@ -0,0 +1,159 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for mapViewInternationalLatLonRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="mapViewInternationalLatLonRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="width" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="height" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="zoom" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "mapViewInternationalLatLonRequestType", propOrder = { + +}) +public class MapViewInternationalLatLonRequestType { + + protected float latitude; + protected float longitude; + @XmlElement(required = true) + protected String format; + protected int width; + protected int height; + protected float zoom; + + /** + * Gets the value of the latitude property. + * + */ + public float getLatitude() { + return latitude; + } + + /** + * Sets the value of the latitude property. + * + */ + public void setLatitude(float value) { + this.latitude = value; + } + + /** + * Gets the value of the longitude property. + * + */ + public float getLongitude() { + return longitude; + } + + /** + * Sets the value of the longitude property. + * + */ + public void setLongitude(float value) { + this.longitude = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + + /** + * Gets the value of the width property. + * + */ + public int getWidth() { + return width; + } + + /** + * Sets the value of the width property. + * + */ + public void setWidth(int value) { + this.width = value; + } + + /** + * Gets the value of the height property. + * + */ + public int getHeight() { + return height; + } + + /** + * Sets the value of the height property. + * + */ + public void setHeight(int value) { + this.height = value; + } + + /** + * Gets the value of the zoom property. + * + */ + public float getZoom() { + return zoom; + } + + /** + * Sets the value of the zoom property. + * + */ + public void setZoom(float value) { + this.zoom = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewInternationalLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewInternationalLatLonResponseType.java new file mode 100644 index 0000000..03a1c26 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewInternationalLatLonResponseType.java @@ -0,0 +1,67 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for mapViewInternationalLatLonResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="mapViewInternationalLatLonResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="image" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "mapViewInternationalLatLonResponseType", propOrder = { + +}) +public class MapViewInternationalLatLonResponseType { + + @XmlElement(required = true) + protected byte[] image; + + /** + * Gets the value of the image property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getImage() { + return image; + } + + /** + * Sets the value of the image property. + * + * @param value + * allowed object is + * byte[] + */ + public void setImage(byte[] value) { + this.image = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewLatLonRequestType.java new file mode 100644 index 0000000..3778d5d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewLatLonRequestType.java @@ -0,0 +1,188 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for mapViewLatLonRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="mapViewLatLonRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="center_lat" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="center_lon" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="extra_latlon" type="{http://www.webservices.nl/soap/}LatLonCoordinatesArray"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="width" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="height" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="zoom" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "mapViewLatLonRequestType", propOrder = { + +}) +public class MapViewLatLonRequestType { + + @XmlElement(name = "center_lat") + protected float centerLat; + @XmlElement(name = "center_lon") + protected float centerLon; + @XmlElement(name = "extra_latlon", required = true) + protected LatLonCoordinatesArray extraLatlon; + @XmlElement(required = true) + protected String format; + protected int width; + protected int height; + protected float zoom; + + /** + * Gets the value of the centerLat property. + * + */ + public float getCenterLat() { + return centerLat; + } + + /** + * Sets the value of the centerLat property. + * + */ + public void setCenterLat(float value) { + this.centerLat = value; + } + + /** + * Gets the value of the centerLon property. + * + */ + public float getCenterLon() { + return centerLon; + } + + /** + * Sets the value of the centerLon property. + * + */ + public void setCenterLon(float value) { + this.centerLon = value; + } + + /** + * Gets the value of the extraLatlon property. + * + * @return + * possible object is + * {@link LatLonCoordinatesArray } + * + */ + public LatLonCoordinatesArray getExtraLatlon() { + return extraLatlon; + } + + /** + * Sets the value of the extraLatlon property. + * + * @param value + * allowed object is + * {@link LatLonCoordinatesArray } + * + */ + public void setExtraLatlon(LatLonCoordinatesArray value) { + this.extraLatlon = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + + /** + * Gets the value of the width property. + * + */ + public int getWidth() { + return width; + } + + /** + * Sets the value of the width property. + * + */ + public void setWidth(int value) { + this.width = value; + } + + /** + * Gets the value of the height property. + * + */ + public int getHeight() { + return height; + } + + /** + * Sets the value of the height property. + * + */ + public void setHeight(int value) { + this.height = value; + } + + /** + * Gets the value of the zoom property. + * + */ + public float getZoom() { + return zoom; + } + + /** + * Sets the value of the zoom property. + * + */ + public void setZoom(float value) { + this.zoom = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewLatLonResponseType.java new file mode 100644 index 0000000..f69084a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewLatLonResponseType.java @@ -0,0 +1,67 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for mapViewLatLonResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="mapViewLatLonResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="image" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "mapViewLatLonResponseType", propOrder = { + +}) +public class MapViewLatLonResponseType { + + @XmlElement(required = true) + protected byte[] image; + + /** + * Gets the value of the image property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getImage() { + return image; + } + + /** + * Sets the value of the image property. + * + * @param value + * allowed object is + * byte[] + */ + public void setImage(byte[] value) { + this.image = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewPostcodeV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewPostcodeV2RequestType.java new file mode 100644 index 0000000..8499c25 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewPostcodeV2RequestType.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for mapViewPostcodeV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="mapViewPostcodeV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="width" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="height" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="zoom" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "mapViewPostcodeV2RequestType", propOrder = { + +}) +public class MapViewPostcodeV2RequestType { + + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String format; + protected int width; + protected int height; + protected float zoom; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + + /** + * Gets the value of the width property. + * + */ + public int getWidth() { + return width; + } + + /** + * Sets the value of the width property. + * + */ + public void setWidth(int value) { + this.width = value; + } + + /** + * Gets the value of the height property. + * + */ + public int getHeight() { + return height; + } + + /** + * Sets the value of the height property. + * + */ + public void setHeight(int value) { + this.height = value; + } + + /** + * Gets the value of the zoom property. + * + */ + public float getZoom() { + return zoom; + } + + /** + * Sets the value of the zoom property. + * + */ + public void setZoom(float value) { + this.zoom = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewPostcodeV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewPostcodeV2ResponseType.java new file mode 100644 index 0000000..c03a6f1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewPostcodeV2ResponseType.java @@ -0,0 +1,67 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for mapViewPostcodeV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="mapViewPostcodeV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="image" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "mapViewPostcodeV2ResponseType", propOrder = { + +}) +public class MapViewPostcodeV2ResponseType { + + @XmlElement(required = true) + protected byte[] image; + + /** + * Gets the value of the image property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getImage() { + return image; + } + + /** + * Sets the value of the image property. + * + * @param value + * allowed object is + * byte[] + */ + public void setImage(byte[] value) { + this.image = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewRDRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewRDRequestType.java new file mode 100644 index 0000000..7a95e18 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewRDRequestType.java @@ -0,0 +1,188 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for mapViewRDRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="mapViewRDRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="center_x" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="center_y" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="extra_xy" type="{http://www.webservices.nl/soap/}RDCoordinatesArray"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="width" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="height" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="zoom" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "mapViewRDRequestType", propOrder = { + +}) +public class MapViewRDRequestType { + + @XmlElement(name = "center_x") + protected int centerX; + @XmlElement(name = "center_y") + protected int centerY; + @XmlElement(name = "extra_xy", required = true) + protected RDCoordinatesArray extraXy; + @XmlElement(required = true) + protected String format; + protected int width; + protected int height; + protected float zoom; + + /** + * Gets the value of the centerX property. + * + */ + public int getCenterX() { + return centerX; + } + + /** + * Sets the value of the centerX property. + * + */ + public void setCenterX(int value) { + this.centerX = value; + } + + /** + * Gets the value of the centerY property. + * + */ + public int getCenterY() { + return centerY; + } + + /** + * Sets the value of the centerY property. + * + */ + public void setCenterY(int value) { + this.centerY = value; + } + + /** + * Gets the value of the extraXy property. + * + * @return + * possible object is + * {@link RDCoordinatesArray } + * + */ + public RDCoordinatesArray getExtraXy() { + return extraXy; + } + + /** + * Sets the value of the extraXy property. + * + * @param value + * allowed object is + * {@link RDCoordinatesArray } + * + */ + public void setExtraXy(RDCoordinatesArray value) { + this.extraXy = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + + /** + * Gets the value of the width property. + * + */ + public int getWidth() { + return width; + } + + /** + * Sets the value of the width property. + * + */ + public void setWidth(int value) { + this.width = value; + } + + /** + * Gets the value of the height property. + * + */ + public int getHeight() { + return height; + } + + /** + * Sets the value of the height property. + * + */ + public void setHeight(int value) { + this.height = value; + } + + /** + * Gets the value of the zoom property. + * + */ + public float getZoom() { + return zoom; + } + + /** + * Sets the value of the zoom property. + * + */ + public void setZoom(float value) { + this.zoom = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewRDResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewRDResponseType.java new file mode 100644 index 0000000..fff94be --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewRDResponseType.java @@ -0,0 +1,67 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for mapViewRDResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="mapViewRDResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="image" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "mapViewRDResponseType", propOrder = { + +}) +public class MapViewRDResponseType { + + @XmlElement(required = true) + protected byte[] image; + + /** + * Gets the value of the image property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getImage() { + return image; + } + + /** + * Sets the value of the image property. + * + * @param value + * allowed object is + * byte[] + */ + public void setImage(byte[] value) { + this.image = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaElementDefinition.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaElementDefinition.java new file mode 100644 index 0000000..3695979 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaElementDefinition.java @@ -0,0 +1,221 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for MetaElementDefinition complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="MetaElementDefinition">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="documentation_url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="required" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="validations" type="{http://www.webservices.nl/soap/}MetaValidationDefinitionArray" minOccurs="0"/>
+ *         <element name="default_value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MetaElementDefinition", propOrder = { + +}) +public class MetaElementDefinition { + + @XmlElement(required = true) + protected String name; + @XmlElement(required = true) + protected String type; + @XmlElement(required = true) + protected String description; + @XmlElement(name = "documentation_url") + protected String documentationUrl; + protected boolean required; + protected MetaValidationDefinitionArray validations; + @XmlElement(name = "default_value") + protected String defaultValue; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the documentationUrl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocumentationUrl() { + return documentationUrl; + } + + /** + * Sets the value of the documentationUrl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocumentationUrl(String value) { + this.documentationUrl = value; + } + + /** + * Gets the value of the required property. + * + */ + public boolean isRequired() { + return required; + } + + /** + * Sets the value of the required property. + * + */ + public void setRequired(boolean value) { + this.required = value; + } + + /** + * Gets the value of the validations property. + * + * @return + * possible object is + * {@link MetaValidationDefinitionArray } + * + */ + public MetaValidationDefinitionArray getValidations() { + return validations; + } + + /** + * Sets the value of the validations property. + * + * @param value + * allowed object is + * {@link MetaValidationDefinitionArray } + * + */ + public void setValidations(MetaValidationDefinitionArray value) { + this.validations = value; + } + + /** + * Gets the value of the defaultValue property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDefaultValue() { + return defaultValue; + } + + /** + * Sets the value of the defaultValue property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDefaultValue(String value) { + this.defaultValue = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaElementDefinitionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaElementDefinitionArray.java new file mode 100644 index 0000000..e4916ce --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaElementDefinitionArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for MetaElementDefinitionArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="MetaElementDefinitionArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}MetaElementDefinition" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MetaElementDefinitionArray", propOrder = { + "item" +}) +public class MetaElementDefinitionArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link MetaElementDefinition } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetMethodRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetMethodRequestType.java new file mode 100644 index 0000000..42f0670 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetMethodRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for metaGetMethodRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="metaGetMethodRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="service_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="method_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "metaGetMethodRequestType", propOrder = { + +}) +public class MetaGetMethodRequestType { + + @XmlElement(name = "service_name", required = true) + protected String serviceName; + @XmlElement(name = "method_name", required = true) + protected String methodName; + + /** + * Gets the value of the serviceName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getServiceName() { + return serviceName; + } + + /** + * Sets the value of the serviceName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setServiceName(String value) { + this.serviceName = value; + } + + /** + * Gets the value of the methodName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMethodName() { + return methodName; + } + + /** + * Sets the value of the methodName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMethodName(String value) { + this.methodName = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetMethodResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetMethodResponseType.java new file mode 100644 index 0000000..aa86dac --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetMethodResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for metaGetMethodResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="metaGetMethodResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}MetaMethodDefinition"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "metaGetMethodResponseType", propOrder = { + +}) +public class MetaGetMethodResponseType { + + @XmlElement(required = true) + protected MetaMethodDefinition out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link MetaMethodDefinition } + * + */ + public MetaMethodDefinition getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link MetaMethodDefinition } + * + */ + public void setOut(MetaMethodDefinition value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServiceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServiceRequestType.java new file mode 100644 index 0000000..9bcc1cf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServiceRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for metaGetServiceRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="metaGetServiceRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="service_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "metaGetServiceRequestType", propOrder = { + +}) +public class MetaGetServiceRequestType { + + @XmlElement(name = "service_name", required = true) + protected String serviceName; + + /** + * Gets the value of the serviceName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getServiceName() { + return serviceName; + } + + /** + * Sets the value of the serviceName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setServiceName(String value) { + this.serviceName = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServiceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServiceResponseType.java new file mode 100644 index 0000000..7a54076 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServiceResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for metaGetServiceResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="metaGetServiceResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}MetaServiceDefinition"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "metaGetServiceResponseType", propOrder = { + +}) +public class MetaGetServiceResponseType { + + @XmlElement(required = true) + protected MetaServiceDefinition out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link MetaServiceDefinition } + * + */ + public MetaServiceDefinition getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link MetaServiceDefinition } + * + */ + public void setOut(MetaServiceDefinition value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServicesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServicesRequestType.java new file mode 100644 index 0000000..fdc1474 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServicesRequestType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for metaGetServicesRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="metaGetServicesRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "metaGetServicesRequestType") +public class MetaGetServicesRequestType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServicesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServicesResponseType.java new file mode 100644 index 0000000..3f6e996 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServicesResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for metaGetServicesResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="metaGetServicesResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}MetaServiceReferenceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "metaGetServicesResponseType", propOrder = { + +}) +public class MetaGetServicesResponseType { + + @XmlElement(required = true) + protected MetaServiceReferenceArray out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link MetaServiceReferenceArray } + * + */ + public MetaServiceReferenceArray getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link MetaServiceReferenceArray } + * + */ + public void setOut(MetaServiceReferenceArray value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodDefinition.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodDefinition.java new file mode 100644 index 0000000..6dc4fb3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodDefinition.java @@ -0,0 +1,294 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for MetaMethodDefinition complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="MetaMethodDefinition">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="service_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="deprecated" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="latest" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="documentation" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="documentation_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="input_elements" type="{http://www.webservices.nl/soap/}MetaElementDefinitionArray" minOccurs="0"/>
+ *         <element name="output_elements" type="{http://www.webservices.nl/soap/}MetaElementDefinitionArray" minOccurs="0"/>
+ *         <element name="related_methods" type="{http://www.webservices.nl/soap/}MetaMethodReferenceArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MetaMethodDefinition", propOrder = { + +}) +public class MetaMethodDefinition { + + @XmlElement(required = true) + protected String name; + @XmlElement(name = "service_name", required = true) + protected String serviceName; + protected boolean deprecated; + protected boolean latest; + @XmlElement(required = true) + protected String description; + @XmlElement(required = true) + protected String documentation; + @XmlElement(name = "documentation_url", required = true) + protected String documentationUrl; + @XmlElement(name = "input_elements") + protected MetaElementDefinitionArray inputElements; + @XmlElement(name = "output_elements") + protected MetaElementDefinitionArray outputElements; + @XmlElement(name = "related_methods") + protected MetaMethodReferenceArray relatedMethods; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the serviceName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getServiceName() { + return serviceName; + } + + /** + * Sets the value of the serviceName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setServiceName(String value) { + this.serviceName = value; + } + + /** + * Gets the value of the deprecated property. + * + */ + public boolean isDeprecated() { + return deprecated; + } + + /** + * Sets the value of the deprecated property. + * + */ + public void setDeprecated(boolean value) { + this.deprecated = value; + } + + /** + * Gets the value of the latest property. + * + */ + public boolean isLatest() { + return latest; + } + + /** + * Sets the value of the latest property. + * + */ + public void setLatest(boolean value) { + this.latest = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the documentation property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocumentation() { + return documentation; + } + + /** + * Sets the value of the documentation property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocumentation(String value) { + this.documentation = value; + } + + /** + * Gets the value of the documentationUrl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocumentationUrl() { + return documentationUrl; + } + + /** + * Sets the value of the documentationUrl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocumentationUrl(String value) { + this.documentationUrl = value; + } + + /** + * Gets the value of the inputElements property. + * + * @return + * possible object is + * {@link MetaElementDefinitionArray } + * + */ + public MetaElementDefinitionArray getInputElements() { + return inputElements; + } + + /** + * Sets the value of the inputElements property. + * + * @param value + * allowed object is + * {@link MetaElementDefinitionArray } + * + */ + public void setInputElements(MetaElementDefinitionArray value) { + this.inputElements = value; + } + + /** + * Gets the value of the outputElements property. + * + * @return + * possible object is + * {@link MetaElementDefinitionArray } + * + */ + public MetaElementDefinitionArray getOutputElements() { + return outputElements; + } + + /** + * Sets the value of the outputElements property. + * + * @param value + * allowed object is + * {@link MetaElementDefinitionArray } + * + */ + public void setOutputElements(MetaElementDefinitionArray value) { + this.outputElements = value; + } + + /** + * Gets the value of the relatedMethods property. + * + * @return + * possible object is + * {@link MetaMethodReferenceArray } + * + */ + public MetaMethodReferenceArray getRelatedMethods() { + return relatedMethods; + } + + /** + * Sets the value of the relatedMethods property. + * + * @param value + * allowed object is + * {@link MetaMethodReferenceArray } + * + */ + public void setRelatedMethods(MetaMethodReferenceArray value) { + this.relatedMethods = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodDefinitionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodDefinitionArray.java new file mode 100644 index 0000000..fb78c16 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodDefinitionArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for MetaMethodDefinitionArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="MetaMethodDefinitionArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}MetaMethodDefinition" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MetaMethodDefinitionArray", propOrder = { + "item" +}) +public class MetaMethodDefinitionArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link MetaMethodDefinition } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodReference.java new file mode 100644 index 0000000..a012f76 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodReference.java @@ -0,0 +1,158 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for MetaMethodReference complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="MetaMethodReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="deprecated" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="latest" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="documentation_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MetaMethodReference", propOrder = { + +}) +public class MetaMethodReference { + + @XmlElement(required = true) + protected String name; + protected boolean deprecated; + protected boolean latest; + protected String description; + @XmlElement(name = "documentation_url", required = true) + protected String documentationUrl; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the deprecated property. + * + */ + public boolean isDeprecated() { + return deprecated; + } + + /** + * Sets the value of the deprecated property. + * + */ + public void setDeprecated(boolean value) { + this.deprecated = value; + } + + /** + * Gets the value of the latest property. + * + */ + public boolean isLatest() { + return latest; + } + + /** + * Sets the value of the latest property. + * + */ + public void setLatest(boolean value) { + this.latest = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the documentationUrl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocumentationUrl() { + return documentationUrl; + } + + /** + * Sets the value of the documentationUrl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocumentationUrl(String value) { + this.documentationUrl = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodReferenceArray.java new file mode 100644 index 0000000..ae88f0e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for MetaMethodReferenceArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="MetaMethodReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}MetaMethodReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MetaMethodReferenceArray", propOrder = { + "item" +}) +public class MetaMethodReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link MetaMethodReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaProtocolDefinition.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaProtocolDefinition.java new file mode 100644 index 0000000..7bb9dca --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaProtocolDefinition.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for MetaProtocolDefinition complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="MetaProtocolDefinition">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="documentation_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="location" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MetaProtocolDefinition", propOrder = { + +}) +public class MetaProtocolDefinition { + + @XmlElement(name = "documentation_url", required = true) + protected String documentationUrl; + @XmlElement(required = true) + protected String location; + @XmlElement(required = true) + protected String type; + + /** + * Gets the value of the documentationUrl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocumentationUrl() { + return documentationUrl; + } + + /** + * Sets the value of the documentationUrl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocumentationUrl(String value) { + this.documentationUrl = value; + } + + /** + * Gets the value of the location property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLocation() { + return location; + } + + /** + * Sets the value of the location property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLocation(String value) { + this.location = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaProtocolDefinitionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaProtocolDefinitionArray.java new file mode 100644 index 0000000..20a360b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaProtocolDefinitionArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for MetaProtocolDefinitionArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="MetaProtocolDefinitionArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}MetaProtocolDefinition" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MetaProtocolDefinitionArray", propOrder = { + "item" +}) +public class MetaProtocolDefinitionArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link MetaProtocolDefinition } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceDefinition.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceDefinition.java new file mode 100644 index 0000000..c89f081 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceDefinition.java @@ -0,0 +1,227 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for MetaServiceDefinition complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="MetaServiceDefinition">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="documentation_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="methods" type="{http://www.webservices.nl/soap/}MetaMethodReferenceArray" minOccurs="0"/>
+ *         <element name="protocols" type="{http://www.webservices.nl/soap/}MetaProtocolDefinitionArray" minOccurs="0"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MetaServiceDefinition", propOrder = { + +}) +public class MetaServiceDefinition { + + @XmlElement(required = true) + protected String name; + @XmlElement(required = true) + protected String category; + protected String description; + @XmlElement(name = "documentation_url", required = true) + protected String documentationUrl; + protected MetaMethodReferenceArray methods; + protected MetaProtocolDefinitionArray protocols; + protected String status; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the category property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCategory() { + return category; + } + + /** + * Sets the value of the category property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCategory(String value) { + this.category = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the documentationUrl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocumentationUrl() { + return documentationUrl; + } + + /** + * Sets the value of the documentationUrl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocumentationUrl(String value) { + this.documentationUrl = value; + } + + /** + * Gets the value of the methods property. + * + * @return + * possible object is + * {@link MetaMethodReferenceArray } + * + */ + public MetaMethodReferenceArray getMethods() { + return methods; + } + + /** + * Sets the value of the methods property. + * + * @param value + * allowed object is + * {@link MetaMethodReferenceArray } + * + */ + public void setMethods(MetaMethodReferenceArray value) { + this.methods = value; + } + + /** + * Gets the value of the protocols property. + * + * @return + * possible object is + * {@link MetaProtocolDefinitionArray } + * + */ + public MetaProtocolDefinitionArray getProtocols() { + return protocols; + } + + /** + * Sets the value of the protocols property. + * + * @param value + * allowed object is + * {@link MetaProtocolDefinitionArray } + * + */ + public void setProtocols(MetaProtocolDefinitionArray value) { + this.protocols = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceDefinitionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceDefinitionArray.java new file mode 100644 index 0000000..62fc554 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceDefinitionArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for MetaServiceDefinitionArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="MetaServiceDefinitionArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}MetaServiceDefinition" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MetaServiceDefinitionArray", propOrder = { + "item" +}) +public class MetaServiceDefinitionArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link MetaServiceDefinition } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceReference.java new file mode 100644 index 0000000..9129b26 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceReference.java @@ -0,0 +1,176 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for MetaServiceReference complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="MetaServiceReference">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="documentation_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MetaServiceReference", propOrder = { + +}) +public class MetaServiceReference { + + @XmlElement(required = true) + protected String name; + @XmlElement(required = true) + protected String category; + protected String description; + @XmlElement(name = "documentation_url", required = true) + protected String documentationUrl; + @XmlElement(required = true) + protected String status; + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the category property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCategory() { + return category; + } + + /** + * Sets the value of the category property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCategory(String value) { + this.category = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the documentationUrl property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDocumentationUrl() { + return documentationUrl; + } + + /** + * Sets the value of the documentationUrl property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDocumentationUrl(String value) { + this.documentationUrl = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceReferenceArray.java new file mode 100644 index 0000000..753bffc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceReferenceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for MetaServiceReferenceArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="MetaServiceReferenceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}MetaServiceReference" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MetaServiceReferenceArray", propOrder = { + "item" +}) +public class MetaServiceReferenceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link MetaServiceReference } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaValidationDefinition.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaValidationDefinition.java new file mode 100644 index 0000000..e17823c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaValidationDefinition.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for MetaValidationDefinition complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="MetaValidationDefinition">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MetaValidationDefinition", propOrder = { + +}) +public class MetaValidationDefinition { + + @XmlElement(required = true) + protected String type; + @XmlElement(required = true) + protected String value; + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the value property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getValue() { + return value; + } + + /** + * Sets the value of the value property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setValue(String value) { + this.value = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaValidationDefinitionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaValidationDefinitionArray.java new file mode 100644 index 0000000..b7b06a1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaValidationDefinitionArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for MetaValidationDefinitionArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="MetaValidationDefinitionArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}MetaValidationDefinition" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "MetaValidationDefinitionArray", propOrder = { + "item" +}) +public class MetaValidationDefinitionArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link MetaValidationDefinition } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NatuurlijkPersoon.java new file mode 100644 index 0000000..56ec7c1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NatuurlijkPersoon.java @@ -0,0 +1,322 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for NatuurlijkPersoon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="NatuurlijkPersoon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="voorvoegsel_geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="voornamen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="geslacht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="geboorteplaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="geboortedatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="datum_overlijden" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="indicatie_overleden" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indicatie_conform_gba" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="relatie_partnerid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="omschrijving_relatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NatuurlijkPersoon", propOrder = { + +}) +public class NatuurlijkPersoon { + + protected String geslachtsnaam; + @XmlElement(name = "voorvoegsel_geslachtsnaam") + protected String voorvoegselGeslachtsnaam; + protected String voornamen; + protected String geslacht; + protected String geboorteplaats; + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar geboortedatum; + @XmlElement(name = "datum_overlijden") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar datumOverlijden; + @XmlElement(name = "indicatie_overleden") + protected boolean indicatieOverleden; + @XmlElement(name = "indicatie_conform_gba") + protected boolean indicatieConformGba; + @XmlElement(name = "relatie_partnerid") + protected String relatiePartnerid; + @XmlElement(name = "omschrijving_relatie") + protected String omschrijvingRelatie; + + /** + * Gets the value of the geslachtsnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeslachtsnaam() { + return geslachtsnaam; + } + + /** + * Sets the value of the geslachtsnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeslachtsnaam(String value) { + this.geslachtsnaam = value; + } + + /** + * Gets the value of the voorvoegselGeslachtsnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVoorvoegselGeslachtsnaam() { + return voorvoegselGeslachtsnaam; + } + + /** + * Sets the value of the voorvoegselGeslachtsnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVoorvoegselGeslachtsnaam(String value) { + this.voorvoegselGeslachtsnaam = value; + } + + /** + * Gets the value of the voornamen property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVoornamen() { + return voornamen; + } + + /** + * Sets the value of the voornamen property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVoornamen(String value) { + this.voornamen = value; + } + + /** + * Gets the value of the geslacht property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeslacht() { + return geslacht; + } + + /** + * Sets the value of the geslacht property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeslacht(String value) { + this.geslacht = value; + } + + /** + * Gets the value of the geboorteplaats property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeboorteplaats() { + return geboorteplaats; + } + + /** + * Sets the value of the geboorteplaats property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeboorteplaats(String value) { + this.geboorteplaats = value; + } + + /** + * Gets the value of the geboortedatum property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGeboortedatum() { + return geboortedatum; + } + + /** + * Sets the value of the geboortedatum property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGeboortedatum(XMLGregorianCalendar value) { + this.geboortedatum = value; + } + + /** + * Gets the value of the datumOverlijden property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDatumOverlijden() { + return datumOverlijden; + } + + /** + * Sets the value of the datumOverlijden property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDatumOverlijden(XMLGregorianCalendar value) { + this.datumOverlijden = value; + } + + /** + * Gets the value of the indicatieOverleden property. + * + */ + public boolean isIndicatieOverleden() { + return indicatieOverleden; + } + + /** + * Sets the value of the indicatieOverleden property. + * + */ + public void setIndicatieOverleden(boolean value) { + this.indicatieOverleden = value; + } + + /** + * Gets the value of the indicatieConformGba property. + * + */ + public boolean isIndicatieConformGba() { + return indicatieConformGba; + } + + /** + * Sets the value of the indicatieConformGba property. + * + */ + public void setIndicatieConformGba(boolean value) { + this.indicatieConformGba = value; + } + + /** + * Gets the value of the relatiePartnerid property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRelatiePartnerid() { + return relatiePartnerid; + } + + /** + * Sets the value of the relatiePartnerid property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRelatiePartnerid(String value) { + this.relatiePartnerid = value; + } + + /** + * Gets the value of the omschrijvingRelatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijvingRelatie() { + return omschrijvingRelatie; + } + + /** + * Sets the value of the omschrijvingRelatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijvingRelatie(String value) { + this.omschrijvingRelatie = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NatuurlijkPersoonV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NatuurlijkPersoonV2.java new file mode 100644 index 0000000..b6d5d55 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NatuurlijkPersoonV2.java @@ -0,0 +1,376 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for NatuurlijkPersoonV2 complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="NatuurlijkPersoonV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="adellijke_titel_geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="voorvoegsel_geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="adellijke_titel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="voornamen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="geslacht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="geboorteplaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="geboortedatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="datum_overlijden" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="indicatie_overleden" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indicatie_conform_gba" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="relatie_partnerid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="omschrijving_relatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NatuurlijkPersoonV2", propOrder = { + +}) +public class NatuurlijkPersoonV2 { + + @XmlElement(name = "adellijke_titel_geslachtsnaam") + protected String adellijkeTitelGeslachtsnaam; + protected String geslachtsnaam; + @XmlElement(name = "voorvoegsel_geslachtsnaam") + protected String voorvoegselGeslachtsnaam; + @XmlElement(name = "adellijke_titel") + protected String adellijkeTitel; + protected String voornamen; + protected String geslacht; + protected String geboorteplaats; + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar geboortedatum; + @XmlElement(name = "datum_overlijden") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar datumOverlijden; + @XmlElement(name = "indicatie_overleden") + protected boolean indicatieOverleden; + @XmlElement(name = "indicatie_conform_gba") + protected boolean indicatieConformGba; + @XmlElement(name = "relatie_partnerid") + protected String relatiePartnerid; + @XmlElement(name = "omschrijving_relatie") + protected String omschrijvingRelatie; + + /** + * Gets the value of the adellijkeTitelGeslachtsnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAdellijkeTitelGeslachtsnaam() { + return adellijkeTitelGeslachtsnaam; + } + + /** + * Sets the value of the adellijkeTitelGeslachtsnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAdellijkeTitelGeslachtsnaam(String value) { + this.adellijkeTitelGeslachtsnaam = value; + } + + /** + * Gets the value of the geslachtsnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeslachtsnaam() { + return geslachtsnaam; + } + + /** + * Sets the value of the geslachtsnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeslachtsnaam(String value) { + this.geslachtsnaam = value; + } + + /** + * Gets the value of the voorvoegselGeslachtsnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVoorvoegselGeslachtsnaam() { + return voorvoegselGeslachtsnaam; + } + + /** + * Sets the value of the voorvoegselGeslachtsnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVoorvoegselGeslachtsnaam(String value) { + this.voorvoegselGeslachtsnaam = value; + } + + /** + * Gets the value of the adellijkeTitel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAdellijkeTitel() { + return adellijkeTitel; + } + + /** + * Sets the value of the adellijkeTitel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAdellijkeTitel(String value) { + this.adellijkeTitel = value; + } + + /** + * Gets the value of the voornamen property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVoornamen() { + return voornamen; + } + + /** + * Sets the value of the voornamen property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVoornamen(String value) { + this.voornamen = value; + } + + /** + * Gets the value of the geslacht property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeslacht() { + return geslacht; + } + + /** + * Sets the value of the geslacht property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeslacht(String value) { + this.geslacht = value; + } + + /** + * Gets the value of the geboorteplaats property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeboorteplaats() { + return geboorteplaats; + } + + /** + * Sets the value of the geboorteplaats property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeboorteplaats(String value) { + this.geboorteplaats = value; + } + + /** + * Gets the value of the geboortedatum property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getGeboortedatum() { + return geboortedatum; + } + + /** + * Sets the value of the geboortedatum property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setGeboortedatum(XMLGregorianCalendar value) { + this.geboortedatum = value; + } + + /** + * Gets the value of the datumOverlijden property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDatumOverlijden() { + return datumOverlijden; + } + + /** + * Sets the value of the datumOverlijden property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDatumOverlijden(XMLGregorianCalendar value) { + this.datumOverlijden = value; + } + + /** + * Gets the value of the indicatieOverleden property. + * + */ + public boolean isIndicatieOverleden() { + return indicatieOverleden; + } + + /** + * Sets the value of the indicatieOverleden property. + * + */ + public void setIndicatieOverleden(boolean value) { + this.indicatieOverleden = value; + } + + /** + * Gets the value of the indicatieConformGba property. + * + */ + public boolean isIndicatieConformGba() { + return indicatieConformGba; + } + + /** + * Sets the value of the indicatieConformGba property. + * + */ + public void setIndicatieConformGba(boolean value) { + this.indicatieConformGba = value; + } + + /** + * Gets the value of the relatiePartnerid property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRelatiePartnerid() { + return relatiePartnerid; + } + + /** + * Sets the value of the relatiePartnerid property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRelatiePartnerid(String value) { + this.relatiePartnerid = value; + } + + /** + * Gets the value of the omschrijvingRelatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijvingRelatie() { + return omschrijvingRelatie; + } + + /** + * Sets the value of the omschrijvingRelatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijvingRelatie(String value) { + this.omschrijvingRelatie = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoEstimateValueRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoEstimateValueRequestType.java new file mode 100644 index 0000000..a078e24 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoEstimateValueRequestType.java @@ -0,0 +1,204 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for nbwoEstimateValueRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="nbwoEstimateValueRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="prijspeil_datum" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="woningtype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="inhoud" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="grootte" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "nbwoEstimateValueRequestType", propOrder = { + +}) +public class NbwoEstimateValueRequestType { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + @XmlElement(name = "prijspeil_datum", required = true) + protected String prijspeilDatum; + @XmlElement(required = true) + protected String woningtype; + protected int inhoud; + protected int grootte; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the prijspeilDatum property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrijspeilDatum() { + return prijspeilDatum; + } + + /** + * Sets the value of the prijspeilDatum property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrijspeilDatum(String value) { + this.prijspeilDatum = value; + } + + /** + * Gets the value of the woningtype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWoningtype() { + return woningtype; + } + + /** + * Sets the value of the woningtype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWoningtype(String value) { + this.woningtype = value; + } + + /** + * Gets the value of the inhoud property. + * + */ + public int getInhoud() { + return inhoud; + } + + /** + * Sets the value of the inhoud property. + * + */ + public void setInhoud(int value) { + this.inhoud = value; + } + + /** + * Gets the value of the grootte property. + * + */ + public int getGrootte() { + return grootte; + } + + /** + * Sets the value of the grootte property. + * + */ + public void setGrootte(int value) { + this.grootte = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoEstimateValueResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoEstimateValueResponseType.java new file mode 100644 index 0000000..b448ba4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoEstimateValueResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for nbwoEstimateValueResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="nbwoEstimateValueResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}NbwoWaarde"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "nbwoEstimateValueResponseType", propOrder = { + +}) +public class NbwoEstimateValueResponseType { + + @XmlElement(required = true) + protected NbwoWaarde out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link NbwoWaarde } + * + */ + public NbwoWaarde getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link NbwoWaarde } + * + */ + public void setOut(NbwoWaarde value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoKenmerkenModelResultaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoKenmerkenModelResultaat.java new file mode 100644 index 0000000..5d25485 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoKenmerkenModelResultaat.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for NbwoKenmerkenModelResultaat complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="NbwoKenmerkenModelResultaat">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="waarde" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="betrouwbaarheid" type="{http://www.w3.org/2001/XMLSchema}double"/>
+ *         <element name="aantal" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NbwoKenmerkenModelResultaat", propOrder = { + +}) +public class NbwoKenmerkenModelResultaat { + + protected int waarde; + protected double betrouwbaarheid; + protected int aantal; + + /** + * Gets the value of the waarde property. + * + */ + public int getWaarde() { + return waarde; + } + + /** + * Sets the value of the waarde property. + * + */ + public void setWaarde(int value) { + this.waarde = value; + } + + /** + * Gets the value of the betrouwbaarheid property. + * + */ + public double getBetrouwbaarheid() { + return betrouwbaarheid; + } + + /** + * Sets the value of the betrouwbaarheid property. + * + */ + public void setBetrouwbaarheid(double value) { + this.betrouwbaarheid = value; + } + + /** + * Gets the value of the aantal property. + * + */ + public int getAantal() { + return aantal; + } + + /** + * Sets the value of the aantal property. + * + */ + public void setAantal(int value) { + this.aantal = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoPostcodeStraatModelResultaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoPostcodeStraatModelResultaat.java new file mode 100644 index 0000000..626d794 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoPostcodeStraatModelResultaat.java @@ -0,0 +1,207 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for NbwoPostcodeStraatModelResultaat complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="NbwoPostcodeStraatModelResultaat">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="waarde" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="aantal" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="standaard_deviatie" type="{http://www.w3.org/2001/XMLSchema}double"/>
+ *         <element name="straat" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="plaats" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="datum_van" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="waardeverdelingen" type="{http://www.webservices.nl/soap/}NbwoWaardeVerdelingArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NbwoPostcodeStraatModelResultaat", propOrder = { + +}) +public class NbwoPostcodeStraatModelResultaat { + + protected int waarde; + protected int aantal; + @XmlElement(name = "standaard_deviatie") + protected double standaardDeviatie; + @XmlElement(required = true) + protected String straat; + @XmlElement(required = true) + protected String plaats; + @XmlElement(name = "datum_van", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar datumVan; + protected NbwoWaardeVerdelingArray waardeverdelingen; + + /** + * Gets the value of the waarde property. + * + */ + public int getWaarde() { + return waarde; + } + + /** + * Sets the value of the waarde property. + * + */ + public void setWaarde(int value) { + this.waarde = value; + } + + /** + * Gets the value of the aantal property. + * + */ + public int getAantal() { + return aantal; + } + + /** + * Sets the value of the aantal property. + * + */ + public void setAantal(int value) { + this.aantal = value; + } + + /** + * Gets the value of the standaardDeviatie property. + * + */ + public double getStandaardDeviatie() { + return standaardDeviatie; + } + + /** + * Sets the value of the standaardDeviatie property. + * + */ + public void setStandaardDeviatie(double value) { + this.standaardDeviatie = value; + } + + /** + * Gets the value of the straat property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStraat() { + return straat; + } + + /** + * Sets the value of the straat property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStraat(String value) { + this.straat = value; + } + + /** + * Gets the value of the plaats property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaats() { + return plaats; + } + + /** + * Sets the value of the plaats property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaats(String value) { + this.plaats = value; + } + + /** + * Gets the value of the datumVan property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDatumVan() { + return datumVan; + } + + /** + * Sets the value of the datumVan property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDatumVan(XMLGregorianCalendar value) { + this.datumVan = value; + } + + /** + * Gets the value of the waardeverdelingen property. + * + * @return + * possible object is + * {@link NbwoWaardeVerdelingArray } + * + */ + public NbwoWaardeVerdelingArray getWaardeverdelingen() { + return waardeverdelingen; + } + + /** + * Sets the value of the waardeverdelingen property. + * + * @param value + * allowed object is + * {@link NbwoWaardeVerdelingArray } + * + */ + public void setWaardeverdelingen(NbwoWaardeVerdelingArray value) { + this.waardeverdelingen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoVorigeVerkoopModelResultaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoVorigeVerkoopModelResultaat.java new file mode 100644 index 0000000..4fa769e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoVorigeVerkoopModelResultaat.java @@ -0,0 +1,181 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for NbwoVorigeVerkoopModelResultaat complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="NbwoVorigeVerkoopModelResultaat">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="vorige_verkoop_datum" type="{http://www.w3.org/2001/XMLSchema}date"/>
+ *         <element name="koopsom" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="vorige_verkoop_waarde" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NbwoVorigeVerkoopModelResultaat", propOrder = { + +}) +public class NbwoVorigeVerkoopModelResultaat { + + @XmlElement(required = true) + protected String postcode; + protected int huisnummer; + @XmlElement(name = "huisnummer_toevoeging", required = true) + protected String huisnummerToevoeging; + @XmlElement(name = "vorige_verkoop_datum", required = true) + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar vorigeVerkoopDatum; + protected int koopsom; + @XmlElement(name = "vorige_verkoop_waarde") + protected int vorigeVerkoopWaarde; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the huisnummer property. + * + */ + public int getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + */ + public void setHuisnummer(int value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the vorigeVerkoopDatum property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getVorigeVerkoopDatum() { + return vorigeVerkoopDatum; + } + + /** + * Sets the value of the vorigeVerkoopDatum property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setVorigeVerkoopDatum(XMLGregorianCalendar value) { + this.vorigeVerkoopDatum = value; + } + + /** + * Gets the value of the koopsom property. + * + */ + public int getKoopsom() { + return koopsom; + } + + /** + * Sets the value of the koopsom property. + * + */ + public void setKoopsom(int value) { + this.koopsom = value; + } + + /** + * Gets the value of the vorigeVerkoopWaarde property. + * + */ + public int getVorigeVerkoopWaarde() { + return vorigeVerkoopWaarde; + } + + /** + * Sets the value of the vorigeVerkoopWaarde property. + * + */ + public void setVorigeVerkoopWaarde(int value) { + this.vorigeVerkoopWaarde = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaarde.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaarde.java new file mode 100644 index 0000000..bc07028 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaarde.java @@ -0,0 +1,644 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for NbwoWaarde complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="NbwoWaarde">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="waarde" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="betrouwbaarheid" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="datum_waardebepaling" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="cultuurcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="woningtype" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="prijspeil_datum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="straat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="plaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="oppervlak" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="inhoud" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="bouwjaar" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="grootte" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="garage" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="tuin" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="monument" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="schuur" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="postcode_model_resultaat" type="{http://www.webservices.nl/soap/}NbwoPostcodeStraatModelResultaat" minOccurs="0"/>
+ *         <element name="straat_model_resultaat" type="{http://www.webservices.nl/soap/}NbwoPostcodeStraatModelResultaat" minOccurs="0"/>
+ *         <element name="vorige_verkoop_model_resultaat" type="{http://www.webservices.nl/soap/}NbwoVorigeVerkoopModelResultaat" minOccurs="0"/>
+ *         <element name="kenmerken_model_resultaat" type="{http://www.webservices.nl/soap/}NbwoKenmerkenModelResultaat" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NbwoWaarde", propOrder = { + +}) +public class NbwoWaarde { + + protected int waarde; + @XmlElement(required = true) + protected String betrouwbaarheid; + @XmlElement(name = "datum_waardebepaling") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar datumWaardebepaling; + protected String cultuurcode; + protected String woningtype; + @XmlElement(name = "prijspeil_datum") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar prijspeilDatum; + protected String straat; + protected Integer huisnummer; + @XmlElement(name = "huisnummer_toevoeging") + protected String huisnummerToevoeging; + protected String postcode; + protected String plaats; + protected Integer oppervlak; + protected Integer inhoud; + protected Integer bouwjaar; + protected Integer grootte; + protected Boolean garage; + protected Boolean tuin; + protected Boolean monument; + protected Boolean schuur; + @XmlElement(name = "postcode_model_resultaat") + protected NbwoPostcodeStraatModelResultaat postcodeModelResultaat; + @XmlElement(name = "straat_model_resultaat") + protected NbwoPostcodeStraatModelResultaat straatModelResultaat; + @XmlElement(name = "vorige_verkoop_model_resultaat") + protected NbwoVorigeVerkoopModelResultaat vorigeVerkoopModelResultaat; + @XmlElement(name = "kenmerken_model_resultaat") + protected NbwoKenmerkenModelResultaat kenmerkenModelResultaat; + + /** + * Gets the value of the waarde property. + * + */ + public int getWaarde() { + return waarde; + } + + /** + * Sets the value of the waarde property. + * + */ + public void setWaarde(int value) { + this.waarde = value; + } + + /** + * Gets the value of the betrouwbaarheid property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBetrouwbaarheid() { + return betrouwbaarheid; + } + + /** + * Sets the value of the betrouwbaarheid property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBetrouwbaarheid(String value) { + this.betrouwbaarheid = value; + } + + /** + * Gets the value of the datumWaardebepaling property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDatumWaardebepaling() { + return datumWaardebepaling; + } + + /** + * Sets the value of the datumWaardebepaling property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDatumWaardebepaling(XMLGregorianCalendar value) { + this.datumWaardebepaling = value; + } + + /** + * Gets the value of the cultuurcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCultuurcode() { + return cultuurcode; + } + + /** + * Sets the value of the cultuurcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCultuurcode(String value) { + this.cultuurcode = value; + } + + /** + * Gets the value of the woningtype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWoningtype() { + return woningtype; + } + + /** + * Sets the value of the woningtype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWoningtype(String value) { + this.woningtype = value; + } + + /** + * Gets the value of the prijspeilDatum property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getPrijspeilDatum() { + return prijspeilDatum; + } + + /** + * Sets the value of the prijspeilDatum property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setPrijspeilDatum(XMLGregorianCalendar value) { + this.prijspeilDatum = value; + } + + /** + * Gets the value of the straat property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStraat() { + return straat; + } + + /** + * Sets the value of the straat property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStraat(String value) { + this.straat = value; + } + + /** + * Gets the value of the huisnummer property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getHuisnummer() { + return huisnummer; + } + + /** + * Sets the value of the huisnummer property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setHuisnummer(Integer value) { + this.huisnummer = value; + } + + /** + * Gets the value of the huisnummerToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnummerToevoeging() { + return huisnummerToevoeging; + } + + /** + * Sets the value of the huisnummerToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnummerToevoeging(String value) { + this.huisnummerToevoeging = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the plaats property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaats() { + return plaats; + } + + /** + * Sets the value of the plaats property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaats(String value) { + this.plaats = value; + } + + /** + * Gets the value of the oppervlak property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getOppervlak() { + return oppervlak; + } + + /** + * Sets the value of the oppervlak property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setOppervlak(Integer value) { + this.oppervlak = value; + } + + /** + * Gets the value of the inhoud property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getInhoud() { + return inhoud; + } + + /** + * Sets the value of the inhoud property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setInhoud(Integer value) { + this.inhoud = value; + } + + /** + * Gets the value of the bouwjaar property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getBouwjaar() { + return bouwjaar; + } + + /** + * Sets the value of the bouwjaar property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setBouwjaar(Integer value) { + this.bouwjaar = value; + } + + /** + * Gets the value of the grootte property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getGrootte() { + return grootte; + } + + /** + * Sets the value of the grootte property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setGrootte(Integer value) { + this.grootte = value; + } + + /** + * Gets the value of the garage property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isGarage() { + return garage; + } + + /** + * Sets the value of the garage property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setGarage(Boolean value) { + this.garage = value; + } + + /** + * Gets the value of the tuin property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isTuin() { + return tuin; + } + + /** + * Sets the value of the tuin property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setTuin(Boolean value) { + this.tuin = value; + } + + /** + * Gets the value of the monument property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isMonument() { + return monument; + } + + /** + * Sets the value of the monument property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setMonument(Boolean value) { + this.monument = value; + } + + /** + * Gets the value of the schuur property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isSchuur() { + return schuur; + } + + /** + * Sets the value of the schuur property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setSchuur(Boolean value) { + this.schuur = value; + } + + /** + * Gets the value of the postcodeModelResultaat property. + * + * @return + * possible object is + * {@link NbwoPostcodeStraatModelResultaat } + * + */ + public NbwoPostcodeStraatModelResultaat getPostcodeModelResultaat() { + return postcodeModelResultaat; + } + + /** + * Sets the value of the postcodeModelResultaat property. + * + * @param value + * allowed object is + * {@link NbwoPostcodeStraatModelResultaat } + * + */ + public void setPostcodeModelResultaat(NbwoPostcodeStraatModelResultaat value) { + this.postcodeModelResultaat = value; + } + + /** + * Gets the value of the straatModelResultaat property. + * + * @return + * possible object is + * {@link NbwoPostcodeStraatModelResultaat } + * + */ + public NbwoPostcodeStraatModelResultaat getStraatModelResultaat() { + return straatModelResultaat; + } + + /** + * Sets the value of the straatModelResultaat property. + * + * @param value + * allowed object is + * {@link NbwoPostcodeStraatModelResultaat } + * + */ + public void setStraatModelResultaat(NbwoPostcodeStraatModelResultaat value) { + this.straatModelResultaat = value; + } + + /** + * Gets the value of the vorigeVerkoopModelResultaat property. + * + * @return + * possible object is + * {@link NbwoVorigeVerkoopModelResultaat } + * + */ + public NbwoVorigeVerkoopModelResultaat getVorigeVerkoopModelResultaat() { + return vorigeVerkoopModelResultaat; + } + + /** + * Sets the value of the vorigeVerkoopModelResultaat property. + * + * @param value + * allowed object is + * {@link NbwoVorigeVerkoopModelResultaat } + * + */ + public void setVorigeVerkoopModelResultaat(NbwoVorigeVerkoopModelResultaat value) { + this.vorigeVerkoopModelResultaat = value; + } + + /** + * Gets the value of the kenmerkenModelResultaat property. + * + * @return + * possible object is + * {@link NbwoKenmerkenModelResultaat } + * + */ + public NbwoKenmerkenModelResultaat getKenmerkenModelResultaat() { + return kenmerkenModelResultaat; + } + + /** + * Sets the value of the kenmerkenModelResultaat property. + * + * @param value + * allowed object is + * {@link NbwoKenmerkenModelResultaat } + * + */ + public void setKenmerkenModelResultaat(NbwoKenmerkenModelResultaat value) { + this.kenmerkenModelResultaat = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaardeVerdeling.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaardeVerdeling.java new file mode 100644 index 0000000..1ef3a7f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaardeVerdeling.java @@ -0,0 +1,98 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for NbwoWaardeVerdeling complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="NbwoWaardeVerdeling">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="koopsom_van" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="koopsom_tot" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="aantal" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NbwoWaardeVerdeling", propOrder = { + +}) +public class NbwoWaardeVerdeling { + + @XmlElement(name = "koopsom_van") + protected int koopsomVan; + @XmlElement(name = "koopsom_tot") + protected int koopsomTot; + protected int aantal; + + /** + * Gets the value of the koopsomVan property. + * + */ + public int getKoopsomVan() { + return koopsomVan; + } + + /** + * Sets the value of the koopsomVan property. + * + */ + public void setKoopsomVan(int value) { + this.koopsomVan = value; + } + + /** + * Gets the value of the koopsomTot property. + * + */ + public int getKoopsomTot() { + return koopsomTot; + } + + /** + * Sets the value of the koopsomTot property. + * + */ + public void setKoopsomTot(int value) { + this.koopsomTot = value; + } + + /** + * Gets the value of the aantal property. + * + */ + public int getAantal() { + return aantal; + } + + /** + * Sets the value of the aantal property. + * + */ + public void setAantal(int value) { + this.aantal = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaardeVerdelingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaardeVerdelingArray.java new file mode 100644 index 0000000..d30912d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaardeVerdelingArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for NbwoWaardeVerdelingArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="NbwoWaardeVerdelingArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}NbwoWaardeVerdeling" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NbwoWaardeVerdelingArray", propOrder = { + "item" +}) +public class NbwoWaardeVerdelingArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link NbwoWaardeVerdeling } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Neighborhood.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Neighborhood.java new file mode 100644 index 0000000..398c174 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Neighborhood.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for Neighborhood complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="Neighborhood">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Neighborhood", propOrder = { + +}) +public class Neighborhood { + + @XmlElement(required = true) + protected String nbcode; + + /** + * Gets the value of the nbcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcode() { + return nbcode; + } + + /** + * Sets the value of the nbcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcode(String value) { + this.nbcode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodArray.java new file mode 100644 index 0000000..46b0725 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for NeighborhoodArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="NeighborhoodArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}Neighborhood" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NeighborhoodArray", propOrder = { + "item" +}) +public class NeighborhoodArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Neighborhood } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodName.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodName.java new file mode 100644 index 0000000..859932a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodName.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for NeighborhoodName complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="NeighborhoodName">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="nbname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NeighborhoodName", propOrder = { + +}) +public class NeighborhoodName { + + @XmlElement(required = true) + protected String nbcode; + @XmlElement(required = true) + protected String nbname; + + /** + * Gets the value of the nbcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbcode() { + return nbcode; + } + + /** + * Sets the value of the nbcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbcode(String value) { + this.nbcode = value; + } + + /** + * Gets the value of the nbname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbname() { + return nbname; + } + + /** + * Sets the value of the nbname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbname(String value) { + this.nbname = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodNameArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodNameArray.java new file mode 100644 index 0000000..92af63a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodNameArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for NeighborhoodNameArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="NeighborhoodNameArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}NeighborhoodName" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NeighborhoodNameArray", propOrder = { + "item" +}) +public class NeighborhoodNameArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link NeighborhoodName } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodNamePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodNamePagedResult.java new file mode 100644 index 0000000..467913b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodNamePagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for NeighborhoodNamePagedResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="NeighborhoodNamePagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}NeighborhoodNameArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NeighborhoodNamePagedResult", propOrder = { + +}) +public class NeighborhoodNamePagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected NeighborhoodNameArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link NeighborhoodNameArray } + * + */ + public NeighborhoodNameArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link NeighborhoodNameArray } + * + */ + public void setResults(NeighborhoodNameArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodPagedResult.java new file mode 100644 index 0000000..1bad56f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodPagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for NeighborhoodPagedResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="NeighborhoodPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}NeighborhoodArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NeighborhoodPagedResult", propOrder = { + +}) +public class NeighborhoodPagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected NeighborhoodArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link NeighborhoodArray } + * + */ + public NeighborhoodArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link NeighborhoodArray } + * + */ + public void setResults(NeighborhoodArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NietNatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NietNatuurlijkPersoon.java new file mode 100644 index 0000000..c221f27 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NietNatuurlijkPersoon.java @@ -0,0 +1,149 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for NietNatuurlijkPersoon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="NietNatuurlijkPersoon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="naam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="statutaire_zetel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="leden_lijst" type="{http://www.webservices.nl/soap/}LidLijst" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "NietNatuurlijkPersoon", propOrder = { + +}) +public class NietNatuurlijkPersoon { + + protected String naam; + @XmlElement(required = true) + protected String code; + @XmlElement(name = "statutaire_zetel") + protected String statutaireZetel; + @XmlElement(name = "leden_lijst") + protected LidLijst ledenLijst; + + /** + * Gets the value of the naam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNaam() { + return naam; + } + + /** + * Sets the value of the naam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNaam(String value) { + this.naam = value; + } + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCode(String value) { + this.code = value; + } + + /** + * Gets the value of the statutaireZetel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatutaireZetel() { + return statutaireZetel; + } + + /** + * Sets the value of the statutaireZetel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatutaireZetel(String value) { + this.statutaireZetel = value; + } + + /** + * Gets the value of the ledenLijst property. + * + * @return + * possible object is + * {@link LidLijst } + * + */ + public LidLijst getLedenLijst() { + return ledenLijst; + } + + /** + * Sets the value of the ledenLijst property. + * + * @param value + * allowed object is + * {@link LidLijst } + * + */ + public void setLedenLijst(LidLijst value) { + this.ledenLijst = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ObjectFactory.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ObjectFactory.java new file mode 100644 index 0000000..83a9bbf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ObjectFactory.java @@ -0,0 +1,19024 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.JAXBElement; +import javax.xml.bind.annotation.XmlElementDecl; +import javax.xml.bind.annotation.XmlRegistry; +import javax.xml.namespace.QName; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the org.suggs.companydatafinderlib.companyinfo.wsdl package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + private final static QName _CreditsafeMonitorAddCompanyResponse_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeMonitorAddCompanyResponse"); + private final static QName _DutchBusinessGetLegalExtractDocumentDataV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetLegalExtractDocumentDataV3Response"); + private final static QName _NbwoEstimateValueResponse_QNAME = new QName("http://www.webservices.nl/soap/", "nbwoEstimateValueResponse"); + private final static QName _KadasterUittrekselKadastraleKaartPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPostcodeResponse"); + private final static QName _KadasterUittrekselKadastraleKaartPostcodeV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPostcodeV2Response"); + private final static QName _BovagGetMemberByBovagIdResponse_QNAME = new QName("http://www.webservices.nl/soap/", "bovagGetMemberByBovagIdResponse"); + private final static QName _CarRDWCarDataV2_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataV2"); + private final static QName _CarRDWCarDataV3_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataV3"); + private final static QName _DutchBusinessGetLegalEntity_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetLegalEntity"); + private final static QName _AddressProvinceListDistrictsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressProvinceListDistrictsResponse"); + private final static QName _CarRDWCarDataResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataResponse"); + private final static QName _BusinessUpdateRemoveDossier_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateRemoveDossier"); + private final static QName _DutchBusinessUBOPickupInvestigation_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOPickupInvestigation"); + private final static QName _GeoLocationLatLonToPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationLatLonToPostcodeResponse"); + private final static QName _DutchBusinessGetExtractDocumentDataResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractDocumentDataResponse"); + private final static QName _DutchBusinessGetDossierHistoryResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetDossierHistoryResponse"); + private final static QName _GeoLocationPostcodeCoordinatesLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationPostcodeCoordinatesLatLonResponse"); + private final static QName _KvkGetDossier_QNAME = new QName("http://www.webservices.nl/soap/", "kvkGetDossier"); + private final static QName _SepaConvertBankAccountNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "sepaConvertBankAccountNumberResponse"); + private final static QName _KadasterKadastraleKaartPostcodeV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKadastraleKaartPostcodeV2Response"); + private final static QName _CarRDWCarDataBPV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataBPV2Response"); + private final static QName _AddressCityListNeighborhoodsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressCityListNeighborhoodsResponse"); + private final static QName _KvkUpdateGetChangedDossiers_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateGetChangedDossiers"); + private final static QName _CreditsafeGetReportFullResponse_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeGetReportFullResponse"); + private final static QName _CarRDWCarDataPrice_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataPrice"); + private final static QName _DutchBusinessSearchSelectionSimple_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchSelectionSimple"); + private final static QName _DutchBusinessGetSBIDescription_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetSBIDescription"); + private final static QName _RoutePlannerRDDescriptionCoordinatesRDResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerRDDescriptionCoordinatesRDResponse"); + private final static QName _CreditsafeGetReportFull_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeGetReportFull"); + private final static QName _DutchBusinessGetExtractHistoryDocumentDataV3ByDossier_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryDocumentDataV3ByDossier"); + private final static QName _DutchBusinessUBOPickupInvestigationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOPickupInvestigationResponse"); + private final static QName _RoutePlannerEUDescriptionCoordinatesLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerEUDescriptionCoordinatesLatLon"); + private final static QName _AccountViewBalanceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "accountViewBalanceResponse"); + private final static QName _BusinessSearchPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchPostcodeResponse"); + private final static QName _KadasterHypothecairBerichtPerceelV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPerceelV2Response"); + private final static QName _RoutePlannerDescriptionShortest_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionShortest"); + private final static QName _KadasterV2GetKadastraalBerichtObjectByAdres_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetKadastraalBerichtObjectByAdres"); + private final static QName _AddressPerceelPhraseSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressPerceelPhraseSearch"); + private final static QName _AddressReeksAddressSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksAddressSearch"); + private final static QName _AddressNeighborhoodNameResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressNeighborhoodNameResponse"); + private final static QName _UserEditHostRestrictionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userEditHostRestrictionsResponse"); + private final static QName _AccountEditV2_QNAME = new QName("http://www.webservices.nl/soap/", "accountEditV2"); + private final static QName _VatValidateResponse_QNAME = new QName("http://www.webservices.nl/soap/", "vatValidateResponse"); + private final static QName _GeoLocationInternationalAddressCoordinatesLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationInternationalAddressCoordinatesLatLonResponse"); + private final static QName _ComplianceGetPerson_QNAME = new QName("http://www.webservices.nl/soap/", "complianceGetPerson"); + private final static QName _CarVWEVersionYearData_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEVersionYearData"); + private final static QName _CarVWEOptionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEOptionsResponse"); + private final static QName _AccountEditHostRestrictions_QNAME = new QName("http://www.webservices.nl/soap/", "accountEditHostRestrictions"); + private final static QName _BusinessGetDossierSBIResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetDossierSBIResponse"); + private final static QName _BusinessGetDossierV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetDossierV3Response"); + private final static QName _GeoLocationDistanceSortedNeighborhoodCodes_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationDistanceSortedNeighborhoodCodes"); + private final static QName _DutchVehicleGetVehicleV2_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetVehicleV2"); + private final static QName _DutchBusinessGetDossierHistory_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetDossierHistory"); + private final static QName _KadasterEigendomsBerichtPerceelV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtPerceelV2"); + private final static QName _BusinessUpdateRemoveDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateRemoveDossierResponse"); + private final static QName _RiskCheckGetRiskPersonCompanyReportResponse_QNAME = new QName("http://www.webservices.nl/soap/", "riskCheckGetRiskPersonCompanyReportResponse"); + private final static QName _KadasterValueListGetRanges_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterValueListGetRanges"); + private final static QName _KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponse"); + private final static QName _CarVWEListModelsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEListModelsResponse"); + private final static QName _DutchAddressRangePostcodeSearch_QNAME = new QName("http://www.webservices.nl/soap/", "dutchAddressRangePostcodeSearch"); + private final static QName _CarVWEListVersions_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEListVersions"); + private final static QName _DutchBusinessUBOClassifyInvestigation_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOClassifyInvestigation"); + private final static QName _DutchBusinessSearchSelection_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchSelection"); + private final static QName _KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponse"); + private final static QName _MetaGetMethod_QNAME = new QName("http://www.webservices.nl/soap/", "metaGetMethod"); + private final static QName _UserCreateV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "userCreateV2Response"); + private final static QName _AccountViewHostRestrictionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "accountViewHostRestrictionsResponse"); + private final static QName _KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponse"); + private final static QName _GraydonCreditCompanyLiaisonsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditCompanyLiaisonsResponse"); + private final static QName _DnbBusinessVerification_QNAME = new QName("http://www.webservices.nl/soap/", "dnbBusinessVerification"); + private final static QName _KadasterKadastraleKaartPerceelV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKadastraleKaartPerceelV2"); + private final static QName _RoutePlannerRDDescriptionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerRDDescriptionResponse"); + private final static QName _BusinessSearchAddress_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchAddress"); + private final static QName _GeoLocationDistanceSortedNeighborhoodCodesRadiusResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationDistanceSortedNeighborhoodCodesRadiusResponse"); + private final static QName _NbwoEstimateValue_QNAME = new QName("http://www.webservices.nl/soap/", "nbwoEstimateValue"); + private final static QName _DnbEnterpriseManagementResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dnbEnterpriseManagementResponse"); + private final static QName _KvkUpdateCheckDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateCheckDossierResponse"); + private final static QName _DutchBusinessGetSBI_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetSBI"); + private final static QName _DutchBusinessGetConcernRelationsDetails_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetConcernRelationsDetails"); + private final static QName _MetaGetServicesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "metaGetServicesResponse"); + private final static QName _GraydonCreditQuickscanResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditQuickscanResponse"); + private final static QName _KvkUpdateGetDossiersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateGetDossiersResponse"); + private final static QName _RoutePlannerGetRoute_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerGetRoute"); + private final static QName _GeoLocationDistanceSortedNeighborhoodCodesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationDistanceSortedNeighborhoodCodesResponse"); + private final static QName _KvkGetExtractDocument_QNAME = new QName("http://www.webservices.nl/soap/", "kvkGetExtractDocument"); + private final static QName _CreditsafeGetReportFullV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeGetReportFullV2Response"); + private final static QName _DutchBusinessGetAdditionalPositions_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetAdditionalPositions"); + private final static QName _KadasterKadastraleKaartPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKadastraleKaartPostcode"); + private final static QName _AccountUserSearchV2_QNAME = new QName("http://www.webservices.nl/soap/", "accountUserSearchV2"); + private final static QName _GraydonCreditRatings_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditRatings"); + private final static QName _UserEditExtendedV2_QNAME = new QName("http://www.webservices.nl/soap/", "userEditExtendedV2"); + private final static QName _CarVWEVersionPrice_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEVersionPrice"); + private final static QName _DutchVehicleGetMarketValue_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetMarketValue"); + private final static QName _DutchBusinessUpdateGetOverview_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateGetOverview"); + private final static QName _DutchBusinessGetVatNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetVatNumberResponse"); + private final static QName _DutchBusinessGetPositions_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetPositions"); + private final static QName _DutchBusinessSearchSelectionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchSelectionResponse"); + private final static QName _DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponse"); + private final static QName _UserEditBalanceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userEditBalanceResponse"); + private final static QName _Login_QNAME = new QName("http://www.webservices.nl/soap/", "login"); + private final static QName _MetaGetService_QNAME = new QName("http://www.webservices.nl/soap/", "metaGetService"); + private final static QName _BusinessGetBIKDescriptionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetBIKDescriptionResponse"); + private final static QName _DutchVehicleGetVehicle_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetVehicle"); + private final static QName _RoutePlannerEUDescriptionCoordinatesLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerEUDescriptionCoordinatesLatLonResponse"); + private final static QName _GeoLocationLatLonToAddressV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationLatLonToAddressV2Response"); + private final static QName _KadasterUittrekselKadastraleKaartPostcodeV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPostcodeV3Response"); + private final static QName _GeoLocationPostcodeCoordinatesRDResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationPostcodeCoordinatesRDResponse"); + private final static QName _KadasterHypothecairBerichtPerceelV3_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPerceelV3"); + private final static QName _KadasterEigendomsBerichtPerceelResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtPerceelResponse"); + private final static QName _KadasterHypothecairBerichtPerceelV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPerceelV2"); + private final static QName _DutchBusinessGetExtractDocumentDataV3_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractDocumentDataV3"); + private final static QName _SepaValidateInternationalBankAccountNumberFormatResponse_QNAME = new QName("http://www.webservices.nl/soap/", "sepaValidateInternationalBankAccountNumberFormatResponse"); + private final static QName _DutchBusinessGetExtractDocumentDataV2_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractDocumentDataV2"); + private final static QName _DutchBusinessUBOCheckInvestigationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOCheckInvestigationResponse"); + private final static QName _AccountGetOrderTokenResponse_QNAME = new QName("http://www.webservices.nl/soap/", "accountGetOrderTokenResponse"); + private final static QName _GeoLocationPostcodeDistance_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationPostcodeDistance"); + private final static QName _KadasterV2GetKoopsommenOverzicht_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetKoopsommenOverzicht"); + private final static QName _InternationalAddressSearchV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "internationalAddressSearchV2Response"); + private final static QName _AccountViewHostRestrictions_QNAME = new QName("http://www.webservices.nl/soap/", "accountViewHostRestrictions"); + private final static QName _CarRDWCarDataExtended_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataExtended"); + private final static QName _AddressPerceelPhraseSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressPerceelPhraseSearchResponse"); + private final static QName _KadasterUittrekselKadastraleKaartPostcodeV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPostcodeV2"); + private final static QName _AddressPerceelParameterSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressPerceelParameterSearchResponse"); + private final static QName _KadasterEigendomsBerichtPerceelV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtPerceelV2Response"); + private final static QName _CarRDWCarDataV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataV2Response"); + private final static QName _KadasterUittrekselKadastraleKaartPostcodeV3_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPostcodeV3"); + private final static QName _GraydonCreditManagement_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditManagement"); + private final static QName _UserChangePasswordResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userChangePasswordResponse"); + private final static QName _CreditsafeSearchCriteriaResponse_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeSearchCriteriaResponse"); + private final static QName _RiskCheckPersonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "riskCheckPersonResponse"); + private final static QName _DnbSearchReferenceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dnbSearchReferenceResponse"); + private final static QName _KadasterUittrekselKadastraleKaartPerceelV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPerceelV3Response"); + private final static QName _RoutePlannerEUInformationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerEUInformationResponse"); + private final static QName _GeoLocationDistanceSortedPostcodes_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationDistanceSortedPostcodes"); + private final static QName _GraydonCreditVatNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditVatNumberResponse"); + private final static QName _AreaCodeToNeighborhoodcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "areaCodeToNeighborhoodcodeResponse"); + private final static QName _DutchBusinessGetOrganizationTreeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetOrganizationTreeResponse"); + private final static QName _GeoLocationHaversineDistance_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationHaversineDistance"); + private final static QName _RoutePlannerRDDescription_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerRDDescription"); + private final static QName _CarVWEMeldcodeCheck_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEMeldcodeCheck"); + private final static QName _KadasterEigendomsBerichtDocumentPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtDocumentPostcodeResponse"); + private final static QName _DutchBusinessGetDossierV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetDossierV2Response"); + private final static QName _BusinessSearchSelectionV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchSelectionV2Response"); + private final static QName _AddressDistrictListCities_QNAME = new QName("http://www.webservices.nl/soap/", "addressDistrictListCities"); + private final static QName _GeoLocationPostcodeCoordinatesLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationPostcodeCoordinatesLatLon"); + private final static QName _KadasterV2GetKadastraalBerichtObjectByAdresResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetKadastraalBerichtObjectByAdresResponse"); + private final static QName _GeoLocationRDToAddressV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationRDToAddressV2Response"); + private final static QName _BovagGetMemberByBovagId_QNAME = new QName("http://www.webservices.nl/soap/", "bovagGetMemberByBovagId"); + private final static QName _KvkSearchSelectionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkSearchSelectionResponse"); + private final static QName _GeoLocationRDToAddressV2_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationRDToAddressV2"); + private final static QName _MetaGetServices_QNAME = new QName("http://www.webservices.nl/soap/", "metaGetServices"); + private final static QName _KadasterKadastraleKaartPostcodeV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKadastraleKaartPostcodeV2"); + private final static QName _AccountGetCreationTokenResponse_QNAME = new QName("http://www.webservices.nl/soap/", "accountGetCreationTokenResponse"); + private final static QName _GeoLocationInternationalAddressCoordinatesLatLonV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationInternationalAddressCoordinatesLatLonV2Response"); + private final static QName _RoutePlannerGetRouteResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerGetRouteResponse"); + private final static QName _UserSessionRemoveResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userSessionRemoveResponse"); + private final static QName _GeoLocationHaversineDistanceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationHaversineDistanceResponse"); + private final static QName _BusinessUpdateCheckDossier_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateCheckDossier"); + private final static QName _GeoLocationRDToPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationRDToPostcode"); + private final static QName _KadasterHypothecairBerichtPerceelResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPerceelResponse"); + private final static QName _AddressCityListNeighborhoods_QNAME = new QName("http://www.webservices.nl/soap/", "addressCityListNeighborhoods"); + private final static QName _DutchBusinessSearchParametersV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchParametersV2Response"); + private final static QName _BusinessSBIToBIKResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessSBIToBIKResponse"); + private final static QName _InsolvencyGetCaseByPublication_QNAME = new QName("http://www.webservices.nl/soap/", "insolvencyGetCaseByPublication"); + private final static QName _BusinessSearchSelectionV2_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchSelectionV2"); + private final static QName _CarRDWCarDataV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataV3Response"); + private final static QName _DnbWorldbaseMarketingPlus_QNAME = new QName("http://www.webservices.nl/soap/", "dnbWorldbaseMarketingPlus"); + private final static QName _DutchBusinessSearchDossierNumber_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchDossierNumber"); + private final static QName _KadasterEigendomsBerichtPostcodeV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtPostcodeV2"); + private final static QName _AddressProvinceSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressProvinceSearch"); + private final static QName _CarRDWCarCheckCodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarCheckCodeResponse"); + private final static QName _DutchBusinessSearch_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearch"); + private final static QName _DutchBusinessUpdateAddDossier_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateAddDossier"); + private final static QName _UserSessionListResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userSessionListResponse"); + private final static QName _InternationalAddressSearchV2_QNAME = new QName("http://www.webservices.nl/soap/", "internationalAddressSearchV2"); + private final static QName _DutchBusinessSearchPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchPostcodeResponse"); + private final static QName _KadasterAddressCoordinatesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterAddressCoordinatesResponse"); + private final static QName _GeoLocationInternationalAddressCoordinatesLatLonV2_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationInternationalAddressCoordinatesLatLonV2"); + private final static QName _BusinessSearchDossierNumber_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchDossierNumber"); + private final static QName _RoutePlannerDescriptionShortestResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionShortestResponse"); + private final static QName _DutchBusinessSearchDossierNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchDossierNumberResponse"); + private final static QName _DutchBusinessGetAnnualFinancialStatementResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetAnnualFinancialStatementResponse"); + private final static QName _InsolvencyGetCaseByPublicationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "insolvencyGetCaseByPublicationResponse"); + private final static QName _UserViewV2_QNAME = new QName("http://www.webservices.nl/soap/", "userViewV2"); + private final static QName _AddressNeighborhoodName_QNAME = new QName("http://www.webservices.nl/soap/", "addressNeighborhoodName"); + private final static QName _KadasterKoopsommenOverzichtV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKoopsommenOverzichtV2"); + private final static QName _BusinessGetDossierExtendedResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetDossierExtendedResponse"); + private final static QName _AddressDistrictSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressDistrictSearchResponse"); + private final static QName _BelgianBusinessGetDossier_QNAME = new QName("http://www.webservices.nl/soap/", "belgianBusinessGetDossier"); + private final static QName _GeoLocationInternationalPostcodeCoordinatesLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationInternationalPostcodeCoordinatesLatLon"); + private final static QName _DutchBusinessGetNonMarketingIndicator_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetNonMarketingIndicator"); + private final static QName _BovagGetMemberByDutchBusinessResponse_QNAME = new QName("http://www.webservices.nl/soap/", "bovagGetMemberByDutchBusinessResponse"); + private final static QName _DutchBusinessUBOStartInvestigation_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOStartInvestigation"); + private final static QName _DutchBusinessGetExtractHistoryChangedResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryChangedResponse"); + private final static QName _RoutePlannerDescriptionAddress_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionAddress"); + private final static QName _UserRemoveGroup_QNAME = new QName("http://www.webservices.nl/soap/", "userRemoveGroup"); + private final static QName _UserRemoveGroupResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userRemoveGroupResponse"); + private final static QName _KadasterBronDocument_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterBronDocument"); + private final static QName _DriveInfoTimeLookupResponse_QNAME = new QName("http://www.webservices.nl/soap/", "driveInfoTimeLookupResponse"); + private final static QName _AddressReeksParameterSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksParameterSearchResponse"); + private final static QName _AddressProvinceListNeighborhoodsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressProvinceListNeighborhoodsResponse"); + private final static QName _KadasterV2GetHypothecairBerichtObjectByAdres_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetHypothecairBerichtObjectByAdres"); + private final static QName _BusinessGetSBIDescriptionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetSBIDescriptionResponse"); + private final static QName _UserNotify_QNAME = new QName("http://www.webservices.nl/soap/", "userNotify"); + private final static QName _RoutePlannerInformationAddress_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerInformationAddress"); + private final static QName _AreaCodeLookup_QNAME = new QName("http://www.webservices.nl/soap/", "areaCodeLookup"); + private final static QName _DnbWorldbaseMarketing_QNAME = new QName("http://www.webservices.nl/soap/", "dnbWorldbaseMarketing"); + private final static QName _KadasterHypothecairBerichtPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPostcode"); + private final static QName _GeoLocationInternationalAddressCoordinatesLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationInternationalAddressCoordinatesLatLon"); + private final static QName _DutchBusinessUBOCostsInvestigationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOCostsInvestigationResponse"); + private final static QName _DutchBusinessSearchParameters_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchParameters"); + private final static QName _DutchBusinessUpdateGetChangedDossiers_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateGetChangedDossiers"); + private final static QName _BusinessUpdateAddDossier_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateAddDossier"); + private final static QName _RoutePlannerDescription_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescription"); + private final static QName _MapViewRDResponse_QNAME = new QName("http://www.webservices.nl/soap/", "mapViewRDResponse"); + private final static QName _BusinessBIKToSBI_QNAME = new QName("http://www.webservices.nl/soap/", "businessBIKToSBI"); + private final static QName _CarVWEBasicTypeData_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEBasicTypeData"); + private final static QName _DutchBusinessGetExtractHistoryResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryResponse"); + private final static QName _GeoLocationLatLonToRDResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationLatLonToRDResponse"); + private final static QName _InsolvencySearchPublicationsByCoCNumber_QNAME = new QName("http://www.webservices.nl/soap/", "insolvencySearchPublicationsByCoCNumber"); + private final static QName _KadasterHypothecairBerichtPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPostcodeResponse"); + private final static QName _AccountGetOrderToken_QNAME = new QName("http://www.webservices.nl/soap/", "accountGetOrderToken"); + private final static QName _BusinessSBIToBIK_QNAME = new QName("http://www.webservices.nl/soap/", "businessSBIToBIK"); + private final static QName _DutchBusinessGetExtractDocumentData_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractDocumentData"); + private final static QName _DnbSearchReferenceV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "dnbSearchReferenceV2Response"); + private final static QName _RoutePlannerRDDescriptionCoordinatesRD_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerRDDescriptionCoordinatesRD"); + private final static QName _SepaMatchAccountHolderResponse_QNAME = new QName("http://www.webservices.nl/soap/", "sepaMatchAccountHolderResponse"); + private final static QName _GeoLocationAddressCoordinatesLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationAddressCoordinatesLatLonResponse"); + private final static QName _DutchBusinessGetExtractDocumentResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractDocumentResponse"); + private final static QName _KvkUpdateGetDossiers_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateGetDossiers"); + private final static QName _DnbWorldbaseMarketingPlusLinkageResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dnbWorldbaseMarketingPlusLinkageResponse"); + private final static QName _CarRDWCarDataOptionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataOptionsResponse"); + private final static QName _DutchVehicleGetVehicleV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetVehicleV2Response"); + private final static QName _BusinessSearchParameters_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchParameters"); + private final static QName _RoutePlannerDescriptionDutchAddressResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionDutchAddressResponse"); + private final static QName _AddressProvinceListNeighborhoods_QNAME = new QName("http://www.webservices.nl/soap/", "addressProvinceListNeighborhoods"); + private final static QName _BusinessGetDossierSBI_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetDossierSBI"); + private final static QName _CarRDWCarDataExtendedResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataExtendedResponse"); + private final static QName _InternationalAddressSearchInteractiveResponse_QNAME = new QName("http://www.webservices.nl/soap/", "internationalAddressSearchInteractiveResponse"); + private final static QName _DutchBusinessUBOCheckInvestigation_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOCheckInvestigation"); + private final static QName _AccountViewV2_QNAME = new QName("http://www.webservices.nl/soap/", "accountViewV2"); + private final static QName _VatValidate_QNAME = new QName("http://www.webservices.nl/soap/", "vatValidate"); + private final static QName _DnbQuickCheck_QNAME = new QName("http://www.webservices.nl/soap/", "dnbQuickCheck"); + private final static QName _KadasterKadastraleKaartPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKadastraleKaartPostcodeResponse"); + private final static QName _DutchBusinessUpdateGetDossiers_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateGetDossiers"); + private final static QName _GraydonCreditSearchIdentificationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditSearchIdentificationResponse"); + private final static QName _KvkSearchPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "kvkSearchPostcode"); + private final static QName _AccountEditHostRestrictionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "accountEditHostRestrictionsResponse"); + private final static QName _AddressPerceelParameterSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressPerceelParameterSearch"); + private final static QName _DutchBusinessGetLegalExtractDocumentDataV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetLegalExtractDocumentDataV2Response"); + private final static QName _KvkSearchParameters_QNAME = new QName("http://www.webservices.nl/soap/", "kvkSearchParameters"); + private final static QName _HeaderLogin_QNAME = new QName("http://www.webservices.nl/soap/", "HeaderLogin"); + private final static QName _CreditsafeSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeSearchResponse"); + private final static QName _DutchBusinessGetExtractHistoryDocumentDataV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryDocumentDataV2Response"); + private final static QName _BusinessSearchParametersV3_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchParametersV3"); + private final static QName _BusinessSearchParametersV2_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchParametersV2"); + private final static QName _MapViewInternationalLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "mapViewInternationalLatLonResponse"); + private final static QName _BelgianBusinessGetDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "belgianBusinessGetDossierResponse"); + private final static QName _CreditsafeSearchV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeSearchV2Response"); + private final static QName _AddressCitySearchV2_QNAME = new QName("http://www.webservices.nl/soap/", "addressCitySearchV2"); + private final static QName _KvkUpdateAddDossier_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateAddDossier"); + private final static QName _AccountViewBalance_QNAME = new QName("http://www.webservices.nl/soap/", "accountViewBalance"); + private final static QName _BusinessSearchSelection_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchSelection"); + private final static QName _DutchBusinessUpdateRemoveDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateRemoveDossierResponse"); + private final static QName _Errorcode_QNAME = new QName("http://www.webservices.nl/soap/", "errorcode"); + private final static QName _CreditsafeMonitorRemoveCompanyResponse_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeMonitorRemoveCompanyResponse"); + private final static QName _ComplianceGetBusiness_QNAME = new QName("http://www.webservices.nl/soap/", "complianceGetBusiness"); + private final static QName _KadasterKoopsommenOverzichtV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKoopsommenOverzichtV2Response"); + private final static QName _BusinessGetDossierExtended_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetDossierExtended"); + private final static QName _KadasterV2GetBronDocument_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetBronDocument"); + private final static QName _KvkUpdateCheckDossier_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateCheckDossier"); + private final static QName _MapViewLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "mapViewLatLon"); + private final static QName _BusinessUpdateGetChangedDossiersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateGetChangedDossiersResponse"); + private final static QName _GraydonCreditGetReport_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditGetReport"); + private final static QName _AddressProvinceListResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressProvinceListResponse"); + private final static QName _CreditsafeMonitorRemoveCompany_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeMonitorRemoveCompany"); + private final static QName _CreditsafeSearch_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeSearch"); + private final static QName _DutchVehicleGetPurchaseReference_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetPurchaseReference"); + private final static QName _AccountEditV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "accountEditV2Response"); + private final static QName _DnbBusinessVerificationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dnbBusinessVerificationResponse"); + private final static QName _AddressDistrictListNeighborhoodsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressDistrictListNeighborhoodsResponse"); + private final static QName _DutchVehicleGetOwnerHistoryResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetOwnerHistoryResponse"); + private final static QName _KadasterV2GetHypothecairBerichtObjectByAdresResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetHypothecairBerichtObjectByAdresResponse"); + private final static QName _GeoLocationInternationalPostcodeCoordinatesLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationInternationalPostcodeCoordinatesLatLonResponse"); + private final static QName _MapViewPostcodeV2_QNAME = new QName("http://www.webservices.nl/soap/", "mapViewPostcodeV2"); + private final static QName _KvkSearchDossierNumber_QNAME = new QName("http://www.webservices.nl/soap/", "kvkSearchDossierNumber"); + private final static QName _UserEditExtendedV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "userEditExtendedV2Response"); + private final static QName _AddressDistrictListCitiesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressDistrictListCitiesResponse"); + private final static QName _DutchBusinessGetLegalExtractDocumentDataV3_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetLegalExtractDocumentDataV3"); + private final static QName _DutchVehicleGetMarketValueResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetMarketValueResponse"); + private final static QName _AreaCodeLookupResponse_QNAME = new QName("http://www.webservices.nl/soap/", "areaCodeLookupResponse"); + private final static QName _CarVWEVersionPriceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEVersionPriceResponse"); + private final static QName _DutchBusinessGetLegalExtractDocumentDataV2_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetLegalExtractDocumentDataV2"); + private final static QName _UserRemove_QNAME = new QName("http://www.webservices.nl/soap/", "userRemove"); + private final static QName _UserViewBalanceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userViewBalanceResponse"); + private final static QName _CarRDWCarData_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarData"); + private final static QName _UserAddGroup_QNAME = new QName("http://www.webservices.nl/soap/", "userAddGroup"); + private final static QName _DutchVehicleGetVehicleResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetVehicleResponse"); + private final static QName _DutchBusinessGetExtractHistory_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistory"); + private final static QName _KadasterEigendomsBerichtDocumentPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtDocumentPostcode"); + private final static QName _VatViesProxyCheckVat_QNAME = new QName("http://www.webservices.nl/soap/", "vatViesProxyCheckVat"); + private final static QName _DnbSearchReference_QNAME = new QName("http://www.webservices.nl/soap/", "dnbSearchReference"); + private final static QName _RoutePlannerDescriptionCoordinatesRD_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionCoordinatesRD"); + private final static QName _SepaConvertBasicBankAccountNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "sepaConvertBasicBankAccountNumberResponse"); + private final static QName _DutchVehicleGetOwnerHistory_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetOwnerHistory"); + private final static QName _KadasterKadastraleKaartPerceel_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKadastraleKaartPerceel"); + private final static QName _DnbWorldbaseMarketingResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dnbWorldbaseMarketingResponse"); + private final static QName _ComplianceGetPersonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "complianceGetPersonResponse"); + private final static QName _CreditsafeMonitorGetUpdatedCompaniesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeMonitorGetUpdatedCompaniesResponse"); + private final static QName _RoutePlannerRDInformation_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerRDInformation"); + private final static QName _DutchBusinessUpdateCheckDossier_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateCheckDossier"); + private final static QName _DutchBusinessGetExtractDocumentDataV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractDocumentDataV2Response"); + private final static QName _AddressReeksPostcodeSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksPostcodeSearch"); + private final static QName _GraydonCreditSearchPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditSearchPostcodeResponse"); + private final static QName _AreaCodePostcodeLookupResponse_QNAME = new QName("http://www.webservices.nl/soap/", "areaCodePostcodeLookupResponse"); + private final static QName _SepaIbanDetailsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "sepaIbanDetailsResponse"); + private final static QName _GraydonCreditQuickscan_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditQuickscan"); + private final static QName _GeoLocationInternationalLatLonToAddressResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationInternationalLatLonToAddressResponse"); + private final static QName _AccountGetCreationStatusResponse_QNAME = new QName("http://www.webservices.nl/soap/", "accountGetCreationStatusResponse"); + private final static QName _KadasterV2GetUittrekselKadastraleKaartByObjectId_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetUittrekselKadastraleKaartByObjectId"); + private final static QName _UserRemoveResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userRemoveResponse"); + private final static QName _MetaGetServiceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "metaGetServiceResponse"); + private final static QName _DutchBusinessGetLegalEntityResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetLegalEntityResponse"); + private final static QName _GeoLocationNeighborhoodCoordinatesLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationNeighborhoodCoordinatesLatLonResponse"); + private final static QName _DutchBusinessUpdateRemoveDossier_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateRemoveDossier"); + private final static QName _AddressNeighborhoodPhraseSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressNeighborhoodPhraseSearchResponse"); + private final static QName _CarVWEListBrands_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEListBrands"); + private final static QName _DutchBusinessSearchEstablishmentsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchEstablishmentsResponse"); + private final static QName _GeoLocationRDToPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationRDToPostcodeResponse"); + private final static QName _KadasterEigendomsBerichtDocumentPerceel_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtDocumentPerceel"); + private final static QName _UserSessionRemove_QNAME = new QName("http://www.webservices.nl/soap/", "userSessionRemove"); + private final static QName _KadasterV2GetUittrekselKadastraleKaartByAdresResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetUittrekselKadastraleKaartByAdresResponse"); + private final static QName _DutchBusinessSearchParametersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchParametersResponse"); + private final static QName _VatViesProxyCheckVatResponse_QNAME = new QName("http://www.webservices.nl/soap/", "vatViesProxyCheckVatResponse"); + private final static QName _DriveInfoDistanceLookup_QNAME = new QName("http://www.webservices.nl/soap/", "driveInfoDistanceLookup"); + private final static QName _GraydonCreditRatingsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditRatingsResponse"); + private final static QName _BusinessSearchParametersV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchParametersV2Response"); + private final static QName _RoutePlannerEUDescriptionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerEUDescriptionResponse"); + private final static QName _UserEditV2_QNAME = new QName("http://www.webservices.nl/soap/", "userEditV2"); + private final static QName _BusinessSearchName_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchName"); + private final static QName _InsolvencySearchPublicationsByCoCNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "insolvencySearchPublicationsByCoCNumberResponse"); + private final static QName _CarVWEListVersionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEListVersionsResponse"); + private final static QName _MetaGetMethodResponse_QNAME = new QName("http://www.webservices.nl/soap/", "metaGetMethodResponse"); + private final static QName _DutchBusinessGetConcernRelationsDetailsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetConcernRelationsDetailsResponse"); + private final static QName _GeoLocationInternationalLatLonToAddress_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationInternationalLatLonToAddress"); + private final static QName _LogoutResponse_QNAME = new QName("http://www.webservices.nl/soap/", "logoutResponse"); + private final static QName _DutchBusinessUBOClassifyInvestigationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOClassifyInvestigationResponse"); + private final static QName _AddressReeksFullParameterSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksFullParameterSearch"); + private final static QName _KadasterV2GetUittrekselKadastraleKaartByAdres_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetUittrekselKadastraleKaartByAdres"); + private final static QName _KadasterKoopsommenOverzicht_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKoopsommenOverzicht"); + private final static QName _AreaCodePostcodeLookup_QNAME = new QName("http://www.webservices.nl/soap/", "areaCodePostcodeLookup"); + private final static QName _AddressProvinceListDistricts_QNAME = new QName("http://www.webservices.nl/soap/", "addressProvinceListDistricts"); + private final static QName _BusinessSearchNameResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchNameResponse"); + private final static QName _GraydonCreditSearchIdentification_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditSearchIdentification"); + private final static QName _KadasterHypothecairBerichtPerceel_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPerceel"); + private final static QName _BusinessSearchAddressResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchAddressResponse"); + private final static QName _SepaValidateInternationalBankAccountNumberFormat_QNAME = new QName("http://www.webservices.nl/soap/", "sepaValidateInternationalBankAccountNumberFormat"); + private final static QName _EdrGetScoreResponse_QNAME = new QName("http://www.webservices.nl/soap/", "edrGetScoreResponse"); + private final static QName _RiskCheckGetRiskPersonCompanyReport_QNAME = new QName("http://www.webservices.nl/soap/", "riskCheckGetRiskPersonCompanyReport"); + private final static QName _DnbEnterpriseManagement_QNAME = new QName("http://www.webservices.nl/soap/", "dnbEnterpriseManagement"); + private final static QName _DutchBusinessGetOrganizationTree_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetOrganizationTree"); + private final static QName _BusinessGetEstablishmentNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetEstablishmentNumberResponse"); + private final static QName _CarVWEPhotos_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEPhotos"); + private final static QName _DutchBusinessGetLei_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetLei"); + private final static QName _GeoLocationLatLonToAddressV2_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationLatLonToAddressV2"); + private final static QName _AreaCodeToNeighborhoodcode_QNAME = new QName("http://www.webservices.nl/soap/", "areaCodeToNeighborhoodcode"); + private final static QName _AccountGetCreationToken_QNAME = new QName("http://www.webservices.nl/soap/", "accountGetCreationToken"); + private final static QName _EdrGetScore_QNAME = new QName("http://www.webservices.nl/soap/", "edrGetScore"); + private final static QName _RoutePlannerRDInformationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerRDInformationResponse"); + private final static QName _DutchBusinessSearchParametersV2_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchParametersV2"); + private final static QName _GeoLocationLatLonToRD_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationLatLonToRD"); + private final static QName _RoutePlannerEUDescription_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerEUDescription"); + private final static QName _GeoLocationLatLonToPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationLatLonToPostcode"); + private final static QName _KadasterUittrekselKadastraleKaartPerceelResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPerceelResponse"); + private final static QName _KvkUpdateAddDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateAddDossierResponse"); + private final static QName _GeoLocationRDToLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationRDToLatLonResponse"); + private final static QName _DutchBusinessGetExtractHistoryDocumentData_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryDocumentData"); + private final static QName _BusinessUpdateCheckDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateCheckDossierResponse"); + private final static QName _AddressPerceelFullParameterSearchV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "addressPerceelFullParameterSearchV2Response"); + private final static QName _KadasterHypothecairBerichtPostcodeV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPostcodeV3Response"); + private final static QName _KadasterValueListGetRangesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterValueListGetRangesResponse"); + private final static QName _KvkUpdateRemoveDossier_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateRemoveDossier"); + private final static QName _Logout_QNAME = new QName("http://www.webservices.nl/soap/", "logout"); + private final static QName _DutchBusinessUpdateCheckDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateCheckDossierResponse"); + private final static QName _BusinessSearchParametersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchParametersResponse"); + private final static QName _BusinessSearchParametersV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchParametersV3Response"); + private final static QName _CarRDWCarCheckCode_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarCheckCode"); + private final static QName _DutchBusinessGetExtractHistoryChanged_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryChanged"); + private final static QName _GeoLocationNeighborhoodCoordinatesRD_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationNeighborhoodCoordinatesRD"); + private final static QName _BusinessUpdateGetDossiers_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateGetDossiers"); + private final static QName _RoutePlannerInformationDutchAddress_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerInformationDutchAddress"); + private final static QName _GeoLocationNeighborhoodCoordinatesLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationNeighborhoodCoordinatesLatLon"); + private final static QName _KadasterV2GetKadastraalBerichtObjectByObjectIdResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetKadastraalBerichtObjectByObjectIdResponse"); + private final static QName _UserCreateV2_QNAME = new QName("http://www.webservices.nl/soap/", "userCreateV2"); + private final static QName _UserViewHostRestrictions_QNAME = new QName("http://www.webservices.nl/soap/", "userViewHostRestrictions"); + private final static QName _AddressProvinceSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressProvinceSearchResponse"); + private final static QName _DutchBusinessGetDossierV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetDossierV3Response"); + private final static QName _DnbWorldbaseMarketingPlusResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dnbWorldbaseMarketingPlusResponse"); + private final static QName _RiskCheckPerson_QNAME = new QName("http://www.webservices.nl/soap/", "riskCheckPerson"); + private final static QName _ComplianceGetBusinessResponse_QNAME = new QName("http://www.webservices.nl/soap/", "complianceGetBusinessResponse"); + private final static QName _GraydonCreditCompanyLiaisons_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditCompanyLiaisons"); + private final static QName _DutchBusinessGetConcernRelationsOverviewResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetConcernRelationsOverviewResponse"); + private final static QName _KadasterUittrekselKadastraleKaartPerceelV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPerceelV2Response"); + private final static QName _KadasterUittrekselKadastraleKaartPerceelV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPerceelV2"); + private final static QName _KvkUpdateGetChangedDossiersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateGetChangedDossiersResponse"); + private final static QName _KadasterUittrekselKadastraleKaartPerceelV3_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPerceelV3"); + private final static QName _UserSessionList_QNAME = new QName("http://www.webservices.nl/soap/", "userSessionList"); + private final static QName _KadasterKoopsommenOverzichtResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKoopsommenOverzichtResponse"); + private final static QName _ComplianceSearchPersons_QNAME = new QName("http://www.webservices.nl/soap/", "complianceSearchPersons"); + private final static QName _GeoLocationNeighborhoodDistance_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationNeighborhoodDistance"); + private final static QName _DutchBusinessSearchNewsByDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchNewsByDossierResponse"); + private final static QName _GraydonCreditManagementResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditManagementResponse"); + private final static QName _BusinessSearchPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchPostcode"); + private final static QName _BusinessSearchSelectionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchSelectionResponse"); + private final static QName _DutchBusinessGetExtractDocument_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractDocument"); + private final static QName _GraydonCreditGetReportResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditGetReportResponse"); + private final static QName _SepaIbanDetails_QNAME = new QName("http://www.webservices.nl/soap/", "sepaIbanDetails"); + private final static QName _BusinessUpdateGetChangedDossiers_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateGetChangedDossiers"); + private final static QName _BusinessGetEstablishmentNumber_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetEstablishmentNumber"); + private final static QName _KvkSearchDossierNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkSearchDossierNumberResponse"); + private final static QName _CarVWEPhotosResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEPhotosResponse"); + private final static QName _DutchBusinessSearchSelectionSimpleResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchSelectionSimpleResponse"); + private final static QName _CarRDWCarDataBP_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataBP"); + private final static QName _GraydonCreditVatNumber_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditVatNumber"); + private final static QName _KadasterV2GetBronDocumentResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetBronDocumentResponse"); + private final static QName _RoutePlannerDescriptionCoordinatesRDResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionCoordinatesRDResponse"); + private final static QName _KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduiding_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduiding"); + private final static QName _UserAddGroupResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userAddGroupResponse"); + private final static QName _KadasterEigendomsBerichtPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtPostcode"); + private final static QName _DutchBusinessSearchEstablishments_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchEstablishments"); + private final static QName _HeaderAuthenticate_QNAME = new QName("http://www.webservices.nl/soap/", "HeaderAuthenticate"); + private final static QName _DutchBusinessGetAnnualFinancialStatement_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetAnnualFinancialStatement"); + private final static QName _CarVWEListModels_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEListModels"); + private final static QName _UserEditV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "userEditV2Response"); + private final static QName _AddressPerceelFullParameterSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressPerceelFullParameterSearch"); + private final static QName _BusinessUpdateGetDossiersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateGetDossiersResponse"); + private final static QName _CreateTestUserResponse_QNAME = new QName("http://www.webservices.nl/soap/", "createTestUserResponse"); + private final static QName _AddressPerceelFullParameterSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressPerceelFullParameterSearchResponse"); + private final static QName _BovagGetMemberByDutchBusiness_QNAME = new QName("http://www.webservices.nl/soap/", "bovagGetMemberByDutchBusiness"); + private final static QName _InsolvencySearchPublicationsByPerson_QNAME = new QName("http://www.webservices.nl/soap/", "insolvencySearchPublicationsByPerson"); + private final static QName _GeoLocationRDToLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationRDToLatLon"); + private final static QName _DutchBusinessGetSBIResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetSBIResponse"); + private final static QName _UserEditBalance_QNAME = new QName("http://www.webservices.nl/soap/", "userEditBalance"); + private final static QName _AccountUserListV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "accountUserListV2Response"); + private final static QName _InternationalAddressSearchInteractive_QNAME = new QName("http://www.webservices.nl/soap/", "internationalAddressSearchInteractive"); + private final static QName _AddressDistrictSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressDistrictSearch"); + private final static QName _GeoLocationDistanceSortedNeighborhoodCodesRadius_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationDistanceSortedNeighborhoodCodesRadius"); + private final static QName _GeoLocationDistanceSortedPostcodesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationDistanceSortedPostcodesResponse"); + private final static QName _AddressProvinceList_QNAME = new QName("http://www.webservices.nl/soap/", "addressProvinceList"); + private final static QName _CarVWEListBrandsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEListBrandsResponse"); + private final static QName _AccountGetCreationStatus_QNAME = new QName("http://www.webservices.nl/soap/", "accountGetCreationStatus"); + private final static QName _GeoLocationDistanceSortedPostcodesRadius_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationDistanceSortedPostcodesRadius"); + private final static QName _AddressReeksPhraseSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksPhraseSearchResponse"); + private final static QName _DutchBusinessGetExtractHistoryDocumentDataV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryDocumentDataV3Response"); + private final static QName _DutchBusinessSearchNewsByDossier_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchNewsByDossier"); + private final static QName _GeoLocationAddressCoordinatesRDResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationAddressCoordinatesRDResponse"); + private final static QName _KadasterV2GetKadastraalBerichtObjectByObjectId_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetKadastraalBerichtObjectByObjectId"); + private final static QName _KadasterV2GetHypothecairBerichtObjectByKadastraleAanduiding_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetHypothecairBerichtObjectByKadastraleAanduiding"); + private final static QName _LoginResponse_QNAME = new QName("http://www.webservices.nl/soap/", "loginResponse"); + private final static QName _UserListAssignableGroups_QNAME = new QName("http://www.webservices.nl/soap/", "userListAssignableGroups"); + private final static QName _DutchBusinessSearchPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchPostcode"); + private final static QName _CarRDWCarDataPriceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataPriceResponse"); + private final static QName _KadasterHypothecairBerichtPostcodeV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPostcodeV2Response"); + private final static QName _KadasterBronDocumentResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterBronDocumentResponse"); + private final static QName _DutchBusinessUpdateAddDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateAddDossierResponse"); + private final static QName _AccountUserListV2_QNAME = new QName("http://www.webservices.nl/soap/", "accountUserListV2"); + private final static QName _BusinessGetSBIDescription_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetSBIDescription"); + private final static QName _RoutePlannerInformationDutchAddressResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerInformationDutchAddressResponse"); + private final static QName _UserListAssignableGroupsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userListAssignableGroupsResponse"); + private final static QName _BusinessSearchDossierNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchDossierNumberResponse"); + private final static QName _AddressNeighborhoodPhraseSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressNeighborhoodPhraseSearch"); + private final static QName _KadasterHypothecairBerichtPerceelV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPerceelV3Response"); + private final static QName _RoutePlannerEUMapResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerEUMapResponse"); + private final static QName _KadasterKadastraleKaartPerceelV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKadastraleKaartPerceelV2Response"); + private final static QName _KadasterV2GetHypothecairBerichtObjectByObjectIdResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetHypothecairBerichtObjectByObjectIdResponse"); + private final static QName _DutchBusinessUpdateGetDossiersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateGetDossiersResponse"); + private final static QName _AddressPerceelFullParameterSearchV2_QNAME = new QName("http://www.webservices.nl/soap/", "addressPerceelFullParameterSearchV2"); + private final static QName _DutchBusinessUBOStartInvestigationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOStartInvestigationResponse"); + private final static QName _AddressCitySearchV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "addressCitySearchV2Response"); + private final static QName _UserEditHostRestrictions_QNAME = new QName("http://www.webservices.nl/soap/", "userEditHostRestrictions"); + private final static QName _CarRDWCarDataOptions_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataOptions"); + private final static QName _MapViewPostcodeV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "mapViewPostcodeV2Response"); + private final static QName _DutchBusinessGetExtractHistoryDocumentDataV2_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryDocumentDataV2"); + private final static QName _CarVWEVersionYearDataResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEVersionYearDataResponse"); + private final static QName _DutchBusinessGetExtractHistoryDocumentDataV3_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryDocumentDataV3"); + private final static QName _KadasterV2GetHypothecairBerichtObjectByObjectId_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetHypothecairBerichtObjectByObjectId"); + private final static QName _KadasterUittrekselKadastraleKaartPerceel_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPerceel"); + private final static QName _KadasterEigendomsBerichtDocumentPerceelResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtDocumentPerceelResponse"); + private final static QName _AddressReeksPostcodeSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksPostcodeSearchResponse"); + private final static QName _CreditsafeGetReportFullV2_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeGetReportFullV2"); + private final static QName _AddressReeksParameterSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksParameterSearch"); + private final static QName _DutchBusinessUpdateGetOverviewResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateGetOverviewResponse"); + private final static QName _GeoLocationPostcodeCoordinatesRD_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationPostcodeCoordinatesRD"); + private final static QName _GeoLocationPostcodeDistanceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationPostcodeDistanceResponse"); + private final static QName _DutchBusinessUpdateGetChangedDossiersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateGetChangedDossiersResponse"); + private final static QName _ComplianceSearchBusinesses_QNAME = new QName("http://www.webservices.nl/soap/", "complianceSearchBusinesses"); + private final static QName _ComplianceSearchBusinessesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "complianceSearchBusinessesResponse"); + private final static QName _GeoLocationDistanceSortedPostcodesRadiusResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationDistanceSortedPostcodesRadiusResponse"); + private final static QName _DutchBusinessGetAdditionalPositionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetAdditionalPositionsResponse"); + private final static QName _MapViewLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "mapViewLatLonResponse"); + private final static QName _UserViewBalance_QNAME = new QName("http://www.webservices.nl/soap/", "userViewBalance"); + private final static QName _KvkSearchPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkSearchPostcodeResponse"); + private final static QName _KadasterV2GetKoopsommenOverzichtResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetKoopsommenOverzichtResponse"); + private final static QName _DnbGetReference_QNAME = new QName("http://www.webservices.nl/soap/", "dnbGetReference"); + private final static QName _MapViewRD_QNAME = new QName("http://www.webservices.nl/soap/", "mapViewRD"); + private final static QName _KvkGetExtractDocumentResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkGetExtractDocumentResponse"); + private final static QName _KadasterHypothecairBerichtPostcodeV3_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPostcodeV3"); + private final static QName _KadasterAddressCoordinates_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterAddressCoordinates"); + private final static QName _GraydonCreditSearchName_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditSearchName"); + private final static QName _RoutePlannerInformation_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerInformation"); + private final static QName _CreditsafeMonitorAddCompany_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeMonitorAddCompany"); + private final static QName _AddressReeksFullParameterSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksFullParameterSearchResponse"); + private final static QName _DutchBusinessGetSBIDescriptionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetSBIDescriptionResponse"); + private final static QName _DutchVehicleGetPurchaseReferenceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetPurchaseReferenceResponse"); + private final static QName _KadasterEigendomsBerichtPostcodeV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtPostcodeV2Response"); + private final static QName _DnbGetReferenceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dnbGetReferenceResponse"); + private final static QName _KadasterHypothecairBerichtPostcodeV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPostcodeV2"); + private final static QName _CarATDPriceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carATDPriceResponse"); + private final static QName _DutchAddressRangePostcodeSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchAddressRangePostcodeSearchResponse"); + private final static QName _DutchBusinessGetDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetDossierResponse"); + private final static QName _UserChangePassword_QNAME = new QName("http://www.webservices.nl/soap/", "userChangePassword"); + private final static QName _BusinessBIKToSBIResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessBIKToSBIResponse"); + private final static QName _CarVWEOptions_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEOptions"); + private final static QName _CarVWEBasicTypeDataResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEBasicTypeDataResponse"); + private final static QName _InsolvencySearchPublicationsByPersonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "insolvencySearchPublicationsByPersonResponse"); + private final static QName _CarRDWCarDataBPResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataBPResponse"); + private final static QName _KadasterKadastraleKaartPerceelResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKadastraleKaartPerceelResponse"); + private final static QName _GraydonCreditSearchPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditSearchPostcode"); + private final static QName _GeoLocationAddressCoordinatesRD_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationAddressCoordinatesRD"); + private final static QName _RoutePlannerInformationAddressResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerInformationAddressResponse"); + private final static QName _GeoLocationNeighborhoodCoordinatesRDResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationNeighborhoodCoordinatesRDResponse"); + private final static QName _AddressDistrictListNeighborhoods_QNAME = new QName("http://www.webservices.nl/soap/", "addressDistrictListNeighborhoods"); + private final static QName _BusinessGetDossierV3_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetDossierV3"); + private final static QName _BusinessGetBIKDescription_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetBIKDescription"); + private final static QName _SepaConvertBasicBankAccountNumber_QNAME = new QName("http://www.webservices.nl/soap/", "sepaConvertBasicBankAccountNumber"); + private final static QName _KadasterUittrekselKadastraleKaartPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPostcode"); + private final static QName _DriveInfoDistanceLookupResponse_QNAME = new QName("http://www.webservices.nl/soap/", "driveInfoDistanceLookupResponse"); + private final static QName _KadasterValueListGetMunicipalities_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterValueListGetMunicipalities"); + private final static QName _RoutePlannerDescriptionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionResponse"); + private final static QName _RoutePlannerEUInformation_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerEUInformation"); + private final static QName _DutchBusinessGetNonMarketingIndicatorResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetNonMarketingIndicatorResponse"); + private final static QName _AccountUserSearchV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "accountUserSearchV2Response"); + private final static QName _ComplianceSearchPersonsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "complianceSearchPersonsResponse"); + private final static QName _CreateTestUser_QNAME = new QName("http://www.webservices.nl/soap/", "createTestUser"); + private final static QName _CarVWEMeldcodeCheckResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEMeldcodeCheckResponse"); + private final static QName _CarATDPrice_QNAME = new QName("http://www.webservices.nl/soap/", "carATDPrice"); + private final static QName _DutchBusinessGetDossierV2_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetDossierV2"); + private final static QName _MapViewInternationalLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "mapViewInternationalLatLon"); + private final static QName _DnbSearchReferenceV2_QNAME = new QName("http://www.webservices.nl/soap/", "dnbSearchReferenceV2"); + private final static QName _DutchBusinessGetDossierV3_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetDossierV3"); + private final static QName _KadasterV2GetUittrekselKadastraleKaartByObjectIdResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetUittrekselKadastraleKaartByObjectIdResponse"); + private final static QName _SepaConvertBankAccountNumber_QNAME = new QName("http://www.webservices.nl/soap/", "sepaConvertBankAccountNumber"); + private final static QName _CarRDWCarDataBPV2_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataBPV2"); + private final static QName _KvkGetDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkGetDossierResponse"); + private final static QName _RoutePlannerEUMap_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerEUMap"); + private final static QName _CreditsafeSearchCriteria_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeSearchCriteria"); + private final static QName _UserNotifyResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userNotifyResponse"); + private final static QName _KadasterEigendomsBerichtPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtPostcodeResponse"); + private final static QName _SepaMatchAccountHolder_QNAME = new QName("http://www.webservices.nl/soap/", "sepaMatchAccountHolder"); + private final static QName _BusinessUpdateAddDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateAddDossierResponse"); + private final static QName _KvkSearchParametersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkSearchParametersResponse"); + private final static QName _AccountViewV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "accountViewV2Response"); + private final static QName _DriveInfoTimeLookup_QNAME = new QName("http://www.webservices.nl/soap/", "driveInfoTimeLookup"); + private final static QName _KadasterV2GetKadastraalBerichtObjectByKadastraleAanduiding_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetKadastraalBerichtObjectByKadastraleAanduiding"); + private final static QName _RoutePlannerDescriptionDutchAddress_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionDutchAddress"); + private final static QName _DnbQuickCheckResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dnbQuickCheckResponse"); + private final static QName _GeoLocationNeighborhoodDistanceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationNeighborhoodDistanceResponse"); + private final static QName _KadasterValueListGetMunicipalitiesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterValueListGetMunicipalitiesResponse"); + private final static QName _KvkUpdateRemoveDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateRemoveDossierResponse"); + private final static QName _DnbWorldbaseMarketingPlusLinkage_QNAME = new QName("http://www.webservices.nl/soap/", "dnbWorldbaseMarketingPlusLinkage"); + private final static QName _CreditsafeMonitorGetUpdatedCompanies_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeMonitorGetUpdatedCompanies"); + private final static QName _CreditsafeSearchV2_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeSearchV2"); + private final static QName _DutchBusinessSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchResponse"); + private final static QName _DutchBusinessUBOCostsInvestigation_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOCostsInvestigation"); + private final static QName _UserViewHostRestrictionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userViewHostRestrictionsResponse"); + private final static QName _AddressReeksAddressSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksAddressSearchResponse"); + private final static QName _DutchBusinessGetExtractDocumentDataV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractDocumentDataV3Response"); + private final static QName _KvkSearchSelection_QNAME = new QName("http://www.webservices.nl/soap/", "kvkSearchSelection"); + private final static QName _DutchBusinessGetVatNumber_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetVatNumber"); + private final static QName _DutchBusinessGetDossier_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetDossier"); + private final static QName _GraydonCreditSearchNameResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditSearchNameResponse"); + private final static QName _RoutePlannerDescriptionAddressResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionAddressResponse"); + private final static QName _RoutePlannerInformationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerInformationResponse"); + private final static QName _DutchBusinessGetConcernRelationsOverview_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetConcernRelationsOverview"); + private final static QName _GeoLocationAddressCoordinatesLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationAddressCoordinatesLatLon"); + private final static QName _KadasterEigendomsBerichtPerceel_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtPerceel"); + private final static QName _DutchBusinessGetExtractHistoryDocumentDataResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryDocumentDataResponse"); + private final static QName _DutchBusinessGetPositionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetPositionsResponse"); + private final static QName _AddressReeksPhraseSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksPhraseSearch"); + private final static QName _DutchBusinessGetLeiResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetLeiResponse"); + private final static QName _UserViewV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "userViewV2Response"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.suggs.companydatafinderlib.companyinfo.wsdl + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link KadasterHypothecairBerichtPostcodeResponseType } + * + */ + public KadasterHypothecairBerichtPostcodeResponseType createKadasterHypothecairBerichtPostcodeResponseType() { + return new KadasterHypothecairBerichtPostcodeResponseType(); + } + + /** + * Create an instance of {@link AccountGetOrderTokenRequestType } + * + */ + public AccountGetOrderTokenRequestType createAccountGetOrderTokenRequestType() { + return new AccountGetOrderTokenRequestType(); + } + + /** + * Create an instance of {@link BusinessSBIToBIKRequestType } + * + */ + public BusinessSBIToBIKRequestType createBusinessSBIToBIKRequestType() { + return new BusinessSBIToBIKRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractDocumentDataRequestType } + * + */ + public DutchBusinessGetExtractDocumentDataRequestType createDutchBusinessGetExtractDocumentDataRequestType() { + return new DutchBusinessGetExtractDocumentDataRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractHistoryResponseType } + * + */ + public DutchBusinessGetExtractHistoryResponseType createDutchBusinessGetExtractHistoryResponseType() { + return new DutchBusinessGetExtractHistoryResponseType(); + } + + /** + * Create an instance of {@link GeoLocationLatLonToRDResponseType } + * + */ + public GeoLocationLatLonToRDResponseType createGeoLocationLatLonToRDResponseType() { + return new GeoLocationLatLonToRDResponseType(); + } + + /** + * Create an instance of {@link InsolvencySearchPublicationsByCoCNumberRequestType } + * + */ + public InsolvencySearchPublicationsByCoCNumberRequestType createInsolvencySearchPublicationsByCoCNumberRequestType() { + return new InsolvencySearchPublicationsByCoCNumberRequestType(); + } + + /** + * Create an instance of {@link DnbSearchReferenceV2ResponseType } + * + */ + public DnbSearchReferenceV2ResponseType createDnbSearchReferenceV2ResponseType() { + return new DnbSearchReferenceV2ResponseType(); + } + + /** + * Create an instance of {@link RoutePlannerRDDescriptionCoordinatesRDRequestType } + * + */ + public RoutePlannerRDDescriptionCoordinatesRDRequestType createRoutePlannerRDDescriptionCoordinatesRDRequestType() { + return new RoutePlannerRDDescriptionCoordinatesRDRequestType(); + } + + /** + * Create an instance of {@link SepaMatchAccountHolderResponseType } + * + */ + public SepaMatchAccountHolderResponseType createSepaMatchAccountHolderResponseType() { + return new SepaMatchAccountHolderResponseType(); + } + + /** + * Create an instance of {@link GeoLocationAddressCoordinatesLatLonResponseType } + * + */ + public GeoLocationAddressCoordinatesLatLonResponseType createGeoLocationAddressCoordinatesLatLonResponseType() { + return new GeoLocationAddressCoordinatesLatLonResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractDocumentResponseType } + * + */ + public DutchBusinessGetExtractDocumentResponseType createDutchBusinessGetExtractDocumentResponseType() { + return new DutchBusinessGetExtractDocumentResponseType(); + } + + /** + * Create an instance of {@link KvkUpdateGetDossiersRequestType } + * + */ + public KvkUpdateGetDossiersRequestType createKvkUpdateGetDossiersRequestType() { + return new KvkUpdateGetDossiersRequestType(); + } + + /** + * Create an instance of {@link BusinessSearchParametersRequestType } + * + */ + public BusinessSearchParametersRequestType createBusinessSearchParametersRequestType() { + return new BusinessSearchParametersRequestType(); + } + + /** + * Create an instance of {@link RoutePlannerDescriptionDutchAddressResponseType } + * + */ + public RoutePlannerDescriptionDutchAddressResponseType createRoutePlannerDescriptionDutchAddressResponseType() { + return new RoutePlannerDescriptionDutchAddressResponseType(); + } + + /** + * Create an instance of {@link AddressProvinceListNeighborhoodsRequestType } + * + */ + public AddressProvinceListNeighborhoodsRequestType createAddressProvinceListNeighborhoodsRequestType() { + return new AddressProvinceListNeighborhoodsRequestType(); + } + + /** + * Create an instance of {@link BusinessGetDossierSBIRequestType } + * + */ + public BusinessGetDossierSBIRequestType createBusinessGetDossierSBIRequestType() { + return new BusinessGetDossierSBIRequestType(); + } + + /** + * Create an instance of {@link DnbWorldbaseMarketingPlusLinkageResponseType } + * + */ + public DnbWorldbaseMarketingPlusLinkageResponseType createDnbWorldbaseMarketingPlusLinkageResponseType() { + return new DnbWorldbaseMarketingPlusLinkageResponseType(); + } + + /** + * Create an instance of {@link CarRDWCarDataOptionsResponseType } + * + */ + public CarRDWCarDataOptionsResponseType createCarRDWCarDataOptionsResponseType() { + return new CarRDWCarDataOptionsResponseType(); + } + + /** + * Create an instance of {@link DutchVehicleGetVehicleV2ResponseType } + * + */ + public DutchVehicleGetVehicleV2ResponseType createDutchVehicleGetVehicleV2ResponseType() { + return new DutchVehicleGetVehicleV2ResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateGetDossiersRequestType } + * + */ + public DutchBusinessUpdateGetDossiersRequestType createDutchBusinessUpdateGetDossiersRequestType() { + return new DutchBusinessUpdateGetDossiersRequestType(); + } + + /** + * Create an instance of {@link GraydonCreditSearchIdentificationResponseType } + * + */ + public GraydonCreditSearchIdentificationResponseType createGraydonCreditSearchIdentificationResponseType() { + return new GraydonCreditSearchIdentificationResponseType(); + } + + /** + * Create an instance of {@link KvkSearchPostcodeRequestType } + * + */ + public KvkSearchPostcodeRequestType createKvkSearchPostcodeRequestType() { + return new KvkSearchPostcodeRequestType(); + } + + /** + * Create an instance of {@link AccountEditHostRestrictionsResponseType } + * + */ + public AccountEditHostRestrictionsResponseType createAccountEditHostRestrictionsResponseType() { + return new AccountEditHostRestrictionsResponseType(); + } + + /** + * Create an instance of {@link CarRDWCarDataExtendedResponseType } + * + */ + public CarRDWCarDataExtendedResponseType createCarRDWCarDataExtendedResponseType() { + return new CarRDWCarDataExtendedResponseType(); + } + + /** + * Create an instance of {@link InternationalAddressSearchInteractiveResponseType } + * + */ + public InternationalAddressSearchInteractiveResponseType createInternationalAddressSearchInteractiveResponseType() { + return new InternationalAddressSearchInteractiveResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessUBOCheckInvestigationRequestType } + * + */ + public DutchBusinessUBOCheckInvestigationRequestType createDutchBusinessUBOCheckInvestigationRequestType() { + return new DutchBusinessUBOCheckInvestigationRequestType(); + } + + /** + * Create an instance of {@link AccountViewV2RequestType } + * + */ + public AccountViewV2RequestType createAccountViewV2RequestType() { + return new AccountViewV2RequestType(); + } + + /** + * Create an instance of {@link VatValidateRequestType } + * + */ + public VatValidateRequestType createVatValidateRequestType() { + return new VatValidateRequestType(); + } + + /** + * Create an instance of {@link DnbQuickCheckRequestType } + * + */ + public DnbQuickCheckRequestType createDnbQuickCheckRequestType() { + return new DnbQuickCheckRequestType(); + } + + /** + * Create an instance of {@link KadasterKadastraleKaartPostcodeResponseType } + * + */ + public KadasterKadastraleKaartPostcodeResponseType createKadasterKadastraleKaartPostcodeResponseType() { + return new KadasterKadastraleKaartPostcodeResponseType(); + } + + /** + * Create an instance of {@link BelgianBusinessGetDossierResponseType } + * + */ + public BelgianBusinessGetDossierResponseType createBelgianBusinessGetDossierResponseType() { + return new BelgianBusinessGetDossierResponseType(); + } + + /** + * Create an instance of {@link CreditsafeSearchV2ResponseType } + * + */ + public CreditsafeSearchV2ResponseType createCreditsafeSearchV2ResponseType() { + return new CreditsafeSearchV2ResponseType(); + } + + /** + * Create an instance of {@link AddressCitySearchV2RequestType } + * + */ + public AddressCitySearchV2RequestType createAddressCitySearchV2RequestType() { + return new AddressCitySearchV2RequestType(); + } + + /** + * Create an instance of {@link KvkUpdateAddDossierRequestType } + * + */ + public KvkUpdateAddDossierRequestType createKvkUpdateAddDossierRequestType() { + return new KvkUpdateAddDossierRequestType(); + } + + /** + * Create an instance of {@link AccountViewBalanceRequestType } + * + */ + public AccountViewBalanceRequestType createAccountViewBalanceRequestType() { + return new AccountViewBalanceRequestType(); + } + + /** + * Create an instance of {@link BusinessSearchSelectionRequestType } + * + */ + public BusinessSearchSelectionRequestType createBusinessSearchSelectionRequestType() { + return new BusinessSearchSelectionRequestType(); + } + + /** + * Create an instance of {@link AddressPerceelParameterSearchRequestType } + * + */ + public AddressPerceelParameterSearchRequestType createAddressPerceelParameterSearchRequestType() { + return new AddressPerceelParameterSearchRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetLegalExtractDocumentDataV2ResponseType } + * + */ + public DutchBusinessGetLegalExtractDocumentDataV2ResponseType createDutchBusinessGetLegalExtractDocumentDataV2ResponseType() { + return new DutchBusinessGetLegalExtractDocumentDataV2ResponseType(); + } + + /** + * Create an instance of {@link KvkSearchParametersRequestType } + * + */ + public KvkSearchParametersRequestType createKvkSearchParametersRequestType() { + return new KvkSearchParametersRequestType(); + } + + /** + * Create an instance of {@link HeaderLoginType } + * + */ + public HeaderLoginType createHeaderLoginType() { + return new HeaderLoginType(); + } + + /** + * Create an instance of {@link CreditsafeSearchResponseType } + * + */ + public CreditsafeSearchResponseType createCreditsafeSearchResponseType() { + return new CreditsafeSearchResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractHistoryDocumentDataV2ResponseType } + * + */ + public DutchBusinessGetExtractHistoryDocumentDataV2ResponseType createDutchBusinessGetExtractHistoryDocumentDataV2ResponseType() { + return new DutchBusinessGetExtractHistoryDocumentDataV2ResponseType(); + } + + /** + * Create an instance of {@link BusinessSearchParametersV3RequestType } + * + */ + public BusinessSearchParametersV3RequestType createBusinessSearchParametersV3RequestType() { + return new BusinessSearchParametersV3RequestType(); + } + + /** + * Create an instance of {@link BusinessSearchParametersV2RequestType } + * + */ + public BusinessSearchParametersV2RequestType createBusinessSearchParametersV2RequestType() { + return new BusinessSearchParametersV2RequestType(); + } + + /** + * Create an instance of {@link MapViewInternationalLatLonResponseType } + * + */ + public MapViewInternationalLatLonResponseType createMapViewInternationalLatLonResponseType() { + return new MapViewInternationalLatLonResponseType(); + } + + /** + * Create an instance of {@link CreditsafeMonitorRemoveCompanyResponseType } + * + */ + public CreditsafeMonitorRemoveCompanyResponseType createCreditsafeMonitorRemoveCompanyResponseType() { + return new CreditsafeMonitorRemoveCompanyResponseType(); + } + + /** + * Create an instance of {@link ComplianceGetBusinessRequestType } + * + */ + public ComplianceGetBusinessRequestType createComplianceGetBusinessRequestType() { + return new ComplianceGetBusinessRequestType(); + } + + /** + * Create an instance of {@link KadasterKoopsommenOverzichtV2ResponseType } + * + */ + public KadasterKoopsommenOverzichtV2ResponseType createKadasterKoopsommenOverzichtV2ResponseType() { + return new KadasterKoopsommenOverzichtV2ResponseType(); + } + + /** + * Create an instance of {@link BusinessGetDossierExtendedRequestType } + * + */ + public BusinessGetDossierExtendedRequestType createBusinessGetDossierExtendedRequestType() { + return new BusinessGetDossierExtendedRequestType(); + } + + /** + * Create an instance of {@link KadasterV2GetBronDocumentRequestType } + * + */ + public KadasterV2GetBronDocumentRequestType createKadasterV2GetBronDocumentRequestType() { + return new KadasterV2GetBronDocumentRequestType(); + } + + /** + * Create an instance of {@link KvkUpdateCheckDossierRequestType } + * + */ + public KvkUpdateCheckDossierRequestType createKvkUpdateCheckDossierRequestType() { + return new KvkUpdateCheckDossierRequestType(); + } + + /** + * Create an instance of {@link MapViewLatLonRequestType } + * + */ + public MapViewLatLonRequestType createMapViewLatLonRequestType() { + return new MapViewLatLonRequestType(); + } + + /** + * Create an instance of {@link BusinessUpdateGetChangedDossiersResponseType } + * + */ + public BusinessUpdateGetChangedDossiersResponseType createBusinessUpdateGetChangedDossiersResponseType() { + return new BusinessUpdateGetChangedDossiersResponseType(); + } + + /** + * Create an instance of {@link GraydonCreditGetReportRequestType } + * + */ + public GraydonCreditGetReportRequestType createGraydonCreditGetReportRequestType() { + return new GraydonCreditGetReportRequestType(); + } + + /** + * Create an instance of {@link AddressProvinceListResponseType } + * + */ + public AddressProvinceListResponseType createAddressProvinceListResponseType() { + return new AddressProvinceListResponseType(); + } + + /** + * Create an instance of {@link CreditsafeMonitorRemoveCompanyRequestType } + * + */ + public CreditsafeMonitorRemoveCompanyRequestType createCreditsafeMonitorRemoveCompanyRequestType() { + return new CreditsafeMonitorRemoveCompanyRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateRemoveDossierResponseType } + * + */ + public DutchBusinessUpdateRemoveDossierResponseType createDutchBusinessUpdateRemoveDossierResponseType() { + return new DutchBusinessUpdateRemoveDossierResponseType(); + } + + /** + * Create an instance of {@link AddressDistrictListNeighborhoodsResponseType } + * + */ + public AddressDistrictListNeighborhoodsResponseType createAddressDistrictListNeighborhoodsResponseType() { + return new AddressDistrictListNeighborhoodsResponseType(); + } + + /** + * Create an instance of {@link DutchVehicleGetOwnerHistoryResponseType } + * + */ + public DutchVehicleGetOwnerHistoryResponseType createDutchVehicleGetOwnerHistoryResponseType() { + return new DutchVehicleGetOwnerHistoryResponseType(); + } + + /** + * Create an instance of {@link KadasterV2GetHypothecairBerichtObjectByAdresResponseType } + * + */ + public KadasterV2GetHypothecairBerichtObjectByAdresResponseType createKadasterV2GetHypothecairBerichtObjectByAdresResponseType() { + return new KadasterV2GetHypothecairBerichtObjectByAdresResponseType(); + } + + /** + * Create an instance of {@link CreditsafeSearchRequestType } + * + */ + public CreditsafeSearchRequestType createCreditsafeSearchRequestType() { + return new CreditsafeSearchRequestType(); + } + + /** + * Create an instance of {@link DutchVehicleGetPurchaseReferenceRequestType } + * + */ + public DutchVehicleGetPurchaseReferenceRequestType createDutchVehicleGetPurchaseReferenceRequestType() { + return new DutchVehicleGetPurchaseReferenceRequestType(); + } + + /** + * Create an instance of {@link AccountEditV2ResponseType } + * + */ + public AccountEditV2ResponseType createAccountEditV2ResponseType() { + return new AccountEditV2ResponseType(); + } + + /** + * Create an instance of {@link DnbBusinessVerificationResponseType } + * + */ + public DnbBusinessVerificationResponseType createDnbBusinessVerificationResponseType() { + return new DnbBusinessVerificationResponseType(); + } + + /** + * Create an instance of {@link CarVWEVersionPriceResponseType } + * + */ + public CarVWEVersionPriceResponseType createCarVWEVersionPriceResponseType() { + return new CarVWEVersionPriceResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetLegalExtractDocumentDataV2RequestType } + * + */ + public DutchBusinessGetLegalExtractDocumentDataV2RequestType createDutchBusinessGetLegalExtractDocumentDataV2RequestType() { + return new DutchBusinessGetLegalExtractDocumentDataV2RequestType(); + } + + /** + * Create an instance of {@link UserRemoveRequestType } + * + */ + public UserRemoveRequestType createUserRemoveRequestType() { + return new UserRemoveRequestType(); + } + + /** + * Create an instance of {@link UserViewBalanceResponseType } + * + */ + public UserViewBalanceResponseType createUserViewBalanceResponseType() { + return new UserViewBalanceResponseType(); + } + + /** + * Create an instance of {@link CarRDWCarDataRequestType } + * + */ + public CarRDWCarDataRequestType createCarRDWCarDataRequestType() { + return new CarRDWCarDataRequestType(); + } + + /** + * Create an instance of {@link UserAddGroupRequestType } + * + */ + public UserAddGroupRequestType createUserAddGroupRequestType() { + return new UserAddGroupRequestType(); + } + + /** + * Create an instance of {@link DutchVehicleGetVehicleResponseType } + * + */ + public DutchVehicleGetVehicleResponseType createDutchVehicleGetVehicleResponseType() { + return new DutchVehicleGetVehicleResponseType(); + } + + /** + * Create an instance of {@link GeoLocationInternationalPostcodeCoordinatesLatLonResponseType } + * + */ + public GeoLocationInternationalPostcodeCoordinatesLatLonResponseType createGeoLocationInternationalPostcodeCoordinatesLatLonResponseType() { + return new GeoLocationInternationalPostcodeCoordinatesLatLonResponseType(); + } + + /** + * Create an instance of {@link MapViewPostcodeV2RequestType } + * + */ + public MapViewPostcodeV2RequestType createMapViewPostcodeV2RequestType() { + return new MapViewPostcodeV2RequestType(); + } + + /** + * Create an instance of {@link KvkSearchDossierNumberRequestType } + * + */ + public KvkSearchDossierNumberRequestType createKvkSearchDossierNumberRequestType() { + return new KvkSearchDossierNumberRequestType(); + } + + /** + * Create an instance of {@link UserEditExtendedV2ResponseType } + * + */ + public UserEditExtendedV2ResponseType createUserEditExtendedV2ResponseType() { + return new UserEditExtendedV2ResponseType(); + } + + /** + * Create an instance of {@link AddressDistrictListCitiesResponseType } + * + */ + public AddressDistrictListCitiesResponseType createAddressDistrictListCitiesResponseType() { + return new AddressDistrictListCitiesResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetLegalExtractDocumentDataV3RequestType } + * + */ + public DutchBusinessGetLegalExtractDocumentDataV3RequestType createDutchBusinessGetLegalExtractDocumentDataV3RequestType() { + return new DutchBusinessGetLegalExtractDocumentDataV3RequestType(); + } + + /** + * Create an instance of {@link DutchVehicleGetMarketValueResponseType } + * + */ + public DutchVehicleGetMarketValueResponseType createDutchVehicleGetMarketValueResponseType() { + return new DutchVehicleGetMarketValueResponseType(); + } + + /** + * Create an instance of {@link AreaCodeLookupResponseType } + * + */ + public AreaCodeLookupResponseType createAreaCodeLookupResponseType() { + return new AreaCodeLookupResponseType(); + } + + /** + * Create an instance of {@link KadasterEigendomsBerichtDocumentPostcodeResponseType } + * + */ + public KadasterEigendomsBerichtDocumentPostcodeResponseType createKadasterEigendomsBerichtDocumentPostcodeResponseType() { + return new KadasterEigendomsBerichtDocumentPostcodeResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetDossierV2ResponseType } + * + */ + public DutchBusinessGetDossierV2ResponseType createDutchBusinessGetDossierV2ResponseType() { + return new DutchBusinessGetDossierV2ResponseType(); + } + + /** + * Create an instance of {@link BusinessSearchSelectionV2ResponseType } + * + */ + public BusinessSearchSelectionV2ResponseType createBusinessSearchSelectionV2ResponseType() { + return new BusinessSearchSelectionV2ResponseType(); + } + + /** + * Create an instance of {@link AddressDistrictListCitiesRequestType } + * + */ + public AddressDistrictListCitiesRequestType createAddressDistrictListCitiesRequestType() { + return new AddressDistrictListCitiesRequestType(); + } + + /** + * Create an instance of {@link GeoLocationPostcodeCoordinatesLatLonRequestType } + * + */ + public GeoLocationPostcodeCoordinatesLatLonRequestType createGeoLocationPostcodeCoordinatesLatLonRequestType() { + return new GeoLocationPostcodeCoordinatesLatLonRequestType(); + } + + /** + * Create an instance of {@link KadasterV2GetKadastraalBerichtObjectByAdresResponseType } + * + */ + public KadasterV2GetKadastraalBerichtObjectByAdresResponseType createKadasterV2GetKadastraalBerichtObjectByAdresResponseType() { + return new KadasterV2GetKadastraalBerichtObjectByAdresResponseType(); + } + + /** + * Create an instance of {@link GeoLocationRDToAddressV2ResponseType } + * + */ + public GeoLocationRDToAddressV2ResponseType createGeoLocationRDToAddressV2ResponseType() { + return new GeoLocationRDToAddressV2ResponseType(); + } + + /** + * Create an instance of {@link KadasterUittrekselKadastraleKaartPerceelV3ResponseType } + * + */ + public KadasterUittrekselKadastraleKaartPerceelV3ResponseType createKadasterUittrekselKadastraleKaartPerceelV3ResponseType() { + return new KadasterUittrekselKadastraleKaartPerceelV3ResponseType(); + } + + /** + * Create an instance of {@link RoutePlannerEUInformationResponseType } + * + */ + public RoutePlannerEUInformationResponseType createRoutePlannerEUInformationResponseType() { + return new RoutePlannerEUInformationResponseType(); + } + + /** + * Create an instance of {@link GeoLocationDistanceSortedPostcodesRequestType } + * + */ + public GeoLocationDistanceSortedPostcodesRequestType createGeoLocationDistanceSortedPostcodesRequestType() { + return new GeoLocationDistanceSortedPostcodesRequestType(); + } + + /** + * Create an instance of {@link GraydonCreditVatNumberResponseType } + * + */ + public GraydonCreditVatNumberResponseType createGraydonCreditVatNumberResponseType() { + return new GraydonCreditVatNumberResponseType(); + } + + /** + * Create an instance of {@link AreaCodeToNeighborhoodcodeResponseType } + * + */ + public AreaCodeToNeighborhoodcodeResponseType createAreaCodeToNeighborhoodcodeResponseType() { + return new AreaCodeToNeighborhoodcodeResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetOrganizationTreeResponseType } + * + */ + public DutchBusinessGetOrganizationTreeResponseType createDutchBusinessGetOrganizationTreeResponseType() { + return new DutchBusinessGetOrganizationTreeResponseType(); + } + + /** + * Create an instance of {@link GeoLocationHaversineDistanceRequestType } + * + */ + public GeoLocationHaversineDistanceRequestType createGeoLocationHaversineDistanceRequestType() { + return new GeoLocationHaversineDistanceRequestType(); + } + + /** + * Create an instance of {@link RoutePlannerRDDescriptionRequestType } + * + */ + public RoutePlannerRDDescriptionRequestType createRoutePlannerRDDescriptionRequestType() { + return new RoutePlannerRDDescriptionRequestType(); + } + + /** + * Create an instance of {@link CarVWEMeldcodeCheckRequestType } + * + */ + public CarVWEMeldcodeCheckRequestType createCarVWEMeldcodeCheckRequestType() { + return new CarVWEMeldcodeCheckRequestType(); + } + + /** + * Create an instance of {@link GeoLocationHaversineDistanceResponseType } + * + */ + public GeoLocationHaversineDistanceResponseType createGeoLocationHaversineDistanceResponseType() { + return new GeoLocationHaversineDistanceResponseType(); + } + + /** + * Create an instance of {@link BusinessUpdateCheckDossierRequestType } + * + */ + public BusinessUpdateCheckDossierRequestType createBusinessUpdateCheckDossierRequestType() { + return new BusinessUpdateCheckDossierRequestType(); + } + + /** + * Create an instance of {@link GeoLocationRDToPostcodeRequestType } + * + */ + public GeoLocationRDToPostcodeRequestType createGeoLocationRDToPostcodeRequestType() { + return new GeoLocationRDToPostcodeRequestType(); + } + + /** + * Create an instance of {@link BovagGetMemberByBovagIdRequestType } + * + */ + public BovagGetMemberByBovagIdRequestType createBovagGetMemberByBovagIdRequestType() { + return new BovagGetMemberByBovagIdRequestType(); + } + + /** + * Create an instance of {@link KvkSearchSelectionResponseType } + * + */ + public KvkSearchSelectionResponseType createKvkSearchSelectionResponseType() { + return new KvkSearchSelectionResponseType(); + } + + /** + * Create an instance of {@link GeoLocationRDToAddressV2RequestType } + * + */ + public GeoLocationRDToAddressV2RequestType createGeoLocationRDToAddressV2RequestType() { + return new GeoLocationRDToAddressV2RequestType(); + } + + /** + * Create an instance of {@link MetaGetServicesRequestType } + * + */ + public MetaGetServicesRequestType createMetaGetServicesRequestType() { + return new MetaGetServicesRequestType(); + } + + /** + * Create an instance of {@link KadasterKadastraleKaartPostcodeV2RequestType } + * + */ + public KadasterKadastraleKaartPostcodeV2RequestType createKadasterKadastraleKaartPostcodeV2RequestType() { + return new KadasterKadastraleKaartPostcodeV2RequestType(); + } + + /** + * Create an instance of {@link AccountGetCreationTokenResponseType } + * + */ + public AccountGetCreationTokenResponseType createAccountGetCreationTokenResponseType() { + return new AccountGetCreationTokenResponseType(); + } + + /** + * Create an instance of {@link GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType } + * + */ + public GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType createGeoLocationInternationalAddressCoordinatesLatLonV2ResponseType() { + return new GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType(); + } + + /** + * Create an instance of {@link RoutePlannerGetRouteResponseType } + * + */ + public RoutePlannerGetRouteResponseType createRoutePlannerGetRouteResponseType() { + return new RoutePlannerGetRouteResponseType(); + } + + /** + * Create an instance of {@link UserSessionRemoveResponseType } + * + */ + public UserSessionRemoveResponseType createUserSessionRemoveResponseType() { + return new UserSessionRemoveResponseType(); + } + + /** + * Create an instance of {@link BusinessSBIToBIKResponseType } + * + */ + public BusinessSBIToBIKResponseType createBusinessSBIToBIKResponseType() { + return new BusinessSBIToBIKResponseType(); + } + + /** + * Create an instance of {@link InsolvencyGetCaseByPublicationRequestType } + * + */ + public InsolvencyGetCaseByPublicationRequestType createInsolvencyGetCaseByPublicationRequestType() { + return new InsolvencyGetCaseByPublicationRequestType(); + } + + /** + * Create an instance of {@link BusinessSearchSelectionV2RequestType } + * + */ + public BusinessSearchSelectionV2RequestType createBusinessSearchSelectionV2RequestType() { + return new BusinessSearchSelectionV2RequestType(); + } + + /** + * Create an instance of {@link CarRDWCarDataV3ResponseType } + * + */ + public CarRDWCarDataV3ResponseType createCarRDWCarDataV3ResponseType() { + return new CarRDWCarDataV3ResponseType(); + } + + /** + * Create an instance of {@link DnbWorldbaseMarketingPlusRequestType } + * + */ + public DnbWorldbaseMarketingPlusRequestType createDnbWorldbaseMarketingPlusRequestType() { + return new DnbWorldbaseMarketingPlusRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchDossierNumberRequestType } + * + */ + public DutchBusinessSearchDossierNumberRequestType createDutchBusinessSearchDossierNumberRequestType() { + return new DutchBusinessSearchDossierNumberRequestType(); + } + + /** + * Create an instance of {@link KadasterEigendomsBerichtPostcodeV2RequestType } + * + */ + public KadasterEigendomsBerichtPostcodeV2RequestType createKadasterEigendomsBerichtPostcodeV2RequestType() { + return new KadasterEigendomsBerichtPostcodeV2RequestType(); + } + + /** + * Create an instance of {@link KadasterHypothecairBerichtPerceelResponseType } + * + */ + public KadasterHypothecairBerichtPerceelResponseType createKadasterHypothecairBerichtPerceelResponseType() { + return new KadasterHypothecairBerichtPerceelResponseType(); + } + + /** + * Create an instance of {@link AddressCityListNeighborhoodsRequestType } + * + */ + public AddressCityListNeighborhoodsRequestType createAddressCityListNeighborhoodsRequestType() { + return new AddressCityListNeighborhoodsRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchParametersV2ResponseType } + * + */ + public DutchBusinessSearchParametersV2ResponseType createDutchBusinessSearchParametersV2ResponseType() { + return new DutchBusinessSearchParametersV2ResponseType(); + } + + /** + * Create an instance of {@link UserSessionListResponseType } + * + */ + public UserSessionListResponseType createUserSessionListResponseType() { + return new UserSessionListResponseType(); + } + + /** + * Create an instance of {@link InternationalAddressSearchV2RequestType } + * + */ + public InternationalAddressSearchV2RequestType createInternationalAddressSearchV2RequestType() { + return new InternationalAddressSearchV2RequestType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchPostcodeResponseType } + * + */ + public DutchBusinessSearchPostcodeResponseType createDutchBusinessSearchPostcodeResponseType() { + return new DutchBusinessSearchPostcodeResponseType(); + } + + /** + * Create an instance of {@link KadasterAddressCoordinatesResponseType } + * + */ + public KadasterAddressCoordinatesResponseType createKadasterAddressCoordinatesResponseType() { + return new KadasterAddressCoordinatesResponseType(); + } + + /** + * Create an instance of {@link GeoLocationInternationalAddressCoordinatesLatLonV2RequestType } + * + */ + public GeoLocationInternationalAddressCoordinatesLatLonV2RequestType createGeoLocationInternationalAddressCoordinatesLatLonV2RequestType() { + return new GeoLocationInternationalAddressCoordinatesLatLonV2RequestType(); + } + + /** + * Create an instance of {@link BusinessSearchDossierNumberRequestType } + * + */ + public BusinessSearchDossierNumberRequestType createBusinessSearchDossierNumberRequestType() { + return new BusinessSearchDossierNumberRequestType(); + } + + /** + * Create an instance of {@link RoutePlannerDescriptionShortestResponseType } + * + */ + public RoutePlannerDescriptionShortestResponseType createRoutePlannerDescriptionShortestResponseType() { + return new RoutePlannerDescriptionShortestResponseType(); + } + + /** + * Create an instance of {@link AddressProvinceSearchRequestType } + * + */ + public AddressProvinceSearchRequestType createAddressProvinceSearchRequestType() { + return new AddressProvinceSearchRequestType(); + } + + /** + * Create an instance of {@link CarRDWCarCheckCodeResponseType } + * + */ + public CarRDWCarCheckCodeResponseType createCarRDWCarCheckCodeResponseType() { + return new CarRDWCarCheckCodeResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchRequestType } + * + */ + public DutchBusinessSearchRequestType createDutchBusinessSearchRequestType() { + return new DutchBusinessSearchRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateAddDossierRequestType } + * + */ + public DutchBusinessUpdateAddDossierRequestType createDutchBusinessUpdateAddDossierRequestType() { + return new DutchBusinessUpdateAddDossierRequestType(); + } + + /** + * Create an instance of {@link KadasterKoopsommenOverzichtV2RequestType } + * + */ + public KadasterKoopsommenOverzichtV2RequestType createKadasterKoopsommenOverzichtV2RequestType() { + return new KadasterKoopsommenOverzichtV2RequestType(); + } + + /** + * Create an instance of {@link BusinessGetDossierExtendedResponseType } + * + */ + public BusinessGetDossierExtendedResponseType createBusinessGetDossierExtendedResponseType() { + return new BusinessGetDossierExtendedResponseType(); + } + + /** + * Create an instance of {@link AddressDistrictSearchResponseType } + * + */ + public AddressDistrictSearchResponseType createAddressDistrictSearchResponseType() { + return new AddressDistrictSearchResponseType(); + } + + /** + * Create an instance of {@link BelgianBusinessGetDossierRequestType } + * + */ + public BelgianBusinessGetDossierRequestType createBelgianBusinessGetDossierRequestType() { + return new BelgianBusinessGetDossierRequestType(); + } + + /** + * Create an instance of {@link GeoLocationInternationalPostcodeCoordinatesLatLonRequestType } + * + */ + public GeoLocationInternationalPostcodeCoordinatesLatLonRequestType createGeoLocationInternationalPostcodeCoordinatesLatLonRequestType() { + return new GeoLocationInternationalPostcodeCoordinatesLatLonRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetNonMarketingIndicatorRequestType } + * + */ + public DutchBusinessGetNonMarketingIndicatorRequestType createDutchBusinessGetNonMarketingIndicatorRequestType() { + return new DutchBusinessGetNonMarketingIndicatorRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchDossierNumberResponseType } + * + */ + public DutchBusinessSearchDossierNumberResponseType createDutchBusinessSearchDossierNumberResponseType() { + return new DutchBusinessSearchDossierNumberResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetAnnualFinancialStatementResponseType } + * + */ + public DutchBusinessGetAnnualFinancialStatementResponseType createDutchBusinessGetAnnualFinancialStatementResponseType() { + return new DutchBusinessGetAnnualFinancialStatementResponseType(); + } + + /** + * Create an instance of {@link InsolvencyGetCaseByPublicationResponseType } + * + */ + public InsolvencyGetCaseByPublicationResponseType createInsolvencyGetCaseByPublicationResponseType() { + return new InsolvencyGetCaseByPublicationResponseType(); + } + + /** + * Create an instance of {@link UserViewV2RequestType } + * + */ + public UserViewV2RequestType createUserViewV2RequestType() { + return new UserViewV2RequestType(); + } + + /** + * Create an instance of {@link AddressNeighborhoodNameRequestType } + * + */ + public AddressNeighborhoodNameRequestType createAddressNeighborhoodNameRequestType() { + return new AddressNeighborhoodNameRequestType(); + } + + /** + * Create an instance of {@link DriveInfoTimeLookupResponseType } + * + */ + public DriveInfoTimeLookupResponseType createDriveInfoTimeLookupResponseType() { + return new DriveInfoTimeLookupResponseType(); + } + + /** + * Create an instance of {@link AddressReeksParameterSearchResponseType } + * + */ + public AddressReeksParameterSearchResponseType createAddressReeksParameterSearchResponseType() { + return new AddressReeksParameterSearchResponseType(); + } + + /** + * Create an instance of {@link AddressProvinceListNeighborhoodsResponseType } + * + */ + public AddressProvinceListNeighborhoodsResponseType createAddressProvinceListNeighborhoodsResponseType() { + return new AddressProvinceListNeighborhoodsResponseType(); + } + + /** + * Create an instance of {@link KadasterV2GetHypothecairBerichtObjectByAdresRequestType } + * + */ + public KadasterV2GetHypothecairBerichtObjectByAdresRequestType createKadasterV2GetHypothecairBerichtObjectByAdresRequestType() { + return new KadasterV2GetHypothecairBerichtObjectByAdresRequestType(); + } + + /** + * Create an instance of {@link BovagGetMemberByDutchBusinessResponseType } + * + */ + public BovagGetMemberByDutchBusinessResponseType createBovagGetMemberByDutchBusinessResponseType() { + return new BovagGetMemberByDutchBusinessResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessUBOStartInvestigationRequestType } + * + */ + public DutchBusinessUBOStartInvestigationRequestType createDutchBusinessUBOStartInvestigationRequestType() { + return new DutchBusinessUBOStartInvestigationRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractHistoryChangedResponseType } + * + */ + public DutchBusinessGetExtractHistoryChangedResponseType createDutchBusinessGetExtractHistoryChangedResponseType() { + return new DutchBusinessGetExtractHistoryChangedResponseType(); + } + + /** + * Create an instance of {@link RoutePlannerDescriptionAddressRequestType } + * + */ + public RoutePlannerDescriptionAddressRequestType createRoutePlannerDescriptionAddressRequestType() { + return new RoutePlannerDescriptionAddressRequestType(); + } + + /** + * Create an instance of {@link UserRemoveGroupRequestType } + * + */ + public UserRemoveGroupRequestType createUserRemoveGroupRequestType() { + return new UserRemoveGroupRequestType(); + } + + /** + * Create an instance of {@link UserRemoveGroupResponseType } + * + */ + public UserRemoveGroupResponseType createUserRemoveGroupResponseType() { + return new UserRemoveGroupResponseType(); + } + + /** + * Create an instance of {@link KadasterBronDocumentRequestType } + * + */ + public KadasterBronDocumentRequestType createKadasterBronDocumentRequestType() { + return new KadasterBronDocumentRequestType(); + } + + /** + * Create an instance of {@link RoutePlannerInformationAddressRequestType } + * + */ + public RoutePlannerInformationAddressRequestType createRoutePlannerInformationAddressRequestType() { + return new RoutePlannerInformationAddressRequestType(); + } + + /** + * Create an instance of {@link AreaCodeLookupRequestType } + * + */ + public AreaCodeLookupRequestType createAreaCodeLookupRequestType() { + return new AreaCodeLookupRequestType(); + } + + /** + * Create an instance of {@link DnbWorldbaseMarketingRequestType } + * + */ + public DnbWorldbaseMarketingRequestType createDnbWorldbaseMarketingRequestType() { + return new DnbWorldbaseMarketingRequestType(); + } + + /** + * Create an instance of {@link KadasterHypothecairBerichtPostcodeRequestType } + * + */ + public KadasterHypothecairBerichtPostcodeRequestType createKadasterHypothecairBerichtPostcodeRequestType() { + return new KadasterHypothecairBerichtPostcodeRequestType(); + } + + /** + * Create an instance of {@link GeoLocationInternationalAddressCoordinatesLatLonRequestType } + * + */ + public GeoLocationInternationalAddressCoordinatesLatLonRequestType createGeoLocationInternationalAddressCoordinatesLatLonRequestType() { + return new GeoLocationInternationalAddressCoordinatesLatLonRequestType(); + } + + /** + * Create an instance of {@link BusinessGetSBIDescriptionResponseType } + * + */ + public BusinessGetSBIDescriptionResponseType createBusinessGetSBIDescriptionResponseType() { + return new BusinessGetSBIDescriptionResponseType(); + } + + /** + * Create an instance of {@link UserNotifyRequestType } + * + */ + public UserNotifyRequestType createUserNotifyRequestType() { + return new UserNotifyRequestType(); + } + + /** + * Create an instance of {@link MapViewRDResponseType } + * + */ + public MapViewRDResponseType createMapViewRDResponseType() { + return new MapViewRDResponseType(); + } + + /** + * Create an instance of {@link BusinessBIKToSBIRequestType } + * + */ + public BusinessBIKToSBIRequestType createBusinessBIKToSBIRequestType() { + return new BusinessBIKToSBIRequestType(); + } + + /** + * Create an instance of {@link CarVWEBasicTypeDataRequestType } + * + */ + public CarVWEBasicTypeDataRequestType createCarVWEBasicTypeDataRequestType() { + return new CarVWEBasicTypeDataRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessUBOCostsInvestigationResponseType } + * + */ + public DutchBusinessUBOCostsInvestigationResponseType createDutchBusinessUBOCostsInvestigationResponseType() { + return new DutchBusinessUBOCostsInvestigationResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchParametersRequestType } + * + */ + public DutchBusinessSearchParametersRequestType createDutchBusinessSearchParametersRequestType() { + return new DutchBusinessSearchParametersRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateGetChangedDossiersRequestType } + * + */ + public DutchBusinessUpdateGetChangedDossiersRequestType createDutchBusinessUpdateGetChangedDossiersRequestType() { + return new DutchBusinessUpdateGetChangedDossiersRequestType(); + } + + /** + * Create an instance of {@link BusinessUpdateAddDossierRequestType } + * + */ + public BusinessUpdateAddDossierRequestType createBusinessUpdateAddDossierRequestType() { + return new BusinessUpdateAddDossierRequestType(); + } + + /** + * Create an instance of {@link RoutePlannerDescriptionRequestType } + * + */ + public RoutePlannerDescriptionRequestType createRoutePlannerDescriptionRequestType() { + return new RoutePlannerDescriptionRequestType(); + } + + /** + * Create an instance of {@link BusinessSearchAddressRequestType } + * + */ + public BusinessSearchAddressRequestType createBusinessSearchAddressRequestType() { + return new BusinessSearchAddressRequestType(); + } + + /** + * Create an instance of {@link GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType } + * + */ + public GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType createGeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType() { + return new GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType(); + } + + /** + * Create an instance of {@link KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType } + * + */ + public KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType createKadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType() { + return new KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType(); + } + + /** + * Create an instance of {@link GraydonCreditCompanyLiaisonsResponseType } + * + */ + public GraydonCreditCompanyLiaisonsResponseType createGraydonCreditCompanyLiaisonsResponseType() { + return new GraydonCreditCompanyLiaisonsResponseType(); + } + + /** + * Create an instance of {@link DnbBusinessVerificationRequestType } + * + */ + public DnbBusinessVerificationRequestType createDnbBusinessVerificationRequestType() { + return new DnbBusinessVerificationRequestType(); + } + + /** + * Create an instance of {@link KadasterKadastraleKaartPerceelV2RequestType } + * + */ + public KadasterKadastraleKaartPerceelV2RequestType createKadasterKadastraleKaartPerceelV2RequestType() { + return new KadasterKadastraleKaartPerceelV2RequestType(); + } + + /** + * Create an instance of {@link RoutePlannerRDDescriptionResponseType } + * + */ + public RoutePlannerRDDescriptionResponseType createRoutePlannerRDDescriptionResponseType() { + return new RoutePlannerRDDescriptionResponseType(); + } + + /** + * Create an instance of {@link KvkUpdateCheckDossierResponseType } + * + */ + public KvkUpdateCheckDossierResponseType createKvkUpdateCheckDossierResponseType() { + return new KvkUpdateCheckDossierResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetSBIRequestType } + * + */ + public DutchBusinessGetSBIRequestType createDutchBusinessGetSBIRequestType() { + return new DutchBusinessGetSBIRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetConcernRelationsDetailsRequestType } + * + */ + public DutchBusinessGetConcernRelationsDetailsRequestType createDutchBusinessGetConcernRelationsDetailsRequestType() { + return new DutchBusinessGetConcernRelationsDetailsRequestType(); + } + + /** + * Create an instance of {@link MetaGetServicesResponseType } + * + */ + public MetaGetServicesResponseType createMetaGetServicesResponseType() { + return new MetaGetServicesResponseType(); + } + + /** + * Create an instance of {@link GraydonCreditQuickscanResponseType } + * + */ + public GraydonCreditQuickscanResponseType createGraydonCreditQuickscanResponseType() { + return new GraydonCreditQuickscanResponseType(); + } + + /** + * Create an instance of {@link KvkUpdateGetDossiersResponseType } + * + */ + public KvkUpdateGetDossiersResponseType createKvkUpdateGetDossiersResponseType() { + return new KvkUpdateGetDossiersResponseType(); + } + + /** + * Create an instance of {@link RoutePlannerGetRouteRequestType } + * + */ + public RoutePlannerGetRouteRequestType createRoutePlannerGetRouteRequestType() { + return new RoutePlannerGetRouteRequestType(); + } + + /** + * Create an instance of {@link NbwoEstimateValueRequestType } + * + */ + public NbwoEstimateValueRequestType createNbwoEstimateValueRequestType() { + return new NbwoEstimateValueRequestType(); + } + + /** + * Create an instance of {@link DnbEnterpriseManagementResponseType } + * + */ + public DnbEnterpriseManagementResponseType createDnbEnterpriseManagementResponseType() { + return new DnbEnterpriseManagementResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetAdditionalPositionsRequestType } + * + */ + public DutchBusinessGetAdditionalPositionsRequestType createDutchBusinessGetAdditionalPositionsRequestType() { + return new DutchBusinessGetAdditionalPositionsRequestType(); + } + + /** + * Create an instance of {@link KadasterKadastraleKaartPostcodeRequestType } + * + */ + public KadasterKadastraleKaartPostcodeRequestType createKadasterKadastraleKaartPostcodeRequestType() { + return new KadasterKadastraleKaartPostcodeRequestType(); + } + + /** + * Create an instance of {@link AccountUserSearchV2RequestType } + * + */ + public AccountUserSearchV2RequestType createAccountUserSearchV2RequestType() { + return new AccountUserSearchV2RequestType(); + } + + /** + * Create an instance of {@link GraydonCreditRatingsRequestType } + * + */ + public GraydonCreditRatingsRequestType createGraydonCreditRatingsRequestType() { + return new GraydonCreditRatingsRequestType(); + } + + /** + * Create an instance of {@link GeoLocationDistanceSortedNeighborhoodCodesResponseType } + * + */ + public GeoLocationDistanceSortedNeighborhoodCodesResponseType createGeoLocationDistanceSortedNeighborhoodCodesResponseType() { + return new GeoLocationDistanceSortedNeighborhoodCodesResponseType(); + } + + /** + * Create an instance of {@link KvkGetExtractDocumentRequestType } + * + */ + public KvkGetExtractDocumentRequestType createKvkGetExtractDocumentRequestType() { + return new KvkGetExtractDocumentRequestType(); + } + + /** + * Create an instance of {@link CreditsafeGetReportFullV2ResponseType } + * + */ + public CreditsafeGetReportFullV2ResponseType createCreditsafeGetReportFullV2ResponseType() { + return new CreditsafeGetReportFullV2ResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateGetOverviewRequestType } + * + */ + public DutchBusinessUpdateGetOverviewRequestType createDutchBusinessUpdateGetOverviewRequestType() { + return new DutchBusinessUpdateGetOverviewRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetVatNumberResponseType } + * + */ + public DutchBusinessGetVatNumberResponseType createDutchBusinessGetVatNumberResponseType() { + return new DutchBusinessGetVatNumberResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetPositionsRequestType } + * + */ + public DutchBusinessGetPositionsRequestType createDutchBusinessGetPositionsRequestType() { + return new DutchBusinessGetPositionsRequestType(); + } + + /** + * Create an instance of {@link UserEditExtendedV2RequestType } + * + */ + public UserEditExtendedV2RequestType createUserEditExtendedV2RequestType() { + return new UserEditExtendedV2RequestType(); + } + + /** + * Create an instance of {@link CarVWEVersionPriceRequestType } + * + */ + public CarVWEVersionPriceRequestType createCarVWEVersionPriceRequestType() { + return new CarVWEVersionPriceRequestType(); + } + + /** + * Create an instance of {@link DutchVehicleGetMarketValueRequestType } + * + */ + public DutchVehicleGetMarketValueRequestType createDutchVehicleGetMarketValueRequestType() { + return new DutchVehicleGetMarketValueRequestType(); + } + + /** + * Create an instance of {@link RoutePlannerEUDescriptionCoordinatesLatLonResponseType } + * + */ + public RoutePlannerEUDescriptionCoordinatesLatLonResponseType createRoutePlannerEUDescriptionCoordinatesLatLonResponseType() { + return new RoutePlannerEUDescriptionCoordinatesLatLonResponseType(); + } + + /** + * Create an instance of {@link GeoLocationLatLonToAddressV2ResponseType } + * + */ + public GeoLocationLatLonToAddressV2ResponseType createGeoLocationLatLonToAddressV2ResponseType() { + return new GeoLocationLatLonToAddressV2ResponseType(); + } + + /** + * Create an instance of {@link KadasterUittrekselKadastraleKaartPostcodeV3ResponseType } + * + */ + public KadasterUittrekselKadastraleKaartPostcodeV3ResponseType createKadasterUittrekselKadastraleKaartPostcodeV3ResponseType() { + return new KadasterUittrekselKadastraleKaartPostcodeV3ResponseType(); + } + + /** + * Create an instance of {@link GeoLocationPostcodeCoordinatesRDResponseType } + * + */ + public GeoLocationPostcodeCoordinatesRDResponseType createGeoLocationPostcodeCoordinatesRDResponseType() { + return new GeoLocationPostcodeCoordinatesRDResponseType(); + } + + /** + * Create an instance of {@link KadasterHypothecairBerichtPerceelV3RequestType } + * + */ + public KadasterHypothecairBerichtPerceelV3RequestType createKadasterHypothecairBerichtPerceelV3RequestType() { + return new KadasterHypothecairBerichtPerceelV3RequestType(); + } + + /** + * Create an instance of {@link KadasterEigendomsBerichtPerceelResponseType } + * + */ + public KadasterEigendomsBerichtPerceelResponseType createKadasterEigendomsBerichtPerceelResponseType() { + return new KadasterEigendomsBerichtPerceelResponseType(); + } + + /** + * Create an instance of {@link KadasterHypothecairBerichtPerceelV2RequestType } + * + */ + public KadasterHypothecairBerichtPerceelV2RequestType createKadasterHypothecairBerichtPerceelV2RequestType() { + return new KadasterHypothecairBerichtPerceelV2RequestType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchSelectionResponseType } + * + */ + public DutchBusinessSearchSelectionResponseType createDutchBusinessSearchSelectionResponseType() { + return new DutchBusinessSearchSelectionResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType } + * + */ + public DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType createDutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType() { + return new DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType(); + } + + /** + * Create an instance of {@link UserEditBalanceResponseType } + * + */ + public UserEditBalanceResponseType createUserEditBalanceResponseType() { + return new UserEditBalanceResponseType(); + } + + /** + * Create an instance of {@link LoginRequestType } + * + */ + public LoginRequestType createLoginRequestType() { + return new LoginRequestType(); + } + + /** + * Create an instance of {@link MetaGetServiceRequestType } + * + */ + public MetaGetServiceRequestType createMetaGetServiceRequestType() { + return new MetaGetServiceRequestType(); + } + + /** + * Create an instance of {@link BusinessGetBIKDescriptionResponseType } + * + */ + public BusinessGetBIKDescriptionResponseType createBusinessGetBIKDescriptionResponseType() { + return new BusinessGetBIKDescriptionResponseType(); + } + + /** + * Create an instance of {@link DutchVehicleGetVehicleRequestType } + * + */ + public DutchVehicleGetVehicleRequestType createDutchVehicleGetVehicleRequestType() { + return new DutchVehicleGetVehicleRequestType(); + } + + /** + * Create an instance of {@link KadasterV2GetKoopsommenOverzichtRequestType } + * + */ + public KadasterV2GetKoopsommenOverzichtRequestType createKadasterV2GetKoopsommenOverzichtRequestType() { + return new KadasterV2GetKoopsommenOverzichtRequestType(); + } + + /** + * Create an instance of {@link InternationalAddressSearchV2ResponseType } + * + */ + public InternationalAddressSearchV2ResponseType createInternationalAddressSearchV2ResponseType() { + return new InternationalAddressSearchV2ResponseType(); + } + + /** + * Create an instance of {@link AccountViewHostRestrictionsRequestType } + * + */ + public AccountViewHostRestrictionsRequestType createAccountViewHostRestrictionsRequestType() { + return new AccountViewHostRestrictionsRequestType(); + } + + /** + * Create an instance of {@link CarRDWCarDataExtendedRequestType } + * + */ + public CarRDWCarDataExtendedRequestType createCarRDWCarDataExtendedRequestType() { + return new CarRDWCarDataExtendedRequestType(); + } + + /** + * Create an instance of {@link AddressPerceelPhraseSearchResponseType } + * + */ + public AddressPerceelPhraseSearchResponseType createAddressPerceelPhraseSearchResponseType() { + return new AddressPerceelPhraseSearchResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractDocumentDataV3RequestType } + * + */ + public DutchBusinessGetExtractDocumentDataV3RequestType createDutchBusinessGetExtractDocumentDataV3RequestType() { + return new DutchBusinessGetExtractDocumentDataV3RequestType(); + } + + /** + * Create an instance of {@link SepaValidateInternationalBankAccountNumberFormatResponseType } + * + */ + public SepaValidateInternationalBankAccountNumberFormatResponseType createSepaValidateInternationalBankAccountNumberFormatResponseType() { + return new SepaValidateInternationalBankAccountNumberFormatResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractDocumentDataV2RequestType } + * + */ + public DutchBusinessGetExtractDocumentDataV2RequestType createDutchBusinessGetExtractDocumentDataV2RequestType() { + return new DutchBusinessGetExtractDocumentDataV2RequestType(); + } + + /** + * Create an instance of {@link DutchBusinessUBOCheckInvestigationResponseType } + * + */ + public DutchBusinessUBOCheckInvestigationResponseType createDutchBusinessUBOCheckInvestigationResponseType() { + return new DutchBusinessUBOCheckInvestigationResponseType(); + } + + /** + * Create an instance of {@link AccountGetOrderTokenResponseType } + * + */ + public AccountGetOrderTokenResponseType createAccountGetOrderTokenResponseType() { + return new AccountGetOrderTokenResponseType(); + } + + /** + * Create an instance of {@link GeoLocationPostcodeDistanceRequestType } + * + */ + public GeoLocationPostcodeDistanceRequestType createGeoLocationPostcodeDistanceRequestType() { + return new GeoLocationPostcodeDistanceRequestType(); + } + + /** + * Create an instance of {@link GraydonCreditManagementRequestType } + * + */ + public GraydonCreditManagementRequestType createGraydonCreditManagementRequestType() { + return new GraydonCreditManagementRequestType(); + } + + /** + * Create an instance of {@link UserChangePasswordResponseType } + * + */ + public UserChangePasswordResponseType createUserChangePasswordResponseType() { + return new UserChangePasswordResponseType(); + } + + /** + * Create an instance of {@link KadasterUittrekselKadastraleKaartPostcodeV2RequestType } + * + */ + public KadasterUittrekselKadastraleKaartPostcodeV2RequestType createKadasterUittrekselKadastraleKaartPostcodeV2RequestType() { + return new KadasterUittrekselKadastraleKaartPostcodeV2RequestType(); + } + + /** + * Create an instance of {@link AddressPerceelParameterSearchResponseType } + * + */ + public AddressPerceelParameterSearchResponseType createAddressPerceelParameterSearchResponseType() { + return new AddressPerceelParameterSearchResponseType(); + } + + /** + * Create an instance of {@link KadasterEigendomsBerichtPerceelV2ResponseType } + * + */ + public KadasterEigendomsBerichtPerceelV2ResponseType createKadasterEigendomsBerichtPerceelV2ResponseType() { + return new KadasterEigendomsBerichtPerceelV2ResponseType(); + } + + /** + * Create an instance of {@link CarRDWCarDataV2ResponseType } + * + */ + public CarRDWCarDataV2ResponseType createCarRDWCarDataV2ResponseType() { + return new CarRDWCarDataV2ResponseType(); + } + + /** + * Create an instance of {@link KadasterUittrekselKadastraleKaartPostcodeV3RequestType } + * + */ + public KadasterUittrekselKadastraleKaartPostcodeV3RequestType createKadasterUittrekselKadastraleKaartPostcodeV3RequestType() { + return new KadasterUittrekselKadastraleKaartPostcodeV3RequestType(); + } + + /** + * Create an instance of {@link CreditsafeSearchCriteriaResponseType } + * + */ + public CreditsafeSearchCriteriaResponseType createCreditsafeSearchCriteriaResponseType() { + return new CreditsafeSearchCriteriaResponseType(); + } + + /** + * Create an instance of {@link RiskCheckPersonResponseType } + * + */ + public RiskCheckPersonResponseType createRiskCheckPersonResponseType() { + return new RiskCheckPersonResponseType(); + } + + /** + * Create an instance of {@link DnbSearchReferenceResponseType } + * + */ + public DnbSearchReferenceResponseType createDnbSearchReferenceResponseType() { + return new DnbSearchReferenceResponseType(); + } + + /** + * Create an instance of {@link KadasterUittrekselKadastraleKaartPostcodeResponseType } + * + */ + public KadasterUittrekselKadastraleKaartPostcodeResponseType createKadasterUittrekselKadastraleKaartPostcodeResponseType() { + return new KadasterUittrekselKadastraleKaartPostcodeResponseType(); + } + + /** + * Create an instance of {@link KadasterUittrekselKadastraleKaartPostcodeV2ResponseType } + * + */ + public KadasterUittrekselKadastraleKaartPostcodeV2ResponseType createKadasterUittrekselKadastraleKaartPostcodeV2ResponseType() { + return new KadasterUittrekselKadastraleKaartPostcodeV2ResponseType(); + } + + /** + * Create an instance of {@link CreditsafeMonitorAddCompanyResponseType } + * + */ + public CreditsafeMonitorAddCompanyResponseType createCreditsafeMonitorAddCompanyResponseType() { + return new CreditsafeMonitorAddCompanyResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetLegalExtractDocumentDataV3ResponseType } + * + */ + public DutchBusinessGetLegalExtractDocumentDataV3ResponseType createDutchBusinessGetLegalExtractDocumentDataV3ResponseType() { + return new DutchBusinessGetLegalExtractDocumentDataV3ResponseType(); + } + + /** + * Create an instance of {@link NbwoEstimateValueResponseType } + * + */ + public NbwoEstimateValueResponseType createNbwoEstimateValueResponseType() { + return new NbwoEstimateValueResponseType(); + } + + /** + * Create an instance of {@link GeoLocationLatLonToPostcodeResponseType } + * + */ + public GeoLocationLatLonToPostcodeResponseType createGeoLocationLatLonToPostcodeResponseType() { + return new GeoLocationLatLonToPostcodeResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractDocumentDataResponseType } + * + */ + public DutchBusinessGetExtractDocumentDataResponseType createDutchBusinessGetExtractDocumentDataResponseType() { + return new DutchBusinessGetExtractDocumentDataResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetDossierHistoryResponseType } + * + */ + public DutchBusinessGetDossierHistoryResponseType createDutchBusinessGetDossierHistoryResponseType() { + return new DutchBusinessGetDossierHistoryResponseType(); + } + + /** + * Create an instance of {@link BovagGetMemberByBovagIdResponseType } + * + */ + public BovagGetMemberByBovagIdResponseType createBovagGetMemberByBovagIdResponseType() { + return new BovagGetMemberByBovagIdResponseType(); + } + + /** + * Create an instance of {@link CarRDWCarDataV2RequestType } + * + */ + public CarRDWCarDataV2RequestType createCarRDWCarDataV2RequestType() { + return new CarRDWCarDataV2RequestType(); + } + + /** + * Create an instance of {@link CarRDWCarDataV3RequestType } + * + */ + public CarRDWCarDataV3RequestType createCarRDWCarDataV3RequestType() { + return new CarRDWCarDataV3RequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetLegalEntityRequestType } + * + */ + public DutchBusinessGetLegalEntityRequestType createDutchBusinessGetLegalEntityRequestType() { + return new DutchBusinessGetLegalEntityRequestType(); + } + + /** + * Create an instance of {@link AddressProvinceListDistrictsResponseType } + * + */ + public AddressProvinceListDistrictsResponseType createAddressProvinceListDistrictsResponseType() { + return new AddressProvinceListDistrictsResponseType(); + } + + /** + * Create an instance of {@link CarRDWCarDataResponseType } + * + */ + public CarRDWCarDataResponseType createCarRDWCarDataResponseType() { + return new CarRDWCarDataResponseType(); + } + + /** + * Create an instance of {@link BusinessUpdateRemoveDossierRequestType } + * + */ + public BusinessUpdateRemoveDossierRequestType createBusinessUpdateRemoveDossierRequestType() { + return new BusinessUpdateRemoveDossierRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessUBOPickupInvestigationRequestType } + * + */ + public DutchBusinessUBOPickupInvestigationRequestType createDutchBusinessUBOPickupInvestigationRequestType() { + return new DutchBusinessUBOPickupInvestigationRequestType(); + } + + /** + * Create an instance of {@link KadasterKadastraleKaartPostcodeV2ResponseType } + * + */ + public KadasterKadastraleKaartPostcodeV2ResponseType createKadasterKadastraleKaartPostcodeV2ResponseType() { + return new KadasterKadastraleKaartPostcodeV2ResponseType(); + } + + /** + * Create an instance of {@link CarRDWCarDataBPV2ResponseType } + * + */ + public CarRDWCarDataBPV2ResponseType createCarRDWCarDataBPV2ResponseType() { + return new CarRDWCarDataBPV2ResponseType(); + } + + /** + * Create an instance of {@link AddressCityListNeighborhoodsResponseType } + * + */ + public AddressCityListNeighborhoodsResponseType createAddressCityListNeighborhoodsResponseType() { + return new AddressCityListNeighborhoodsResponseType(); + } + + /** + * Create an instance of {@link KvkUpdateGetChangedDossiersRequestType } + * + */ + public KvkUpdateGetChangedDossiersRequestType createKvkUpdateGetChangedDossiersRequestType() { + return new KvkUpdateGetChangedDossiersRequestType(); + } + + /** + * Create an instance of {@link CreditsafeGetReportFullResponseType } + * + */ + public CreditsafeGetReportFullResponseType createCreditsafeGetReportFullResponseType() { + return new CreditsafeGetReportFullResponseType(); + } + + /** + * Create an instance of {@link GeoLocationPostcodeCoordinatesLatLonResponseType } + * + */ + public GeoLocationPostcodeCoordinatesLatLonResponseType createGeoLocationPostcodeCoordinatesLatLonResponseType() { + return new GeoLocationPostcodeCoordinatesLatLonResponseType(); + } + + /** + * Create an instance of {@link KvkGetDossierRequestType } + * + */ + public KvkGetDossierRequestType createKvkGetDossierRequestType() { + return new KvkGetDossierRequestType(); + } + + /** + * Create an instance of {@link SepaConvertBankAccountNumberResponseType } + * + */ + public SepaConvertBankAccountNumberResponseType createSepaConvertBankAccountNumberResponseType() { + return new SepaConvertBankAccountNumberResponseType(); + } + + /** + * Create an instance of {@link CreditsafeGetReportFullRequestType } + * + */ + public CreditsafeGetReportFullRequestType createCreditsafeGetReportFullRequestType() { + return new CreditsafeGetReportFullRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType } + * + */ + public DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType createDutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType() { + return new DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessUBOPickupInvestigationResponseType } + * + */ + public DutchBusinessUBOPickupInvestigationResponseType createDutchBusinessUBOPickupInvestigationResponseType() { + return new DutchBusinessUBOPickupInvestigationResponseType(); + } + + /** + * Create an instance of {@link RoutePlannerEUDescriptionCoordinatesLatLonRequestType } + * + */ + public RoutePlannerEUDescriptionCoordinatesLatLonRequestType createRoutePlannerEUDescriptionCoordinatesLatLonRequestType() { + return new RoutePlannerEUDescriptionCoordinatesLatLonRequestType(); + } + + /** + * Create an instance of {@link CarRDWCarDataPriceRequestType } + * + */ + public CarRDWCarDataPriceRequestType createCarRDWCarDataPriceRequestType() { + return new CarRDWCarDataPriceRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchSelectionSimpleRequestType } + * + */ + public DutchBusinessSearchSelectionSimpleRequestType createDutchBusinessSearchSelectionSimpleRequestType() { + return new DutchBusinessSearchSelectionSimpleRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetSBIDescriptionRequestType } + * + */ + public DutchBusinessGetSBIDescriptionRequestType createDutchBusinessGetSBIDescriptionRequestType() { + return new DutchBusinessGetSBIDescriptionRequestType(); + } + + /** + * Create an instance of {@link RoutePlannerRDDescriptionCoordinatesRDResponseType } + * + */ + public RoutePlannerRDDescriptionCoordinatesRDResponseType createRoutePlannerRDDescriptionCoordinatesRDResponseType() { + return new RoutePlannerRDDescriptionCoordinatesRDResponseType(); + } + + /** + * Create an instance of {@link AddressPerceelPhraseSearchRequestType } + * + */ + public AddressPerceelPhraseSearchRequestType createAddressPerceelPhraseSearchRequestType() { + return new AddressPerceelPhraseSearchRequestType(); + } + + /** + * Create an instance of {@link AddressReeksAddressSearchRequestType } + * + */ + public AddressReeksAddressSearchRequestType createAddressReeksAddressSearchRequestType() { + return new AddressReeksAddressSearchRequestType(); + } + + /** + * Create an instance of {@link AddressNeighborhoodNameResponseType } + * + */ + public AddressNeighborhoodNameResponseType createAddressNeighborhoodNameResponseType() { + return new AddressNeighborhoodNameResponseType(); + } + + /** + * Create an instance of {@link AccountViewBalanceResponseType } + * + */ + public AccountViewBalanceResponseType createAccountViewBalanceResponseType() { + return new AccountViewBalanceResponseType(); + } + + /** + * Create an instance of {@link BusinessSearchPostcodeResponseType } + * + */ + public BusinessSearchPostcodeResponseType createBusinessSearchPostcodeResponseType() { + return new BusinessSearchPostcodeResponseType(); + } + + /** + * Create an instance of {@link KadasterHypothecairBerichtPerceelV2ResponseType } + * + */ + public KadasterHypothecairBerichtPerceelV2ResponseType createKadasterHypothecairBerichtPerceelV2ResponseType() { + return new KadasterHypothecairBerichtPerceelV2ResponseType(); + } + + /** + * Create an instance of {@link RoutePlannerDescriptionShortestRequestType } + * + */ + public RoutePlannerDescriptionShortestRequestType createRoutePlannerDescriptionShortestRequestType() { + return new RoutePlannerDescriptionShortestRequestType(); + } + + /** + * Create an instance of {@link KadasterV2GetKadastraalBerichtObjectByAdresRequestType } + * + */ + public KadasterV2GetKadastraalBerichtObjectByAdresRequestType createKadasterV2GetKadastraalBerichtObjectByAdresRequestType() { + return new KadasterV2GetKadastraalBerichtObjectByAdresRequestType(); + } + + /** + * Create an instance of {@link GeoLocationInternationalAddressCoordinatesLatLonResponseType } + * + */ + public GeoLocationInternationalAddressCoordinatesLatLonResponseType createGeoLocationInternationalAddressCoordinatesLatLonResponseType() { + return new GeoLocationInternationalAddressCoordinatesLatLonResponseType(); + } + + /** + * Create an instance of {@link ComplianceGetPersonRequestType } + * + */ + public ComplianceGetPersonRequestType createComplianceGetPersonRequestType() { + return new ComplianceGetPersonRequestType(); + } + + /** + * Create an instance of {@link CarVWEVersionYearDataRequestType } + * + */ + public CarVWEVersionYearDataRequestType createCarVWEVersionYearDataRequestType() { + return new CarVWEVersionYearDataRequestType(); + } + + /** + * Create an instance of {@link UserEditHostRestrictionsResponseType } + * + */ + public UserEditHostRestrictionsResponseType createUserEditHostRestrictionsResponseType() { + return new UserEditHostRestrictionsResponseType(); + } + + /** + * Create an instance of {@link AccountEditV2RequestType } + * + */ + public AccountEditV2RequestType createAccountEditV2RequestType() { + return new AccountEditV2RequestType(); + } + + /** + * Create an instance of {@link VatValidateResponseType } + * + */ + public VatValidateResponseType createVatValidateResponseType() { + return new VatValidateResponseType(); + } + + /** + * Create an instance of {@link KadasterEigendomsBerichtPerceelV2RequestType } + * + */ + public KadasterEigendomsBerichtPerceelV2RequestType createKadasterEigendomsBerichtPerceelV2RequestType() { + return new KadasterEigendomsBerichtPerceelV2RequestType(); + } + + /** + * Create an instance of {@link BusinessUpdateRemoveDossierResponseType } + * + */ + public BusinessUpdateRemoveDossierResponseType createBusinessUpdateRemoveDossierResponseType() { + return new BusinessUpdateRemoveDossierResponseType(); + } + + /** + * Create an instance of {@link RiskCheckGetRiskPersonCompanyReportResponseType } + * + */ + public RiskCheckGetRiskPersonCompanyReportResponseType createRiskCheckGetRiskPersonCompanyReportResponseType() { + return new RiskCheckGetRiskPersonCompanyReportResponseType(); + } + + /** + * Create an instance of {@link KadasterValueListGetRangesRequestType } + * + */ + public KadasterValueListGetRangesRequestType createKadasterValueListGetRangesRequestType() { + return new KadasterValueListGetRangesRequestType(); + } + + /** + * Create an instance of {@link KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType } + * + */ + public KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType createKadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType() { + return new KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType(); + } + + /** + * Create an instance of {@link CarVWEListModelsResponseType } + * + */ + public CarVWEListModelsResponseType createCarVWEListModelsResponseType() { + return new CarVWEListModelsResponseType(); + } + + /** + * Create an instance of {@link CarVWEOptionsResponseType } + * + */ + public CarVWEOptionsResponseType createCarVWEOptionsResponseType() { + return new CarVWEOptionsResponseType(); + } + + /** + * Create an instance of {@link AccountEditHostRestrictionsRequestType } + * + */ + public AccountEditHostRestrictionsRequestType createAccountEditHostRestrictionsRequestType() { + return new AccountEditHostRestrictionsRequestType(); + } + + /** + * Create an instance of {@link BusinessGetDossierSBIResponseType } + * + */ + public BusinessGetDossierSBIResponseType createBusinessGetDossierSBIResponseType() { + return new BusinessGetDossierSBIResponseType(); + } + + /** + * Create an instance of {@link BusinessGetDossierV3ResponseType } + * + */ + public BusinessGetDossierV3ResponseType createBusinessGetDossierV3ResponseType() { + return new BusinessGetDossierV3ResponseType(); + } + + /** + * Create an instance of {@link GeoLocationDistanceSortedNeighborhoodCodesRequestType } + * + */ + public GeoLocationDistanceSortedNeighborhoodCodesRequestType createGeoLocationDistanceSortedNeighborhoodCodesRequestType() { + return new GeoLocationDistanceSortedNeighborhoodCodesRequestType(); + } + + /** + * Create an instance of {@link DutchVehicleGetVehicleV2RequestType } + * + */ + public DutchVehicleGetVehicleV2RequestType createDutchVehicleGetVehicleV2RequestType() { + return new DutchVehicleGetVehicleV2RequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetDossierHistoryRequestType } + * + */ + public DutchBusinessGetDossierHistoryRequestType createDutchBusinessGetDossierHistoryRequestType() { + return new DutchBusinessGetDossierHistoryRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchSelectionRequestType } + * + */ + public DutchBusinessSearchSelectionRequestType createDutchBusinessSearchSelectionRequestType() { + return new DutchBusinessSearchSelectionRequestType(); + } + + /** + * Create an instance of {@link KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType } + * + */ + public KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType createKadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType() { + return new KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType(); + } + + /** + * Create an instance of {@link MetaGetMethodRequestType } + * + */ + public MetaGetMethodRequestType createMetaGetMethodRequestType() { + return new MetaGetMethodRequestType(); + } + + /** + * Create an instance of {@link UserCreateV2ResponseType } + * + */ + public UserCreateV2ResponseType createUserCreateV2ResponseType() { + return new UserCreateV2ResponseType(); + } + + /** + * Create an instance of {@link AccountViewHostRestrictionsResponseType } + * + */ + public AccountViewHostRestrictionsResponseType createAccountViewHostRestrictionsResponseType() { + return new AccountViewHostRestrictionsResponseType(); + } + + /** + * Create an instance of {@link DutchAddressRangePostcodeSearchRequestType } + * + */ + public DutchAddressRangePostcodeSearchRequestType createDutchAddressRangePostcodeSearchRequestType() { + return new DutchAddressRangePostcodeSearchRequestType(); + } + + /** + * Create an instance of {@link CarVWEListVersionsRequestType } + * + */ + public CarVWEListVersionsRequestType createCarVWEListVersionsRequestType() { + return new CarVWEListVersionsRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessUBOClassifyInvestigationRequestType } + * + */ + public DutchBusinessUBOClassifyInvestigationRequestType createDutchBusinessUBOClassifyInvestigationRequestType() { + return new DutchBusinessUBOClassifyInvestigationRequestType(); + } + + /** + * Create an instance of {@link AddressReeksFullParameterSearchResponseType } + * + */ + public AddressReeksFullParameterSearchResponseType createAddressReeksFullParameterSearchResponseType() { + return new AddressReeksFullParameterSearchResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetSBIDescriptionResponseType } + * + */ + public DutchBusinessGetSBIDescriptionResponseType createDutchBusinessGetSBIDescriptionResponseType() { + return new DutchBusinessGetSBIDescriptionResponseType(); + } + + /** + * Create an instance of {@link DutchVehicleGetPurchaseReferenceResponseType } + * + */ + public DutchVehicleGetPurchaseReferenceResponseType createDutchVehicleGetPurchaseReferenceResponseType() { + return new DutchVehicleGetPurchaseReferenceResponseType(); + } + + /** + * Create an instance of {@link KadasterEigendomsBerichtPostcodeV2ResponseType } + * + */ + public KadasterEigendomsBerichtPostcodeV2ResponseType createKadasterEigendomsBerichtPostcodeV2ResponseType() { + return new KadasterEigendomsBerichtPostcodeV2ResponseType(); + } + + /** + * Create an instance of {@link DnbGetReferenceResponseType } + * + */ + public DnbGetReferenceResponseType createDnbGetReferenceResponseType() { + return new DnbGetReferenceResponseType(); + } + + /** + * Create an instance of {@link KadasterHypothecairBerichtPostcodeV2RequestType } + * + */ + public KadasterHypothecairBerichtPostcodeV2RequestType createKadasterHypothecairBerichtPostcodeV2RequestType() { + return new KadasterHypothecairBerichtPostcodeV2RequestType(); + } + + /** + * Create an instance of {@link KadasterHypothecairBerichtPostcodeV3RequestType } + * + */ + public KadasterHypothecairBerichtPostcodeV3RequestType createKadasterHypothecairBerichtPostcodeV3RequestType() { + return new KadasterHypothecairBerichtPostcodeV3RequestType(); + } + + /** + * Create an instance of {@link KadasterAddressCoordinatesRequestType } + * + */ + public KadasterAddressCoordinatesRequestType createKadasterAddressCoordinatesRequestType() { + return new KadasterAddressCoordinatesRequestType(); + } + + /** + * Create an instance of {@link GraydonCreditSearchNameRequestType } + * + */ + public GraydonCreditSearchNameRequestType createGraydonCreditSearchNameRequestType() { + return new GraydonCreditSearchNameRequestType(); + } + + /** + * Create an instance of {@link RoutePlannerInformationRequestType } + * + */ + public RoutePlannerInformationRequestType createRoutePlannerInformationRequestType() { + return new RoutePlannerInformationRequestType(); + } + + /** + * Create an instance of {@link CreditsafeMonitorAddCompanyRequestType } + * + */ + public CreditsafeMonitorAddCompanyRequestType createCreditsafeMonitorAddCompanyRequestType() { + return new CreditsafeMonitorAddCompanyRequestType(); + } + + /** + * Create an instance of {@link CarRDWCarDataBPResponseType } + * + */ + public CarRDWCarDataBPResponseType createCarRDWCarDataBPResponseType() { + return new CarRDWCarDataBPResponseType(); + } + + /** + * Create an instance of {@link KadasterKadastraleKaartPerceelResponseType } + * + */ + public KadasterKadastraleKaartPerceelResponseType createKadasterKadastraleKaartPerceelResponseType() { + return new KadasterKadastraleKaartPerceelResponseType(); + } + + /** + * Create an instance of {@link GraydonCreditSearchPostcodeRequestType } + * + */ + public GraydonCreditSearchPostcodeRequestType createGraydonCreditSearchPostcodeRequestType() { + return new GraydonCreditSearchPostcodeRequestType(); + } + + /** + * Create an instance of {@link GeoLocationAddressCoordinatesRDRequestType } + * + */ + public GeoLocationAddressCoordinatesRDRequestType createGeoLocationAddressCoordinatesRDRequestType() { + return new GeoLocationAddressCoordinatesRDRequestType(); + } + + /** + * Create an instance of {@link RoutePlannerInformationAddressResponseType } + * + */ + public RoutePlannerInformationAddressResponseType createRoutePlannerInformationAddressResponseType() { + return new RoutePlannerInformationAddressResponseType(); + } + + /** + * Create an instance of {@link GeoLocationNeighborhoodCoordinatesRDResponseType } + * + */ + public GeoLocationNeighborhoodCoordinatesRDResponseType createGeoLocationNeighborhoodCoordinatesRDResponseType() { + return new GeoLocationNeighborhoodCoordinatesRDResponseType(); + } + + /** + * Create an instance of {@link CarATDPriceResponseType } + * + */ + public CarATDPriceResponseType createCarATDPriceResponseType() { + return new CarATDPriceResponseType(); + } + + /** + * Create an instance of {@link DutchAddressRangePostcodeSearchResponseType } + * + */ + public DutchAddressRangePostcodeSearchResponseType createDutchAddressRangePostcodeSearchResponseType() { + return new DutchAddressRangePostcodeSearchResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetDossierResponseType } + * + */ + public DutchBusinessGetDossierResponseType createDutchBusinessGetDossierResponseType() { + return new DutchBusinessGetDossierResponseType(); + } + + /** + * Create an instance of {@link UserChangePasswordRequestType } + * + */ + public UserChangePasswordRequestType createUserChangePasswordRequestType() { + return new UserChangePasswordRequestType(); + } + + /** + * Create an instance of {@link BusinessBIKToSBIResponseType } + * + */ + public BusinessBIKToSBIResponseType createBusinessBIKToSBIResponseType() { + return new BusinessBIKToSBIResponseType(); + } + + /** + * Create an instance of {@link CarVWEOptionsRequestType } + * + */ + public CarVWEOptionsRequestType createCarVWEOptionsRequestType() { + return new CarVWEOptionsRequestType(); + } + + /** + * Create an instance of {@link CarVWEBasicTypeDataResponseType } + * + */ + public CarVWEBasicTypeDataResponseType createCarVWEBasicTypeDataResponseType() { + return new CarVWEBasicTypeDataResponseType(); + } + + /** + * Create an instance of {@link InsolvencySearchPublicationsByPersonResponseType } + * + */ + public InsolvencySearchPublicationsByPersonResponseType createInsolvencySearchPublicationsByPersonResponseType() { + return new InsolvencySearchPublicationsByPersonResponseType(); + } + + /** + * Create an instance of {@link RoutePlannerDescriptionResponseType } + * + */ + public RoutePlannerDescriptionResponseType createRoutePlannerDescriptionResponseType() { + return new RoutePlannerDescriptionResponseType(); + } + + /** + * Create an instance of {@link RoutePlannerEUInformationRequestType } + * + */ + public RoutePlannerEUInformationRequestType createRoutePlannerEUInformationRequestType() { + return new RoutePlannerEUInformationRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetNonMarketingIndicatorResponseType } + * + */ + public DutchBusinessGetNonMarketingIndicatorResponseType createDutchBusinessGetNonMarketingIndicatorResponseType() { + return new DutchBusinessGetNonMarketingIndicatorResponseType(); + } + + /** + * Create an instance of {@link AccountUserSearchV2ResponseType } + * + */ + public AccountUserSearchV2ResponseType createAccountUserSearchV2ResponseType() { + return new AccountUserSearchV2ResponseType(); + } + + /** + * Create an instance of {@link AddressDistrictListNeighborhoodsRequestType } + * + */ + public AddressDistrictListNeighborhoodsRequestType createAddressDistrictListNeighborhoodsRequestType() { + return new AddressDistrictListNeighborhoodsRequestType(); + } + + /** + * Create an instance of {@link BusinessGetDossierV3RequestType } + * + */ + public BusinessGetDossierV3RequestType createBusinessGetDossierV3RequestType() { + return new BusinessGetDossierV3RequestType(); + } + + /** + * Create an instance of {@link BusinessGetBIKDescriptionRequestType } + * + */ + public BusinessGetBIKDescriptionRequestType createBusinessGetBIKDescriptionRequestType() { + return new BusinessGetBIKDescriptionRequestType(); + } + + /** + * Create an instance of {@link SepaConvertBasicBankAccountNumberRequestType } + * + */ + public SepaConvertBasicBankAccountNumberRequestType createSepaConvertBasicBankAccountNumberRequestType() { + return new SepaConvertBasicBankAccountNumberRequestType(); + } + + /** + * Create an instance of {@link KadasterUittrekselKadastraleKaartPostcodeRequestType } + * + */ + public KadasterUittrekselKadastraleKaartPostcodeRequestType createKadasterUittrekselKadastraleKaartPostcodeRequestType() { + return new KadasterUittrekselKadastraleKaartPostcodeRequestType(); + } + + /** + * Create an instance of {@link DriveInfoDistanceLookupResponseType } + * + */ + public DriveInfoDistanceLookupResponseType createDriveInfoDistanceLookupResponseType() { + return new DriveInfoDistanceLookupResponseType(); + } + + /** + * Create an instance of {@link KadasterValueListGetMunicipalitiesRequestType } + * + */ + public KadasterValueListGetMunicipalitiesRequestType createKadasterValueListGetMunicipalitiesRequestType() { + return new KadasterValueListGetMunicipalitiesRequestType(); + } + + /** + * Create an instance of {@link CarATDPriceRequestType } + * + */ + public CarATDPriceRequestType createCarATDPriceRequestType() { + return new CarATDPriceRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetDossierV2RequestType } + * + */ + public DutchBusinessGetDossierV2RequestType createDutchBusinessGetDossierV2RequestType() { + return new DutchBusinessGetDossierV2RequestType(); + } + + /** + * Create an instance of {@link MapViewInternationalLatLonRequestType } + * + */ + public MapViewInternationalLatLonRequestType createMapViewInternationalLatLonRequestType() { + return new MapViewInternationalLatLonRequestType(); + } + + /** + * Create an instance of {@link DnbSearchReferenceV2RequestType } + * + */ + public DnbSearchReferenceV2RequestType createDnbSearchReferenceV2RequestType() { + return new DnbSearchReferenceV2RequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetDossierV3RequestType } + * + */ + public DutchBusinessGetDossierV3RequestType createDutchBusinessGetDossierV3RequestType() { + return new DutchBusinessGetDossierV3RequestType(); + } + + /** + * Create an instance of {@link KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType } + * + */ + public KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType createKadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType() { + return new KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType(); + } + + /** + * Create an instance of {@link SepaConvertBankAccountNumberRequestType } + * + */ + public SepaConvertBankAccountNumberRequestType createSepaConvertBankAccountNumberRequestType() { + return new SepaConvertBankAccountNumberRequestType(); + } + + /** + * Create an instance of {@link ComplianceSearchPersonsResponseType } + * + */ + public ComplianceSearchPersonsResponseType createComplianceSearchPersonsResponseType() { + return new ComplianceSearchPersonsResponseType(); + } + + /** + * Create an instance of {@link CreateTestUserRequestType } + * + */ + public CreateTestUserRequestType createCreateTestUserRequestType() { + return new CreateTestUserRequestType(); + } + + /** + * Create an instance of {@link CarVWEMeldcodeCheckResponseType } + * + */ + public CarVWEMeldcodeCheckResponseType createCarVWEMeldcodeCheckResponseType() { + return new CarVWEMeldcodeCheckResponseType(); + } + + /** + * Create an instance of {@link BusinessUpdateAddDossierResponseType } + * + */ + public BusinessUpdateAddDossierResponseType createBusinessUpdateAddDossierResponseType() { + return new BusinessUpdateAddDossierResponseType(); + } + + /** + * Create an instance of {@link KvkSearchParametersResponseType } + * + */ + public KvkSearchParametersResponseType createKvkSearchParametersResponseType() { + return new KvkSearchParametersResponseType(); + } + + /** + * Create an instance of {@link AccountViewV2ResponseType } + * + */ + public AccountViewV2ResponseType createAccountViewV2ResponseType() { + return new AccountViewV2ResponseType(); + } + + /** + * Create an instance of {@link DriveInfoTimeLookupRequestType } + * + */ + public DriveInfoTimeLookupRequestType createDriveInfoTimeLookupRequestType() { + return new DriveInfoTimeLookupRequestType(); + } + + /** + * Create an instance of {@link KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType } + * + */ + public KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType createKadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType() { + return new KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType(); + } + + /** + * Create an instance of {@link RoutePlannerDescriptionDutchAddressRequestType } + * + */ + public RoutePlannerDescriptionDutchAddressRequestType createRoutePlannerDescriptionDutchAddressRequestType() { + return new RoutePlannerDescriptionDutchAddressRequestType(); + } + + /** + * Create an instance of {@link DnbQuickCheckResponseType } + * + */ + public DnbQuickCheckResponseType createDnbQuickCheckResponseType() { + return new DnbQuickCheckResponseType(); + } + + /** + * Create an instance of {@link GeoLocationNeighborhoodDistanceResponseType } + * + */ + public GeoLocationNeighborhoodDistanceResponseType createGeoLocationNeighborhoodDistanceResponseType() { + return new GeoLocationNeighborhoodDistanceResponseType(); + } + + /** + * Create an instance of {@link KadasterValueListGetMunicipalitiesResponseType } + * + */ + public KadasterValueListGetMunicipalitiesResponseType createKadasterValueListGetMunicipalitiesResponseType() { + return new KadasterValueListGetMunicipalitiesResponseType(); + } + + /** + * Create an instance of {@link KvkUpdateRemoveDossierResponseType } + * + */ + public KvkUpdateRemoveDossierResponseType createKvkUpdateRemoveDossierResponseType() { + return new KvkUpdateRemoveDossierResponseType(); + } + + /** + * Create an instance of {@link CarRDWCarDataBPV2RequestType } + * + */ + public CarRDWCarDataBPV2RequestType createCarRDWCarDataBPV2RequestType() { + return new CarRDWCarDataBPV2RequestType(); + } + + /** + * Create an instance of {@link KvkGetDossierResponseType } + * + */ + public KvkGetDossierResponseType createKvkGetDossierResponseType() { + return new KvkGetDossierResponseType(); + } + + /** + * Create an instance of {@link RoutePlannerEUMapRequestType } + * + */ + public RoutePlannerEUMapRequestType createRoutePlannerEUMapRequestType() { + return new RoutePlannerEUMapRequestType(); + } + + /** + * Create an instance of {@link CreditsafeSearchCriteriaRequestType } + * + */ + public CreditsafeSearchCriteriaRequestType createCreditsafeSearchCriteriaRequestType() { + return new CreditsafeSearchCriteriaRequestType(); + } + + /** + * Create an instance of {@link UserNotifyResponseType } + * + */ + public UserNotifyResponseType createUserNotifyResponseType() { + return new UserNotifyResponseType(); + } + + /** + * Create an instance of {@link KadasterEigendomsBerichtPostcodeResponseType } + * + */ + public KadasterEigendomsBerichtPostcodeResponseType createKadasterEigendomsBerichtPostcodeResponseType() { + return new KadasterEigendomsBerichtPostcodeResponseType(); + } + + /** + * Create an instance of {@link SepaMatchAccountHolderRequestType } + * + */ + public SepaMatchAccountHolderRequestType createSepaMatchAccountHolderRequestType() { + return new SepaMatchAccountHolderRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractDocumentDataV3ResponseType } + * + */ + public DutchBusinessGetExtractDocumentDataV3ResponseType createDutchBusinessGetExtractDocumentDataV3ResponseType() { + return new DutchBusinessGetExtractDocumentDataV3ResponseType(); + } + + /** + * Create an instance of {@link KvkSearchSelectionRequestType } + * + */ + public KvkSearchSelectionRequestType createKvkSearchSelectionRequestType() { + return new KvkSearchSelectionRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetVatNumberRequestType } + * + */ + public DutchBusinessGetVatNumberRequestType createDutchBusinessGetVatNumberRequestType() { + return new DutchBusinessGetVatNumberRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetDossierRequestType } + * + */ + public DutchBusinessGetDossierRequestType createDutchBusinessGetDossierRequestType() { + return new DutchBusinessGetDossierRequestType(); + } + + /** + * Create an instance of {@link DnbWorldbaseMarketingPlusLinkageRequestType } + * + */ + public DnbWorldbaseMarketingPlusLinkageRequestType createDnbWorldbaseMarketingPlusLinkageRequestType() { + return new DnbWorldbaseMarketingPlusLinkageRequestType(); + } + + /** + * Create an instance of {@link CreditsafeMonitorGetUpdatedCompaniesRequestType } + * + */ + public CreditsafeMonitorGetUpdatedCompaniesRequestType createCreditsafeMonitorGetUpdatedCompaniesRequestType() { + return new CreditsafeMonitorGetUpdatedCompaniesRequestType(); + } + + /** + * Create an instance of {@link CreditsafeSearchV2RequestType } + * + */ + public CreditsafeSearchV2RequestType createCreditsafeSearchV2RequestType() { + return new CreditsafeSearchV2RequestType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchResponseType } + * + */ + public DutchBusinessSearchResponseType createDutchBusinessSearchResponseType() { + return new DutchBusinessSearchResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessUBOCostsInvestigationRequestType } + * + */ + public DutchBusinessUBOCostsInvestigationRequestType createDutchBusinessUBOCostsInvestigationRequestType() { + return new DutchBusinessUBOCostsInvestigationRequestType(); + } + + /** + * Create an instance of {@link UserViewHostRestrictionsResponseType } + * + */ + public UserViewHostRestrictionsResponseType createUserViewHostRestrictionsResponseType() { + return new UserViewHostRestrictionsResponseType(); + } + + /** + * Create an instance of {@link AddressReeksAddressSearchResponseType } + * + */ + public AddressReeksAddressSearchResponseType createAddressReeksAddressSearchResponseType() { + return new AddressReeksAddressSearchResponseType(); + } + + /** + * Create an instance of {@link KadasterEigendomsBerichtPerceelRequestType } + * + */ + public KadasterEigendomsBerichtPerceelRequestType createKadasterEigendomsBerichtPerceelRequestType() { + return new KadasterEigendomsBerichtPerceelRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractHistoryDocumentDataResponseType } + * + */ + public DutchBusinessGetExtractHistoryDocumentDataResponseType createDutchBusinessGetExtractHistoryDocumentDataResponseType() { + return new DutchBusinessGetExtractHistoryDocumentDataResponseType(); + } + + /** + * Create an instance of {@link GraydonCreditSearchNameResponseType } + * + */ + public GraydonCreditSearchNameResponseType createGraydonCreditSearchNameResponseType() { + return new GraydonCreditSearchNameResponseType(); + } + + /** + * Create an instance of {@link RoutePlannerDescriptionAddressResponseType } + * + */ + public RoutePlannerDescriptionAddressResponseType createRoutePlannerDescriptionAddressResponseType() { + return new RoutePlannerDescriptionAddressResponseType(); + } + + /** + * Create an instance of {@link RoutePlannerInformationResponseType } + * + */ + public RoutePlannerInformationResponseType createRoutePlannerInformationResponseType() { + return new RoutePlannerInformationResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetConcernRelationsOverviewRequestType } + * + */ + public DutchBusinessGetConcernRelationsOverviewRequestType createDutchBusinessGetConcernRelationsOverviewRequestType() { + return new DutchBusinessGetConcernRelationsOverviewRequestType(); + } + + /** + * Create an instance of {@link GeoLocationAddressCoordinatesLatLonRequestType } + * + */ + public GeoLocationAddressCoordinatesLatLonRequestType createGeoLocationAddressCoordinatesLatLonRequestType() { + return new GeoLocationAddressCoordinatesLatLonRequestType(); + } + + /** + * Create an instance of {@link UserViewV2ResponseType } + * + */ + public UserViewV2ResponseType createUserViewV2ResponseType() { + return new UserViewV2ResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetPositionsResponseType } + * + */ + public DutchBusinessGetPositionsResponseType createDutchBusinessGetPositionsResponseType() { + return new DutchBusinessGetPositionsResponseType(); + } + + /** + * Create an instance of {@link AddressReeksPhraseSearchRequestType } + * + */ + public AddressReeksPhraseSearchRequestType createAddressReeksPhraseSearchRequestType() { + return new AddressReeksPhraseSearchRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetLeiResponseType } + * + */ + public DutchBusinessGetLeiResponseType createDutchBusinessGetLeiResponseType() { + return new DutchBusinessGetLeiResponseType(); + } + + /** + * Create an instance of {@link UserEditBalanceRequestType } + * + */ + public UserEditBalanceRequestType createUserEditBalanceRequestType() { + return new UserEditBalanceRequestType(); + } + + /** + * Create an instance of {@link AccountUserListV2ResponseType } + * + */ + public AccountUserListV2ResponseType createAccountUserListV2ResponseType() { + return new AccountUserListV2ResponseType(); + } + + /** + * Create an instance of {@link InternationalAddressSearchInteractiveRequestType } + * + */ + public InternationalAddressSearchInteractiveRequestType createInternationalAddressSearchInteractiveRequestType() { + return new InternationalAddressSearchInteractiveRequestType(); + } + + /** + * Create an instance of {@link AddressDistrictSearchRequestType } + * + */ + public AddressDistrictSearchRequestType createAddressDistrictSearchRequestType() { + return new AddressDistrictSearchRequestType(); + } + + /** + * Create an instance of {@link GeoLocationRDToLatLonRequestType } + * + */ + public GeoLocationRDToLatLonRequestType createGeoLocationRDToLatLonRequestType() { + return new GeoLocationRDToLatLonRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetSBIResponseType } + * + */ + public DutchBusinessGetSBIResponseType createDutchBusinessGetSBIResponseType() { + return new DutchBusinessGetSBIResponseType(); + } + + /** + * Create an instance of {@link AddressProvinceListRequestType } + * + */ + public AddressProvinceListRequestType createAddressProvinceListRequestType() { + return new AddressProvinceListRequestType(); + } + + /** + * Create an instance of {@link CarVWEListBrandsResponseType } + * + */ + public CarVWEListBrandsResponseType createCarVWEListBrandsResponseType() { + return new CarVWEListBrandsResponseType(); + } + + /** + * Create an instance of {@link AccountGetCreationStatusRequestType } + * + */ + public AccountGetCreationStatusRequestType createAccountGetCreationStatusRequestType() { + return new AccountGetCreationStatusRequestType(); + } + + /** + * Create an instance of {@link GeoLocationDistanceSortedPostcodesRadiusRequestType } + * + */ + public GeoLocationDistanceSortedPostcodesRadiusRequestType createGeoLocationDistanceSortedPostcodesRadiusRequestType() { + return new GeoLocationDistanceSortedPostcodesRadiusRequestType(); + } + + /** + * Create an instance of {@link AddressReeksPhraseSearchResponseType } + * + */ + public AddressReeksPhraseSearchResponseType createAddressReeksPhraseSearchResponseType() { + return new AddressReeksPhraseSearchResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractHistoryDocumentDataV3ResponseType } + * + */ + public DutchBusinessGetExtractHistoryDocumentDataV3ResponseType createDutchBusinessGetExtractHistoryDocumentDataV3ResponseType() { + return new DutchBusinessGetExtractHistoryDocumentDataV3ResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchNewsByDossierRequestType } + * + */ + public DutchBusinessSearchNewsByDossierRequestType createDutchBusinessSearchNewsByDossierRequestType() { + return new DutchBusinessSearchNewsByDossierRequestType(); + } + + /** + * Create an instance of {@link GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType } + * + */ + public GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType createGeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType() { + return new GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType(); + } + + /** + * Create an instance of {@link GeoLocationDistanceSortedPostcodesResponseType } + * + */ + public GeoLocationDistanceSortedPostcodesResponseType createGeoLocationDistanceSortedPostcodesResponseType() { + return new GeoLocationDistanceSortedPostcodesResponseType(); + } + + /** + * Create an instance of {@link KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType } + * + */ + public KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType createKadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType() { + return new KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType(); + } + + /** + * Create an instance of {@link LoginResponseType } + * + */ + public LoginResponseType createLoginResponseType() { + return new LoginResponseType(); + } + + /** + * Create an instance of {@link UserListAssignableGroupsRequestType } + * + */ + public UserListAssignableGroupsRequestType createUserListAssignableGroupsRequestType() { + return new UserListAssignableGroupsRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchPostcodeRequestType } + * + */ + public DutchBusinessSearchPostcodeRequestType createDutchBusinessSearchPostcodeRequestType() { + return new DutchBusinessSearchPostcodeRequestType(); + } + + /** + * Create an instance of {@link CarRDWCarDataPriceResponseType } + * + */ + public CarRDWCarDataPriceResponseType createCarRDWCarDataPriceResponseType() { + return new CarRDWCarDataPriceResponseType(); + } + + /** + * Create an instance of {@link KadasterHypothecairBerichtPostcodeV2ResponseType } + * + */ + public KadasterHypothecairBerichtPostcodeV2ResponseType createKadasterHypothecairBerichtPostcodeV2ResponseType() { + return new KadasterHypothecairBerichtPostcodeV2ResponseType(); + } + + /** + * Create an instance of {@link GeoLocationAddressCoordinatesRDResponseType } + * + */ + public GeoLocationAddressCoordinatesRDResponseType createGeoLocationAddressCoordinatesRDResponseType() { + return new GeoLocationAddressCoordinatesRDResponseType(); + } + + /** + * Create an instance of {@link KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType } + * + */ + public KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType createKadasterV2GetKadastraalBerichtObjectByObjectIdRequestType() { + return new KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType(); + } + + /** + * Create an instance of {@link UserListAssignableGroupsResponseType } + * + */ + public UserListAssignableGroupsResponseType createUserListAssignableGroupsResponseType() { + return new UserListAssignableGroupsResponseType(); + } + + /** + * Create an instance of {@link BusinessSearchDossierNumberResponseType } + * + */ + public BusinessSearchDossierNumberResponseType createBusinessSearchDossierNumberResponseType() { + return new BusinessSearchDossierNumberResponseType(); + } + + /** + * Create an instance of {@link AddressNeighborhoodPhraseSearchRequestType } + * + */ + public AddressNeighborhoodPhraseSearchRequestType createAddressNeighborhoodPhraseSearchRequestType() { + return new AddressNeighborhoodPhraseSearchRequestType(); + } + + /** + * Create an instance of {@link KadasterHypothecairBerichtPerceelV3ResponseType } + * + */ + public KadasterHypothecairBerichtPerceelV3ResponseType createKadasterHypothecairBerichtPerceelV3ResponseType() { + return new KadasterHypothecairBerichtPerceelV3ResponseType(); + } + + /** + * Create an instance of {@link RoutePlannerEUMapResponseType } + * + */ + public RoutePlannerEUMapResponseType createRoutePlannerEUMapResponseType() { + return new RoutePlannerEUMapResponseType(); + } + + /** + * Create an instance of {@link KadasterBronDocumentResponseType } + * + */ + public KadasterBronDocumentResponseType createKadasterBronDocumentResponseType() { + return new KadasterBronDocumentResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateAddDossierResponseType } + * + */ + public DutchBusinessUpdateAddDossierResponseType createDutchBusinessUpdateAddDossierResponseType() { + return new DutchBusinessUpdateAddDossierResponseType(); + } + + /** + * Create an instance of {@link AccountUserListV2RequestType } + * + */ + public AccountUserListV2RequestType createAccountUserListV2RequestType() { + return new AccountUserListV2RequestType(); + } + + /** + * Create an instance of {@link BusinessGetSBIDescriptionRequestType } + * + */ + public BusinessGetSBIDescriptionRequestType createBusinessGetSBIDescriptionRequestType() { + return new BusinessGetSBIDescriptionRequestType(); + } + + /** + * Create an instance of {@link RoutePlannerInformationDutchAddressResponseType } + * + */ + public RoutePlannerInformationDutchAddressResponseType createRoutePlannerInformationDutchAddressResponseType() { + return new RoutePlannerInformationDutchAddressResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateGetDossiersResponseType } + * + */ + public DutchBusinessUpdateGetDossiersResponseType createDutchBusinessUpdateGetDossiersResponseType() { + return new DutchBusinessUpdateGetDossiersResponseType(); + } + + /** + * Create an instance of {@link AddressPerceelFullParameterSearchV2RequestType } + * + */ + public AddressPerceelFullParameterSearchV2RequestType createAddressPerceelFullParameterSearchV2RequestType() { + return new AddressPerceelFullParameterSearchV2RequestType(); + } + + /** + * Create an instance of {@link DutchBusinessUBOStartInvestigationResponseType } + * + */ + public DutchBusinessUBOStartInvestigationResponseType createDutchBusinessUBOStartInvestigationResponseType() { + return new DutchBusinessUBOStartInvestigationResponseType(); + } + + /** + * Create an instance of {@link KadasterKadastraleKaartPerceelV2ResponseType } + * + */ + public KadasterKadastraleKaartPerceelV2ResponseType createKadasterKadastraleKaartPerceelV2ResponseType() { + return new KadasterKadastraleKaartPerceelV2ResponseType(); + } + + /** + * Create an instance of {@link KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType } + * + */ + public KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType createKadasterV2GetHypothecairBerichtObjectByObjectIdResponseType() { + return new KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType(); + } + + /** + * Create an instance of {@link KadasterUittrekselKadastraleKaartPerceelRequestType } + * + */ + public KadasterUittrekselKadastraleKaartPerceelRequestType createKadasterUittrekselKadastraleKaartPerceelRequestType() { + return new KadasterUittrekselKadastraleKaartPerceelRequestType(); + } + + /** + * Create an instance of {@link KadasterEigendomsBerichtDocumentPerceelResponseType } + * + */ + public KadasterEigendomsBerichtDocumentPerceelResponseType createKadasterEigendomsBerichtDocumentPerceelResponseType() { + return new KadasterEigendomsBerichtDocumentPerceelResponseType(); + } + + /** + * Create an instance of {@link AddressCitySearchV2ResponseType } + * + */ + public AddressCitySearchV2ResponseType createAddressCitySearchV2ResponseType() { + return new AddressCitySearchV2ResponseType(); + } + + /** + * Create an instance of {@link UserEditHostRestrictionsRequestType } + * + */ + public UserEditHostRestrictionsRequestType createUserEditHostRestrictionsRequestType() { + return new UserEditHostRestrictionsRequestType(); + } + + /** + * Create an instance of {@link CarRDWCarDataOptionsRequestType } + * + */ + public CarRDWCarDataOptionsRequestType createCarRDWCarDataOptionsRequestType() { + return new CarRDWCarDataOptionsRequestType(); + } + + /** + * Create an instance of {@link MapViewPostcodeV2ResponseType } + * + */ + public MapViewPostcodeV2ResponseType createMapViewPostcodeV2ResponseType() { + return new MapViewPostcodeV2ResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractHistoryDocumentDataV2RequestType } + * + */ + public DutchBusinessGetExtractHistoryDocumentDataV2RequestType createDutchBusinessGetExtractHistoryDocumentDataV2RequestType() { + return new DutchBusinessGetExtractHistoryDocumentDataV2RequestType(); + } + + /** + * Create an instance of {@link CarVWEVersionYearDataResponseType } + * + */ + public CarVWEVersionYearDataResponseType createCarVWEVersionYearDataResponseType() { + return new CarVWEVersionYearDataResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractHistoryDocumentDataV3RequestType } + * + */ + public DutchBusinessGetExtractHistoryDocumentDataV3RequestType createDutchBusinessGetExtractHistoryDocumentDataV3RequestType() { + return new DutchBusinessGetExtractHistoryDocumentDataV3RequestType(); + } + + /** + * Create an instance of {@link KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType } + * + */ + public KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType createKadasterV2GetHypothecairBerichtObjectByObjectIdRequestType() { + return new KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateGetOverviewResponseType } + * + */ + public DutchBusinessUpdateGetOverviewResponseType createDutchBusinessUpdateGetOverviewResponseType() { + return new DutchBusinessUpdateGetOverviewResponseType(); + } + + /** + * Create an instance of {@link GeoLocationPostcodeCoordinatesRDRequestType } + * + */ + public GeoLocationPostcodeCoordinatesRDRequestType createGeoLocationPostcodeCoordinatesRDRequestType() { + return new GeoLocationPostcodeCoordinatesRDRequestType(); + } + + /** + * Create an instance of {@link GeoLocationPostcodeDistanceResponseType } + * + */ + public GeoLocationPostcodeDistanceResponseType createGeoLocationPostcodeDistanceResponseType() { + return new GeoLocationPostcodeDistanceResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateGetChangedDossiersResponseType } + * + */ + public DutchBusinessUpdateGetChangedDossiersResponseType createDutchBusinessUpdateGetChangedDossiersResponseType() { + return new DutchBusinessUpdateGetChangedDossiersResponseType(); + } + + /** + * Create an instance of {@link ComplianceSearchBusinessesRequestType } + * + */ + public ComplianceSearchBusinessesRequestType createComplianceSearchBusinessesRequestType() { + return new ComplianceSearchBusinessesRequestType(); + } + + /** + * Create an instance of {@link ComplianceSearchBusinessesResponseType } + * + */ + public ComplianceSearchBusinessesResponseType createComplianceSearchBusinessesResponseType() { + return new ComplianceSearchBusinessesResponseType(); + } + + /** + * Create an instance of {@link GeoLocationDistanceSortedPostcodesRadiusResponseType } + * + */ + public GeoLocationDistanceSortedPostcodesRadiusResponseType createGeoLocationDistanceSortedPostcodesRadiusResponseType() { + return new GeoLocationDistanceSortedPostcodesRadiusResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetAdditionalPositionsResponseType } + * + */ + public DutchBusinessGetAdditionalPositionsResponseType createDutchBusinessGetAdditionalPositionsResponseType() { + return new DutchBusinessGetAdditionalPositionsResponseType(); + } + + /** + * Create an instance of {@link MapViewLatLonResponseType } + * + */ + public MapViewLatLonResponseType createMapViewLatLonResponseType() { + return new MapViewLatLonResponseType(); + } + + /** + * Create an instance of {@link AddressReeksPostcodeSearchResponseType } + * + */ + public AddressReeksPostcodeSearchResponseType createAddressReeksPostcodeSearchResponseType() { + return new AddressReeksPostcodeSearchResponseType(); + } + + /** + * Create an instance of {@link CreditsafeGetReportFullV2RequestType } + * + */ + public CreditsafeGetReportFullV2RequestType createCreditsafeGetReportFullV2RequestType() { + return new CreditsafeGetReportFullV2RequestType(); + } + + /** + * Create an instance of {@link AddressReeksParameterSearchRequestType } + * + */ + public AddressReeksParameterSearchRequestType createAddressReeksParameterSearchRequestType() { + return new AddressReeksParameterSearchRequestType(); + } + + /** + * Create an instance of {@link DnbGetReferenceRequestType } + * + */ + public DnbGetReferenceRequestType createDnbGetReferenceRequestType() { + return new DnbGetReferenceRequestType(); + } + + /** + * Create an instance of {@link MapViewRDRequestType } + * + */ + public MapViewRDRequestType createMapViewRDRequestType() { + return new MapViewRDRequestType(); + } + + /** + * Create an instance of {@link KvkGetExtractDocumentResponseType } + * + */ + public KvkGetExtractDocumentResponseType createKvkGetExtractDocumentResponseType() { + return new KvkGetExtractDocumentResponseType(); + } + + /** + * Create an instance of {@link UserViewBalanceRequestType } + * + */ + public UserViewBalanceRequestType createUserViewBalanceRequestType() { + return new UserViewBalanceRequestType(); + } + + /** + * Create an instance of {@link KvkSearchPostcodeResponseType } + * + */ + public KvkSearchPostcodeResponseType createKvkSearchPostcodeResponseType() { + return new KvkSearchPostcodeResponseType(); + } + + /** + * Create an instance of {@link KadasterV2GetKoopsommenOverzichtResponseType } + * + */ + public KadasterV2GetKoopsommenOverzichtResponseType createKadasterV2GetKoopsommenOverzichtResponseType() { + return new KadasterV2GetKoopsommenOverzichtResponseType(); + } + + /** + * Create an instance of {@link GeoLocationRDToLatLonResponseType } + * + */ + public GeoLocationRDToLatLonResponseType createGeoLocationRDToLatLonResponseType() { + return new GeoLocationRDToLatLonResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractHistoryDocumentDataRequestType } + * + */ + public DutchBusinessGetExtractHistoryDocumentDataRequestType createDutchBusinessGetExtractHistoryDocumentDataRequestType() { + return new DutchBusinessGetExtractHistoryDocumentDataRequestType(); + } + + /** + * Create an instance of {@link BusinessUpdateCheckDossierResponseType } + * + */ + public BusinessUpdateCheckDossierResponseType createBusinessUpdateCheckDossierResponseType() { + return new BusinessUpdateCheckDossierResponseType(); + } + + /** + * Create an instance of {@link LogoutRequestType } + * + */ + public LogoutRequestType createLogoutRequestType() { + return new LogoutRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateCheckDossierResponseType } + * + */ + public DutchBusinessUpdateCheckDossierResponseType createDutchBusinessUpdateCheckDossierResponseType() { + return new DutchBusinessUpdateCheckDossierResponseType(); + } + + /** + * Create an instance of {@link BusinessSearchParametersResponseType } + * + */ + public BusinessSearchParametersResponseType createBusinessSearchParametersResponseType() { + return new BusinessSearchParametersResponseType(); + } + + /** + * Create an instance of {@link BusinessSearchParametersV3ResponseType } + * + */ + public BusinessSearchParametersV3ResponseType createBusinessSearchParametersV3ResponseType() { + return new BusinessSearchParametersV3ResponseType(); + } + + /** + * Create an instance of {@link AddressPerceelFullParameterSearchV2ResponseType } + * + */ + public AddressPerceelFullParameterSearchV2ResponseType createAddressPerceelFullParameterSearchV2ResponseType() { + return new AddressPerceelFullParameterSearchV2ResponseType(); + } + + /** + * Create an instance of {@link KadasterHypothecairBerichtPostcodeV3ResponseType } + * + */ + public KadasterHypothecairBerichtPostcodeV3ResponseType createKadasterHypothecairBerichtPostcodeV3ResponseType() { + return new KadasterHypothecairBerichtPostcodeV3ResponseType(); + } + + /** + * Create an instance of {@link KadasterValueListGetRangesResponseType } + * + */ + public KadasterValueListGetRangesResponseType createKadasterValueListGetRangesResponseType() { + return new KadasterValueListGetRangesResponseType(); + } + + /** + * Create an instance of {@link KvkUpdateRemoveDossierRequestType } + * + */ + public KvkUpdateRemoveDossierRequestType createKvkUpdateRemoveDossierRequestType() { + return new KvkUpdateRemoveDossierRequestType(); + } + + /** + * Create an instance of {@link BusinessUpdateGetDossiersRequestType } + * + */ + public BusinessUpdateGetDossiersRequestType createBusinessUpdateGetDossiersRequestType() { + return new BusinessUpdateGetDossiersRequestType(); + } + + /** + * Create an instance of {@link RoutePlannerInformationDutchAddressRequestType } + * + */ + public RoutePlannerInformationDutchAddressRequestType createRoutePlannerInformationDutchAddressRequestType() { + return new RoutePlannerInformationDutchAddressRequestType(); + } + + /** + * Create an instance of {@link GeoLocationNeighborhoodCoordinatesLatLonRequestType } + * + */ + public GeoLocationNeighborhoodCoordinatesLatLonRequestType createGeoLocationNeighborhoodCoordinatesLatLonRequestType() { + return new GeoLocationNeighborhoodCoordinatesLatLonRequestType(); + } + + /** + * Create an instance of {@link KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType } + * + */ + public KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType createKadasterV2GetKadastraalBerichtObjectByObjectIdResponseType() { + return new KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType(); + } + + /** + * Create an instance of {@link CarRDWCarCheckCodeRequestType } + * + */ + public CarRDWCarCheckCodeRequestType createCarRDWCarCheckCodeRequestType() { + return new CarRDWCarCheckCodeRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractHistoryChangedRequestType } + * + */ + public DutchBusinessGetExtractHistoryChangedRequestType createDutchBusinessGetExtractHistoryChangedRequestType() { + return new DutchBusinessGetExtractHistoryChangedRequestType(); + } + + /** + * Create an instance of {@link GeoLocationNeighborhoodCoordinatesRDRequestType } + * + */ + public GeoLocationNeighborhoodCoordinatesRDRequestType createGeoLocationNeighborhoodCoordinatesRDRequestType() { + return new GeoLocationNeighborhoodCoordinatesRDRequestType(); + } + + /** + * Create an instance of {@link ComplianceGetBusinessResponseType } + * + */ + public ComplianceGetBusinessResponseType createComplianceGetBusinessResponseType() { + return new ComplianceGetBusinessResponseType(); + } + + /** + * Create an instance of {@link GraydonCreditCompanyLiaisonsRequestType } + * + */ + public GraydonCreditCompanyLiaisonsRequestType createGraydonCreditCompanyLiaisonsRequestType() { + return new GraydonCreditCompanyLiaisonsRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetConcernRelationsOverviewResponseType } + * + */ + public DutchBusinessGetConcernRelationsOverviewResponseType createDutchBusinessGetConcernRelationsOverviewResponseType() { + return new DutchBusinessGetConcernRelationsOverviewResponseType(); + } + + /** + * Create an instance of {@link KadasterUittrekselKadastraleKaartPerceelV2ResponseType } + * + */ + public KadasterUittrekselKadastraleKaartPerceelV2ResponseType createKadasterUittrekselKadastraleKaartPerceelV2ResponseType() { + return new KadasterUittrekselKadastraleKaartPerceelV2ResponseType(); + } + + /** + * Create an instance of {@link UserCreateV2RequestType } + * + */ + public UserCreateV2RequestType createUserCreateV2RequestType() { + return new UserCreateV2RequestType(); + } + + /** + * Create an instance of {@link UserViewHostRestrictionsRequestType } + * + */ + public UserViewHostRestrictionsRequestType createUserViewHostRestrictionsRequestType() { + return new UserViewHostRestrictionsRequestType(); + } + + /** + * Create an instance of {@link AddressProvinceSearchResponseType } + * + */ + public AddressProvinceSearchResponseType createAddressProvinceSearchResponseType() { + return new AddressProvinceSearchResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetDossierV3ResponseType } + * + */ + public DutchBusinessGetDossierV3ResponseType createDutchBusinessGetDossierV3ResponseType() { + return new DutchBusinessGetDossierV3ResponseType(); + } + + /** + * Create an instance of {@link DnbWorldbaseMarketingPlusResponseType } + * + */ + public DnbWorldbaseMarketingPlusResponseType createDnbWorldbaseMarketingPlusResponseType() { + return new DnbWorldbaseMarketingPlusResponseType(); + } + + /** + * Create an instance of {@link RiskCheckPersonRequestType } + * + */ + public RiskCheckPersonRequestType createRiskCheckPersonRequestType() { + return new RiskCheckPersonRequestType(); + } + + /** + * Create an instance of {@link ComplianceSearchPersonsRequestType } + * + */ + public ComplianceSearchPersonsRequestType createComplianceSearchPersonsRequestType() { + return new ComplianceSearchPersonsRequestType(); + } + + /** + * Create an instance of {@link GeoLocationNeighborhoodDistanceRequestType } + * + */ + public GeoLocationNeighborhoodDistanceRequestType createGeoLocationNeighborhoodDistanceRequestType() { + return new GeoLocationNeighborhoodDistanceRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchNewsByDossierResponseType } + * + */ + public DutchBusinessSearchNewsByDossierResponseType createDutchBusinessSearchNewsByDossierResponseType() { + return new DutchBusinessSearchNewsByDossierResponseType(); + } + + /** + * Create an instance of {@link GraydonCreditManagementResponseType } + * + */ + public GraydonCreditManagementResponseType createGraydonCreditManagementResponseType() { + return new GraydonCreditManagementResponseType(); + } + + /** + * Create an instance of {@link KadasterUittrekselKadastraleKaartPerceelV2RequestType } + * + */ + public KadasterUittrekselKadastraleKaartPerceelV2RequestType createKadasterUittrekselKadastraleKaartPerceelV2RequestType() { + return new KadasterUittrekselKadastraleKaartPerceelV2RequestType(); + } + + /** + * Create an instance of {@link KvkUpdateGetChangedDossiersResponseType } + * + */ + public KvkUpdateGetChangedDossiersResponseType createKvkUpdateGetChangedDossiersResponseType() { + return new KvkUpdateGetChangedDossiersResponseType(); + } + + /** + * Create an instance of {@link KadasterUittrekselKadastraleKaartPerceelV3RequestType } + * + */ + public KadasterUittrekselKadastraleKaartPerceelV3RequestType createKadasterUittrekselKadastraleKaartPerceelV3RequestType() { + return new KadasterUittrekselKadastraleKaartPerceelV3RequestType(); + } + + /** + * Create an instance of {@link UserSessionListRequestType } + * + */ + public UserSessionListRequestType createUserSessionListRequestType() { + return new UserSessionListRequestType(); + } + + /** + * Create an instance of {@link KadasterKoopsommenOverzichtResponseType } + * + */ + public KadasterKoopsommenOverzichtResponseType createKadasterKoopsommenOverzichtResponseType() { + return new KadasterKoopsommenOverzichtResponseType(); + } + + /** + * Create an instance of {@link GraydonCreditGetReportResponseType } + * + */ + public GraydonCreditGetReportResponseType createGraydonCreditGetReportResponseType() { + return new GraydonCreditGetReportResponseType(); + } + + /** + * Create an instance of {@link SepaIbanDetailsRequestType } + * + */ + public SepaIbanDetailsRequestType createSepaIbanDetailsRequestType() { + return new SepaIbanDetailsRequestType(); + } + + /** + * Create an instance of {@link BusinessUpdateGetChangedDossiersRequestType } + * + */ + public BusinessUpdateGetChangedDossiersRequestType createBusinessUpdateGetChangedDossiersRequestType() { + return new BusinessUpdateGetChangedDossiersRequestType(); + } + + /** + * Create an instance of {@link BusinessGetEstablishmentNumberRequestType } + * + */ + public BusinessGetEstablishmentNumberRequestType createBusinessGetEstablishmentNumberRequestType() { + return new BusinessGetEstablishmentNumberRequestType(); + } + + /** + * Create an instance of {@link KvkSearchDossierNumberResponseType } + * + */ + public KvkSearchDossierNumberResponseType createKvkSearchDossierNumberResponseType() { + return new KvkSearchDossierNumberResponseType(); + } + + /** + * Create an instance of {@link BusinessSearchPostcodeRequestType } + * + */ + public BusinessSearchPostcodeRequestType createBusinessSearchPostcodeRequestType() { + return new BusinessSearchPostcodeRequestType(); + } + + /** + * Create an instance of {@link BusinessSearchSelectionResponseType } + * + */ + public BusinessSearchSelectionResponseType createBusinessSearchSelectionResponseType() { + return new BusinessSearchSelectionResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractDocumentRequestType } + * + */ + public DutchBusinessGetExtractDocumentRequestType createDutchBusinessGetExtractDocumentRequestType() { + return new DutchBusinessGetExtractDocumentRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchEstablishmentsRequestType } + * + */ + public DutchBusinessSearchEstablishmentsRequestType createDutchBusinessSearchEstablishmentsRequestType() { + return new DutchBusinessSearchEstablishmentsRequestType(); + } + + /** + * Create an instance of {@link HeaderAuthenticateType } + * + */ + public HeaderAuthenticateType createHeaderAuthenticateType() { + return new HeaderAuthenticateType(); + } + + /** + * Create an instance of {@link DutchBusinessGetAnnualFinancialStatementRequestType } + * + */ + public DutchBusinessGetAnnualFinancialStatementRequestType createDutchBusinessGetAnnualFinancialStatementRequestType() { + return new DutchBusinessGetAnnualFinancialStatementRequestType(); + } + + /** + * Create an instance of {@link CarVWEPhotosResponseType } + * + */ + public CarVWEPhotosResponseType createCarVWEPhotosResponseType() { + return new CarVWEPhotosResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchSelectionSimpleResponseType } + * + */ + public DutchBusinessSearchSelectionSimpleResponseType createDutchBusinessSearchSelectionSimpleResponseType() { + return new DutchBusinessSearchSelectionSimpleResponseType(); + } + + /** + * Create an instance of {@link CarRDWCarDataBPRequestType } + * + */ + public CarRDWCarDataBPRequestType createCarRDWCarDataBPRequestType() { + return new CarRDWCarDataBPRequestType(); + } + + /** + * Create an instance of {@link GraydonCreditVatNumberRequestType } + * + */ + public GraydonCreditVatNumberRequestType createGraydonCreditVatNumberRequestType() { + return new GraydonCreditVatNumberRequestType(); + } + + /** + * Create an instance of {@link KadasterV2GetBronDocumentResponseType } + * + */ + public KadasterV2GetBronDocumentResponseType createKadasterV2GetBronDocumentResponseType() { + return new KadasterV2GetBronDocumentResponseType(); + } + + /** + * Create an instance of {@link RoutePlannerDescriptionCoordinatesRDResponseType } + * + */ + public RoutePlannerDescriptionCoordinatesRDResponseType createRoutePlannerDescriptionCoordinatesRDResponseType() { + return new RoutePlannerDescriptionCoordinatesRDResponseType(); + } + + /** + * Create an instance of {@link KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType } + * + */ + public KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType createKadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType() { + return new KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType(); + } + + /** + * Create an instance of {@link UserAddGroupResponseType } + * + */ + public UserAddGroupResponseType createUserAddGroupResponseType() { + return new UserAddGroupResponseType(); + } + + /** + * Create an instance of {@link KadasterEigendomsBerichtPostcodeRequestType } + * + */ + public KadasterEigendomsBerichtPostcodeRequestType createKadasterEigendomsBerichtPostcodeRequestType() { + return new KadasterEigendomsBerichtPostcodeRequestType(); + } + + /** + * Create an instance of {@link AddressPerceelFullParameterSearchResponseType } + * + */ + public AddressPerceelFullParameterSearchResponseType createAddressPerceelFullParameterSearchResponseType() { + return new AddressPerceelFullParameterSearchResponseType(); + } + + /** + * Create an instance of {@link BovagGetMemberByDutchBusinessRequestType } + * + */ + public BovagGetMemberByDutchBusinessRequestType createBovagGetMemberByDutchBusinessRequestType() { + return new BovagGetMemberByDutchBusinessRequestType(); + } + + /** + * Create an instance of {@link InsolvencySearchPublicationsByPersonRequestType } + * + */ + public InsolvencySearchPublicationsByPersonRequestType createInsolvencySearchPublicationsByPersonRequestType() { + return new InsolvencySearchPublicationsByPersonRequestType(); + } + + /** + * Create an instance of {@link CarVWEListModelsRequestType } + * + */ + public CarVWEListModelsRequestType createCarVWEListModelsRequestType() { + return new CarVWEListModelsRequestType(); + } + + /** + * Create an instance of {@link UserEditV2ResponseType } + * + */ + public UserEditV2ResponseType createUserEditV2ResponseType() { + return new UserEditV2ResponseType(); + } + + /** + * Create an instance of {@link AddressPerceelFullParameterSearchRequestType } + * + */ + public AddressPerceelFullParameterSearchRequestType createAddressPerceelFullParameterSearchRequestType() { + return new AddressPerceelFullParameterSearchRequestType(); + } + + /** + * Create an instance of {@link BusinessUpdateGetDossiersResponseType } + * + */ + public BusinessUpdateGetDossiersResponseType createBusinessUpdateGetDossiersResponseType() { + return new BusinessUpdateGetDossiersResponseType(); + } + + /** + * Create an instance of {@link CreateTestUserResponseType } + * + */ + public CreateTestUserResponseType createCreateTestUserResponseType() { + return new CreateTestUserResponseType(); + } + + /** + * Create an instance of {@link DnbSearchReferenceRequestType } + * + */ + public DnbSearchReferenceRequestType createDnbSearchReferenceRequestType() { + return new DnbSearchReferenceRequestType(); + } + + /** + * Create an instance of {@link RoutePlannerDescriptionCoordinatesRDRequestType } + * + */ + public RoutePlannerDescriptionCoordinatesRDRequestType createRoutePlannerDescriptionCoordinatesRDRequestType() { + return new RoutePlannerDescriptionCoordinatesRDRequestType(); + } + + /** + * Create an instance of {@link SepaConvertBasicBankAccountNumberResponseType } + * + */ + public SepaConvertBasicBankAccountNumberResponseType createSepaConvertBasicBankAccountNumberResponseType() { + return new SepaConvertBasicBankAccountNumberResponseType(); + } + + /** + * Create an instance of {@link DutchVehicleGetOwnerHistoryRequestType } + * + */ + public DutchVehicleGetOwnerHistoryRequestType createDutchVehicleGetOwnerHistoryRequestType() { + return new DutchVehicleGetOwnerHistoryRequestType(); + } + + /** + * Create an instance of {@link KadasterKadastraleKaartPerceelRequestType } + * + */ + public KadasterKadastraleKaartPerceelRequestType createKadasterKadastraleKaartPerceelRequestType() { + return new KadasterKadastraleKaartPerceelRequestType(); + } + + /** + * Create an instance of {@link DnbWorldbaseMarketingResponseType } + * + */ + public DnbWorldbaseMarketingResponseType createDnbWorldbaseMarketingResponseType() { + return new DnbWorldbaseMarketingResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractHistoryRequestType } + * + */ + public DutchBusinessGetExtractHistoryRequestType createDutchBusinessGetExtractHistoryRequestType() { + return new DutchBusinessGetExtractHistoryRequestType(); + } + + /** + * Create an instance of {@link KadasterEigendomsBerichtDocumentPostcodeRequestType } + * + */ + public KadasterEigendomsBerichtDocumentPostcodeRequestType createKadasterEigendomsBerichtDocumentPostcodeRequestType() { + return new KadasterEigendomsBerichtDocumentPostcodeRequestType(); + } + + /** + * Create an instance of {@link VatViesProxyCheckVatRequestType } + * + */ + public VatViesProxyCheckVatRequestType createVatViesProxyCheckVatRequestType() { + return new VatViesProxyCheckVatRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateCheckDossierRequestType } + * + */ + public DutchBusinessUpdateCheckDossierRequestType createDutchBusinessUpdateCheckDossierRequestType() { + return new DutchBusinessUpdateCheckDossierRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetExtractDocumentDataV2ResponseType } + * + */ + public DutchBusinessGetExtractDocumentDataV2ResponseType createDutchBusinessGetExtractDocumentDataV2ResponseType() { + return new DutchBusinessGetExtractDocumentDataV2ResponseType(); + } + + /** + * Create an instance of {@link AddressReeksPostcodeSearchRequestType } + * + */ + public AddressReeksPostcodeSearchRequestType createAddressReeksPostcodeSearchRequestType() { + return new AddressReeksPostcodeSearchRequestType(); + } + + /** + * Create an instance of {@link GraydonCreditSearchPostcodeResponseType } + * + */ + public GraydonCreditSearchPostcodeResponseType createGraydonCreditSearchPostcodeResponseType() { + return new GraydonCreditSearchPostcodeResponseType(); + } + + /** + * Create an instance of {@link ComplianceGetPersonResponseType } + * + */ + public ComplianceGetPersonResponseType createComplianceGetPersonResponseType() { + return new ComplianceGetPersonResponseType(); + } + + /** + * Create an instance of {@link CreditsafeMonitorGetUpdatedCompaniesResponseType } + * + */ + public CreditsafeMonitorGetUpdatedCompaniesResponseType createCreditsafeMonitorGetUpdatedCompaniesResponseType() { + return new CreditsafeMonitorGetUpdatedCompaniesResponseType(); + } + + /** + * Create an instance of {@link RoutePlannerRDInformationRequestType } + * + */ + public RoutePlannerRDInformationRequestType createRoutePlannerRDInformationRequestType() { + return new RoutePlannerRDInformationRequestType(); + } + + /** + * Create an instance of {@link UserRemoveResponseType } + * + */ + public UserRemoveResponseType createUserRemoveResponseType() { + return new UserRemoveResponseType(); + } + + /** + * Create an instance of {@link MetaGetServiceResponseType } + * + */ + public MetaGetServiceResponseType createMetaGetServiceResponseType() { + return new MetaGetServiceResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetLegalEntityResponseType } + * + */ + public DutchBusinessGetLegalEntityResponseType createDutchBusinessGetLegalEntityResponseType() { + return new DutchBusinessGetLegalEntityResponseType(); + } + + /** + * Create an instance of {@link GeoLocationNeighborhoodCoordinatesLatLonResponseType } + * + */ + public GeoLocationNeighborhoodCoordinatesLatLonResponseType createGeoLocationNeighborhoodCoordinatesLatLonResponseType() { + return new GeoLocationNeighborhoodCoordinatesLatLonResponseType(); + } + + /** + * Create an instance of {@link AreaCodePostcodeLookupResponseType } + * + */ + public AreaCodePostcodeLookupResponseType createAreaCodePostcodeLookupResponseType() { + return new AreaCodePostcodeLookupResponseType(); + } + + /** + * Create an instance of {@link SepaIbanDetailsResponseType } + * + */ + public SepaIbanDetailsResponseType createSepaIbanDetailsResponseType() { + return new SepaIbanDetailsResponseType(); + } + + /** + * Create an instance of {@link GraydonCreditQuickscanRequestType } + * + */ + public GraydonCreditQuickscanRequestType createGraydonCreditQuickscanRequestType() { + return new GraydonCreditQuickscanRequestType(); + } + + /** + * Create an instance of {@link GeoLocationInternationalLatLonToAddressResponseType } + * + */ + public GeoLocationInternationalLatLonToAddressResponseType createGeoLocationInternationalLatLonToAddressResponseType() { + return new GeoLocationInternationalLatLonToAddressResponseType(); + } + + /** + * Create an instance of {@link AccountGetCreationStatusResponseType } + * + */ + public AccountGetCreationStatusResponseType createAccountGetCreationStatusResponseType() { + return new AccountGetCreationStatusResponseType(); + } + + /** + * Create an instance of {@link KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType } + * + */ + public KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType createKadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType() { + return new KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType(); + } + + /** + * Create an instance of {@link GeoLocationRDToPostcodeResponseType } + * + */ + public GeoLocationRDToPostcodeResponseType createGeoLocationRDToPostcodeResponseType() { + return new GeoLocationRDToPostcodeResponseType(); + } + + /** + * Create an instance of {@link KadasterEigendomsBerichtDocumentPerceelRequestType } + * + */ + public KadasterEigendomsBerichtDocumentPerceelRequestType createKadasterEigendomsBerichtDocumentPerceelRequestType() { + return new KadasterEigendomsBerichtDocumentPerceelRequestType(); + } + + /** + * Create an instance of {@link UserSessionRemoveRequestType } + * + */ + public UserSessionRemoveRequestType createUserSessionRemoveRequestType() { + return new UserSessionRemoveRequestType(); + } + + /** + * Create an instance of {@link KadasterV2GetUittrekselKadastraleKaartByAdresResponseType } + * + */ + public KadasterV2GetUittrekselKadastraleKaartByAdresResponseType createKadasterV2GetUittrekselKadastraleKaartByAdresResponseType() { + return new KadasterV2GetUittrekselKadastraleKaartByAdresResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateRemoveDossierRequestType } + * + */ + public DutchBusinessUpdateRemoveDossierRequestType createDutchBusinessUpdateRemoveDossierRequestType() { + return new DutchBusinessUpdateRemoveDossierRequestType(); + } + + /** + * Create an instance of {@link AddressNeighborhoodPhraseSearchResponseType } + * + */ + public AddressNeighborhoodPhraseSearchResponseType createAddressNeighborhoodPhraseSearchResponseType() { + return new AddressNeighborhoodPhraseSearchResponseType(); + } + + /** + * Create an instance of {@link CarVWEListBrandsRequestType } + * + */ + public CarVWEListBrandsRequestType createCarVWEListBrandsRequestType() { + return new CarVWEListBrandsRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchEstablishmentsResponseType } + * + */ + public DutchBusinessSearchEstablishmentsResponseType createDutchBusinessSearchEstablishmentsResponseType() { + return new DutchBusinessSearchEstablishmentsResponseType(); + } + + /** + * Create an instance of {@link GeoLocationInternationalLatLonToAddressRequestType } + * + */ + public GeoLocationInternationalLatLonToAddressRequestType createGeoLocationInternationalLatLonToAddressRequestType() { + return new GeoLocationInternationalLatLonToAddressRequestType(); + } + + /** + * Create an instance of {@link LogoutResponseType } + * + */ + public LogoutResponseType createLogoutResponseType() { + return new LogoutResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchParametersResponseType } + * + */ + public DutchBusinessSearchParametersResponseType createDutchBusinessSearchParametersResponseType() { + return new DutchBusinessSearchParametersResponseType(); + } + + /** + * Create an instance of {@link VatViesProxyCheckVatResponseType } + * + */ + public VatViesProxyCheckVatResponseType createVatViesProxyCheckVatResponseType() { + return new VatViesProxyCheckVatResponseType(); + } + + /** + * Create an instance of {@link DriveInfoDistanceLookupRequestType } + * + */ + public DriveInfoDistanceLookupRequestType createDriveInfoDistanceLookupRequestType() { + return new DriveInfoDistanceLookupRequestType(); + } + + /** + * Create an instance of {@link GraydonCreditRatingsResponseType } + * + */ + public GraydonCreditRatingsResponseType createGraydonCreditRatingsResponseType() { + return new GraydonCreditRatingsResponseType(); + } + + /** + * Create an instance of {@link BusinessSearchParametersV2ResponseType } + * + */ + public BusinessSearchParametersV2ResponseType createBusinessSearchParametersV2ResponseType() { + return new BusinessSearchParametersV2ResponseType(); + } + + /** + * Create an instance of {@link RoutePlannerEUDescriptionResponseType } + * + */ + public RoutePlannerEUDescriptionResponseType createRoutePlannerEUDescriptionResponseType() { + return new RoutePlannerEUDescriptionResponseType(); + } + + /** + * Create an instance of {@link UserEditV2RequestType } + * + */ + public UserEditV2RequestType createUserEditV2RequestType() { + return new UserEditV2RequestType(); + } + + /** + * Create an instance of {@link BusinessSearchNameRequestType } + * + */ + public BusinessSearchNameRequestType createBusinessSearchNameRequestType() { + return new BusinessSearchNameRequestType(); + } + + /** + * Create an instance of {@link InsolvencySearchPublicationsByCoCNumberResponseType } + * + */ + public InsolvencySearchPublicationsByCoCNumberResponseType createInsolvencySearchPublicationsByCoCNumberResponseType() { + return new InsolvencySearchPublicationsByCoCNumberResponseType(); + } + + /** + * Create an instance of {@link CarVWEListVersionsResponseType } + * + */ + public CarVWEListVersionsResponseType createCarVWEListVersionsResponseType() { + return new CarVWEListVersionsResponseType(); + } + + /** + * Create an instance of {@link MetaGetMethodResponseType } + * + */ + public MetaGetMethodResponseType createMetaGetMethodResponseType() { + return new MetaGetMethodResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetConcernRelationsDetailsResponseType } + * + */ + public DutchBusinessGetConcernRelationsDetailsResponseType createDutchBusinessGetConcernRelationsDetailsResponseType() { + return new DutchBusinessGetConcernRelationsDetailsResponseType(); + } + + /** + * Create an instance of {@link AddressProvinceListDistrictsRequestType } + * + */ + public AddressProvinceListDistrictsRequestType createAddressProvinceListDistrictsRequestType() { + return new AddressProvinceListDistrictsRequestType(); + } + + /** + * Create an instance of {@link BusinessSearchNameResponseType } + * + */ + public BusinessSearchNameResponseType createBusinessSearchNameResponseType() { + return new BusinessSearchNameResponseType(); + } + + /** + * Create an instance of {@link GraydonCreditSearchIdentificationRequestType } + * + */ + public GraydonCreditSearchIdentificationRequestType createGraydonCreditSearchIdentificationRequestType() { + return new GraydonCreditSearchIdentificationRequestType(); + } + + /** + * Create an instance of {@link KadasterHypothecairBerichtPerceelRequestType } + * + */ + public KadasterHypothecairBerichtPerceelRequestType createKadasterHypothecairBerichtPerceelRequestType() { + return new KadasterHypothecairBerichtPerceelRequestType(); + } + + /** + * Create an instance of {@link BusinessSearchAddressResponseType } + * + */ + public BusinessSearchAddressResponseType createBusinessSearchAddressResponseType() { + return new BusinessSearchAddressResponseType(); + } + + /** + * Create an instance of {@link SepaValidateInternationalBankAccountNumberFormatRequestType } + * + */ + public SepaValidateInternationalBankAccountNumberFormatRequestType createSepaValidateInternationalBankAccountNumberFormatRequestType() { + return new SepaValidateInternationalBankAccountNumberFormatRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessUBOClassifyInvestigationResponseType } + * + */ + public DutchBusinessUBOClassifyInvestigationResponseType createDutchBusinessUBOClassifyInvestigationResponseType() { + return new DutchBusinessUBOClassifyInvestigationResponseType(); + } + + /** + * Create an instance of {@link AddressReeksFullParameterSearchRequestType } + * + */ + public AddressReeksFullParameterSearchRequestType createAddressReeksFullParameterSearchRequestType() { + return new AddressReeksFullParameterSearchRequestType(); + } + + /** + * Create an instance of {@link KadasterV2GetUittrekselKadastraleKaartByAdresRequestType } + * + */ + public KadasterV2GetUittrekselKadastraleKaartByAdresRequestType createKadasterV2GetUittrekselKadastraleKaartByAdresRequestType() { + return new KadasterV2GetUittrekselKadastraleKaartByAdresRequestType(); + } + + /** + * Create an instance of {@link KadasterKoopsommenOverzichtRequestType } + * + */ + public KadasterKoopsommenOverzichtRequestType createKadasterKoopsommenOverzichtRequestType() { + return new KadasterKoopsommenOverzichtRequestType(); + } + + /** + * Create an instance of {@link AreaCodePostcodeLookupRequestType } + * + */ + public AreaCodePostcodeLookupRequestType createAreaCodePostcodeLookupRequestType() { + return new AreaCodePostcodeLookupRequestType(); + } + + /** + * Create an instance of {@link DnbEnterpriseManagementRequestType } + * + */ + public DnbEnterpriseManagementRequestType createDnbEnterpriseManagementRequestType() { + return new DnbEnterpriseManagementRequestType(); + } + + /** + * Create an instance of {@link DutchBusinessGetOrganizationTreeRequestType } + * + */ + public DutchBusinessGetOrganizationTreeRequestType createDutchBusinessGetOrganizationTreeRequestType() { + return new DutchBusinessGetOrganizationTreeRequestType(); + } + + /** + * Create an instance of {@link BusinessGetEstablishmentNumberResponseType } + * + */ + public BusinessGetEstablishmentNumberResponseType createBusinessGetEstablishmentNumberResponseType() { + return new BusinessGetEstablishmentNumberResponseType(); + } + + /** + * Create an instance of {@link CarVWEPhotosRequestType } + * + */ + public CarVWEPhotosRequestType createCarVWEPhotosRequestType() { + return new CarVWEPhotosRequestType(); + } + + /** + * Create an instance of {@link EdrGetScoreResponseType } + * + */ + public EdrGetScoreResponseType createEdrGetScoreResponseType() { + return new EdrGetScoreResponseType(); + } + + /** + * Create an instance of {@link RiskCheckGetRiskPersonCompanyReportRequestType } + * + */ + public RiskCheckGetRiskPersonCompanyReportRequestType createRiskCheckGetRiskPersonCompanyReportRequestType() { + return new RiskCheckGetRiskPersonCompanyReportRequestType(); + } + + /** + * Create an instance of {@link EdrGetScoreRequestType } + * + */ + public EdrGetScoreRequestType createEdrGetScoreRequestType() { + return new EdrGetScoreRequestType(); + } + + /** + * Create an instance of {@link RoutePlannerRDInformationResponseType } + * + */ + public RoutePlannerRDInformationResponseType createRoutePlannerRDInformationResponseType() { + return new RoutePlannerRDInformationResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessSearchParametersV2RequestType } + * + */ + public DutchBusinessSearchParametersV2RequestType createDutchBusinessSearchParametersV2RequestType() { + return new DutchBusinessSearchParametersV2RequestType(); + } + + /** + * Create an instance of {@link GeoLocationLatLonToRDRequestType } + * + */ + public GeoLocationLatLonToRDRequestType createGeoLocationLatLonToRDRequestType() { + return new GeoLocationLatLonToRDRequestType(); + } + + /** + * Create an instance of {@link RoutePlannerEUDescriptionRequestType } + * + */ + public RoutePlannerEUDescriptionRequestType createRoutePlannerEUDescriptionRequestType() { + return new RoutePlannerEUDescriptionRequestType(); + } + + /** + * Create an instance of {@link GeoLocationLatLonToPostcodeRequestType } + * + */ + public GeoLocationLatLonToPostcodeRequestType createGeoLocationLatLonToPostcodeRequestType() { + return new GeoLocationLatLonToPostcodeRequestType(); + } + + /** + * Create an instance of {@link KadasterUittrekselKadastraleKaartPerceelResponseType } + * + */ + public KadasterUittrekselKadastraleKaartPerceelResponseType createKadasterUittrekselKadastraleKaartPerceelResponseType() { + return new KadasterUittrekselKadastraleKaartPerceelResponseType(); + } + + /** + * Create an instance of {@link KvkUpdateAddDossierResponseType } + * + */ + public KvkUpdateAddDossierResponseType createKvkUpdateAddDossierResponseType() { + return new KvkUpdateAddDossierResponseType(); + } + + /** + * Create an instance of {@link DutchBusinessGetLeiRequestType } + * + */ + public DutchBusinessGetLeiRequestType createDutchBusinessGetLeiRequestType() { + return new DutchBusinessGetLeiRequestType(); + } + + /** + * Create an instance of {@link GeoLocationLatLonToAddressV2RequestType } + * + */ + public GeoLocationLatLonToAddressV2RequestType createGeoLocationLatLonToAddressV2RequestType() { + return new GeoLocationLatLonToAddressV2RequestType(); + } + + /** + * Create an instance of {@link AreaCodeToNeighborhoodcodeRequestType } + * + */ + public AreaCodeToNeighborhoodcodeRequestType createAreaCodeToNeighborhoodcodeRequestType() { + return new AreaCodeToNeighborhoodcodeRequestType(); + } + + /** + * Create an instance of {@link AccountGetCreationTokenRequestType } + * + */ + public AccountGetCreationTokenRequestType createAccountGetCreationTokenRequestType() { + return new AccountGetCreationTokenRequestType(); + } + + /** + * Create an instance of {@link CreditsafeCompanyCreditScoreV2Array } + * + */ + public CreditsafeCompanyCreditScoreV2Array createCreditsafeCompanyCreditScoreV2Array() { + return new CreditsafeCompanyCreditScoreV2Array(); + } + + /** + * Create an instance of {@link KadasterV2MandeligheidArray } + * + */ + public KadasterV2MandeligheidArray createKadasterV2MandeligheidArray() { + return new KadasterV2MandeligheidArray(); + } + + /** + * Create an instance of {@link KadasterV2NietNatuurlijkPersoonArray } + * + */ + public KadasterV2NietNatuurlijkPersoonArray createKadasterV2NietNatuurlijkPersoonArray() { + return new KadasterV2NietNatuurlijkPersoonArray(); + } + + /** + * Create an instance of {@link KadasterV2DeelEnNummer } + * + */ + public KadasterV2DeelEnNummer createKadasterV2DeelEnNummer() { + return new KadasterV2DeelEnNummer(); + } + + /** + * Create an instance of {@link DutchBusinessAdditionalPosition } + * + */ + public DutchBusinessAdditionalPosition createDutchBusinessAdditionalPosition() { + return new DutchBusinessAdditionalPosition(); + } + + /** + * Create an instance of {@link CreditsafeAdvisorArray } + * + */ + public CreditsafeAdvisorArray createCreditsafeAdvisorArray() { + return new CreditsafeAdvisorArray(); + } + + /** + * Create an instance of {@link DutchBusinessGetConcernRelationsOverviewReference } + * + */ + public DutchBusinessGetConcernRelationsOverviewReference createDutchBusinessGetConcernRelationsOverviewReference() { + return new DutchBusinessGetConcernRelationsOverviewReference(); + } + + /** + * Create an instance of {@link DistrictArray } + * + */ + public DistrictArray createDistrictArray() { + return new DistrictArray(); + } + + /** + * Create an instance of {@link CreditsafeDirectorArray } + * + */ + public CreditsafeDirectorArray createCreditsafeDirectorArray() { + return new CreditsafeDirectorArray(); + } + + /** + * Create an instance of {@link CreditsafeCompany } + * + */ + public CreditsafeCompany createCreditsafeCompany() { + return new CreditsafeCompany(); + } + + /** + * Create an instance of {@link DutchBusinessSBISection } + * + */ + public DutchBusinessSBISection createDutchBusinessSBISection() { + return new DutchBusinessSBISection(); + } + + /** + * Create an instance of {@link RiskCompanyArray } + * + */ + public RiskCompanyArray createRiskCompanyArray() { + return new RiskCompanyArray(); + } + + /** + * Create an instance of {@link ComplianceNoteReference } + * + */ + public ComplianceNoteReference createComplianceNoteReference() { + return new ComplianceNoteReference(); + } + + /** + * Create an instance of {@link DutchBusinessLeiSuccessor } + * + */ + public DutchBusinessLeiSuccessor createDutchBusinessLeiSuccessor() { + return new DutchBusinessLeiSuccessor(); + } + + /** + * Create an instance of {@link BusinessDossierV2Array } + * + */ + public BusinessDossierV2Array createBusinessDossierV2Array() { + return new BusinessDossierV2Array(); + } + + /** + * Create an instance of {@link DutchBusinessUBOReceipt } + * + */ + public DutchBusinessUBOReceipt createDutchBusinessUBOReceipt() { + return new DutchBusinessUBOReceipt(); + } + + /** + * Create an instance of {@link CarStatus } + * + */ + public CarStatus createCarStatus() { + return new CarStatus(); + } + + /** + * Create an instance of {@link KadasterLocatieBinnenlandArray } + * + */ + public KadasterLocatieBinnenlandArray createKadasterLocatieBinnenlandArray() { + return new KadasterLocatieBinnenlandArray(); + } + + /** + * Create an instance of {@link GCRPersonnel } + * + */ + public GCRPersonnel createGCRPersonnel() { + return new GCRPersonnel(); + } + + /** + * Create an instance of {@link CreditsafeIndustryQuartilyAnalysis } + * + */ + public CreditsafeIndustryQuartilyAnalysis createCreditsafeIndustryQuartilyAnalysis() { + return new CreditsafeIndustryQuartilyAnalysis(); + } + + /** + * Create an instance of {@link RouteDescriptionCoordinatesLatLon } + * + */ + public RouteDescriptionCoordinatesLatLon createRouteDescriptionCoordinatesLatLon() { + return new RouteDescriptionCoordinatesLatLon(); + } + + /** + * Create an instance of {@link Landinrichtingsrente } + * + */ + public Landinrichtingsrente createLandinrichtingsrente() { + return new Landinrichtingsrente(); + } + + /** + * Create an instance of {@link ComplianceDocumentReferenceArray } + * + */ + public ComplianceDocumentReferenceArray createComplianceDocumentReferenceArray() { + return new ComplianceDocumentReferenceArray(); + } + + /** + * Create an instance of {@link CarVWEBrandPagedResult } + * + */ + public CarVWEBrandPagedResult createCarVWEBrandPagedResult() { + return new CarVWEBrandPagedResult(); + } + + /** + * Create an instance of {@link DutchBusinessEnterprise } + * + */ + public DutchBusinessEnterprise createDutchBusinessEnterprise() { + return new DutchBusinessEnterprise(); + } + + /** + * Create an instance of {@link GraydonCreditReportNormal } + * + */ + public GraydonCreditReportNormal createGraydonCreditReportNormal() { + return new GraydonCreditReportNormal(); + } + + /** + * Create an instance of {@link GCRNumberOfEmployees } + * + */ + public GCRNumberOfEmployees createGCRNumberOfEmployees() { + return new GCRNumberOfEmployees(); + } + + /** + * Create an instance of {@link RDCoordinates } + * + */ + public RDCoordinates createRDCoordinates() { + return new RDCoordinates(); + } + + /** + * Create an instance of {@link BelgianBusinessSocialBalance } + * + */ + public BelgianBusinessSocialBalance createBelgianBusinessSocialBalance() { + return new BelgianBusinessSocialBalance(); + } + + /** + * Create an instance of {@link DutchBusinessPositionV3Array } + * + */ + public DutchBusinessPositionV3Array createDutchBusinessPositionV3Array() { + return new DutchBusinessPositionV3Array(); + } + + /** + * Create an instance of {@link CityArray } + * + */ + public CityArray createCityArray() { + return new CityArray(); + } + + /** + * Create an instance of {@link CarVWEBrand } + * + */ + public CarVWEBrand createCarVWEBrand() { + return new CarVWEBrand(); + } + + /** + * Create an instance of {@link KadasterDomicilieKeuzeLijst } + * + */ + public KadasterDomicilieKeuzeLijst createKadasterDomicilieKeuzeLijst() { + return new KadasterDomicilieKeuzeLijst(); + } + + /** + * Create an instance of {@link CreditsafeCompanyActivityClassificationV2 } + * + */ + public CreditsafeCompanyActivityClassificationV2 createCreditsafeCompanyActivityClassificationV2() { + return new CreditsafeCompanyActivityClassificationV2(); + } + + /** + * Create an instance of {@link GCRPersonSimpleArray } + * + */ + public GCRPersonSimpleArray createGCRPersonSimpleArray() { + return new GCRPersonSimpleArray(); + } + + /** + * Create an instance of {@link GCRLiaisonContactDetails } + * + */ + public GCRLiaisonContactDetails createGCRLiaisonContactDetails() { + return new GCRLiaisonContactDetails(); + } + + /** + * Create an instance of {@link MetaElementDefinition } + * + */ + public MetaElementDefinition createMetaElementDefinition() { + return new MetaElementDefinition(); + } + + /** + * Create an instance of {@link CarVWEOptionsPackage } + * + */ + public CarVWEOptionsPackage createCarVWEOptionsPackage() { + return new CarVWEOptionsPackage(); + } + + /** + * Create an instance of {@link InsolvencyReportArray } + * + */ + public InsolvencyReportArray createInsolvencyReportArray() { + return new InsolvencyReportArray(); + } + + /** + * Create an instance of {@link CreditsafeNlLettersOfLiabilityArray } + * + */ + public CreditsafeNlLettersOfLiabilityArray createCreditsafeNlLettersOfLiabilityArray() { + return new CreditsafeNlLettersOfLiabilityArray(); + } + + /** + * Create an instance of {@link CreditsafeSearchCriteriaParamArray } + * + */ + public CreditsafeSearchCriteriaParamArray createCreditsafeSearchCriteriaParamArray() { + return new CreditsafeSearchCriteriaParamArray(); + } + + /** + * Create an instance of {@link CarExtended } + * + */ + public CarExtended createCarExtended() { + return new CarExtended(); + } + + /** + * Create an instance of {@link CreditsafeDirector } + * + */ + public CreditsafeDirector createCreditsafeDirector() { + return new CreditsafeDirector(); + } + + /** + * Create an instance of {@link DutchBusinessUBOOrganisation } + * + */ + public DutchBusinessUBOOrganisation createDutchBusinessUBOOrganisation() { + return new DutchBusinessUBOOrganisation(); + } + + /** + * Create an instance of {@link CreditsafeCompanyReportFull } + * + */ + public CreditsafeCompanyReportFull createCreditsafeCompanyReportFull() { + return new CreditsafeCompanyReportFull(); + } + + /** + * Create an instance of {@link GCRBirthInformation } + * + */ + public GCRBirthInformation createGCRBirthInformation() { + return new GCRBirthInformation(); + } + + /** + * Create an instance of {@link GCRAnnualFigures } + * + */ + public GCRAnnualFigures createGCRAnnualFigures() { + return new GCRAnnualFigures(); + } + + /** + * Create an instance of {@link RiskLegalRestraintDecisionArray } + * + */ + public RiskLegalRestraintDecisionArray createRiskLegalRestraintDecisionArray() { + return new RiskLegalRestraintDecisionArray(); + } + + /** + * Create an instance of {@link StringArray } + * + */ + public StringArray createStringArray() { + return new StringArray(); + } + + /** + * Create an instance of {@link VerenigingVanEigenaren } + * + */ + public VerenigingVanEigenaren createVerenigingVanEigenaren() { + return new VerenigingVanEigenaren(); + } + + /** + * Create an instance of {@link KadasterV2BijlageArray } + * + */ + public KadasterV2BijlageArray createKadasterV2BijlageArray() { + return new KadasterV2BijlageArray(); + } + + /** + * Create an instance of {@link GCRFounded } + * + */ + public GCRFounded createGCRFounded() { + return new GCRFounded(); + } + + /** + * Create an instance of {@link CreditsafeCompanyCompanyV2 } + * + */ + public CreditsafeCompanyCompanyV2 createCreditsafeCompanyCompanyV2() { + return new CreditsafeCompanyCompanyV2(); + } + + /** + * Create an instance of {@link DutchBusinessNewsItem } + * + */ + public DutchBusinessNewsItem createDutchBusinessNewsItem() { + return new DutchBusinessNewsItem(); + } + + /** + * Create an instance of {@link KadasterStukdeel } + * + */ + public KadasterStukdeel createKadasterStukdeel() { + return new KadasterStukdeel(); + } + + /** + * Create an instance of {@link CreditsafeCompanyActivity } + * + */ + public CreditsafeCompanyActivity createCreditsafeCompanyActivity() { + return new CreditsafeCompanyActivity(); + } + + /** + * Create an instance of {@link CarOption } + * + */ + public CarOption createCarOption() { + return new CarOption(); + } + + /** + * Create an instance of {@link CreditsafeCompanyReportFullV2 } + * + */ + public CreditsafeCompanyReportFullV2 createCreditsafeCompanyReportFullV2() { + return new CreditsafeCompanyReportFullV2(); + } + + /** + * Create an instance of {@link InsolvencyPublicationArray } + * + */ + public InsolvencyPublicationArray createInsolvencyPublicationArray() { + return new InsolvencyPublicationArray(); + } + + /** + * Create an instance of {@link CreditsafePersonPreviousDirectorV2 } + * + */ + public CreditsafePersonPreviousDirectorV2 createCreditsafePersonPreviousDirectorV2() { + return new CreditsafePersonPreviousDirectorV2(); + } + + /** + * Create an instance of {@link KadasterV2Breuk } + * + */ + public KadasterV2Breuk createKadasterV2Breuk() { + return new KadasterV2Breuk(); + } + + /** + * Create an instance of {@link InternationalFormattedAddressArray } + * + */ + public InternationalFormattedAddressArray createInternationalFormattedAddressArray() { + return new InternationalFormattedAddressArray(); + } + + /** + * Create an instance of {@link KadasterBedrag } + * + */ + public KadasterBedrag createKadasterBedrag() { + return new KadasterBedrag(); + } + + /** + * Create an instance of {@link BusinessReferenceV3PagedResult } + * + */ + public BusinessReferenceV3PagedResult createBusinessReferenceV3PagedResult() { + return new BusinessReferenceV3PagedResult(); + } + + /** + * Create an instance of {@link CreditsafeCompanySummaryV2Array } + * + */ + public CreditsafeCompanySummaryV2Array createCreditsafeCompanySummaryV2Array() { + return new CreditsafeCompanySummaryV2Array(); + } + + /** + * Create an instance of {@link CarBP } + * + */ + public CarBP createCarBP() { + return new CarBP(); + } + + /** + * Create an instance of {@link GCRCompany } + * + */ + public GCRCompany createGCRCompany() { + return new GCRCompany(); + } + + /** + * Create an instance of {@link GCRCompanyContinuedUnderArray } + * + */ + public GCRCompanyContinuedUnderArray createGCRCompanyContinuedUnderArray() { + return new GCRCompanyContinuedUnderArray(); + } + + /** + * Create an instance of {@link DocumentOverzicht } + * + */ + public DocumentOverzicht createDocumentOverzicht() { + return new DocumentOverzicht(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationNLV2Array } + * + */ + public CreditsafeCompanyNegativeInformationNLV2Array createCreditsafeCompanyNegativeInformationNLV2Array() { + return new CreditsafeCompanyNegativeInformationNLV2Array(); + } + + /** + * Create an instance of {@link CreditsafeCompanyOtherFinancialsV2Array } + * + */ + public CreditsafeCompanyOtherFinancialsV2Array createCreditsafeCompanyOtherFinancialsV2Array() { + return new CreditsafeCompanyOtherFinancialsV2Array(); + } + + /** + * Create an instance of {@link DutchVehiclePriceValuation } + * + */ + public DutchVehiclePriceValuation createDutchVehiclePriceValuation() { + return new DutchVehiclePriceValuation(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationDEDirectorEventV2Array } + * + */ + public CreditsafeCompanyNegativeInformationDEDirectorEventV2Array createCreditsafeCompanyNegativeInformationDEDirectorEventV2Array() { + return new CreditsafeCompanyNegativeInformationDEDirectorEventV2Array(); + } + + /** + * Create an instance of {@link OverzichtPersoon } + * + */ + public OverzichtPersoon createOverzichtPersoon() { + return new OverzichtPersoon(); + } + + /** + * Create an instance of {@link ComplianceAddressReferenceArray } + * + */ + public ComplianceAddressReferenceArray createComplianceAddressReferenceArray() { + return new ComplianceAddressReferenceArray(); + } + + /** + * Create an instance of {@link KadasterV2GevraagdGebied } + * + */ + public KadasterV2GevraagdGebied createKadasterV2GevraagdGebied() { + return new KadasterV2GevraagdGebied(); + } + + /** + * Create an instance of {@link GCRLiabilities } + * + */ + public GCRLiabilities createGCRLiabilities() { + return new GCRLiabilities(); + } + + /** + * Create an instance of {@link BelgianBusinessFinancialValues } + * + */ + public BelgianBusinessFinancialValues createBelgianBusinessFinancialValues() { + return new BelgianBusinessFinancialValues(); + } + + /** + * Create an instance of {@link RouteLocation } + * + */ + public RouteLocation createRouteLocation() { + return new RouteLocation(); + } + + /** + * Create an instance of {@link RiskInsolvencyJudge } + * + */ + public RiskInsolvencyJudge createRiskInsolvencyJudge() { + return new RiskInsolvencyJudge(); + } + + /** + * Create an instance of {@link OverzichtPersoonArray } + * + */ + public OverzichtPersoonArray createOverzichtPersoonArray() { + return new OverzichtPersoonArray(); + } + + /** + * Create an instance of {@link KadasterV2BronDocumentResponse } + * + */ + public KadasterV2BronDocumentResponse createKadasterV2BronDocumentResponse() { + return new KadasterV2BronDocumentResponse(); + } + + /** + * Create an instance of {@link LatLonCoordinates } + * + */ + public LatLonCoordinates createLatLonCoordinates() { + return new LatLonCoordinates(); + } + + /** + * Create an instance of {@link DutchBusinessEstablishmentV3 } + * + */ + public DutchBusinessEstablishmentV3 createDutchBusinessEstablishmentV3() { + return new DutchBusinessEstablishmentV3(); + } + + /** + * Create an instance of {@link GCRCreditRating } + * + */ + public GCRCreditRating createGCRCreditRating() { + return new GCRCreditRating(); + } + + /** + * Create an instance of {@link DutchBusinessEstablishmentV2 } + * + */ + public DutchBusinessEstablishmentV2 createDutchBusinessEstablishmentV2() { + return new DutchBusinessEstablishmentV2(); + } + + /** + * Create an instance of {@link BusinessReferenceV3Array } + * + */ + public BusinessReferenceV3Array createBusinessReferenceV3Array() { + return new BusinessReferenceV3Array(); + } + + /** + * Create an instance of {@link CreditsafePersonPositionV2 } + * + */ + public CreditsafePersonPositionV2 createCreditsafePersonPositionV2() { + return new CreditsafePersonPositionV2(); + } + + /** + * Create an instance of {@link GCRCountryArray } + * + */ + public GCRCountryArray createGCRCountryArray() { + return new GCRCountryArray(); + } + + /** + * Create an instance of {@link CarBPV2 } + * + */ + public CarBPV2 createCarBPV2() { + return new CarBPV2(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLKvkFilingV2 } + * + */ + public CreditsafeCompanyAdditionalInformationNLKvkFilingV2 createCreditsafeCompanyAdditionalInformationNLKvkFilingV2() { + return new CreditsafeCompanyAdditionalInformationNLKvkFilingV2(); + } + + /** + * Create an instance of {@link KadasterV2GerelateerdeOpenbareRuimte } + * + */ + public KadasterV2GerelateerdeOpenbareRuimte createKadasterV2GerelateerdeOpenbareRuimte() { + return new KadasterV2GerelateerdeOpenbareRuimte(); + } + + /** + * Create an instance of {@link DutchBusinessUBOClassifiedRole } + * + */ + public DutchBusinessUBOClassifiedRole createDutchBusinessUBOClassifiedRole() { + return new DutchBusinessUBOClassifiedRole(); + } + + /** + * Create an instance of {@link DutchBusinessChangeSet } + * + */ + public DutchBusinessChangeSet createDutchBusinessChangeSet() { + return new DutchBusinessChangeSet(); + } + + /** + * Create an instance of {@link DutchVehicleBodyApprovalArray } + * + */ + public DutchVehicleBodyApprovalArray createDutchVehicleBodyApprovalArray() { + return new DutchVehicleBodyApprovalArray(); + } + + /** + * Create an instance of {@link GraydonCreditReportVatNumber } + * + */ + public GraydonCreditReportVatNumber createGraydonCreditReportVatNumber() { + return new GraydonCreditReportVatNumber(); + } + + /** + * Create an instance of {@link InternationalV2 } + * + */ + public InternationalV2 createInternationalV2() { + return new InternationalV2(); + } + + /** + * Create an instance of {@link PerceelArray } + * + */ + public PerceelArray createPerceelArray() { + return new PerceelArray(); + } + + /** + * Create an instance of {@link GCRSectorOfIndustryArray } + * + */ + public GCRSectorOfIndustryArray createGCRSectorOfIndustryArray() { + return new GCRSectorOfIndustryArray(); + } + + /** + * Create an instance of {@link DutchBusinessGetConcernRelationsOverviewReferenceArray } + * + */ + public DutchBusinessGetConcernRelationsOverviewReferenceArray createDutchBusinessGetConcernRelationsOverviewReferenceArray() { + return new DutchBusinessGetConcernRelationsOverviewReferenceArray(); + } + + /** + * Create an instance of {@link GCRTitle } + * + */ + public GCRTitle createGCRTitle() { + return new GCRTitle(); + } + + /** + * Create an instance of {@link GCRCapitalArray } + * + */ + public GCRCapitalArray createGCRCapitalArray() { + return new GCRCapitalArray(); + } + + /** + * Create an instance of {@link GCRBranchOfficeArray } + * + */ + public GCRBranchOfficeArray createGCRBranchOfficeArray() { + return new GCRBranchOfficeArray(); + } + + /** + * Create an instance of {@link DutchBusinessUBORoleArray } + * + */ + public DutchBusinessUBORoleArray createDutchBusinessUBORoleArray() { + return new DutchBusinessUBORoleArray(); + } + + /** + * Create an instance of {@link NbwoPostcodeStraatModelResultaat } + * + */ + public NbwoPostcodeStraatModelResultaat createNbwoPostcodeStraatModelResultaat() { + return new NbwoPostcodeStraatModelResultaat(); + } + + /** + * Create an instance of {@link KadasterDomicilieKeuzeArray } + * + */ + public KadasterDomicilieKeuzeArray createKadasterDomicilieKeuzeArray() { + return new KadasterDomicilieKeuzeArray(); + } + + /** + * Create an instance of {@link MetaProtocolDefinitionArray } + * + */ + public MetaProtocolDefinitionArray createMetaProtocolDefinitionArray() { + return new MetaProtocolDefinitionArray(); + } + + /** + * Create an instance of {@link GCRDiscontinuance } + * + */ + public GCRDiscontinuance createGCRDiscontinuance() { + return new GCRDiscontinuance(); + } + + /** + * Create an instance of {@link InternationalArray } + * + */ + public InternationalArray createInternationalArray() { + return new InternationalArray(); + } + + /** + * Create an instance of {@link BovagDepartment } + * + */ + public BovagDepartment createBovagDepartment() { + return new BovagDepartment(); + } + + /** + * Create an instance of {@link SepaMatchBankAccountHolder } + * + */ + public SepaMatchBankAccountHolder createSepaMatchBankAccountHolder() { + return new SepaMatchBankAccountHolder(); + } + + /** + * Create an instance of {@link CreditsafeBeBankruptcyEventArray } + * + */ + public CreditsafeBeBankruptcyEventArray createCreditsafeBeBankruptcyEventArray() { + return new CreditsafeBeBankruptcyEventArray(); + } + + /** + * Create an instance of {@link CarEnvironment } + * + */ + public CarEnvironment createCarEnvironment() { + return new CarEnvironment(); + } + + /** + * Create an instance of {@link DutchBusinessSBICollection } + * + */ + public DutchBusinessSBICollection createDutchBusinessSBICollection() { + return new DutchBusinessSBICollection(); + } + + /** + * Create an instance of {@link PCReeks } + * + */ + public PCReeks createPCReeks() { + return new PCReeks(); + } + + /** + * Create an instance of {@link GCRContinuationArray } + * + */ + public GCRContinuationArray createGCRContinuationArray() { + return new GCRContinuationArray(); + } + + /** + * Create an instance of {@link ComplianceDocumentReference } + * + */ + public ComplianceDocumentReference createComplianceDocumentReference() { + return new ComplianceDocumentReference(); + } + + /** + * Create an instance of {@link DutchVehiclePurchase } + * + */ + public DutchVehiclePurchase createDutchVehiclePurchase() { + return new DutchVehiclePurchase(); + } + + /** + * Create an instance of {@link DutchBusinessLeiRegistration } + * + */ + public DutchBusinessLeiRegistration createDutchBusinessLeiRegistration() { + return new DutchBusinessLeiRegistration(); + } + + /** + * Create an instance of {@link Perceel } + * + */ + public Perceel createPerceel() { + return new Perceel(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateReference } + * + */ + public DutchBusinessUpdateReference createDutchBusinessUpdateReference() { + return new DutchBusinessUpdateReference(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array } + * + */ + public CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array createCreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array() { + return new CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array(); + } + + /** + * Create an instance of {@link GCRCompanyAnnualAccount } + * + */ + public GCRCompanyAnnualAccount createGCRCompanyAnnualAccount() { + return new GCRCompanyAnnualAccount(); + } + + /** + * Create an instance of {@link DutchBusinessLegalEntityV3 } + * + */ + public DutchBusinessLegalEntityV3 createDutchBusinessLegalEntityV3() { + return new DutchBusinessLegalEntityV3(); + } + + /** + * Create an instance of {@link DutchBusinessLegalEntityV2 } + * + */ + public DutchBusinessLegalEntityV2 createDutchBusinessLegalEntityV2() { + return new DutchBusinessLegalEntityV2(); + } + + /** + * Create an instance of {@link MetaElementDefinitionArray } + * + */ + public MetaElementDefinitionArray createMetaElementDefinitionArray() { + return new MetaElementDefinitionArray(); + } + + /** + * Create an instance of {@link GemeenteStukArray } + * + */ + public GemeenteStukArray createGemeenteStukArray() { + return new GemeenteStukArray(); + } + + /** + * Create an instance of {@link CreditsafeCompanyKeyValueV2Array } + * + */ + public CreditsafeCompanyKeyValueV2Array createCreditsafeCompanyKeyValueV2Array() { + return new CreditsafeCompanyKeyValueV2Array(); + } + + /** + * Create an instance of {@link CreditsafeCompanyShareCapitalStructureV2 } + * + */ + public CreditsafeCompanyShareCapitalStructureV2 createCreditsafeCompanyShareCapitalStructureV2() { + return new CreditsafeCompanyShareCapitalStructureV2(); + } + + /** + * Create an instance of {@link KvkUpdateReferencePagedResult } + * + */ + public KvkUpdateReferencePagedResult createKvkUpdateReferencePagedResult() { + return new KvkUpdateReferencePagedResult(); + } + + /** + * Create an instance of {@link DutchVehicleRemarkArray } + * + */ + public DutchVehicleRemarkArray createDutchVehicleRemarkArray() { + return new DutchVehicleRemarkArray(); + } + + /** + * Create an instance of {@link KadasterHypothecairBerichtResultaatV2 } + * + */ + public KadasterHypothecairBerichtResultaatV2 createKadasterHypothecairBerichtResultaatV2() { + return new KadasterHypothecairBerichtResultaatV2(); + } + + /** + * Create an instance of {@link CreditsafeAdvisor } + * + */ + public CreditsafeAdvisor createCreditsafeAdvisor() { + return new CreditsafeAdvisor(); + } + + /** + * Create an instance of {@link CreditsafeBeIndustryComparison } + * + */ + public CreditsafeBeIndustryComparison createCreditsafeBeIndustryComparison() { + return new CreditsafeBeIndustryComparison(); + } + + /** + * Create an instance of {@link CreditsafeNlLettersOfLiability } + * + */ + public CreditsafeNlLettersOfLiability createCreditsafeNlLettersOfLiability() { + return new CreditsafeNlLettersOfLiability(); + } + + /** + * Create an instance of {@link GCRFinancialDetails } + * + */ + public GCRFinancialDetails createGCRFinancialDetails() { + return new GCRFinancialDetails(); + } + + /** + * Create an instance of {@link CreditsafeCompanyKeyValueV2 } + * + */ + public CreditsafeCompanyKeyValueV2 createCreditsafeCompanyKeyValueV2() { + return new CreditsafeCompanyKeyValueV2(); + } + + /** + * Create an instance of {@link RiskAddress } + * + */ + public RiskAddress createRiskAddress() { + return new RiskAddress(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationDEV2 } + * + */ + public CreditsafeCompanyNegativeInformationDEV2 createCreditsafeCompanyNegativeInformationDEV2() { + return new CreditsafeCompanyNegativeInformationDEV2(); + } + + /** + * Create an instance of {@link InsolvencyAddress } + * + */ + public InsolvencyAddress createInsolvencyAddress() { + return new InsolvencyAddress(); + } + + /** + * Create an instance of {@link GCRRating } + * + */ + public GCRRating createGCRRating() { + return new GCRRating(); + } + + /** + * Create an instance of {@link DutchBusinessFormattedAddress } + * + */ + public DutchBusinessFormattedAddress createDutchBusinessFormattedAddress() { + return new DutchBusinessFormattedAddress(); + } + + /** + * Create an instance of {@link DutchBusinessGetConcernRelationsDetailsGraphNodeArray } + * + */ + public DutchBusinessGetConcernRelationsDetailsGraphNodeArray createDutchBusinessGetConcernRelationsDetailsGraphNodeArray() { + return new DutchBusinessGetConcernRelationsDetailsGraphNodeArray(); + } + + /** + * Create an instance of {@link GCRAddressArray } + * + */ + public GCRAddressArray createGCRAddressArray() { + return new GCRAddressArray(); + } + + /** + * Create an instance of {@link KadasterUittrekselKadastraleKaartV2 } + * + */ + public KadasterUittrekselKadastraleKaartV2 createKadasterUittrekselKadastraleKaartV2() { + return new KadasterUittrekselKadastraleKaartV2(); + } + + /** + * Create an instance of {@link RouteCoordinateLatLong } + * + */ + public RouteCoordinateLatLong createRouteCoordinateLatLong() { + return new RouteCoordinateLatLong(); + } + + /** + * Create an instance of {@link DutchBusinessUBOCostsInvestigationResult } + * + */ + public DutchBusinessUBOCostsInvestigationResult createDutchBusinessUBOCostsInvestigationResult() { + return new DutchBusinessUBOCostsInvestigationResult(); + } + + /** + * Create an instance of {@link BelgianBusinessRevisor } + * + */ + public BelgianBusinessRevisor createBelgianBusinessRevisor() { + return new BelgianBusinessRevisor(); + } + + /** + * Create an instance of {@link Koopsom } + * + */ + public Koopsom createKoopsom() { + return new Koopsom(); + } + + /** + * Create an instance of {@link KadasterV2Stukken } + * + */ + public KadasterV2Stukken createKadasterV2Stukken() { + return new KadasterV2Stukken(); + } + + /** + * Create an instance of {@link KadasterV2JaarlijksBedrag } + * + */ + public KadasterV2JaarlijksBedrag createKadasterV2JaarlijksBedrag() { + return new KadasterV2JaarlijksBedrag(); + } + + /** + * Create an instance of {@link BelgianBusinessStakeHolderArray } + * + */ + public BelgianBusinessStakeHolderArray createBelgianBusinessStakeHolderArray() { + return new BelgianBusinessStakeHolderArray(); + } + + /** + * Create an instance of {@link RiskCompanyAddress } + * + */ + public RiskCompanyAddress createRiskCompanyAddress() { + return new RiskCompanyAddress(); + } + + /** + * Create an instance of {@link KadasterValueList } + * + */ + public KadasterValueList createKadasterValueList() { + return new KadasterValueList(); + } + + /** + * Create an instance of {@link KadasterV2KoopsommenOverzichtResponse } + * + */ + public KadasterV2KoopsommenOverzichtResponse createKadasterV2KoopsommenOverzichtResponse() { + return new KadasterV2KoopsommenOverzichtResponse(); + } + + /** + * Create an instance of {@link KadasterV2PostcodeTreffers } + * + */ + public KadasterV2PostcodeTreffers createKadasterV2PostcodeTreffers() { + return new KadasterV2PostcodeTreffers(); + } + + /** + * Create an instance of {@link ResultInfo } + * + */ + public ResultInfo createResultInfo() { + return new ResultInfo(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationDEImageAccountV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationDEImageAccountV2Array createCreditsafeCompanyAdditionalInformationDEImageAccountV2Array() { + return new CreditsafeCompanyAdditionalInformationDEImageAccountV2Array(); + } + + /** + * Create an instance of {@link InternationalAddressSearchV2Result } + * + */ + public InternationalAddressSearchV2Result createInternationalAddressSearchV2Result() { + return new InternationalAddressSearchV2Result(); + } + + /** + * Create an instance of {@link DutchVehicleFeature } + * + */ + public DutchVehicleFeature createDutchVehicleFeature() { + return new DutchVehicleFeature(); + } + + /** + * Create an instance of {@link CreditsafeBeMisc } + * + */ + public CreditsafeBeMisc createCreditsafeBeMisc() { + return new CreditsafeBeMisc(); + } + + /** + * Create an instance of {@link CreditsafeValueV2 } + * + */ + public CreditsafeValueV2 createCreditsafeValueV2() { + return new CreditsafeValueV2(); + } + + /** + * Create an instance of {@link GCRTradeName } + * + */ + public GCRTradeName createGCRTradeName() { + return new GCRTradeName(); + } + + /** + * Create an instance of {@link BelgianBusinessBankAccount } + * + */ + public BelgianBusinessBankAccount createBelgianBusinessBankAccount() { + return new BelgianBusinessBankAccount(); + } + + /** + * Create an instance of {@link CreditsafePersonPreviousDirectorV2Array } + * + */ + public CreditsafePersonPreviousDirectorV2Array createCreditsafePersonPreviousDirectorV2Array() { + return new CreditsafePersonPreviousDirectorV2Array(); + } + + /** + * Create an instance of {@link CreditsafeCompanyCreditScoreV2 } + * + */ + public CreditsafeCompanyCreditScoreV2 createCreditsafeCompanyCreditScoreV2() { + return new CreditsafeCompanyCreditScoreV2(); + } + + /** + * Create an instance of {@link OnroerendeZaak } + * + */ + public OnroerendeZaak createOnroerendeZaak() { + return new OnroerendeZaak(); + } + + /** + * Create an instance of {@link KadasterOverzichtPersoonV2 } + * + */ + public KadasterOverzichtPersoonV2 createKadasterOverzichtPersoonV2() { + return new KadasterOverzichtPersoonV2(); + } + + /** + * Create an instance of {@link GCRPaymentInformation } + * + */ + public GCRPaymentInformation createGCRPaymentInformation() { + return new GCRPaymentInformation(); + } + + /** + * Create an instance of {@link KvkUpdateReference } + * + */ + public KvkUpdateReference createKvkUpdateReference() { + return new KvkUpdateReference(); + } + + /** + * Create an instance of {@link GraydonCreditReportRatings } + * + */ + public GraydonCreditReportRatings createGraydonCreditReportRatings() { + return new GraydonCreditReportRatings(); + } + + /** + * Create an instance of {@link KadasterOverzichtPersoonArray } + * + */ + public KadasterOverzichtPersoonArray createKadasterOverzichtPersoonArray() { + return new KadasterOverzichtPersoonArray(); + } + + /** + * Create an instance of {@link CarTypeArray } + * + */ + public CarTypeArray createCarTypeArray() { + return new CarTypeArray(); + } + + /** + * Create an instance of {@link DutchBusinessUBOOrganisationArray } + * + */ + public DutchBusinessUBOOrganisationArray createDutchBusinessUBOOrganisationArray() { + return new DutchBusinessUBOOrganisationArray(); + } + + /** + * Create an instance of {@link CreditsafeLtdFinancialStatement } + * + */ + public CreditsafeLtdFinancialStatement createCreditsafeLtdFinancialStatement() { + return new CreditsafeLtdFinancialStatement(); + } + + /** + * Create an instance of {@link CreditsafeChangedString } + * + */ + public CreditsafeChangedString createCreditsafeChangedString() { + return new CreditsafeChangedString(); + } + + /** + * Create an instance of {@link GCRCalamityEvent } + * + */ + public GCRCalamityEvent createGCRCalamityEvent() { + return new GCRCalamityEvent(); + } + + /** + * Create an instance of {@link CreditsafeCompanyEmployeeInformationV2Array } + * + */ + public CreditsafeCompanyEmployeeInformationV2Array createCreditsafeCompanyEmployeeInformationV2Array() { + return new CreditsafeCompanyEmployeeInformationV2Array(); + } + + /** + * Create an instance of {@link NeighborhoodArray } + * + */ + public NeighborhoodArray createNeighborhoodArray() { + return new NeighborhoodArray(); + } + + /** + * Create an instance of {@link InsolvencyLegalPerformingPersonArray } + * + */ + public InsolvencyLegalPerformingPersonArray createInsolvencyLegalPerformingPersonArray() { + return new InsolvencyLegalPerformingPersonArray(); + } + + /** + * Create an instance of {@link InsolvencyCourtSession } + * + */ + public InsolvencyCourtSession createInsolvencyCourtSession() { + return new InsolvencyCourtSession(); + } + + /** + * Create an instance of {@link KadasterV2RedenVerzoekArray } + * + */ + public KadasterV2RedenVerzoekArray createKadasterV2RedenVerzoekArray() { + return new KadasterV2RedenVerzoekArray(); + } + + /** + * Create an instance of {@link CarATDPrices } + * + */ + public CarATDPrices createCarATDPrices() { + return new CarATDPrices(); + } + + /** + * Create an instance of {@link MetaServiceReference } + * + */ + public MetaServiceReference createMetaServiceReference() { + return new MetaServiceReference(); + } + + /** + * Create an instance of {@link KadasterV2RDCoordinaat } + * + */ + public KadasterV2RDCoordinaat createKadasterV2RDCoordinaat() { + return new KadasterV2RDCoordinaat(); + } + + /** + * Create an instance of {@link BelgianBusinessLegalRepresentativeCompanyArray } + * + */ + public BelgianBusinessLegalRepresentativeCompanyArray createBelgianBusinessLegalRepresentativeCompanyArray() { + return new BelgianBusinessLegalRepresentativeCompanyArray(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 } + * + */ + public CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 createCreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2() { + return new CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2(); + } + + /** + * Create an instance of {@link District } + * + */ + public District createDistrict() { + return new District(); + } + + /** + * Create an instance of {@link LatLonCoordinatesArray } + * + */ + public LatLonCoordinatesArray createLatLonCoordinatesArray() { + return new LatLonCoordinatesArray(); + } + + /** + * Create an instance of {@link CreditsafePersonDirectorV2Array } + * + */ + public CreditsafePersonDirectorV2Array createCreditsafePersonDirectorV2Array() { + return new CreditsafePersonDirectorV2Array(); + } + + /** + * Create an instance of {@link CreditsafeCompanyGroupStructureV2 } + * + */ + public CreditsafeCompanyGroupStructureV2 createCreditsafeCompanyGroupStructureV2() { + return new CreditsafeCompanyGroupStructureV2(); + } + + /** + * Create an instance of {@link CarVWEPhoto } + * + */ + public CarVWEPhoto createCarVWEPhoto() { + return new CarVWEPhoto(); + } + + /** + * Create an instance of {@link SepaBankAccountIbanData } + * + */ + public SepaBankAccountIbanData createSepaBankAccountIbanData() { + return new SepaBankAccountIbanData(); + } + + /** + * Create an instance of {@link KadasterOverzichtNietNatuurlijkPersoon } + * + */ + public KadasterOverzichtNietNatuurlijkPersoon createKadasterOverzichtNietNatuurlijkPersoon() { + return new KadasterOverzichtNietNatuurlijkPersoon(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array createCreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array() { + return new CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array(); + } + + /** + * Create an instance of {@link KvkDate } + * + */ + public KvkDate createKvkDate() { + return new KvkDate(); + } + + /** + * Create an instance of {@link CreditsafeCompanyV2 } + * + */ + public CreditsafeCompanyV2 createCreditsafeCompanyV2() { + return new CreditsafeCompanyV2(); + } + + /** + * Create an instance of {@link DutchBusinessUBOClassificationResult } + * + */ + public DutchBusinessUBOClassificationResult createDutchBusinessUBOClassificationResult() { + return new DutchBusinessUBOClassificationResult(); + } + + /** + * Create an instance of {@link KadasterKadastraleKaartResultaat } + * + */ + public KadasterKadastraleKaartResultaat createKadasterKadastraleKaartResultaat() { + return new KadasterKadastraleKaartResultaat(); + } + + /** + * Create an instance of {@link MetaValidationDefinitionArray } + * + */ + public MetaValidationDefinitionArray createMetaValidationDefinitionArray() { + return new MetaValidationDefinitionArray(); + } + + /** + * Create an instance of {@link RiskCompanyReport } + * + */ + public RiskCompanyReport createRiskCompanyReport() { + return new RiskCompanyReport(); + } + + /** + * Create an instance of {@link DutchBusinessDate } + * + */ + public DutchBusinessDate createDutchBusinessDate() { + return new DutchBusinessDate(); + } + + /** + * Create an instance of {@link CreditsafeProfitAndLossFigures } + * + */ + public CreditsafeProfitAndLossFigures createCreditsafeProfitAndLossFigures() { + return new CreditsafeProfitAndLossFigures(); + } + + /** + * Create an instance of {@link CarVWEModelPagedResult } + * + */ + public CarVWEModelPagedResult createCarVWEModelPagedResult() { + return new CarVWEModelPagedResult(); + } + + /** + * Create an instance of {@link SepaMatchAccountHolderResult } + * + */ + public SepaMatchAccountHolderResult createSepaMatchAccountHolderResult() { + return new SepaMatchAccountHolderResult(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationDEImageAccountV2 } + * + */ + public CreditsafeCompanyAdditionalInformationDEImageAccountV2 createCreditsafeCompanyAdditionalInformationDEImageAccountV2() { + return new CreditsafeCompanyAdditionalInformationDEImageAccountV2(); + } + + /** + * Create an instance of {@link CreditsafeCompanyStatusV2 } + * + */ + public CreditsafeCompanyStatusV2 createCreditsafeCompanyStatusV2() { + return new CreditsafeCompanyStatusV2(); + } + + /** + * Create an instance of {@link KadasterUittrekselKadastraleKaartResultaatV2 } + * + */ + public KadasterUittrekselKadastraleKaartResultaatV2 createKadasterUittrekselKadastraleKaartResultaatV2() { + return new KadasterUittrekselKadastraleKaartResultaatV2(); + } + + /** + * Create an instance of {@link KadasterV2LocatieBuitenland } + * + */ + public KadasterV2LocatieBuitenland createKadasterV2LocatieBuitenland() { + return new KadasterV2LocatieBuitenland(); + } + + /** + * Create an instance of {@link RouteCoordinatesLatLon } + * + */ + public RouteCoordinatesLatLon createRouteCoordinatesLatLon() { + return new RouteCoordinatesLatLon(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationHistoricalEventV2 } + * + */ + public CreditsafeCompanyAdditionalInformationHistoricalEventV2 createCreditsafeCompanyAdditionalInformationHistoricalEventV2() { + return new CreditsafeCompanyAdditionalInformationHistoricalEventV2(); + } + + /** + * Create an instance of {@link ComplianceBusinessReferenceArray } + * + */ + public ComplianceBusinessReferenceArray createComplianceBusinessReferenceArray() { + return new ComplianceBusinessReferenceArray(); + } + + /** + * Create an instance of {@link DutchVehicleData } + * + */ + public DutchVehicleData createDutchVehicleData() { + return new DutchVehicleData(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationDEBankruptcyV2 } + * + */ + public CreditsafeCompanyNegativeInformationDEBankruptcyV2 createCreditsafeCompanyNegativeInformationDEBankruptcyV2() { + return new CreditsafeCompanyNegativeInformationDEBankruptcyV2(); + } + + /** + * Create an instance of {@link CarVWEVersionArray } + * + */ + public CarVWEVersionArray createCarVWEVersionArray() { + return new CarVWEVersionArray(); + } + + /** + * Create an instance of {@link CreditsafeCompanyShareHolderV2Array } + * + */ + public CreditsafeCompanyShareHolderV2Array createCreditsafeCompanyShareHolderV2Array() { + return new CreditsafeCompanyShareHolderV2Array(); + } + + /** + * Create an instance of {@link CarVWEVersionPrice } + * + */ + public CarVWEVersionPrice createCarVWEVersionPrice() { + return new CarVWEVersionPrice(); + } + + /** + * Create an instance of {@link DutchBusinessGetConcernRelationsDetailsGraphNode } + * + */ + public DutchBusinessGetConcernRelationsDetailsGraphNode createDutchBusinessGetConcernRelationsDetailsGraphNode() { + return new DutchBusinessGetConcernRelationsDetailsGraphNode(); + } + + /** + * Create an instance of {@link BbanDetails } + * + */ + public BbanDetails createBbanDetails() { + return new BbanDetails(); + } + + /** + * Create an instance of {@link DutchBusinessPositionArray } + * + */ + public DutchBusinessPositionArray createDutchBusinessPositionArray() { + return new DutchBusinessPositionArray(); + } + + /** + * Create an instance of {@link KvkDossier } + * + */ + public KvkDossier createKvkDossier() { + return new KvkDossier(); + } + + /** + * Create an instance of {@link CreditsafeDescriptionV2Array } + * + */ + public CreditsafeDescriptionV2Array createCreditsafeDescriptionV2Array() { + return new CreditsafeDescriptionV2Array(); + } + + /** + * Create an instance of {@link GCRAddress } + * + */ + public GCRAddress createGCRAddress() { + return new GCRAddress(); + } + + /** + * Create an instance of {@link DNBBusinessVerification } + * + */ + public DNBBusinessVerification createDNBBusinessVerification() { + return new DNBBusinessVerification(); + } + + /** + * Create an instance of {@link DutchBusinessSbiCodeV3 } + * + */ + public DutchBusinessSbiCodeV3 createDutchBusinessSbiCodeV3() { + return new DutchBusinessSbiCodeV3(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array createCreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array() { + return new CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array(); + } + + /** + * Create an instance of {@link DutchBusinessSbiCodeV2 } + * + */ + public DutchBusinessSbiCodeV2 createDutchBusinessSbiCodeV2() { + return new DutchBusinessSbiCodeV2(); + } + + /** + * Create an instance of {@link KadasterOverzichtV2 } + * + */ + public KadasterOverzichtV2 createKadasterOverzichtV2() { + return new KadasterOverzichtV2(); + } + + /** + * Create an instance of {@link AreaCodeArray } + * + */ + public AreaCodeArray createAreaCodeArray() { + return new AreaCodeArray(); + } + + /** + * Create an instance of {@link DutchBusinessGetConcernRelationsDetailsGraph } + * + */ + public DutchBusinessGetConcernRelationsDetailsGraph createDutchBusinessGetConcernRelationsDetailsGraph() { + return new DutchBusinessGetConcernRelationsDetailsGraph(); + } + + /** + * Create an instance of {@link GCRPersonArray } + * + */ + public GCRPersonArray createGCRPersonArray() { + return new GCRPersonArray(); + } + + /** + * Create an instance of {@link ComplianceRoleReference } + * + */ + public ComplianceRoleReference createComplianceRoleReference() { + return new ComplianceRoleReference(); + } + + /** + * Create an instance of {@link GCRTextSequence } + * + */ + public GCRTextSequence createGCRTextSequence() { + return new GCRTextSequence(); + } + + /** + * Create an instance of {@link KadasterV2UittrekselKadastraleKaartResponse } + * + */ + public KadasterV2UittrekselKadastraleKaartResponse createKadasterV2UittrekselKadastraleKaartResponse() { + return new KadasterV2UittrekselKadastraleKaartResponse(); + } + + /** + * Create an instance of {@link CreditsafeLtdShareCapitalStructure } + * + */ + public CreditsafeLtdShareCapitalStructure createCreditsafeLtdShareCapitalStructure() { + return new CreditsafeLtdShareCapitalStructure(); + } + + /** + * Create an instance of {@link NbwoWaardeVerdeling } + * + */ + public NbwoWaardeVerdeling createNbwoWaardeVerdeling() { + return new NbwoWaardeVerdeling(); + } + + /** + * Create an instance of {@link DNBBusinessReferenceV2 } + * + */ + public DNBBusinessReferenceV2 createDNBBusinessReferenceV2() { + return new DNBBusinessReferenceV2(); + } + + /** + * Create an instance of {@link DutchBusinessPositionAuthorization } + * + */ + public DutchBusinessPositionAuthorization createDutchBusinessPositionAuthorization() { + return new DutchBusinessPositionAuthorization(); + } + + /** + * Create an instance of {@link GCRItemArray } + * + */ + public GCRItemArray createGCRItemArray() { + return new GCRItemArray(); + } + + /** + * Create an instance of {@link DutchBusinessLeiRegistrationAuthority } + * + */ + public DutchBusinessLeiRegistrationAuthority createDutchBusinessLeiRegistrationAuthority() { + return new DutchBusinessLeiRegistrationAuthority(); + } + + /** + * Create an instance of {@link RoutePartArray } + * + */ + public RoutePartArray createRoutePartArray() { + return new RoutePartArray(); + } + + /** + * Create an instance of {@link CarVWEVersionPriceReferenceArray } + * + */ + public CarVWEVersionPriceReferenceArray createCarVWEVersionPriceReferenceArray() { + return new CarVWEVersionPriceReferenceArray(); + } + + /** + * Create an instance of {@link RiskPerson } + * + */ + public RiskPerson createRiskPerson() { + return new RiskPerson(); + } + + /** + * Create an instance of {@link RiskInsolvencyRegistration } + * + */ + public RiskInsolvencyRegistration createRiskInsolvencyRegistration() { + return new RiskInsolvencyRegistration(); + } + + /** + * Create an instance of {@link DutchBusinessEstablishment } + * + */ + public DutchBusinessEstablishment createDutchBusinessEstablishment() { + return new DutchBusinessEstablishment(); + } + + /** + * Create an instance of {@link BusinessDossierExtendedPart } + * + */ + public BusinessDossierExtendedPart createBusinessDossierExtendedPart() { + return new BusinessDossierExtendedPart(); + } + + /** + * Create an instance of {@link BelgianBusinessInternationalAddressArray } + * + */ + public BelgianBusinessInternationalAddressArray createBelgianBusinessInternationalAddressArray() { + return new BelgianBusinessInternationalAddressArray(); + } + + /** + * Create an instance of {@link PCReeksSearchPartsPagedResult } + * + */ + public PCReeksSearchPartsPagedResult createPCReeksSearchPartsPagedResult() { + return new PCReeksSearchPartsPagedResult(); + } + + /** + * Create an instance of {@link GCRPersonalDetails } + * + */ + public GCRPersonalDetails createGCRPersonalDetails() { + return new GCRPersonalDetails(); + } + + /** + * Create an instance of {@link KvkReference } + * + */ + public KvkReference createKvkReference() { + return new KvkReference(); + } + + /** + * Create an instance of {@link Mandeligheid } + * + */ + public Mandeligheid createMandeligheid() { + return new Mandeligheid(); + } + + /** + * Create an instance of {@link DutchVehicleRemark } + * + */ + public DutchVehicleRemark createDutchVehicleRemark() { + return new DutchVehicleRemark(); + } + + /** + * Create an instance of {@link GCRFinancialCalamityArray } + * + */ + public GCRFinancialCalamityArray createGCRFinancialCalamityArray() { + return new GCRFinancialCalamityArray(); + } + + /** + * Create an instance of {@link CreditsafeLtdOtherInformation } + * + */ + public CreditsafeLtdOtherInformation createCreditsafeLtdOtherInformation() { + return new CreditsafeLtdOtherInformation(); + } + + /** + * Create an instance of {@link NatuurlijkPersoonV2 } + * + */ + public NatuurlijkPersoonV2 createNatuurlijkPersoonV2() { + return new NatuurlijkPersoonV2(); + } + + /** + * Create an instance of {@link KadastraleAanduiding } + * + */ + public KadastraleAanduiding createKadastraleAanduiding() { + return new KadastraleAanduiding(); + } + + /** + * Create an instance of {@link NeighborhoodName } + * + */ + public NeighborhoodName createNeighborhoodName() { + return new NeighborhoodName(); + } + + /** + * Create an instance of {@link KadasterV2OnroerendeZaakReference } + * + */ + public KadasterV2OnroerendeZaakReference createKadasterV2OnroerendeZaakReference() { + return new KadasterV2OnroerendeZaakReference(); + } + + /** + * Create an instance of {@link CarCheckCode } + * + */ + public CarCheckCode createCarCheckCode() { + return new CarCheckCode(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array createCreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array() { + return new CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array(); + } + + /** + * Create an instance of {@link InsolvencyLegalPerformingPerson } + * + */ + public InsolvencyLegalPerformingPerson createInsolvencyLegalPerformingPerson() { + return new InsolvencyLegalPerformingPerson(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array createCreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array() { + return new CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array(); + } + + /** + * Create an instance of {@link KoopsommenOverzichtV2 } + * + */ + public KoopsommenOverzichtV2 createKoopsommenOverzichtV2() { + return new KoopsommenOverzichtV2(); + } + + /** + * Create an instance of {@link BusinessUpdateReferenceArray } + * + */ + public BusinessUpdateReferenceArray createBusinessUpdateReferenceArray() { + return new BusinessUpdateReferenceArray(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateReferencePagedResult } + * + */ + public DutchBusinessUpdateReferencePagedResult createDutchBusinessUpdateReferencePagedResult() { + return new DutchBusinessUpdateReferencePagedResult(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 } + * + */ + public CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 createCreditsafeCompanyAdditionalInformationNLIndustryComparisonV2() { + return new CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2(); + } + + /** + * Create an instance of {@link BelgianBusinessAddressArray } + * + */ + public BelgianBusinessAddressArray createBelgianBusinessAddressArray() { + return new BelgianBusinessAddressArray(); + } + + /** + * Create an instance of {@link GCRLiaisonOfficialData } + * + */ + public GCRLiaisonOfficialData createGCRLiaisonOfficialData() { + return new GCRLiaisonOfficialData(); + } + + /** + * Create an instance of {@link ProvinceArray } + * + */ + public ProvinceArray createProvinceArray() { + return new ProvinceArray(); + } + + /** + * Create an instance of {@link CreditsafeCompanyActivityV2 } + * + */ + public CreditsafeCompanyActivityV2 createCreditsafeCompanyActivityV2() { + return new CreditsafeCompanyActivityV2(); + } + + /** + * Create an instance of {@link GCRFirstDirectorArray } + * + */ + public GCRFirstDirectorArray createGCRFirstDirectorArray() { + return new GCRFirstDirectorArray(); + } + + /** + * Create an instance of {@link Session } + * + */ + public Session createSession() { + return new Session(); + } + + /** + * Create an instance of {@link MetaProtocolDefinition } + * + */ + public MetaProtocolDefinition createMetaProtocolDefinition() { + return new MetaProtocolDefinition(); + } + + /** + * Create an instance of {@link GCRAssets } + * + */ + public GCRAssets createGCRAssets() { + return new GCRAssets(); + } + + /** + * Create an instance of {@link AantekeningRecht } + * + */ + public AantekeningRecht createAantekeningRecht() { + return new AantekeningRecht(); + } + + /** + * Create an instance of {@link DNBCommentaryArray } + * + */ + public DNBCommentaryArray createDNBCommentaryArray() { + return new DNBCommentaryArray(); + } + + /** + * Create an instance of {@link StukReferentiesLijst } + * + */ + public StukReferentiesLijst createStukReferentiesLijst() { + return new StukReferentiesLijst(); + } + + /** + * Create an instance of {@link BelgianBusinessInternationalAddress } + * + */ + public BelgianBusinessInternationalAddress createBelgianBusinessInternationalAddress() { + return new BelgianBusinessInternationalAddress(); + } + + /** + * Create an instance of {@link StukMetKadastraleAanduidingLijst } + * + */ + public StukMetKadastraleAanduidingLijst createStukMetKadastraleAanduidingLijst() { + return new StukMetKadastraleAanduidingLijst(); + } + + /** + * Create an instance of {@link KadasterOverzichtPersoon } + * + */ + public KadasterOverzichtPersoon createKadasterOverzichtPersoon() { + return new KadasterOverzichtPersoon(); + } + + /** + * Create an instance of {@link CreditsafeLtdDirectors } + * + */ + public CreditsafeLtdDirectors createCreditsafeLtdDirectors() { + return new CreditsafeLtdDirectors(); + } + + /** + * Create an instance of {@link InsolvencyPublicationList } + * + */ + public InsolvencyPublicationList createInsolvencyPublicationList() { + return new InsolvencyPublicationList(); + } + + /** + * Create an instance of {@link CompliancePersonSearchReferenceArray } + * + */ + public CompliancePersonSearchReferenceArray createCompliancePersonSearchReferenceArray() { + return new CompliancePersonSearchReferenceArray(); + } + + /** + * Create an instance of {@link CreditsafeBeEventArray } + * + */ + public CreditsafeBeEventArray createCreditsafeBeEventArray() { + return new CreditsafeBeEventArray(); + } + + /** + * Create an instance of {@link SepaIbanDetails } + * + */ + public SepaIbanDetails createSepaIbanDetails() { + return new SepaIbanDetails(); + } + + /** + * Create an instance of {@link CarVWEOptionsStandard } + * + */ + public CarVWEOptionsStandard createCarVWEOptionsStandard() { + return new CarVWEOptionsStandard(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationV2 } + * + */ + public CreditsafeCompanyNegativeInformationV2 createCreditsafeCompanyNegativeInformationV2() { + return new CreditsafeCompanyNegativeInformationV2(); + } + + /** + * Create an instance of {@link ComplianceNoteReferenceArray } + * + */ + public ComplianceNoteReferenceArray createComplianceNoteReferenceArray() { + return new ComplianceNoteReferenceArray(); + } + + /** + * Create an instance of {@link CreditsafeEmployeeInformationArray } + * + */ + public CreditsafeEmployeeInformationArray createCreditsafeEmployeeInformationArray() { + return new CreditsafeEmployeeInformationArray(); + } + + /** + * Create an instance of {@link CreditsafeBeEvent } + * + */ + public CreditsafeBeEvent createCreditsafeBeEvent() { + return new CreditsafeBeEvent(); + } + + /** + * Create an instance of {@link BusinessDossier } + * + */ + public BusinessDossier createBusinessDossier() { + return new BusinessDossier(); + } + + /** + * Create an instance of {@link DutchBusinessPartnership } + * + */ + public DutchBusinessPartnership createDutchBusinessPartnership() { + return new DutchBusinessPartnership(); + } + + /** + * Create an instance of {@link NeighborhoodNameArray } + * + */ + public NeighborhoodNameArray createNeighborhoodNameArray() { + return new NeighborhoodNameArray(); + } + + /** + * Create an instance of {@link AccountV2Array } + * + */ + public AccountV2Array createAccountV2Array() { + return new AccountV2Array(); + } + + /** + * Create an instance of {@link CarATDValuationArray } + * + */ + public CarATDValuationArray createCarATDValuationArray() { + return new CarATDValuationArray(); + } + + /** + * Create an instance of {@link RDCoordinatesMatch } + * + */ + public RDCoordinatesMatch createRDCoordinatesMatch() { + return new RDCoordinatesMatch(); + } + + /** + * Create an instance of {@link RiskResult } + * + */ + public RiskResult createRiskResult() { + return new RiskResult(); + } + + /** + * Create an instance of {@link GCRRatingHistoryArray } + * + */ + public GCRRatingHistoryArray createGCRRatingHistoryArray() { + return new GCRRatingHistoryArray(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLFinancialItemV2 } + * + */ + public CreditsafeCompanyAdditionalInformationNLFinancialItemV2 createCreditsafeCompanyAdditionalInformationNLFinancialItemV2() { + return new CreditsafeCompanyAdditionalInformationNLFinancialItemV2(); + } + + /** + * Create an instance of {@link GCRLiaisonCompanyArray } + * + */ + public GCRLiaisonCompanyArray createGCRLiaisonCompanyArray() { + return new GCRLiaisonCompanyArray(); + } + + /** + * Create an instance of {@link RangeAddressArray } + * + */ + public RangeAddressArray createRangeAddressArray() { + return new RangeAddressArray(); + } + + /** + * Create an instance of {@link KadasterOverzichtPersoonV2Array } + * + */ + public KadasterOverzichtPersoonV2Array createKadasterOverzichtPersoonV2Array() { + return new KadasterOverzichtPersoonV2Array(); + } + + /** + * Create an instance of {@link RouteDescriptionCoordinatesRD } + * + */ + public RouteDescriptionCoordinatesRD createRouteDescriptionCoordinatesRD() { + return new RouteDescriptionCoordinatesRD(); + } + + /** + * Create an instance of {@link CreditsafeCompanyArray } + * + */ + public CreditsafeCompanyArray createCreditsafeCompanyArray() { + return new CreditsafeCompanyArray(); + } + + /** + * Create an instance of {@link KadasterV2LocatiePostbusArray } + * + */ + public KadasterV2LocatiePostbusArray createKadasterV2LocatiePostbusArray() { + return new KadasterV2LocatiePostbusArray(); + } + + /** + * Create an instance of {@link PRBeperkingLijst } + * + */ + public PRBeperkingLijst createPRBeperkingLijst() { + return new PRBeperkingLijst(); + } + + /** + * Create an instance of {@link NeighborhoodNamePagedResult } + * + */ + public NeighborhoodNamePagedResult createNeighborhoodNamePagedResult() { + return new NeighborhoodNamePagedResult(); + } + + /** + * Create an instance of {@link CreditsafeBeNegativeInformation } + * + */ + public CreditsafeBeNegativeInformation createCreditsafeBeNegativeInformation() { + return new CreditsafeBeNegativeInformation(); + } + + /** + * Create an instance of {@link VatProxyViesCheckVatResponse } + * + */ + public VatProxyViesCheckVatResponse createVatProxyViesCheckVatResponse() { + return new VatProxyViesCheckVatResponse(); + } + + /** + * Create an instance of {@link BelgianBusinessLegalRepresentativeArray } + * + */ + public BelgianBusinessLegalRepresentativeArray createBelgianBusinessLegalRepresentativeArray() { + return new BelgianBusinessLegalRepresentativeArray(); + } + + /** + * Create an instance of {@link DNBSICCodeArray } + * + */ + public DNBSICCodeArray createDNBSICCodeArray() { + return new DNBSICCodeArray(); + } + + /** + * Create an instance of {@link KadasterV2Personen } + * + */ + public KadasterV2Personen createKadasterV2Personen() { + return new KadasterV2Personen(); + } + + /** + * Create an instance of {@link KadasterNatuurlijkPersoon } + * + */ + public KadasterNatuurlijkPersoon createKadasterNatuurlijkPersoon() { + return new KadasterNatuurlijkPersoon(); + } + + /** + * Create an instance of {@link DutchBusinessNewsCompany } + * + */ + public DutchBusinessNewsCompany createDutchBusinessNewsCompany() { + return new DutchBusinessNewsCompany(); + } + + /** + * Create an instance of {@link KadasterKadastraleKaartResultaatV2 } + * + */ + public KadasterKadastraleKaartResultaatV2 createKadasterKadastraleKaartResultaatV2() { + return new KadasterKadastraleKaartResultaatV2(); + } + + /** + * Create an instance of {@link GCRCalamityEventArray } + * + */ + public GCRCalamityEventArray createGCRCalamityEventArray() { + return new GCRCalamityEventArray(); + } + + /** + * Create an instance of {@link DutchBusinessOrganizationReferenceV3 } + * + */ + public DutchBusinessOrganizationReferenceV3 createDutchBusinessOrganizationReferenceV3() { + return new DutchBusinessOrganizationReferenceV3(); + } + + /** + * Create an instance of {@link DutchBusinessExtractReference } + * + */ + public DutchBusinessExtractReference createDutchBusinessExtractReference() { + return new DutchBusinessExtractReference(); + } + + /** + * Create an instance of {@link DutchBusinessOrganizationReferenceV2 } + * + */ + public DutchBusinessOrganizationReferenceV2 createDutchBusinessOrganizationReferenceV2() { + return new DutchBusinessOrganizationReferenceV2(); + } + + /** + * Create an instance of {@link PRBeperking } + * + */ + public PRBeperking createPRBeperking() { + return new PRBeperking(); + } + + /** + * Create an instance of {@link DutchBusinessNewsItemPagedResult } + * + */ + public DutchBusinessNewsItemPagedResult createDutchBusinessNewsItemPagedResult() { + return new DutchBusinessNewsItemPagedResult(); + } + + /** + * Create an instance of {@link InsolvencyPublication } + * + */ + public InsolvencyPublication createInsolvencyPublication() { + return new InsolvencyPublication(); + } + + /** + * Create an instance of {@link KadasterGerelateerdStukdeelArray } + * + */ + public KadasterGerelateerdStukdeelArray createKadasterGerelateerdStukdeelArray() { + return new KadasterGerelateerdStukdeelArray(); + } + + /** + * Create an instance of {@link BusinessSBISectionArray } + * + */ + public BusinessSBISectionArray createBusinessSBISectionArray() { + return new BusinessSBISectionArray(); + } + + /** + * Create an instance of {@link RouteAddress } + * + */ + public RouteAddress createRouteAddress() { + return new RouteAddress(); + } + + /** + * Create an instance of {@link RiskPersonCompanyReport } + * + */ + public RiskPersonCompanyReport createRiskPersonCompanyReport() { + return new RiskPersonCompanyReport(); + } + + /** + * Create an instance of {@link Locatie } + * + */ + public Locatie createLocatie() { + return new Locatie(); + } + + /** + * Create an instance of {@link KadasterV2KadastraalBericht } + * + */ + public KadasterV2KadastraalBericht createKadasterV2KadastraalBericht() { + return new KadasterV2KadastraalBericht(); + } + + /** + * Create an instance of {@link CreditsafeStreetAddress } + * + */ + public CreditsafeStreetAddress createCreditsafeStreetAddress() { + return new CreditsafeStreetAddress(); + } + + /** + * Create an instance of {@link KadasterHypotheek } + * + */ + public KadasterHypotheek createKadasterHypotheek() { + return new KadasterHypotheek(); + } + + /** + * Create an instance of {@link GCRPercentageHistoryArray } + * + */ + public GCRPercentageHistoryArray createGCRPercentageHistoryArray() { + return new GCRPercentageHistoryArray(); + } + + /** + * Create an instance of {@link CreditsafeSearchCriteriaParam } + * + */ + public CreditsafeSearchCriteriaParam createCreditsafeSearchCriteriaParam() { + return new CreditsafeSearchCriteriaParam(); + } + + /** + * Create an instance of {@link International } + * + */ + public International createInternational() { + return new International(); + } + + /** + * Create an instance of {@link KadasterV2ErfpachtCanon } + * + */ + public KadasterV2ErfpachtCanon createKadasterV2ErfpachtCanon() { + return new KadasterV2ErfpachtCanon(); + } + + /** + * Create an instance of {@link CreditsafeCompanyListEntry } + * + */ + public CreditsafeCompanyListEntry createCreditsafeCompanyListEntry() { + return new CreditsafeCompanyListEntry(); + } + + /** + * Create an instance of {@link DNBAddress } + * + */ + public DNBAddress createDNBAddress() { + return new DNBAddress(); + } + + /** + * Create an instance of {@link GCRCompanyItselfCalamity } + * + */ + public GCRCompanyItselfCalamity createGCRCompanyItselfCalamity() { + return new GCRCompanyItselfCalamity(); + } + + /** + * Create an instance of {@link BusinessBIKCode } + * + */ + public BusinessBIKCode createBusinessBIKCode() { + return new BusinessBIKCode(); + } + + /** + * Create an instance of {@link CreditsafeSearchResultV2 } + * + */ + public CreditsafeSearchResultV2 createCreditsafeSearchResultV2() { + return new CreditsafeSearchResultV2(); + } + + /** + * Create an instance of {@link KadasterV2LocatieBuitenlandArray } + * + */ + public KadasterV2LocatieBuitenlandArray createKadasterV2LocatieBuitenlandArray() { + return new KadasterV2LocatieBuitenlandArray(); + } + + /** + * Create an instance of {@link ComplianceSanctionReference } + * + */ + public ComplianceSanctionReference createComplianceSanctionReference() { + return new ComplianceSanctionReference(); + } + + /** + * Create an instance of {@link GCROriginatedFrom } + * + */ + public GCROriginatedFrom createGCROriginatedFrom() { + return new GCROriginatedFrom(); + } + + /** + * Create an instance of {@link CreditsafeCompanyBankerV2Array } + * + */ + public CreditsafeCompanyBankerV2Array createCreditsafeCompanyBankerV2Array() { + return new CreditsafeCompanyBankerV2Array(); + } + + /** + * Create an instance of {@link GCRCurator } + * + */ + public GCRCurator createGCRCurator() { + return new GCRCurator(); + } + + /** + * Create an instance of {@link DistrictPagedResult } + * + */ + public DistrictPagedResult createDistrictPagedResult() { + return new DistrictPagedResult(); + } + + /** + * Create an instance of {@link BusinessReferenceV2PagedResult } + * + */ + public BusinessReferenceV2PagedResult createBusinessReferenceV2PagedResult() { + return new BusinessReferenceV2PagedResult(); + } + + /** + * Create an instance of {@link DutchBusinessEstablishmentArray } + * + */ + public DutchBusinessEstablishmentArray createDutchBusinessEstablishmentArray() { + return new DutchBusinessEstablishmentArray(); + } + + /** + * Create an instance of {@link NatuurlijkPersoon } + * + */ + public NatuurlijkPersoon createNatuurlijkPersoon() { + return new NatuurlijkPersoon(); + } + + /** + * Create an instance of {@link KadasterV2LocatiePostbus } + * + */ + public KadasterV2LocatiePostbus createKadasterV2LocatiePostbus() { + return new KadasterV2LocatiePostbus(); + } + + /** + * Create an instance of {@link DutchBusinessAdditionalPositionArray } + * + */ + public DutchBusinessAdditionalPositionArray createDutchBusinessAdditionalPositionArray() { + return new DutchBusinessAdditionalPositionArray(); + } + + /** + * Create an instance of {@link DutchBusinessEnterpriseV3 } + * + */ + public DutchBusinessEnterpriseV3 createDutchBusinessEnterpriseV3() { + return new DutchBusinessEnterpriseV3(); + } + + /** + * Create an instance of {@link DutchBusinessEnterpriseV2 } + * + */ + public DutchBusinessEnterpriseV2 createDutchBusinessEnterpriseV2() { + return new DutchBusinessEnterpriseV2(); + } + + /** + * Create an instance of {@link SepaBankDetails } + * + */ + public SepaBankDetails createSepaBankDetails() { + return new SepaBankDetails(); + } + + /** + * Create an instance of {@link DutchBusinessEstablishmentReferenceArray } + * + */ + public DutchBusinessEstablishmentReferenceArray createDutchBusinessEstablishmentReferenceArray() { + return new DutchBusinessEstablishmentReferenceArray(); + } + + /** + * Create an instance of {@link AreaCodePagedResult } + * + */ + public AreaCodePagedResult createAreaCodePagedResult() { + return new AreaCodePagedResult(); + } + + /** + * Create an instance of {@link CreditsafeChangedStringArray } + * + */ + public CreditsafeChangedStringArray createCreditsafeChangedStringArray() { + return new CreditsafeChangedStringArray(); + } + + /** + * Create an instance of {@link AantekeningKadastraalObjectLijst } + * + */ + public AantekeningKadastraalObjectLijst createAantekeningKadastraalObjectLijst() { + return new AantekeningKadastraalObjectLijst(); + } + + /** + * Create an instance of {@link CarType } + * + */ + public CarType createCarType() { + return new CarType(); + } + + /** + * Create an instance of {@link DutchBusinessGetConcernRelationsDetailsGraphLink } + * + */ + public DutchBusinessGetConcernRelationsDetailsGraphLink createDutchBusinessGetConcernRelationsDetailsGraphLink() { + return new DutchBusinessGetConcernRelationsDetailsGraphLink(); + } + + /** + * Create an instance of {@link KvkReferenceArray } + * + */ + public KvkReferenceArray createKvkReferenceArray() { + return new KvkReferenceArray(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2 } + * + */ + public CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2 createCreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2() { + return new CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2(); + } + + /** + * Create an instance of {@link RiskInsolvencyCuratorArray } + * + */ + public RiskInsolvencyCuratorArray createRiskInsolvencyCuratorArray() { + return new RiskInsolvencyCuratorArray(); + } + + /** + * Create an instance of {@link BelgianBusinessRevisorArray } + * + */ + public BelgianBusinessRevisorArray createBelgianBusinessRevisorArray() { + return new BelgianBusinessRevisorArray(); + } + + /** + * Create an instance of {@link KadasterV2OnroerendeZaakArray } + * + */ + public KadasterV2OnroerendeZaakArray createKadasterV2OnroerendeZaakArray() { + return new KadasterV2OnroerendeZaakArray(); + } + + /** + * Create an instance of {@link KadasterOverzichtRecht } + * + */ + public KadasterOverzichtRecht createKadasterOverzichtRecht() { + return new KadasterOverzichtRecht(); + } + + /** + * Create an instance of {@link KadasterV2LocatieBinnenland } + * + */ + public KadasterV2LocatieBinnenland createKadasterV2LocatieBinnenland() { + return new KadasterV2LocatieBinnenland(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 } + * + */ + public CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 createCreditsafeCompanyAdditionalInformationDEMiscellaneousV2() { + return new CreditsafeCompanyAdditionalInformationDEMiscellaneousV2(); + } + + /** + * Create an instance of {@link DutchBusinessDossierReference } + * + */ + public DutchBusinessDossierReference createDutchBusinessDossierReference() { + return new DutchBusinessDossierReference(); + } + + /** + * Create an instance of {@link DutchBusinessDossierV3 } + * + */ + public DutchBusinessDossierV3 createDutchBusinessDossierV3() { + return new DutchBusinessDossierV3(); + } + + /** + * Create an instance of {@link KadasterV2KadastraleAanduiding } + * + */ + public KadasterV2KadastraleAanduiding createKadasterV2KadastraleAanduiding() { + return new KadasterV2KadastraleAanduiding(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateReferenceArray } + * + */ + public DutchBusinessUpdateReferenceArray createDutchBusinessUpdateReferenceArray() { + return new DutchBusinessUpdateReferenceArray(); + } + + /** + * Create an instance of {@link DutchVehicleEnvironmentArray } + * + */ + public DutchVehicleEnvironmentArray createDutchVehicleEnvironmentArray() { + return new DutchVehicleEnvironmentArray(); + } + + /** + * Create an instance of {@link BusinessBIKCodeInfo } + * + */ + public BusinessBIKCodeInfo createBusinessBIKCodeInfo() { + return new BusinessBIKCodeInfo(); + } + + /** + * Create an instance of {@link GCRAlarmContactDetails } + * + */ + public GCRAlarmContactDetails createGCRAlarmContactDetails() { + return new GCRAlarmContactDetails(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateSubscriptionPagedResult } + * + */ + public DutchBusinessUpdateSubscriptionPagedResult createDutchBusinessUpdateSubscriptionPagedResult() { + return new DutchBusinessUpdateSubscriptionPagedResult(); + } + + /** + * Create an instance of {@link DutchBusinessDossierV2 } + * + */ + public DutchBusinessDossierV2 createDutchBusinessDossierV2() { + return new DutchBusinessDossierV2(); + } + + /** + * Create an instance of {@link DNBQuickCheck } + * + */ + public DNBQuickCheck createDNBQuickCheck() { + return new DNBQuickCheck(); + } + + /** + * Create an instance of {@link KadasterV2TenaamstellingArray } + * + */ + public KadasterV2TenaamstellingArray createKadasterV2TenaamstellingArray() { + return new KadasterV2TenaamstellingArray(); + } + + /** + * Create an instance of {@link KadasterV2KoopsommenOverzicht } + * + */ + public KadasterV2KoopsommenOverzicht createKadasterV2KoopsommenOverzicht() { + return new KadasterV2KoopsommenOverzicht(); + } + + /** + * Create an instance of {@link InternationalPagedResult } + * + */ + public InternationalPagedResult createInternationalPagedResult() { + return new InternationalPagedResult(); + } + + /** + * Create an instance of {@link DutchBusinessReferenceV2PagedResult } + * + */ + public DutchBusinessReferenceV2PagedResult createDutchBusinessReferenceV2PagedResult() { + return new DutchBusinessReferenceV2PagedResult(); + } + + /** + * Create an instance of {@link AccountOrderToken } + * + */ + public AccountOrderToken createAccountOrderToken() { + return new AccountOrderToken(); + } + + /** + * Create an instance of {@link CreditsafePersonDirectorV2 } + * + */ + public CreditsafePersonDirectorV2 createCreditsafePersonDirectorV2() { + return new CreditsafePersonDirectorV2(); + } + + /** + * Create an instance of {@link KadasterV2Beslaglegging } + * + */ + public KadasterV2Beslaglegging createKadasterV2Beslaglegging() { + return new KadasterV2Beslaglegging(); + } + + /** + * Create an instance of {@link KadasterKadastraleKaart } + * + */ + public KadasterKadastraleKaart createKadasterKadastraleKaart() { + return new KadasterKadastraleKaart(); + } + + /** + * Create an instance of {@link PRBeperkingenKadastraalObject } + * + */ + public PRBeperkingenKadastraalObject createPRBeperkingenKadastraalObject() { + return new PRBeperkingenKadastraalObject(); + } + + /** + * Create an instance of {@link BelgianBusinessAnnualFinancialStatementArray } + * + */ + public BelgianBusinessAnnualFinancialStatementArray createBelgianBusinessAnnualFinancialStatementArray() { + return new BelgianBusinessAnnualFinancialStatementArray(); + } + + /** + * Create an instance of {@link KadasterV2Hoofdzaak } + * + */ + public KadasterV2Hoofdzaak createKadasterV2Hoofdzaak() { + return new KadasterV2Hoofdzaak(); + } + + /** + * Create an instance of {@link DNBBusinessReference } + * + */ + public DNBBusinessReference createDNBBusinessReference() { + return new DNBBusinessReference(); + } + + /** + * Create an instance of {@link DNBBusinessReferenceV2Array } + * + */ + public DNBBusinessReferenceV2Array createDNBBusinessReferenceV2Array() { + return new DNBBusinessReferenceV2Array(); + } + + /** + * Create an instance of {@link KadasterBeknoptOnroerendeZaakArray } + * + */ + public KadasterBeknoptOnroerendeZaakArray createKadasterBeknoptOnroerendeZaakArray() { + return new KadasterBeknoptOnroerendeZaakArray(); + } + + /** + * Create an instance of {@link KadasterV2GezamenlijkAandeelArray } + * + */ + public KadasterV2GezamenlijkAandeelArray createKadasterV2GezamenlijkAandeelArray() { + return new KadasterV2GezamenlijkAandeelArray(); + } + + /** + * Create an instance of {@link Recht } + * + */ + public Recht createRecht() { + return new Recht(); + } + + /** + * Create an instance of {@link CreditsafeCompanyRatiosV2 } + * + */ + public CreditsafeCompanyRatiosV2 createCreditsafeCompanyRatiosV2() { + return new CreditsafeCompanyRatiosV2(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationV2Array createCreditsafeCompanyAdditionalInformationV2Array() { + return new CreditsafeCompanyAdditionalInformationV2Array(); + } + + /** + * Create an instance of {@link DutchBusinessUBOInvestigationToken } + * + */ + public DutchBusinessUBOInvestigationToken createDutchBusinessUBOInvestigationToken() { + return new DutchBusinessUBOInvestigationToken(); + } + + /** + * Create an instance of {@link CreditsafeBeNSSODetail } + * + */ + public CreditsafeBeNSSODetail createCreditsafeBeNSSODetail() { + return new CreditsafeBeNSSODetail(); + } + + /** + * Create an instance of {@link KadasterV2HypothecairBericht } + * + */ + public KadasterV2HypothecairBericht createKadasterV2HypothecairBericht() { + return new KadasterV2HypothecairBericht(); + } + + /** + * Create an instance of {@link BelgianBusinessLegalRepresentativeCompany } + * + */ + public BelgianBusinessLegalRepresentativeCompany createBelgianBusinessLegalRepresentativeCompany() { + return new BelgianBusinessLegalRepresentativeCompany(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdvisorV2Array } + * + */ + public CreditsafeCompanyAdvisorV2Array createCreditsafeCompanyAdvisorV2Array() { + return new CreditsafeCompanyAdvisorV2Array(); + } + + /** + * Create an instance of {@link GCRPercentageHistory } + * + */ + public GCRPercentageHistory createGCRPercentageHistory() { + return new GCRPercentageHistory(); + } + + /** + * Create an instance of {@link CarVWEOptionArray } + * + */ + public CarVWEOptionArray createCarVWEOptionArray() { + return new CarVWEOptionArray(); + } + + /** + * Create an instance of {@link InternationalV2Array } + * + */ + public InternationalV2Array createInternationalV2Array() { + return new InternationalV2Array(); + } + + /** + * Create an instance of {@link GCRItem } + * + */ + public GCRItem createGCRItem() { + return new GCRItem(); + } + + /** + * Create an instance of {@link BerichtObjectV2 } + * + */ + public BerichtObjectV2 createBerichtObjectV2() { + return new BerichtObjectV2(); + } + + /** + * Create an instance of {@link BusinessDate } + * + */ + public BusinessDate createBusinessDate() { + return new BusinessDate(); + } + + /** + * Create an instance of {@link CarVWEBasicTypeData } + * + */ + public CarVWEBasicTypeData createCarVWEBasicTypeData() { + return new CarVWEBasicTypeData(); + } + + /** + * Create an instance of {@link DutchBusinessUBOReceiptItem } + * + */ + public DutchBusinessUBOReceiptItem createDutchBusinessUBOReceiptItem() { + return new DutchBusinessUBOReceiptItem(); + } + + /** + * Create an instance of {@link CarRDWCarDataPrice } + * + */ + public CarRDWCarDataPrice createCarRDWCarDataPrice() { + return new CarRDWCarDataPrice(); + } + + /** + * Create an instance of {@link DutchVehicleTypeApproval } + * + */ + public DutchVehicleTypeApproval createDutchVehicleTypeApproval() { + return new DutchVehicleTypeApproval(); + } + + /** + * Create an instance of {@link CreditsafeCompanyProfitAndLossV2 } + * + */ + public CreditsafeCompanyProfitAndLossV2 createCreditsafeCompanyProfitAndLossV2() { + return new CreditsafeCompanyProfitAndLossV2(); + } + + /** + * Create an instance of {@link CreditsafeCompanyProfitAndLossV2Array } + * + */ + public CreditsafeCompanyProfitAndLossV2Array createCreditsafeCompanyProfitAndLossV2Array() { + return new CreditsafeCompanyProfitAndLossV2Array(); + } + + /** + * Create an instance of {@link RiskCompanyAddressArray } + * + */ + public RiskCompanyAddressArray createRiskCompanyAddressArray() { + return new RiskCompanyAddressArray(); + } + + /** + * Create an instance of {@link KadasterV2KadastraleGrootte } + * + */ + public KadasterV2KadastraleGrootte createKadasterV2KadastraleGrootte() { + return new KadasterV2KadastraleGrootte(); + } + + /** + * Create an instance of {@link DutchBusinessSBICollectionArray } + * + */ + public DutchBusinessSBICollectionArray createDutchBusinessSBICollectionArray() { + return new DutchBusinessSBICollectionArray(); + } + + /** + * Create an instance of {@link AantekeningKadastraalObjectArray } + * + */ + public AantekeningKadastraalObjectArray createAantekeningKadastraalObjectArray() { + return new AantekeningKadastraalObjectArray(); + } + + /** + * Create an instance of {@link DutchBusinessExtractDocumentData } + * + */ + public DutchBusinessExtractDocumentData createDutchBusinessExtractDocumentData() { + return new DutchBusinessExtractDocumentData(); + } + + /** + * Create an instance of {@link StukMetKadastraleAanduiding } + * + */ + public StukMetKadastraleAanduiding createStukMetKadastraleAanduiding() { + return new StukMetKadastraleAanduiding(); + } + + /** + * Create an instance of {@link DutchBusinessEstablishmentV3Array } + * + */ + public DutchBusinessEstablishmentV3Array createDutchBusinessEstablishmentV3Array() { + return new DutchBusinessEstablishmentV3Array(); + } + + /** + * Create an instance of {@link KadasterBeknoptOnroerendeZaak } + * + */ + public KadasterBeknoptOnroerendeZaak createKadasterBeknoptOnroerendeZaak() { + return new KadasterBeknoptOnroerendeZaak(); + } + + /** + * Create an instance of {@link LatLonCoordinatesInternationalAddressArray } + * + */ + public LatLonCoordinatesInternationalAddressArray createLatLonCoordinatesInternationalAddressArray() { + return new LatLonCoordinatesInternationalAddressArray(); + } + + /** + * Create an instance of {@link OverzichtPersoonV2Array } + * + */ + public OverzichtPersoonV2Array createOverzichtPersoonV2Array() { + return new OverzichtPersoonV2Array(); + } + + /** + * Create an instance of {@link CarVWEOptionsManufacture } + * + */ + public CarVWEOptionsManufacture createCarVWEOptionsManufacture() { + return new CarVWEOptionsManufacture(); + } + + /** + * Create an instance of {@link GCRTextSequenceArray } + * + */ + public GCRTextSequenceArray createGCRTextSequenceArray() { + return new GCRTextSequenceArray(); + } + + /** + * Create an instance of {@link KadasterUittrekselKadastraleKaartResultaat } + * + */ + public KadasterUittrekselKadastraleKaartResultaat createKadasterUittrekselKadastraleKaartResultaat() { + return new KadasterUittrekselKadastraleKaartResultaat(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 } + * + */ + public CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 createCreditsafeCompanyAdditionalInformationNLMiscellaneousV2() { + return new CreditsafeCompanyAdditionalInformationNLMiscellaneousV2(); + } + + /** + * Create an instance of {@link DutchVehicleTaxData } + * + */ + public DutchVehicleTaxData createDutchVehicleTaxData() { + return new DutchVehicleTaxData(); + } + + /** + * Create an instance of {@link AccountPagedResult } + * + */ + public AccountPagedResult createAccountPagedResult() { + return new AccountPagedResult(); + } + + /** + * Create an instance of {@link GeoLocationAddressV2 } + * + */ + public GeoLocationAddressV2 createGeoLocationAddressV2() { + return new GeoLocationAddressV2(); + } + + /** + * Create an instance of {@link SortedPostcodePagedResult } + * + */ + public SortedPostcodePagedResult createSortedPostcodePagedResult() { + return new SortedPostcodePagedResult(); + } + + /** + * Create an instance of {@link GCRHistory } + * + */ + public GCRHistory createGCRHistory() { + return new GCRHistory(); + } + + /** + * Create an instance of {@link BusinessDossierExtended } + * + */ + public BusinessDossierExtended createBusinessDossierExtended() { + return new BusinessDossierExtended(); + } + + /** + * Create an instance of {@link KadasterV2Stukdeel } + * + */ + public KadasterV2Stukdeel createKadasterV2Stukdeel() { + return new KadasterV2Stukdeel(); + } + + /** + * Create an instance of {@link UserV2Array } + * + */ + public UserV2Array createUserV2Array() { + return new UserV2Array(); + } + + /** + * Create an instance of {@link GCROfficialData } + * + */ + public GCROfficialData createGCROfficialData() { + return new GCROfficialData(); + } + + /** + * Create an instance of {@link CreditsafeCompanyListEntryArray } + * + */ + public CreditsafeCompanyListEntryArray createCreditsafeCompanyListEntryArray() { + return new CreditsafeCompanyListEntryArray(); + } + + /** + * Create an instance of {@link DutchBusinessPosition } + * + */ + public DutchBusinessPosition createDutchBusinessPosition() { + return new DutchBusinessPosition(); + } + + /** + * Create an instance of {@link KvkExtractDocument } + * + */ + public KvkExtractDocument createKvkExtractDocument() { + return new KvkExtractDocument(); + } + + /** + * Create an instance of {@link CarV3 } + * + */ + public CarV3 createCarV3() { + return new CarV3(); + } + + /** + * Create an instance of {@link DutchBusinessGetAdditionalPositionsResult } + * + */ + public DutchBusinessGetAdditionalPositionsResult createDutchBusinessGetAdditionalPositionsResult() { + return new DutchBusinessGetAdditionalPositionsResult(); + } + + /** + * Create an instance of {@link CarV2 } + * + */ + public CarV2 createCarV2() { + return new CarV2(); + } + + /** + * Create an instance of {@link CreditsafeBeProtestedBillArray } + * + */ + public CreditsafeBeProtestedBillArray createCreditsafeBeProtestedBillArray() { + return new CreditsafeBeProtestedBillArray(); + } + + /** + * Create an instance of {@link RiskLegalRestraintRegistry } + * + */ + public RiskLegalRestraintRegistry createRiskLegalRestraintRegistry() { + return new RiskLegalRestraintRegistry(); + } + + /** + * Create an instance of {@link ComplianceBusinessReference } + * + */ + public ComplianceBusinessReference createComplianceBusinessReference() { + return new ComplianceBusinessReference(); + } + + /** + * Create an instance of {@link CreditsafeCompanyIdentificationV2Array } + * + */ + public CreditsafeCompanyIdentificationV2Array createCreditsafeCompanyIdentificationV2Array() { + return new CreditsafeCompanyIdentificationV2Array(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationDETrusteeV2Array } + * + */ + public CreditsafeCompanyNegativeInformationDETrusteeV2Array createCreditsafeCompanyNegativeInformationDETrusteeV2Array() { + return new CreditsafeCompanyNegativeInformationDETrusteeV2Array(); + } + + /** + * Create an instance of {@link RiskInsolvencyPublicationArray } + * + */ + public RiskInsolvencyPublicationArray createRiskInsolvencyPublicationArray() { + return new RiskInsolvencyPublicationArray(); + } + + /** + * Create an instance of {@link CarVWEMeldcodeCheck } + * + */ + public CarVWEMeldcodeCheck createCarVWEMeldcodeCheck() { + return new CarVWEMeldcodeCheck(); + } + + /** + * Create an instance of {@link DutchBusinessDossierHistory } + * + */ + public DutchBusinessDossierHistory createDutchBusinessDossierHistory() { + return new DutchBusinessDossierHistory(); + } + + /** + * Create an instance of {@link RouteCoordinateRD } + * + */ + public RouteCoordinateRD createRouteCoordinateRD() { + return new RouteCoordinateRD(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateSubscriptionArray } + * + */ + public DutchBusinessUpdateSubscriptionArray createDutchBusinessUpdateSubscriptionArray() { + return new DutchBusinessUpdateSubscriptionArray(); + } + + /** + * Create an instance of {@link DNBMarketingPlusLinkageResult } + * + */ + public DNBMarketingPlusLinkageResult createDNBMarketingPlusLinkageResult() { + return new DNBMarketingPlusLinkageResult(); + } + + /** + * Create an instance of {@link AantekeningKadastraalObject } + * + */ + public AantekeningKadastraalObject createAantekeningKadastraalObject() { + return new AantekeningKadastraalObject(); + } + + /** + * Create an instance of {@link CreditsafeFinancialRatios } + * + */ + public CreditsafeFinancialRatios createCreditsafeFinancialRatios() { + return new CreditsafeFinancialRatios(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationDEV2Array } + * + */ + public CreditsafeCompanyNegativeInformationDEV2Array createCreditsafeCompanyNegativeInformationDEV2Array() { + return new CreditsafeCompanyNegativeInformationDEV2Array(); + } + + /** + * Create an instance of {@link GCRBalanceSheet } + * + */ + public GCRBalanceSheet createGCRBalanceSheet() { + return new GCRBalanceSheet(); + } + + /** + * Create an instance of {@link InsolvencyCase } + * + */ + public InsolvencyCase createInsolvencyCase() { + return new InsolvencyCase(); + } + + /** + * Create an instance of {@link GCRBranchOffice } + * + */ + public GCRBranchOffice createGCRBranchOffice() { + return new GCRBranchOffice(); + } + + /** + * Create an instance of {@link DutchBusinessExtractDocument } + * + */ + public DutchBusinessExtractDocument createDutchBusinessExtractDocument() { + return new DutchBusinessExtractDocument(); + } + + /** + * Create an instance of {@link DutchBusinessNewsItemArray } + * + */ + public DutchBusinessNewsItemArray createDutchBusinessNewsItemArray() { + return new DutchBusinessNewsItemArray(); + } + + /** + * Create an instance of {@link GCRCompanyContinuedUnder } + * + */ + public GCRCompanyContinuedUnder createGCRCompanyContinuedUnder() { + return new GCRCompanyContinuedUnder(); + } + + /** + * Create an instance of {@link KadasterBerichtObjectDocument } + * + */ + public KadasterBerichtObjectDocument createKadasterBerichtObjectDocument() { + return new KadasterBerichtObjectDocument(); + } + + /** + * Create an instance of {@link CarVWEVersionPriceReference } + * + */ + public CarVWEVersionPriceReference createCarVWEVersionPriceReference() { + return new CarVWEVersionPriceReference(); + } + + /** + * Create an instance of {@link DutchVehicleRegistration } + * + */ + public DutchVehicleRegistration createDutchVehicleRegistration() { + return new DutchVehicleRegistration(); + } + + /** + * Create an instance of {@link GCRFinancialCalamity } + * + */ + public GCRFinancialCalamity createGCRFinancialCalamity() { + return new GCRFinancialCalamity(); + } + + /** + * Create an instance of {@link GCRBankruptcy } + * + */ + public GCRBankruptcy createGCRBankruptcy() { + return new GCRBankruptcy(); + } + + /** + * Create an instance of {@link BusinessSBISection } + * + */ + public BusinessSBISection createBusinessSBISection() { + return new BusinessSBISection(); + } + + /** + * Create an instance of {@link GCRPerson } + * + */ + public GCRPerson createGCRPerson() { + return new GCRPerson(); + } + + /** + * Create an instance of {@link DutchBusinessInsolvencyArray } + * + */ + public DutchBusinessInsolvencyArray createDutchBusinessInsolvencyArray() { + return new DutchBusinessInsolvencyArray(); + } + + /** + * Create an instance of {@link DutchBusinessExtractChangeForecast } + * + */ + public DutchBusinessExtractChangeForecast createDutchBusinessExtractChangeForecast() { + return new DutchBusinessExtractChangeForecast(); + } + + /** + * Create an instance of {@link DutchBusinessUBOOrganizationNodeArray } + * + */ + public DutchBusinessUBOOrganizationNodeArray createDutchBusinessUBOOrganizationNodeArray() { + return new DutchBusinessUBOOrganizationNodeArray(); + } + + /** + * Create an instance of {@link GCRHistoryAdvisedLimit } + * + */ + public GCRHistoryAdvisedLimit createGCRHistoryAdvisedLimit() { + return new GCRHistoryAdvisedLimit(); + } + + /** + * Create an instance of {@link CompliancePersonSearchReference } + * + */ + public CompliancePersonSearchReference createCompliancePersonSearchReference() { + return new CompliancePersonSearchReference(); + } + + /** + * Create an instance of {@link DutchBusinessVatNumber } + * + */ + public DutchBusinessVatNumber createDutchBusinessVatNumber() { + return new DutchBusinessVatNumber(); + } + + /** + * Create an instance of {@link KadasterV2AanvullingArray } + * + */ + public KadasterV2AanvullingArray createKadasterV2AanvullingArray() { + return new KadasterV2AanvullingArray(); + } + + /** + * Create an instance of {@link DutchBusinessOrganizationNode } + * + */ + public DutchBusinessOrganizationNode createDutchBusinessOrganizationNode() { + return new DutchBusinessOrganizationNode(); + } + + /** + * Create an instance of {@link GCRReceiver } + * + */ + public GCRReceiver createGCRReceiver() { + return new GCRReceiver(); + } + + /** + * Create an instance of {@link PRBeperkingArray } + * + */ + public PRBeperkingArray createPRBeperkingArray() { + return new PRBeperkingArray(); + } + + /** + * Create an instance of {@link DutchBusinessExtractDataV2 } + * + */ + public DutchBusinessExtractDataV2 createDutchBusinessExtractDataV2() { + return new DutchBusinessExtractDataV2(); + } + + /** + * Create an instance of {@link DutchBusinessNonMarketingIndicator } + * + */ + public DutchBusinessNonMarketingIndicator createDutchBusinessNonMarketingIndicator() { + return new DutchBusinessNonMarketingIndicator(); + } + + /** + * Create an instance of {@link DutchBusinessExtractChangeSet } + * + */ + public DutchBusinessExtractChangeSet createDutchBusinessExtractChangeSet() { + return new DutchBusinessExtractChangeSet(); + } + + /** + * Create an instance of {@link CreditsafeCompanyGroupStructureV2Array } + * + */ + public CreditsafeCompanyGroupStructureV2Array createCreditsafeCompanyGroupStructureV2Array() { + return new CreditsafeCompanyGroupStructureV2Array(); + } + + /** + * Create an instance of {@link StukMetKadastraleAanduidingArray } + * + */ + public StukMetKadastraleAanduidingArray createStukMetKadastraleAanduidingArray() { + return new StukMetKadastraleAanduidingArray(); + } + + /** + * Create an instance of {@link DutchBusinessReferenceV2Array } + * + */ + public DutchBusinessReferenceV2Array createDutchBusinessReferenceV2Array() { + return new DutchBusinessReferenceV2Array(); + } + + /** + * Create an instance of {@link KadasterV2AantekeningWKPBArray } + * + */ + public KadasterV2AantekeningWKPBArray createKadasterV2AantekeningWKPBArray() { + return new KadasterV2AantekeningWKPBArray(); + } + + /** + * Create an instance of {@link KadasterV2ZakelijkRechtArray } + * + */ + public KadasterV2ZakelijkRechtArray createKadasterV2ZakelijkRechtArray() { + return new KadasterV2ZakelijkRechtArray(); + } + + /** + * Create an instance of {@link KadasterHypotheekStukArray } + * + */ + public KadasterHypotheekStukArray createKadasterHypotheekStukArray() { + return new KadasterHypotheekStukArray(); + } + + /** + * Create an instance of {@link KoopsommenOverzicht } + * + */ + public KoopsommenOverzicht createKoopsommenOverzicht() { + return new KoopsommenOverzicht(); + } + + /** + * Create an instance of {@link MetaMethodDefinition } + * + */ + public MetaMethodDefinition createMetaMethodDefinition() { + return new MetaMethodDefinition(); + } + + /** + * Create an instance of {@link CreditsafeCompanyUpdatePagedResult } + * + */ + public CreditsafeCompanyUpdatePagedResult createCreditsafeCompanyUpdatePagedResult() { + return new CreditsafeCompanyUpdatePagedResult(); + } + + /** + * Create an instance of {@link DutchBusinessInsolvency } + * + */ + public DutchBusinessInsolvency createDutchBusinessInsolvency() { + return new DutchBusinessInsolvency(); + } + + /** + * Create an instance of {@link KadasterV2Bedrag } + * + */ + public KadasterV2Bedrag createKadasterV2Bedrag() { + return new KadasterV2Bedrag(); + } + + /** + * Create an instance of {@link KadasterV2Splitsing } + * + */ + public KadasterV2Splitsing createKadasterV2Splitsing() { + return new KadasterV2Splitsing(); + } + + /** + * Create an instance of {@link DutchBusinessExtractDataV3 } + * + */ + public DutchBusinessExtractDataV3 createDutchBusinessExtractDataV3() { + return new DutchBusinessExtractDataV3(); + } + + /** + * Create an instance of {@link DutchBusinessUBOInvestigationResult } + * + */ + public DutchBusinessUBOInvestigationResult createDutchBusinessUBOInvestigationResult() { + return new DutchBusinessUBOInvestigationResult(); + } + + /** + * Create an instance of {@link KadasterHypotheekStukLijst } + * + */ + public KadasterHypotheekStukLijst createKadasterHypotheekStukLijst() { + return new KadasterHypotheekStukLijst(); + } + + /** + * Create an instance of {@link InsolvencyLegalSubject } + * + */ + public InsolvencyLegalSubject createInsolvencyLegalSubject() { + return new InsolvencyLegalSubject(); + } + + /** + * Create an instance of {@link KadasterV2Tenaamstelling } + * + */ + public KadasterV2Tenaamstelling createKadasterV2Tenaamstelling() { + return new KadasterV2Tenaamstelling(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array createCreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array() { + return new CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array(); + } + + /** + * Create an instance of {@link LidArray } + * + */ + public LidArray createLidArray() { + return new LidArray(); + } + + /** + * Create an instance of {@link KadasterV2LocatieBinnenlandArray } + * + */ + public KadasterV2LocatieBinnenlandArray createKadasterV2LocatieBinnenlandArray() { + return new KadasterV2LocatieBinnenlandArray(); + } + + /** + * Create an instance of {@link DutchBusinessDossier } + * + */ + public DutchBusinessDossier createDutchBusinessDossier() { + return new DutchBusinessDossier(); + } + + /** + * Create an instance of {@link SearchParts } + * + */ + public SearchParts createSearchParts() { + return new SearchParts(); + } + + /** + * Create an instance of {@link GCRAlarm } + * + */ + public GCRAlarm createGCRAlarm() { + return new GCRAlarm(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationV2Array } + * + */ + public CreditsafeCompanyNegativeInformationV2Array createCreditsafeCompanyNegativeInformationV2Array() { + return new CreditsafeCompanyNegativeInformationV2Array(); + } + + /** + * Create an instance of {@link GCRCompanyRelationsSimple } + * + */ + public GCRCompanyRelationsSimple createGCRCompanyRelationsSimple() { + return new GCRCompanyRelationsSimple(); + } + + /** + * Create an instance of {@link DNBRelatedBusiness } + * + */ + public DNBRelatedBusiness createDNBRelatedBusiness() { + return new DNBRelatedBusiness(); + } + + /** + * Create an instance of {@link CompliancePersonSearchReferencePagedResult } + * + */ + public CompliancePersonSearchReferencePagedResult createCompliancePersonSearchReferencePagedResult() { + return new CompliancePersonSearchReferencePagedResult(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 } + * + */ + public CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 createCreditsafeCompanyAdditionalInformationNLAdditionalInformationV2() { + return new CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2(); + } + + /** + * Create an instance of {@link MetaMethodDefinitionArray } + * + */ + public MetaMethodDefinitionArray createMetaMethodDefinitionArray() { + return new MetaMethodDefinitionArray(); + } + + /** + * Create an instance of {@link IntArray } + * + */ + public IntArray createIntArray() { + return new IntArray(); + } + + /** + * Create an instance of {@link Province } + * + */ + public Province createProvince() { + return new Province(); + } + + /** + * Create an instance of {@link InsolvencyAffectedCompany } + * + */ + public InsolvencyAffectedCompany createInsolvencyAffectedCompany() { + return new InsolvencyAffectedCompany(); + } + + /** + * Create an instance of {@link KadasterV2ZakelijkRecht } + * + */ + public KadasterV2ZakelijkRecht createKadasterV2ZakelijkRecht() { + return new KadasterV2ZakelijkRecht(); + } + + /** + * Create an instance of {@link Car } + * + */ + public Car createCar() { + return new Car(); + } + + /** + * Create an instance of {@link KadasterPersoon } + * + */ + public KadasterPersoon createKadasterPersoon() { + return new KadasterPersoon(); + } + + /** + * Create an instance of {@link DutchBusinessLegalEntityData } + * + */ + public DutchBusinessLegalEntityData createDutchBusinessLegalEntityData() { + return new DutchBusinessLegalEntityData(); + } + + /** + * Create an instance of {@link CarVWEOptions } + * + */ + public CarVWEOptions createCarVWEOptions() { + return new CarVWEOptions(); + } + + /** + * Create an instance of {@link RouteSummary } + * + */ + public RouteSummary createRouteSummary() { + return new RouteSummary(); + } + + /** + * Create an instance of {@link CreditsafePersonPositionV2Array } + * + */ + public CreditsafePersonPositionV2Array createCreditsafePersonPositionV2Array() { + return new CreditsafePersonPositionV2Array(); + } + + /** + * Create an instance of {@link GCRCuratorArray } + * + */ + public GCRCuratorArray createGCRCuratorArray() { + return new GCRCuratorArray(); + } + + /** + * Create an instance of {@link LidLijst } + * + */ + public LidLijst createLidLijst() { + return new LidLijst(); + } + + /** + * Create an instance of {@link KadasterV2AangebodenStukArray } + * + */ + public KadasterV2AangebodenStukArray createKadasterV2AangebodenStukArray() { + return new KadasterV2AangebodenStukArray(); + } + + /** + * Create an instance of {@link BelgianBusinessAnnualFinancialStatement } + * + */ + public BelgianBusinessAnnualFinancialStatement createBelgianBusinessAnnualFinancialStatement() { + return new BelgianBusinessAnnualFinancialStatement(); + } + + /** + * Create an instance of {@link CarBodyArray } + * + */ + public CarBodyArray createCarBodyArray() { + return new CarBodyArray(); + } + + /** + * Create an instance of {@link GCRContinuation } + * + */ + public GCRContinuation createGCRContinuation() { + return new GCRContinuation(); + } + + /** + * Create an instance of {@link DutchVehicleAxleArray } + * + */ + public DutchVehicleAxleArray createDutchVehicleAxleArray() { + return new DutchVehicleAxleArray(); + } + + /** + * Create an instance of {@link ComplianceBusinessSearchReferenceArray } + * + */ + public ComplianceBusinessSearchReferenceArray createComplianceBusinessSearchReferenceArray() { + return new ComplianceBusinessSearchReferenceArray(); + } + + /** + * Create an instance of {@link AccountV2 } + * + */ + public AccountV2 createAccountV2() { + return new AccountV2(); + } + + /** + * Create an instance of {@link CreditsafeBeRegisteredContractorArray } + * + */ + public CreditsafeBeRegisteredContractorArray createCreditsafeBeRegisteredContractorArray() { + return new CreditsafeBeRegisteredContractorArray(); + } + + /** + * Create an instance of {@link InsolvencyAddresses } + * + */ + public InsolvencyAddresses createInsolvencyAddresses() { + return new InsolvencyAddresses(); + } + + /** + * Create an instance of {@link BusinessReferenceArray } + * + */ + public BusinessReferenceArray createBusinessReferenceArray() { + return new BusinessReferenceArray(); + } + + /** + * Create an instance of {@link GraydonCreditReportManagement } + * + */ + public GraydonCreditReportManagement createGraydonCreditReportManagement() { + return new GraydonCreditReportManagement(); + } + + /** + * Create an instance of {@link PersoonV2Array } + * + */ + public PersoonV2Array createPersoonV2Array() { + return new PersoonV2Array(); + } + + /** + * Create an instance of {@link RiskInsolvencyPublication } + * + */ + public RiskInsolvencyPublication createRiskInsolvencyPublication() { + return new RiskInsolvencyPublication(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationNLV2 } + * + */ + public CreditsafeCompanyNegativeInformationNLV2 createCreditsafeCompanyNegativeInformationNLV2() { + return new CreditsafeCompanyNegativeInformationNLV2(); + } + + /** + * Create an instance of {@link BusinessReferenceV2Array } + * + */ + public BusinessReferenceV2Array createBusinessReferenceV2Array() { + return new BusinessReferenceV2Array(); + } + + /** + * Create an instance of {@link CreditsafeCompanyUpdateArray } + * + */ + public CreditsafeCompanyUpdateArray createCreditsafeCompanyUpdateArray() { + return new CreditsafeCompanyUpdateArray(); + } + + /** + * Create an instance of {@link CreditsafeDescriptionV2 } + * + */ + public CreditsafeDescriptionV2 createCreditsafeDescriptionV2() { + return new CreditsafeDescriptionV2(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array } + * + */ + public CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array createCreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array() { + return new CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array(); + } + + /** + * Create an instance of {@link StukArray } + * + */ + public StukArray createStukArray() { + return new StukArray(); + } + + /** + * Create an instance of {@link BelgianBusinessRatios } + * + */ + public BelgianBusinessRatios createBelgianBusinessRatios() { + return new BelgianBusinessRatios(); + } + + /** + * Create an instance of {@link DutchBusinessPositionAuthorizationArray } + * + */ + public DutchBusinessPositionAuthorizationArray createDutchBusinessPositionAuthorizationArray() { + return new DutchBusinessPositionAuthorizationArray(); + } + + /** + * Create an instance of {@link CreditsafeBeBankruptcyEvent } + * + */ + public CreditsafeBeBankruptcyEvent createCreditsafeBeBankruptcyEvent() { + return new CreditsafeBeBankruptcyEvent(); + } + + /** + * Create an instance of {@link GCRCompanyRelations } + * + */ + public GCRCompanyRelations createGCRCompanyRelations() { + return new GCRCompanyRelations(); + } + + /** + * Create an instance of {@link DutchAddressPostcodeRange } + * + */ + public DutchAddressPostcodeRange createDutchAddressPostcodeRange() { + return new DutchAddressPostcodeRange(); + } + + /** + * Create an instance of {@link DNBMarketingPlusLinkage } + * + */ + public DNBMarketingPlusLinkage createDNBMarketingPlusLinkage() { + return new DNBMarketingPlusLinkage(); + } + + /** + * Create an instance of {@link BusinessSBICode } + * + */ + public BusinessSBICode createBusinessSBICode() { + return new BusinessSBICode(); + } + + /** + * Create an instance of {@link GCRBankAndInsurerData } + * + */ + public GCRBankAndInsurerData createGCRBankAndInsurerData() { + return new GCRBankAndInsurerData(); + } + + /** + * Create an instance of {@link OverzichtRechtArray } + * + */ + public OverzichtRechtArray createOverzichtRechtArray() { + return new OverzichtRechtArray(); + } + + /** + * Create an instance of {@link CreditsafeCompanyActivityClassificationV2Array } + * + */ + public CreditsafeCompanyActivityClassificationV2Array createCreditsafeCompanyActivityClassificationV2Array() { + return new CreditsafeCompanyActivityClassificationV2Array(); + } + + /** + * Create an instance of {@link GCRRatingArray } + * + */ + public GCRRatingArray createGCRRatingArray() { + return new GCRRatingArray(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationDEBankruptcyV2Array } + * + */ + public CreditsafeCompanyNegativeInformationDEBankruptcyV2Array createCreditsafeCompanyNegativeInformationDEBankruptcyV2Array() { + return new CreditsafeCompanyNegativeInformationDEBankruptcyV2Array(); + } + + /** + * Create an instance of {@link CompliancePerson } + * + */ + public CompliancePerson createCompliancePerson() { + return new CompliancePerson(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array createCreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array() { + return new CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array(); + } + + /** + * Create an instance of {@link BelgianBusinessAddress } + * + */ + public BelgianBusinessAddress createBelgianBusinessAddress() { + return new BelgianBusinessAddress(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationDEOwnerV2 } + * + */ + public CreditsafeCompanyAdditionalInformationDEOwnerV2 createCreditsafeCompanyAdditionalInformationDEOwnerV2() { + return new CreditsafeCompanyAdditionalInformationDEOwnerV2(); + } + + /** + * Create an instance of {@link BusinessUpdateReference } + * + */ + public BusinessUpdateReference createBusinessUpdateReference() { + return new BusinessUpdateReference(); + } + + /** + * Create an instance of {@link GCRFinancialDetailValueArray } + * + */ + public GCRFinancialDetailValueArray createGCRFinancialDetailValueArray() { + return new GCRFinancialDetailValueArray(); + } + + /** + * Create an instance of {@link DutchBusinessGetConcernRelationsDetailsGraphLinkArray } + * + */ + public DutchBusinessGetConcernRelationsDetailsGraphLinkArray createDutchBusinessGetConcernRelationsDetailsGraphLinkArray() { + return new DutchBusinessGetConcernRelationsDetailsGraphLinkArray(); + } + + /** + * Create an instance of {@link DutchBusinessEstablishmentReference } + * + */ + public DutchBusinessEstablishmentReference createDutchBusinessEstablishmentReference() { + return new DutchBusinessEstablishmentReference(); + } + + /** + * Create an instance of {@link DutchBusinessAnnualFinancialStatement } + * + */ + public DutchBusinessAnnualFinancialStatement createDutchBusinessAnnualFinancialStatement() { + return new DutchBusinessAnnualFinancialStatement(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationCommentV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationCommentV2Array createCreditsafeCompanyAdditionalInformationCommentV2Array() { + return new CreditsafeCompanyAdditionalInformationCommentV2Array(); + } + + /** + * Create an instance of {@link KadasterV2HoofdzaakArray } + * + */ + public KadasterV2HoofdzaakArray createKadasterV2HoofdzaakArray() { + return new KadasterV2HoofdzaakArray(); + } + + /** + * Create an instance of {@link DNBCommentary } + * + */ + public DNBCommentary createDNBCommentary() { + return new DNBCommentary(); + } + + /** + * Create an instance of {@link GraydonReferenceArray } + * + */ + public GraydonReferenceArray createGraydonReferenceArray() { + return new GraydonReferenceArray(); + } + + /** + * Create an instance of {@link GCRCreditAdviceData } + * + */ + public GCRCreditAdviceData createGCRCreditAdviceData() { + return new GCRCreditAdviceData(); + } + + /** + * Create an instance of {@link DutchBusinessPersonnelInfoV2 } + * + */ + public DutchBusinessPersonnelInfoV2 createDutchBusinessPersonnelInfoV2() { + return new DutchBusinessPersonnelInfoV2(); + } + + /** + * Create an instance of {@link DutchBusinessPersonnelInfoV3 } + * + */ + public DutchBusinessPersonnelInfoV3 createDutchBusinessPersonnelInfoV3() { + return new DutchBusinessPersonnelInfoV3(); + } + + /** + * Create an instance of {@link DutchVehicleStatus } + * + */ + public DutchVehicleStatus createDutchVehicleStatus() { + return new DutchVehicleStatus(); + } + + /** + * Create an instance of {@link GCRSpecialCompanyInformationArray } + * + */ + public GCRSpecialCompanyInformationArray createGCRSpecialCompanyInformationArray() { + return new GCRSpecialCompanyInformationArray(); + } + + /** + * Create an instance of {@link CarVWEOption } + * + */ + public CarVWEOption createCarVWEOption() { + return new CarVWEOption(); + } + + /** + * Create an instance of {@link CityPagedResult } + * + */ + public CityPagedResult createCityPagedResult() { + return new CityPagedResult(); + } + + /** + * Create an instance of {@link Base64BinaryArray } + * + */ + public Base64BinaryArray createBase64BinaryArray() { + return new Base64BinaryArray(); + } + + /** + * Create an instance of {@link LocatieBinnenlandArray } + * + */ + public LocatieBinnenlandArray createLocatieBinnenlandArray() { + return new LocatieBinnenlandArray(); + } + + /** + * Create an instance of {@link AreaCode } + * + */ + public AreaCode createAreaCode() { + return new AreaCode(); + } + + /** + * Create an instance of {@link DutchVehicleOwnerHistory } + * + */ + public DutchVehicleOwnerHistory createDutchVehicleOwnerHistory() { + return new DutchVehicleOwnerHistory(); + } + + /** + * Create an instance of {@link DutchBusinessSBICodeInfo } + * + */ + public DutchBusinessSBICodeInfo createDutchBusinessSBICodeInfo() { + return new DutchBusinessSBICodeInfo(); + } + + /** + * Create an instance of {@link MetaMethodReference } + * + */ + public MetaMethodReference createMetaMethodReference() { + return new MetaMethodReference(); + } + + /** + * Create an instance of {@link GCRLiaisonCompany } + * + */ + public GCRLiaisonCompany createGCRLiaisonCompany() { + return new GCRLiaisonCompany(); + } + + /** + * Create an instance of {@link CreditsafeCompanyOtherInformationV2Array } + * + */ + public CreditsafeCompanyOtherInformationV2Array createCreditsafeCompanyOtherInformationV2Array() { + return new CreditsafeCompanyOtherInformationV2Array(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array createCreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array() { + return new CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array(); + } + + /** + * Create an instance of {@link DutchBusinessUBORole } + * + */ + public DutchBusinessUBORole createDutchBusinessUBORole() { + return new DutchBusinessUBORole(); + } + + /** + * Create an instance of {@link DriveInfo } + * + */ + public DriveInfo createDriveInfo() { + return new DriveInfo(); + } + + /** + * Create an instance of {@link GCRManagementArray } + * + */ + public GCRManagementArray createGCRManagementArray() { + return new GCRManagementArray(); + } + + /** + * Create an instance of {@link ComplianceRoleReferenceArray } + * + */ + public ComplianceRoleReferenceArray createComplianceRoleReferenceArray() { + return new ComplianceRoleReferenceArray(); + } + + /** + * Create an instance of {@link KadasterBronDocument } + * + */ + public KadasterBronDocument createKadasterBronDocument() { + return new KadasterBronDocument(); + } + + /** + * Create an instance of {@link CreditsafeBeRegisteredContractor } + * + */ + public CreditsafeBeRegisteredContractor createCreditsafeBeRegisteredContractor() { + return new CreditsafeBeRegisteredContractor(); + } + + /** + * Create an instance of {@link GemeenteStuk } + * + */ + public GemeenteStuk createGemeenteStuk() { + return new GemeenteStuk(); + } + + /** + * Create an instance of {@link RiskLegalRestraint } + * + */ + public RiskLegalRestraint createRiskLegalRestraint() { + return new RiskLegalRestraint(); + } + + /** + * Create an instance of {@link BelgianBusinessStakeHolder } + * + */ + public BelgianBusinessStakeHolder createBelgianBusinessStakeHolder() { + return new BelgianBusinessStakeHolder(); + } + + /** + * Create an instance of {@link BusinessUpdateReferencePagedResult } + * + */ + public BusinessUpdateReferencePagedResult createBusinessUpdateReferencePagedResult() { + return new BusinessUpdateReferencePagedResult(); + } + + /** + * Create an instance of {@link BusinessDossierV3Array } + * + */ + public BusinessDossierV3Array createBusinessDossierV3Array() { + return new BusinessDossierV3Array(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 } + * + */ + public CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 createCreditsafeCompanyAdditionalInformationDETurnoverRangeV2() { + return new CreditsafeCompanyAdditionalInformationDETurnoverRangeV2(); + } + + /** + * Create an instance of {@link KadasterHypotheekStuk } + * + */ + public KadasterHypotheekStuk createKadasterHypotheekStuk() { + return new KadasterHypotheekStuk(); + } + + /** + * Create an instance of {@link GCRDeclarationOfLiability } + * + */ + public GCRDeclarationOfLiability createGCRDeclarationOfLiability() { + return new GCRDeclarationOfLiability(); + } + + /** + * Create an instance of {@link KadasterNietNatuurlijkPersoon } + * + */ + public KadasterNietNatuurlijkPersoon createKadasterNietNatuurlijkPersoon() { + return new KadasterNietNatuurlijkPersoon(); + } + + /** + * Create an instance of {@link GeoLocationAddress } + * + */ + public GeoLocationAddress createGeoLocationAddress() { + return new GeoLocationAddress(); + } + + /** + * Create an instance of {@link CreditsafeLtdCreditScore } + * + */ + public CreditsafeLtdCreditScore createCreditsafeLtdCreditScore() { + return new CreditsafeLtdCreditScore(); + } + + /** + * Create an instance of {@link CreditsafeCompanyV2Array } + * + */ + public CreditsafeCompanyV2Array createCreditsafeCompanyV2Array() { + return new CreditsafeCompanyV2Array(); + } + + /** + * Create an instance of {@link KadasterStukdeelRechtArray } + * + */ + public KadasterStukdeelRechtArray createKadasterStukdeelRechtArray() { + return new KadasterStukdeelRechtArray(); + } + + /** + * Create an instance of {@link SepaMatchNameMatchingResult } + * + */ + public SepaMatchNameMatchingResult createSepaMatchNameMatchingResult() { + return new SepaMatchNameMatchingResult(); + } + + /** + * Create an instance of {@link DutchBusinessUpdateSubscription } + * + */ + public DutchBusinessUpdateSubscription createDutchBusinessUpdateSubscription() { + return new DutchBusinessUpdateSubscription(); + } + + /** + * Create an instance of {@link DutchVehiclePrice } + * + */ + public DutchVehiclePrice createDutchVehiclePrice() { + return new DutchVehiclePrice(); + } + + /** + * Create an instance of {@link CompliancePersonReference } + * + */ + public CompliancePersonReference createCompliancePersonReference() { + return new CompliancePersonReference(); + } + + /** + * Create an instance of {@link LatLonCoordinatesMatch } + * + */ + public LatLonCoordinatesMatch createLatLonCoordinatesMatch() { + return new LatLonCoordinatesMatch(); + } + + /** + * Create an instance of {@link CityV2 } + * + */ + public CityV2 createCityV2() { + return new CityV2(); + } + + /** + * Create an instance of {@link GCRDeclarationOfLiabilityArray } + * + */ + public GCRDeclarationOfLiabilityArray createGCRDeclarationOfLiabilityArray() { + return new GCRDeclarationOfLiabilityArray(); + } + + /** + * Create an instance of {@link BelgianBusinessDossier } + * + */ + public BelgianBusinessDossier createBelgianBusinessDossier() { + return new BelgianBusinessDossier(); + } + + /** + * Create an instance of {@link CreditsafeStreetAddressWithTelephoneArray } + * + */ + public CreditsafeStreetAddressWithTelephoneArray createCreditsafeStreetAddressWithTelephoneArray() { + return new CreditsafeStreetAddressWithTelephoneArray(); + } + + /** + * Create an instance of {@link DutchBusinessPositionV2Array } + * + */ + public DutchBusinessPositionV2Array createDutchBusinessPositionV2Array() { + return new DutchBusinessPositionV2Array(); + } + + /** + * Create an instance of {@link BelgianBusinessDatedItem } + * + */ + public BelgianBusinessDatedItem createBelgianBusinessDatedItem() { + return new BelgianBusinessDatedItem(); + } + + /** + * Create an instance of {@link BerichtObject } + * + */ + public BerichtObject createBerichtObject() { + return new BerichtObject(); + } + + /** + * Create an instance of {@link SepaMatchBankAccountDetails } + * + */ + public SepaMatchBankAccountDetails createSepaMatchBankAccountDetails() { + return new SepaMatchBankAccountDetails(); + } + + /** + * Create an instance of {@link InsolvencyConcernedPerson } + * + */ + public InsolvencyConcernedPerson createInsolvencyConcernedPerson() { + return new InsolvencyConcernedPerson(); + } + + /** + * Create an instance of {@link CarVWEVersionYearData } + * + */ + public CarVWEVersionYearData createCarVWEVersionYearData() { + return new CarVWEVersionYearData(); + } + + /** + * Create an instance of {@link CreditsafeCompanyStatusV2Array } + * + */ + public CreditsafeCompanyStatusV2Array createCreditsafeCompanyStatusV2Array() { + return new CreditsafeCompanyStatusV2Array(); + } + + /** + * Create an instance of {@link InsolvencyTreatingAuthority } + * + */ + public InsolvencyTreatingAuthority createInsolvencyTreatingAuthority() { + return new InsolvencyTreatingAuthority(); + } + + /** + * Create an instance of {@link KadasterV2AdresLocatie } + * + */ + public KadasterV2AdresLocatie createKadasterV2AdresLocatie() { + return new KadasterV2AdresLocatie(); + } + + /** + * Create an instance of {@link BusinessBIKCodeArray } + * + */ + public BusinessBIKCodeArray createBusinessBIKCodeArray() { + return new BusinessBIKCodeArray(); + } + + /** + * Create an instance of {@link SepaInternationalBankAccountNumberFormatValidationReport } + * + */ + public SepaInternationalBankAccountNumberFormatValidationReport createSepaInternationalBankAccountNumberFormatValidationReport() { + return new SepaInternationalBankAccountNumberFormatValidationReport(); + } + + /** + * Create an instance of {@link InternationalFormattedAddressPagedResult } + * + */ + public InternationalFormattedAddressPagedResult createInternationalFormattedAddressPagedResult() { + return new InternationalFormattedAddressPagedResult(); + } + + /** + * Create an instance of {@link DutchBusinessExtractReferenceArray } + * + */ + public DutchBusinessExtractReferenceArray createDutchBusinessExtractReferenceArray() { + return new DutchBusinessExtractReferenceArray(); + } + + /** + * Create an instance of {@link UserGroupArray } + * + */ + public UserGroupArray createUserGroupArray() { + return new UserGroupArray(); + } + + /** + * Create an instance of {@link DutchBusinessPartnershipArray } + * + */ + public DutchBusinessPartnershipArray createDutchBusinessPartnershipArray() { + return new DutchBusinessPartnershipArray(); + } + + /** + * Create an instance of {@link CreditsafeCompanyUpdate } + * + */ + public CreditsafeCompanyUpdate createCreditsafeCompanyUpdate() { + return new CreditsafeCompanyUpdate(); + } + + /** + * Create an instance of {@link KoopsomArray } + * + */ + public KoopsomArray createKoopsomArray() { + return new KoopsomArray(); + } + + /** + * Create an instance of {@link OverzichtNatuurlijkPersoon } + * + */ + public OverzichtNatuurlijkPersoon createOverzichtNatuurlijkPersoon() { + return new OverzichtNatuurlijkPersoon(); + } + + /** + * Create an instance of {@link CreditsafeAdditionalInformation } + * + */ + public CreditsafeAdditionalInformation createCreditsafeAdditionalInformation() { + return new CreditsafeAdditionalInformation(); + } + + /** + * Create an instance of {@link CreditsafeBalanceSheet } + * + */ + public CreditsafeBalanceSheet createCreditsafeBalanceSheet() { + return new CreditsafeBalanceSheet(); + } + + /** + * Create an instance of {@link AccountArray } + * + */ + public AccountArray createAccountArray() { + return new AccountArray(); + } + + /** + * Create an instance of {@link CreditsafeNlAdditionalInformation } + * + */ + public CreditsafeNlAdditionalInformation createCreditsafeNlAdditionalInformation() { + return new CreditsafeNlAdditionalInformation(); + } + + /** + * Create an instance of {@link GCRTradeNameArray } + * + */ + public GCRTradeNameArray createGCRTradeNameArray() { + return new GCRTradeNameArray(); + } + + /** + * Create an instance of {@link KadasterHypothecairBerichtResultaat } + * + */ + public KadasterHypothecairBerichtResultaat createKadasterHypothecairBerichtResultaat() { + return new KadasterHypothecairBerichtResultaat(); + } + + /** + * Create an instance of {@link InsolvencyReceivers } + * + */ + public InsolvencyReceivers createInsolvencyReceivers() { + return new InsolvencyReceivers(); + } + + /** + * Create an instance of {@link DutchBusinessAddressV2 } + * + */ + public DutchBusinessAddressV2 createDutchBusinessAddressV2() { + return new DutchBusinessAddressV2(); + } + + /** + * Create an instance of {@link DutchBusinessAddressV3 } + * + */ + public DutchBusinessAddressV3 createDutchBusinessAddressV3() { + return new DutchBusinessAddressV3(); + } + + /** + * Create an instance of {@link RiskLegalRestraintDecision } + * + */ + public RiskLegalRestraintDecision createRiskLegalRestraintDecision() { + return new RiskLegalRestraintDecision(); + } + + /** + * Create an instance of {@link DutchBusinessReferenceV2 } + * + */ + public DutchBusinessReferenceV2 createDutchBusinessReferenceV2() { + return new DutchBusinessReferenceV2(); + } + + /** + * Create an instance of {@link DutchBusinessInsolvencyPublication } + * + */ + public DutchBusinessInsolvencyPublication createDutchBusinessInsolvencyPublication() { + return new DutchBusinessInsolvencyPublication(); + } + + /** + * Create an instance of {@link KadasterListValue } + * + */ + public KadasterListValue createKadasterListValue() { + return new KadasterListValue(); + } + + /** + * Create an instance of {@link BerichtObjectResultaat } + * + */ + public BerichtObjectResultaat createBerichtObjectResultaat() { + return new BerichtObjectResultaat(); + } + + /** + * Create an instance of {@link BusinessReferenceV3 } + * + */ + public BusinessReferenceV3 createBusinessReferenceV3() { + return new BusinessReferenceV3(); + } + + /** + * Create an instance of {@link BusinessReferenceV2 } + * + */ + public BusinessReferenceV2 createBusinessReferenceV2() { + return new BusinessReferenceV2(); + } + + /** + * Create an instance of {@link CreditsafeNlPaymentExpectationsSummary } + * + */ + public CreditsafeNlPaymentExpectationsSummary createCreditsafeNlPaymentExpectationsSummary() { + return new CreditsafeNlPaymentExpectationsSummary(); + } + + /** + * Create an instance of {@link GCRHistoryAdvisedLimitArray } + * + */ + public GCRHistoryAdvisedLimitArray createGCRHistoryAdvisedLimitArray() { + return new GCRHistoryAdvisedLimitArray(); + } + + /** + * Create an instance of {@link KadasterV2Stuk } + * + */ + public KadasterV2Stuk createKadasterV2Stuk() { + return new KadasterV2Stuk(); + } + + /** + * Create an instance of {@link KadasterV2StukdeelArray } + * + */ + public KadasterV2StukdeelArray createKadasterV2StukdeelArray() { + return new KadasterV2StukdeelArray(); + } + + /** + * Create an instance of {@link CityV2PagedResult } + * + */ + public CityV2PagedResult createCityV2PagedResult() { + return new CityV2PagedResult(); + } + + /** + * Create an instance of {@link DutchBusinessPositionV3 } + * + */ + public DutchBusinessPositionV3 createDutchBusinessPositionV3() { + return new DutchBusinessPositionV3(); + } + + /** + * Create an instance of {@link KadasterStukdeelArray } + * + */ + public KadasterStukdeelArray createKadasterStukdeelArray() { + return new KadasterStukdeelArray(); + } + + /** + * Create an instance of {@link DutchBusinessPositions } + * + */ + public DutchBusinessPositions createDutchBusinessPositions() { + return new DutchBusinessPositions(); + } + + /** + * Create an instance of {@link DutchBusinessPositionV2 } + * + */ + public DutchBusinessPositionV2 createDutchBusinessPositionV2() { + return new DutchBusinessPositionV2(); + } + + /** + * Create an instance of {@link GCRBankAndInsurerKeyFigures } + * + */ + public GCRBankAndInsurerKeyFigures createGCRBankAndInsurerKeyFigures() { + return new GCRBankAndInsurerKeyFigures(); + } + + /** + * Create an instance of {@link GCRSectorOfIndustry } + * + */ + public GCRSectorOfIndustry createGCRSectorOfIndustry() { + return new GCRSectorOfIndustry(); + } + + /** + * Create an instance of {@link DutchBusinessReferencePagedResult } + * + */ + public DutchBusinessReferencePagedResult createDutchBusinessReferencePagedResult() { + return new DutchBusinessReferencePagedResult(); + } + + /** + * Create an instance of {@link MetaServiceDefinitionArray } + * + */ + public MetaServiceDefinitionArray createMetaServiceDefinitionArray() { + return new MetaServiceDefinitionArray(); + } + + /** + * Create an instance of {@link CityV2Array } + * + */ + public CityV2Array createCityV2Array() { + return new CityV2Array(); + } + + /** + * Create an instance of {@link NietNatuurlijkPersoon } + * + */ + public NietNatuurlijkPersoon createNietNatuurlijkPersoon() { + return new NietNatuurlijkPersoon(); + } + + /** + * Create an instance of {@link GCRTelephoneNumber } + * + */ + public GCRTelephoneNumber createGCRTelephoneNumber() { + return new GCRTelephoneNumber(); + } + + /** + * Create an instance of {@link KadasterStukdeelRecht } + * + */ + public KadasterStukdeelRecht createKadasterStukdeelRecht() { + return new KadasterStukdeelRecht(); + } + + /** + * Create an instance of {@link DutchBusinessPositionCompany } + * + */ + public DutchBusinessPositionCompany createDutchBusinessPositionCompany() { + return new DutchBusinessPositionCompany(); + } + + /** + * Create an instance of {@link CarVWEModelArray } + * + */ + public CarVWEModelArray createCarVWEModelArray() { + return new CarVWEModelArray(); + } + + /** + * Create an instance of {@link DutchBusinessStructure } + * + */ + public DutchBusinessStructure createDutchBusinessStructure() { + return new DutchBusinessStructure(); + } + + /** + * Create an instance of {@link CreditsafeStreetAddressArray } + * + */ + public CreditsafeStreetAddressArray createCreditsafeStreetAddressArray() { + return new CreditsafeStreetAddressArray(); + } + + /** + * Create an instance of {@link CreditsafeSearchCriteriaCombination } + * + */ + public CreditsafeSearchCriteriaCombination createCreditsafeSearchCriteriaCombination() { + return new CreditsafeSearchCriteriaCombination(); + } + + /** + * Create an instance of {@link KadasterOverzichtRechtArray } + * + */ + public KadasterOverzichtRechtArray createKadasterOverzichtRechtArray() { + return new KadasterOverzichtRechtArray(); + } + + /** + * Create an instance of {@link DutchVehicle } + * + */ + public DutchVehicle createDutchVehicle() { + return new DutchVehicle(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array createCreditsafeCompanyAdditionalInformationNLKvkFilingV2Array() { + return new CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array(); + } + + /** + * Create an instance of {@link CreditsafeBanker } + * + */ + public CreditsafeBanker createCreditsafeBanker() { + return new CreditsafeBanker(); + } + + /** + * Create an instance of {@link BusinessBIKSection } + * + */ + public BusinessBIKSection createBusinessBIKSection() { + return new BusinessBIKSection(); + } + + /** + * Create an instance of {@link GCRCreditFactorArray } + * + */ + public GCRCreditFactorArray createGCRCreditFactorArray() { + return new GCRCreditFactorArray(); + } + + /** + * Create an instance of {@link DutchBusinessNewsCompanyArray } + * + */ + public DutchBusinessNewsCompanyArray createDutchBusinessNewsCompanyArray() { + return new DutchBusinessNewsCompanyArray(); + } + + /** + * Create an instance of {@link LocatieBinnenlandLijst } + * + */ + public LocatieBinnenlandLijst createLocatieBinnenlandLijst() { + return new LocatieBinnenlandLijst(); + } + + /** + * Create an instance of {@link GCRReceiverArray } + * + */ + public GCRReceiverArray createGCRReceiverArray() { + return new GCRReceiverArray(); + } + + /** + * Create an instance of {@link CreditsafeLtdCompanyBasicInformation } + * + */ + public CreditsafeLtdCompanyBasicInformation createCreditsafeLtdCompanyBasicInformation() { + return new CreditsafeLtdCompanyBasicInformation(); + } + + /** + * Create an instance of {@link GCRPersonSimple } + * + */ + public GCRPersonSimple createGCRPersonSimple() { + return new GCRPersonSimple(); + } + + /** + * Create an instance of {@link InsolvencyCurators } + * + */ + public InsolvencyCurators createInsolvencyCurators() { + return new InsolvencyCurators(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationNLCourtItemV2Array } + * + */ + public CreditsafeCompanyNegativeInformationNLCourtItemV2Array createCreditsafeCompanyNegativeInformationNLCourtItemV2Array() { + return new CreditsafeCompanyNegativeInformationNLCourtItemV2Array(); + } + + /** + * Create an instance of {@link KadasterV2NietNatuurlijkPersoon } + * + */ + public KadasterV2NietNatuurlijkPersoon createKadasterV2NietNatuurlijkPersoon() { + return new KadasterV2NietNatuurlijkPersoon(); + } + + /** + * Create an instance of {@link VatValidation } + * + */ + public VatValidation createVatValidation() { + return new VatValidation(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array createCreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array() { + return new CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array(); + } + + /** + * Create an instance of {@link RoutePlannerRoute } + * + */ + public RoutePlannerRoute createRoutePlannerRoute() { + return new RoutePlannerRoute(); + } + + /** + * Create an instance of {@link CreditsafeCompanyPaymentDataV2 } + * + */ + public CreditsafeCompanyPaymentDataV2 createCreditsafeCompanyPaymentDataV2() { + return new CreditsafeCompanyPaymentDataV2(); + } + + /** + * Create an instance of {@link KadasterV2Aantekening } + * + */ + public KadasterV2Aantekening createKadasterV2Aantekening() { + return new KadasterV2Aantekening(); + } + + /** + * Create an instance of {@link GCRAnnualFiguresArray } + * + */ + public GCRAnnualFiguresArray createGCRAnnualFiguresArray() { + return new GCRAnnualFiguresArray(); + } + + /** + * Create an instance of {@link InternationalFormattedAddress } + * + */ + public InternationalFormattedAddress createInternationalFormattedAddress() { + return new InternationalFormattedAddress(); + } + + /** + * Create an instance of {@link Lid } + * + */ + public Lid createLid() { + return new Lid(); + } + + /** + * Create an instance of {@link DutchBusinessGetLeiResult } + * + */ + public DutchBusinessGetLeiResult createDutchBusinessGetLeiResult() { + return new DutchBusinessGetLeiResult(); + } + + /** + * Create an instance of {@link BusinessDossierArray } + * + */ + public BusinessDossierArray createBusinessDossierArray() { + return new BusinessDossierArray(); + } + + /** + * Create an instance of {@link GCROriginatedFromArray } + * + */ + public GCROriginatedFromArray createGCROriginatedFromArray() { + return new GCROriginatedFromArray(); + } + + /** + * Create an instance of {@link OverzichtV2 } + * + */ + public OverzichtV2 createOverzichtV2() { + return new OverzichtV2(); + } + + /** + * Create an instance of {@link DutchBusinessOrganizationNodeArray } + * + */ + public DutchBusinessOrganizationNodeArray createDutchBusinessOrganizationNodeArray() { + return new DutchBusinessOrganizationNodeArray(); + } + + /** + * Create an instance of {@link RouteCoordinatesRD } + * + */ + public RouteCoordinatesRD createRouteCoordinatesRD() { + return new RouteCoordinatesRD(); + } + + /** + * Create an instance of {@link CreditsafeNlNegativeInformation } + * + */ + public CreditsafeNlNegativeInformation createCreditsafeNlNegativeInformation() { + return new CreditsafeNlNegativeInformation(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationDEInsolvencyEventV2 } + * + */ + public CreditsafeCompanyNegativeInformationDEInsolvencyEventV2 createCreditsafeCompanyNegativeInformationDEInsolvencyEventV2() { + return new CreditsafeCompanyNegativeInformationDEInsolvencyEventV2(); + } + + /** + * Create an instance of {@link BusinessSBICodeInfo } + * + */ + public BusinessSBICodeInfo createBusinessSBICodeInfo() { + return new BusinessSBICodeInfo(); + } + + /** + * Create an instance of {@link GCRRatioArray } + * + */ + public GCRRatioArray createGCRRatioArray() { + return new GCRRatioArray(); + } + + /** + * Create an instance of {@link KadasterV2SplitsingArray } + * + */ + public KadasterV2SplitsingArray createKadasterV2SplitsingArray() { + return new KadasterV2SplitsingArray(); + } + + /** + * Create an instance of {@link ComplianceBusiness } + * + */ + public ComplianceBusiness createComplianceBusiness() { + return new ComplianceBusiness(); + } + + /** + * Create an instance of {@link CreditsafeNlCourtDataReceiver } + * + */ + public CreditsafeNlCourtDataReceiver createCreditsafeNlCourtDataReceiver() { + return new CreditsafeNlCourtDataReceiver(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationDEDirectorEventV2 } + * + */ + public CreditsafeCompanyNegativeInformationDEDirectorEventV2 createCreditsafeCompanyNegativeInformationDEDirectorEventV2() { + return new CreditsafeCompanyNegativeInformationDEDirectorEventV2(); + } + + /** + * Create an instance of {@link AantekeningRechtArray } + * + */ + public AantekeningRechtArray createAantekeningRechtArray() { + return new AantekeningRechtArray(); + } + + /** + * Create an instance of {@link PCReeksArray } + * + */ + public PCReeksArray createPCReeksArray() { + return new PCReeksArray(); + } + + /** + * Create an instance of {@link GCRMoratorium } + * + */ + public GCRMoratorium createGCRMoratorium() { + return new GCRMoratorium(); + } + + /** + * Create an instance of {@link MetaServiceDefinition } + * + */ + public MetaServiceDefinition createMetaServiceDefinition() { + return new MetaServiceDefinition(); + } + + /** + * Create an instance of {@link KadasterV2AantekeningWKPB } + * + */ + public KadasterV2AantekeningWKPB createKadasterV2AantekeningWKPB() { + return new KadasterV2AantekeningWKPB(); + } + + /** + * Create an instance of {@link DutchBusinessSbiCodeV3Array } + * + */ + public DutchBusinessSbiCodeV3Array createDutchBusinessSbiCodeV3Array() { + return new DutchBusinessSbiCodeV3Array(); + } + + /** + * Create an instance of {@link DutchVehicleMarketValue } + * + */ + public DutchVehicleMarketValue createDutchVehicleMarketValue() { + return new DutchVehicleMarketValue(); + } + + /** + * Create an instance of {@link KadasterV2BeslagleggingArray } + * + */ + public KadasterV2BeslagleggingArray createKadasterV2BeslagleggingArray() { + return new KadasterV2BeslagleggingArray(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 } + * + */ + public CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 createCreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2() { + return new CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2(); + } + + /** + * Create an instance of {@link CreditsafeLtdGroupStructure } + * + */ + public CreditsafeLtdGroupStructure createCreditsafeLtdGroupStructure() { + return new CreditsafeLtdGroupStructure(); + } + + /** + * Create an instance of {@link DutchBusinessPeriod } + * + */ + public DutchBusinessPeriod createDutchBusinessPeriod() { + return new DutchBusinessPeriod(); + } + + /** + * Create an instance of {@link DutchBusinessUBOReceiptItemArray } + * + */ + public DutchBusinessUBOReceiptItemArray createDutchBusinessUBOReceiptItemArray() { + return new DutchBusinessUBOReceiptItemArray(); + } + + /** + * Create an instance of {@link DutchBusinessGetConcernRelationsOverviewResult } + * + */ + public DutchBusinessGetConcernRelationsOverviewResult createDutchBusinessGetConcernRelationsOverviewResult() { + return new DutchBusinessGetConcernRelationsOverviewResult(); + } + + /** + * Create an instance of {@link KadasterV2OvergegaanIn } + * + */ + public KadasterV2OvergegaanIn createKadasterV2OvergegaanIn() { + return new KadasterV2OvergegaanIn(); + } + + /** + * Create an instance of {@link CreditsafeLtdContactInformation } + * + */ + public CreditsafeLtdContactInformation createCreditsafeLtdContactInformation() { + return new CreditsafeLtdContactInformation(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array } + * + */ + public CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array createCreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array() { + return new CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array(); + } + + /** + * Create an instance of {@link CreditsafeBePaymentExpectationsSummary } + * + */ + public CreditsafeBePaymentExpectationsSummary createCreditsafeBePaymentExpectationsSummary() { + return new CreditsafeBePaymentExpectationsSummary(); + } + + /** + * Create an instance of {@link DutchVehicleV2 } + * + */ + public DutchVehicleV2 createDutchVehicleV2() { + return new DutchVehicleV2(); + } + + /** + * Create an instance of {@link AantekeningRechtLijst } + * + */ + public AantekeningRechtLijst createAantekeningRechtLijst() { + return new AantekeningRechtLijst(); + } + + /** + * Create an instance of {@link KadasterV2StukArray } + * + */ + public KadasterV2StukArray createKadasterV2StukArray() { + return new KadasterV2StukArray(); + } + + /** + * Create an instance of {@link CreditsafeCompanyBalanceSheetV2 } + * + */ + public CreditsafeCompanyBalanceSheetV2 createCreditsafeCompanyBalanceSheetV2() { + return new CreditsafeCompanyBalanceSheetV2(); + } + + /** + * Create an instance of {@link DutchVehicleMileage } + * + */ + public DutchVehicleMileage createDutchVehicleMileage() { + return new DutchVehicleMileage(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 } + * + */ + public CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 createCreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2() { + return new CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2(); + } + + /** + * Create an instance of {@link BelgianBusinessDossierErrors } + * + */ + public BelgianBusinessDossierErrors createBelgianBusinessDossierErrors() { + return new BelgianBusinessDossierErrors(); + } + + /** + * Create an instance of {@link UserGroup } + * + */ + public UserGroup createUserGroup() { + return new UserGroup(); + } + + /** + * Create an instance of {@link NeighborhoodPagedResult } + * + */ + public NeighborhoodPagedResult createNeighborhoodPagedResult() { + return new NeighborhoodPagedResult(); + } + + /** + * Create an instance of {@link GCRCompanyItself } + * + */ + public GCRCompanyItself createGCRCompanyItself() { + return new GCRCompanyItself(); + } + + /** + * Create an instance of {@link CreditsafeBeAdditionalInformation } + * + */ + public CreditsafeBeAdditionalInformation createCreditsafeBeAdditionalInformation() { + return new CreditsafeBeAdditionalInformation(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationHistoricalEventV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationHistoricalEventV2Array createCreditsafeCompanyAdditionalInformationHistoricalEventV2Array() { + return new CreditsafeCompanyAdditionalInformationHistoricalEventV2Array(); + } + + /** + * Create an instance of {@link DNBEmployeeCount } + * + */ + public DNBEmployeeCount createDNBEmployeeCount() { + return new DNBEmployeeCount(); + } + + /** + * Create an instance of {@link DutchVehicleOwnership } + * + */ + public DutchVehicleOwnership createDutchVehicleOwnership() { + return new DutchVehicleOwnership(); + } + + /** + * Create an instance of {@link CreditsafeCompanyEmployeeInformationV2 } + * + */ + public CreditsafeCompanyEmployeeInformationV2 createCreditsafeCompanyEmployeeInformationV2() { + return new CreditsafeCompanyEmployeeInformationV2(); + } + + /** + * Create an instance of {@link KadasterV2Bijlage } + * + */ + public KadasterV2Bijlage createKadasterV2Bijlage() { + return new KadasterV2Bijlage(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationNLCourtItemV2 } + * + */ + public CreditsafeCompanyNegativeInformationNLCourtItemV2 createCreditsafeCompanyNegativeInformationNLCourtItemV2() { + return new CreditsafeCompanyNegativeInformationNLCourtItemV2(); + } + + /** + * Create an instance of {@link GCRCreditFactor } + * + */ + public GCRCreditFactor createGCRCreditFactor() { + return new GCRCreditFactor(); + } + + /** + * Create an instance of {@link DNBSICCode } + * + */ + public DNBSICCode createDNBSICCode() { + return new DNBSICCode(); + } + + /** + * Create an instance of {@link BusinessSBICodeArray } + * + */ + public BusinessSBICodeArray createBusinessSBICodeArray() { + return new BusinessSBICodeArray(); + } + + /** + * Create an instance of {@link KadasterV2KadastraalBerichtResponse } + * + */ + public KadasterV2KadastraalBerichtResponse createKadasterV2KadastraalBerichtResponse() { + return new KadasterV2KadastraalBerichtResponse(); + } + + /** + * Create an instance of {@link EDRScore } + * + */ + public EDRScore createEDRScore() { + return new EDRScore(); + } + + /** + * Create an instance of {@link CreditsafePreviousDirectorArray } + * + */ + public CreditsafePreviousDirectorArray createCreditsafePreviousDirectorArray() { + return new CreditsafePreviousDirectorArray(); + } + + /** + * Create an instance of {@link DutchVehicleEngine } + * + */ + public DutchVehicleEngine createDutchVehicleEngine() { + return new DutchVehicleEngine(); + } + + /** + * Create an instance of {@link CreditsafeNlLettersOfLiabilityInformation403 } + * + */ + public CreditsafeNlLettersOfLiabilityInformation403 createCreditsafeNlLettersOfLiabilityInformation403() { + return new CreditsafeNlLettersOfLiabilityInformation403(); + } + + /** + * Create an instance of {@link CreditsafeShareHolder } + * + */ + public CreditsafeShareHolder createCreditsafeShareHolder() { + return new CreditsafeShareHolder(); + } + + /** + * Create an instance of {@link DutchBusinessDossierReferenceArray } + * + */ + public DutchBusinessDossierReferenceArray createDutchBusinessDossierReferenceArray() { + return new DutchBusinessDossierReferenceArray(); + } + + /** + * Create an instance of {@link KadasterOverzicht } + * + */ + public KadasterOverzicht createKadasterOverzicht() { + return new KadasterOverzicht(); + } + + /** + * Create an instance of {@link RangeAddress } + * + */ + public RangeAddress createRangeAddress() { + return new RangeAddress(); + } + + /** + * Create an instance of {@link KadasterListValueArray } + * + */ + public KadasterListValueArray createKadasterListValueArray() { + return new KadasterListValueArray(); + } + + /** + * Create an instance of {@link GCRParticipation } + * + */ + public GCRParticipation createGCRParticipation() { + return new GCRParticipation(); + } + + /** + * Create an instance of {@link CarVWEOptionPackageArray } + * + */ + public CarVWEOptionPackageArray createCarVWEOptionPackageArray() { + return new CarVWEOptionPackageArray(); + } + + /** + * Create an instance of {@link RiskInsolvencyArray } + * + */ + public RiskInsolvencyArray createRiskInsolvencyArray() { + return new RiskInsolvencyArray(); + } + + /** + * Create an instance of {@link KadasterV2LandinrichtingsRenteArray } + * + */ + public KadasterV2LandinrichtingsRenteArray createKadasterV2LandinrichtingsRenteArray() { + return new KadasterV2LandinrichtingsRenteArray(); + } + + /** + * Create an instance of {@link GCRCountry } + * + */ + public GCRCountry createGCRCountry() { + return new GCRCountry(); + } + + /** + * Create an instance of {@link CreditsafeCompanyRatiosV2Array } + * + */ + public CreditsafeCompanyRatiosV2Array createCreditsafeCompanyRatiosV2Array() { + return new CreditsafeCompanyRatiosV2Array(); + } + + /** + * Create an instance of {@link DutchBusinessUBOExtract } + * + */ + public DutchBusinessUBOExtract createDutchBusinessUBOExtract() { + return new DutchBusinessUBOExtract(); + } + + /** + * Create an instance of {@link DutchVehiclePriceValuationArray } + * + */ + public DutchVehiclePriceValuationArray createDutchVehiclePriceValuationArray() { + return new DutchVehiclePriceValuationArray(); + } + + /** + * Create an instance of {@link KadasterV2ErfpachtCanonArray } + * + */ + public KadasterV2ErfpachtCanonArray createKadasterV2ErfpachtCanonArray() { + return new KadasterV2ErfpachtCanonArray(); + } + + /** + * Create an instance of {@link DutchBusinessReference } + * + */ + public DutchBusinessReference createDutchBusinessReference() { + return new DutchBusinessReference(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 } + * + */ + public CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 createCreditsafeCompanyNegativeInformationDEInsolvencyInformationV2() { + return new CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2(); + } + + /** + * Create an instance of {@link DNBMarketing } + * + */ + public DNBMarketing createDNBMarketing() { + return new DNBMarketing(); + } + + /** + * Create an instance of {@link SortedPostcode } + * + */ + public SortedPostcode createSortedPostcode() { + return new SortedPostcode(); + } + + /** + * Create an instance of {@link GCRDebtRestructuringPrivatePersons } + * + */ + public GCRDebtRestructuringPrivatePersons createGCRDebtRestructuringPrivatePersons() { + return new GCRDebtRestructuringPrivatePersons(); + } + + /** + * Create an instance of {@link ProvincePagedResult } + * + */ + public ProvincePagedResult createProvincePagedResult() { + return new ProvincePagedResult(); + } + + /** + * Create an instance of {@link ComplianceBusinessSearchReferencePagedResult } + * + */ + public ComplianceBusinessSearchReferencePagedResult createComplianceBusinessSearchReferencePagedResult() { + return new ComplianceBusinessSearchReferencePagedResult(); + } + + /** + * Create an instance of {@link GraydonReference } + * + */ + public GraydonReference createGraydonReference() { + return new GraydonReference(); + } + + /** + * Create an instance of {@link DutchVehicleAxle } + * + */ + public DutchVehicleAxle createDutchVehicleAxle() { + return new DutchVehicleAxle(); + } + + /** + * Create an instance of {@link RechtenLijst } + * + */ + public RechtenLijst createRechtenLijst() { + return new RechtenLijst(); + } + + /** + * Create an instance of {@link CreditsafeNlCourtData } + * + */ + public CreditsafeNlCourtData createCreditsafeNlCourtData() { + return new CreditsafeNlCourtData(); + } + + /** + * Create an instance of {@link BelgianBusinessBankAccountArray } + * + */ + public BelgianBusinessBankAccountArray createBelgianBusinessBankAccountArray() { + return new BelgianBusinessBankAccountArray(); + } + + /** + * Create an instance of {@link ComplianceSanctionReferenceArray } + * + */ + public ComplianceSanctionReferenceArray createComplianceSanctionReferenceArray() { + return new ComplianceSanctionReferenceArray(); + } + + /** + * Create an instance of {@link DutchBusinessPartnershipV3 } + * + */ + public DutchBusinessPartnershipV3 createDutchBusinessPartnershipV3() { + return new DutchBusinessPartnershipV3(); + } + + /** + * Create an instance of {@link DutchBusinessPartnershipV2 } + * + */ + public DutchBusinessPartnershipV2 createDutchBusinessPartnershipV2() { + return new DutchBusinessPartnershipV2(); + } + + /** + * Create an instance of {@link DutchBusinessGetConcernRelationsDetailsResult } + * + */ + public DutchBusinessGetConcernRelationsDetailsResult createDutchBusinessGetConcernRelationsDetailsResult() { + return new DutchBusinessGetConcernRelationsDetailsResult(); + } + + /** + * Create an instance of {@link CreditsafeLtdCompanySummary } + * + */ + public CreditsafeLtdCompanySummary createCreditsafeLtdCompanySummary() { + return new CreditsafeLtdCompanySummary(); + } + + /** + * Create an instance of {@link KadasterV2Verzoek } + * + */ + public KadasterV2Verzoek createKadasterV2Verzoek() { + return new KadasterV2Verzoek(); + } + + /** + * Create an instance of {@link KadasterGerelateerdStukdeel } + * + */ + public KadasterGerelateerdStukdeel createKadasterGerelateerdStukdeel() { + return new KadasterGerelateerdStukdeel(); + } + + /** + * Create an instance of {@link CompliancePersonReferenceArray } + * + */ + public CompliancePersonReferenceArray createCompliancePersonReferenceArray() { + return new CompliancePersonReferenceArray(); + } + + /** + * Create an instance of {@link CreditsafeSearchCriteriaCombinationArray } + * + */ + public CreditsafeSearchCriteriaCombinationArray createCreditsafeSearchCriteriaCombinationArray() { + return new CreditsafeSearchCriteriaCombinationArray(); + } + + /** + * Create an instance of {@link DutchBusinessUBOClassifiedPerson } + * + */ + public DutchBusinessUBOClassifiedPerson createDutchBusinessUBOClassifiedPerson() { + return new DutchBusinessUBOClassifiedPerson(); + } + + /** + * Create an instance of {@link KadasterV2AantekeningArray } + * + */ + public KadasterV2AantekeningArray createKadasterV2AantekeningArray() { + return new KadasterV2AantekeningArray(); + } + + /** + * Create an instance of {@link DNBScoreGroup } + * + */ + public DNBScoreGroup createDNBScoreGroup() { + return new DNBScoreGroup(); + } + + /** + * Create an instance of {@link DutchVehicleTechnicalWeight } + * + */ + public DutchVehicleTechnicalWeight createDutchVehicleTechnicalWeight() { + return new DutchVehicleTechnicalWeight(); + } + + /** + * Create an instance of {@link DNBScoreGroupArray } + * + */ + public DNBScoreGroupArray createDNBScoreGroupArray() { + return new DNBScoreGroupArray(); + } + + /** + * Create an instance of {@link BelgianBusinessDatedItemArray } + * + */ + public BelgianBusinessDatedItemArray createBelgianBusinessDatedItemArray() { + return new BelgianBusinessDatedItemArray(); + } + + /** + * Create an instance of {@link NbwoVorigeVerkoopModelResultaat } + * + */ + public NbwoVorigeVerkoopModelResultaat createNbwoVorigeVerkoopModelResultaat() { + return new NbwoVorigeVerkoopModelResultaat(); + } + + /** + * Create an instance of {@link SessionPagedResult } + * + */ + public SessionPagedResult createSessionPagedResult() { + return new SessionPagedResult(); + } + + /** + * Create an instance of {@link KadasterV2Coordinaat } + * + */ + public KadasterV2Coordinaat createKadasterV2Coordinaat() { + return new KadasterV2Coordinaat(); + } + + /** + * Create an instance of {@link OverzichtPersoonV2 } + * + */ + public OverzichtPersoonV2 createOverzichtPersoonV2() { + return new OverzichtPersoonV2(); + } + + /** + * Create an instance of {@link KadasterV2NatuurlijkPersoon } + * + */ + public KadasterV2NatuurlijkPersoon createKadasterV2NatuurlijkPersoon() { + return new KadasterV2NatuurlijkPersoon(); + } + + /** + * Create an instance of {@link DutchBusinessUBOClassifiedSuspect } + * + */ + public DutchBusinessUBOClassifiedSuspect createDutchBusinessUBOClassifiedSuspect() { + return new DutchBusinessUBOClassifiedSuspect(); + } + + /** + * Create an instance of {@link KadasterV2OnroerendeZaak } + * + */ + public KadasterV2OnroerendeZaak createKadasterV2OnroerendeZaak() { + return new KadasterV2OnroerendeZaak(); + } + + /** + * Create an instance of {@link KadasterOverzichtOnroerendeZaakArray } + * + */ + public KadasterOverzichtOnroerendeZaakArray createKadasterOverzichtOnroerendeZaakArray() { + return new KadasterOverzichtOnroerendeZaakArray(); + } + + /** + * Create an instance of {@link BusinessBIKSectionArray } + * + */ + public BusinessBIKSectionArray createBusinessBIKSectionArray() { + return new BusinessBIKSectionArray(); + } + + /** + * Create an instance of {@link DutchBusinessPersonV3 } + * + */ + public DutchBusinessPersonV3 createDutchBusinessPersonV3() { + return new DutchBusinessPersonV3(); + } + + /** + * Create an instance of {@link KadasterDomicilieKeuze } + * + */ + public KadasterDomicilieKeuze createKadasterDomicilieKeuze() { + return new KadasterDomicilieKeuze(); + } + + /** + * Create an instance of {@link DutchBusinessPersonV2 } + * + */ + public DutchBusinessPersonV2 createDutchBusinessPersonV2() { + return new DutchBusinessPersonV2(); + } + + /** + * Create an instance of {@link BelgianBusinessCompany } + * + */ + public BelgianBusinessCompany createBelgianBusinessCompany() { + return new BelgianBusinessCompany(); + } + + /** + * Create an instance of {@link KadasterStukdeelReferentiesLijst } + * + */ + public KadasterStukdeelReferentiesLijst createKadasterStukdeelReferentiesLijst() { + return new KadasterStukdeelReferentiesLijst(); + } + + /** + * Create an instance of {@link KadasterV2JaarlijksBedragArray } + * + */ + public KadasterV2JaarlijksBedragArray createKadasterV2JaarlijksBedragArray() { + return new KadasterV2JaarlijksBedragArray(); + } + + /** + * Create an instance of {@link GCRLiaison } + * + */ + public GCRLiaison createGCRLiaison() { + return new GCRLiaison(); + } + + /** + * Create an instance of {@link OverzichtRecht } + * + */ + public OverzichtRecht createOverzichtRecht() { + return new OverzichtRecht(); + } + + /** + * Create an instance of {@link BusinessDossierV2PagedResult } + * + */ + public BusinessDossierV2PagedResult createBusinessDossierV2PagedResult() { + return new BusinessDossierV2PagedResult(); + } + + /** + * Create an instance of {@link KadasterV2Hypotheek } + * + */ + public KadasterV2Hypotheek createKadasterV2Hypotheek() { + return new KadasterV2Hypotheek(); + } + + /** + * Create an instance of {@link UserV2 } + * + */ + public UserV2 createUserV2() { + return new UserV2(); + } + + /** + * Create an instance of {@link DutchBusinessUBOClassifiedSuspectArray } + * + */ + public DutchBusinessUBOClassifiedSuspectArray createDutchBusinessUBOClassifiedSuspectArray() { + return new DutchBusinessUBOClassifiedSuspectArray(); + } + + /** + * Create an instance of {@link KadasterV2Historie } + * + */ + public KadasterV2Historie createKadasterV2Historie() { + return new KadasterV2Historie(); + } + + /** + * Create an instance of {@link CarATDValuation } + * + */ + public CarATDValuation createCarATDValuation() { + return new CarATDValuation(); + } + + /** + * Create an instance of {@link GCRContactDetails } + * + */ + public GCRContactDetails createGCRContactDetails() { + return new GCRContactDetails(); + } + + /** + * Create an instance of {@link CarOptions } + * + */ + public CarOptions createCarOptions() { + return new CarOptions(); + } + + /** + * Create an instance of {@link DutchBusinessSBICode } + * + */ + public DutchBusinessSBICode createDutchBusinessSBICode() { + return new DutchBusinessSBICode(); + } + + /** + * Create an instance of {@link CreditsafeCompanyReportFullV2Array } + * + */ + public CreditsafeCompanyReportFullV2Array createCreditsafeCompanyReportFullV2Array() { + return new CreditsafeCompanyReportFullV2Array(); + } + + /** + * Create an instance of {@link DutchBusinessAdditionalPositionFunctionary } + * + */ + public DutchBusinessAdditionalPositionFunctionary createDutchBusinessAdditionalPositionFunctionary() { + return new DutchBusinessAdditionalPositionFunctionary(); + } + + /** + * Create an instance of {@link BerichtObjectResultaatV2 } + * + */ + public BerichtObjectResultaatV2 createBerichtObjectResultaatV2() { + return new BerichtObjectResultaatV2(); + } + + /** + * Create an instance of {@link SortedPostcodeArray } + * + */ + public SortedPostcodeArray createSortedPostcodeArray() { + return new SortedPostcodeArray(); + } + + /** + * Create an instance of {@link LocatieBinnenland } + * + */ + public LocatieBinnenland createLocatieBinnenland() { + return new LocatieBinnenland(); + } + + /** + * Create an instance of {@link DutchBusinessAnnualFinancialStatementSummary } + * + */ + public DutchBusinessAnnualFinancialStatementSummary createDutchBusinessAnnualFinancialStatementSummary() { + return new DutchBusinessAnnualFinancialStatementSummary(); + } + + /** + * Create an instance of {@link CreditsafePersonDirectorsV2 } + * + */ + public CreditsafePersonDirectorsV2 createCreditsafePersonDirectorsV2() { + return new CreditsafePersonDirectorsV2(); + } + + /** + * Create an instance of {@link DutchBusinessDateV2 } + * + */ + public DutchBusinessDateV2 createDutchBusinessDateV2() { + return new DutchBusinessDateV2(); + } + + /** + * Create an instance of {@link CreditsafeCompanyPaymentDataV2Array } + * + */ + public CreditsafeCompanyPaymentDataV2Array createCreditsafeCompanyPaymentDataV2Array() { + return new CreditsafeCompanyPaymentDataV2Array(); + } + + /** + * Create an instance of {@link DutchBusinessDateV3 } + * + */ + public DutchBusinessDateV3 createDutchBusinessDateV3() { + return new DutchBusinessDateV3(); + } + + /** + * Create an instance of {@link DutchVehicleOwnershipArray } + * + */ + public DutchVehicleOwnershipArray createDutchVehicleOwnershipArray() { + return new DutchVehicleOwnershipArray(); + } + + /** + * Create an instance of {@link GraydonCreditReport } + * + */ + public GraydonCreditReport createGraydonCreditReport() { + return new GraydonCreditReport(); + } + + /** + * Create an instance of {@link UittrekselKadastraleKaart } + * + */ + public UittrekselKadastraleKaart createUittrekselKadastraleKaart() { + return new UittrekselKadastraleKaart(); + } + + /** + * Create an instance of {@link CarVWEBrandArray } + * + */ + public CarVWEBrandArray createCarVWEBrandArray() { + return new CarVWEBrandArray(); + } + + /** + * Create an instance of {@link KadasterV2HypothecairBerichtResponse } + * + */ + public KadasterV2HypothecairBerichtResponse createKadasterV2HypothecairBerichtResponse() { + return new KadasterV2HypothecairBerichtResponse(); + } + + /** + * Create an instance of {@link DutchBusinessOrganizationTree } + * + */ + public DutchBusinessOrganizationTree createDutchBusinessOrganizationTree() { + return new DutchBusinessOrganizationTree(); + } + + /** + * Create an instance of {@link InsolvencyPublications } + * + */ + public InsolvencyPublications createInsolvencyPublications() { + return new InsolvencyPublications(); + } + + /** + * Create an instance of {@link Neighborhood } + * + */ + public Neighborhood createNeighborhood() { + return new Neighborhood(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationCommentV2 } + * + */ + public CreditsafeCompanyAdditionalInformationCommentV2 createCreditsafeCompanyAdditionalInformationCommentV2() { + return new CreditsafeCompanyAdditionalInformationCommentV2(); + } + + /** + * Create an instance of {@link KadasterV2GezamenlijkAandeel } + * + */ + public KadasterV2GezamenlijkAandeel createKadasterV2GezamenlijkAandeel() { + return new KadasterV2GezamenlijkAandeel(); + } + + /** + * Create an instance of {@link KadasterV2HypotheekArray } + * + */ + public KadasterV2HypotheekArray createKadasterV2HypotheekArray() { + return new KadasterV2HypotheekArray(); + } + + /** + * Create an instance of {@link GeoLocationInternationalAddress } + * + */ + public GeoLocationInternationalAddress createGeoLocationInternationalAddress() { + return new GeoLocationInternationalAddress(); + } + + /** + * Create an instance of {@link RouteCoordinates } + * + */ + public RouteCoordinates createRouteCoordinates() { + return new RouteCoordinates(); + } + + /** + * Create an instance of {@link GraydonCreditReportCalamity } + * + */ + public GraydonCreditReportCalamity createGraydonCreditReportCalamity() { + return new GraydonCreditReportCalamity(); + } + + /** + * Create an instance of {@link CreditsafeCompanyBalanceSheetV2Array } + * + */ + public CreditsafeCompanyBalanceSheetV2Array createCreditsafeCompanyBalanceSheetV2Array() { + return new CreditsafeCompanyBalanceSheetV2Array(); + } + + /** + * Create an instance of {@link DutchBusinessExtractHistory } + * + */ + public DutchBusinessExtractHistory createDutchBusinessExtractHistory() { + return new DutchBusinessExtractHistory(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdvisorV2 } + * + */ + public CreditsafeCompanyAdvisorV2 createCreditsafeCompanyAdvisorV2() { + return new CreditsafeCompanyAdvisorV2(); + } + + /** + * Create an instance of {@link RoutePart } + * + */ + public RoutePart createRoutePart() { + return new RoutePart(); + } + + /** + * Create an instance of {@link CarVWEPhotoArray } + * + */ + public CarVWEPhotoArray createCarVWEPhotoArray() { + return new CarVWEPhotoArray(); + } + + /** + * Create an instance of {@link KadasterPersoonArray } + * + */ + public KadasterPersoonArray createKadasterPersoonArray() { + return new KadasterPersoonArray(); + } + + /** + * Create an instance of {@link AccountCreationToken } + * + */ + public AccountCreationToken createAccountCreationToken() { + return new AccountCreationToken(); + } + + /** + * Create an instance of {@link CreditsafeCompanyActivityV2Array } + * + */ + public CreditsafeCompanyActivityV2Array createCreditsafeCompanyActivityV2Array() { + return new CreditsafeCompanyActivityV2Array(); + } + + /** + * Create an instance of {@link GCRTelephoneNumberArray } + * + */ + public GCRTelephoneNumberArray createGCRTelephoneNumberArray() { + return new GCRTelephoneNumberArray(); + } + + /** + * Create an instance of {@link GCRCompanySimple } + * + */ + public GCRCompanySimple createGCRCompanySimple() { + return new GCRCompanySimple(); + } + + /** + * Create an instance of {@link CreditsafeAddressV2 } + * + */ + public CreditsafeAddressV2 createCreditsafeAddressV2() { + return new CreditsafeAddressV2(); + } + + /** + * Create an instance of {@link Stuk } + * + */ + public Stuk createStuk() { + return new Stuk(); + } + + /** + * Create an instance of {@link CreditsafeQuartiles } + * + */ + public CreditsafeQuartiles createCreditsafeQuartiles() { + return new CreditsafeQuartiles(); + } + + /** + * Create an instance of {@link LatLonCoordinatesInternationalAddress } + * + */ + public LatLonCoordinatesInternationalAddress createLatLonCoordinatesInternationalAddress() { + return new LatLonCoordinatesInternationalAddress(); + } + + /** + * Create an instance of {@link KadasterLocatieBinnenland } + * + */ + public KadasterLocatieBinnenland createKadasterLocatieBinnenland() { + return new KadasterLocatieBinnenland(); + } + + /** + * Create an instance of {@link GCRTitleArray } + * + */ + public GCRTitleArray createGCRTitleArray() { + return new GCRTitleArray(); + } + + /** + * Create an instance of {@link DNBMarketingPlusResult } + * + */ + public DNBMarketingPlusResult createDNBMarketingPlusResult() { + return new DNBMarketingPlusResult(); + } + + /** + * Create an instance of {@link DNBBusinessReferenceArray } + * + */ + public DNBBusinessReferenceArray createDNBBusinessReferenceArray() { + return new DNBBusinessReferenceArray(); + } + + /** + * Create an instance of {@link GCRJobTitleArray } + * + */ + public GCRJobTitleArray createGCRJobTitleArray() { + return new GCRJobTitleArray(); + } + + /** + * Create an instance of {@link OverzichtOnroerendeZaakArray } + * + */ + public OverzichtOnroerendeZaakArray createOverzichtOnroerendeZaakArray() { + return new OverzichtOnroerendeZaakArray(); + } + + /** + * Create an instance of {@link NbwoWaarde } + * + */ + public NbwoWaarde createNbwoWaarde() { + return new NbwoWaarde(); + } + + /** + * Create an instance of {@link CreditsafeShareHolderArray } + * + */ + public CreditsafeShareHolderArray createCreditsafeShareHolderArray() { + return new CreditsafeShareHolderArray(); + } + + /** + * Create an instance of {@link CreditsafeCompanyBasicInformationV2 } + * + */ + public CreditsafeCompanyBasicInformationV2 createCreditsafeCompanyBasicInformationV2() { + return new CreditsafeCompanyBasicInformationV2(); + } + + /** + * Create an instance of {@link DutchBusinessEstablishmentV2Array } + * + */ + public DutchBusinessEstablishmentV2Array createDutchBusinessEstablishmentV2Array() { + return new DutchBusinessEstablishmentV2Array(); + } + + /** + * Create an instance of {@link GCRCapital } + * + */ + public GCRCapital createGCRCapital() { + return new GCRCapital(); + } + + /** + * Create an instance of {@link CreditsafeEmployeeInformation } + * + */ + public CreditsafeEmployeeInformation createCreditsafeEmployeeInformation() { + return new CreditsafeEmployeeInformation(); + } + + /** + * Create an instance of {@link DutchBusinessLeiBusinessEntity } + * + */ + public DutchBusinessLeiBusinessEntity createDutchBusinessLeiBusinessEntity() { + return new DutchBusinessLeiBusinessEntity(); + } + + /** + * Create an instance of {@link CreditsafeCompanyActivityArray } + * + */ + public CreditsafeCompanyActivityArray createCreditsafeCompanyActivityArray() { + return new CreditsafeCompanyActivityArray(); + } + + /** + * Create an instance of {@link GCRShareHolderArray } + * + */ + public GCRShareHolderArray createGCRShareHolderArray() { + return new GCRShareHolderArray(); + } + + /** + * Create an instance of {@link BusinessReference } + * + */ + public BusinessReference createBusinessReference() { + return new BusinessReference(); + } + + /** + * Create an instance of {@link CreditsafeNlMisc } + * + */ + public CreditsafeNlMisc createCreditsafeNlMisc() { + return new CreditsafeNlMisc(); + } + + /** + * Create an instance of {@link OverzichtOnroerendeZaak } + * + */ + public OverzichtOnroerendeZaak createOverzichtOnroerendeZaak() { + return new OverzichtOnroerendeZaak(); + } + + /** + * Create an instance of {@link DNBMonetaryAmount } + * + */ + public DNBMonetaryAmount createDNBMonetaryAmount() { + return new DNBMonetaryAmount(); + } + + /** + * Create an instance of {@link RiskInsolvency } + * + */ + public RiskInsolvency createRiskInsolvency() { + return new RiskInsolvency(); + } + + /** + * Create an instance of {@link KadasterV2Aanvulling } + * + */ + public KadasterV2Aanvulling createKadasterV2Aanvulling() { + return new KadasterV2Aanvulling(); + } + + /** + * Create an instance of {@link CreditsafeCompanyBasicInformationV2Array } + * + */ + public CreditsafeCompanyBasicInformationV2Array createCreditsafeCompanyBasicInformationV2Array() { + return new CreditsafeCompanyBasicInformationV2Array(); + } + + /** + * Create an instance of {@link GCRManagement } + * + */ + public GCRManagement createGCRManagement() { + return new GCRManagement(); + } + + /** + * Create an instance of {@link CreditsafeCompanyNegativeInformationDETrusteeV2 } + * + */ + public CreditsafeCompanyNegativeInformationDETrusteeV2 createCreditsafeCompanyNegativeInformationDETrusteeV2() { + return new CreditsafeCompanyNegativeInformationDETrusteeV2(); + } + + /** + * Create an instance of {@link KadasterV2KoopsomGegeven } + * + */ + public KadasterV2KoopsomGegeven createKadasterV2KoopsomGegeven() { + return new KadasterV2KoopsomGegeven(); + } + + /** + * Create an instance of {@link RDCoordinatesArray } + * + */ + public RDCoordinatesArray createRDCoordinatesArray() { + return new RDCoordinatesArray(); + } + + /** + * Create an instance of {@link DNBBusinessReferencePagedResult } + * + */ + public DNBBusinessReferencePagedResult createDNBBusinessReferencePagedResult() { + return new DNBBusinessReferencePagedResult(); + } + + /** + * Create an instance of {@link KvkReferencePagedResult } + * + */ + public KvkReferencePagedResult createKvkReferencePagedResult() { + return new KvkReferencePagedResult(); + } + + /** + * Create an instance of {@link KadasterV2OnroerendeZaakFiliatie } + * + */ + public KadasterV2OnroerendeZaakFiliatie createKadasterV2OnroerendeZaakFiliatie() { + return new KadasterV2OnroerendeZaakFiliatie(); + } + + /** + * Create an instance of {@link Persoon } + * + */ + public Persoon createPersoon() { + return new Persoon(); + } + + /** + * Create an instance of {@link CarVWEVersion } + * + */ + public CarVWEVersion createCarVWEVersion() { + return new CarVWEVersion(); + } + + /** + * Create an instance of {@link CreditsafeBeProtestedBill } + * + */ + public CreditsafeBeProtestedBill createCreditsafeBeProtestedBill() { + return new CreditsafeBeProtestedBill(); + } + + /** + * Create an instance of {@link GCRFoundedArray } + * + */ + public GCRFoundedArray createGCRFoundedArray() { + return new GCRFoundedArray(); + } + + /** + * Create an instance of {@link Overzicht } + * + */ + public Overzicht createOverzicht() { + return new Overzicht(); + } + + /** + * Create an instance of {@link AccountV2PagedResult } + * + */ + public AccountV2PagedResult createAccountV2PagedResult() { + return new AccountV2PagedResult(); + } + + /** + * Create an instance of {@link KadasterOverzichtOnroerendeZaak } + * + */ + public KadasterOverzichtOnroerendeZaak createKadasterOverzichtOnroerendeZaak() { + return new KadasterOverzichtOnroerendeZaak(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationV2 } + * + */ + public CreditsafeCompanyAdditionalInformationV2 createCreditsafeCompanyAdditionalInformationV2() { + return new CreditsafeCompanyAdditionalInformationV2(); + } + + /** + * Create an instance of {@link GCRCalamityOther } + * + */ + public GCRCalamityOther createGCRCalamityOther() { + return new GCRCalamityOther(); + } + + /** + * Create an instance of {@link ComplianceBusinessSearchReference } + * + */ + public ComplianceBusinessSearchReference createComplianceBusinessSearchReference() { + return new ComplianceBusinessSearchReference(); + } + + /** + * Create an instance of {@link CreditsafeCompanyIdentificationV2 } + * + */ + public CreditsafeCompanyIdentificationV2 createCreditsafeCompanyIdentificationV2() { + return new CreditsafeCompanyIdentificationV2(); + } + + /** + * Create an instance of {@link DutchBusinessSBICodeArray } + * + */ + public DutchBusinessSBICodeArray createDutchBusinessSBICodeArray() { + return new DutchBusinessSBICodeArray(); + } + + /** + * Create an instance of {@link DutchBusinessUBOInvestigationStatus } + * + */ + public DutchBusinessUBOInvestigationStatus createDutchBusinessUBOInvestigationStatus() { + return new DutchBusinessUBOInvestigationStatus(); + } + + /** + * Create an instance of {@link BusinessDossierPagedResult } + * + */ + public BusinessDossierPagedResult createBusinessDossierPagedResult() { + return new BusinessDossierPagedResult(); + } + + /** + * Create an instance of {@link GCRLiaisonArray } + * + */ + public GCRLiaisonArray createGCRLiaisonArray() { + return new GCRLiaisonArray(); + } + + /** + * Create an instance of {@link OverzichtNietNatuurlijkPersoon } + * + */ + public OverzichtNietNatuurlijkPersoon createOverzichtNietNatuurlijkPersoon() { + return new OverzichtNietNatuurlijkPersoon(); + } + + /** + * Create an instance of {@link KadasterV2RedenVerzoek } + * + */ + public KadasterV2RedenVerzoek createKadasterV2RedenVerzoek() { + return new KadasterV2RedenVerzoek(); + } + + /** + * Create an instance of {@link City } + * + */ + public City createCity() { + return new City(); + } + + /** + * Create an instance of {@link UserV2PagedResult } + * + */ + public UserV2PagedResult createUserV2PagedResult() { + return new UserV2PagedResult(); + } + + /** + * Create an instance of {@link CreditsafeCompanyFinancialStatementV2Array } + * + */ + public CreditsafeCompanyFinancialStatementV2Array createCreditsafeCompanyFinancialStatementV2Array() { + return new CreditsafeCompanyFinancialStatementV2Array(); + } + + /** + * Create an instance of {@link SepaBankAccountData } + * + */ + public SepaBankAccountData createSepaBankAccountData() { + return new SepaBankAccountData(); + } + + /** + * Create an instance of {@link CarVWEPrices } + * + */ + public CarVWEPrices createCarVWEPrices() { + return new CarVWEPrices(); + } + + /** + * Create an instance of {@link MetaValidationDefinition } + * + */ + public MetaValidationDefinition createMetaValidationDefinition() { + return new MetaValidationDefinition(); + } + + /** + * Create an instance of {@link GCRCompanyArray } + * + */ + public GCRCompanyArray createGCRCompanyArray() { + return new GCRCompanyArray(); + } + + /** + * Create an instance of {@link DutchBusinessUBOPerson } + * + */ + public DutchBusinessUBOPerson createDutchBusinessUBOPerson() { + return new DutchBusinessUBOPerson(); + } + + /** + * Create an instance of {@link GCRChamberOfCommerce } + * + */ + public GCRChamberOfCommerce createGCRChamberOfCommerce() { + return new GCRChamberOfCommerce(); + } + + /** + * Create an instance of {@link DNBEnterpriseManagement } + * + */ + public DNBEnterpriseManagement createDNBEnterpriseManagement() { + return new DNBEnterpriseManagement(); + } + + /** + * Create an instance of {@link BusinessDossierSBI } + * + */ + public BusinessDossierSBI createBusinessDossierSBI() { + return new BusinessDossierSBI(); + } + + /** + * Create an instance of {@link DutchBusinessExtractDocumentDataV2 } + * + */ + public DutchBusinessExtractDocumentDataV2 createDutchBusinessExtractDocumentDataV2() { + return new DutchBusinessExtractDocumentDataV2(); + } + + /** + * Create an instance of {@link DutchBusinessIdentifiers } + * + */ + public DutchBusinessIdentifiers createDutchBusinessIdentifiers() { + return new DutchBusinessIdentifiers(); + } + + /** + * Create an instance of {@link DutchBusinessExtractDocumentDataV3 } + * + */ + public DutchBusinessExtractDocumentDataV3 createDutchBusinessExtractDocumentDataV3() { + return new DutchBusinessExtractDocumentDataV3(); + } + + /** + * Create an instance of {@link DutchBusinessLeiAddress } + * + */ + public DutchBusinessLeiAddress createDutchBusinessLeiAddress() { + return new DutchBusinessLeiAddress(); + } + + /** + * Create an instance of {@link DutchBusinessLegalEntity } + * + */ + public DutchBusinessLegalEntity createDutchBusinessLegalEntity() { + return new DutchBusinessLegalEntity(); + } + + /** + * Create an instance of {@link KadasterV2OnroerendeZaakReferenceArray } + * + */ + public KadasterV2OnroerendeZaakReferenceArray createKadasterV2OnroerendeZaakReferenceArray() { + return new KadasterV2OnroerendeZaakReferenceArray(); + } + + /** + * Create an instance of {@link ComplianceDate } + * + */ + public ComplianceDate createComplianceDate() { + return new ComplianceDate(); + } + + /** + * Create an instance of {@link GCRCompanyAnnualAccountArray } + * + */ + public GCRCompanyAnnualAccountArray createGCRCompanyAnnualAccountArray() { + return new GCRCompanyAnnualAccountArray(); + } + + /** + * Create an instance of {@link GraydonCreditReportQuickscan } + * + */ + public GraydonCreditReportQuickscan createGraydonCreditReportQuickscan() { + return new GraydonCreditReportQuickscan(); + } + + /** + * Create an instance of {@link CreditsafeCompanyPagedResult } + * + */ + public CreditsafeCompanyPagedResult createCreditsafeCompanyPagedResult() { + return new CreditsafeCompanyPagedResult(); + } + + /** + * Create an instance of {@link UserCredentials } + * + */ + public UserCredentials createUserCredentials() { + return new UserCredentials(); + } + + /** + * Create an instance of {@link BerichtObjectDocumentResultaat } + * + */ + public BerichtObjectDocumentResultaat createBerichtObjectDocumentResultaat() { + return new BerichtObjectDocumentResultaat(); + } + + /** + * Create an instance of {@link DNBBusinessReferenceV2PagedResult } + * + */ + public DNBBusinessReferenceV2PagedResult createDNBBusinessReferenceV2PagedResult() { + return new DNBBusinessReferenceV2PagedResult(); + } + + /** + * Create an instance of {@link CreditsafeCompanyOtherInformationV2 } + * + */ + public CreditsafeCompanyOtherInformationV2 createCreditsafeCompanyOtherInformationV2() { + return new CreditsafeCompanyOtherInformationV2(); + } + + /** + * Create an instance of {@link CreditsafePreviousDirector } + * + */ + public CreditsafePreviousDirector createCreditsafePreviousDirector() { + return new CreditsafePreviousDirector(); + } + + /** + * Create an instance of {@link PersoonV2 } + * + */ + public PersoonV2 createPersoonV2() { + return new PersoonV2(); + } + + /** + * Create an instance of {@link AantekeningenKadastraalObject } + * + */ + public AantekeningenKadastraalObject createAantekeningenKadastraalObject() { + return new AantekeningenKadastraalObject(); + } + + /** + * Create an instance of {@link InsolvencyAffectedCompanyArray } + * + */ + public InsolvencyAffectedCompanyArray createInsolvencyAffectedCompanyArray() { + return new InsolvencyAffectedCompanyArray(); + } + + /** + * Create an instance of {@link CreditsafeCompanyBankerV2 } + * + */ + public CreditsafeCompanyBankerV2 createCreditsafeCompanyBankerV2() { + return new CreditsafeCompanyBankerV2(); + } + + /** + * Create an instance of {@link BusinessDossierV3 } + * + */ + public BusinessDossierV3 createBusinessDossierV3() { + return new BusinessDossierV3(); + } + + /** + * Create an instance of {@link CreditsafeOtherFinancials } + * + */ + public CreditsafeOtherFinancials createCreditsafeOtherFinancials() { + return new CreditsafeOtherFinancials(); + } + + /** + * Create an instance of {@link BusinessDossierV2 } + * + */ + public BusinessDossierV2 createBusinessDossierV2() { + return new BusinessDossierV2(); + } + + /** + * Create an instance of {@link CreditsafeNlCourtDataFacts } + * + */ + public CreditsafeNlCourtDataFacts createCreditsafeNlCourtDataFacts() { + return new CreditsafeNlCourtDataFacts(); + } + + /** + * Create an instance of {@link KadasterV2NatuurlijkPersoonArray } + * + */ + public KadasterV2NatuurlijkPersoonArray createKadasterV2NatuurlijkPersoonArray() { + return new KadasterV2NatuurlijkPersoonArray(); + } + + /** + * Create an instance of {@link DutchVehicleRecall } + * + */ + public DutchVehicleRecall createDutchVehicleRecall() { + return new DutchVehicleRecall(); + } + + /** + * Create an instance of {@link KadasterV2LandinrichtingsRente } + * + */ + public KadasterV2LandinrichtingsRente createKadasterV2LandinrichtingsRente() { + return new KadasterV2LandinrichtingsRente(); + } + + /** + * Create an instance of {@link GCRJobTitle } + * + */ + public GCRJobTitle createGCRJobTitle() { + return new GCRJobTitle(); + } + + /** + * Create an instance of {@link DutchVehiclePurchaseReference } + * + */ + public DutchVehiclePurchaseReference createDutchVehiclePurchaseReference() { + return new DutchVehiclePurchaseReference(); + } + + /** + * Create an instance of {@link MetaMethodReferenceArray } + * + */ + public MetaMethodReferenceArray createMetaMethodReferenceArray() { + return new MetaMethodReferenceArray(); + } + + /** + * Create an instance of {@link DutchBusinessUBOOrganizationNode } + * + */ + public DutchBusinessUBOOrganizationNode createDutchBusinessUBOOrganizationNode() { + return new DutchBusinessUBOOrganizationNode(); + } + + /** + * Create an instance of {@link GCRNumberOfEmployeesArray } + * + */ + public GCRNumberOfEmployeesArray createGCRNumberOfEmployeesArray() { + return new GCRNumberOfEmployeesArray(); + } + + /** + * Create an instance of {@link KadasterV2KoopsomGegevenArray } + * + */ + public KadasterV2KoopsomGegevenArray createKadasterV2KoopsomGegevenArray() { + return new KadasterV2KoopsomGegevenArray(); + } + + /** + * Create an instance of {@link KadastraleAanduidingArray } + * + */ + public KadastraleAanduidingArray createKadastraleAanduidingArray() { + return new KadastraleAanduidingArray(); + } + + /** + * Create an instance of {@link GCRCompanySimpleArray } + * + */ + public GCRCompanySimpleArray createGCRCompanySimpleArray() { + return new GCRCompanySimpleArray(); + } + + /** + * Create an instance of {@link GCRPaymentInformationArray } + * + */ + public GCRPaymentInformationArray createGCRPaymentInformationArray() { + return new GCRPaymentInformationArray(); + } + + /** + * Create an instance of {@link GCRShareHolder } + * + */ + public GCRShareHolder createGCRShareHolder() { + return new GCRShareHolder(); + } + + /** + * Create an instance of {@link KadasterLocatieBuitenland } + * + */ + public KadasterLocatieBuitenland createKadasterLocatieBuitenland() { + return new KadasterLocatieBuitenland(); + } + + /** + * Create an instance of {@link DutchVehicleBodyApproval } + * + */ + public DutchVehicleBodyApproval createDutchVehicleBodyApproval() { + return new DutchVehicleBodyApproval(); + } + + /** + * Create an instance of {@link CreditsafeCompanyCreditRatingV2 } + * + */ + public CreditsafeCompanyCreditRatingV2 createCreditsafeCompanyCreditRatingV2() { + return new CreditsafeCompanyCreditRatingV2(); + } + + /** + * Create an instance of {@link CreditsafeBankerArray } + * + */ + public CreditsafeBankerArray createCreditsafeBankerArray() { + return new CreditsafeBankerArray(); + } + + /** + * Create an instance of {@link CarDataV3Result } + * + */ + public CarDataV3Result createCarDataV3Result() { + return new CarDataV3Result(); + } + + /** + * Create an instance of {@link GCRRatingHistory } + * + */ + public GCRRatingHistory createGCRRatingHistory() { + return new GCRRatingHistory(); + } + + /** + * Create an instance of {@link BusinessDossierV3PagedResult } + * + */ + public BusinessDossierV3PagedResult createBusinessDossierV3PagedResult() { + return new BusinessDossierV3PagedResult(); + } + + /** + * Create an instance of {@link KvkUpdateReferenceArray } + * + */ + public KvkUpdateReferenceArray createKvkUpdateReferenceArray() { + return new KvkUpdateReferenceArray(); + } + + /** + * Create an instance of {@link DutchBusinessLeiLegalForm } + * + */ + public DutchBusinessLeiLegalForm createDutchBusinessLeiLegalForm() { + return new DutchBusinessLeiLegalForm(); + } + + /** + * Create an instance of {@link GCRCalamity } + * + */ + public GCRCalamity createGCRCalamity() { + return new GCRCalamity(); + } + + /** + * Create an instance of {@link PersoonArray } + * + */ + public PersoonArray createPersoonArray() { + return new PersoonArray(); + } + + /** + * Create an instance of {@link CreditsafeCompanyCreditRatingV2Array } + * + */ + public CreditsafeCompanyCreditRatingV2Array createCreditsafeCompanyCreditRatingV2Array() { + return new CreditsafeCompanyCreditRatingV2Array(); + } + + /** + * Create an instance of {@link CreditsafeCompanyContactInformationV2Array } + * + */ + public CreditsafeCompanyContactInformationV2Array createCreditsafeCompanyContactInformationV2Array() { + return new CreditsafeCompanyContactInformationV2Array(); + } + + /** + * Create an instance of {@link RangeAddressPagedResult } + * + */ + public RangeAddressPagedResult createRangeAddressPagedResult() { + return new RangeAddressPagedResult(); + } + + /** + * Create an instance of {@link CreditsafeBeNSSODetailArray } + * + */ + public CreditsafeBeNSSODetailArray createCreditsafeBeNSSODetailArray() { + return new CreditsafeBeNSSODetailArray(); + } + + /** + * Create an instance of {@link CreditsafeSearchCriteria } + * + */ + public CreditsafeSearchCriteria createCreditsafeSearchCriteria() { + return new CreditsafeSearchCriteria(); + } + + /** + * Create an instance of {@link SessionArray } + * + */ + public SessionArray createSessionArray() { + return new SessionArray(); + } + + /** + * Create an instance of {@link DutchBusinessEstablishmentReferencePagedResult } + * + */ + public DutchBusinessEstablishmentReferencePagedResult createDutchBusinessEstablishmentReferencePagedResult() { + return new DutchBusinessEstablishmentReferencePagedResult(); + } + + /** + * Create an instance of {@link NbwoKenmerkenModelResultaat } + * + */ + public NbwoKenmerkenModelResultaat createNbwoKenmerkenModelResultaat() { + return new NbwoKenmerkenModelResultaat(); + } + + /** + * Create an instance of {@link KadasterHypothecairBerichtObject } + * + */ + public KadasterHypothecairBerichtObject createKadasterHypothecairBerichtObject() { + return new KadasterHypothecairBerichtObject(); + } + + /** + * Create an instance of {@link CarVWEVersionPagedResult } + * + */ + public CarVWEVersionPagedResult createCarVWEVersionPagedResult() { + return new CarVWEVersionPagedResult(); + } + + /** + * Create an instance of {@link DNBMarketingPlus } + * + */ + public DNBMarketingPlus createDNBMarketingPlus() { + return new DNBMarketingPlus(); + } + + /** + * Create an instance of {@link GCRCreditAdviceMother } + * + */ + public GCRCreditAdviceMother createGCRCreditAdviceMother() { + return new GCRCreditAdviceMother(); + } + + /** + * Create an instance of {@link PerceelSearchPartsPagedResult } + * + */ + public PerceelSearchPartsPagedResult createPerceelSearchPartsPagedResult() { + return new PerceelSearchPartsPagedResult(); + } + + /** + * Create an instance of {@link CreditsafeCompanyCompanyV2Array } + * + */ + public CreditsafeCompanyCompanyV2Array createCreditsafeCompanyCompanyV2Array() { + return new CreditsafeCompanyCompanyV2Array(); + } + + /** + * Create an instance of {@link GCRFinancialDetailValue } + * + */ + public GCRFinancialDetailValue createGCRFinancialDetailValue() { + return new GCRFinancialDetailValue(); + } + + /** + * Create an instance of {@link BelgianBusinessLegalRepresentative } + * + */ + public BelgianBusinessLegalRepresentative createBelgianBusinessLegalRepresentative() { + return new BelgianBusinessLegalRepresentative(); + } + + /** + * Create an instance of {@link KadasterPersoonLijst } + * + */ + public KadasterPersoonLijst createKadasterPersoonLijst() { + return new KadasterPersoonLijst(); + } + + /** + * Create an instance of {@link RiskLegalRestraintAdministrator } + * + */ + public RiskLegalRestraintAdministrator createRiskLegalRestraintAdministrator() { + return new RiskLegalRestraintAdministrator(); + } + + /** + * Create an instance of {@link LocatieBuitenland } + * + */ + public LocatieBuitenland createLocatieBuitenland() { + return new LocatieBuitenland(); + } + + /** + * Create an instance of {@link RiskLegalRestraintPerson } + * + */ + public RiskLegalRestraintPerson createRiskLegalRestraintPerson() { + return new RiskLegalRestraintPerson(); + } + + /** + * Create an instance of {@link GCRRatio } + * + */ + public GCRRatio createGCRRatio() { + return new GCRRatio(); + } + + /** + * Create an instance of {@link GCRSpecialCompanyInformation } + * + */ + public GCRSpecialCompanyInformation createGCRSpecialCompanyInformation() { + return new GCRSpecialCompanyInformation(); + } + + /** + * Create an instance of {@link BelgianBusinessDate } + * + */ + public BelgianBusinessDate createBelgianBusinessDate() { + return new BelgianBusinessDate(); + } + + /** + * Create an instance of {@link DutchVehicleEnvironment } + * + */ + public DutchVehicleEnvironment createDutchVehicleEnvironment() { + return new DutchVehicleEnvironment(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array createCreditsafeCompanyAdditionalInformationNLFinancialItemV2Array() { + return new CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array(); + } + + /** + * Create an instance of {@link Account } + * + */ + public Account createAccount() { + return new Account(); + } + + /** + * Create an instance of {@link KadasterLocatie } + * + */ + public KadasterLocatie createKadasterLocatie() { + return new KadasterLocatie(); + } + + /** + * Create an instance of {@link NbwoWaardeVerdelingArray } + * + */ + public NbwoWaardeVerdelingArray createNbwoWaardeVerdelingArray() { + return new NbwoWaardeVerdelingArray(); + } + + /** + * Create an instance of {@link CreditsafeCompanyContactInformationV2 } + * + */ + public CreditsafeCompanyContactInformationV2 createCreditsafeCompanyContactInformationV2() { + return new CreditsafeCompanyContactInformationV2(); + } + + /** + * Create an instance of {@link BerichtObjectDocument } + * + */ + public BerichtObjectDocument createBerichtObjectDocument() { + return new BerichtObjectDocument(); + } + + /** + * Create an instance of {@link GCRImportExport } + * + */ + public GCRImportExport createGCRImportExport() { + return new GCRImportExport(); + } + + /** + * Create an instance of {@link RouteInfo } + * + */ + public RouteInfo createRouteInfo() { + return new RouteInfo(); + } + + /** + * Create an instance of {@link DutchBusinessInsolvencyPublicationArray } + * + */ + public DutchBusinessInsolvencyPublicationArray createDutchBusinessInsolvencyPublicationArray() { + return new DutchBusinessInsolvencyPublicationArray(); + } + + /** + * Create an instance of {@link DutchBusinessUBOPayment } + * + */ + public DutchBusinessUBOPayment createDutchBusinessUBOPayment() { + return new DutchBusinessUBOPayment(); + } + + /** + * Create an instance of {@link CreditsafeCompanyShareHolderV2 } + * + */ + public CreditsafeCompanyShareHolderV2 createCreditsafeCompanyShareHolderV2() { + return new CreditsafeCompanyShareHolderV2(); + } + + /** + * Create an instance of {@link KadasterV2VerzoekArray } + * + */ + public KadasterV2VerzoekArray createKadasterV2VerzoekArray() { + return new KadasterV2VerzoekArray(); + } + + /** + * Create an instance of {@link DutchVehicleReference } + * + */ + public DutchVehicleReference createDutchVehicleReference() { + return new DutchVehicleReference(); + } + + /** + * Create an instance of {@link ComplianceAddressReference } + * + */ + public ComplianceAddressReference createComplianceAddressReference() { + return new ComplianceAddressReference(); + } + + /** + * Create an instance of {@link CreditsafeCompanyFinancialStatementV2 } + * + */ + public CreditsafeCompanyFinancialStatementV2 createCreditsafeCompanyFinancialStatementV2() { + return new CreditsafeCompanyFinancialStatementV2(); + } + + /** + * Create an instance of {@link CreditsafeValueV2Array } + * + */ + public CreditsafeValueV2Array createCreditsafeValueV2Array() { + return new CreditsafeValueV2Array(); + } + + /** + * Create an instance of {@link KadasterV2Mandeligheid } + * + */ + public KadasterV2Mandeligheid createKadasterV2Mandeligheid() { + return new KadasterV2Mandeligheid(); + } + + /** + * Create an instance of {@link DutchBusinessUBOPersonArray } + * + */ + public DutchBusinessUBOPersonArray createDutchBusinessUBOPersonArray() { + return new DutchBusinessUBOPersonArray(); + } + + /** + * Create an instance of {@link DutchBusinessMoneyV3 } + * + */ + public DutchBusinessMoneyV3 createDutchBusinessMoneyV3() { + return new DutchBusinessMoneyV3(); + } + + /** + * Create an instance of {@link DutchBusinessMoneyV2 } + * + */ + public DutchBusinessMoneyV2 createDutchBusinessMoneyV2() { + return new DutchBusinessMoneyV2(); + } + + /** + * Create an instance of {@link DutchBusinessSbiCodeV2Array } + * + */ + public DutchBusinessSbiCodeV2Array createDutchBusinessSbiCodeV2Array() { + return new DutchBusinessSbiCodeV2Array(); + } + + /** + * Create an instance of {@link CreditsafeAddressV2Array } + * + */ + public CreditsafeAddressV2Array createCreditsafeAddressV2Array() { + return new CreditsafeAddressV2Array(); + } + + /** + * Create an instance of {@link CarBody } + * + */ + public CarBody createCarBody() { + return new CarBody(); + } + + /** + * Create an instance of {@link CreditsafeCompanyOtherFinancialsV2 } + * + */ + public CreditsafeCompanyOtherFinancialsV2 createCreditsafeCompanyOtherFinancialsV2() { + return new CreditsafeCompanyOtherFinancialsV2(); + } + + /** + * Create an instance of {@link CreditsafeStreetAddressWithTelephone } + * + */ + public CreditsafeStreetAddressWithTelephone createCreditsafeStreetAddressWithTelephone() { + return new CreditsafeStreetAddressWithTelephone(); + } + + /** + * Create an instance of {@link GCRCreditAdvice } + * + */ + public GCRCreditAdvice createGCRCreditAdvice() { + return new GCRCreditAdvice(); + } + + /** + * Create an instance of {@link InsolvencyAddressArray } + * + */ + public InsolvencyAddressArray createInsolvencyAddressArray() { + return new InsolvencyAddressArray(); + } + + /** + * Create an instance of {@link MetaServiceReferenceArray } + * + */ + public MetaServiceReferenceArray createMetaServiceReferenceArray() { + return new MetaServiceReferenceArray(); + } + + /** + * Create an instance of {@link CreditsafeCompanyShareCapitalStructureV2Array } + * + */ + public CreditsafeCompanyShareCapitalStructureV2Array createCreditsafeCompanyShareCapitalStructureV2Array() { + return new CreditsafeCompanyShareCapitalStructureV2Array(); + } + + /** + * Create an instance of {@link KadastraleAanduidingLijst } + * + */ + public KadastraleAanduidingLijst createKadastraleAanduidingLijst() { + return new KadastraleAanduidingLijst(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array createCreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array() { + return new CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array(); + } + + /** + * Create an instance of {@link GCRCalamityOtherArray } + * + */ + public GCRCalamityOtherArray createGCRCalamityOtherArray() { + return new GCRCalamityOtherArray(); + } + + /** + * Create an instance of {@link InsolvencyReport } + * + */ + public InsolvencyReport createInsolvencyReport() { + return new InsolvencyReport(); + } + + /** + * Create an instance of {@link KadasterV2Koopsom } + * + */ + public KadasterV2Koopsom createKadasterV2Koopsom() { + return new KadasterV2Koopsom(); + } + + /** + * Create an instance of {@link BovagMember } + * + */ + public BovagMember createBovagMember() { + return new BovagMember(); + } + + /** + * Create an instance of {@link UserGroupPagedResult } + * + */ + public UserGroupPagedResult createUserGroupPagedResult() { + return new UserGroupPagedResult(); + } + + /** + * Create an instance of {@link BovagDepartmentArray } + * + */ + public BovagDepartmentArray createBovagDepartmentArray() { + return new BovagDepartmentArray(); + } + + /** + * Create an instance of {@link RiskCompany } + * + */ + public RiskCompany createRiskCompany() { + return new RiskCompany(); + } + + /** + * Create an instance of {@link KadasterV2AcgIdentificatie } + * + */ + public KadasterV2AcgIdentificatie createKadasterV2AcgIdentificatie() { + return new KadasterV2AcgIdentificatie(); + } + + /** + * Create an instance of {@link BusinessReferencePagedResult } + * + */ + public BusinessReferencePagedResult createBusinessReferencePagedResult() { + return new BusinessReferencePagedResult(); + } + + /** + * Create an instance of {@link CarVWEModel } + * + */ + public CarVWEModel createCarVWEModel() { + return new CarVWEModel(); + } + + /** + * Create an instance of {@link KadasterOverzichtNatuurlijkPersoon } + * + */ + public KadasterOverzichtNatuurlijkPersoon createKadasterOverzichtNatuurlijkPersoon() { + return new KadasterOverzichtNatuurlijkPersoon(); + } + + /** + * Create an instance of {@link KadasterV2OnroerendeZaakFiliatieArray } + * + */ + public KadasterV2OnroerendeZaakFiliatieArray createKadasterV2OnroerendeZaakFiliatieArray() { + return new KadasterV2OnroerendeZaakFiliatieArray(); + } + + /** + * Create an instance of {@link GCRCompanyManagement } + * + */ + public GCRCompanyManagement createGCRCompanyManagement() { + return new GCRCompanyManagement(); + } + + /** + * Create an instance of {@link CreditsafePersonDirectorsV2Array } + * + */ + public CreditsafePersonDirectorsV2Array createCreditsafePersonDirectorsV2Array() { + return new CreditsafePersonDirectorsV2Array(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 } + * + */ + public CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 createCreditsafeCompanyAdditionalInformationDEAdditionalInformationV2() { + return new CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2(); + } + + /** + * Create an instance of {@link User } + * + */ + public User createUser() { + return new User(); + } + + /** + * Create an instance of {@link PerceelDetails } + * + */ + public PerceelDetails createPerceelDetails() { + return new PerceelDetails(); + } + + /** + * Create an instance of {@link KadasterV2AangebodenStuk } + * + */ + public KadasterV2AangebodenStuk createKadasterV2AangebodenStuk() { + return new KadasterV2AangebodenStuk(); + } + + /** + * Create an instance of {@link CarVWEOptionPackage } + * + */ + public CarVWEOptionPackage createCarVWEOptionPackage() { + return new CarVWEOptionPackage(); + } + + /** + * Create an instance of {@link GraydonCreditReportCompanyLiaisons } + * + */ + public GraydonCreditReportCompanyLiaisons createGraydonCreditReportCompanyLiaisons() { + return new GraydonCreditReportCompanyLiaisons(); + } + + /** + * Create an instance of {@link KadasterCoordinates } + * + */ + public KadasterCoordinates createKadasterCoordinates() { + return new KadasterCoordinates(); + } + + /** + * Create an instance of {@link CreditsafeCompanyAdditionalInformationDEOwnerV2Array } + * + */ + public CreditsafeCompanyAdditionalInformationDEOwnerV2Array createCreditsafeCompanyAdditionalInformationDEOwnerV2Array() { + return new CreditsafeCompanyAdditionalInformationDEOwnerV2Array(); + } + + /** + * Create an instance of {@link GCRFiling } + * + */ + public GCRFiling createGCRFiling() { + return new GCRFiling(); + } + + /** + * Create an instance of {@link RechtArray } + * + */ + public RechtArray createRechtArray() { + return new RechtArray(); + } + + /** + * Create an instance of {@link KadastraalPerceel } + * + */ + public KadastraalPerceel createKadastraalPerceel() { + return new KadastraalPerceel(); + } + + /** + * Create an instance of {@link GCRBankAndInsurerDataArray } + * + */ + public GCRBankAndInsurerDataArray createGCRBankAndInsurerDataArray() { + return new GCRBankAndInsurerDataArray(); + } + + /** + * Create an instance of {@link GCRCompanyItselfAlarm } + * + */ + public GCRCompanyItselfAlarm createGCRCompanyItselfAlarm() { + return new GCRCompanyItselfAlarm(); + } + + /** + * Create an instance of {@link GraydonCreditReportAlarm } + * + */ + public GraydonCreditReportAlarm createGraydonCreditReportAlarm() { + return new GraydonCreditReportAlarm(); + } + + /** + * Create an instance of {@link GCRParticipationArray } + * + */ + public GCRParticipationArray createGCRParticipationArray() { + return new GCRParticipationArray(); + } + + /** + * Create an instance of {@link CreditsafeLtdCompanyIdentification } + * + */ + public CreditsafeLtdCompanyIdentification createCreditsafeLtdCompanyIdentification() { + return new CreditsafeLtdCompanyIdentification(); + } + + /** + * Create an instance of {@link CreditsafeCompanySummaryV2 } + * + */ + public CreditsafeCompanySummaryV2 createCreditsafeCompanySummaryV2() { + return new CreditsafeCompanySummaryV2(); + } + + /** + * Create an instance of {@link RiskInsolvencyCurator } + * + */ + public RiskInsolvencyCurator createRiskInsolvencyCurator() { + return new RiskInsolvencyCurator(); + } + + /** + * Create an instance of {@link CreditsafeLtdFinancialStatementArray } + * + */ + public CreditsafeLtdFinancialStatementArray createCreditsafeLtdFinancialStatementArray() { + return new CreditsafeLtdFinancialStatementArray(); + } + + /** + * Create an instance of {@link DutchBusinessReferenceArray } + * + */ + public DutchBusinessReferenceArray createDutchBusinessReferenceArray() { + return new DutchBusinessReferenceArray(); + } + + /** + * Create an instance of {@link KadasterV2AdresLocatieArray } + * + */ + public KadasterV2AdresLocatieArray createKadasterV2AdresLocatieArray() { + return new KadasterV2AdresLocatieArray(); + } + + /** + * Create an instance of {@link GCRFirstDirector } + * + */ + public GCRFirstDirector createGCRFirstDirector() { + return new GCRFirstDirector(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeMonitorAddCompanyResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeMonitorAddCompanyResponse") + public JAXBElement createCreditsafeMonitorAddCompanyResponse(CreditsafeMonitorAddCompanyResponseType value) { + return new JAXBElement(_CreditsafeMonitorAddCompanyResponse_QNAME, CreditsafeMonitorAddCompanyResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetLegalExtractDocumentDataV3ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetLegalExtractDocumentDataV3Response") + public JAXBElement createDutchBusinessGetLegalExtractDocumentDataV3Response(DutchBusinessGetLegalExtractDocumentDataV3ResponseType value) { + return new JAXBElement(_DutchBusinessGetLegalExtractDocumentDataV3Response_QNAME, DutchBusinessGetLegalExtractDocumentDataV3ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NbwoEstimateValueResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "nbwoEstimateValueResponse") + public JAXBElement createNbwoEstimateValueResponse(NbwoEstimateValueResponseType value) { + return new JAXBElement(_NbwoEstimateValueResponse_QNAME, NbwoEstimateValueResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPostcodeResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPostcodeResponse") + public JAXBElement createKadasterUittrekselKadastraleKaartPostcodeResponse(KadasterUittrekselKadastraleKaartPostcodeResponseType value) { + return new JAXBElement(_KadasterUittrekselKadastraleKaartPostcodeResponse_QNAME, KadasterUittrekselKadastraleKaartPostcodeResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPostcodeV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPostcodeV2Response") + public JAXBElement createKadasterUittrekselKadastraleKaartPostcodeV2Response(KadasterUittrekselKadastraleKaartPostcodeV2ResponseType value) { + return new JAXBElement(_KadasterUittrekselKadastraleKaartPostcodeV2Response_QNAME, KadasterUittrekselKadastraleKaartPostcodeV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BovagGetMemberByBovagIdResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "bovagGetMemberByBovagIdResponse") + public JAXBElement createBovagGetMemberByBovagIdResponse(BovagGetMemberByBovagIdResponseType value) { + return new JAXBElement(_BovagGetMemberByBovagIdResponse_QNAME, BovagGetMemberByBovagIdResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataV2") + public JAXBElement createCarRDWCarDataV2(CarRDWCarDataV2RequestType value) { + return new JAXBElement(_CarRDWCarDataV2_QNAME, CarRDWCarDataV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataV3RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataV3") + public JAXBElement createCarRDWCarDataV3(CarRDWCarDataV3RequestType value) { + return new JAXBElement(_CarRDWCarDataV3_QNAME, CarRDWCarDataV3RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetLegalEntityRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetLegalEntity") + public JAXBElement createDutchBusinessGetLegalEntity(DutchBusinessGetLegalEntityRequestType value) { + return new JAXBElement(_DutchBusinessGetLegalEntity_QNAME, DutchBusinessGetLegalEntityRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressProvinceListDistrictsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressProvinceListDistrictsResponse") + public JAXBElement createAddressProvinceListDistrictsResponse(AddressProvinceListDistrictsResponseType value) { + return new JAXBElement(_AddressProvinceListDistrictsResponse_QNAME, AddressProvinceListDistrictsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataResponse") + public JAXBElement createCarRDWCarDataResponse(CarRDWCarDataResponseType value) { + return new JAXBElement(_CarRDWCarDataResponse_QNAME, CarRDWCarDataResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateRemoveDossierRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateRemoveDossier") + public JAXBElement createBusinessUpdateRemoveDossier(BusinessUpdateRemoveDossierRequestType value) { + return new JAXBElement(_BusinessUpdateRemoveDossier_QNAME, BusinessUpdateRemoveDossierRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOPickupInvestigationRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOPickupInvestigation") + public JAXBElement createDutchBusinessUBOPickupInvestigation(DutchBusinessUBOPickupInvestigationRequestType value) { + return new JAXBElement(_DutchBusinessUBOPickupInvestigation_QNAME, DutchBusinessUBOPickupInvestigationRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationLatLonToPostcodeResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationLatLonToPostcodeResponse") + public JAXBElement createGeoLocationLatLonToPostcodeResponse(GeoLocationLatLonToPostcodeResponseType value) { + return new JAXBElement(_GeoLocationLatLonToPostcodeResponse_QNAME, GeoLocationLatLonToPostcodeResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractDocumentDataResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractDocumentDataResponse") + public JAXBElement createDutchBusinessGetExtractDocumentDataResponse(DutchBusinessGetExtractDocumentDataResponseType value) { + return new JAXBElement(_DutchBusinessGetExtractDocumentDataResponse_QNAME, DutchBusinessGetExtractDocumentDataResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetDossierHistoryResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetDossierHistoryResponse") + public JAXBElement createDutchBusinessGetDossierHistoryResponse(DutchBusinessGetDossierHistoryResponseType value) { + return new JAXBElement(_DutchBusinessGetDossierHistoryResponse_QNAME, DutchBusinessGetDossierHistoryResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationPostcodeCoordinatesLatLonResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationPostcodeCoordinatesLatLonResponse") + public JAXBElement createGeoLocationPostcodeCoordinatesLatLonResponse(GeoLocationPostcodeCoordinatesLatLonResponseType value) { + return new JAXBElement(_GeoLocationPostcodeCoordinatesLatLonResponse_QNAME, GeoLocationPostcodeCoordinatesLatLonResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkGetDossierRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkGetDossier") + public JAXBElement createKvkGetDossier(KvkGetDossierRequestType value) { + return new JAXBElement(_KvkGetDossier_QNAME, KvkGetDossierRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SepaConvertBankAccountNumberResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaConvertBankAccountNumberResponse") + public JAXBElement createSepaConvertBankAccountNumberResponse(SepaConvertBankAccountNumberResponseType value) { + return new JAXBElement(_SepaConvertBankAccountNumberResponse_QNAME, SepaConvertBankAccountNumberResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKadastraleKaartPostcodeV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKadastraleKaartPostcodeV2Response") + public JAXBElement createKadasterKadastraleKaartPostcodeV2Response(KadasterKadastraleKaartPostcodeV2ResponseType value) { + return new JAXBElement(_KadasterKadastraleKaartPostcodeV2Response_QNAME, KadasterKadastraleKaartPostcodeV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataBPV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataBPV2Response") + public JAXBElement createCarRDWCarDataBPV2Response(CarRDWCarDataBPV2ResponseType value) { + return new JAXBElement(_CarRDWCarDataBPV2Response_QNAME, CarRDWCarDataBPV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressCityListNeighborhoodsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressCityListNeighborhoodsResponse") + public JAXBElement createAddressCityListNeighborhoodsResponse(AddressCityListNeighborhoodsResponseType value) { + return new JAXBElement(_AddressCityListNeighborhoodsResponse_QNAME, AddressCityListNeighborhoodsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateGetChangedDossiersRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateGetChangedDossiers") + public JAXBElement createKvkUpdateGetChangedDossiers(KvkUpdateGetChangedDossiersRequestType value) { + return new JAXBElement(_KvkUpdateGetChangedDossiers_QNAME, KvkUpdateGetChangedDossiersRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeGetReportFullResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeGetReportFullResponse") + public JAXBElement createCreditsafeGetReportFullResponse(CreditsafeGetReportFullResponseType value) { + return new JAXBElement(_CreditsafeGetReportFullResponse_QNAME, CreditsafeGetReportFullResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataPriceRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataPrice") + public JAXBElement createCarRDWCarDataPrice(CarRDWCarDataPriceRequestType value) { + return new JAXBElement(_CarRDWCarDataPrice_QNAME, CarRDWCarDataPriceRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchSelectionSimpleRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchSelectionSimple") + public JAXBElement createDutchBusinessSearchSelectionSimple(DutchBusinessSearchSelectionSimpleRequestType value) { + return new JAXBElement(_DutchBusinessSearchSelectionSimple_QNAME, DutchBusinessSearchSelectionSimpleRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetSBIDescriptionRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetSBIDescription") + public JAXBElement createDutchBusinessGetSBIDescription(DutchBusinessGetSBIDescriptionRequestType value) { + return new JAXBElement(_DutchBusinessGetSBIDescription_QNAME, DutchBusinessGetSBIDescriptionRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerRDDescriptionCoordinatesRDResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerRDDescriptionCoordinatesRDResponse") + public JAXBElement createRoutePlannerRDDescriptionCoordinatesRDResponse(RoutePlannerRDDescriptionCoordinatesRDResponseType value) { + return new JAXBElement(_RoutePlannerRDDescriptionCoordinatesRDResponse_QNAME, RoutePlannerRDDescriptionCoordinatesRDResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeGetReportFullRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeGetReportFull") + public JAXBElement createCreditsafeGetReportFull(CreditsafeGetReportFullRequestType value) { + return new JAXBElement(_CreditsafeGetReportFull_QNAME, CreditsafeGetReportFullRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryDocumentDataV3ByDossier") + public JAXBElement createDutchBusinessGetExtractHistoryDocumentDataV3ByDossier(DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType value) { + return new JAXBElement(_DutchBusinessGetExtractHistoryDocumentDataV3ByDossier_QNAME, DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOPickupInvestigationResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOPickupInvestigationResponse") + public JAXBElement createDutchBusinessUBOPickupInvestigationResponse(DutchBusinessUBOPickupInvestigationResponseType value) { + return new JAXBElement(_DutchBusinessUBOPickupInvestigationResponse_QNAME, DutchBusinessUBOPickupInvestigationResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerEUDescriptionCoordinatesLatLonRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerEUDescriptionCoordinatesLatLon") + public JAXBElement createRoutePlannerEUDescriptionCoordinatesLatLon(RoutePlannerEUDescriptionCoordinatesLatLonRequestType value) { + return new JAXBElement(_RoutePlannerEUDescriptionCoordinatesLatLon_QNAME, RoutePlannerEUDescriptionCoordinatesLatLonRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountViewBalanceResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountViewBalanceResponse") + public JAXBElement createAccountViewBalanceResponse(AccountViewBalanceResponseType value) { + return new JAXBElement(_AccountViewBalanceResponse_QNAME, AccountViewBalanceResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchPostcodeResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchPostcodeResponse") + public JAXBElement createBusinessSearchPostcodeResponse(BusinessSearchPostcodeResponseType value) { + return new JAXBElement(_BusinessSearchPostcodeResponse_QNAME, BusinessSearchPostcodeResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPerceelV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPerceelV2Response") + public JAXBElement createKadasterHypothecairBerichtPerceelV2Response(KadasterHypothecairBerichtPerceelV2ResponseType value) { + return new JAXBElement(_KadasterHypothecairBerichtPerceelV2Response_QNAME, KadasterHypothecairBerichtPerceelV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionShortestRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionShortest") + public JAXBElement createRoutePlannerDescriptionShortest(RoutePlannerDescriptionShortestRequestType value) { + return new JAXBElement(_RoutePlannerDescriptionShortest_QNAME, RoutePlannerDescriptionShortestRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetKadastraalBerichtObjectByAdresRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetKadastraalBerichtObjectByAdres") + public JAXBElement createKadasterV2GetKadastraalBerichtObjectByAdres(KadasterV2GetKadastraalBerichtObjectByAdresRequestType value) { + return new JAXBElement(_KadasterV2GetKadastraalBerichtObjectByAdres_QNAME, KadasterV2GetKadastraalBerichtObjectByAdresRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressPerceelPhraseSearchRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressPerceelPhraseSearch") + public JAXBElement createAddressPerceelPhraseSearch(AddressPerceelPhraseSearchRequestType value) { + return new JAXBElement(_AddressPerceelPhraseSearch_QNAME, AddressPerceelPhraseSearchRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksAddressSearchRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksAddressSearch") + public JAXBElement createAddressReeksAddressSearch(AddressReeksAddressSearchRequestType value) { + return new JAXBElement(_AddressReeksAddressSearch_QNAME, AddressReeksAddressSearchRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressNeighborhoodNameResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressNeighborhoodNameResponse") + public JAXBElement createAddressNeighborhoodNameResponse(AddressNeighborhoodNameResponseType value) { + return new JAXBElement(_AddressNeighborhoodNameResponse_QNAME, AddressNeighborhoodNameResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserEditHostRestrictionsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userEditHostRestrictionsResponse") + public JAXBElement createUserEditHostRestrictionsResponse(UserEditHostRestrictionsResponseType value) { + return new JAXBElement(_UserEditHostRestrictionsResponse_QNAME, UserEditHostRestrictionsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountEditV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountEditV2") + public JAXBElement createAccountEditV2(AccountEditV2RequestType value) { + return new JAXBElement(_AccountEditV2_QNAME, AccountEditV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link VatValidateResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "vatValidateResponse") + public JAXBElement createVatValidateResponse(VatValidateResponseType value) { + return new JAXBElement(_VatValidateResponse_QNAME, VatValidateResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationInternationalAddressCoordinatesLatLonResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationInternationalAddressCoordinatesLatLonResponse") + public JAXBElement createGeoLocationInternationalAddressCoordinatesLatLonResponse(GeoLocationInternationalAddressCoordinatesLatLonResponseType value) { + return new JAXBElement(_GeoLocationInternationalAddressCoordinatesLatLonResponse_QNAME, GeoLocationInternationalAddressCoordinatesLatLonResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ComplianceGetPersonRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "complianceGetPerson") + public JAXBElement createComplianceGetPerson(ComplianceGetPersonRequestType value) { + return new JAXBElement(_ComplianceGetPerson_QNAME, ComplianceGetPersonRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEVersionYearDataRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEVersionYearData") + public JAXBElement createCarVWEVersionYearData(CarVWEVersionYearDataRequestType value) { + return new JAXBElement(_CarVWEVersionYearData_QNAME, CarVWEVersionYearDataRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEOptionsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEOptionsResponse") + public JAXBElement createCarVWEOptionsResponse(CarVWEOptionsResponseType value) { + return new JAXBElement(_CarVWEOptionsResponse_QNAME, CarVWEOptionsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountEditHostRestrictionsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountEditHostRestrictions") + public JAXBElement createAccountEditHostRestrictions(AccountEditHostRestrictionsRequestType value) { + return new JAXBElement(_AccountEditHostRestrictions_QNAME, AccountEditHostRestrictionsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetDossierSBIResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetDossierSBIResponse") + public JAXBElement createBusinessGetDossierSBIResponse(BusinessGetDossierSBIResponseType value) { + return new JAXBElement(_BusinessGetDossierSBIResponse_QNAME, BusinessGetDossierSBIResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetDossierV3ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetDossierV3Response") + public JAXBElement createBusinessGetDossierV3Response(BusinessGetDossierV3ResponseType value) { + return new JAXBElement(_BusinessGetDossierV3Response_QNAME, BusinessGetDossierV3ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationDistanceSortedNeighborhoodCodesRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationDistanceSortedNeighborhoodCodes") + public JAXBElement createGeoLocationDistanceSortedNeighborhoodCodes(GeoLocationDistanceSortedNeighborhoodCodesRequestType value) { + return new JAXBElement(_GeoLocationDistanceSortedNeighborhoodCodes_QNAME, GeoLocationDistanceSortedNeighborhoodCodesRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetVehicleV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetVehicleV2") + public JAXBElement createDutchVehicleGetVehicleV2(DutchVehicleGetVehicleV2RequestType value) { + return new JAXBElement(_DutchVehicleGetVehicleV2_QNAME, DutchVehicleGetVehicleV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetDossierHistoryRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetDossierHistory") + public JAXBElement createDutchBusinessGetDossierHistory(DutchBusinessGetDossierHistoryRequestType value) { + return new JAXBElement(_DutchBusinessGetDossierHistory_QNAME, DutchBusinessGetDossierHistoryRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtPerceelV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtPerceelV2") + public JAXBElement createKadasterEigendomsBerichtPerceelV2(KadasterEigendomsBerichtPerceelV2RequestType value) { + return new JAXBElement(_KadasterEigendomsBerichtPerceelV2_QNAME, KadasterEigendomsBerichtPerceelV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateRemoveDossierResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateRemoveDossierResponse") + public JAXBElement createBusinessUpdateRemoveDossierResponse(BusinessUpdateRemoveDossierResponseType value) { + return new JAXBElement(_BusinessUpdateRemoveDossierResponse_QNAME, BusinessUpdateRemoveDossierResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RiskCheckGetRiskPersonCompanyReportResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "riskCheckGetRiskPersonCompanyReportResponse") + public JAXBElement createRiskCheckGetRiskPersonCompanyReportResponse(RiskCheckGetRiskPersonCompanyReportResponseType value) { + return new JAXBElement(_RiskCheckGetRiskPersonCompanyReportResponse_QNAME, RiskCheckGetRiskPersonCompanyReportResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterValueListGetRangesRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterValueListGetRanges") + public JAXBElement createKadasterValueListGetRanges(KadasterValueListGetRangesRequestType value) { + return new JAXBElement(_KadasterValueListGetRanges_QNAME, KadasterValueListGetRangesRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponse") + public JAXBElement createKadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponse(KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType value) { + return new JAXBElement(_KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponse_QNAME, KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEListModelsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEListModelsResponse") + public JAXBElement createCarVWEListModelsResponse(CarVWEListModelsResponseType value) { + return new JAXBElement(_CarVWEListModelsResponse_QNAME, CarVWEListModelsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchAddressRangePostcodeSearchRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchAddressRangePostcodeSearch") + public JAXBElement createDutchAddressRangePostcodeSearch(DutchAddressRangePostcodeSearchRequestType value) { + return new JAXBElement(_DutchAddressRangePostcodeSearch_QNAME, DutchAddressRangePostcodeSearchRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEListVersionsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEListVersions") + public JAXBElement createCarVWEListVersions(CarVWEListVersionsRequestType value) { + return new JAXBElement(_CarVWEListVersions_QNAME, CarVWEListVersionsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOClassifyInvestigationRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOClassifyInvestigation") + public JAXBElement createDutchBusinessUBOClassifyInvestigation(DutchBusinessUBOClassifyInvestigationRequestType value) { + return new JAXBElement(_DutchBusinessUBOClassifyInvestigation_QNAME, DutchBusinessUBOClassifyInvestigationRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchSelectionRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchSelection") + public JAXBElement createDutchBusinessSearchSelection(DutchBusinessSearchSelectionRequestType value) { + return new JAXBElement(_DutchBusinessSearchSelection_QNAME, DutchBusinessSearchSelectionRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponse") + public JAXBElement createKadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponse(KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType value) { + return new JAXBElement(_KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponse_QNAME, KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetaGetMethodRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "metaGetMethod") + public JAXBElement createMetaGetMethod(MetaGetMethodRequestType value) { + return new JAXBElement(_MetaGetMethod_QNAME, MetaGetMethodRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserCreateV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userCreateV2Response") + public JAXBElement createUserCreateV2Response(UserCreateV2ResponseType value) { + return new JAXBElement(_UserCreateV2Response_QNAME, UserCreateV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountViewHostRestrictionsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountViewHostRestrictionsResponse") + public JAXBElement createAccountViewHostRestrictionsResponse(AccountViewHostRestrictionsResponseType value) { + return new JAXBElement(_AccountViewHostRestrictionsResponse_QNAME, AccountViewHostRestrictionsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponse") + public JAXBElement createKadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponse(KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType value) { + return new JAXBElement(_KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponse_QNAME, KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditCompanyLiaisonsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditCompanyLiaisonsResponse") + public JAXBElement createGraydonCreditCompanyLiaisonsResponse(GraydonCreditCompanyLiaisonsResponseType value) { + return new JAXBElement(_GraydonCreditCompanyLiaisonsResponse_QNAME, GraydonCreditCompanyLiaisonsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbBusinessVerificationRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbBusinessVerification") + public JAXBElement createDnbBusinessVerification(DnbBusinessVerificationRequestType value) { + return new JAXBElement(_DnbBusinessVerification_QNAME, DnbBusinessVerificationRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKadastraleKaartPerceelV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKadastraleKaartPerceelV2") + public JAXBElement createKadasterKadastraleKaartPerceelV2(KadasterKadastraleKaartPerceelV2RequestType value) { + return new JAXBElement(_KadasterKadastraleKaartPerceelV2_QNAME, KadasterKadastraleKaartPerceelV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerRDDescriptionResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerRDDescriptionResponse") + public JAXBElement createRoutePlannerRDDescriptionResponse(RoutePlannerRDDescriptionResponseType value) { + return new JAXBElement(_RoutePlannerRDDescriptionResponse_QNAME, RoutePlannerRDDescriptionResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchAddressRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchAddress") + public JAXBElement createBusinessSearchAddress(BusinessSearchAddressRequestType value) { + return new JAXBElement(_BusinessSearchAddress_QNAME, BusinessSearchAddressRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationDistanceSortedNeighborhoodCodesRadiusResponse") + public JAXBElement createGeoLocationDistanceSortedNeighborhoodCodesRadiusResponse(GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType value) { + return new JAXBElement(_GeoLocationDistanceSortedNeighborhoodCodesRadiusResponse_QNAME, GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link NbwoEstimateValueRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "nbwoEstimateValue") + public JAXBElement createNbwoEstimateValue(NbwoEstimateValueRequestType value) { + return new JAXBElement(_NbwoEstimateValue_QNAME, NbwoEstimateValueRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbEnterpriseManagementResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbEnterpriseManagementResponse") + public JAXBElement createDnbEnterpriseManagementResponse(DnbEnterpriseManagementResponseType value) { + return new JAXBElement(_DnbEnterpriseManagementResponse_QNAME, DnbEnterpriseManagementResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateCheckDossierResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateCheckDossierResponse") + public JAXBElement createKvkUpdateCheckDossierResponse(KvkUpdateCheckDossierResponseType value) { + return new JAXBElement(_KvkUpdateCheckDossierResponse_QNAME, KvkUpdateCheckDossierResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetSBIRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetSBI") + public JAXBElement createDutchBusinessGetSBI(DutchBusinessGetSBIRequestType value) { + return new JAXBElement(_DutchBusinessGetSBI_QNAME, DutchBusinessGetSBIRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetConcernRelationsDetailsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetConcernRelationsDetails") + public JAXBElement createDutchBusinessGetConcernRelationsDetails(DutchBusinessGetConcernRelationsDetailsRequestType value) { + return new JAXBElement(_DutchBusinessGetConcernRelationsDetails_QNAME, DutchBusinessGetConcernRelationsDetailsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetaGetServicesResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "metaGetServicesResponse") + public JAXBElement createMetaGetServicesResponse(MetaGetServicesResponseType value) { + return new JAXBElement(_MetaGetServicesResponse_QNAME, MetaGetServicesResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditQuickscanResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditQuickscanResponse") + public JAXBElement createGraydonCreditQuickscanResponse(GraydonCreditQuickscanResponseType value) { + return new JAXBElement(_GraydonCreditQuickscanResponse_QNAME, GraydonCreditQuickscanResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateGetDossiersResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateGetDossiersResponse") + public JAXBElement createKvkUpdateGetDossiersResponse(KvkUpdateGetDossiersResponseType value) { + return new JAXBElement(_KvkUpdateGetDossiersResponse_QNAME, KvkUpdateGetDossiersResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerGetRouteRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerGetRoute") + public JAXBElement createRoutePlannerGetRoute(RoutePlannerGetRouteRequestType value) { + return new JAXBElement(_RoutePlannerGetRoute_QNAME, RoutePlannerGetRouteRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationDistanceSortedNeighborhoodCodesResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationDistanceSortedNeighborhoodCodesResponse") + public JAXBElement createGeoLocationDistanceSortedNeighborhoodCodesResponse(GeoLocationDistanceSortedNeighborhoodCodesResponseType value) { + return new JAXBElement(_GeoLocationDistanceSortedNeighborhoodCodesResponse_QNAME, GeoLocationDistanceSortedNeighborhoodCodesResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkGetExtractDocumentRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkGetExtractDocument") + public JAXBElement createKvkGetExtractDocument(KvkGetExtractDocumentRequestType value) { + return new JAXBElement(_KvkGetExtractDocument_QNAME, KvkGetExtractDocumentRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeGetReportFullV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeGetReportFullV2Response") + public JAXBElement createCreditsafeGetReportFullV2Response(CreditsafeGetReportFullV2ResponseType value) { + return new JAXBElement(_CreditsafeGetReportFullV2Response_QNAME, CreditsafeGetReportFullV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetAdditionalPositionsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetAdditionalPositions") + public JAXBElement createDutchBusinessGetAdditionalPositions(DutchBusinessGetAdditionalPositionsRequestType value) { + return new JAXBElement(_DutchBusinessGetAdditionalPositions_QNAME, DutchBusinessGetAdditionalPositionsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKadastraleKaartPostcodeRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKadastraleKaartPostcode") + public JAXBElement createKadasterKadastraleKaartPostcode(KadasterKadastraleKaartPostcodeRequestType value) { + return new JAXBElement(_KadasterKadastraleKaartPostcode_QNAME, KadasterKadastraleKaartPostcodeRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountUserSearchV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountUserSearchV2") + public JAXBElement createAccountUserSearchV2(AccountUserSearchV2RequestType value) { + return new JAXBElement(_AccountUserSearchV2_QNAME, AccountUserSearchV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditRatingsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditRatings") + public JAXBElement createGraydonCreditRatings(GraydonCreditRatingsRequestType value) { + return new JAXBElement(_GraydonCreditRatings_QNAME, GraydonCreditRatingsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserEditExtendedV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userEditExtendedV2") + public JAXBElement createUserEditExtendedV2(UserEditExtendedV2RequestType value) { + return new JAXBElement(_UserEditExtendedV2_QNAME, UserEditExtendedV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEVersionPriceRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEVersionPrice") + public JAXBElement createCarVWEVersionPrice(CarVWEVersionPriceRequestType value) { + return new JAXBElement(_CarVWEVersionPrice_QNAME, CarVWEVersionPriceRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetMarketValueRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetMarketValue") + public JAXBElement createDutchVehicleGetMarketValue(DutchVehicleGetMarketValueRequestType value) { + return new JAXBElement(_DutchVehicleGetMarketValue_QNAME, DutchVehicleGetMarketValueRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateGetOverviewRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateGetOverview") + public JAXBElement createDutchBusinessUpdateGetOverview(DutchBusinessUpdateGetOverviewRequestType value) { + return new JAXBElement(_DutchBusinessUpdateGetOverview_QNAME, DutchBusinessUpdateGetOverviewRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetVatNumberResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetVatNumberResponse") + public JAXBElement createDutchBusinessGetVatNumberResponse(DutchBusinessGetVatNumberResponseType value) { + return new JAXBElement(_DutchBusinessGetVatNumberResponse_QNAME, DutchBusinessGetVatNumberResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetPositionsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetPositions") + public JAXBElement createDutchBusinessGetPositions(DutchBusinessGetPositionsRequestType value) { + return new JAXBElement(_DutchBusinessGetPositions_QNAME, DutchBusinessGetPositionsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchSelectionResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchSelectionResponse") + public JAXBElement createDutchBusinessSearchSelectionResponse(DutchBusinessSearchSelectionResponseType value) { + return new JAXBElement(_DutchBusinessSearchSelectionResponse_QNAME, DutchBusinessSearchSelectionResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponse") + public JAXBElement createDutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponse(DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType value) { + return new JAXBElement(_DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponse_QNAME, DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserEditBalanceResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userEditBalanceResponse") + public JAXBElement createUserEditBalanceResponse(UserEditBalanceResponseType value) { + return new JAXBElement(_UserEditBalanceResponse_QNAME, UserEditBalanceResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "login") + public JAXBElement createLogin(LoginRequestType value) { + return new JAXBElement(_Login_QNAME, LoginRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetaGetServiceRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "metaGetService") + public JAXBElement createMetaGetService(MetaGetServiceRequestType value) { + return new JAXBElement(_MetaGetService_QNAME, MetaGetServiceRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetBIKDescriptionResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetBIKDescriptionResponse") + public JAXBElement createBusinessGetBIKDescriptionResponse(BusinessGetBIKDescriptionResponseType value) { + return new JAXBElement(_BusinessGetBIKDescriptionResponse_QNAME, BusinessGetBIKDescriptionResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetVehicleRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetVehicle") + public JAXBElement createDutchVehicleGetVehicle(DutchVehicleGetVehicleRequestType value) { + return new JAXBElement(_DutchVehicleGetVehicle_QNAME, DutchVehicleGetVehicleRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerEUDescriptionCoordinatesLatLonResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerEUDescriptionCoordinatesLatLonResponse") + public JAXBElement createRoutePlannerEUDescriptionCoordinatesLatLonResponse(RoutePlannerEUDescriptionCoordinatesLatLonResponseType value) { + return new JAXBElement(_RoutePlannerEUDescriptionCoordinatesLatLonResponse_QNAME, RoutePlannerEUDescriptionCoordinatesLatLonResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationLatLonToAddressV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationLatLonToAddressV2Response") + public JAXBElement createGeoLocationLatLonToAddressV2Response(GeoLocationLatLonToAddressV2ResponseType value) { + return new JAXBElement(_GeoLocationLatLonToAddressV2Response_QNAME, GeoLocationLatLonToAddressV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPostcodeV3ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPostcodeV3Response") + public JAXBElement createKadasterUittrekselKadastraleKaartPostcodeV3Response(KadasterUittrekselKadastraleKaartPostcodeV3ResponseType value) { + return new JAXBElement(_KadasterUittrekselKadastraleKaartPostcodeV3Response_QNAME, KadasterUittrekselKadastraleKaartPostcodeV3ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationPostcodeCoordinatesRDResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationPostcodeCoordinatesRDResponse") + public JAXBElement createGeoLocationPostcodeCoordinatesRDResponse(GeoLocationPostcodeCoordinatesRDResponseType value) { + return new JAXBElement(_GeoLocationPostcodeCoordinatesRDResponse_QNAME, GeoLocationPostcodeCoordinatesRDResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPerceelV3RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPerceelV3") + public JAXBElement createKadasterHypothecairBerichtPerceelV3(KadasterHypothecairBerichtPerceelV3RequestType value) { + return new JAXBElement(_KadasterHypothecairBerichtPerceelV3_QNAME, KadasterHypothecairBerichtPerceelV3RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtPerceelResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtPerceelResponse") + public JAXBElement createKadasterEigendomsBerichtPerceelResponse(KadasterEigendomsBerichtPerceelResponseType value) { + return new JAXBElement(_KadasterEigendomsBerichtPerceelResponse_QNAME, KadasterEigendomsBerichtPerceelResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPerceelV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPerceelV2") + public JAXBElement createKadasterHypothecairBerichtPerceelV2(KadasterHypothecairBerichtPerceelV2RequestType value) { + return new JAXBElement(_KadasterHypothecairBerichtPerceelV2_QNAME, KadasterHypothecairBerichtPerceelV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractDocumentDataV3RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractDocumentDataV3") + public JAXBElement createDutchBusinessGetExtractDocumentDataV3(DutchBusinessGetExtractDocumentDataV3RequestType value) { + return new JAXBElement(_DutchBusinessGetExtractDocumentDataV3_QNAME, DutchBusinessGetExtractDocumentDataV3RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SepaValidateInternationalBankAccountNumberFormatResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaValidateInternationalBankAccountNumberFormatResponse") + public JAXBElement createSepaValidateInternationalBankAccountNumberFormatResponse(SepaValidateInternationalBankAccountNumberFormatResponseType value) { + return new JAXBElement(_SepaValidateInternationalBankAccountNumberFormatResponse_QNAME, SepaValidateInternationalBankAccountNumberFormatResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractDocumentDataV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractDocumentDataV2") + public JAXBElement createDutchBusinessGetExtractDocumentDataV2(DutchBusinessGetExtractDocumentDataV2RequestType value) { + return new JAXBElement(_DutchBusinessGetExtractDocumentDataV2_QNAME, DutchBusinessGetExtractDocumentDataV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOCheckInvestigationResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOCheckInvestigationResponse") + public JAXBElement createDutchBusinessUBOCheckInvestigationResponse(DutchBusinessUBOCheckInvestigationResponseType value) { + return new JAXBElement(_DutchBusinessUBOCheckInvestigationResponse_QNAME, DutchBusinessUBOCheckInvestigationResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountGetOrderTokenResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountGetOrderTokenResponse") + public JAXBElement createAccountGetOrderTokenResponse(AccountGetOrderTokenResponseType value) { + return new JAXBElement(_AccountGetOrderTokenResponse_QNAME, AccountGetOrderTokenResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationPostcodeDistanceRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationPostcodeDistance") + public JAXBElement createGeoLocationPostcodeDistance(GeoLocationPostcodeDistanceRequestType value) { + return new JAXBElement(_GeoLocationPostcodeDistance_QNAME, GeoLocationPostcodeDistanceRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetKoopsommenOverzichtRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetKoopsommenOverzicht") + public JAXBElement createKadasterV2GetKoopsommenOverzicht(KadasterV2GetKoopsommenOverzichtRequestType value) { + return new JAXBElement(_KadasterV2GetKoopsommenOverzicht_QNAME, KadasterV2GetKoopsommenOverzichtRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link InternationalAddressSearchV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "internationalAddressSearchV2Response") + public JAXBElement createInternationalAddressSearchV2Response(InternationalAddressSearchV2ResponseType value) { + return new JAXBElement(_InternationalAddressSearchV2Response_QNAME, InternationalAddressSearchV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountViewHostRestrictionsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountViewHostRestrictions") + public JAXBElement createAccountViewHostRestrictions(AccountViewHostRestrictionsRequestType value) { + return new JAXBElement(_AccountViewHostRestrictions_QNAME, AccountViewHostRestrictionsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataExtendedRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataExtended") + public JAXBElement createCarRDWCarDataExtended(CarRDWCarDataExtendedRequestType value) { + return new JAXBElement(_CarRDWCarDataExtended_QNAME, CarRDWCarDataExtendedRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressPerceelPhraseSearchResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressPerceelPhraseSearchResponse") + public JAXBElement createAddressPerceelPhraseSearchResponse(AddressPerceelPhraseSearchResponseType value) { + return new JAXBElement(_AddressPerceelPhraseSearchResponse_QNAME, AddressPerceelPhraseSearchResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPostcodeV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPostcodeV2") + public JAXBElement createKadasterUittrekselKadastraleKaartPostcodeV2(KadasterUittrekselKadastraleKaartPostcodeV2RequestType value) { + return new JAXBElement(_KadasterUittrekselKadastraleKaartPostcodeV2_QNAME, KadasterUittrekselKadastraleKaartPostcodeV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressPerceelParameterSearchResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressPerceelParameterSearchResponse") + public JAXBElement createAddressPerceelParameterSearchResponse(AddressPerceelParameterSearchResponseType value) { + return new JAXBElement(_AddressPerceelParameterSearchResponse_QNAME, AddressPerceelParameterSearchResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtPerceelV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtPerceelV2Response") + public JAXBElement createKadasterEigendomsBerichtPerceelV2Response(KadasterEigendomsBerichtPerceelV2ResponseType value) { + return new JAXBElement(_KadasterEigendomsBerichtPerceelV2Response_QNAME, KadasterEigendomsBerichtPerceelV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataV2Response") + public JAXBElement createCarRDWCarDataV2Response(CarRDWCarDataV2ResponseType value) { + return new JAXBElement(_CarRDWCarDataV2Response_QNAME, CarRDWCarDataV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPostcodeV3RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPostcodeV3") + public JAXBElement createKadasterUittrekselKadastraleKaartPostcodeV3(KadasterUittrekselKadastraleKaartPostcodeV3RequestType value) { + return new JAXBElement(_KadasterUittrekselKadastraleKaartPostcodeV3_QNAME, KadasterUittrekselKadastraleKaartPostcodeV3RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditManagementRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditManagement") + public JAXBElement createGraydonCreditManagement(GraydonCreditManagementRequestType value) { + return new JAXBElement(_GraydonCreditManagement_QNAME, GraydonCreditManagementRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserChangePasswordResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userChangePasswordResponse") + public JAXBElement createUserChangePasswordResponse(UserChangePasswordResponseType value) { + return new JAXBElement(_UserChangePasswordResponse_QNAME, UserChangePasswordResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeSearchCriteriaResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeSearchCriteriaResponse") + public JAXBElement createCreditsafeSearchCriteriaResponse(CreditsafeSearchCriteriaResponseType value) { + return new JAXBElement(_CreditsafeSearchCriteriaResponse_QNAME, CreditsafeSearchCriteriaResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RiskCheckPersonResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "riskCheckPersonResponse") + public JAXBElement createRiskCheckPersonResponse(RiskCheckPersonResponseType value) { + return new JAXBElement(_RiskCheckPersonResponse_QNAME, RiskCheckPersonResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbSearchReferenceResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbSearchReferenceResponse") + public JAXBElement createDnbSearchReferenceResponse(DnbSearchReferenceResponseType value) { + return new JAXBElement(_DnbSearchReferenceResponse_QNAME, DnbSearchReferenceResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPerceelV3ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPerceelV3Response") + public JAXBElement createKadasterUittrekselKadastraleKaartPerceelV3Response(KadasterUittrekselKadastraleKaartPerceelV3ResponseType value) { + return new JAXBElement(_KadasterUittrekselKadastraleKaartPerceelV3Response_QNAME, KadasterUittrekselKadastraleKaartPerceelV3ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerEUInformationResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerEUInformationResponse") + public JAXBElement createRoutePlannerEUInformationResponse(RoutePlannerEUInformationResponseType value) { + return new JAXBElement(_RoutePlannerEUInformationResponse_QNAME, RoutePlannerEUInformationResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationDistanceSortedPostcodesRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationDistanceSortedPostcodes") + public JAXBElement createGeoLocationDistanceSortedPostcodes(GeoLocationDistanceSortedPostcodesRequestType value) { + return new JAXBElement(_GeoLocationDistanceSortedPostcodes_QNAME, GeoLocationDistanceSortedPostcodesRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditVatNumberResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditVatNumberResponse") + public JAXBElement createGraydonCreditVatNumberResponse(GraydonCreditVatNumberResponseType value) { + return new JAXBElement(_GraydonCreditVatNumberResponse_QNAME, GraydonCreditVatNumberResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AreaCodeToNeighborhoodcodeResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "areaCodeToNeighborhoodcodeResponse") + public JAXBElement createAreaCodeToNeighborhoodcodeResponse(AreaCodeToNeighborhoodcodeResponseType value) { + return new JAXBElement(_AreaCodeToNeighborhoodcodeResponse_QNAME, AreaCodeToNeighborhoodcodeResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetOrganizationTreeResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetOrganizationTreeResponse") + public JAXBElement createDutchBusinessGetOrganizationTreeResponse(DutchBusinessGetOrganizationTreeResponseType value) { + return new JAXBElement(_DutchBusinessGetOrganizationTreeResponse_QNAME, DutchBusinessGetOrganizationTreeResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationHaversineDistanceRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationHaversineDistance") + public JAXBElement createGeoLocationHaversineDistance(GeoLocationHaversineDistanceRequestType value) { + return new JAXBElement(_GeoLocationHaversineDistance_QNAME, GeoLocationHaversineDistanceRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerRDDescriptionRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerRDDescription") + public JAXBElement createRoutePlannerRDDescription(RoutePlannerRDDescriptionRequestType value) { + return new JAXBElement(_RoutePlannerRDDescription_QNAME, RoutePlannerRDDescriptionRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEMeldcodeCheckRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEMeldcodeCheck") + public JAXBElement createCarVWEMeldcodeCheck(CarVWEMeldcodeCheckRequestType value) { + return new JAXBElement(_CarVWEMeldcodeCheck_QNAME, CarVWEMeldcodeCheckRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtDocumentPostcodeResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtDocumentPostcodeResponse") + public JAXBElement createKadasterEigendomsBerichtDocumentPostcodeResponse(KadasterEigendomsBerichtDocumentPostcodeResponseType value) { + return new JAXBElement(_KadasterEigendomsBerichtDocumentPostcodeResponse_QNAME, KadasterEigendomsBerichtDocumentPostcodeResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetDossierV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetDossierV2Response") + public JAXBElement createDutchBusinessGetDossierV2Response(DutchBusinessGetDossierV2ResponseType value) { + return new JAXBElement(_DutchBusinessGetDossierV2Response_QNAME, DutchBusinessGetDossierV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchSelectionV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchSelectionV2Response") + public JAXBElement createBusinessSearchSelectionV2Response(BusinessSearchSelectionV2ResponseType value) { + return new JAXBElement(_BusinessSearchSelectionV2Response_QNAME, BusinessSearchSelectionV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressDistrictListCitiesRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressDistrictListCities") + public JAXBElement createAddressDistrictListCities(AddressDistrictListCitiesRequestType value) { + return new JAXBElement(_AddressDistrictListCities_QNAME, AddressDistrictListCitiesRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationPostcodeCoordinatesLatLonRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationPostcodeCoordinatesLatLon") + public JAXBElement createGeoLocationPostcodeCoordinatesLatLon(GeoLocationPostcodeCoordinatesLatLonRequestType value) { + return new JAXBElement(_GeoLocationPostcodeCoordinatesLatLon_QNAME, GeoLocationPostcodeCoordinatesLatLonRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetKadastraalBerichtObjectByAdresResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetKadastraalBerichtObjectByAdresResponse") + public JAXBElement createKadasterV2GetKadastraalBerichtObjectByAdresResponse(KadasterV2GetKadastraalBerichtObjectByAdresResponseType value) { + return new JAXBElement(_KadasterV2GetKadastraalBerichtObjectByAdresResponse_QNAME, KadasterV2GetKadastraalBerichtObjectByAdresResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationRDToAddressV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationRDToAddressV2Response") + public JAXBElement createGeoLocationRDToAddressV2Response(GeoLocationRDToAddressV2ResponseType value) { + return new JAXBElement(_GeoLocationRDToAddressV2Response_QNAME, GeoLocationRDToAddressV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BovagGetMemberByBovagIdRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "bovagGetMemberByBovagId") + public JAXBElement createBovagGetMemberByBovagId(BovagGetMemberByBovagIdRequestType value) { + return new JAXBElement(_BovagGetMemberByBovagId_QNAME, BovagGetMemberByBovagIdRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkSearchSelectionResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkSearchSelectionResponse") + public JAXBElement createKvkSearchSelectionResponse(KvkSearchSelectionResponseType value) { + return new JAXBElement(_KvkSearchSelectionResponse_QNAME, KvkSearchSelectionResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationRDToAddressV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationRDToAddressV2") + public JAXBElement createGeoLocationRDToAddressV2(GeoLocationRDToAddressV2RequestType value) { + return new JAXBElement(_GeoLocationRDToAddressV2_QNAME, GeoLocationRDToAddressV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetaGetServicesRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "metaGetServices") + public JAXBElement createMetaGetServices(MetaGetServicesRequestType value) { + return new JAXBElement(_MetaGetServices_QNAME, MetaGetServicesRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKadastraleKaartPostcodeV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKadastraleKaartPostcodeV2") + public JAXBElement createKadasterKadastraleKaartPostcodeV2(KadasterKadastraleKaartPostcodeV2RequestType value) { + return new JAXBElement(_KadasterKadastraleKaartPostcodeV2_QNAME, KadasterKadastraleKaartPostcodeV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountGetCreationTokenResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountGetCreationTokenResponse") + public JAXBElement createAccountGetCreationTokenResponse(AccountGetCreationTokenResponseType value) { + return new JAXBElement(_AccountGetCreationTokenResponse_QNAME, AccountGetCreationTokenResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationInternationalAddressCoordinatesLatLonV2Response") + public JAXBElement createGeoLocationInternationalAddressCoordinatesLatLonV2Response(GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType value) { + return new JAXBElement(_GeoLocationInternationalAddressCoordinatesLatLonV2Response_QNAME, GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerGetRouteResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerGetRouteResponse") + public JAXBElement createRoutePlannerGetRouteResponse(RoutePlannerGetRouteResponseType value) { + return new JAXBElement(_RoutePlannerGetRouteResponse_QNAME, RoutePlannerGetRouteResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserSessionRemoveResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userSessionRemoveResponse") + public JAXBElement createUserSessionRemoveResponse(UserSessionRemoveResponseType value) { + return new JAXBElement(_UserSessionRemoveResponse_QNAME, UserSessionRemoveResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationHaversineDistanceResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationHaversineDistanceResponse") + public JAXBElement createGeoLocationHaversineDistanceResponse(GeoLocationHaversineDistanceResponseType value) { + return new JAXBElement(_GeoLocationHaversineDistanceResponse_QNAME, GeoLocationHaversineDistanceResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateCheckDossierRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateCheckDossier") + public JAXBElement createBusinessUpdateCheckDossier(BusinessUpdateCheckDossierRequestType value) { + return new JAXBElement(_BusinessUpdateCheckDossier_QNAME, BusinessUpdateCheckDossierRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationRDToPostcodeRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationRDToPostcode") + public JAXBElement createGeoLocationRDToPostcode(GeoLocationRDToPostcodeRequestType value) { + return new JAXBElement(_GeoLocationRDToPostcode_QNAME, GeoLocationRDToPostcodeRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPerceelResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPerceelResponse") + public JAXBElement createKadasterHypothecairBerichtPerceelResponse(KadasterHypothecairBerichtPerceelResponseType value) { + return new JAXBElement(_KadasterHypothecairBerichtPerceelResponse_QNAME, KadasterHypothecairBerichtPerceelResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressCityListNeighborhoodsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressCityListNeighborhoods") + public JAXBElement createAddressCityListNeighborhoods(AddressCityListNeighborhoodsRequestType value) { + return new JAXBElement(_AddressCityListNeighborhoods_QNAME, AddressCityListNeighborhoodsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchParametersV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchParametersV2Response") + public JAXBElement createDutchBusinessSearchParametersV2Response(DutchBusinessSearchParametersV2ResponseType value) { + return new JAXBElement(_DutchBusinessSearchParametersV2Response_QNAME, DutchBusinessSearchParametersV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSBIToBIKResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSBIToBIKResponse") + public JAXBElement createBusinessSBIToBIKResponse(BusinessSBIToBIKResponseType value) { + return new JAXBElement(_BusinessSBIToBIKResponse_QNAME, BusinessSBIToBIKResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link InsolvencyGetCaseByPublicationRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "insolvencyGetCaseByPublication") + public JAXBElement createInsolvencyGetCaseByPublication(InsolvencyGetCaseByPublicationRequestType value) { + return new JAXBElement(_InsolvencyGetCaseByPublication_QNAME, InsolvencyGetCaseByPublicationRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchSelectionV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchSelectionV2") + public JAXBElement createBusinessSearchSelectionV2(BusinessSearchSelectionV2RequestType value) { + return new JAXBElement(_BusinessSearchSelectionV2_QNAME, BusinessSearchSelectionV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataV3ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataV3Response") + public JAXBElement createCarRDWCarDataV3Response(CarRDWCarDataV3ResponseType value) { + return new JAXBElement(_CarRDWCarDataV3Response_QNAME, CarRDWCarDataV3ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbWorldbaseMarketingPlusRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbWorldbaseMarketingPlus") + public JAXBElement createDnbWorldbaseMarketingPlus(DnbWorldbaseMarketingPlusRequestType value) { + return new JAXBElement(_DnbWorldbaseMarketingPlus_QNAME, DnbWorldbaseMarketingPlusRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchDossierNumberRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchDossierNumber") + public JAXBElement createDutchBusinessSearchDossierNumber(DutchBusinessSearchDossierNumberRequestType value) { + return new JAXBElement(_DutchBusinessSearchDossierNumber_QNAME, DutchBusinessSearchDossierNumberRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtPostcodeV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtPostcodeV2") + public JAXBElement createKadasterEigendomsBerichtPostcodeV2(KadasterEigendomsBerichtPostcodeV2RequestType value) { + return new JAXBElement(_KadasterEigendomsBerichtPostcodeV2_QNAME, KadasterEigendomsBerichtPostcodeV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressProvinceSearchRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressProvinceSearch") + public JAXBElement createAddressProvinceSearch(AddressProvinceSearchRequestType value) { + return new JAXBElement(_AddressProvinceSearch_QNAME, AddressProvinceSearchRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarCheckCodeResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarCheckCodeResponse") + public JAXBElement createCarRDWCarCheckCodeResponse(CarRDWCarCheckCodeResponseType value) { + return new JAXBElement(_CarRDWCarCheckCodeResponse_QNAME, CarRDWCarCheckCodeResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearch") + public JAXBElement createDutchBusinessSearch(DutchBusinessSearchRequestType value) { + return new JAXBElement(_DutchBusinessSearch_QNAME, DutchBusinessSearchRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateAddDossierRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateAddDossier") + public JAXBElement createDutchBusinessUpdateAddDossier(DutchBusinessUpdateAddDossierRequestType value) { + return new JAXBElement(_DutchBusinessUpdateAddDossier_QNAME, DutchBusinessUpdateAddDossierRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserSessionListResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userSessionListResponse") + public JAXBElement createUserSessionListResponse(UserSessionListResponseType value) { + return new JAXBElement(_UserSessionListResponse_QNAME, UserSessionListResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link InternationalAddressSearchV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "internationalAddressSearchV2") + public JAXBElement createInternationalAddressSearchV2(InternationalAddressSearchV2RequestType value) { + return new JAXBElement(_InternationalAddressSearchV2_QNAME, InternationalAddressSearchV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchPostcodeResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchPostcodeResponse") + public JAXBElement createDutchBusinessSearchPostcodeResponse(DutchBusinessSearchPostcodeResponseType value) { + return new JAXBElement(_DutchBusinessSearchPostcodeResponse_QNAME, DutchBusinessSearchPostcodeResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterAddressCoordinatesResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterAddressCoordinatesResponse") + public JAXBElement createKadasterAddressCoordinatesResponse(KadasterAddressCoordinatesResponseType value) { + return new JAXBElement(_KadasterAddressCoordinatesResponse_QNAME, KadasterAddressCoordinatesResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationInternationalAddressCoordinatesLatLonV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationInternationalAddressCoordinatesLatLonV2") + public JAXBElement createGeoLocationInternationalAddressCoordinatesLatLonV2(GeoLocationInternationalAddressCoordinatesLatLonV2RequestType value) { + return new JAXBElement(_GeoLocationInternationalAddressCoordinatesLatLonV2_QNAME, GeoLocationInternationalAddressCoordinatesLatLonV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchDossierNumberRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchDossierNumber") + public JAXBElement createBusinessSearchDossierNumber(BusinessSearchDossierNumberRequestType value) { + return new JAXBElement(_BusinessSearchDossierNumber_QNAME, BusinessSearchDossierNumberRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionShortestResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionShortestResponse") + public JAXBElement createRoutePlannerDescriptionShortestResponse(RoutePlannerDescriptionShortestResponseType value) { + return new JAXBElement(_RoutePlannerDescriptionShortestResponse_QNAME, RoutePlannerDescriptionShortestResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchDossierNumberResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchDossierNumberResponse") + public JAXBElement createDutchBusinessSearchDossierNumberResponse(DutchBusinessSearchDossierNumberResponseType value) { + return new JAXBElement(_DutchBusinessSearchDossierNumberResponse_QNAME, DutchBusinessSearchDossierNumberResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetAnnualFinancialStatementResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetAnnualFinancialStatementResponse") + public JAXBElement createDutchBusinessGetAnnualFinancialStatementResponse(DutchBusinessGetAnnualFinancialStatementResponseType value) { + return new JAXBElement(_DutchBusinessGetAnnualFinancialStatementResponse_QNAME, DutchBusinessGetAnnualFinancialStatementResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link InsolvencyGetCaseByPublicationResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "insolvencyGetCaseByPublicationResponse") + public JAXBElement createInsolvencyGetCaseByPublicationResponse(InsolvencyGetCaseByPublicationResponseType value) { + return new JAXBElement(_InsolvencyGetCaseByPublicationResponse_QNAME, InsolvencyGetCaseByPublicationResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserViewV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userViewV2") + public JAXBElement createUserViewV2(UserViewV2RequestType value) { + return new JAXBElement(_UserViewV2_QNAME, UserViewV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressNeighborhoodNameRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressNeighborhoodName") + public JAXBElement createAddressNeighborhoodName(AddressNeighborhoodNameRequestType value) { + return new JAXBElement(_AddressNeighborhoodName_QNAME, AddressNeighborhoodNameRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKoopsommenOverzichtV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKoopsommenOverzichtV2") + public JAXBElement createKadasterKoopsommenOverzichtV2(KadasterKoopsommenOverzichtV2RequestType value) { + return new JAXBElement(_KadasterKoopsommenOverzichtV2_QNAME, KadasterKoopsommenOverzichtV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetDossierExtendedResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetDossierExtendedResponse") + public JAXBElement createBusinessGetDossierExtendedResponse(BusinessGetDossierExtendedResponseType value) { + return new JAXBElement(_BusinessGetDossierExtendedResponse_QNAME, BusinessGetDossierExtendedResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressDistrictSearchResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressDistrictSearchResponse") + public JAXBElement createAddressDistrictSearchResponse(AddressDistrictSearchResponseType value) { + return new JAXBElement(_AddressDistrictSearchResponse_QNAME, AddressDistrictSearchResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BelgianBusinessGetDossierRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "belgianBusinessGetDossier") + public JAXBElement createBelgianBusinessGetDossier(BelgianBusinessGetDossierRequestType value) { + return new JAXBElement(_BelgianBusinessGetDossier_QNAME, BelgianBusinessGetDossierRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationInternationalPostcodeCoordinatesLatLonRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationInternationalPostcodeCoordinatesLatLon") + public JAXBElement createGeoLocationInternationalPostcodeCoordinatesLatLon(GeoLocationInternationalPostcodeCoordinatesLatLonRequestType value) { + return new JAXBElement(_GeoLocationInternationalPostcodeCoordinatesLatLon_QNAME, GeoLocationInternationalPostcodeCoordinatesLatLonRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetNonMarketingIndicatorRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetNonMarketingIndicator") + public JAXBElement createDutchBusinessGetNonMarketingIndicator(DutchBusinessGetNonMarketingIndicatorRequestType value) { + return new JAXBElement(_DutchBusinessGetNonMarketingIndicator_QNAME, DutchBusinessGetNonMarketingIndicatorRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BovagGetMemberByDutchBusinessResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "bovagGetMemberByDutchBusinessResponse") + public JAXBElement createBovagGetMemberByDutchBusinessResponse(BovagGetMemberByDutchBusinessResponseType value) { + return new JAXBElement(_BovagGetMemberByDutchBusinessResponse_QNAME, BovagGetMemberByDutchBusinessResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOStartInvestigationRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOStartInvestigation") + public JAXBElement createDutchBusinessUBOStartInvestigation(DutchBusinessUBOStartInvestigationRequestType value) { + return new JAXBElement(_DutchBusinessUBOStartInvestigation_QNAME, DutchBusinessUBOStartInvestigationRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryChangedResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryChangedResponse") + public JAXBElement createDutchBusinessGetExtractHistoryChangedResponse(DutchBusinessGetExtractHistoryChangedResponseType value) { + return new JAXBElement(_DutchBusinessGetExtractHistoryChangedResponse_QNAME, DutchBusinessGetExtractHistoryChangedResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionAddressRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionAddress") + public JAXBElement createRoutePlannerDescriptionAddress(RoutePlannerDescriptionAddressRequestType value) { + return new JAXBElement(_RoutePlannerDescriptionAddress_QNAME, RoutePlannerDescriptionAddressRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserRemoveGroupRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userRemoveGroup") + public JAXBElement createUserRemoveGroup(UserRemoveGroupRequestType value) { + return new JAXBElement(_UserRemoveGroup_QNAME, UserRemoveGroupRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserRemoveGroupResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userRemoveGroupResponse") + public JAXBElement createUserRemoveGroupResponse(UserRemoveGroupResponseType value) { + return new JAXBElement(_UserRemoveGroupResponse_QNAME, UserRemoveGroupResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterBronDocumentRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterBronDocument") + public JAXBElement createKadasterBronDocument(KadasterBronDocumentRequestType value) { + return new JAXBElement(_KadasterBronDocument_QNAME, KadasterBronDocumentRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DriveInfoTimeLookupResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "driveInfoTimeLookupResponse") + public JAXBElement createDriveInfoTimeLookupResponse(DriveInfoTimeLookupResponseType value) { + return new JAXBElement(_DriveInfoTimeLookupResponse_QNAME, DriveInfoTimeLookupResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksParameterSearchResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksParameterSearchResponse") + public JAXBElement createAddressReeksParameterSearchResponse(AddressReeksParameterSearchResponseType value) { + return new JAXBElement(_AddressReeksParameterSearchResponse_QNAME, AddressReeksParameterSearchResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressProvinceListNeighborhoodsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressProvinceListNeighborhoodsResponse") + public JAXBElement createAddressProvinceListNeighborhoodsResponse(AddressProvinceListNeighborhoodsResponseType value) { + return new JAXBElement(_AddressProvinceListNeighborhoodsResponse_QNAME, AddressProvinceListNeighborhoodsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetHypothecairBerichtObjectByAdresRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetHypothecairBerichtObjectByAdres") + public JAXBElement createKadasterV2GetHypothecairBerichtObjectByAdres(KadasterV2GetHypothecairBerichtObjectByAdresRequestType value) { + return new JAXBElement(_KadasterV2GetHypothecairBerichtObjectByAdres_QNAME, KadasterV2GetHypothecairBerichtObjectByAdresRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetSBIDescriptionResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetSBIDescriptionResponse") + public JAXBElement createBusinessGetSBIDescriptionResponse(BusinessGetSBIDescriptionResponseType value) { + return new JAXBElement(_BusinessGetSBIDescriptionResponse_QNAME, BusinessGetSBIDescriptionResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserNotifyRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userNotify") + public JAXBElement createUserNotify(UserNotifyRequestType value) { + return new JAXBElement(_UserNotify_QNAME, UserNotifyRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerInformationAddressRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerInformationAddress") + public JAXBElement createRoutePlannerInformationAddress(RoutePlannerInformationAddressRequestType value) { + return new JAXBElement(_RoutePlannerInformationAddress_QNAME, RoutePlannerInformationAddressRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AreaCodeLookupRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "areaCodeLookup") + public JAXBElement createAreaCodeLookup(AreaCodeLookupRequestType value) { + return new JAXBElement(_AreaCodeLookup_QNAME, AreaCodeLookupRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbWorldbaseMarketingRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbWorldbaseMarketing") + public JAXBElement createDnbWorldbaseMarketing(DnbWorldbaseMarketingRequestType value) { + return new JAXBElement(_DnbWorldbaseMarketing_QNAME, DnbWorldbaseMarketingRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPostcodeRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPostcode") + public JAXBElement createKadasterHypothecairBerichtPostcode(KadasterHypothecairBerichtPostcodeRequestType value) { + return new JAXBElement(_KadasterHypothecairBerichtPostcode_QNAME, KadasterHypothecairBerichtPostcodeRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationInternationalAddressCoordinatesLatLonRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationInternationalAddressCoordinatesLatLon") + public JAXBElement createGeoLocationInternationalAddressCoordinatesLatLon(GeoLocationInternationalAddressCoordinatesLatLonRequestType value) { + return new JAXBElement(_GeoLocationInternationalAddressCoordinatesLatLon_QNAME, GeoLocationInternationalAddressCoordinatesLatLonRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOCostsInvestigationResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOCostsInvestigationResponse") + public JAXBElement createDutchBusinessUBOCostsInvestigationResponse(DutchBusinessUBOCostsInvestigationResponseType value) { + return new JAXBElement(_DutchBusinessUBOCostsInvestigationResponse_QNAME, DutchBusinessUBOCostsInvestigationResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchParametersRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchParameters") + public JAXBElement createDutchBusinessSearchParameters(DutchBusinessSearchParametersRequestType value) { + return new JAXBElement(_DutchBusinessSearchParameters_QNAME, DutchBusinessSearchParametersRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateGetChangedDossiersRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateGetChangedDossiers") + public JAXBElement createDutchBusinessUpdateGetChangedDossiers(DutchBusinessUpdateGetChangedDossiersRequestType value) { + return new JAXBElement(_DutchBusinessUpdateGetChangedDossiers_QNAME, DutchBusinessUpdateGetChangedDossiersRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateAddDossierRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateAddDossier") + public JAXBElement createBusinessUpdateAddDossier(BusinessUpdateAddDossierRequestType value) { + return new JAXBElement(_BusinessUpdateAddDossier_QNAME, BusinessUpdateAddDossierRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescription") + public JAXBElement createRoutePlannerDescription(RoutePlannerDescriptionRequestType value) { + return new JAXBElement(_RoutePlannerDescription_QNAME, RoutePlannerDescriptionRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MapViewRDResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "mapViewRDResponse") + public JAXBElement createMapViewRDResponse(MapViewRDResponseType value) { + return new JAXBElement(_MapViewRDResponse_QNAME, MapViewRDResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessBIKToSBIRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessBIKToSBI") + public JAXBElement createBusinessBIKToSBI(BusinessBIKToSBIRequestType value) { + return new JAXBElement(_BusinessBIKToSBI_QNAME, BusinessBIKToSBIRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEBasicTypeDataRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEBasicTypeData") + public JAXBElement createCarVWEBasicTypeData(CarVWEBasicTypeDataRequestType value) { + return new JAXBElement(_CarVWEBasicTypeData_QNAME, CarVWEBasicTypeDataRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryResponse") + public JAXBElement createDutchBusinessGetExtractHistoryResponse(DutchBusinessGetExtractHistoryResponseType value) { + return new JAXBElement(_DutchBusinessGetExtractHistoryResponse_QNAME, DutchBusinessGetExtractHistoryResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationLatLonToRDResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationLatLonToRDResponse") + public JAXBElement createGeoLocationLatLonToRDResponse(GeoLocationLatLonToRDResponseType value) { + return new JAXBElement(_GeoLocationLatLonToRDResponse_QNAME, GeoLocationLatLonToRDResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link InsolvencySearchPublicationsByCoCNumberRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "insolvencySearchPublicationsByCoCNumber") + public JAXBElement createInsolvencySearchPublicationsByCoCNumber(InsolvencySearchPublicationsByCoCNumberRequestType value) { + return new JAXBElement(_InsolvencySearchPublicationsByCoCNumber_QNAME, InsolvencySearchPublicationsByCoCNumberRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPostcodeResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPostcodeResponse") + public JAXBElement createKadasterHypothecairBerichtPostcodeResponse(KadasterHypothecairBerichtPostcodeResponseType value) { + return new JAXBElement(_KadasterHypothecairBerichtPostcodeResponse_QNAME, KadasterHypothecairBerichtPostcodeResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountGetOrderTokenRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountGetOrderToken") + public JAXBElement createAccountGetOrderToken(AccountGetOrderTokenRequestType value) { + return new JAXBElement(_AccountGetOrderToken_QNAME, AccountGetOrderTokenRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSBIToBIKRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSBIToBIK") + public JAXBElement createBusinessSBIToBIK(BusinessSBIToBIKRequestType value) { + return new JAXBElement(_BusinessSBIToBIK_QNAME, BusinessSBIToBIKRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractDocumentDataRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractDocumentData") + public JAXBElement createDutchBusinessGetExtractDocumentData(DutchBusinessGetExtractDocumentDataRequestType value) { + return new JAXBElement(_DutchBusinessGetExtractDocumentData_QNAME, DutchBusinessGetExtractDocumentDataRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbSearchReferenceV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbSearchReferenceV2Response") + public JAXBElement createDnbSearchReferenceV2Response(DnbSearchReferenceV2ResponseType value) { + return new JAXBElement(_DnbSearchReferenceV2Response_QNAME, DnbSearchReferenceV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerRDDescriptionCoordinatesRDRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerRDDescriptionCoordinatesRD") + public JAXBElement createRoutePlannerRDDescriptionCoordinatesRD(RoutePlannerRDDescriptionCoordinatesRDRequestType value) { + return new JAXBElement(_RoutePlannerRDDescriptionCoordinatesRD_QNAME, RoutePlannerRDDescriptionCoordinatesRDRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SepaMatchAccountHolderResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaMatchAccountHolderResponse") + public JAXBElement createSepaMatchAccountHolderResponse(SepaMatchAccountHolderResponseType value) { + return new JAXBElement(_SepaMatchAccountHolderResponse_QNAME, SepaMatchAccountHolderResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationAddressCoordinatesLatLonResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationAddressCoordinatesLatLonResponse") + public JAXBElement createGeoLocationAddressCoordinatesLatLonResponse(GeoLocationAddressCoordinatesLatLonResponseType value) { + return new JAXBElement(_GeoLocationAddressCoordinatesLatLonResponse_QNAME, GeoLocationAddressCoordinatesLatLonResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractDocumentResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractDocumentResponse") + public JAXBElement createDutchBusinessGetExtractDocumentResponse(DutchBusinessGetExtractDocumentResponseType value) { + return new JAXBElement(_DutchBusinessGetExtractDocumentResponse_QNAME, DutchBusinessGetExtractDocumentResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateGetDossiersRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateGetDossiers") + public JAXBElement createKvkUpdateGetDossiers(KvkUpdateGetDossiersRequestType value) { + return new JAXBElement(_KvkUpdateGetDossiers_QNAME, KvkUpdateGetDossiersRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbWorldbaseMarketingPlusLinkageResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbWorldbaseMarketingPlusLinkageResponse") + public JAXBElement createDnbWorldbaseMarketingPlusLinkageResponse(DnbWorldbaseMarketingPlusLinkageResponseType value) { + return new JAXBElement(_DnbWorldbaseMarketingPlusLinkageResponse_QNAME, DnbWorldbaseMarketingPlusLinkageResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataOptionsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataOptionsResponse") + public JAXBElement createCarRDWCarDataOptionsResponse(CarRDWCarDataOptionsResponseType value) { + return new JAXBElement(_CarRDWCarDataOptionsResponse_QNAME, CarRDWCarDataOptionsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetVehicleV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetVehicleV2Response") + public JAXBElement createDutchVehicleGetVehicleV2Response(DutchVehicleGetVehicleV2ResponseType value) { + return new JAXBElement(_DutchVehicleGetVehicleV2Response_QNAME, DutchVehicleGetVehicleV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchParametersRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchParameters") + public JAXBElement createBusinessSearchParameters(BusinessSearchParametersRequestType value) { + return new JAXBElement(_BusinessSearchParameters_QNAME, BusinessSearchParametersRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionDutchAddressResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionDutchAddressResponse") + public JAXBElement createRoutePlannerDescriptionDutchAddressResponse(RoutePlannerDescriptionDutchAddressResponseType value) { + return new JAXBElement(_RoutePlannerDescriptionDutchAddressResponse_QNAME, RoutePlannerDescriptionDutchAddressResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressProvinceListNeighborhoodsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressProvinceListNeighborhoods") + public JAXBElement createAddressProvinceListNeighborhoods(AddressProvinceListNeighborhoodsRequestType value) { + return new JAXBElement(_AddressProvinceListNeighborhoods_QNAME, AddressProvinceListNeighborhoodsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetDossierSBIRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetDossierSBI") + public JAXBElement createBusinessGetDossierSBI(BusinessGetDossierSBIRequestType value) { + return new JAXBElement(_BusinessGetDossierSBI_QNAME, BusinessGetDossierSBIRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataExtendedResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataExtendedResponse") + public JAXBElement createCarRDWCarDataExtendedResponse(CarRDWCarDataExtendedResponseType value) { + return new JAXBElement(_CarRDWCarDataExtendedResponse_QNAME, CarRDWCarDataExtendedResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link InternationalAddressSearchInteractiveResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "internationalAddressSearchInteractiveResponse") + public JAXBElement createInternationalAddressSearchInteractiveResponse(InternationalAddressSearchInteractiveResponseType value) { + return new JAXBElement(_InternationalAddressSearchInteractiveResponse_QNAME, InternationalAddressSearchInteractiveResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOCheckInvestigationRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOCheckInvestigation") + public JAXBElement createDutchBusinessUBOCheckInvestigation(DutchBusinessUBOCheckInvestigationRequestType value) { + return new JAXBElement(_DutchBusinessUBOCheckInvestigation_QNAME, DutchBusinessUBOCheckInvestigationRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountViewV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountViewV2") + public JAXBElement createAccountViewV2(AccountViewV2RequestType value) { + return new JAXBElement(_AccountViewV2_QNAME, AccountViewV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link VatValidateRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "vatValidate") + public JAXBElement createVatValidate(VatValidateRequestType value) { + return new JAXBElement(_VatValidate_QNAME, VatValidateRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbQuickCheckRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbQuickCheck") + public JAXBElement createDnbQuickCheck(DnbQuickCheckRequestType value) { + return new JAXBElement(_DnbQuickCheck_QNAME, DnbQuickCheckRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKadastraleKaartPostcodeResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKadastraleKaartPostcodeResponse") + public JAXBElement createKadasterKadastraleKaartPostcodeResponse(KadasterKadastraleKaartPostcodeResponseType value) { + return new JAXBElement(_KadasterKadastraleKaartPostcodeResponse_QNAME, KadasterKadastraleKaartPostcodeResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateGetDossiersRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateGetDossiers") + public JAXBElement createDutchBusinessUpdateGetDossiers(DutchBusinessUpdateGetDossiersRequestType value) { + return new JAXBElement(_DutchBusinessUpdateGetDossiers_QNAME, DutchBusinessUpdateGetDossiersRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditSearchIdentificationResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditSearchIdentificationResponse") + public JAXBElement createGraydonCreditSearchIdentificationResponse(GraydonCreditSearchIdentificationResponseType value) { + return new JAXBElement(_GraydonCreditSearchIdentificationResponse_QNAME, GraydonCreditSearchIdentificationResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkSearchPostcodeRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkSearchPostcode") + public JAXBElement createKvkSearchPostcode(KvkSearchPostcodeRequestType value) { + return new JAXBElement(_KvkSearchPostcode_QNAME, KvkSearchPostcodeRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountEditHostRestrictionsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountEditHostRestrictionsResponse") + public JAXBElement createAccountEditHostRestrictionsResponse(AccountEditHostRestrictionsResponseType value) { + return new JAXBElement(_AccountEditHostRestrictionsResponse_QNAME, AccountEditHostRestrictionsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressPerceelParameterSearchRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressPerceelParameterSearch") + public JAXBElement createAddressPerceelParameterSearch(AddressPerceelParameterSearchRequestType value) { + return new JAXBElement(_AddressPerceelParameterSearch_QNAME, AddressPerceelParameterSearchRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetLegalExtractDocumentDataV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetLegalExtractDocumentDataV2Response") + public JAXBElement createDutchBusinessGetLegalExtractDocumentDataV2Response(DutchBusinessGetLegalExtractDocumentDataV2ResponseType value) { + return new JAXBElement(_DutchBusinessGetLegalExtractDocumentDataV2Response_QNAME, DutchBusinessGetLegalExtractDocumentDataV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkSearchParametersRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkSearchParameters") + public JAXBElement createKvkSearchParameters(KvkSearchParametersRequestType value) { + return new JAXBElement(_KvkSearchParameters_QNAME, KvkSearchParametersRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HeaderLoginType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "HeaderLogin") + public JAXBElement createHeaderLogin(HeaderLoginType value) { + return new JAXBElement(_HeaderLogin_QNAME, HeaderLoginType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeSearchResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeSearchResponse") + public JAXBElement createCreditsafeSearchResponse(CreditsafeSearchResponseType value) { + return new JAXBElement(_CreditsafeSearchResponse_QNAME, CreditsafeSearchResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryDocumentDataV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryDocumentDataV2Response") + public JAXBElement createDutchBusinessGetExtractHistoryDocumentDataV2Response(DutchBusinessGetExtractHistoryDocumentDataV2ResponseType value) { + return new JAXBElement(_DutchBusinessGetExtractHistoryDocumentDataV2Response_QNAME, DutchBusinessGetExtractHistoryDocumentDataV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchParametersV3RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchParametersV3") + public JAXBElement createBusinessSearchParametersV3(BusinessSearchParametersV3RequestType value) { + return new JAXBElement(_BusinessSearchParametersV3_QNAME, BusinessSearchParametersV3RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchParametersV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchParametersV2") + public JAXBElement createBusinessSearchParametersV2(BusinessSearchParametersV2RequestType value) { + return new JAXBElement(_BusinessSearchParametersV2_QNAME, BusinessSearchParametersV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MapViewInternationalLatLonResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "mapViewInternationalLatLonResponse") + public JAXBElement createMapViewInternationalLatLonResponse(MapViewInternationalLatLonResponseType value) { + return new JAXBElement(_MapViewInternationalLatLonResponse_QNAME, MapViewInternationalLatLonResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BelgianBusinessGetDossierResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "belgianBusinessGetDossierResponse") + public JAXBElement createBelgianBusinessGetDossierResponse(BelgianBusinessGetDossierResponseType value) { + return new JAXBElement(_BelgianBusinessGetDossierResponse_QNAME, BelgianBusinessGetDossierResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeSearchV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeSearchV2Response") + public JAXBElement createCreditsafeSearchV2Response(CreditsafeSearchV2ResponseType value) { + return new JAXBElement(_CreditsafeSearchV2Response_QNAME, CreditsafeSearchV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressCitySearchV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressCitySearchV2") + public JAXBElement createAddressCitySearchV2(AddressCitySearchV2RequestType value) { + return new JAXBElement(_AddressCitySearchV2_QNAME, AddressCitySearchV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateAddDossierRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateAddDossier") + public JAXBElement createKvkUpdateAddDossier(KvkUpdateAddDossierRequestType value) { + return new JAXBElement(_KvkUpdateAddDossier_QNAME, KvkUpdateAddDossierRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountViewBalanceRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountViewBalance") + public JAXBElement createAccountViewBalance(AccountViewBalanceRequestType value) { + return new JAXBElement(_AccountViewBalance_QNAME, AccountViewBalanceRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchSelectionRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchSelection") + public JAXBElement createBusinessSearchSelection(BusinessSearchSelectionRequestType value) { + return new JAXBElement(_BusinessSearchSelection_QNAME, BusinessSearchSelectionRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateRemoveDossierResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateRemoveDossierResponse") + public JAXBElement createDutchBusinessUpdateRemoveDossierResponse(DutchBusinessUpdateRemoveDossierResponseType value) { + return new JAXBElement(_DutchBusinessUpdateRemoveDossierResponse_QNAME, DutchBusinessUpdateRemoveDossierResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "errorcode") + public JAXBElement createErrorcode(String value) { + return new JAXBElement(_Errorcode_QNAME, String.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeMonitorRemoveCompanyResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeMonitorRemoveCompanyResponse") + public JAXBElement createCreditsafeMonitorRemoveCompanyResponse(CreditsafeMonitorRemoveCompanyResponseType value) { + return new JAXBElement(_CreditsafeMonitorRemoveCompanyResponse_QNAME, CreditsafeMonitorRemoveCompanyResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ComplianceGetBusinessRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "complianceGetBusiness") + public JAXBElement createComplianceGetBusiness(ComplianceGetBusinessRequestType value) { + return new JAXBElement(_ComplianceGetBusiness_QNAME, ComplianceGetBusinessRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKoopsommenOverzichtV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKoopsommenOverzichtV2Response") + public JAXBElement createKadasterKoopsommenOverzichtV2Response(KadasterKoopsommenOverzichtV2ResponseType value) { + return new JAXBElement(_KadasterKoopsommenOverzichtV2Response_QNAME, KadasterKoopsommenOverzichtV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetDossierExtendedRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetDossierExtended") + public JAXBElement createBusinessGetDossierExtended(BusinessGetDossierExtendedRequestType value) { + return new JAXBElement(_BusinessGetDossierExtended_QNAME, BusinessGetDossierExtendedRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetBronDocumentRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetBronDocument") + public JAXBElement createKadasterV2GetBronDocument(KadasterV2GetBronDocumentRequestType value) { + return new JAXBElement(_KadasterV2GetBronDocument_QNAME, KadasterV2GetBronDocumentRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateCheckDossierRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateCheckDossier") + public JAXBElement createKvkUpdateCheckDossier(KvkUpdateCheckDossierRequestType value) { + return new JAXBElement(_KvkUpdateCheckDossier_QNAME, KvkUpdateCheckDossierRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MapViewLatLonRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "mapViewLatLon") + public JAXBElement createMapViewLatLon(MapViewLatLonRequestType value) { + return new JAXBElement(_MapViewLatLon_QNAME, MapViewLatLonRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateGetChangedDossiersResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateGetChangedDossiersResponse") + public JAXBElement createBusinessUpdateGetChangedDossiersResponse(BusinessUpdateGetChangedDossiersResponseType value) { + return new JAXBElement(_BusinessUpdateGetChangedDossiersResponse_QNAME, BusinessUpdateGetChangedDossiersResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditGetReportRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditGetReport") + public JAXBElement createGraydonCreditGetReport(GraydonCreditGetReportRequestType value) { + return new JAXBElement(_GraydonCreditGetReport_QNAME, GraydonCreditGetReportRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressProvinceListResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressProvinceListResponse") + public JAXBElement createAddressProvinceListResponse(AddressProvinceListResponseType value) { + return new JAXBElement(_AddressProvinceListResponse_QNAME, AddressProvinceListResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeMonitorRemoveCompanyRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeMonitorRemoveCompany") + public JAXBElement createCreditsafeMonitorRemoveCompany(CreditsafeMonitorRemoveCompanyRequestType value) { + return new JAXBElement(_CreditsafeMonitorRemoveCompany_QNAME, CreditsafeMonitorRemoveCompanyRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeSearchRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeSearch") + public JAXBElement createCreditsafeSearch(CreditsafeSearchRequestType value) { + return new JAXBElement(_CreditsafeSearch_QNAME, CreditsafeSearchRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetPurchaseReferenceRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetPurchaseReference") + public JAXBElement createDutchVehicleGetPurchaseReference(DutchVehicleGetPurchaseReferenceRequestType value) { + return new JAXBElement(_DutchVehicleGetPurchaseReference_QNAME, DutchVehicleGetPurchaseReferenceRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountEditV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountEditV2Response") + public JAXBElement createAccountEditV2Response(AccountEditV2ResponseType value) { + return new JAXBElement(_AccountEditV2Response_QNAME, AccountEditV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbBusinessVerificationResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbBusinessVerificationResponse") + public JAXBElement createDnbBusinessVerificationResponse(DnbBusinessVerificationResponseType value) { + return new JAXBElement(_DnbBusinessVerificationResponse_QNAME, DnbBusinessVerificationResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressDistrictListNeighborhoodsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressDistrictListNeighborhoodsResponse") + public JAXBElement createAddressDistrictListNeighborhoodsResponse(AddressDistrictListNeighborhoodsResponseType value) { + return new JAXBElement(_AddressDistrictListNeighborhoodsResponse_QNAME, AddressDistrictListNeighborhoodsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetOwnerHistoryResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetOwnerHistoryResponse") + public JAXBElement createDutchVehicleGetOwnerHistoryResponse(DutchVehicleGetOwnerHistoryResponseType value) { + return new JAXBElement(_DutchVehicleGetOwnerHistoryResponse_QNAME, DutchVehicleGetOwnerHistoryResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetHypothecairBerichtObjectByAdresResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetHypothecairBerichtObjectByAdresResponse") + public JAXBElement createKadasterV2GetHypothecairBerichtObjectByAdresResponse(KadasterV2GetHypothecairBerichtObjectByAdresResponseType value) { + return new JAXBElement(_KadasterV2GetHypothecairBerichtObjectByAdresResponse_QNAME, KadasterV2GetHypothecairBerichtObjectByAdresResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationInternationalPostcodeCoordinatesLatLonResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationInternationalPostcodeCoordinatesLatLonResponse") + public JAXBElement createGeoLocationInternationalPostcodeCoordinatesLatLonResponse(GeoLocationInternationalPostcodeCoordinatesLatLonResponseType value) { + return new JAXBElement(_GeoLocationInternationalPostcodeCoordinatesLatLonResponse_QNAME, GeoLocationInternationalPostcodeCoordinatesLatLonResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MapViewPostcodeV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "mapViewPostcodeV2") + public JAXBElement createMapViewPostcodeV2(MapViewPostcodeV2RequestType value) { + return new JAXBElement(_MapViewPostcodeV2_QNAME, MapViewPostcodeV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkSearchDossierNumberRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkSearchDossierNumber") + public JAXBElement createKvkSearchDossierNumber(KvkSearchDossierNumberRequestType value) { + return new JAXBElement(_KvkSearchDossierNumber_QNAME, KvkSearchDossierNumberRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserEditExtendedV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userEditExtendedV2Response") + public JAXBElement createUserEditExtendedV2Response(UserEditExtendedV2ResponseType value) { + return new JAXBElement(_UserEditExtendedV2Response_QNAME, UserEditExtendedV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressDistrictListCitiesResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressDistrictListCitiesResponse") + public JAXBElement createAddressDistrictListCitiesResponse(AddressDistrictListCitiesResponseType value) { + return new JAXBElement(_AddressDistrictListCitiesResponse_QNAME, AddressDistrictListCitiesResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetLegalExtractDocumentDataV3RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetLegalExtractDocumentDataV3") + public JAXBElement createDutchBusinessGetLegalExtractDocumentDataV3(DutchBusinessGetLegalExtractDocumentDataV3RequestType value) { + return new JAXBElement(_DutchBusinessGetLegalExtractDocumentDataV3_QNAME, DutchBusinessGetLegalExtractDocumentDataV3RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetMarketValueResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetMarketValueResponse") + public JAXBElement createDutchVehicleGetMarketValueResponse(DutchVehicleGetMarketValueResponseType value) { + return new JAXBElement(_DutchVehicleGetMarketValueResponse_QNAME, DutchVehicleGetMarketValueResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AreaCodeLookupResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "areaCodeLookupResponse") + public JAXBElement createAreaCodeLookupResponse(AreaCodeLookupResponseType value) { + return new JAXBElement(_AreaCodeLookupResponse_QNAME, AreaCodeLookupResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEVersionPriceResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEVersionPriceResponse") + public JAXBElement createCarVWEVersionPriceResponse(CarVWEVersionPriceResponseType value) { + return new JAXBElement(_CarVWEVersionPriceResponse_QNAME, CarVWEVersionPriceResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetLegalExtractDocumentDataV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetLegalExtractDocumentDataV2") + public JAXBElement createDutchBusinessGetLegalExtractDocumentDataV2(DutchBusinessGetLegalExtractDocumentDataV2RequestType value) { + return new JAXBElement(_DutchBusinessGetLegalExtractDocumentDataV2_QNAME, DutchBusinessGetLegalExtractDocumentDataV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserRemoveRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userRemove") + public JAXBElement createUserRemove(UserRemoveRequestType value) { + return new JAXBElement(_UserRemove_QNAME, UserRemoveRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserViewBalanceResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userViewBalanceResponse") + public JAXBElement createUserViewBalanceResponse(UserViewBalanceResponseType value) { + return new JAXBElement(_UserViewBalanceResponse_QNAME, UserViewBalanceResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarData") + public JAXBElement createCarRDWCarData(CarRDWCarDataRequestType value) { + return new JAXBElement(_CarRDWCarData_QNAME, CarRDWCarDataRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserAddGroupRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userAddGroup") + public JAXBElement createUserAddGroup(UserAddGroupRequestType value) { + return new JAXBElement(_UserAddGroup_QNAME, UserAddGroupRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetVehicleResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetVehicleResponse") + public JAXBElement createDutchVehicleGetVehicleResponse(DutchVehicleGetVehicleResponseType value) { + return new JAXBElement(_DutchVehicleGetVehicleResponse_QNAME, DutchVehicleGetVehicleResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistory") + public JAXBElement createDutchBusinessGetExtractHistory(DutchBusinessGetExtractHistoryRequestType value) { + return new JAXBElement(_DutchBusinessGetExtractHistory_QNAME, DutchBusinessGetExtractHistoryRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtDocumentPostcodeRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtDocumentPostcode") + public JAXBElement createKadasterEigendomsBerichtDocumentPostcode(KadasterEigendomsBerichtDocumentPostcodeRequestType value) { + return new JAXBElement(_KadasterEigendomsBerichtDocumentPostcode_QNAME, KadasterEigendomsBerichtDocumentPostcodeRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link VatViesProxyCheckVatRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "vatViesProxyCheckVat") + public JAXBElement createVatViesProxyCheckVat(VatViesProxyCheckVatRequestType value) { + return new JAXBElement(_VatViesProxyCheckVat_QNAME, VatViesProxyCheckVatRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbSearchReferenceRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbSearchReference") + public JAXBElement createDnbSearchReference(DnbSearchReferenceRequestType value) { + return new JAXBElement(_DnbSearchReference_QNAME, DnbSearchReferenceRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionCoordinatesRDRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionCoordinatesRD") + public JAXBElement createRoutePlannerDescriptionCoordinatesRD(RoutePlannerDescriptionCoordinatesRDRequestType value) { + return new JAXBElement(_RoutePlannerDescriptionCoordinatesRD_QNAME, RoutePlannerDescriptionCoordinatesRDRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SepaConvertBasicBankAccountNumberResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaConvertBasicBankAccountNumberResponse") + public JAXBElement createSepaConvertBasicBankAccountNumberResponse(SepaConvertBasicBankAccountNumberResponseType value) { + return new JAXBElement(_SepaConvertBasicBankAccountNumberResponse_QNAME, SepaConvertBasicBankAccountNumberResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetOwnerHistoryRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetOwnerHistory") + public JAXBElement createDutchVehicleGetOwnerHistory(DutchVehicleGetOwnerHistoryRequestType value) { + return new JAXBElement(_DutchVehicleGetOwnerHistory_QNAME, DutchVehicleGetOwnerHistoryRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKadastraleKaartPerceelRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKadastraleKaartPerceel") + public JAXBElement createKadasterKadastraleKaartPerceel(KadasterKadastraleKaartPerceelRequestType value) { + return new JAXBElement(_KadasterKadastraleKaartPerceel_QNAME, KadasterKadastraleKaartPerceelRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbWorldbaseMarketingResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbWorldbaseMarketingResponse") + public JAXBElement createDnbWorldbaseMarketingResponse(DnbWorldbaseMarketingResponseType value) { + return new JAXBElement(_DnbWorldbaseMarketingResponse_QNAME, DnbWorldbaseMarketingResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ComplianceGetPersonResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "complianceGetPersonResponse") + public JAXBElement createComplianceGetPersonResponse(ComplianceGetPersonResponseType value) { + return new JAXBElement(_ComplianceGetPersonResponse_QNAME, ComplianceGetPersonResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeMonitorGetUpdatedCompaniesResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeMonitorGetUpdatedCompaniesResponse") + public JAXBElement createCreditsafeMonitorGetUpdatedCompaniesResponse(CreditsafeMonitorGetUpdatedCompaniesResponseType value) { + return new JAXBElement(_CreditsafeMonitorGetUpdatedCompaniesResponse_QNAME, CreditsafeMonitorGetUpdatedCompaniesResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerRDInformationRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerRDInformation") + public JAXBElement createRoutePlannerRDInformation(RoutePlannerRDInformationRequestType value) { + return new JAXBElement(_RoutePlannerRDInformation_QNAME, RoutePlannerRDInformationRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateCheckDossierRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateCheckDossier") + public JAXBElement createDutchBusinessUpdateCheckDossier(DutchBusinessUpdateCheckDossierRequestType value) { + return new JAXBElement(_DutchBusinessUpdateCheckDossier_QNAME, DutchBusinessUpdateCheckDossierRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractDocumentDataV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractDocumentDataV2Response") + public JAXBElement createDutchBusinessGetExtractDocumentDataV2Response(DutchBusinessGetExtractDocumentDataV2ResponseType value) { + return new JAXBElement(_DutchBusinessGetExtractDocumentDataV2Response_QNAME, DutchBusinessGetExtractDocumentDataV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksPostcodeSearchRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksPostcodeSearch") + public JAXBElement createAddressReeksPostcodeSearch(AddressReeksPostcodeSearchRequestType value) { + return new JAXBElement(_AddressReeksPostcodeSearch_QNAME, AddressReeksPostcodeSearchRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditSearchPostcodeResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditSearchPostcodeResponse") + public JAXBElement createGraydonCreditSearchPostcodeResponse(GraydonCreditSearchPostcodeResponseType value) { + return new JAXBElement(_GraydonCreditSearchPostcodeResponse_QNAME, GraydonCreditSearchPostcodeResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AreaCodePostcodeLookupResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "areaCodePostcodeLookupResponse") + public JAXBElement createAreaCodePostcodeLookupResponse(AreaCodePostcodeLookupResponseType value) { + return new JAXBElement(_AreaCodePostcodeLookupResponse_QNAME, AreaCodePostcodeLookupResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SepaIbanDetailsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaIbanDetailsResponse") + public JAXBElement createSepaIbanDetailsResponse(SepaIbanDetailsResponseType value) { + return new JAXBElement(_SepaIbanDetailsResponse_QNAME, SepaIbanDetailsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditQuickscanRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditQuickscan") + public JAXBElement createGraydonCreditQuickscan(GraydonCreditQuickscanRequestType value) { + return new JAXBElement(_GraydonCreditQuickscan_QNAME, GraydonCreditQuickscanRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationInternationalLatLonToAddressResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationInternationalLatLonToAddressResponse") + public JAXBElement createGeoLocationInternationalLatLonToAddressResponse(GeoLocationInternationalLatLonToAddressResponseType value) { + return new JAXBElement(_GeoLocationInternationalLatLonToAddressResponse_QNAME, GeoLocationInternationalLatLonToAddressResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountGetCreationStatusResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountGetCreationStatusResponse") + public JAXBElement createAccountGetCreationStatusResponse(AccountGetCreationStatusResponseType value) { + return new JAXBElement(_AccountGetCreationStatusResponse_QNAME, AccountGetCreationStatusResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetUittrekselKadastraleKaartByObjectId") + public JAXBElement createKadasterV2GetUittrekselKadastraleKaartByObjectId(KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType value) { + return new JAXBElement(_KadasterV2GetUittrekselKadastraleKaartByObjectId_QNAME, KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserRemoveResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userRemoveResponse") + public JAXBElement createUserRemoveResponse(UserRemoveResponseType value) { + return new JAXBElement(_UserRemoveResponse_QNAME, UserRemoveResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetaGetServiceResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "metaGetServiceResponse") + public JAXBElement createMetaGetServiceResponse(MetaGetServiceResponseType value) { + return new JAXBElement(_MetaGetServiceResponse_QNAME, MetaGetServiceResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetLegalEntityResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetLegalEntityResponse") + public JAXBElement createDutchBusinessGetLegalEntityResponse(DutchBusinessGetLegalEntityResponseType value) { + return new JAXBElement(_DutchBusinessGetLegalEntityResponse_QNAME, DutchBusinessGetLegalEntityResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationNeighborhoodCoordinatesLatLonResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationNeighborhoodCoordinatesLatLonResponse") + public JAXBElement createGeoLocationNeighborhoodCoordinatesLatLonResponse(GeoLocationNeighborhoodCoordinatesLatLonResponseType value) { + return new JAXBElement(_GeoLocationNeighborhoodCoordinatesLatLonResponse_QNAME, GeoLocationNeighborhoodCoordinatesLatLonResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateRemoveDossierRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateRemoveDossier") + public JAXBElement createDutchBusinessUpdateRemoveDossier(DutchBusinessUpdateRemoveDossierRequestType value) { + return new JAXBElement(_DutchBusinessUpdateRemoveDossier_QNAME, DutchBusinessUpdateRemoveDossierRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressNeighborhoodPhraseSearchResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressNeighborhoodPhraseSearchResponse") + public JAXBElement createAddressNeighborhoodPhraseSearchResponse(AddressNeighborhoodPhraseSearchResponseType value) { + return new JAXBElement(_AddressNeighborhoodPhraseSearchResponse_QNAME, AddressNeighborhoodPhraseSearchResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEListBrandsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEListBrands") + public JAXBElement createCarVWEListBrands(CarVWEListBrandsRequestType value) { + return new JAXBElement(_CarVWEListBrands_QNAME, CarVWEListBrandsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchEstablishmentsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchEstablishmentsResponse") + public JAXBElement createDutchBusinessSearchEstablishmentsResponse(DutchBusinessSearchEstablishmentsResponseType value) { + return new JAXBElement(_DutchBusinessSearchEstablishmentsResponse_QNAME, DutchBusinessSearchEstablishmentsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationRDToPostcodeResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationRDToPostcodeResponse") + public JAXBElement createGeoLocationRDToPostcodeResponse(GeoLocationRDToPostcodeResponseType value) { + return new JAXBElement(_GeoLocationRDToPostcodeResponse_QNAME, GeoLocationRDToPostcodeResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtDocumentPerceelRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtDocumentPerceel") + public JAXBElement createKadasterEigendomsBerichtDocumentPerceel(KadasterEigendomsBerichtDocumentPerceelRequestType value) { + return new JAXBElement(_KadasterEigendomsBerichtDocumentPerceel_QNAME, KadasterEigendomsBerichtDocumentPerceelRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserSessionRemoveRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userSessionRemove") + public JAXBElement createUserSessionRemove(UserSessionRemoveRequestType value) { + return new JAXBElement(_UserSessionRemove_QNAME, UserSessionRemoveRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetUittrekselKadastraleKaartByAdresResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetUittrekselKadastraleKaartByAdresResponse") + public JAXBElement createKadasterV2GetUittrekselKadastraleKaartByAdresResponse(KadasterV2GetUittrekselKadastraleKaartByAdresResponseType value) { + return new JAXBElement(_KadasterV2GetUittrekselKadastraleKaartByAdresResponse_QNAME, KadasterV2GetUittrekselKadastraleKaartByAdresResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchParametersResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchParametersResponse") + public JAXBElement createDutchBusinessSearchParametersResponse(DutchBusinessSearchParametersResponseType value) { + return new JAXBElement(_DutchBusinessSearchParametersResponse_QNAME, DutchBusinessSearchParametersResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link VatViesProxyCheckVatResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "vatViesProxyCheckVatResponse") + public JAXBElement createVatViesProxyCheckVatResponse(VatViesProxyCheckVatResponseType value) { + return new JAXBElement(_VatViesProxyCheckVatResponse_QNAME, VatViesProxyCheckVatResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DriveInfoDistanceLookupRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "driveInfoDistanceLookup") + public JAXBElement createDriveInfoDistanceLookup(DriveInfoDistanceLookupRequestType value) { + return new JAXBElement(_DriveInfoDistanceLookup_QNAME, DriveInfoDistanceLookupRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditRatingsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditRatingsResponse") + public JAXBElement createGraydonCreditRatingsResponse(GraydonCreditRatingsResponseType value) { + return new JAXBElement(_GraydonCreditRatingsResponse_QNAME, GraydonCreditRatingsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchParametersV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchParametersV2Response") + public JAXBElement createBusinessSearchParametersV2Response(BusinessSearchParametersV2ResponseType value) { + return new JAXBElement(_BusinessSearchParametersV2Response_QNAME, BusinessSearchParametersV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerEUDescriptionResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerEUDescriptionResponse") + public JAXBElement createRoutePlannerEUDescriptionResponse(RoutePlannerEUDescriptionResponseType value) { + return new JAXBElement(_RoutePlannerEUDescriptionResponse_QNAME, RoutePlannerEUDescriptionResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserEditV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userEditV2") + public JAXBElement createUserEditV2(UserEditV2RequestType value) { + return new JAXBElement(_UserEditV2_QNAME, UserEditV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchNameRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchName") + public JAXBElement createBusinessSearchName(BusinessSearchNameRequestType value) { + return new JAXBElement(_BusinessSearchName_QNAME, BusinessSearchNameRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link InsolvencySearchPublicationsByCoCNumberResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "insolvencySearchPublicationsByCoCNumberResponse") + public JAXBElement createInsolvencySearchPublicationsByCoCNumberResponse(InsolvencySearchPublicationsByCoCNumberResponseType value) { + return new JAXBElement(_InsolvencySearchPublicationsByCoCNumberResponse_QNAME, InsolvencySearchPublicationsByCoCNumberResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEListVersionsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEListVersionsResponse") + public JAXBElement createCarVWEListVersionsResponse(CarVWEListVersionsResponseType value) { + return new JAXBElement(_CarVWEListVersionsResponse_QNAME, CarVWEListVersionsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MetaGetMethodResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "metaGetMethodResponse") + public JAXBElement createMetaGetMethodResponse(MetaGetMethodResponseType value) { + return new JAXBElement(_MetaGetMethodResponse_QNAME, MetaGetMethodResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetConcernRelationsDetailsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetConcernRelationsDetailsResponse") + public JAXBElement createDutchBusinessGetConcernRelationsDetailsResponse(DutchBusinessGetConcernRelationsDetailsResponseType value) { + return new JAXBElement(_DutchBusinessGetConcernRelationsDetailsResponse_QNAME, DutchBusinessGetConcernRelationsDetailsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationInternationalLatLonToAddressRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationInternationalLatLonToAddress") + public JAXBElement createGeoLocationInternationalLatLonToAddress(GeoLocationInternationalLatLonToAddressRequestType value) { + return new JAXBElement(_GeoLocationInternationalLatLonToAddress_QNAME, GeoLocationInternationalLatLonToAddressRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link LogoutResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "logoutResponse") + public JAXBElement createLogoutResponse(LogoutResponseType value) { + return new JAXBElement(_LogoutResponse_QNAME, LogoutResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOClassifyInvestigationResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOClassifyInvestigationResponse") + public JAXBElement createDutchBusinessUBOClassifyInvestigationResponse(DutchBusinessUBOClassifyInvestigationResponseType value) { + return new JAXBElement(_DutchBusinessUBOClassifyInvestigationResponse_QNAME, DutchBusinessUBOClassifyInvestigationResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksFullParameterSearchRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksFullParameterSearch") + public JAXBElement createAddressReeksFullParameterSearch(AddressReeksFullParameterSearchRequestType value) { + return new JAXBElement(_AddressReeksFullParameterSearch_QNAME, AddressReeksFullParameterSearchRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetUittrekselKadastraleKaartByAdresRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetUittrekselKadastraleKaartByAdres") + public JAXBElement createKadasterV2GetUittrekselKadastraleKaartByAdres(KadasterV2GetUittrekselKadastraleKaartByAdresRequestType value) { + return new JAXBElement(_KadasterV2GetUittrekselKadastraleKaartByAdres_QNAME, KadasterV2GetUittrekselKadastraleKaartByAdresRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKoopsommenOverzichtRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKoopsommenOverzicht") + public JAXBElement createKadasterKoopsommenOverzicht(KadasterKoopsommenOverzichtRequestType value) { + return new JAXBElement(_KadasterKoopsommenOverzicht_QNAME, KadasterKoopsommenOverzichtRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AreaCodePostcodeLookupRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "areaCodePostcodeLookup") + public JAXBElement createAreaCodePostcodeLookup(AreaCodePostcodeLookupRequestType value) { + return new JAXBElement(_AreaCodePostcodeLookup_QNAME, AreaCodePostcodeLookupRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressProvinceListDistrictsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressProvinceListDistricts") + public JAXBElement createAddressProvinceListDistricts(AddressProvinceListDistrictsRequestType value) { + return new JAXBElement(_AddressProvinceListDistricts_QNAME, AddressProvinceListDistrictsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchNameResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchNameResponse") + public JAXBElement createBusinessSearchNameResponse(BusinessSearchNameResponseType value) { + return new JAXBElement(_BusinessSearchNameResponse_QNAME, BusinessSearchNameResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditSearchIdentificationRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditSearchIdentification") + public JAXBElement createGraydonCreditSearchIdentification(GraydonCreditSearchIdentificationRequestType value) { + return new JAXBElement(_GraydonCreditSearchIdentification_QNAME, GraydonCreditSearchIdentificationRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPerceelRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPerceel") + public JAXBElement createKadasterHypothecairBerichtPerceel(KadasterHypothecairBerichtPerceelRequestType value) { + return new JAXBElement(_KadasterHypothecairBerichtPerceel_QNAME, KadasterHypothecairBerichtPerceelRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchAddressResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchAddressResponse") + public JAXBElement createBusinessSearchAddressResponse(BusinessSearchAddressResponseType value) { + return new JAXBElement(_BusinessSearchAddressResponse_QNAME, BusinessSearchAddressResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SepaValidateInternationalBankAccountNumberFormatRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaValidateInternationalBankAccountNumberFormat") + public JAXBElement createSepaValidateInternationalBankAccountNumberFormat(SepaValidateInternationalBankAccountNumberFormatRequestType value) { + return new JAXBElement(_SepaValidateInternationalBankAccountNumberFormat_QNAME, SepaValidateInternationalBankAccountNumberFormatRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link EdrGetScoreResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "edrGetScoreResponse") + public JAXBElement createEdrGetScoreResponse(EdrGetScoreResponseType value) { + return new JAXBElement(_EdrGetScoreResponse_QNAME, EdrGetScoreResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RiskCheckGetRiskPersonCompanyReportRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "riskCheckGetRiskPersonCompanyReport") + public JAXBElement createRiskCheckGetRiskPersonCompanyReport(RiskCheckGetRiskPersonCompanyReportRequestType value) { + return new JAXBElement(_RiskCheckGetRiskPersonCompanyReport_QNAME, RiskCheckGetRiskPersonCompanyReportRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbEnterpriseManagementRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbEnterpriseManagement") + public JAXBElement createDnbEnterpriseManagement(DnbEnterpriseManagementRequestType value) { + return new JAXBElement(_DnbEnterpriseManagement_QNAME, DnbEnterpriseManagementRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetOrganizationTreeRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetOrganizationTree") + public JAXBElement createDutchBusinessGetOrganizationTree(DutchBusinessGetOrganizationTreeRequestType value) { + return new JAXBElement(_DutchBusinessGetOrganizationTree_QNAME, DutchBusinessGetOrganizationTreeRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetEstablishmentNumberResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetEstablishmentNumberResponse") + public JAXBElement createBusinessGetEstablishmentNumberResponse(BusinessGetEstablishmentNumberResponseType value) { + return new JAXBElement(_BusinessGetEstablishmentNumberResponse_QNAME, BusinessGetEstablishmentNumberResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEPhotosRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEPhotos") + public JAXBElement createCarVWEPhotos(CarVWEPhotosRequestType value) { + return new JAXBElement(_CarVWEPhotos_QNAME, CarVWEPhotosRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetLeiRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetLei") + public JAXBElement createDutchBusinessGetLei(DutchBusinessGetLeiRequestType value) { + return new JAXBElement(_DutchBusinessGetLei_QNAME, DutchBusinessGetLeiRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationLatLonToAddressV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationLatLonToAddressV2") + public JAXBElement createGeoLocationLatLonToAddressV2(GeoLocationLatLonToAddressV2RequestType value) { + return new JAXBElement(_GeoLocationLatLonToAddressV2_QNAME, GeoLocationLatLonToAddressV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AreaCodeToNeighborhoodcodeRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "areaCodeToNeighborhoodcode") + public JAXBElement createAreaCodeToNeighborhoodcode(AreaCodeToNeighborhoodcodeRequestType value) { + return new JAXBElement(_AreaCodeToNeighborhoodcode_QNAME, AreaCodeToNeighborhoodcodeRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountGetCreationTokenRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountGetCreationToken") + public JAXBElement createAccountGetCreationToken(AccountGetCreationTokenRequestType value) { + return new JAXBElement(_AccountGetCreationToken_QNAME, AccountGetCreationTokenRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link EdrGetScoreRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "edrGetScore") + public JAXBElement createEdrGetScore(EdrGetScoreRequestType value) { + return new JAXBElement(_EdrGetScore_QNAME, EdrGetScoreRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerRDInformationResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerRDInformationResponse") + public JAXBElement createRoutePlannerRDInformationResponse(RoutePlannerRDInformationResponseType value) { + return new JAXBElement(_RoutePlannerRDInformationResponse_QNAME, RoutePlannerRDInformationResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchParametersV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchParametersV2") + public JAXBElement createDutchBusinessSearchParametersV2(DutchBusinessSearchParametersV2RequestType value) { + return new JAXBElement(_DutchBusinessSearchParametersV2_QNAME, DutchBusinessSearchParametersV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationLatLonToRDRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationLatLonToRD") + public JAXBElement createGeoLocationLatLonToRD(GeoLocationLatLonToRDRequestType value) { + return new JAXBElement(_GeoLocationLatLonToRD_QNAME, GeoLocationLatLonToRDRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerEUDescriptionRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerEUDescription") + public JAXBElement createRoutePlannerEUDescription(RoutePlannerEUDescriptionRequestType value) { + return new JAXBElement(_RoutePlannerEUDescription_QNAME, RoutePlannerEUDescriptionRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationLatLonToPostcodeRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationLatLonToPostcode") + public JAXBElement createGeoLocationLatLonToPostcode(GeoLocationLatLonToPostcodeRequestType value) { + return new JAXBElement(_GeoLocationLatLonToPostcode_QNAME, GeoLocationLatLonToPostcodeRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPerceelResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPerceelResponse") + public JAXBElement createKadasterUittrekselKadastraleKaartPerceelResponse(KadasterUittrekselKadastraleKaartPerceelResponseType value) { + return new JAXBElement(_KadasterUittrekselKadastraleKaartPerceelResponse_QNAME, KadasterUittrekselKadastraleKaartPerceelResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateAddDossierResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateAddDossierResponse") + public JAXBElement createKvkUpdateAddDossierResponse(KvkUpdateAddDossierResponseType value) { + return new JAXBElement(_KvkUpdateAddDossierResponse_QNAME, KvkUpdateAddDossierResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationRDToLatLonResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationRDToLatLonResponse") + public JAXBElement createGeoLocationRDToLatLonResponse(GeoLocationRDToLatLonResponseType value) { + return new JAXBElement(_GeoLocationRDToLatLonResponse_QNAME, GeoLocationRDToLatLonResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryDocumentDataRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryDocumentData") + public JAXBElement createDutchBusinessGetExtractHistoryDocumentData(DutchBusinessGetExtractHistoryDocumentDataRequestType value) { + return new JAXBElement(_DutchBusinessGetExtractHistoryDocumentData_QNAME, DutchBusinessGetExtractHistoryDocumentDataRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateCheckDossierResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateCheckDossierResponse") + public JAXBElement createBusinessUpdateCheckDossierResponse(BusinessUpdateCheckDossierResponseType value) { + return new JAXBElement(_BusinessUpdateCheckDossierResponse_QNAME, BusinessUpdateCheckDossierResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressPerceelFullParameterSearchV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressPerceelFullParameterSearchV2Response") + public JAXBElement createAddressPerceelFullParameterSearchV2Response(AddressPerceelFullParameterSearchV2ResponseType value) { + return new JAXBElement(_AddressPerceelFullParameterSearchV2Response_QNAME, AddressPerceelFullParameterSearchV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPostcodeV3ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPostcodeV3Response") + public JAXBElement createKadasterHypothecairBerichtPostcodeV3Response(KadasterHypothecairBerichtPostcodeV3ResponseType value) { + return new JAXBElement(_KadasterHypothecairBerichtPostcodeV3Response_QNAME, KadasterHypothecairBerichtPostcodeV3ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterValueListGetRangesResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterValueListGetRangesResponse") + public JAXBElement createKadasterValueListGetRangesResponse(KadasterValueListGetRangesResponseType value) { + return new JAXBElement(_KadasterValueListGetRangesResponse_QNAME, KadasterValueListGetRangesResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateRemoveDossierRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateRemoveDossier") + public JAXBElement createKvkUpdateRemoveDossier(KvkUpdateRemoveDossierRequestType value) { + return new JAXBElement(_KvkUpdateRemoveDossier_QNAME, KvkUpdateRemoveDossierRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link LogoutRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "logout") + public JAXBElement createLogout(LogoutRequestType value) { + return new JAXBElement(_Logout_QNAME, LogoutRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateCheckDossierResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateCheckDossierResponse") + public JAXBElement createDutchBusinessUpdateCheckDossierResponse(DutchBusinessUpdateCheckDossierResponseType value) { + return new JAXBElement(_DutchBusinessUpdateCheckDossierResponse_QNAME, DutchBusinessUpdateCheckDossierResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchParametersResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchParametersResponse") + public JAXBElement createBusinessSearchParametersResponse(BusinessSearchParametersResponseType value) { + return new JAXBElement(_BusinessSearchParametersResponse_QNAME, BusinessSearchParametersResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchParametersV3ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchParametersV3Response") + public JAXBElement createBusinessSearchParametersV3Response(BusinessSearchParametersV3ResponseType value) { + return new JAXBElement(_BusinessSearchParametersV3Response_QNAME, BusinessSearchParametersV3ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarCheckCodeRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarCheckCode") + public JAXBElement createCarRDWCarCheckCode(CarRDWCarCheckCodeRequestType value) { + return new JAXBElement(_CarRDWCarCheckCode_QNAME, CarRDWCarCheckCodeRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryChangedRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryChanged") + public JAXBElement createDutchBusinessGetExtractHistoryChanged(DutchBusinessGetExtractHistoryChangedRequestType value) { + return new JAXBElement(_DutchBusinessGetExtractHistoryChanged_QNAME, DutchBusinessGetExtractHistoryChangedRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationNeighborhoodCoordinatesRDRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationNeighborhoodCoordinatesRD") + public JAXBElement createGeoLocationNeighborhoodCoordinatesRD(GeoLocationNeighborhoodCoordinatesRDRequestType value) { + return new JAXBElement(_GeoLocationNeighborhoodCoordinatesRD_QNAME, GeoLocationNeighborhoodCoordinatesRDRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateGetDossiersRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateGetDossiers") + public JAXBElement createBusinessUpdateGetDossiers(BusinessUpdateGetDossiersRequestType value) { + return new JAXBElement(_BusinessUpdateGetDossiers_QNAME, BusinessUpdateGetDossiersRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerInformationDutchAddressRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerInformationDutchAddress") + public JAXBElement createRoutePlannerInformationDutchAddress(RoutePlannerInformationDutchAddressRequestType value) { + return new JAXBElement(_RoutePlannerInformationDutchAddress_QNAME, RoutePlannerInformationDutchAddressRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationNeighborhoodCoordinatesLatLonRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationNeighborhoodCoordinatesLatLon") + public JAXBElement createGeoLocationNeighborhoodCoordinatesLatLon(GeoLocationNeighborhoodCoordinatesLatLonRequestType value) { + return new JAXBElement(_GeoLocationNeighborhoodCoordinatesLatLon_QNAME, GeoLocationNeighborhoodCoordinatesLatLonRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetKadastraalBerichtObjectByObjectIdResponse") + public JAXBElement createKadasterV2GetKadastraalBerichtObjectByObjectIdResponse(KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType value) { + return new JAXBElement(_KadasterV2GetKadastraalBerichtObjectByObjectIdResponse_QNAME, KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserCreateV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userCreateV2") + public JAXBElement createUserCreateV2(UserCreateV2RequestType value) { + return new JAXBElement(_UserCreateV2_QNAME, UserCreateV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserViewHostRestrictionsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userViewHostRestrictions") + public JAXBElement createUserViewHostRestrictions(UserViewHostRestrictionsRequestType value) { + return new JAXBElement(_UserViewHostRestrictions_QNAME, UserViewHostRestrictionsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressProvinceSearchResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressProvinceSearchResponse") + public JAXBElement createAddressProvinceSearchResponse(AddressProvinceSearchResponseType value) { + return new JAXBElement(_AddressProvinceSearchResponse_QNAME, AddressProvinceSearchResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetDossierV3ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetDossierV3Response") + public JAXBElement createDutchBusinessGetDossierV3Response(DutchBusinessGetDossierV3ResponseType value) { + return new JAXBElement(_DutchBusinessGetDossierV3Response_QNAME, DutchBusinessGetDossierV3ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbWorldbaseMarketingPlusResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbWorldbaseMarketingPlusResponse") + public JAXBElement createDnbWorldbaseMarketingPlusResponse(DnbWorldbaseMarketingPlusResponseType value) { + return new JAXBElement(_DnbWorldbaseMarketingPlusResponse_QNAME, DnbWorldbaseMarketingPlusResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RiskCheckPersonRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "riskCheckPerson") + public JAXBElement createRiskCheckPerson(RiskCheckPersonRequestType value) { + return new JAXBElement(_RiskCheckPerson_QNAME, RiskCheckPersonRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ComplianceGetBusinessResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "complianceGetBusinessResponse") + public JAXBElement createComplianceGetBusinessResponse(ComplianceGetBusinessResponseType value) { + return new JAXBElement(_ComplianceGetBusinessResponse_QNAME, ComplianceGetBusinessResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditCompanyLiaisonsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditCompanyLiaisons") + public JAXBElement createGraydonCreditCompanyLiaisons(GraydonCreditCompanyLiaisonsRequestType value) { + return new JAXBElement(_GraydonCreditCompanyLiaisons_QNAME, GraydonCreditCompanyLiaisonsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetConcernRelationsOverviewResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetConcernRelationsOverviewResponse") + public JAXBElement createDutchBusinessGetConcernRelationsOverviewResponse(DutchBusinessGetConcernRelationsOverviewResponseType value) { + return new JAXBElement(_DutchBusinessGetConcernRelationsOverviewResponse_QNAME, DutchBusinessGetConcernRelationsOverviewResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPerceelV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPerceelV2Response") + public JAXBElement createKadasterUittrekselKadastraleKaartPerceelV2Response(KadasterUittrekselKadastraleKaartPerceelV2ResponseType value) { + return new JAXBElement(_KadasterUittrekselKadastraleKaartPerceelV2Response_QNAME, KadasterUittrekselKadastraleKaartPerceelV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPerceelV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPerceelV2") + public JAXBElement createKadasterUittrekselKadastraleKaartPerceelV2(KadasterUittrekselKadastraleKaartPerceelV2RequestType value) { + return new JAXBElement(_KadasterUittrekselKadastraleKaartPerceelV2_QNAME, KadasterUittrekselKadastraleKaartPerceelV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateGetChangedDossiersResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateGetChangedDossiersResponse") + public JAXBElement createKvkUpdateGetChangedDossiersResponse(KvkUpdateGetChangedDossiersResponseType value) { + return new JAXBElement(_KvkUpdateGetChangedDossiersResponse_QNAME, KvkUpdateGetChangedDossiersResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPerceelV3RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPerceelV3") + public JAXBElement createKadasterUittrekselKadastraleKaartPerceelV3(KadasterUittrekselKadastraleKaartPerceelV3RequestType value) { + return new JAXBElement(_KadasterUittrekselKadastraleKaartPerceelV3_QNAME, KadasterUittrekselKadastraleKaartPerceelV3RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserSessionListRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userSessionList") + public JAXBElement createUserSessionList(UserSessionListRequestType value) { + return new JAXBElement(_UserSessionList_QNAME, UserSessionListRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKoopsommenOverzichtResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKoopsommenOverzichtResponse") + public JAXBElement createKadasterKoopsommenOverzichtResponse(KadasterKoopsommenOverzichtResponseType value) { + return new JAXBElement(_KadasterKoopsommenOverzichtResponse_QNAME, KadasterKoopsommenOverzichtResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ComplianceSearchPersonsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "complianceSearchPersons") + public JAXBElement createComplianceSearchPersons(ComplianceSearchPersonsRequestType value) { + return new JAXBElement(_ComplianceSearchPersons_QNAME, ComplianceSearchPersonsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationNeighborhoodDistanceRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationNeighborhoodDistance") + public JAXBElement createGeoLocationNeighborhoodDistance(GeoLocationNeighborhoodDistanceRequestType value) { + return new JAXBElement(_GeoLocationNeighborhoodDistance_QNAME, GeoLocationNeighborhoodDistanceRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchNewsByDossierResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchNewsByDossierResponse") + public JAXBElement createDutchBusinessSearchNewsByDossierResponse(DutchBusinessSearchNewsByDossierResponseType value) { + return new JAXBElement(_DutchBusinessSearchNewsByDossierResponse_QNAME, DutchBusinessSearchNewsByDossierResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditManagementResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditManagementResponse") + public JAXBElement createGraydonCreditManagementResponse(GraydonCreditManagementResponseType value) { + return new JAXBElement(_GraydonCreditManagementResponse_QNAME, GraydonCreditManagementResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchPostcodeRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchPostcode") + public JAXBElement createBusinessSearchPostcode(BusinessSearchPostcodeRequestType value) { + return new JAXBElement(_BusinessSearchPostcode_QNAME, BusinessSearchPostcodeRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchSelectionResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchSelectionResponse") + public JAXBElement createBusinessSearchSelectionResponse(BusinessSearchSelectionResponseType value) { + return new JAXBElement(_BusinessSearchSelectionResponse_QNAME, BusinessSearchSelectionResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractDocumentRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractDocument") + public JAXBElement createDutchBusinessGetExtractDocument(DutchBusinessGetExtractDocumentRequestType value) { + return new JAXBElement(_DutchBusinessGetExtractDocument_QNAME, DutchBusinessGetExtractDocumentRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditGetReportResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditGetReportResponse") + public JAXBElement createGraydonCreditGetReportResponse(GraydonCreditGetReportResponseType value) { + return new JAXBElement(_GraydonCreditGetReportResponse_QNAME, GraydonCreditGetReportResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SepaIbanDetailsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaIbanDetails") + public JAXBElement createSepaIbanDetails(SepaIbanDetailsRequestType value) { + return new JAXBElement(_SepaIbanDetails_QNAME, SepaIbanDetailsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateGetChangedDossiersRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateGetChangedDossiers") + public JAXBElement createBusinessUpdateGetChangedDossiers(BusinessUpdateGetChangedDossiersRequestType value) { + return new JAXBElement(_BusinessUpdateGetChangedDossiers_QNAME, BusinessUpdateGetChangedDossiersRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetEstablishmentNumberRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetEstablishmentNumber") + public JAXBElement createBusinessGetEstablishmentNumber(BusinessGetEstablishmentNumberRequestType value) { + return new JAXBElement(_BusinessGetEstablishmentNumber_QNAME, BusinessGetEstablishmentNumberRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkSearchDossierNumberResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkSearchDossierNumberResponse") + public JAXBElement createKvkSearchDossierNumberResponse(KvkSearchDossierNumberResponseType value) { + return new JAXBElement(_KvkSearchDossierNumberResponse_QNAME, KvkSearchDossierNumberResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEPhotosResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEPhotosResponse") + public JAXBElement createCarVWEPhotosResponse(CarVWEPhotosResponseType value) { + return new JAXBElement(_CarVWEPhotosResponse_QNAME, CarVWEPhotosResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchSelectionSimpleResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchSelectionSimpleResponse") + public JAXBElement createDutchBusinessSearchSelectionSimpleResponse(DutchBusinessSearchSelectionSimpleResponseType value) { + return new JAXBElement(_DutchBusinessSearchSelectionSimpleResponse_QNAME, DutchBusinessSearchSelectionSimpleResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataBPRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataBP") + public JAXBElement createCarRDWCarDataBP(CarRDWCarDataBPRequestType value) { + return new JAXBElement(_CarRDWCarDataBP_QNAME, CarRDWCarDataBPRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditVatNumberRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditVatNumber") + public JAXBElement createGraydonCreditVatNumber(GraydonCreditVatNumberRequestType value) { + return new JAXBElement(_GraydonCreditVatNumber_QNAME, GraydonCreditVatNumberRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetBronDocumentResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetBronDocumentResponse") + public JAXBElement createKadasterV2GetBronDocumentResponse(KadasterV2GetBronDocumentResponseType value) { + return new JAXBElement(_KadasterV2GetBronDocumentResponse_QNAME, KadasterV2GetBronDocumentResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionCoordinatesRDResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionCoordinatesRDResponse") + public JAXBElement createRoutePlannerDescriptionCoordinatesRDResponse(RoutePlannerDescriptionCoordinatesRDResponseType value) { + return new JAXBElement(_RoutePlannerDescriptionCoordinatesRDResponse_QNAME, RoutePlannerDescriptionCoordinatesRDResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduiding") + public JAXBElement createKadasterV2GetUittrekselKadastraleKaartByKadastraleAanduiding(KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType value) { + return new JAXBElement(_KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduiding_QNAME, KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserAddGroupResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userAddGroupResponse") + public JAXBElement createUserAddGroupResponse(UserAddGroupResponseType value) { + return new JAXBElement(_UserAddGroupResponse_QNAME, UserAddGroupResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtPostcodeRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtPostcode") + public JAXBElement createKadasterEigendomsBerichtPostcode(KadasterEigendomsBerichtPostcodeRequestType value) { + return new JAXBElement(_KadasterEigendomsBerichtPostcode_QNAME, KadasterEigendomsBerichtPostcodeRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchEstablishmentsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchEstablishments") + public JAXBElement createDutchBusinessSearchEstablishments(DutchBusinessSearchEstablishmentsRequestType value) { + return new JAXBElement(_DutchBusinessSearchEstablishments_QNAME, DutchBusinessSearchEstablishmentsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link HeaderAuthenticateType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "HeaderAuthenticate") + public JAXBElement createHeaderAuthenticate(HeaderAuthenticateType value) { + return new JAXBElement(_HeaderAuthenticate_QNAME, HeaderAuthenticateType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetAnnualFinancialStatementRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetAnnualFinancialStatement") + public JAXBElement createDutchBusinessGetAnnualFinancialStatement(DutchBusinessGetAnnualFinancialStatementRequestType value) { + return new JAXBElement(_DutchBusinessGetAnnualFinancialStatement_QNAME, DutchBusinessGetAnnualFinancialStatementRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEListModelsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEListModels") + public JAXBElement createCarVWEListModels(CarVWEListModelsRequestType value) { + return new JAXBElement(_CarVWEListModels_QNAME, CarVWEListModelsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserEditV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userEditV2Response") + public JAXBElement createUserEditV2Response(UserEditV2ResponseType value) { + return new JAXBElement(_UserEditV2Response_QNAME, UserEditV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressPerceelFullParameterSearchRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressPerceelFullParameterSearch") + public JAXBElement createAddressPerceelFullParameterSearch(AddressPerceelFullParameterSearchRequestType value) { + return new JAXBElement(_AddressPerceelFullParameterSearch_QNAME, AddressPerceelFullParameterSearchRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateGetDossiersResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateGetDossiersResponse") + public JAXBElement createBusinessUpdateGetDossiersResponse(BusinessUpdateGetDossiersResponseType value) { + return new JAXBElement(_BusinessUpdateGetDossiersResponse_QNAME, BusinessUpdateGetDossiersResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateTestUserResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "createTestUserResponse") + public JAXBElement createCreateTestUserResponse(CreateTestUserResponseType value) { + return new JAXBElement(_CreateTestUserResponse_QNAME, CreateTestUserResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressPerceelFullParameterSearchResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressPerceelFullParameterSearchResponse") + public JAXBElement createAddressPerceelFullParameterSearchResponse(AddressPerceelFullParameterSearchResponseType value) { + return new JAXBElement(_AddressPerceelFullParameterSearchResponse_QNAME, AddressPerceelFullParameterSearchResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BovagGetMemberByDutchBusinessRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "bovagGetMemberByDutchBusiness") + public JAXBElement createBovagGetMemberByDutchBusiness(BovagGetMemberByDutchBusinessRequestType value) { + return new JAXBElement(_BovagGetMemberByDutchBusiness_QNAME, BovagGetMemberByDutchBusinessRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link InsolvencySearchPublicationsByPersonRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "insolvencySearchPublicationsByPerson") + public JAXBElement createInsolvencySearchPublicationsByPerson(InsolvencySearchPublicationsByPersonRequestType value) { + return new JAXBElement(_InsolvencySearchPublicationsByPerson_QNAME, InsolvencySearchPublicationsByPersonRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationRDToLatLonRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationRDToLatLon") + public JAXBElement createGeoLocationRDToLatLon(GeoLocationRDToLatLonRequestType value) { + return new JAXBElement(_GeoLocationRDToLatLon_QNAME, GeoLocationRDToLatLonRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetSBIResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetSBIResponse") + public JAXBElement createDutchBusinessGetSBIResponse(DutchBusinessGetSBIResponseType value) { + return new JAXBElement(_DutchBusinessGetSBIResponse_QNAME, DutchBusinessGetSBIResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserEditBalanceRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userEditBalance") + public JAXBElement createUserEditBalance(UserEditBalanceRequestType value) { + return new JAXBElement(_UserEditBalance_QNAME, UserEditBalanceRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountUserListV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountUserListV2Response") + public JAXBElement createAccountUserListV2Response(AccountUserListV2ResponseType value) { + return new JAXBElement(_AccountUserListV2Response_QNAME, AccountUserListV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link InternationalAddressSearchInteractiveRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "internationalAddressSearchInteractive") + public JAXBElement createInternationalAddressSearchInteractive(InternationalAddressSearchInteractiveRequestType value) { + return new JAXBElement(_InternationalAddressSearchInteractive_QNAME, InternationalAddressSearchInteractiveRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressDistrictSearchRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressDistrictSearch") + public JAXBElement createAddressDistrictSearch(AddressDistrictSearchRequestType value) { + return new JAXBElement(_AddressDistrictSearch_QNAME, AddressDistrictSearchRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationDistanceSortedNeighborhoodCodesRadius") + public JAXBElement createGeoLocationDistanceSortedNeighborhoodCodesRadius(GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType value) { + return new JAXBElement(_GeoLocationDistanceSortedNeighborhoodCodesRadius_QNAME, GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationDistanceSortedPostcodesResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationDistanceSortedPostcodesResponse") + public JAXBElement createGeoLocationDistanceSortedPostcodesResponse(GeoLocationDistanceSortedPostcodesResponseType value) { + return new JAXBElement(_GeoLocationDistanceSortedPostcodesResponse_QNAME, GeoLocationDistanceSortedPostcodesResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressProvinceListRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressProvinceList") + public JAXBElement createAddressProvinceList(AddressProvinceListRequestType value) { + return new JAXBElement(_AddressProvinceList_QNAME, AddressProvinceListRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEListBrandsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEListBrandsResponse") + public JAXBElement createCarVWEListBrandsResponse(CarVWEListBrandsResponseType value) { + return new JAXBElement(_CarVWEListBrandsResponse_QNAME, CarVWEListBrandsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountGetCreationStatusRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountGetCreationStatus") + public JAXBElement createAccountGetCreationStatus(AccountGetCreationStatusRequestType value) { + return new JAXBElement(_AccountGetCreationStatus_QNAME, AccountGetCreationStatusRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationDistanceSortedPostcodesRadiusRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationDistanceSortedPostcodesRadius") + public JAXBElement createGeoLocationDistanceSortedPostcodesRadius(GeoLocationDistanceSortedPostcodesRadiusRequestType value) { + return new JAXBElement(_GeoLocationDistanceSortedPostcodesRadius_QNAME, GeoLocationDistanceSortedPostcodesRadiusRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksPhraseSearchResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksPhraseSearchResponse") + public JAXBElement createAddressReeksPhraseSearchResponse(AddressReeksPhraseSearchResponseType value) { + return new JAXBElement(_AddressReeksPhraseSearchResponse_QNAME, AddressReeksPhraseSearchResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryDocumentDataV3ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryDocumentDataV3Response") + public JAXBElement createDutchBusinessGetExtractHistoryDocumentDataV3Response(DutchBusinessGetExtractHistoryDocumentDataV3ResponseType value) { + return new JAXBElement(_DutchBusinessGetExtractHistoryDocumentDataV3Response_QNAME, DutchBusinessGetExtractHistoryDocumentDataV3ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchNewsByDossierRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchNewsByDossier") + public JAXBElement createDutchBusinessSearchNewsByDossier(DutchBusinessSearchNewsByDossierRequestType value) { + return new JAXBElement(_DutchBusinessSearchNewsByDossier_QNAME, DutchBusinessSearchNewsByDossierRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationAddressCoordinatesRDResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationAddressCoordinatesRDResponse") + public JAXBElement createGeoLocationAddressCoordinatesRDResponse(GeoLocationAddressCoordinatesRDResponseType value) { + return new JAXBElement(_GeoLocationAddressCoordinatesRDResponse_QNAME, GeoLocationAddressCoordinatesRDResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetKadastraalBerichtObjectByObjectId") + public JAXBElement createKadasterV2GetKadastraalBerichtObjectByObjectId(KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType value) { + return new JAXBElement(_KadasterV2GetKadastraalBerichtObjectByObjectId_QNAME, KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetHypothecairBerichtObjectByKadastraleAanduiding") + public JAXBElement createKadasterV2GetHypothecairBerichtObjectByKadastraleAanduiding(KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType value) { + return new JAXBElement(_KadasterV2GetHypothecairBerichtObjectByKadastraleAanduiding_QNAME, KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link LoginResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "loginResponse") + public JAXBElement createLoginResponse(LoginResponseType value) { + return new JAXBElement(_LoginResponse_QNAME, LoginResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserListAssignableGroupsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userListAssignableGroups") + public JAXBElement createUserListAssignableGroups(UserListAssignableGroupsRequestType value) { + return new JAXBElement(_UserListAssignableGroups_QNAME, UserListAssignableGroupsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchPostcodeRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchPostcode") + public JAXBElement createDutchBusinessSearchPostcode(DutchBusinessSearchPostcodeRequestType value) { + return new JAXBElement(_DutchBusinessSearchPostcode_QNAME, DutchBusinessSearchPostcodeRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataPriceResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataPriceResponse") + public JAXBElement createCarRDWCarDataPriceResponse(CarRDWCarDataPriceResponseType value) { + return new JAXBElement(_CarRDWCarDataPriceResponse_QNAME, CarRDWCarDataPriceResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPostcodeV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPostcodeV2Response") + public JAXBElement createKadasterHypothecairBerichtPostcodeV2Response(KadasterHypothecairBerichtPostcodeV2ResponseType value) { + return new JAXBElement(_KadasterHypothecairBerichtPostcodeV2Response_QNAME, KadasterHypothecairBerichtPostcodeV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterBronDocumentResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterBronDocumentResponse") + public JAXBElement createKadasterBronDocumentResponse(KadasterBronDocumentResponseType value) { + return new JAXBElement(_KadasterBronDocumentResponse_QNAME, KadasterBronDocumentResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateAddDossierResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateAddDossierResponse") + public JAXBElement createDutchBusinessUpdateAddDossierResponse(DutchBusinessUpdateAddDossierResponseType value) { + return new JAXBElement(_DutchBusinessUpdateAddDossierResponse_QNAME, DutchBusinessUpdateAddDossierResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountUserListV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountUserListV2") + public JAXBElement createAccountUserListV2(AccountUserListV2RequestType value) { + return new JAXBElement(_AccountUserListV2_QNAME, AccountUserListV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetSBIDescriptionRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetSBIDescription") + public JAXBElement createBusinessGetSBIDescription(BusinessGetSBIDescriptionRequestType value) { + return new JAXBElement(_BusinessGetSBIDescription_QNAME, BusinessGetSBIDescriptionRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerInformationDutchAddressResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerInformationDutchAddressResponse") + public JAXBElement createRoutePlannerInformationDutchAddressResponse(RoutePlannerInformationDutchAddressResponseType value) { + return new JAXBElement(_RoutePlannerInformationDutchAddressResponse_QNAME, RoutePlannerInformationDutchAddressResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserListAssignableGroupsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userListAssignableGroupsResponse") + public JAXBElement createUserListAssignableGroupsResponse(UserListAssignableGroupsResponseType value) { + return new JAXBElement(_UserListAssignableGroupsResponse_QNAME, UserListAssignableGroupsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchDossierNumberResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchDossierNumberResponse") + public JAXBElement createBusinessSearchDossierNumberResponse(BusinessSearchDossierNumberResponseType value) { + return new JAXBElement(_BusinessSearchDossierNumberResponse_QNAME, BusinessSearchDossierNumberResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressNeighborhoodPhraseSearchRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressNeighborhoodPhraseSearch") + public JAXBElement createAddressNeighborhoodPhraseSearch(AddressNeighborhoodPhraseSearchRequestType value) { + return new JAXBElement(_AddressNeighborhoodPhraseSearch_QNAME, AddressNeighborhoodPhraseSearchRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPerceelV3ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPerceelV3Response") + public JAXBElement createKadasterHypothecairBerichtPerceelV3Response(KadasterHypothecairBerichtPerceelV3ResponseType value) { + return new JAXBElement(_KadasterHypothecairBerichtPerceelV3Response_QNAME, KadasterHypothecairBerichtPerceelV3ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerEUMapResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerEUMapResponse") + public JAXBElement createRoutePlannerEUMapResponse(RoutePlannerEUMapResponseType value) { + return new JAXBElement(_RoutePlannerEUMapResponse_QNAME, RoutePlannerEUMapResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKadastraleKaartPerceelV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKadastraleKaartPerceelV2Response") + public JAXBElement createKadasterKadastraleKaartPerceelV2Response(KadasterKadastraleKaartPerceelV2ResponseType value) { + return new JAXBElement(_KadasterKadastraleKaartPerceelV2Response_QNAME, KadasterKadastraleKaartPerceelV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetHypothecairBerichtObjectByObjectIdResponse") + public JAXBElement createKadasterV2GetHypothecairBerichtObjectByObjectIdResponse(KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType value) { + return new JAXBElement(_KadasterV2GetHypothecairBerichtObjectByObjectIdResponse_QNAME, KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateGetDossiersResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateGetDossiersResponse") + public JAXBElement createDutchBusinessUpdateGetDossiersResponse(DutchBusinessUpdateGetDossiersResponseType value) { + return new JAXBElement(_DutchBusinessUpdateGetDossiersResponse_QNAME, DutchBusinessUpdateGetDossiersResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressPerceelFullParameterSearchV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressPerceelFullParameterSearchV2") + public JAXBElement createAddressPerceelFullParameterSearchV2(AddressPerceelFullParameterSearchV2RequestType value) { + return new JAXBElement(_AddressPerceelFullParameterSearchV2_QNAME, AddressPerceelFullParameterSearchV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOStartInvestigationResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOStartInvestigationResponse") + public JAXBElement createDutchBusinessUBOStartInvestigationResponse(DutchBusinessUBOStartInvestigationResponseType value) { + return new JAXBElement(_DutchBusinessUBOStartInvestigationResponse_QNAME, DutchBusinessUBOStartInvestigationResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressCitySearchV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressCitySearchV2Response") + public JAXBElement createAddressCitySearchV2Response(AddressCitySearchV2ResponseType value) { + return new JAXBElement(_AddressCitySearchV2Response_QNAME, AddressCitySearchV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserEditHostRestrictionsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userEditHostRestrictions") + public JAXBElement createUserEditHostRestrictions(UserEditHostRestrictionsRequestType value) { + return new JAXBElement(_UserEditHostRestrictions_QNAME, UserEditHostRestrictionsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataOptionsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataOptions") + public JAXBElement createCarRDWCarDataOptions(CarRDWCarDataOptionsRequestType value) { + return new JAXBElement(_CarRDWCarDataOptions_QNAME, CarRDWCarDataOptionsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MapViewPostcodeV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "mapViewPostcodeV2Response") + public JAXBElement createMapViewPostcodeV2Response(MapViewPostcodeV2ResponseType value) { + return new JAXBElement(_MapViewPostcodeV2Response_QNAME, MapViewPostcodeV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryDocumentDataV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryDocumentDataV2") + public JAXBElement createDutchBusinessGetExtractHistoryDocumentDataV2(DutchBusinessGetExtractHistoryDocumentDataV2RequestType value) { + return new JAXBElement(_DutchBusinessGetExtractHistoryDocumentDataV2_QNAME, DutchBusinessGetExtractHistoryDocumentDataV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEVersionYearDataResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEVersionYearDataResponse") + public JAXBElement createCarVWEVersionYearDataResponse(CarVWEVersionYearDataResponseType value) { + return new JAXBElement(_CarVWEVersionYearDataResponse_QNAME, CarVWEVersionYearDataResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryDocumentDataV3RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryDocumentDataV3") + public JAXBElement createDutchBusinessGetExtractHistoryDocumentDataV3(DutchBusinessGetExtractHistoryDocumentDataV3RequestType value) { + return new JAXBElement(_DutchBusinessGetExtractHistoryDocumentDataV3_QNAME, DutchBusinessGetExtractHistoryDocumentDataV3RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetHypothecairBerichtObjectByObjectId") + public JAXBElement createKadasterV2GetHypothecairBerichtObjectByObjectId(KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType value) { + return new JAXBElement(_KadasterV2GetHypothecairBerichtObjectByObjectId_QNAME, KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPerceelRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPerceel") + public JAXBElement createKadasterUittrekselKadastraleKaartPerceel(KadasterUittrekselKadastraleKaartPerceelRequestType value) { + return new JAXBElement(_KadasterUittrekselKadastraleKaartPerceel_QNAME, KadasterUittrekselKadastraleKaartPerceelRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtDocumentPerceelResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtDocumentPerceelResponse") + public JAXBElement createKadasterEigendomsBerichtDocumentPerceelResponse(KadasterEigendomsBerichtDocumentPerceelResponseType value) { + return new JAXBElement(_KadasterEigendomsBerichtDocumentPerceelResponse_QNAME, KadasterEigendomsBerichtDocumentPerceelResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksPostcodeSearchResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksPostcodeSearchResponse") + public JAXBElement createAddressReeksPostcodeSearchResponse(AddressReeksPostcodeSearchResponseType value) { + return new JAXBElement(_AddressReeksPostcodeSearchResponse_QNAME, AddressReeksPostcodeSearchResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeGetReportFullV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeGetReportFullV2") + public JAXBElement createCreditsafeGetReportFullV2(CreditsafeGetReportFullV2RequestType value) { + return new JAXBElement(_CreditsafeGetReportFullV2_QNAME, CreditsafeGetReportFullV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksParameterSearchRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksParameterSearch") + public JAXBElement createAddressReeksParameterSearch(AddressReeksParameterSearchRequestType value) { + return new JAXBElement(_AddressReeksParameterSearch_QNAME, AddressReeksParameterSearchRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateGetOverviewResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateGetOverviewResponse") + public JAXBElement createDutchBusinessUpdateGetOverviewResponse(DutchBusinessUpdateGetOverviewResponseType value) { + return new JAXBElement(_DutchBusinessUpdateGetOverviewResponse_QNAME, DutchBusinessUpdateGetOverviewResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationPostcodeCoordinatesRDRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationPostcodeCoordinatesRD") + public JAXBElement createGeoLocationPostcodeCoordinatesRD(GeoLocationPostcodeCoordinatesRDRequestType value) { + return new JAXBElement(_GeoLocationPostcodeCoordinatesRD_QNAME, GeoLocationPostcodeCoordinatesRDRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationPostcodeDistanceResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationPostcodeDistanceResponse") + public JAXBElement createGeoLocationPostcodeDistanceResponse(GeoLocationPostcodeDistanceResponseType value) { + return new JAXBElement(_GeoLocationPostcodeDistanceResponse_QNAME, GeoLocationPostcodeDistanceResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateGetChangedDossiersResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateGetChangedDossiersResponse") + public JAXBElement createDutchBusinessUpdateGetChangedDossiersResponse(DutchBusinessUpdateGetChangedDossiersResponseType value) { + return new JAXBElement(_DutchBusinessUpdateGetChangedDossiersResponse_QNAME, DutchBusinessUpdateGetChangedDossiersResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ComplianceSearchBusinessesRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "complianceSearchBusinesses") + public JAXBElement createComplianceSearchBusinesses(ComplianceSearchBusinessesRequestType value) { + return new JAXBElement(_ComplianceSearchBusinesses_QNAME, ComplianceSearchBusinessesRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ComplianceSearchBusinessesResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "complianceSearchBusinessesResponse") + public JAXBElement createComplianceSearchBusinessesResponse(ComplianceSearchBusinessesResponseType value) { + return new JAXBElement(_ComplianceSearchBusinessesResponse_QNAME, ComplianceSearchBusinessesResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationDistanceSortedPostcodesRadiusResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationDistanceSortedPostcodesRadiusResponse") + public JAXBElement createGeoLocationDistanceSortedPostcodesRadiusResponse(GeoLocationDistanceSortedPostcodesRadiusResponseType value) { + return new JAXBElement(_GeoLocationDistanceSortedPostcodesRadiusResponse_QNAME, GeoLocationDistanceSortedPostcodesRadiusResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetAdditionalPositionsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetAdditionalPositionsResponse") + public JAXBElement createDutchBusinessGetAdditionalPositionsResponse(DutchBusinessGetAdditionalPositionsResponseType value) { + return new JAXBElement(_DutchBusinessGetAdditionalPositionsResponse_QNAME, DutchBusinessGetAdditionalPositionsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MapViewLatLonResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "mapViewLatLonResponse") + public JAXBElement createMapViewLatLonResponse(MapViewLatLonResponseType value) { + return new JAXBElement(_MapViewLatLonResponse_QNAME, MapViewLatLonResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserViewBalanceRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userViewBalance") + public JAXBElement createUserViewBalance(UserViewBalanceRequestType value) { + return new JAXBElement(_UserViewBalance_QNAME, UserViewBalanceRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkSearchPostcodeResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkSearchPostcodeResponse") + public JAXBElement createKvkSearchPostcodeResponse(KvkSearchPostcodeResponseType value) { + return new JAXBElement(_KvkSearchPostcodeResponse_QNAME, KvkSearchPostcodeResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetKoopsommenOverzichtResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetKoopsommenOverzichtResponse") + public JAXBElement createKadasterV2GetKoopsommenOverzichtResponse(KadasterV2GetKoopsommenOverzichtResponseType value) { + return new JAXBElement(_KadasterV2GetKoopsommenOverzichtResponse_QNAME, KadasterV2GetKoopsommenOverzichtResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbGetReferenceRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbGetReference") + public JAXBElement createDnbGetReference(DnbGetReferenceRequestType value) { + return new JAXBElement(_DnbGetReference_QNAME, DnbGetReferenceRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MapViewRDRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "mapViewRD") + public JAXBElement createMapViewRD(MapViewRDRequestType value) { + return new JAXBElement(_MapViewRD_QNAME, MapViewRDRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkGetExtractDocumentResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkGetExtractDocumentResponse") + public JAXBElement createKvkGetExtractDocumentResponse(KvkGetExtractDocumentResponseType value) { + return new JAXBElement(_KvkGetExtractDocumentResponse_QNAME, KvkGetExtractDocumentResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPostcodeV3RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPostcodeV3") + public JAXBElement createKadasterHypothecairBerichtPostcodeV3(KadasterHypothecairBerichtPostcodeV3RequestType value) { + return new JAXBElement(_KadasterHypothecairBerichtPostcodeV3_QNAME, KadasterHypothecairBerichtPostcodeV3RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterAddressCoordinatesRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterAddressCoordinates") + public JAXBElement createKadasterAddressCoordinates(KadasterAddressCoordinatesRequestType value) { + return new JAXBElement(_KadasterAddressCoordinates_QNAME, KadasterAddressCoordinatesRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditSearchNameRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditSearchName") + public JAXBElement createGraydonCreditSearchName(GraydonCreditSearchNameRequestType value) { + return new JAXBElement(_GraydonCreditSearchName_QNAME, GraydonCreditSearchNameRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerInformationRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerInformation") + public JAXBElement createRoutePlannerInformation(RoutePlannerInformationRequestType value) { + return new JAXBElement(_RoutePlannerInformation_QNAME, RoutePlannerInformationRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeMonitorAddCompanyRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeMonitorAddCompany") + public JAXBElement createCreditsafeMonitorAddCompany(CreditsafeMonitorAddCompanyRequestType value) { + return new JAXBElement(_CreditsafeMonitorAddCompany_QNAME, CreditsafeMonitorAddCompanyRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksFullParameterSearchResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksFullParameterSearchResponse") + public JAXBElement createAddressReeksFullParameterSearchResponse(AddressReeksFullParameterSearchResponseType value) { + return new JAXBElement(_AddressReeksFullParameterSearchResponse_QNAME, AddressReeksFullParameterSearchResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetSBIDescriptionResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetSBIDescriptionResponse") + public JAXBElement createDutchBusinessGetSBIDescriptionResponse(DutchBusinessGetSBIDescriptionResponseType value) { + return new JAXBElement(_DutchBusinessGetSBIDescriptionResponse_QNAME, DutchBusinessGetSBIDescriptionResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetPurchaseReferenceResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetPurchaseReferenceResponse") + public JAXBElement createDutchVehicleGetPurchaseReferenceResponse(DutchVehicleGetPurchaseReferenceResponseType value) { + return new JAXBElement(_DutchVehicleGetPurchaseReferenceResponse_QNAME, DutchVehicleGetPurchaseReferenceResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtPostcodeV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtPostcodeV2Response") + public JAXBElement createKadasterEigendomsBerichtPostcodeV2Response(KadasterEigendomsBerichtPostcodeV2ResponseType value) { + return new JAXBElement(_KadasterEigendomsBerichtPostcodeV2Response_QNAME, KadasterEigendomsBerichtPostcodeV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbGetReferenceResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbGetReferenceResponse") + public JAXBElement createDnbGetReferenceResponse(DnbGetReferenceResponseType value) { + return new JAXBElement(_DnbGetReferenceResponse_QNAME, DnbGetReferenceResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPostcodeV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPostcodeV2") + public JAXBElement createKadasterHypothecairBerichtPostcodeV2(KadasterHypothecairBerichtPostcodeV2RequestType value) { + return new JAXBElement(_KadasterHypothecairBerichtPostcodeV2_QNAME, KadasterHypothecairBerichtPostcodeV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarATDPriceResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carATDPriceResponse") + public JAXBElement createCarATDPriceResponse(CarATDPriceResponseType value) { + return new JAXBElement(_CarATDPriceResponse_QNAME, CarATDPriceResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchAddressRangePostcodeSearchResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchAddressRangePostcodeSearchResponse") + public JAXBElement createDutchAddressRangePostcodeSearchResponse(DutchAddressRangePostcodeSearchResponseType value) { + return new JAXBElement(_DutchAddressRangePostcodeSearchResponse_QNAME, DutchAddressRangePostcodeSearchResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetDossierResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetDossierResponse") + public JAXBElement createDutchBusinessGetDossierResponse(DutchBusinessGetDossierResponseType value) { + return new JAXBElement(_DutchBusinessGetDossierResponse_QNAME, DutchBusinessGetDossierResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserChangePasswordRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userChangePassword") + public JAXBElement createUserChangePassword(UserChangePasswordRequestType value) { + return new JAXBElement(_UserChangePassword_QNAME, UserChangePasswordRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessBIKToSBIResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessBIKToSBIResponse") + public JAXBElement createBusinessBIKToSBIResponse(BusinessBIKToSBIResponseType value) { + return new JAXBElement(_BusinessBIKToSBIResponse_QNAME, BusinessBIKToSBIResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEOptionsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEOptions") + public JAXBElement createCarVWEOptions(CarVWEOptionsRequestType value) { + return new JAXBElement(_CarVWEOptions_QNAME, CarVWEOptionsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEBasicTypeDataResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEBasicTypeDataResponse") + public JAXBElement createCarVWEBasicTypeDataResponse(CarVWEBasicTypeDataResponseType value) { + return new JAXBElement(_CarVWEBasicTypeDataResponse_QNAME, CarVWEBasicTypeDataResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link InsolvencySearchPublicationsByPersonResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "insolvencySearchPublicationsByPersonResponse") + public JAXBElement createInsolvencySearchPublicationsByPersonResponse(InsolvencySearchPublicationsByPersonResponseType value) { + return new JAXBElement(_InsolvencySearchPublicationsByPersonResponse_QNAME, InsolvencySearchPublicationsByPersonResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataBPResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataBPResponse") + public JAXBElement createCarRDWCarDataBPResponse(CarRDWCarDataBPResponseType value) { + return new JAXBElement(_CarRDWCarDataBPResponse_QNAME, CarRDWCarDataBPResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKadastraleKaartPerceelResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKadastraleKaartPerceelResponse") + public JAXBElement createKadasterKadastraleKaartPerceelResponse(KadasterKadastraleKaartPerceelResponseType value) { + return new JAXBElement(_KadasterKadastraleKaartPerceelResponse_QNAME, KadasterKadastraleKaartPerceelResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditSearchPostcodeRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditSearchPostcode") + public JAXBElement createGraydonCreditSearchPostcode(GraydonCreditSearchPostcodeRequestType value) { + return new JAXBElement(_GraydonCreditSearchPostcode_QNAME, GraydonCreditSearchPostcodeRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationAddressCoordinatesRDRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationAddressCoordinatesRD") + public JAXBElement createGeoLocationAddressCoordinatesRD(GeoLocationAddressCoordinatesRDRequestType value) { + return new JAXBElement(_GeoLocationAddressCoordinatesRD_QNAME, GeoLocationAddressCoordinatesRDRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerInformationAddressResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerInformationAddressResponse") + public JAXBElement createRoutePlannerInformationAddressResponse(RoutePlannerInformationAddressResponseType value) { + return new JAXBElement(_RoutePlannerInformationAddressResponse_QNAME, RoutePlannerInformationAddressResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationNeighborhoodCoordinatesRDResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationNeighborhoodCoordinatesRDResponse") + public JAXBElement createGeoLocationNeighborhoodCoordinatesRDResponse(GeoLocationNeighborhoodCoordinatesRDResponseType value) { + return new JAXBElement(_GeoLocationNeighborhoodCoordinatesRDResponse_QNAME, GeoLocationNeighborhoodCoordinatesRDResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressDistrictListNeighborhoodsRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressDistrictListNeighborhoods") + public JAXBElement createAddressDistrictListNeighborhoods(AddressDistrictListNeighborhoodsRequestType value) { + return new JAXBElement(_AddressDistrictListNeighborhoods_QNAME, AddressDistrictListNeighborhoodsRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetDossierV3RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetDossierV3") + public JAXBElement createBusinessGetDossierV3(BusinessGetDossierV3RequestType value) { + return new JAXBElement(_BusinessGetDossierV3_QNAME, BusinessGetDossierV3RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetBIKDescriptionRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetBIKDescription") + public JAXBElement createBusinessGetBIKDescription(BusinessGetBIKDescriptionRequestType value) { + return new JAXBElement(_BusinessGetBIKDescription_QNAME, BusinessGetBIKDescriptionRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SepaConvertBasicBankAccountNumberRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaConvertBasicBankAccountNumber") + public JAXBElement createSepaConvertBasicBankAccountNumber(SepaConvertBasicBankAccountNumberRequestType value) { + return new JAXBElement(_SepaConvertBasicBankAccountNumber_QNAME, SepaConvertBasicBankAccountNumberRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPostcodeRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPostcode") + public JAXBElement createKadasterUittrekselKadastraleKaartPostcode(KadasterUittrekselKadastraleKaartPostcodeRequestType value) { + return new JAXBElement(_KadasterUittrekselKadastraleKaartPostcode_QNAME, KadasterUittrekselKadastraleKaartPostcodeRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DriveInfoDistanceLookupResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "driveInfoDistanceLookupResponse") + public JAXBElement createDriveInfoDistanceLookupResponse(DriveInfoDistanceLookupResponseType value) { + return new JAXBElement(_DriveInfoDistanceLookupResponse_QNAME, DriveInfoDistanceLookupResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterValueListGetMunicipalitiesRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterValueListGetMunicipalities") + public JAXBElement createKadasterValueListGetMunicipalities(KadasterValueListGetMunicipalitiesRequestType value) { + return new JAXBElement(_KadasterValueListGetMunicipalities_QNAME, KadasterValueListGetMunicipalitiesRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionResponse") + public JAXBElement createRoutePlannerDescriptionResponse(RoutePlannerDescriptionResponseType value) { + return new JAXBElement(_RoutePlannerDescriptionResponse_QNAME, RoutePlannerDescriptionResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerEUInformationRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerEUInformation") + public JAXBElement createRoutePlannerEUInformation(RoutePlannerEUInformationRequestType value) { + return new JAXBElement(_RoutePlannerEUInformation_QNAME, RoutePlannerEUInformationRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetNonMarketingIndicatorResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetNonMarketingIndicatorResponse") + public JAXBElement createDutchBusinessGetNonMarketingIndicatorResponse(DutchBusinessGetNonMarketingIndicatorResponseType value) { + return new JAXBElement(_DutchBusinessGetNonMarketingIndicatorResponse_QNAME, DutchBusinessGetNonMarketingIndicatorResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountUserSearchV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountUserSearchV2Response") + public JAXBElement createAccountUserSearchV2Response(AccountUserSearchV2ResponseType value) { + return new JAXBElement(_AccountUserSearchV2Response_QNAME, AccountUserSearchV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link ComplianceSearchPersonsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "complianceSearchPersonsResponse") + public JAXBElement createComplianceSearchPersonsResponse(ComplianceSearchPersonsResponseType value) { + return new JAXBElement(_ComplianceSearchPersonsResponse_QNAME, ComplianceSearchPersonsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreateTestUserRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "createTestUser") + public JAXBElement createCreateTestUser(CreateTestUserRequestType value) { + return new JAXBElement(_CreateTestUser_QNAME, CreateTestUserRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEMeldcodeCheckResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEMeldcodeCheckResponse") + public JAXBElement createCarVWEMeldcodeCheckResponse(CarVWEMeldcodeCheckResponseType value) { + return new JAXBElement(_CarVWEMeldcodeCheckResponse_QNAME, CarVWEMeldcodeCheckResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarATDPriceRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carATDPrice") + public JAXBElement createCarATDPrice(CarATDPriceRequestType value) { + return new JAXBElement(_CarATDPrice_QNAME, CarATDPriceRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetDossierV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetDossierV2") + public JAXBElement createDutchBusinessGetDossierV2(DutchBusinessGetDossierV2RequestType value) { + return new JAXBElement(_DutchBusinessGetDossierV2_QNAME, DutchBusinessGetDossierV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link MapViewInternationalLatLonRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "mapViewInternationalLatLon") + public JAXBElement createMapViewInternationalLatLon(MapViewInternationalLatLonRequestType value) { + return new JAXBElement(_MapViewInternationalLatLon_QNAME, MapViewInternationalLatLonRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbSearchReferenceV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbSearchReferenceV2") + public JAXBElement createDnbSearchReferenceV2(DnbSearchReferenceV2RequestType value) { + return new JAXBElement(_DnbSearchReferenceV2_QNAME, DnbSearchReferenceV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetDossierV3RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetDossierV3") + public JAXBElement createDutchBusinessGetDossierV3(DutchBusinessGetDossierV3RequestType value) { + return new JAXBElement(_DutchBusinessGetDossierV3_QNAME, DutchBusinessGetDossierV3RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetUittrekselKadastraleKaartByObjectIdResponse") + public JAXBElement createKadasterV2GetUittrekselKadastraleKaartByObjectIdResponse(KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType value) { + return new JAXBElement(_KadasterV2GetUittrekselKadastraleKaartByObjectIdResponse_QNAME, KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SepaConvertBankAccountNumberRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaConvertBankAccountNumber") + public JAXBElement createSepaConvertBankAccountNumber(SepaConvertBankAccountNumberRequestType value) { + return new JAXBElement(_SepaConvertBankAccountNumber_QNAME, SepaConvertBankAccountNumberRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataBPV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataBPV2") + public JAXBElement createCarRDWCarDataBPV2(CarRDWCarDataBPV2RequestType value) { + return new JAXBElement(_CarRDWCarDataBPV2_QNAME, CarRDWCarDataBPV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkGetDossierResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkGetDossierResponse") + public JAXBElement createKvkGetDossierResponse(KvkGetDossierResponseType value) { + return new JAXBElement(_KvkGetDossierResponse_QNAME, KvkGetDossierResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerEUMapRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerEUMap") + public JAXBElement createRoutePlannerEUMap(RoutePlannerEUMapRequestType value) { + return new JAXBElement(_RoutePlannerEUMap_QNAME, RoutePlannerEUMapRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeSearchCriteriaRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeSearchCriteria") + public JAXBElement createCreditsafeSearchCriteria(CreditsafeSearchCriteriaRequestType value) { + return new JAXBElement(_CreditsafeSearchCriteria_QNAME, CreditsafeSearchCriteriaRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserNotifyResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userNotifyResponse") + public JAXBElement createUserNotifyResponse(UserNotifyResponseType value) { + return new JAXBElement(_UserNotifyResponse_QNAME, UserNotifyResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtPostcodeResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtPostcodeResponse") + public JAXBElement createKadasterEigendomsBerichtPostcodeResponse(KadasterEigendomsBerichtPostcodeResponseType value) { + return new JAXBElement(_KadasterEigendomsBerichtPostcodeResponse_QNAME, KadasterEigendomsBerichtPostcodeResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link SepaMatchAccountHolderRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaMatchAccountHolder") + public JAXBElement createSepaMatchAccountHolder(SepaMatchAccountHolderRequestType value) { + return new JAXBElement(_SepaMatchAccountHolder_QNAME, SepaMatchAccountHolderRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateAddDossierResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateAddDossierResponse") + public JAXBElement createBusinessUpdateAddDossierResponse(BusinessUpdateAddDossierResponseType value) { + return new JAXBElement(_BusinessUpdateAddDossierResponse_QNAME, BusinessUpdateAddDossierResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkSearchParametersResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkSearchParametersResponse") + public JAXBElement createKvkSearchParametersResponse(KvkSearchParametersResponseType value) { + return new JAXBElement(_KvkSearchParametersResponse_QNAME, KvkSearchParametersResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AccountViewV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountViewV2Response") + public JAXBElement createAccountViewV2Response(AccountViewV2ResponseType value) { + return new JAXBElement(_AccountViewV2Response_QNAME, AccountViewV2ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DriveInfoTimeLookupRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "driveInfoTimeLookup") + public JAXBElement createDriveInfoTimeLookup(DriveInfoTimeLookupRequestType value) { + return new JAXBElement(_DriveInfoTimeLookup_QNAME, DriveInfoTimeLookupRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetKadastraalBerichtObjectByKadastraleAanduiding") + public JAXBElement createKadasterV2GetKadastraalBerichtObjectByKadastraleAanduiding(KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType value) { + return new JAXBElement(_KadasterV2GetKadastraalBerichtObjectByKadastraleAanduiding_QNAME, KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionDutchAddressRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionDutchAddress") + public JAXBElement createRoutePlannerDescriptionDutchAddress(RoutePlannerDescriptionDutchAddressRequestType value) { + return new JAXBElement(_RoutePlannerDescriptionDutchAddress_QNAME, RoutePlannerDescriptionDutchAddressRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbQuickCheckResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbQuickCheckResponse") + public JAXBElement createDnbQuickCheckResponse(DnbQuickCheckResponseType value) { + return new JAXBElement(_DnbQuickCheckResponse_QNAME, DnbQuickCheckResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationNeighborhoodDistanceResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationNeighborhoodDistanceResponse") + public JAXBElement createGeoLocationNeighborhoodDistanceResponse(GeoLocationNeighborhoodDistanceResponseType value) { + return new JAXBElement(_GeoLocationNeighborhoodDistanceResponse_QNAME, GeoLocationNeighborhoodDistanceResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterValueListGetMunicipalitiesResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterValueListGetMunicipalitiesResponse") + public JAXBElement createKadasterValueListGetMunicipalitiesResponse(KadasterValueListGetMunicipalitiesResponseType value) { + return new JAXBElement(_KadasterValueListGetMunicipalitiesResponse_QNAME, KadasterValueListGetMunicipalitiesResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateRemoveDossierResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateRemoveDossierResponse") + public JAXBElement createKvkUpdateRemoveDossierResponse(KvkUpdateRemoveDossierResponseType value) { + return new JAXBElement(_KvkUpdateRemoveDossierResponse_QNAME, KvkUpdateRemoveDossierResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DnbWorldbaseMarketingPlusLinkageRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbWorldbaseMarketingPlusLinkage") + public JAXBElement createDnbWorldbaseMarketingPlusLinkage(DnbWorldbaseMarketingPlusLinkageRequestType value) { + return new JAXBElement(_DnbWorldbaseMarketingPlusLinkage_QNAME, DnbWorldbaseMarketingPlusLinkageRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeMonitorGetUpdatedCompaniesRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeMonitorGetUpdatedCompanies") + public JAXBElement createCreditsafeMonitorGetUpdatedCompanies(CreditsafeMonitorGetUpdatedCompaniesRequestType value) { + return new JAXBElement(_CreditsafeMonitorGetUpdatedCompanies_QNAME, CreditsafeMonitorGetUpdatedCompaniesRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeSearchV2RequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeSearchV2") + public JAXBElement createCreditsafeSearchV2(CreditsafeSearchV2RequestType value) { + return new JAXBElement(_CreditsafeSearchV2_QNAME, CreditsafeSearchV2RequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchResponse") + public JAXBElement createDutchBusinessSearchResponse(DutchBusinessSearchResponseType value) { + return new JAXBElement(_DutchBusinessSearchResponse_QNAME, DutchBusinessSearchResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOCostsInvestigationRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOCostsInvestigation") + public JAXBElement createDutchBusinessUBOCostsInvestigation(DutchBusinessUBOCostsInvestigationRequestType value) { + return new JAXBElement(_DutchBusinessUBOCostsInvestigation_QNAME, DutchBusinessUBOCostsInvestigationRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserViewHostRestrictionsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userViewHostRestrictionsResponse") + public JAXBElement createUserViewHostRestrictionsResponse(UserViewHostRestrictionsResponseType value) { + return new JAXBElement(_UserViewHostRestrictionsResponse_QNAME, UserViewHostRestrictionsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksAddressSearchResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksAddressSearchResponse") + public JAXBElement createAddressReeksAddressSearchResponse(AddressReeksAddressSearchResponseType value) { + return new JAXBElement(_AddressReeksAddressSearchResponse_QNAME, AddressReeksAddressSearchResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractDocumentDataV3ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractDocumentDataV3Response") + public JAXBElement createDutchBusinessGetExtractDocumentDataV3Response(DutchBusinessGetExtractDocumentDataV3ResponseType value) { + return new JAXBElement(_DutchBusinessGetExtractDocumentDataV3Response_QNAME, DutchBusinessGetExtractDocumentDataV3ResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KvkSearchSelectionRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkSearchSelection") + public JAXBElement createKvkSearchSelection(KvkSearchSelectionRequestType value) { + return new JAXBElement(_KvkSearchSelection_QNAME, KvkSearchSelectionRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetVatNumberRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetVatNumber") + public JAXBElement createDutchBusinessGetVatNumber(DutchBusinessGetVatNumberRequestType value) { + return new JAXBElement(_DutchBusinessGetVatNumber_QNAME, DutchBusinessGetVatNumberRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetDossierRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetDossier") + public JAXBElement createDutchBusinessGetDossier(DutchBusinessGetDossierRequestType value) { + return new JAXBElement(_DutchBusinessGetDossier_QNAME, DutchBusinessGetDossierRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditSearchNameResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditSearchNameResponse") + public JAXBElement createGraydonCreditSearchNameResponse(GraydonCreditSearchNameResponseType value) { + return new JAXBElement(_GraydonCreditSearchNameResponse_QNAME, GraydonCreditSearchNameResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionAddressResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionAddressResponse") + public JAXBElement createRoutePlannerDescriptionAddressResponse(RoutePlannerDescriptionAddressResponseType value) { + return new JAXBElement(_RoutePlannerDescriptionAddressResponse_QNAME, RoutePlannerDescriptionAddressResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerInformationResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerInformationResponse") + public JAXBElement createRoutePlannerInformationResponse(RoutePlannerInformationResponseType value) { + return new JAXBElement(_RoutePlannerInformationResponse_QNAME, RoutePlannerInformationResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetConcernRelationsOverviewRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetConcernRelationsOverview") + public JAXBElement createDutchBusinessGetConcernRelationsOverview(DutchBusinessGetConcernRelationsOverviewRequestType value) { + return new JAXBElement(_DutchBusinessGetConcernRelationsOverview_QNAME, DutchBusinessGetConcernRelationsOverviewRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationAddressCoordinatesLatLonRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationAddressCoordinatesLatLon") + public JAXBElement createGeoLocationAddressCoordinatesLatLon(GeoLocationAddressCoordinatesLatLonRequestType value) { + return new JAXBElement(_GeoLocationAddressCoordinatesLatLon_QNAME, GeoLocationAddressCoordinatesLatLonRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtPerceelRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtPerceel") + public JAXBElement createKadasterEigendomsBerichtPerceel(KadasterEigendomsBerichtPerceelRequestType value) { + return new JAXBElement(_KadasterEigendomsBerichtPerceel_QNAME, KadasterEigendomsBerichtPerceelRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryDocumentDataResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryDocumentDataResponse") + public JAXBElement createDutchBusinessGetExtractHistoryDocumentDataResponse(DutchBusinessGetExtractHistoryDocumentDataResponseType value) { + return new JAXBElement(_DutchBusinessGetExtractHistoryDocumentDataResponse_QNAME, DutchBusinessGetExtractHistoryDocumentDataResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetPositionsResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetPositionsResponse") + public JAXBElement createDutchBusinessGetPositionsResponse(DutchBusinessGetPositionsResponseType value) { + return new JAXBElement(_DutchBusinessGetPositionsResponse_QNAME, DutchBusinessGetPositionsResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksPhraseSearchRequestType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksPhraseSearch") + public JAXBElement createAddressReeksPhraseSearch(AddressReeksPhraseSearchRequestType value) { + return new JAXBElement(_AddressReeksPhraseSearch_QNAME, AddressReeksPhraseSearchRequestType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetLeiResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetLeiResponse") + public JAXBElement createDutchBusinessGetLeiResponse(DutchBusinessGetLeiResponseType value) { + return new JAXBElement(_DutchBusinessGetLeiResponse_QNAME, DutchBusinessGetLeiResponseType.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link UserViewV2ResponseType }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userViewV2Response") + public JAXBElement createUserViewV2Response(UserViewV2ResponseType value) { + return new JAXBElement(_UserViewV2Response_QNAME, UserViewV2ResponseType.class, null, value); + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OnroerendeZaak.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OnroerendeZaak.java new file mode 100644 index 0000000..6b9e0bb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OnroerendeZaak.java @@ -0,0 +1,474 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for OnroerendeZaak complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="OnroerendeZaak">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="kadastrale_aanduiding" type="{http://www.webservices.nl/soap/}KadastraleAanduiding"/>
+ *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="locaties" type="{http://www.webservices.nl/soap/}LocatieBinnenlandLijst" minOccurs="0"/>
+ *         <element name="datum_ontstaan" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="onroerende_zaak_historie" type="{http://www.webservices.nl/soap/}KadastraleAanduidingLijst" minOccurs="0"/>
+ *         <element name="perceel_details" type="{http://www.webservices.nl/soap/}PerceelDetails"/>
+ *         <element name="koopsom" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="koopjaar" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="indicatie_meer_onroerende_zaken" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="landinrichtingsrente" type="{http://www.webservices.nl/soap/}Landinrichtingsrente" minOccurs="0"/>
+ *         <element name="indicatie_voorgenomen_splitsing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indicatie_voorlopige_aantekening" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="niet_volledig_verwerkt_stukken_lijst" type="{http://www.webservices.nl/soap/}StukReferentiesLijst" minOccurs="0"/>
+ *         <element name="mandeligheid" type="{http://www.webservices.nl/soap/}Mandeligheid" minOccurs="0"/>
+ *         <element name="aantekeningen_kadastraal_object" type="{http://www.webservices.nl/soap/}AantekeningenKadastraalObject" minOccurs="0"/>
+ *         <element name="pr_beperkingen_kadastraal_object" type="{http://www.webservices.nl/soap/}PRBeperkingenKadastraalObject" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OnroerendeZaak", propOrder = { + +}) +public class OnroerendeZaak { + + @XmlElement(name = "object_id") + protected String objectId; + @XmlElement(name = "kadastrale_aanduiding", required = true) + protected KadastraleAanduiding kadastraleAanduiding; + protected String omschrijving; + protected LocatieBinnenlandLijst locaties; + @XmlElement(name = "datum_ontstaan") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar datumOntstaan; + @XmlElement(name = "onroerende_zaak_historie") + protected KadastraleAanduidingLijst onroerendeZaakHistorie; + @XmlElement(name = "perceel_details", required = true) + protected PerceelDetails perceelDetails; + protected String koopsom; + protected String koopjaar; + @XmlElement(name = "indicatie_meer_onroerende_zaken") + protected boolean indicatieMeerOnroerendeZaken; + protected Landinrichtingsrente landinrichtingsrente; + @XmlElement(name = "indicatie_voorgenomen_splitsing") + protected boolean indicatieVoorgenomenSplitsing; + @XmlElement(name = "indicatie_voorlopige_aantekening") + protected boolean indicatieVoorlopigeAantekening; + @XmlElement(name = "niet_volledig_verwerkt_stukken_lijst") + protected StukReferentiesLijst nietVolledigVerwerktStukkenLijst; + protected Mandeligheid mandeligheid; + @XmlElement(name = "aantekeningen_kadastraal_object") + protected AantekeningenKadastraalObject aantekeningenKadastraalObject; + @XmlElement(name = "pr_beperkingen_kadastraal_object") + protected PRBeperkingenKadastraalObject prBeperkingenKadastraalObject; + + /** + * Gets the value of the objectId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjectId() { + return objectId; + } + + /** + * Sets the value of the objectId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjectId(String value) { + this.objectId = value; + } + + /** + * Gets the value of the kadastraleAanduiding property. + * + * @return + * possible object is + * {@link KadastraleAanduiding } + * + */ + public KadastraleAanduiding getKadastraleAanduiding() { + return kadastraleAanduiding; + } + + /** + * Sets the value of the kadastraleAanduiding property. + * + * @param value + * allowed object is + * {@link KadastraleAanduiding } + * + */ + public void setKadastraleAanduiding(KadastraleAanduiding value) { + this.kadastraleAanduiding = value; + } + + /** + * Gets the value of the omschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijving() { + return omschrijving; + } + + /** + * Sets the value of the omschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijving(String value) { + this.omschrijving = value; + } + + /** + * Gets the value of the locaties property. + * + * @return + * possible object is + * {@link LocatieBinnenlandLijst } + * + */ + public LocatieBinnenlandLijst getLocaties() { + return locaties; + } + + /** + * Sets the value of the locaties property. + * + * @param value + * allowed object is + * {@link LocatieBinnenlandLijst } + * + */ + public void setLocaties(LocatieBinnenlandLijst value) { + this.locaties = value; + } + + /** + * Gets the value of the datumOntstaan property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDatumOntstaan() { + return datumOntstaan; + } + + /** + * Sets the value of the datumOntstaan property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDatumOntstaan(XMLGregorianCalendar value) { + this.datumOntstaan = value; + } + + /** + * Gets the value of the onroerendeZaakHistorie property. + * + * @return + * possible object is + * {@link KadastraleAanduidingLijst } + * + */ + public KadastraleAanduidingLijst getOnroerendeZaakHistorie() { + return onroerendeZaakHistorie; + } + + /** + * Sets the value of the onroerendeZaakHistorie property. + * + * @param value + * allowed object is + * {@link KadastraleAanduidingLijst } + * + */ + public void setOnroerendeZaakHistorie(KadastraleAanduidingLijst value) { + this.onroerendeZaakHistorie = value; + } + + /** + * Gets the value of the perceelDetails property. + * + * @return + * possible object is + * {@link PerceelDetails } + * + */ + public PerceelDetails getPerceelDetails() { + return perceelDetails; + } + + /** + * Sets the value of the perceelDetails property. + * + * @param value + * allowed object is + * {@link PerceelDetails } + * + */ + public void setPerceelDetails(PerceelDetails value) { + this.perceelDetails = value; + } + + /** + * Gets the value of the koopsom property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKoopsom() { + return koopsom; + } + + /** + * Sets the value of the koopsom property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKoopsom(String value) { + this.koopsom = value; + } + + /** + * Gets the value of the koopjaar property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKoopjaar() { + return koopjaar; + } + + /** + * Sets the value of the koopjaar property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKoopjaar(String value) { + this.koopjaar = value; + } + + /** + * Gets the value of the indicatieMeerOnroerendeZaken property. + * + */ + public boolean isIndicatieMeerOnroerendeZaken() { + return indicatieMeerOnroerendeZaken; + } + + /** + * Sets the value of the indicatieMeerOnroerendeZaken property. + * + */ + public void setIndicatieMeerOnroerendeZaken(boolean value) { + this.indicatieMeerOnroerendeZaken = value; + } + + /** + * Gets the value of the landinrichtingsrente property. + * + * @return + * possible object is + * {@link Landinrichtingsrente } + * + */ + public Landinrichtingsrente getLandinrichtingsrente() { + return landinrichtingsrente; + } + + /** + * Sets the value of the landinrichtingsrente property. + * + * @param value + * allowed object is + * {@link Landinrichtingsrente } + * + */ + public void setLandinrichtingsrente(Landinrichtingsrente value) { + this.landinrichtingsrente = value; + } + + /** + * Gets the value of the indicatieVoorgenomenSplitsing property. + * + */ + public boolean isIndicatieVoorgenomenSplitsing() { + return indicatieVoorgenomenSplitsing; + } + + /** + * Sets the value of the indicatieVoorgenomenSplitsing property. + * + */ + public void setIndicatieVoorgenomenSplitsing(boolean value) { + this.indicatieVoorgenomenSplitsing = value; + } + + /** + * Gets the value of the indicatieVoorlopigeAantekening property. + * + */ + public boolean isIndicatieVoorlopigeAantekening() { + return indicatieVoorlopigeAantekening; + } + + /** + * Sets the value of the indicatieVoorlopigeAantekening property. + * + */ + public void setIndicatieVoorlopigeAantekening(boolean value) { + this.indicatieVoorlopigeAantekening = value; + } + + /** + * Gets the value of the nietVolledigVerwerktStukkenLijst property. + * + * @return + * possible object is + * {@link StukReferentiesLijst } + * + */ + public StukReferentiesLijst getNietVolledigVerwerktStukkenLijst() { + return nietVolledigVerwerktStukkenLijst; + } + + /** + * Sets the value of the nietVolledigVerwerktStukkenLijst property. + * + * @param value + * allowed object is + * {@link StukReferentiesLijst } + * + */ + public void setNietVolledigVerwerktStukkenLijst(StukReferentiesLijst value) { + this.nietVolledigVerwerktStukkenLijst = value; + } + + /** + * Gets the value of the mandeligheid property. + * + * @return + * possible object is + * {@link Mandeligheid } + * + */ + public Mandeligheid getMandeligheid() { + return mandeligheid; + } + + /** + * Sets the value of the mandeligheid property. + * + * @param value + * allowed object is + * {@link Mandeligheid } + * + */ + public void setMandeligheid(Mandeligheid value) { + this.mandeligheid = value; + } + + /** + * Gets the value of the aantekeningenKadastraalObject property. + * + * @return + * possible object is + * {@link AantekeningenKadastraalObject } + * + */ + public AantekeningenKadastraalObject getAantekeningenKadastraalObject() { + return aantekeningenKadastraalObject; + } + + /** + * Sets the value of the aantekeningenKadastraalObject property. + * + * @param value + * allowed object is + * {@link AantekeningenKadastraalObject } + * + */ + public void setAantekeningenKadastraalObject(AantekeningenKadastraalObject value) { + this.aantekeningenKadastraalObject = value; + } + + /** + * Gets the value of the prBeperkingenKadastraalObject property. + * + * @return + * possible object is + * {@link PRBeperkingenKadastraalObject } + * + */ + public PRBeperkingenKadastraalObject getPrBeperkingenKadastraalObject() { + return prBeperkingenKadastraalObject; + } + + /** + * Sets the value of the prBeperkingenKadastraalObject property. + * + * @param value + * allowed object is + * {@link PRBeperkingenKadastraalObject } + * + */ + public void setPrBeperkingenKadastraalObject(PRBeperkingenKadastraalObject value) { + this.prBeperkingenKadastraalObject = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Overzicht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Overzicht.java new file mode 100644 index 0000000..8c42c6e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Overzicht.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for Overzicht complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="Overzicht">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="onroerende_zaken" type="{http://www.webservices.nl/soap/}OverzichtOnroerendeZaakArray"/>
+ *         <element name="rechten" type="{http://www.webservices.nl/soap/}OverzichtRechtArray"/>
+ *         <element name="personen" type="{http://www.webservices.nl/soap/}OverzichtPersoonArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Overzicht", propOrder = { + +}) +public class Overzicht { + + @XmlElement(name = "onroerende_zaken", required = true) + protected OverzichtOnroerendeZaakArray onroerendeZaken; + @XmlElement(required = true) + protected OverzichtRechtArray rechten; + protected OverzichtPersoonArray personen; + + /** + * Gets the value of the onroerendeZaken property. + * + * @return + * possible object is + * {@link OverzichtOnroerendeZaakArray } + * + */ + public OverzichtOnroerendeZaakArray getOnroerendeZaken() { + return onroerendeZaken; + } + + /** + * Sets the value of the onroerendeZaken property. + * + * @param value + * allowed object is + * {@link OverzichtOnroerendeZaakArray } + * + */ + public void setOnroerendeZaken(OverzichtOnroerendeZaakArray value) { + this.onroerendeZaken = value; + } + + /** + * Gets the value of the rechten property. + * + * @return + * possible object is + * {@link OverzichtRechtArray } + * + */ + public OverzichtRechtArray getRechten() { + return rechten; + } + + /** + * Sets the value of the rechten property. + * + * @param value + * allowed object is + * {@link OverzichtRechtArray } + * + */ + public void setRechten(OverzichtRechtArray value) { + this.rechten = value; + } + + /** + * Gets the value of the personen property. + * + * @return + * possible object is + * {@link OverzichtPersoonArray } + * + */ + public OverzichtPersoonArray getPersonen() { + return personen; + } + + /** + * Sets the value of the personen property. + * + * @param value + * allowed object is + * {@link OverzichtPersoonArray } + * + */ + public void setPersonen(OverzichtPersoonArray value) { + this.personen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtNatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtNatuurlijkPersoon.java new file mode 100644 index 0000000..ad7e1ae --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtNatuurlijkPersoon.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for OverzichtNatuurlijkPersoon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="OverzichtNatuurlijkPersoon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="voorvoegsel_geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="voornamen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OverzichtNatuurlijkPersoon", propOrder = { + +}) +public class OverzichtNatuurlijkPersoon { + + @XmlElement(required = true) + protected String geslachtsnaam; + @XmlElement(name = "voorvoegsel_geslachtsnaam") + protected String voorvoegselGeslachtsnaam; + protected String voornamen; + + /** + * Gets the value of the geslachtsnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGeslachtsnaam() { + return geslachtsnaam; + } + + /** + * Sets the value of the geslachtsnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGeslachtsnaam(String value) { + this.geslachtsnaam = value; + } + + /** + * Gets the value of the voorvoegselGeslachtsnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVoorvoegselGeslachtsnaam() { + return voorvoegselGeslachtsnaam; + } + + /** + * Sets the value of the voorvoegselGeslachtsnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVoorvoegselGeslachtsnaam(String value) { + this.voorvoegselGeslachtsnaam = value; + } + + /** + * Gets the value of the voornamen property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVoornamen() { + return voornamen; + } + + /** + * Sets the value of the voornamen property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVoornamen(String value) { + this.voornamen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtNietNatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtNietNatuurlijkPersoon.java new file mode 100644 index 0000000..e5f3074 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtNietNatuurlijkPersoon.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for OverzichtNietNatuurlijkPersoon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="OverzichtNietNatuurlijkPersoon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="naam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OverzichtNietNatuurlijkPersoon", propOrder = { + +}) +public class OverzichtNietNatuurlijkPersoon { + + @XmlElement(required = true) + protected String naam; + @XmlElement(required = true) + protected String code; + + /** + * Gets the value of the naam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNaam() { + return naam; + } + + /** + * Sets the value of the naam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNaam(String value) { + this.naam = value; + } + + /** + * Gets the value of the code property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCode() { + return code; + } + + /** + * Sets the value of the code property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCode(String value) { + this.code = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtOnroerendeZaak.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtOnroerendeZaak.java new file mode 100644 index 0000000..5da6834 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtOnroerendeZaak.java @@ -0,0 +1,148 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for OverzichtOnroerendeZaak complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="OverzichtOnroerendeZaak">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="kadastrale_aanduiding" type="{http://www.webservices.nl/soap/}KadastraleAanduiding"/>
+ *         <element name="locatie" type="{http://www.webservices.nl/soap/}LocatieBinnenland" minOccurs="0"/>
+ *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OverzichtOnroerendeZaak", propOrder = { + +}) +public class OverzichtOnroerendeZaak { + + @XmlElement(name = "object_id", required = true) + protected String objectId; + @XmlElement(name = "kadastrale_aanduiding", required = true) + protected KadastraleAanduiding kadastraleAanduiding; + protected LocatieBinnenland locatie; + protected String omschrijving; + + /** + * Gets the value of the objectId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjectId() { + return objectId; + } + + /** + * Sets the value of the objectId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjectId(String value) { + this.objectId = value; + } + + /** + * Gets the value of the kadastraleAanduiding property. + * + * @return + * possible object is + * {@link KadastraleAanduiding } + * + */ + public KadastraleAanduiding getKadastraleAanduiding() { + return kadastraleAanduiding; + } + + /** + * Sets the value of the kadastraleAanduiding property. + * + * @param value + * allowed object is + * {@link KadastraleAanduiding } + * + */ + public void setKadastraleAanduiding(KadastraleAanduiding value) { + this.kadastraleAanduiding = value; + } + + /** + * Gets the value of the locatie property. + * + * @return + * possible object is + * {@link LocatieBinnenland } + * + */ + public LocatieBinnenland getLocatie() { + return locatie; + } + + /** + * Sets the value of the locatie property. + * + * @param value + * allowed object is + * {@link LocatieBinnenland } + * + */ + public void setLocatie(LocatieBinnenland value) { + this.locatie = value; + } + + /** + * Gets the value of the omschrijving property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijving() { + return omschrijving; + } + + /** + * Sets the value of the omschrijving property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijving(String value) { + this.omschrijving = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtOnroerendeZaakArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtOnroerendeZaakArray.java new file mode 100644 index 0000000..fe2b3fc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtOnroerendeZaakArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for OverzichtOnroerendeZaakArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="OverzichtOnroerendeZaakArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}OverzichtOnroerendeZaak" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OverzichtOnroerendeZaakArray", propOrder = { + "item" +}) +public class OverzichtOnroerendeZaakArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link OverzichtOnroerendeZaak } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoon.java new file mode 100644 index 0000000..208dc2a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoon.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for OverzichtPersoon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="OverzichtPersoon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="natuurlijk_persoon" type="{http://www.webservices.nl/soap/}OverzichtNatuurlijkPersoon" minOccurs="0"/>
+ *         <element name="niet_natuurlijk_persoon" type="{http://www.webservices.nl/soap/}OverzichtNietNatuurlijkPersoon" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OverzichtPersoon", propOrder = { + +}) +public class OverzichtPersoon { + + protected String id; + @XmlElement(name = "natuurlijk_persoon") + protected OverzichtNatuurlijkPersoon natuurlijkPersoon; + @XmlElement(name = "niet_natuurlijk_persoon") + protected OverzichtNietNatuurlijkPersoon nietNatuurlijkPersoon; + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the natuurlijkPersoon property. + * + * @return + * possible object is + * {@link OverzichtNatuurlijkPersoon } + * + */ + public OverzichtNatuurlijkPersoon getNatuurlijkPersoon() { + return natuurlijkPersoon; + } + + /** + * Sets the value of the natuurlijkPersoon property. + * + * @param value + * allowed object is + * {@link OverzichtNatuurlijkPersoon } + * + */ + public void setNatuurlijkPersoon(OverzichtNatuurlijkPersoon value) { + this.natuurlijkPersoon = value; + } + + /** + * Gets the value of the nietNatuurlijkPersoon property. + * + * @return + * possible object is + * {@link OverzichtNietNatuurlijkPersoon } + * + */ + public OverzichtNietNatuurlijkPersoon getNietNatuurlijkPersoon() { + return nietNatuurlijkPersoon; + } + + /** + * Sets the value of the nietNatuurlijkPersoon property. + * + * @param value + * allowed object is + * {@link OverzichtNietNatuurlijkPersoon } + * + */ + public void setNietNatuurlijkPersoon(OverzichtNietNatuurlijkPersoon value) { + this.nietNatuurlijkPersoon = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonArray.java new file mode 100644 index 0000000..12990bc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for OverzichtPersoonArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="OverzichtPersoonArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}OverzichtPersoon" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OverzichtPersoonArray", propOrder = { + "item" +}) +public class OverzichtPersoonArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link OverzichtPersoon } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonV2.java new file mode 100644 index 0000000..1ec333b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonV2.java @@ -0,0 +1,148 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for OverzichtPersoonV2 complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="OverzichtPersoonV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="natuurlijk_persoon" type="{http://www.webservices.nl/soap/}OverzichtNatuurlijkPersoon" minOccurs="0"/>
+ *         <element name="niet_natuurlijk_persoon" type="{http://www.webservices.nl/soap/}OverzichtNietNatuurlijkPersoon" minOccurs="0"/>
+ *         <element name="melding" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OverzichtPersoonV2", propOrder = { + +}) +public class OverzichtPersoonV2 { + + protected String id; + @XmlElement(name = "natuurlijk_persoon") + protected OverzichtNatuurlijkPersoon natuurlijkPersoon; + @XmlElement(name = "niet_natuurlijk_persoon") + protected OverzichtNietNatuurlijkPersoon nietNatuurlijkPersoon; + protected String melding; + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the natuurlijkPersoon property. + * + * @return + * possible object is + * {@link OverzichtNatuurlijkPersoon } + * + */ + public OverzichtNatuurlijkPersoon getNatuurlijkPersoon() { + return natuurlijkPersoon; + } + + /** + * Sets the value of the natuurlijkPersoon property. + * + * @param value + * allowed object is + * {@link OverzichtNatuurlijkPersoon } + * + */ + public void setNatuurlijkPersoon(OverzichtNatuurlijkPersoon value) { + this.natuurlijkPersoon = value; + } + + /** + * Gets the value of the nietNatuurlijkPersoon property. + * + * @return + * possible object is + * {@link OverzichtNietNatuurlijkPersoon } + * + */ + public OverzichtNietNatuurlijkPersoon getNietNatuurlijkPersoon() { + return nietNatuurlijkPersoon; + } + + /** + * Sets the value of the nietNatuurlijkPersoon property. + * + * @param value + * allowed object is + * {@link OverzichtNietNatuurlijkPersoon } + * + */ + public void setNietNatuurlijkPersoon(OverzichtNietNatuurlijkPersoon value) { + this.nietNatuurlijkPersoon = value; + } + + /** + * Gets the value of the melding property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMelding() { + return melding; + } + + /** + * Sets the value of the melding property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMelding(String value) { + this.melding = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonV2Array.java new file mode 100644 index 0000000..f3e0fc0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for OverzichtPersoonV2Array complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="OverzichtPersoonV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}OverzichtPersoonV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OverzichtPersoonV2Array", propOrder = { + "item" +}) +public class OverzichtPersoonV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link OverzichtPersoonV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtRecht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtRecht.java new file mode 100644 index 0000000..660afa6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtRecht.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for OverzichtRecht complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="OverzichtRecht">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gerechtigde_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OverzichtRecht", propOrder = { + +}) +public class OverzichtRecht { + + @XmlElement(name = "object_id", required = true) + protected String objectId; + @XmlElement(name = "gerechtigde_id", required = true) + protected String gerechtigdeId; + + /** + * Gets the value of the objectId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjectId() { + return objectId; + } + + /** + * Sets the value of the objectId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjectId(String value) { + this.objectId = value; + } + + /** + * Gets the value of the gerechtigdeId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGerechtigdeId() { + return gerechtigdeId; + } + + /** + * Sets the value of the gerechtigdeId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGerechtigdeId(String value) { + this.gerechtigdeId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtRechtArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtRechtArray.java new file mode 100644 index 0000000..296d114 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtRechtArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for OverzichtRechtArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="OverzichtRechtArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}OverzichtRecht" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OverzichtRechtArray", propOrder = { + "item" +}) +public class OverzichtRechtArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link OverzichtRecht } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtV2.java new file mode 100644 index 0000000..506593a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtV2.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for OverzichtV2 complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="OverzichtV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="onroerende_zaken" type="{http://www.webservices.nl/soap/}OverzichtOnroerendeZaakArray"/>
+ *         <element name="rechten" type="{http://www.webservices.nl/soap/}OverzichtRechtArray"/>
+ *         <element name="personen" type="{http://www.webservices.nl/soap/}OverzichtPersoonV2Array" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "OverzichtV2", propOrder = { + +}) +public class OverzichtV2 { + + @XmlElement(name = "onroerende_zaken", required = true) + protected OverzichtOnroerendeZaakArray onroerendeZaken; + @XmlElement(required = true) + protected OverzichtRechtArray rechten; + protected OverzichtPersoonV2Array personen; + + /** + * Gets the value of the onroerendeZaken property. + * + * @return + * possible object is + * {@link OverzichtOnroerendeZaakArray } + * + */ + public OverzichtOnroerendeZaakArray getOnroerendeZaken() { + return onroerendeZaken; + } + + /** + * Sets the value of the onroerendeZaken property. + * + * @param value + * allowed object is + * {@link OverzichtOnroerendeZaakArray } + * + */ + public void setOnroerendeZaken(OverzichtOnroerendeZaakArray value) { + this.onroerendeZaken = value; + } + + /** + * Gets the value of the rechten property. + * + * @return + * possible object is + * {@link OverzichtRechtArray } + * + */ + public OverzichtRechtArray getRechten() { + return rechten; + } + + /** + * Sets the value of the rechten property. + * + * @param value + * allowed object is + * {@link OverzichtRechtArray } + * + */ + public void setRechten(OverzichtRechtArray value) { + this.rechten = value; + } + + /** + * Gets the value of the personen property. + * + * @return + * possible object is + * {@link OverzichtPersoonV2Array } + * + */ + public OverzichtPersoonV2Array getPersonen() { + return personen; + } + + /** + * Sets the value of the personen property. + * + * @param value + * allowed object is + * {@link OverzichtPersoonV2Array } + * + */ + public void setPersonen(OverzichtPersoonV2Array value) { + this.personen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeks.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeks.java new file mode 100644 index 0000000..a7b1577 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeks.java @@ -0,0 +1,539 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for PCReeks complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="PCReeks">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="reeksid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnr_van" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnr_tm" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="wijkcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="lettercombinatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="reeksindicatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="straatid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="straatnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="straatnaam_nen" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="straatnaam_ptt" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="straatnaam_extract" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="plaatsid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="plaatsnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="plaatsnaam_ptt" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="plaatsnaam_extract" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeenteid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="cebucocode" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="provinciecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="provincienaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PCReeks", propOrder = { + +}) +public class PCReeks { + + protected int reeksid; + @XmlElement(name = "huisnr_van") + protected int huisnrVan; + @XmlElement(name = "huisnr_tm") + protected int huisnrTm; + @XmlElement(required = true) + protected String wijkcode; + @XmlElement(required = true) + protected String lettercombinatie; + @XmlElement(required = true) + protected String reeksindicatie; + protected int straatid; + @XmlElement(required = true) + protected String straatnaam; + @XmlElement(name = "straatnaam_nen", required = true) + protected String straatnaamNen; + @XmlElement(name = "straatnaam_ptt", required = true) + protected String straatnaamPtt; + @XmlElement(name = "straatnaam_extract", required = true) + protected String straatnaamExtract; + protected int plaatsid; + @XmlElement(required = true) + protected String plaatsnaam; + @XmlElement(name = "plaatsnaam_ptt", required = true) + protected String plaatsnaamPtt; + @XmlElement(name = "plaatsnaam_extract", required = true) + protected String plaatsnaamExtract; + protected int gemeenteid; + @XmlElement(required = true) + protected String gemeentenaam; + protected int gemeentecode; + protected int cebucocode; + @XmlElement(required = true) + protected String provinciecode; + @XmlElement(required = true) + protected String provincienaam; + + /** + * Gets the value of the reeksid property. + * + */ + public int getReeksid() { + return reeksid; + } + + /** + * Sets the value of the reeksid property. + * + */ + public void setReeksid(int value) { + this.reeksid = value; + } + + /** + * Gets the value of the huisnrVan property. + * + */ + public int getHuisnrVan() { + return huisnrVan; + } + + /** + * Sets the value of the huisnrVan property. + * + */ + public void setHuisnrVan(int value) { + this.huisnrVan = value; + } + + /** + * Gets the value of the huisnrTm property. + * + */ + public int getHuisnrTm() { + return huisnrTm; + } + + /** + * Sets the value of the huisnrTm property. + * + */ + public void setHuisnrTm(int value) { + this.huisnrTm = value; + } + + /** + * Gets the value of the wijkcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWijkcode() { + return wijkcode; + } + + /** + * Sets the value of the wijkcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWijkcode(String value) { + this.wijkcode = value; + } + + /** + * Gets the value of the lettercombinatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLettercombinatie() { + return lettercombinatie; + } + + /** + * Sets the value of the lettercombinatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLettercombinatie(String value) { + this.lettercombinatie = value; + } + + /** + * Gets the value of the reeksindicatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReeksindicatie() { + return reeksindicatie; + } + + /** + * Sets the value of the reeksindicatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReeksindicatie(String value) { + this.reeksindicatie = value; + } + + /** + * Gets the value of the straatid property. + * + */ + public int getStraatid() { + return straatid; + } + + /** + * Sets the value of the straatid property. + * + */ + public void setStraatid(int value) { + this.straatid = value; + } + + /** + * Gets the value of the straatnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStraatnaam() { + return straatnaam; + } + + /** + * Sets the value of the straatnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStraatnaam(String value) { + this.straatnaam = value; + } + + /** + * Gets the value of the straatnaamNen property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStraatnaamNen() { + return straatnaamNen; + } + + /** + * Sets the value of the straatnaamNen property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStraatnaamNen(String value) { + this.straatnaamNen = value; + } + + /** + * Gets the value of the straatnaamPtt property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStraatnaamPtt() { + return straatnaamPtt; + } + + /** + * Sets the value of the straatnaamPtt property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStraatnaamPtt(String value) { + this.straatnaamPtt = value; + } + + /** + * Gets the value of the straatnaamExtract property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStraatnaamExtract() { + return straatnaamExtract; + } + + /** + * Sets the value of the straatnaamExtract property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStraatnaamExtract(String value) { + this.straatnaamExtract = value; + } + + /** + * Gets the value of the plaatsid property. + * + */ + public int getPlaatsid() { + return plaatsid; + } + + /** + * Sets the value of the plaatsid property. + * + */ + public void setPlaatsid(int value) { + this.plaatsid = value; + } + + /** + * Gets the value of the plaatsnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaatsnaam() { + return plaatsnaam; + } + + /** + * Sets the value of the plaatsnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaatsnaam(String value) { + this.plaatsnaam = value; + } + + /** + * Gets the value of the plaatsnaamPtt property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaatsnaamPtt() { + return plaatsnaamPtt; + } + + /** + * Sets the value of the plaatsnaamPtt property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaatsnaamPtt(String value) { + this.plaatsnaamPtt = value; + } + + /** + * Gets the value of the plaatsnaamExtract property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaatsnaamExtract() { + return plaatsnaamExtract; + } + + /** + * Sets the value of the plaatsnaamExtract property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaatsnaamExtract(String value) { + this.plaatsnaamExtract = value; + } + + /** + * Gets the value of the gemeenteid property. + * + */ + public int getGemeenteid() { + return gemeenteid; + } + + /** + * Sets the value of the gemeenteid property. + * + */ + public void setGemeenteid(int value) { + this.gemeenteid = value; + } + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the gemeentecode property. + * + */ + public int getGemeentecode() { + return gemeentecode; + } + + /** + * Sets the value of the gemeentecode property. + * + */ + public void setGemeentecode(int value) { + this.gemeentecode = value; + } + + /** + * Gets the value of the cebucocode property. + * + */ + public int getCebucocode() { + return cebucocode; + } + + /** + * Sets the value of the cebucocode property. + * + */ + public void setCebucocode(int value) { + this.cebucocode = value; + } + + /** + * Gets the value of the provinciecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvinciecode() { + return provinciecode; + } + + /** + * Sets the value of the provinciecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvinciecode(String value) { + this.provinciecode = value; + } + + /** + * Gets the value of the provincienaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvincienaam() { + return provincienaam; + } + + /** + * Sets the value of the provincienaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvincienaam(String value) { + this.provincienaam = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeksArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeksArray.java new file mode 100644 index 0000000..0017140 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeksArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for PCReeksArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="PCReeksArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}PCReeks" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PCReeksArray", propOrder = { + "item" +}) +public class PCReeksArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PCReeks } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeksSearchPartsPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeksSearchPartsPagedResult.java new file mode 100644 index 0000000..d18a668 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeksSearchPartsPagedResult.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for PCReeksSearchPartsPagedResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="PCReeksSearchPartsPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="extra" type="{http://www.webservices.nl/soap/}SearchParts"/>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}PCReeksArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PCReeksSearchPartsPagedResult", propOrder = { + +}) +public class PCReeksSearchPartsPagedResult { + + @XmlElement(required = true) + protected SearchParts extra; + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected PCReeksArray results; + + /** + * Gets the value of the extra property. + * + * @return + * possible object is + * {@link SearchParts } + * + */ + public SearchParts getExtra() { + return extra; + } + + /** + * Sets the value of the extra property. + * + * @param value + * allowed object is + * {@link SearchParts } + * + */ + public void setExtra(SearchParts value) { + this.extra = value; + } + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link PCReeksArray } + * + */ + public PCReeksArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link PCReeksArray } + * + */ + public void setResults(PCReeksArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperking.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperking.java new file mode 100644 index 0000000..5ed59e6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperking.java @@ -0,0 +1,231 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for PRBeperking complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="PRBeperking">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="stuk_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="betrokkene_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeente_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeentelijke_registratie_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="omschrijving_pr_beperking" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="beschrijving_pr_beperking" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="splitsing_pr_beperking" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PRBeperking", propOrder = { + +}) +public class PRBeperking { + + @XmlElement(name = "stuk_id", required = true) + protected String stukId; + @XmlElement(name = "betrokkene_id", required = true) + protected String betrokkeneId; + @XmlElement(name = "gemeente_id", required = true) + protected String gemeenteId; + @XmlElement(name = "gemeentelijke_registratie_id", required = true) + protected String gemeentelijkeRegistratieId; + @XmlElement(name = "omschrijving_pr_beperking", required = true) + protected String omschrijvingPrBeperking; + @XmlElement(name = "beschrijving_pr_beperking") + protected String beschrijvingPrBeperking; + @XmlElement(name = "splitsing_pr_beperking") + protected String splitsingPrBeperking; + + /** + * Gets the value of the stukId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStukId() { + return stukId; + } + + /** + * Sets the value of the stukId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStukId(String value) { + this.stukId = value; + } + + /** + * Gets the value of the betrokkeneId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBetrokkeneId() { + return betrokkeneId; + } + + /** + * Sets the value of the betrokkeneId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBetrokkeneId(String value) { + this.betrokkeneId = value; + } + + /** + * Gets the value of the gemeenteId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeenteId() { + return gemeenteId; + } + + /** + * Sets the value of the gemeenteId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeenteId(String value) { + this.gemeenteId = value; + } + + /** + * Gets the value of the gemeentelijkeRegistratieId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentelijkeRegistratieId() { + return gemeentelijkeRegistratieId; + } + + /** + * Sets the value of the gemeentelijkeRegistratieId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentelijkeRegistratieId(String value) { + this.gemeentelijkeRegistratieId = value; + } + + /** + * Gets the value of the omschrijvingPrBeperking property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijvingPrBeperking() { + return omschrijvingPrBeperking; + } + + /** + * Sets the value of the omschrijvingPrBeperking property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijvingPrBeperking(String value) { + this.omschrijvingPrBeperking = value; + } + + /** + * Gets the value of the beschrijvingPrBeperking property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBeschrijvingPrBeperking() { + return beschrijvingPrBeperking; + } + + /** + * Sets the value of the beschrijvingPrBeperking property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBeschrijvingPrBeperking(String value) { + this.beschrijvingPrBeperking = value; + } + + /** + * Gets the value of the splitsingPrBeperking property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSplitsingPrBeperking() { + return splitsingPrBeperking; + } + + /** + * Sets the value of the splitsingPrBeperking property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSplitsingPrBeperking(String value) { + this.splitsingPrBeperking = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingArray.java new file mode 100644 index 0000000..5c6eb8c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for PRBeperkingArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="PRBeperkingArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}PRBeperking" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PRBeperkingArray", propOrder = { + "item" +}) +public class PRBeperkingArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PRBeperking } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingLijst.java new file mode 100644 index 0000000..62eb774 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingLijst.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for PRBeperkingLijst complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="PRBeperkingLijst">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="pr_beperkingen" type="{http://www.webservices.nl/soap/}PRBeperkingArray"/>
+ *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PRBeperkingLijst", propOrder = { + +}) +public class PRBeperkingLijst { + + @XmlElement(name = "pr_beperkingen", required = true) + protected PRBeperkingArray prBeperkingen; + @XmlElement(name = "indicatie_compleet") + protected boolean indicatieCompleet; + + /** + * Gets the value of the prBeperkingen property. + * + * @return + * possible object is + * {@link PRBeperkingArray } + * + */ + public PRBeperkingArray getPrBeperkingen() { + return prBeperkingen; + } + + /** + * Sets the value of the prBeperkingen property. + * + * @param value + * allowed object is + * {@link PRBeperkingArray } + * + */ + public void setPrBeperkingen(PRBeperkingArray value) { + this.prBeperkingen = value; + } + + /** + * Gets the value of the indicatieCompleet property. + * + */ + public boolean isIndicatieCompleet() { + return indicatieCompleet; + } + + /** + * Sets the value of the indicatieCompleet property. + * + */ + public void setIndicatieCompleet(boolean value) { + this.indicatieCompleet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingenKadastraalObject.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingenKadastraalObject.java new file mode 100644 index 0000000..014c786 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingenKadastraalObject.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for PRBeperkingenKadastraalObject complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="PRBeperkingenKadastraalObject">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="pr_beperkingen_lijst" type="{http://www.webservices.nl/soap/}PRBeperkingLijst" minOccurs="0"/>
+ *         <element name="melding" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PRBeperkingenKadastraalObject", propOrder = { + +}) +public class PRBeperkingenKadastraalObject { + + @XmlElement(name = "pr_beperkingen_lijst") + protected PRBeperkingLijst prBeperkingenLijst; + protected String melding; + + /** + * Gets the value of the prBeperkingenLijst property. + * + * @return + * possible object is + * {@link PRBeperkingLijst } + * + */ + public PRBeperkingLijst getPrBeperkingenLijst() { + return prBeperkingenLijst; + } + + /** + * Sets the value of the prBeperkingenLijst property. + * + * @param value + * allowed object is + * {@link PRBeperkingLijst } + * + */ + public void setPrBeperkingenLijst(PRBeperkingLijst value) { + this.prBeperkingenLijst = value; + } + + /** + * Gets the value of the melding property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMelding() { + return melding; + } + + /** + * Sets the value of the melding property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMelding(String value) { + this.melding = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Perceel.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Perceel.java new file mode 100644 index 0000000..d43d8a2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Perceel.java @@ -0,0 +1,620 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for Perceel complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="Perceel">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="perceelid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnr" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnr_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="reeksid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnr_van" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="huisnr_tm" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="wijkcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="lettercombinatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="reeksindicatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="straatid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="straatnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="straatnaam_nen" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="straatnaam_ptt" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="straatnaam_extract" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="plaatsid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="plaatsnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="plaatsnaam_ptt" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="plaatsnaam_extract" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeenteid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="cebucocode" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="provinciecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="provincienaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Perceel", propOrder = { + +}) +public class Perceel { + + protected int perceelid; + protected int huisnr; + @XmlElement(name = "huisnr_toevoeging", required = true) + protected String huisnrToevoeging; + protected int perceelnummer; + protected int reeksid; + @XmlElement(name = "huisnr_van") + protected int huisnrVan; + @XmlElement(name = "huisnr_tm") + protected int huisnrTm; + @XmlElement(required = true) + protected String wijkcode; + @XmlElement(required = true) + protected String lettercombinatie; + @XmlElement(required = true) + protected String reeksindicatie; + protected int straatid; + @XmlElement(required = true) + protected String straatnaam; + @XmlElement(name = "straatnaam_nen", required = true) + protected String straatnaamNen; + @XmlElement(name = "straatnaam_ptt", required = true) + protected String straatnaamPtt; + @XmlElement(name = "straatnaam_extract", required = true) + protected String straatnaamExtract; + protected int plaatsid; + @XmlElement(required = true) + protected String plaatsnaam; + @XmlElement(name = "plaatsnaam_ptt", required = true) + protected String plaatsnaamPtt; + @XmlElement(name = "plaatsnaam_extract", required = true) + protected String plaatsnaamExtract; + protected int gemeenteid; + @XmlElement(required = true) + protected String gemeentenaam; + protected int gemeentecode; + protected int cebucocode; + @XmlElement(required = true) + protected String provinciecode; + @XmlElement(required = true) + protected String provincienaam; + + /** + * Gets the value of the perceelid property. + * + */ + public int getPerceelid() { + return perceelid; + } + + /** + * Sets the value of the perceelid property. + * + */ + public void setPerceelid(int value) { + this.perceelid = value; + } + + /** + * Gets the value of the huisnr property. + * + */ + public int getHuisnr() { + return huisnr; + } + + /** + * Sets the value of the huisnr property. + * + */ + public void setHuisnr(int value) { + this.huisnr = value; + } + + /** + * Gets the value of the huisnrToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnrToevoeging() { + return huisnrToevoeging; + } + + /** + * Sets the value of the huisnrToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnrToevoeging(String value) { + this.huisnrToevoeging = value; + } + + /** + * Gets the value of the perceelnummer property. + * + */ + public int getPerceelnummer() { + return perceelnummer; + } + + /** + * Sets the value of the perceelnummer property. + * + */ + public void setPerceelnummer(int value) { + this.perceelnummer = value; + } + + /** + * Gets the value of the reeksid property. + * + */ + public int getReeksid() { + return reeksid; + } + + /** + * Sets the value of the reeksid property. + * + */ + public void setReeksid(int value) { + this.reeksid = value; + } + + /** + * Gets the value of the huisnrVan property. + * + */ + public int getHuisnrVan() { + return huisnrVan; + } + + /** + * Sets the value of the huisnrVan property. + * + */ + public void setHuisnrVan(int value) { + this.huisnrVan = value; + } + + /** + * Gets the value of the huisnrTm property. + * + */ + public int getHuisnrTm() { + return huisnrTm; + } + + /** + * Sets the value of the huisnrTm property. + * + */ + public void setHuisnrTm(int value) { + this.huisnrTm = value; + } + + /** + * Gets the value of the wijkcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWijkcode() { + return wijkcode; + } + + /** + * Sets the value of the wijkcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWijkcode(String value) { + this.wijkcode = value; + } + + /** + * Gets the value of the lettercombinatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLettercombinatie() { + return lettercombinatie; + } + + /** + * Sets the value of the lettercombinatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLettercombinatie(String value) { + this.lettercombinatie = value; + } + + /** + * Gets the value of the reeksindicatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReeksindicatie() { + return reeksindicatie; + } + + /** + * Sets the value of the reeksindicatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReeksindicatie(String value) { + this.reeksindicatie = value; + } + + /** + * Gets the value of the straatid property. + * + */ + public int getStraatid() { + return straatid; + } + + /** + * Sets the value of the straatid property. + * + */ + public void setStraatid(int value) { + this.straatid = value; + } + + /** + * Gets the value of the straatnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStraatnaam() { + return straatnaam; + } + + /** + * Sets the value of the straatnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStraatnaam(String value) { + this.straatnaam = value; + } + + /** + * Gets the value of the straatnaamNen property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStraatnaamNen() { + return straatnaamNen; + } + + /** + * Sets the value of the straatnaamNen property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStraatnaamNen(String value) { + this.straatnaamNen = value; + } + + /** + * Gets the value of the straatnaamPtt property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStraatnaamPtt() { + return straatnaamPtt; + } + + /** + * Sets the value of the straatnaamPtt property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStraatnaamPtt(String value) { + this.straatnaamPtt = value; + } + + /** + * Gets the value of the straatnaamExtract property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStraatnaamExtract() { + return straatnaamExtract; + } + + /** + * Sets the value of the straatnaamExtract property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStraatnaamExtract(String value) { + this.straatnaamExtract = value; + } + + /** + * Gets the value of the plaatsid property. + * + */ + public int getPlaatsid() { + return plaatsid; + } + + /** + * Sets the value of the plaatsid property. + * + */ + public void setPlaatsid(int value) { + this.plaatsid = value; + } + + /** + * Gets the value of the plaatsnaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaatsnaam() { + return plaatsnaam; + } + + /** + * Sets the value of the plaatsnaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaatsnaam(String value) { + this.plaatsnaam = value; + } + + /** + * Gets the value of the plaatsnaamPtt property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaatsnaamPtt() { + return plaatsnaamPtt; + } + + /** + * Sets the value of the plaatsnaamPtt property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaatsnaamPtt(String value) { + this.plaatsnaamPtt = value; + } + + /** + * Gets the value of the plaatsnaamExtract property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaatsnaamExtract() { + return plaatsnaamExtract; + } + + /** + * Sets the value of the plaatsnaamExtract property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaatsnaamExtract(String value) { + this.plaatsnaamExtract = value; + } + + /** + * Gets the value of the gemeenteid property. + * + */ + public int getGemeenteid() { + return gemeenteid; + } + + /** + * Sets the value of the gemeenteid property. + * + */ + public void setGemeenteid(int value) { + this.gemeenteid = value; + } + + /** + * Gets the value of the gemeentenaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeentenaam() { + return gemeentenaam; + } + + /** + * Sets the value of the gemeentenaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeentenaam(String value) { + this.gemeentenaam = value; + } + + /** + * Gets the value of the gemeentecode property. + * + */ + public int getGemeentecode() { + return gemeentecode; + } + + /** + * Sets the value of the gemeentecode property. + * + */ + public void setGemeentecode(int value) { + this.gemeentecode = value; + } + + /** + * Gets the value of the cebucocode property. + * + */ + public int getCebucocode() { + return cebucocode; + } + + /** + * Sets the value of the cebucocode property. + * + */ + public void setCebucocode(int value) { + this.cebucocode = value; + } + + /** + * Gets the value of the provinciecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvinciecode() { + return provinciecode; + } + + /** + * Sets the value of the provinciecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvinciecode(String value) { + this.provinciecode = value; + } + + /** + * Gets the value of the provincienaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvincienaam() { + return provincienaam; + } + + /** + * Sets the value of the provincienaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvincienaam(String value) { + this.provincienaam = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelArray.java new file mode 100644 index 0000000..0809912 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for PerceelArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="PerceelArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}Perceel" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PerceelArray", propOrder = { + "item" +}) +public class PerceelArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Perceel } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelDetails.java new file mode 100644 index 0000000..ecd7961 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelDetails.java @@ -0,0 +1,93 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for PerceelDetails complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="PerceelDetails">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="perceel" type="{http://www.webservices.nl/soap/}KadastraalPerceel" minOccurs="0"/>
+ *         <element name="appartementsrecht" type="{http://www.webservices.nl/soap/}VerenigingVanEigenaren" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PerceelDetails", propOrder = { + +}) +public class PerceelDetails { + + protected KadastraalPerceel perceel; + protected VerenigingVanEigenaren appartementsrecht; + + /** + * Gets the value of the perceel property. + * + * @return + * possible object is + * {@link KadastraalPerceel } + * + */ + public KadastraalPerceel getPerceel() { + return perceel; + } + + /** + * Sets the value of the perceel property. + * + * @param value + * allowed object is + * {@link KadastraalPerceel } + * + */ + public void setPerceel(KadastraalPerceel value) { + this.perceel = value; + } + + /** + * Gets the value of the appartementsrecht property. + * + * @return + * possible object is + * {@link VerenigingVanEigenaren } + * + */ + public VerenigingVanEigenaren getAppartementsrecht() { + return appartementsrecht; + } + + /** + * Sets the value of the appartementsrecht property. + * + * @param value + * allowed object is + * {@link VerenigingVanEigenaren } + * + */ + public void setAppartementsrecht(VerenigingVanEigenaren value) { + this.appartementsrecht = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelSearchPartsPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelSearchPartsPagedResult.java new file mode 100644 index 0000000..25832b4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelSearchPartsPagedResult.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for PerceelSearchPartsPagedResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="PerceelSearchPartsPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="extra" type="{http://www.webservices.nl/soap/}SearchParts"/>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}PerceelArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PerceelSearchPartsPagedResult", propOrder = { + +}) +public class PerceelSearchPartsPagedResult { + + @XmlElement(required = true) + protected SearchParts extra; + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected PerceelArray results; + + /** + * Gets the value of the extra property. + * + * @return + * possible object is + * {@link SearchParts } + * + */ + public SearchParts getExtra() { + return extra; + } + + /** + * Sets the value of the extra property. + * + * @param value + * allowed object is + * {@link SearchParts } + * + */ + public void setExtra(SearchParts value) { + this.extra = value; + } + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link PerceelArray } + * + */ + public PerceelArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link PerceelArray } + * + */ + public void setResults(PerceelArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Persoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Persoon.java new file mode 100644 index 0000000..bbb7c03 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Persoon.java @@ -0,0 +1,267 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for Persoon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="Persoon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="natuurlijk_persoon" type="{http://www.webservices.nl/soap/}NatuurlijkPersoon" minOccurs="0"/>
+ *         <element name="niet_natuurlijk_persoon" type="{http://www.webservices.nl/soap/}NietNatuurlijkPersoon" minOccurs="0"/>
+ *         <element name="aantekening_beschikkingsbevoegdheid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indicatie_meer_onroerende_zaken" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="woonlocatie" type="{http://www.webservices.nl/soap/}Locatie" minOccurs="0"/>
+ *         <element name="postlocatie" type="{http://www.webservices.nl/soap/}Locatie" minOccurs="0"/>
+ *         <element name="niet_volledig_verwerkt_stukken_lijst" type="{http://www.webservices.nl/soap/}StukReferentiesLijst" minOccurs="0"/>
+ *         <element name="mogelijk_van_belang_stukken_lijst" type="{http://www.webservices.nl/soap/}StukReferentiesLijst" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Persoon", propOrder = { + +}) +public class Persoon { + + @XmlElement(required = true) + protected String id; + @XmlElement(name = "natuurlijk_persoon") + protected NatuurlijkPersoon natuurlijkPersoon; + @XmlElement(name = "niet_natuurlijk_persoon") + protected NietNatuurlijkPersoon nietNatuurlijkPersoon; + @XmlElement(name = "aantekening_beschikkingsbevoegdheid") + protected boolean aantekeningBeschikkingsbevoegdheid; + @XmlElement(name = "indicatie_meer_onroerende_zaken") + protected boolean indicatieMeerOnroerendeZaken; + protected Locatie woonlocatie; + protected Locatie postlocatie; + @XmlElement(name = "niet_volledig_verwerkt_stukken_lijst") + protected StukReferentiesLijst nietVolledigVerwerktStukkenLijst; + @XmlElement(name = "mogelijk_van_belang_stukken_lijst") + protected StukReferentiesLijst mogelijkVanBelangStukkenLijst; + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the natuurlijkPersoon property. + * + * @return + * possible object is + * {@link NatuurlijkPersoon } + * + */ + public NatuurlijkPersoon getNatuurlijkPersoon() { + return natuurlijkPersoon; + } + + /** + * Sets the value of the natuurlijkPersoon property. + * + * @param value + * allowed object is + * {@link NatuurlijkPersoon } + * + */ + public void setNatuurlijkPersoon(NatuurlijkPersoon value) { + this.natuurlijkPersoon = value; + } + + /** + * Gets the value of the nietNatuurlijkPersoon property. + * + * @return + * possible object is + * {@link NietNatuurlijkPersoon } + * + */ + public NietNatuurlijkPersoon getNietNatuurlijkPersoon() { + return nietNatuurlijkPersoon; + } + + /** + * Sets the value of the nietNatuurlijkPersoon property. + * + * @param value + * allowed object is + * {@link NietNatuurlijkPersoon } + * + */ + public void setNietNatuurlijkPersoon(NietNatuurlijkPersoon value) { + this.nietNatuurlijkPersoon = value; + } + + /** + * Gets the value of the aantekeningBeschikkingsbevoegdheid property. + * + */ + public boolean isAantekeningBeschikkingsbevoegdheid() { + return aantekeningBeschikkingsbevoegdheid; + } + + /** + * Sets the value of the aantekeningBeschikkingsbevoegdheid property. + * + */ + public void setAantekeningBeschikkingsbevoegdheid(boolean value) { + this.aantekeningBeschikkingsbevoegdheid = value; + } + + /** + * Gets the value of the indicatieMeerOnroerendeZaken property. + * + */ + public boolean isIndicatieMeerOnroerendeZaken() { + return indicatieMeerOnroerendeZaken; + } + + /** + * Sets the value of the indicatieMeerOnroerendeZaken property. + * + */ + public void setIndicatieMeerOnroerendeZaken(boolean value) { + this.indicatieMeerOnroerendeZaken = value; + } + + /** + * Gets the value of the woonlocatie property. + * + * @return + * possible object is + * {@link Locatie } + * + */ + public Locatie getWoonlocatie() { + return woonlocatie; + } + + /** + * Sets the value of the woonlocatie property. + * + * @param value + * allowed object is + * {@link Locatie } + * + */ + public void setWoonlocatie(Locatie value) { + this.woonlocatie = value; + } + + /** + * Gets the value of the postlocatie property. + * + * @return + * possible object is + * {@link Locatie } + * + */ + public Locatie getPostlocatie() { + return postlocatie; + } + + /** + * Sets the value of the postlocatie property. + * + * @param value + * allowed object is + * {@link Locatie } + * + */ + public void setPostlocatie(Locatie value) { + this.postlocatie = value; + } + + /** + * Gets the value of the nietVolledigVerwerktStukkenLijst property. + * + * @return + * possible object is + * {@link StukReferentiesLijst } + * + */ + public StukReferentiesLijst getNietVolledigVerwerktStukkenLijst() { + return nietVolledigVerwerktStukkenLijst; + } + + /** + * Sets the value of the nietVolledigVerwerktStukkenLijst property. + * + * @param value + * allowed object is + * {@link StukReferentiesLijst } + * + */ + public void setNietVolledigVerwerktStukkenLijst(StukReferentiesLijst value) { + this.nietVolledigVerwerktStukkenLijst = value; + } + + /** + * Gets the value of the mogelijkVanBelangStukkenLijst property. + * + * @return + * possible object is + * {@link StukReferentiesLijst } + * + */ + public StukReferentiesLijst getMogelijkVanBelangStukkenLijst() { + return mogelijkVanBelangStukkenLijst; + } + + /** + * Sets the value of the mogelijkVanBelangStukkenLijst property. + * + * @param value + * allowed object is + * {@link StukReferentiesLijst } + * + */ + public void setMogelijkVanBelangStukkenLijst(StukReferentiesLijst value) { + this.mogelijkVanBelangStukkenLijst = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonArray.java new file mode 100644 index 0000000..ba22986 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for PersoonArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="PersoonArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}Persoon" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PersoonArray", propOrder = { + "item" +}) +public class PersoonArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Persoon } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonV2.java new file mode 100644 index 0000000..3528524 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonV2.java @@ -0,0 +1,267 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for PersoonV2 complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="PersoonV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="natuurlijk_persoon" type="{http://www.webservices.nl/soap/}NatuurlijkPersoonV2" minOccurs="0"/>
+ *         <element name="niet_natuurlijk_persoon" type="{http://www.webservices.nl/soap/}NietNatuurlijkPersoon" minOccurs="0"/>
+ *         <element name="aantekening_beschikkingsbevoegdheid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="indicatie_meer_onroerende_zaken" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="woonlocatie" type="{http://www.webservices.nl/soap/}Locatie" minOccurs="0"/>
+ *         <element name="postlocatie" type="{http://www.webservices.nl/soap/}Locatie" minOccurs="0"/>
+ *         <element name="niet_volledig_verwerkt_stukken_lijst" type="{http://www.webservices.nl/soap/}StukReferentiesLijst" minOccurs="0"/>
+ *         <element name="mogelijk_van_belang_stukken_lijst" type="{http://www.webservices.nl/soap/}StukReferentiesLijst" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PersoonV2", propOrder = { + +}) +public class PersoonV2 { + + @XmlElement(required = true) + protected String id; + @XmlElement(name = "natuurlijk_persoon") + protected NatuurlijkPersoonV2 natuurlijkPersoon; + @XmlElement(name = "niet_natuurlijk_persoon") + protected NietNatuurlijkPersoon nietNatuurlijkPersoon; + @XmlElement(name = "aantekening_beschikkingsbevoegdheid") + protected boolean aantekeningBeschikkingsbevoegdheid; + @XmlElement(name = "indicatie_meer_onroerende_zaken") + protected boolean indicatieMeerOnroerendeZaken; + protected Locatie woonlocatie; + protected Locatie postlocatie; + @XmlElement(name = "niet_volledig_verwerkt_stukken_lijst") + protected StukReferentiesLijst nietVolledigVerwerktStukkenLijst; + @XmlElement(name = "mogelijk_van_belang_stukken_lijst") + protected StukReferentiesLijst mogelijkVanBelangStukkenLijst; + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the natuurlijkPersoon property. + * + * @return + * possible object is + * {@link NatuurlijkPersoonV2 } + * + */ + public NatuurlijkPersoonV2 getNatuurlijkPersoon() { + return natuurlijkPersoon; + } + + /** + * Sets the value of the natuurlijkPersoon property. + * + * @param value + * allowed object is + * {@link NatuurlijkPersoonV2 } + * + */ + public void setNatuurlijkPersoon(NatuurlijkPersoonV2 value) { + this.natuurlijkPersoon = value; + } + + /** + * Gets the value of the nietNatuurlijkPersoon property. + * + * @return + * possible object is + * {@link NietNatuurlijkPersoon } + * + */ + public NietNatuurlijkPersoon getNietNatuurlijkPersoon() { + return nietNatuurlijkPersoon; + } + + /** + * Sets the value of the nietNatuurlijkPersoon property. + * + * @param value + * allowed object is + * {@link NietNatuurlijkPersoon } + * + */ + public void setNietNatuurlijkPersoon(NietNatuurlijkPersoon value) { + this.nietNatuurlijkPersoon = value; + } + + /** + * Gets the value of the aantekeningBeschikkingsbevoegdheid property. + * + */ + public boolean isAantekeningBeschikkingsbevoegdheid() { + return aantekeningBeschikkingsbevoegdheid; + } + + /** + * Sets the value of the aantekeningBeschikkingsbevoegdheid property. + * + */ + public void setAantekeningBeschikkingsbevoegdheid(boolean value) { + this.aantekeningBeschikkingsbevoegdheid = value; + } + + /** + * Gets the value of the indicatieMeerOnroerendeZaken property. + * + */ + public boolean isIndicatieMeerOnroerendeZaken() { + return indicatieMeerOnroerendeZaken; + } + + /** + * Sets the value of the indicatieMeerOnroerendeZaken property. + * + */ + public void setIndicatieMeerOnroerendeZaken(boolean value) { + this.indicatieMeerOnroerendeZaken = value; + } + + /** + * Gets the value of the woonlocatie property. + * + * @return + * possible object is + * {@link Locatie } + * + */ + public Locatie getWoonlocatie() { + return woonlocatie; + } + + /** + * Sets the value of the woonlocatie property. + * + * @param value + * allowed object is + * {@link Locatie } + * + */ + public void setWoonlocatie(Locatie value) { + this.woonlocatie = value; + } + + /** + * Gets the value of the postlocatie property. + * + * @return + * possible object is + * {@link Locatie } + * + */ + public Locatie getPostlocatie() { + return postlocatie; + } + + /** + * Sets the value of the postlocatie property. + * + * @param value + * allowed object is + * {@link Locatie } + * + */ + public void setPostlocatie(Locatie value) { + this.postlocatie = value; + } + + /** + * Gets the value of the nietVolledigVerwerktStukkenLijst property. + * + * @return + * possible object is + * {@link StukReferentiesLijst } + * + */ + public StukReferentiesLijst getNietVolledigVerwerktStukkenLijst() { + return nietVolledigVerwerktStukkenLijst; + } + + /** + * Sets the value of the nietVolledigVerwerktStukkenLijst property. + * + * @param value + * allowed object is + * {@link StukReferentiesLijst } + * + */ + public void setNietVolledigVerwerktStukkenLijst(StukReferentiesLijst value) { + this.nietVolledigVerwerktStukkenLijst = value; + } + + /** + * Gets the value of the mogelijkVanBelangStukkenLijst property. + * + * @return + * possible object is + * {@link StukReferentiesLijst } + * + */ + public StukReferentiesLijst getMogelijkVanBelangStukkenLijst() { + return mogelijkVanBelangStukkenLijst; + } + + /** + * Sets the value of the mogelijkVanBelangStukkenLijst property. + * + * @param value + * allowed object is + * {@link StukReferentiesLijst } + * + */ + public void setMogelijkVanBelangStukkenLijst(StukReferentiesLijst value) { + this.mogelijkVanBelangStukkenLijst = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonV2Array.java new file mode 100644 index 0000000..b0ffd2b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for PersoonV2Array complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="PersoonV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}PersoonV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "PersoonV2Array", propOrder = { + "item" +}) +public class PersoonV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PersoonV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Province.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Province.java new file mode 100644 index 0000000..0171793 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Province.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for Province complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="Province">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="provinciecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="provincienaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Province", propOrder = { + +}) +public class Province { + + @XmlElement(required = true) + protected String provinciecode; + @XmlElement(required = true) + protected String provincienaam; + + /** + * Gets the value of the provinciecode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvinciecode() { + return provinciecode; + } + + /** + * Sets the value of the provinciecode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvinciecode(String value) { + this.provinciecode = value; + } + + /** + * Gets the value of the provincienaam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvincienaam() { + return provincienaam; + } + + /** + * Sets the value of the provincienaam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvincienaam(String value) { + this.provincienaam = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ProvinceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ProvinceArray.java new file mode 100644 index 0000000..b0a516e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ProvinceArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ProvinceArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="ProvinceArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}Province" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProvinceArray", propOrder = { + "item" +}) +public class ProvinceArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Province } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ProvincePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ProvincePagedResult.java new file mode 100644 index 0000000..17a02e7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ProvincePagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ProvincePagedResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="ProvincePagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}ProvinceArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ProvincePagedResult", propOrder = { + +}) +public class ProvincePagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected ProvinceArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link ProvinceArray } + * + */ + public ProvinceArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link ProvinceArray } + * + */ + public void setResults(ProvinceArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinates.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinates.java new file mode 100644 index 0000000..a1e8644 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinates.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RDCoordinates complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RDCoordinates">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RDCoordinates", propOrder = { + +}) +public class RDCoordinates { + + protected int x; + protected int y; + + /** + * Gets the value of the x property. + * + */ + public int getX() { + return x; + } + + /** + * Sets the value of the x property. + * + */ + public void setX(int value) { + this.x = value; + } + + /** + * Gets the value of the y property. + * + */ + public int getY() { + return y; + } + + /** + * Sets the value of the y property. + * + */ + public void setY(int value) { + this.y = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinatesArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinatesArray.java new file mode 100644 index 0000000..e966928 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinatesArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RDCoordinatesArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RDCoordinatesArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}RDCoordinates" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RDCoordinatesArray", propOrder = { + "item" +}) +public class RDCoordinatesArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link RDCoordinates } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinatesMatch.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinatesMatch.java new file mode 100644 index 0000000..70ae330 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinatesMatch.java @@ -0,0 +1,132 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RDCoordinatesMatch complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RDCoordinatesMatch">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="citymatch" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="streetmatch" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RDCoordinatesMatch", propOrder = { + +}) +public class RDCoordinatesMatch { + + protected int x; + protected int y; + @XmlElement(required = true) + protected String citymatch; + @XmlElement(required = true) + protected String streetmatch; + + /** + * Gets the value of the x property. + * + */ + public int getX() { + return x; + } + + /** + * Sets the value of the x property. + * + */ + public void setX(int value) { + this.x = value; + } + + /** + * Gets the value of the y property. + * + */ + public int getY() { + return y; + } + + /** + * Sets the value of the y property. + * + */ + public void setY(int value) { + this.y = value; + } + + /** + * Gets the value of the citymatch property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCitymatch() { + return citymatch; + } + + /** + * Sets the value of the citymatch property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCitymatch(String value) { + this.citymatch = value; + } + + /** + * Gets the value of the streetmatch property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreetmatch() { + return streetmatch; + } + + /** + * Sets the value of the streetmatch property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreetmatch(String value) { + this.streetmatch = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddress.java new file mode 100644 index 0000000..056c09f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddress.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RangeAddress complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RangeAddress">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="reeks" type="{http://www.webservices.nl/soap/}PCReeks"/>
+ *         <element name="huisnr" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="huisnr_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RangeAddress", propOrder = { + +}) +public class RangeAddress { + + @XmlElement(required = true) + protected PCReeks reeks; + protected Integer huisnr; + @XmlElement(name = "huisnr_toevoeging") + protected String huisnrToevoeging; + + /** + * Gets the value of the reeks property. + * + * @return + * possible object is + * {@link PCReeks } + * + */ + public PCReeks getReeks() { + return reeks; + } + + /** + * Sets the value of the reeks property. + * + * @param value + * allowed object is + * {@link PCReeks } + * + */ + public void setReeks(PCReeks value) { + this.reeks = value; + } + + /** + * Gets the value of the huisnr property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getHuisnr() { + return huisnr; + } + + /** + * Sets the value of the huisnr property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setHuisnr(Integer value) { + this.huisnr = value; + } + + /** + * Gets the value of the huisnrToevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHuisnrToevoeging() { + return huisnrToevoeging; + } + + /** + * Sets the value of the huisnrToevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHuisnrToevoeging(String value) { + this.huisnrToevoeging = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddressArray.java new file mode 100644 index 0000000..6a9fe32 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddressArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RangeAddressArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RangeAddressArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}RangeAddress" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RangeAddressArray", propOrder = { + "item" +}) +public class RangeAddressArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link RangeAddress } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddressPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddressPagedResult.java new file mode 100644 index 0000000..eea921c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddressPagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RangeAddressPagedResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RangeAddressPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}RangeAddressArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RangeAddressPagedResult", propOrder = { + +}) +public class RangeAddressPagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected RangeAddressArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link RangeAddressArray } + * + */ + public RangeAddressArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link RangeAddressArray } + * + */ + public void setResults(RangeAddressArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Recht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Recht.java new file mode 100644 index 0000000..a172f95 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Recht.java @@ -0,0 +1,307 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for Recht complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="Recht">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gerechtigde_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="omschrijving_recht" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="aandeel_in_recht" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="totaal_aandeel_in_recht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="einddatum_recht" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="indicatie_recht_betrokken_in_splitsing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="ontleend_aan_stukken_lijst" type="{http://www.webservices.nl/soap/}StukMetKadastraleAanduidingLijst" minOccurs="0"/>
+ *         <element name="mogelijk_van_belang_stukken_lijst" type="{http://www.webservices.nl/soap/}StukReferentiesLijst" minOccurs="0"/>
+ *         <element name="aantekeningen_recht_lijst" type="{http://www.webservices.nl/soap/}AantekeningRechtLijst" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Recht", propOrder = { + +}) +public class Recht { + + @XmlElement(name = "object_id", required = true) + protected String objectId; + @XmlElement(name = "gerechtigde_id", required = true) + protected String gerechtigdeId; + @XmlElement(name = "omschrijving_recht", required = true) + protected String omschrijvingRecht; + @XmlElement(name = "aandeel_in_recht", required = true) + protected String aandeelInRecht; + @XmlElement(name = "totaal_aandeel_in_recht") + protected String totaalAandeelInRecht; + @XmlElement(name = "einddatum_recht") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar einddatumRecht; + @XmlElement(name = "indicatie_recht_betrokken_in_splitsing") + protected boolean indicatieRechtBetrokkenInSplitsing; + @XmlElement(name = "ontleend_aan_stukken_lijst") + protected StukMetKadastraleAanduidingLijst ontleendAanStukkenLijst; + @XmlElement(name = "mogelijk_van_belang_stukken_lijst") + protected StukReferentiesLijst mogelijkVanBelangStukkenLijst; + @XmlElement(name = "aantekeningen_recht_lijst") + protected AantekeningRechtLijst aantekeningenRechtLijst; + + /** + * Gets the value of the objectId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getObjectId() { + return objectId; + } + + /** + * Sets the value of the objectId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setObjectId(String value) { + this.objectId = value; + } + + /** + * Gets the value of the gerechtigdeId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGerechtigdeId() { + return gerechtigdeId; + } + + /** + * Sets the value of the gerechtigdeId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGerechtigdeId(String value) { + this.gerechtigdeId = value; + } + + /** + * Gets the value of the omschrijvingRecht property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOmschrijvingRecht() { + return omschrijvingRecht; + } + + /** + * Sets the value of the omschrijvingRecht property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOmschrijvingRecht(String value) { + this.omschrijvingRecht = value; + } + + /** + * Gets the value of the aandeelInRecht property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAandeelInRecht() { + return aandeelInRecht; + } + + /** + * Sets the value of the aandeelInRecht property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAandeelInRecht(String value) { + this.aandeelInRecht = value; + } + + /** + * Gets the value of the totaalAandeelInRecht property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTotaalAandeelInRecht() { + return totaalAandeelInRecht; + } + + /** + * Sets the value of the totaalAandeelInRecht property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTotaalAandeelInRecht(String value) { + this.totaalAandeelInRecht = value; + } + + /** + * Gets the value of the einddatumRecht property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getEinddatumRecht() { + return einddatumRecht; + } + + /** + * Sets the value of the einddatumRecht property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setEinddatumRecht(XMLGregorianCalendar value) { + this.einddatumRecht = value; + } + + /** + * Gets the value of the indicatieRechtBetrokkenInSplitsing property. + * + */ + public boolean isIndicatieRechtBetrokkenInSplitsing() { + return indicatieRechtBetrokkenInSplitsing; + } + + /** + * Sets the value of the indicatieRechtBetrokkenInSplitsing property. + * + */ + public void setIndicatieRechtBetrokkenInSplitsing(boolean value) { + this.indicatieRechtBetrokkenInSplitsing = value; + } + + /** + * Gets the value of the ontleendAanStukkenLijst property. + * + * @return + * possible object is + * {@link StukMetKadastraleAanduidingLijst } + * + */ + public StukMetKadastraleAanduidingLijst getOntleendAanStukkenLijst() { + return ontleendAanStukkenLijst; + } + + /** + * Sets the value of the ontleendAanStukkenLijst property. + * + * @param value + * allowed object is + * {@link StukMetKadastraleAanduidingLijst } + * + */ + public void setOntleendAanStukkenLijst(StukMetKadastraleAanduidingLijst value) { + this.ontleendAanStukkenLijst = value; + } + + /** + * Gets the value of the mogelijkVanBelangStukkenLijst property. + * + * @return + * possible object is + * {@link StukReferentiesLijst } + * + */ + public StukReferentiesLijst getMogelijkVanBelangStukkenLijst() { + return mogelijkVanBelangStukkenLijst; + } + + /** + * Sets the value of the mogelijkVanBelangStukkenLijst property. + * + * @param value + * allowed object is + * {@link StukReferentiesLijst } + * + */ + public void setMogelijkVanBelangStukkenLijst(StukReferentiesLijst value) { + this.mogelijkVanBelangStukkenLijst = value; + } + + /** + * Gets the value of the aantekeningenRechtLijst property. + * + * @return + * possible object is + * {@link AantekeningRechtLijst } + * + */ + public AantekeningRechtLijst getAantekeningenRechtLijst() { + return aantekeningenRechtLijst; + } + + /** + * Sets the value of the aantekeningenRechtLijst property. + * + * @param value + * allowed object is + * {@link AantekeningRechtLijst } + * + */ + public void setAantekeningenRechtLijst(AantekeningRechtLijst value) { + this.aantekeningenRechtLijst = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RechtArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RechtArray.java new file mode 100644 index 0000000..08be8c6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RechtArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RechtArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RechtArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}Recht" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RechtArray", propOrder = { + "item" +}) +public class RechtArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Recht } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RechtenLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RechtenLijst.java new file mode 100644 index 0000000..2f3654e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RechtenLijst.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RechtenLijst complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RechtenLijst">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="rechten" type="{http://www.webservices.nl/soap/}RechtArray"/>
+ *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RechtenLijst", propOrder = { + +}) +public class RechtenLijst { + + @XmlElement(required = true) + protected RechtArray rechten; + @XmlElement(name = "indicatie_compleet") + protected boolean indicatieCompleet; + + /** + * Gets the value of the rechten property. + * + * @return + * possible object is + * {@link RechtArray } + * + */ + public RechtArray getRechten() { + return rechten; + } + + /** + * Sets the value of the rechten property. + * + * @param value + * allowed object is + * {@link RechtArray } + * + */ + public void setRechten(RechtArray value) { + this.rechten = value; + } + + /** + * Gets the value of the indicatieCompleet property. + * + */ + public boolean isIndicatieCompleet() { + return indicatieCompleet; + } + + /** + * Sets the value of the indicatieCompleet property. + * + */ + public void setIndicatieCompleet(boolean value) { + this.indicatieCompleet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ResultInfo.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ResultInfo.java new file mode 100644 index 0000000..cb85fe1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ResultInfo.java @@ -0,0 +1,131 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for ResultInfo complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="ResultInfo">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="curpage" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="perpage" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="numpages" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="numresults" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="maxresults" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ResultInfo", propOrder = { + +}) +public class ResultInfo { + + protected int curpage; + protected int perpage; + protected int numpages; + protected int numresults; + protected int maxresults; + + /** + * Gets the value of the curpage property. + * + */ + public int getCurpage() { + return curpage; + } + + /** + * Sets the value of the curpage property. + * + */ + public void setCurpage(int value) { + this.curpage = value; + } + + /** + * Gets the value of the perpage property. + * + */ + public int getPerpage() { + return perpage; + } + + /** + * Sets the value of the perpage property. + * + */ + public void setPerpage(int value) { + this.perpage = value; + } + + /** + * Gets the value of the numpages property. + * + */ + public int getNumpages() { + return numpages; + } + + /** + * Sets the value of the numpages property. + * + */ + public void setNumpages(int value) { + this.numpages = value; + } + + /** + * Gets the value of the numresults property. + * + */ + public int getNumresults() { + return numresults; + } + + /** + * Sets the value of the numresults property. + * + */ + public void setNumresults(int value) { + this.numresults = value; + } + + /** + * Gets the value of the maxresults property. + * + */ + public int getMaxresults() { + return maxresults; + } + + /** + * Sets the value of the maxresults property. + * + */ + public void setMaxresults(int value) { + this.maxresults = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskAddress.java new file mode 100644 index 0000000..3deaac1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskAddress.java @@ -0,0 +1,279 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskAddress complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskAddress">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="building" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="municipality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="state" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskAddress", propOrder = { + +}) +public class RiskAddress { + + protected String postcode; + protected String building; + protected String street; + @XmlElement(name = "house_number") + protected BigInteger houseNumber; + @XmlElement(name = "house_number_addition") + protected String houseNumberAddition; + protected String city; + protected String municipality; + protected String state; + protected String country; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the building property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBuilding() { + return building; + } + + /** + * Sets the value of the building property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBuilding(String value) { + this.building = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNumber property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setHouseNumber(BigInteger value) { + this.houseNumber = value; + } + + /** + * Gets the value of the houseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNumberAddition() { + return houseNumberAddition; + } + + /** + * Sets the value of the houseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNumberAddition(String value) { + this.houseNumberAddition = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the municipality property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMunicipality() { + return municipality; + } + + /** + * Sets the value of the municipality property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMunicipality(String value) { + this.municipality = value; + } + + /** + * Gets the value of the state property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getState() { + return state; + } + + /** + * Sets the value of the state property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setState(String value) { + this.state = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckGetRiskPersonCompanyReportRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckGetRiskPersonCompanyReportRequestType.java new file mode 100644 index 0000000..3eeda32 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckGetRiskPersonCompanyReportRequestType.java @@ -0,0 +1,304 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for riskCheckGetRiskPersonCompanyReportRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="riskCheckGetRiskPersonCompanyReportRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="birth_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "riskCheckGetRiskPersonCompanyReportRequestType", propOrder = { + +}) +public class RiskCheckGetRiskPersonCompanyReportRequestType { + + @XmlElement(required = true) + protected String gender; + @XmlElement(required = true) + protected String initials; + @XmlElement(required = true) + protected String prefix; + @XmlElement(name = "last_name", required = true) + protected String lastName; + @XmlElement(name = "birth_date", required = true) + protected String birthDate; + @XmlElement(required = true) + protected String street; + @XmlElement(name = "house_number") + protected int houseNumber; + @XmlElement(name = "house_number_addition", required = true) + protected String houseNumberAddition; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String city; + + /** + * Gets the value of the gender property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGender() { + return gender; + } + + /** + * Sets the value of the gender property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGender(String value) { + this.gender = value; + } + + /** + * Gets the value of the initials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInitials() { + return initials; + } + + /** + * Sets the value of the initials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInitials(String value) { + this.initials = value; + } + + /** + * Gets the value of the prefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrefix() { + return prefix; + } + + /** + * Sets the value of the prefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrefix(String value) { + this.prefix = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the birthDate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBirthDate() { + return birthDate; + } + + /** + * Sets the value of the birthDate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBirthDate(String value) { + this.birthDate = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNumber property. + * + */ + public int getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + */ + public void setHouseNumber(int value) { + this.houseNumber = value; + } + + /** + * Gets the value of the houseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNumberAddition() { + return houseNumberAddition; + } + + /** + * Sets the value of the houseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNumberAddition(String value) { + this.houseNumberAddition = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckGetRiskPersonCompanyReportResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckGetRiskPersonCompanyReportResponseType.java new file mode 100644 index 0000000..bd02b83 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckGetRiskPersonCompanyReportResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for riskCheckGetRiskPersonCompanyReportResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="riskCheckGetRiskPersonCompanyReportResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}RiskPersonCompanyReport"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "riskCheckGetRiskPersonCompanyReportResponseType", propOrder = { + +}) +public class RiskCheckGetRiskPersonCompanyReportResponseType { + + @XmlElement(required = true) + protected RiskPersonCompanyReport out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link RiskPersonCompanyReport } + * + */ + public RiskPersonCompanyReport getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link RiskPersonCompanyReport } + * + */ + public void setOut(RiskPersonCompanyReport value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckPersonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckPersonRequestType.java new file mode 100644 index 0000000..d4f79e1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckPersonRequestType.java @@ -0,0 +1,439 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for riskCheckPersonRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="riskCheckPersonRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="birth_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="account_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="mobile_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="testing_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "riskCheckPersonRequestType", propOrder = { + +}) +public class RiskCheckPersonRequestType { + + @XmlElement(required = true) + protected String gender; + @XmlElement(required = true) + protected String initials; + @XmlElement(required = true) + protected String prefix; + @XmlElement(name = "last_name", required = true) + protected String lastName; + @XmlElement(name = "birth_date", required = true) + protected String birthDate; + @XmlElement(required = true) + protected String street; + @XmlElement(name = "house_number") + protected int houseNumber; + @XmlElement(name = "house_number_addition", required = true) + protected String houseNumberAddition; + @XmlElement(required = true) + protected String postcode; + @XmlElement(required = true) + protected String city; + @XmlElement(name = "account_number", required = true) + protected String accountNumber; + @XmlElement(name = "phone_number", required = true) + protected String phoneNumber; + @XmlElement(name = "mobile_number", required = true) + protected String mobileNumber; + @XmlElement(required = true) + protected String email; + @XmlElement(name = "testing_date", required = true) + protected String testingDate; + + /** + * Gets the value of the gender property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGender() { + return gender; + } + + /** + * Sets the value of the gender property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGender(String value) { + this.gender = value; + } + + /** + * Gets the value of the initials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInitials() { + return initials; + } + + /** + * Sets the value of the initials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInitials(String value) { + this.initials = value; + } + + /** + * Gets the value of the prefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrefix() { + return prefix; + } + + /** + * Sets the value of the prefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrefix(String value) { + this.prefix = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the birthDate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBirthDate() { + return birthDate; + } + + /** + * Sets the value of the birthDate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBirthDate(String value) { + this.birthDate = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the houseNumber property. + * + */ + public int getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + */ + public void setHouseNumber(int value) { + this.houseNumber = value; + } + + /** + * Gets the value of the houseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNumberAddition() { + return houseNumberAddition; + } + + /** + * Sets the value of the houseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNumberAddition(String value) { + this.houseNumberAddition = value; + } + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the accountNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAccountNumber() { + return accountNumber; + } + + /** + * Sets the value of the accountNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAccountNumber(String value) { + this.accountNumber = value; + } + + /** + * Gets the value of the phoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPhoneNumber() { + return phoneNumber; + } + + /** + * Sets the value of the phoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPhoneNumber(String value) { + this.phoneNumber = value; + } + + /** + * Gets the value of the mobileNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMobileNumber() { + return mobileNumber; + } + + /** + * Sets the value of the mobileNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMobileNumber(String value) { + this.mobileNumber = value; + } + + /** + * Gets the value of the email property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmail() { + return email; + } + + /** + * Sets the value of the email property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmail(String value) { + this.email = value; + } + + /** + * Gets the value of the testingDate property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTestingDate() { + return testingDate; + } + + /** + * Sets the value of the testingDate property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTestingDate(String value) { + this.testingDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckPersonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckPersonResponseType.java new file mode 100644 index 0000000..49bdba2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckPersonResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for riskCheckPersonResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="riskCheckPersonResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}RiskResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "riskCheckPersonResponseType", propOrder = { + +}) +public class RiskCheckPersonResponseType { + + @XmlElement(required = true) + protected RiskResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link RiskResult } + * + */ + public RiskResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link RiskResult } + * + */ + public void setOut(RiskResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompany.java new file mode 100644 index 0000000..dbc345b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompany.java @@ -0,0 +1,313 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for RiskCompany complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskCompany">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
+ *         <element name="addresses" type="{http://www.webservices.nl/soap/}RiskCompanyAddressArray" minOccurs="0"/>
+ *         <element name="function_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_authorization" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="function_end_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="insolvencies" type="{http://www.webservices.nl/soap/}RiskInsolvencyArray" minOccurs="0"/>
+ *         <element name="mutation_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskCompany", propOrder = { + +}) +public class RiskCompany { + + @XmlElement(name = "dossier_number", required = true) + protected String dossierNumber; + @XmlElement(name = "establishment_number") + protected String establishmentNumber; + protected String status; + @XmlElement(name = "trade_names") + protected StringArray tradeNames; + protected RiskCompanyAddressArray addresses; + @XmlElement(name = "function_title") + protected String functionTitle; + @XmlElement(name = "function_authorization") + protected String functionAuthorization; + @XmlElement(name = "function_end_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar functionEndDate; + protected RiskInsolvencyArray insolvencies; + @XmlElement(name = "mutation_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar mutationDate; + + /** + * Gets the value of the dossierNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDossierNumber() { + return dossierNumber; + } + + /** + * Sets the value of the dossierNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDossierNumber(String value) { + this.dossierNumber = value; + } + + /** + * Gets the value of the establishmentNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEstablishmentNumber() { + return establishmentNumber; + } + + /** + * Sets the value of the establishmentNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEstablishmentNumber(String value) { + this.establishmentNumber = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + + /** + * Gets the value of the tradeNames property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getTradeNames() { + return tradeNames; + } + + /** + * Sets the value of the tradeNames property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setTradeNames(StringArray value) { + this.tradeNames = value; + } + + /** + * Gets the value of the addresses property. + * + * @return + * possible object is + * {@link RiskCompanyAddressArray } + * + */ + public RiskCompanyAddressArray getAddresses() { + return addresses; + } + + /** + * Sets the value of the addresses property. + * + * @param value + * allowed object is + * {@link RiskCompanyAddressArray } + * + */ + public void setAddresses(RiskCompanyAddressArray value) { + this.addresses = value; + } + + /** + * Gets the value of the functionTitle property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionTitle() { + return functionTitle; + } + + /** + * Sets the value of the functionTitle property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionTitle(String value) { + this.functionTitle = value; + } + + /** + * Gets the value of the functionAuthorization property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFunctionAuthorization() { + return functionAuthorization; + } + + /** + * Sets the value of the functionAuthorization property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFunctionAuthorization(String value) { + this.functionAuthorization = value; + } + + /** + * Gets the value of the functionEndDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getFunctionEndDate() { + return functionEndDate; + } + + /** + * Sets the value of the functionEndDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setFunctionEndDate(XMLGregorianCalendar value) { + this.functionEndDate = value; + } + + /** + * Gets the value of the insolvencies property. + * + * @return + * possible object is + * {@link RiskInsolvencyArray } + * + */ + public RiskInsolvencyArray getInsolvencies() { + return insolvencies; + } + + /** + * Sets the value of the insolvencies property. + * + * @param value + * allowed object is + * {@link RiskInsolvencyArray } + * + */ + public void setInsolvencies(RiskInsolvencyArray value) { + this.insolvencies = value; + } + + /** + * Gets the value of the mutationDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getMutationDate() { + return mutationDate; + } + + /** + * Sets the value of the mutationDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setMutationDate(XMLGregorianCalendar value) { + this.mutationDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyAddress.java new file mode 100644 index 0000000..2a59b01 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyAddress.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskCompanyAddress complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskCompanyAddress">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}RiskAddress"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskCompanyAddress", propOrder = { + +}) +public class RiskCompanyAddress { + + @XmlElement(required = true) + protected String type; + @XmlElement(required = true) + protected RiskAddress address; + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link RiskAddress } + * + */ + public RiskAddress getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link RiskAddress } + * + */ + public void setAddress(RiskAddress value) { + this.address = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyAddressArray.java new file mode 100644 index 0000000..10b2b39 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyAddressArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskCompanyAddressArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskCompanyAddressArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}RiskCompanyAddress" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskCompanyAddressArray", propOrder = { + "item" +}) +public class RiskCompanyAddressArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link RiskCompanyAddress } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyArray.java new file mode 100644 index 0000000..cfa8dbb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskCompanyArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskCompanyArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}RiskCompany" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskCompanyArray", propOrder = { + "item" +}) +public class RiskCompanyArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link RiskCompany } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyReport.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyReport.java new file mode 100644 index 0000000..1f08feb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyReport.java @@ -0,0 +1,121 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskCompanyReport complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskCompanyReport">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="companies" type="{http://www.webservices.nl/soap/}RiskCompanyArray" minOccurs="0"/>
+ *         <element name="insolvencies" type="{http://www.webservices.nl/soap/}RiskInsolvencyArray" minOccurs="0"/>
+ *         <element name="legal_restraint" type="{http://www.webservices.nl/soap/}RiskLegalRestraint" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskCompanyReport", propOrder = { + +}) +public class RiskCompanyReport { + + protected RiskCompanyArray companies; + protected RiskInsolvencyArray insolvencies; + @XmlElement(name = "legal_restraint") + protected RiskLegalRestraint legalRestraint; + + /** + * Gets the value of the companies property. + * + * @return + * possible object is + * {@link RiskCompanyArray } + * + */ + public RiskCompanyArray getCompanies() { + return companies; + } + + /** + * Sets the value of the companies property. + * + * @param value + * allowed object is + * {@link RiskCompanyArray } + * + */ + public void setCompanies(RiskCompanyArray value) { + this.companies = value; + } + + /** + * Gets the value of the insolvencies property. + * + * @return + * possible object is + * {@link RiskInsolvencyArray } + * + */ + public RiskInsolvencyArray getInsolvencies() { + return insolvencies; + } + + /** + * Sets the value of the insolvencies property. + * + * @param value + * allowed object is + * {@link RiskInsolvencyArray } + * + */ + public void setInsolvencies(RiskInsolvencyArray value) { + this.insolvencies = value; + } + + /** + * Gets the value of the legalRestraint property. + * + * @return + * possible object is + * {@link RiskLegalRestraint } + * + */ + public RiskLegalRestraint getLegalRestraint() { + return legalRestraint; + } + + /** + * Sets the value of the legalRestraint property. + * + * @param value + * allowed object is + * {@link RiskLegalRestraint } + * + */ + public void setLegalRestraint(RiskLegalRestraint value) { + this.legalRestraint = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvency.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvency.java new file mode 100644 index 0000000..29c1934 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvency.java @@ -0,0 +1,145 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskInsolvency complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskInsolvency">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="registration" type="{http://www.webservices.nl/soap/}RiskInsolvencyRegistration" minOccurs="0"/>
+ *         <element name="publications" type="{http://www.webservices.nl/soap/}RiskInsolvencyPublicationArray" minOccurs="0"/>
+ *         <element name="curators" type="{http://www.webservices.nl/soap/}RiskInsolvencyCuratorArray" minOccurs="0"/>
+ *         <element name="judge" type="{http://www.webservices.nl/soap/}RiskInsolvencyJudge" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskInsolvency", propOrder = { + +}) +public class RiskInsolvency { + + protected RiskInsolvencyRegistration registration; + protected RiskInsolvencyPublicationArray publications; + protected RiskInsolvencyCuratorArray curators; + protected RiskInsolvencyJudge judge; + + /** + * Gets the value of the registration property. + * + * @return + * possible object is + * {@link RiskInsolvencyRegistration } + * + */ + public RiskInsolvencyRegistration getRegistration() { + return registration; + } + + /** + * Sets the value of the registration property. + * + * @param value + * allowed object is + * {@link RiskInsolvencyRegistration } + * + */ + public void setRegistration(RiskInsolvencyRegistration value) { + this.registration = value; + } + + /** + * Gets the value of the publications property. + * + * @return + * possible object is + * {@link RiskInsolvencyPublicationArray } + * + */ + public RiskInsolvencyPublicationArray getPublications() { + return publications; + } + + /** + * Sets the value of the publications property. + * + * @param value + * allowed object is + * {@link RiskInsolvencyPublicationArray } + * + */ + public void setPublications(RiskInsolvencyPublicationArray value) { + this.publications = value; + } + + /** + * Gets the value of the curators property. + * + * @return + * possible object is + * {@link RiskInsolvencyCuratorArray } + * + */ + public RiskInsolvencyCuratorArray getCurators() { + return curators; + } + + /** + * Sets the value of the curators property. + * + * @param value + * allowed object is + * {@link RiskInsolvencyCuratorArray } + * + */ + public void setCurators(RiskInsolvencyCuratorArray value) { + this.curators = value; + } + + /** + * Gets the value of the judge property. + * + * @return + * possible object is + * {@link RiskInsolvencyJudge } + * + */ + public RiskInsolvencyJudge getJudge() { + return judge; + } + + /** + * Sets the value of the judge property. + * + * @param value + * allowed object is + * {@link RiskInsolvencyJudge } + * + */ + public void setJudge(RiskInsolvencyJudge value) { + this.judge = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyArray.java new file mode 100644 index 0000000..cf11265 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskInsolvencyArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskInsolvencyArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}RiskInsolvency" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskInsolvencyArray", propOrder = { + "item" +}) +public class RiskInsolvencyArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link RiskInsolvency } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyCurator.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyCurator.java new file mode 100644 index 0000000..2096f50 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyCurator.java @@ -0,0 +1,284 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for RiskInsolvencyCurator complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskInsolvencyCurator">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="titles" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}RiskAddress" minOccurs="0"/>
+ *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="email_address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="mutation_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskInsolvencyCurator", propOrder = { + +}) +public class RiskInsolvencyCurator { + + protected String titles; + protected String initials; + protected String prefix; + @XmlElement(name = "last_name") + protected String lastName; + protected RiskAddress address; + @XmlElement(name = "telephone_number") + protected String telephoneNumber; + @XmlElement(name = "fax_number") + protected String faxNumber; + @XmlElement(name = "email_address") + protected String emailAddress; + @XmlElement(name = "mutation_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar mutationDate; + + /** + * Gets the value of the titles property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTitles() { + return titles; + } + + /** + * Sets the value of the titles property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTitles(String value) { + this.titles = value; + } + + /** + * Gets the value of the initials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInitials() { + return initials; + } + + /** + * Sets the value of the initials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInitials(String value) { + this.initials = value; + } + + /** + * Gets the value of the prefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrefix() { + return prefix; + } + + /** + * Sets the value of the prefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrefix(String value) { + this.prefix = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link RiskAddress } + * + */ + public RiskAddress getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link RiskAddress } + * + */ + public void setAddress(RiskAddress value) { + this.address = value; + } + + /** + * Gets the value of the telephoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNumber() { + return telephoneNumber; + } + + /** + * Sets the value of the telephoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNumber(String value) { + this.telephoneNumber = value; + } + + /** + * Gets the value of the faxNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFaxNumber() { + return faxNumber; + } + + /** + * Sets the value of the faxNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFaxNumber(String value) { + this.faxNumber = value; + } + + /** + * Gets the value of the emailAddress property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmailAddress() { + return emailAddress; + } + + /** + * Sets the value of the emailAddress property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmailAddress(String value) { + this.emailAddress = value; + } + + /** + * Gets the value of the mutationDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getMutationDate() { + return mutationDate; + } + + /** + * Sets the value of the mutationDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setMutationDate(XMLGregorianCalendar value) { + this.mutationDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyCuratorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyCuratorArray.java new file mode 100644 index 0000000..4aa5345 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyCuratorArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskInsolvencyCuratorArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskInsolvencyCuratorArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}RiskInsolvencyCurator" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskInsolvencyCuratorArray", propOrder = { + "item" +}) +public class RiskInsolvencyCuratorArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link RiskInsolvencyCurator } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyJudge.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyJudge.java new file mode 100644 index 0000000..a7d054d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyJudge.java @@ -0,0 +1,147 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskInsolvencyJudge complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskInsolvencyJudge">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="titles" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskInsolvencyJudge", propOrder = { + +}) +public class RiskInsolvencyJudge { + + protected String titles; + protected String initials; + protected String prefix; + @XmlElement(name = "last_name") + protected String lastName; + + /** + * Gets the value of the titles property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTitles() { + return titles; + } + + /** + * Sets the value of the titles property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTitles(String value) { + this.titles = value; + } + + /** + * Gets the value of the initials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInitials() { + return initials; + } + + /** + * Sets the value of the initials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInitials(String value) { + this.initials = value; + } + + /** + * Gets the value of the prefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrefix() { + return prefix; + } + + /** + * Sets the value of the prefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrefix(String value) { + this.prefix = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyPublication.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyPublication.java new file mode 100644 index 0000000..f2a085d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyPublication.java @@ -0,0 +1,151 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for RiskInsolvencyPublication complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskInsolvencyPublication">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="verdict_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskInsolvencyPublication", propOrder = { + +}) +public class RiskInsolvencyPublication { + + protected String number; + protected String type; + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar date; + @XmlElement(name = "verdict_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar verdictDate; + + /** + * Gets the value of the number property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumber() { + return number; + } + + /** + * Sets the value of the number property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumber(String value) { + this.number = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the date property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDate() { + return date; + } + + /** + * Sets the value of the date property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDate(XMLGregorianCalendar value) { + this.date = value; + } + + /** + * Gets the value of the verdictDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getVerdictDate() { + return verdictDate; + } + + /** + * Sets the value of the verdictDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setVerdictDate(XMLGregorianCalendar value) { + this.verdictDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyPublicationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyPublicationArray.java new file mode 100644 index 0000000..69e4cfb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyPublicationArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskInsolvencyPublicationArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskInsolvencyPublicationArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}RiskInsolvencyPublication" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskInsolvencyPublicationArray", propOrder = { + "item" +}) +public class RiskInsolvencyPublicationArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link RiskInsolvencyPublication } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyRegistration.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyRegistration.java new file mode 100644 index 0000000..5d6449b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyRegistration.java @@ -0,0 +1,226 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskInsolvencyRegistration complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskInsolvencyRegistration">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="case_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="previous_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="court" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="jurisdiction" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="deptor" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="partner" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskInsolvencyRegistration", propOrder = { + +}) +public class RiskInsolvencyRegistration { + + @XmlElement(name = "case_number") + protected String caseNumber; + @XmlElement(name = "previous_number") + protected String previousNumber; + protected String court; + protected String jurisdiction; + protected String district; + protected String deptor; + protected String partner; + + /** + * Gets the value of the caseNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCaseNumber() { + return caseNumber; + } + + /** + * Sets the value of the caseNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCaseNumber(String value) { + this.caseNumber = value; + } + + /** + * Gets the value of the previousNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPreviousNumber() { + return previousNumber; + } + + /** + * Sets the value of the previousNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPreviousNumber(String value) { + this.previousNumber = value; + } + + /** + * Gets the value of the court property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCourt() { + return court; + } + + /** + * Sets the value of the court property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCourt(String value) { + this.court = value; + } + + /** + * Gets the value of the jurisdiction property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getJurisdiction() { + return jurisdiction; + } + + /** + * Sets the value of the jurisdiction property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setJurisdiction(String value) { + this.jurisdiction = value; + } + + /** + * Gets the value of the district property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDistrict() { + return district; + } + + /** + * Sets the value of the district property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDistrict(String value) { + this.district = value; + } + + /** + * Gets the value of the deptor property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDeptor() { + return deptor; + } + + /** + * Sets the value of the deptor property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDeptor(String value) { + this.deptor = value; + } + + /** + * Gets the value of the partner property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPartner() { + return partner; + } + + /** + * Sets the value of the partner property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPartner(String value) { + this.partner = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraint.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraint.java new file mode 100644 index 0000000..9ce869d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraint.java @@ -0,0 +1,147 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskLegalRestraint complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskLegalRestraint">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="verdict_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="person" type="{http://www.webservices.nl/soap/}RiskLegalRestraintPerson" minOccurs="0"/>
+ *         <element name="registry" type="{http://www.webservices.nl/soap/}RiskLegalRestraintRegistry" minOccurs="0"/>
+ *         <element name="decisions" type="{http://www.webservices.nl/soap/}RiskLegalRestraintDecisionArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskLegalRestraint", propOrder = { + +}) +public class RiskLegalRestraint { + + @XmlElement(name = "verdict_number") + protected String verdictNumber; + protected RiskLegalRestraintPerson person; + protected RiskLegalRestraintRegistry registry; + protected RiskLegalRestraintDecisionArray decisions; + + /** + * Gets the value of the verdictNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVerdictNumber() { + return verdictNumber; + } + + /** + * Sets the value of the verdictNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVerdictNumber(String value) { + this.verdictNumber = value; + } + + /** + * Gets the value of the person property. + * + * @return + * possible object is + * {@link RiskLegalRestraintPerson } + * + */ + public RiskLegalRestraintPerson getPerson() { + return person; + } + + /** + * Sets the value of the person property. + * + * @param value + * allowed object is + * {@link RiskLegalRestraintPerson } + * + */ + public void setPerson(RiskLegalRestraintPerson value) { + this.person = value; + } + + /** + * Gets the value of the registry property. + * + * @return + * possible object is + * {@link RiskLegalRestraintRegistry } + * + */ + public RiskLegalRestraintRegistry getRegistry() { + return registry; + } + + /** + * Sets the value of the registry property. + * + * @param value + * allowed object is + * {@link RiskLegalRestraintRegistry } + * + */ + public void setRegistry(RiskLegalRestraintRegistry value) { + this.registry = value; + } + + /** + * Gets the value of the decisions property. + * + * @return + * possible object is + * {@link RiskLegalRestraintDecisionArray } + * + */ + public RiskLegalRestraintDecisionArray getDecisions() { + return decisions; + } + + /** + * Sets the value of the decisions property. + * + * @param value + * allowed object is + * {@link RiskLegalRestraintDecisionArray } + * + */ + public void setDecisions(RiskLegalRestraintDecisionArray value) { + this.decisions = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintAdministrator.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintAdministrator.java new file mode 100644 index 0000000..ea85053 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintAdministrator.java @@ -0,0 +1,119 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskLegalRestraintAdministrator complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskLegalRestraintAdministrator">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="role" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}RiskAddress" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskLegalRestraintAdministrator", propOrder = { + +}) +public class RiskLegalRestraintAdministrator { + + protected String role; + protected String name; + protected RiskAddress address; + + /** + * Gets the value of the role property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRole() { + return role; + } + + /** + * Sets the value of the role property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRole(String value) { + this.role = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link RiskAddress } + * + */ + public RiskAddress getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link RiskAddress } + * + */ + public void setAddress(RiskAddress value) { + this.address = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintDecision.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintDecision.java new file mode 100644 index 0000000..6587098 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintDecision.java @@ -0,0 +1,226 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for RiskLegalRestraintDecision complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskLegalRestraintDecision">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="cause" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="court" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="jurisdiction" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="administrator" type="{http://www.webservices.nl/soap/}RiskLegalRestraintAdministrator" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskLegalRestraintDecision", propOrder = { + +}) +public class RiskLegalRestraintDecision { + + protected String number; + protected String cause; + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar date; + protected String court; + protected String jurisdiction; + protected String district; + protected RiskLegalRestraintAdministrator administrator; + + /** + * Gets the value of the number property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNumber() { + return number; + } + + /** + * Sets the value of the number property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNumber(String value) { + this.number = value; + } + + /** + * Gets the value of the cause property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCause() { + return cause; + } + + /** + * Sets the value of the cause property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCause(String value) { + this.cause = value; + } + + /** + * Gets the value of the date property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDate() { + return date; + } + + /** + * Sets the value of the date property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDate(XMLGregorianCalendar value) { + this.date = value; + } + + /** + * Gets the value of the court property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCourt() { + return court; + } + + /** + * Sets the value of the court property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCourt(String value) { + this.court = value; + } + + /** + * Gets the value of the jurisdiction property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getJurisdiction() { + return jurisdiction; + } + + /** + * Sets the value of the jurisdiction property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setJurisdiction(String value) { + this.jurisdiction = value; + } + + /** + * Gets the value of the district property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDistrict() { + return district; + } + + /** + * Sets the value of the district property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDistrict(String value) { + this.district = value; + } + + /** + * Gets the value of the administrator property. + * + * @return + * possible object is + * {@link RiskLegalRestraintAdministrator } + * + */ + public RiskLegalRestraintAdministrator getAdministrator() { + return administrator; + } + + /** + * Sets the value of the administrator property. + * + * @param value + * allowed object is + * {@link RiskLegalRestraintAdministrator } + * + */ + public void setAdministrator(RiskLegalRestraintAdministrator value) { + this.administrator = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintDecisionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintDecisionArray.java new file mode 100644 index 0000000..edcdbaf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintDecisionArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskLegalRestraintDecisionArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskLegalRestraintDecisionArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}RiskLegalRestraintDecision" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskLegalRestraintDecisionArray", propOrder = { + "item" +}) +public class RiskLegalRestraintDecisionArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link RiskLegalRestraintDecision } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintPerson.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintPerson.java new file mode 100644 index 0000000..9f5c3f2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintPerson.java @@ -0,0 +1,152 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for RiskLegalRestraintPerson complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskLegalRestraintPerson">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="birth_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskLegalRestraintPerson", propOrder = { + +}) +public class RiskLegalRestraintPerson { + + @XmlElement(name = "first_name") + protected String firstName; + protected String prefix; + @XmlElement(name = "last_name") + protected String lastName; + @XmlElement(name = "birth_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar birthDate; + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the prefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrefix() { + return prefix; + } + + /** + * Sets the value of the prefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrefix(String value) { + this.prefix = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the birthDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getBirthDate() { + return birthDate; + } + + /** + * Sets the value of the birthDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setBirthDate(XMLGregorianCalendar value) { + this.birthDate = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintRegistry.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintRegistry.java new file mode 100644 index 0000000..6f1ebe7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintRegistry.java @@ -0,0 +1,122 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskLegalRestraintRegistry complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskLegalRestraintRegistry">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}RiskAddress" minOccurs="0"/>
+ *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="email_address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskLegalRestraintRegistry", propOrder = { + +}) +public class RiskLegalRestraintRegistry { + + protected RiskAddress address; + @XmlElement(name = "telephone_number") + protected String telephoneNumber; + @XmlElement(name = "email_address") + protected String emailAddress; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link RiskAddress } + * + */ + public RiskAddress getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link RiskAddress } + * + */ + public void setAddress(RiskAddress value) { + this.address = value; + } + + /** + * Gets the value of the telephoneNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephoneNumber() { + return telephoneNumber; + } + + /** + * Sets the value of the telephoneNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephoneNumber(String value) { + this.telephoneNumber = value; + } + + /** + * Gets the value of the emailAddress property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmailAddress() { + return emailAddress; + } + + /** + * Sets the value of the emailAddress property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmailAddress(String value) { + this.emailAddress = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskPerson.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskPerson.java new file mode 100644 index 0000000..488ac77 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskPerson.java @@ -0,0 +1,230 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for RiskPerson complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskPerson">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="birth_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}RiskAddress" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskPerson", propOrder = { + +}) +public class RiskPerson { + + protected String gender; + @XmlElement(name = "first_name") + protected String firstName; + protected String initials; + protected String prefix; + @XmlElement(name = "last_name") + protected String lastName; + @XmlElement(name = "birth_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar birthDate; + protected RiskAddress address; + + /** + * Gets the value of the gender property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGender() { + return gender; + } + + /** + * Sets the value of the gender property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGender(String value) { + this.gender = value; + } + + /** + * Gets the value of the firstName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFirstName() { + return firstName; + } + + /** + * Sets the value of the firstName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFirstName(String value) { + this.firstName = value; + } + + /** + * Gets the value of the initials property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getInitials() { + return initials; + } + + /** + * Sets the value of the initials property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setInitials(String value) { + this.initials = value; + } + + /** + * Gets the value of the prefix property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrefix() { + return prefix; + } + + /** + * Sets the value of the prefix property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrefix(String value) { + this.prefix = value; + } + + /** + * Gets the value of the lastName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastName() { + return lastName; + } + + /** + * Sets the value of the lastName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastName(String value) { + this.lastName = value; + } + + /** + * Gets the value of the birthDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getBirthDate() { + return birthDate; + } + + /** + * Sets the value of the birthDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setBirthDate(XMLGregorianCalendar value) { + this.birthDate = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link RiskAddress } + * + */ + public RiskAddress getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link RiskAddress } + * + */ + public void setAddress(RiskAddress value) { + this.address = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskPersonCompanyReport.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskPersonCompanyReport.java new file mode 100644 index 0000000..1276a06 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskPersonCompanyReport.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskPersonCompanyReport complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskPersonCompanyReport">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="person" type="{http://www.webservices.nl/soap/}RiskPerson"/>
+ *         <element name="conclusion" type="{http://www.webservices.nl/soap/}RiskResult"/>
+ *         <element name="report_data" type="{http://www.webservices.nl/soap/}RiskCompanyReport" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskPersonCompanyReport", propOrder = { + +}) +public class RiskPersonCompanyReport { + + @XmlElement(required = true) + protected RiskPerson person; + @XmlElement(required = true) + protected RiskResult conclusion; + @XmlElement(name = "report_data") + protected RiskCompanyReport reportData; + + /** + * Gets the value of the person property. + * + * @return + * possible object is + * {@link RiskPerson } + * + */ + public RiskPerson getPerson() { + return person; + } + + /** + * Sets the value of the person property. + * + * @param value + * allowed object is + * {@link RiskPerson } + * + */ + public void setPerson(RiskPerson value) { + this.person = value; + } + + /** + * Gets the value of the conclusion property. + * + * @return + * possible object is + * {@link RiskResult } + * + */ + public RiskResult getConclusion() { + return conclusion; + } + + /** + * Sets the value of the conclusion property. + * + * @param value + * allowed object is + * {@link RiskResult } + * + */ + public void setConclusion(RiskResult value) { + this.conclusion = value; + } + + /** + * Gets the value of the reportData property. + * + * @return + * possible object is + * {@link RiskCompanyReport } + * + */ + public RiskCompanyReport getReportData() { + return reportData; + } + + /** + * Sets the value of the reportData property. + * + * @param value + * allowed object is + * {@link RiskCompanyReport } + * + */ + public void setReportData(RiskCompanyReport value) { + this.reportData = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskResult.java new file mode 100644 index 0000000..45db7ac --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskResult.java @@ -0,0 +1,124 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.math.BigInteger; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RiskResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RiskResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="person_score" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="address_score" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *         <element name="postcode_score" type="{http://www.w3.org/2001/XMLSchema}integer"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RiskResult", propOrder = { + +}) +public class RiskResult { + + @XmlElement(name = "person_score", required = true) + protected BigInteger personScore; + @XmlElement(name = "address_score", required = true) + protected BigInteger addressScore; + @XmlElement(name = "postcode_score", required = true) + protected BigInteger postcodeScore; + + /** + * Gets the value of the personScore property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getPersonScore() { + return personScore; + } + + /** + * Sets the value of the personScore property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setPersonScore(BigInteger value) { + this.personScore = value; + } + + /** + * Gets the value of the addressScore property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getAddressScore() { + return addressScore; + } + + /** + * Sets the value of the addressScore property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setAddressScore(BigInteger value) { + this.addressScore = value; + } + + /** + * Gets the value of the postcodeScore property. + * + * @return + * possible object is + * {@link BigInteger } + * + */ + public BigInteger getPostcodeScore() { + return postcodeScore; + } + + /** + * Sets the value of the postcodeScore property. + * + * @param value + * allowed object is + * {@link BigInteger } + * + */ + public void setPostcodeScore(BigInteger value) { + this.postcodeScore = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteAddress.java new file mode 100644 index 0000000..684a70f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteAddress.java @@ -0,0 +1,227 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RouteAddress complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RouteAddress">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="address_key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RouteAddress", propOrder = { + +}) +public class RouteAddress { + + protected String postcode; + @XmlElement(name = "house_number") + protected Integer houseNumber; + @XmlElement(name = "house_number_addition") + protected String houseNumberAddition; + protected String street; + protected String city; + protected String country; + @XmlElement(name = "address_key") + protected String addressKey; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the houseNumber property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getHouseNumber() { + return houseNumber; + } + + /** + * Sets the value of the houseNumber property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setHouseNumber(Integer value) { + this.houseNumber = value; + } + + /** + * Gets the value of the houseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getHouseNumberAddition() { + return houseNumberAddition; + } + + /** + * Sets the value of the houseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setHouseNumberAddition(String value) { + this.houseNumberAddition = value; + } + + /** + * Gets the value of the street property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStreet() { + return street; + } + + /** + * Sets the value of the street property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStreet(String value) { + this.street = value; + } + + /** + * Gets the value of the city property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCity() { + return city; + } + + /** + * Sets the value of the city property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCity(String value) { + this.city = value; + } + + /** + * Gets the value of the country property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountry() { + return country; + } + + /** + * Sets the value of the country property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountry(String value) { + this.country = value; + } + + /** + * Gets the value of the addressKey property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddressKey() { + return addressKey; + } + + /** + * Sets the value of the addressKey property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddressKey(String value) { + this.addressKey = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinateLatLong.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinateLatLong.java new file mode 100644 index 0000000..0737092 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinateLatLong.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RouteCoordinateLatLong complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RouteCoordinateLatLong">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}double"/>
+ *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}double"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RouteCoordinateLatLong", propOrder = { + +}) +public class RouteCoordinateLatLong { + + protected double latitude; + protected double longitude; + + /** + * Gets the value of the latitude property. + * + */ + public double getLatitude() { + return latitude; + } + + /** + * Sets the value of the latitude property. + * + */ + public void setLatitude(double value) { + this.latitude = value; + } + + /** + * Gets the value of the longitude property. + * + */ + public double getLongitude() { + return longitude; + } + + /** + * Sets the value of the longitude property. + * + */ + public void setLongitude(double value) { + this.longitude = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinateRD.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinateRD.java new file mode 100644 index 0000000..f526a71 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinateRD.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RouteCoordinateRD complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RouteCoordinateRD">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RouteCoordinateRD", propOrder = { + +}) +public class RouteCoordinateRD { + + protected int x; + protected int y; + + /** + * Gets the value of the x property. + * + */ + public int getX() { + return x; + } + + /** + * Sets the value of the x property. + * + */ + public void setX(int value) { + this.x = value; + } + + /** + * Gets the value of the y property. + * + */ + public int getY() { + return y; + } + + /** + * Sets the value of the y property. + * + */ + public void setY(int value) { + this.y = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinates.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinates.java new file mode 100644 index 0000000..989b7bc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinates.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RouteCoordinates complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RouteCoordinates">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="latlong" type="{http://www.webservices.nl/soap/}RouteCoordinateLatLong"/>
+ *         <element name="rd" type="{http://www.webservices.nl/soap/}RouteCoordinateRD" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RouteCoordinates", propOrder = { + +}) +public class RouteCoordinates { + + @XmlElement(required = true) + protected RouteCoordinateLatLong latlong; + protected RouteCoordinateRD rd; + + /** + * Gets the value of the latlong property. + * + * @return + * possible object is + * {@link RouteCoordinateLatLong } + * + */ + public RouteCoordinateLatLong getLatlong() { + return latlong; + } + + /** + * Sets the value of the latlong property. + * + * @param value + * allowed object is + * {@link RouteCoordinateLatLong } + * + */ + public void setLatlong(RouteCoordinateLatLong value) { + this.latlong = value; + } + + /** + * Gets the value of the rd property. + * + * @return + * possible object is + * {@link RouteCoordinateRD } + * + */ + public RouteCoordinateRD getRd() { + return rd; + } + + /** + * Sets the value of the rd property. + * + * @param value + * allowed object is + * {@link RouteCoordinateRD } + * + */ + public void setRd(RouteCoordinateRD value) { + this.rd = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinatesLatLon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinatesLatLon.java new file mode 100644 index 0000000..9fcb4fb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinatesLatLon.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RouteCoordinatesLatLon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RouteCoordinatesLatLon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="coordinates" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RouteCoordinatesLatLon", propOrder = { + +}) +public class RouteCoordinatesLatLon { + + protected int number; + @XmlElement(required = true) + protected String coordinates; + + /** + * Gets the value of the number property. + * + */ + public int getNumber() { + return number; + } + + /** + * Sets the value of the number property. + * + */ + public void setNumber(int value) { + this.number = value; + } + + /** + * Gets the value of the coordinates property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCoordinates() { + return coordinates; + } + + /** + * Sets the value of the coordinates property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCoordinates(String value) { + this.coordinates = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinatesRD.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinatesRD.java new file mode 100644 index 0000000..2d4f024 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinatesRD.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RouteCoordinatesRD complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RouteCoordinatesRD">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="coordinates" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RouteCoordinatesRD", propOrder = { + +}) +public class RouteCoordinatesRD { + + protected int number; + @XmlElement(required = true) + protected String coordinates; + + /** + * Gets the value of the number property. + * + */ + public int getNumber() { + return number; + } + + /** + * Sets the value of the number property. + * + */ + public void setNumber(int value) { + this.number = value; + } + + /** + * Gets the value of the coordinates property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCoordinates() { + return coordinates; + } + + /** + * Sets the value of the coordinates property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCoordinates(String value) { + this.coordinates = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteDescriptionCoordinatesLatLon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteDescriptionCoordinatesLatLon.java new file mode 100644 index 0000000..d9c3808 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteDescriptionCoordinatesLatLon.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RouteDescriptionCoordinatesLatLon complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RouteDescriptionCoordinatesLatLon">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="routecoordinates" type="{http://www.webservices.nl/soap/}RouteCoordinatesLatLon"/>
+ *         <element name="parts" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RouteDescriptionCoordinatesLatLon", propOrder = { + +}) +public class RouteDescriptionCoordinatesLatLon { + + @XmlElement(required = true) + protected RouteCoordinatesLatLon routecoordinates; + @XmlElement(required = true) + protected RoutePartArray parts; + + /** + * Gets the value of the routecoordinates property. + * + * @return + * possible object is + * {@link RouteCoordinatesLatLon } + * + */ + public RouteCoordinatesLatLon getRoutecoordinates() { + return routecoordinates; + } + + /** + * Sets the value of the routecoordinates property. + * + * @param value + * allowed object is + * {@link RouteCoordinatesLatLon } + * + */ + public void setRoutecoordinates(RouteCoordinatesLatLon value) { + this.routecoordinates = value; + } + + /** + * Gets the value of the parts property. + * + * @return + * possible object is + * {@link RoutePartArray } + * + */ + public RoutePartArray getParts() { + return parts; + } + + /** + * Sets the value of the parts property. + * + * @param value + * allowed object is + * {@link RoutePartArray } + * + */ + public void setParts(RoutePartArray value) { + this.parts = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteDescriptionCoordinatesRD.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteDescriptionCoordinatesRD.java new file mode 100644 index 0000000..23b6c13 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteDescriptionCoordinatesRD.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RouteDescriptionCoordinatesRD complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RouteDescriptionCoordinatesRD">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="routecoordinates" type="{http://www.webservices.nl/soap/}RouteCoordinatesRD"/>
+ *         <element name="parts" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RouteDescriptionCoordinatesRD", propOrder = { + +}) +public class RouteDescriptionCoordinatesRD { + + @XmlElement(required = true) + protected RouteCoordinatesRD routecoordinates; + @XmlElement(required = true) + protected RoutePartArray parts; + + /** + * Gets the value of the routecoordinates property. + * + * @return + * possible object is + * {@link RouteCoordinatesRD } + * + */ + public RouteCoordinatesRD getRoutecoordinates() { + return routecoordinates; + } + + /** + * Sets the value of the routecoordinates property. + * + * @param value + * allowed object is + * {@link RouteCoordinatesRD } + * + */ + public void setRoutecoordinates(RouteCoordinatesRD value) { + this.routecoordinates = value; + } + + /** + * Gets the value of the parts property. + * + * @return + * possible object is + * {@link RoutePartArray } + * + */ + public RoutePartArray getParts() { + return parts; + } + + /** + * Sets the value of the parts property. + * + * @param value + * allowed object is + * {@link RoutePartArray } + * + */ + public void setParts(RoutePartArray value) { + this.parts = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteInfo.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteInfo.java new file mode 100644 index 0000000..825b5cb --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteInfo.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RouteInfo complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RouteInfo">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="time" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RouteInfo", propOrder = { + +}) +public class RouteInfo { + + protected int time; + protected int distance; + + /** + * Gets the value of the time property. + * + */ + public int getTime() { + return time; + } + + /** + * Sets the value of the time property. + * + */ + public void setTime(int value) { + this.time = value; + } + + /** + * Gets the value of the distance property. + * + */ + public int getDistance() { + return distance; + } + + /** + * Sets the value of the distance property. + * + */ + public void setDistance(int value) { + this.distance = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteLocation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteLocation.java new file mode 100644 index 0000000..de1314c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteLocation.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RouteLocation complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RouteLocation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="address" type="{http://www.webservices.nl/soap/}RouteAddress"/>
+ *         <element name="coordinates" type="{http://www.webservices.nl/soap/}RouteCoordinates"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RouteLocation", propOrder = { + +}) +public class RouteLocation { + + @XmlElement(required = true) + protected RouteAddress address; + @XmlElement(required = true) + protected RouteCoordinates coordinates; + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link RouteAddress } + * + */ + public RouteAddress getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link RouteAddress } + * + */ + public void setAddress(RouteAddress value) { + this.address = value; + } + + /** + * Gets the value of the coordinates property. + * + * @return + * possible object is + * {@link RouteCoordinates } + * + */ + public RouteCoordinates getCoordinates() { + return coordinates; + } + + /** + * Sets the value of the coordinates property. + * + * @param value + * allowed object is + * {@link RouteCoordinates } + * + */ + public void setCoordinates(RouteCoordinates value) { + this.coordinates = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePart.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePart.java new file mode 100644 index 0000000..aa051d5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePart.java @@ -0,0 +1,105 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RoutePart complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RoutePart">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="time" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RoutePart", propOrder = { + +}) +public class RoutePart { + + @XmlElement(required = true) + protected String description; + protected int time; + protected int distance; + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDescription(String value) { + this.description = value; + } + + /** + * Gets the value of the time property. + * + */ + public int getTime() { + return time; + } + + /** + * Sets the value of the time property. + * + */ + public void setTime(int value) { + this.time = value; + } + + /** + * Gets the value of the distance property. + * + */ + public int getDistance() { + return distance; + } + + /** + * Sets the value of the distance property. + * + */ + public void setDistance(int value) { + this.distance = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePartArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePartArray.java new file mode 100644 index 0000000..aac9d2a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePartArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RoutePartArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RoutePartArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}RoutePart" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RoutePartArray", propOrder = { + "item" +}) +public class RoutePartArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link RoutePart } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionAddressRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionAddressRequestType.java new file mode 100644 index 0000000..1b5dc94 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionAddressRequestType.java @@ -0,0 +1,366 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerDescriptionAddressRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerDescriptionAddressRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_houseno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_houseno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerDescriptionAddressRequestType", propOrder = { + +}) +public class RoutePlannerDescriptionAddressRequestType { + + @XmlElement(required = true) + protected String routetype; + @XmlElement(name = "from_postalcode", required = true) + protected String fromPostalcode; + @XmlElement(name = "from_houseno", required = true) + protected String fromHouseno; + @XmlElement(name = "from_street", required = true) + protected String fromStreet; + @XmlElement(name = "from_city", required = true) + protected String fromCity; + @XmlElement(name = "from_country", required = true) + protected String fromCountry; + @XmlElement(name = "to_postalcode", required = true) + protected String toPostalcode; + @XmlElement(name = "to_houseno", required = true) + protected String toHouseno; + @XmlElement(name = "to_street", required = true) + protected String toStreet; + @XmlElement(name = "to_city", required = true) + protected String toCity; + @XmlElement(name = "to_country", required = true) + protected String toCountry; + @XmlElement(required = true) + protected String language; + + /** + * Gets the value of the routetype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoutetype() { + return routetype; + } + + /** + * Sets the value of the routetype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoutetype(String value) { + this.routetype = value; + } + + /** + * Gets the value of the fromPostalcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromPostalcode() { + return fromPostalcode; + } + + /** + * Sets the value of the fromPostalcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromPostalcode(String value) { + this.fromPostalcode = value; + } + + /** + * Gets the value of the fromHouseno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromHouseno() { + return fromHouseno; + } + + /** + * Sets the value of the fromHouseno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromHouseno(String value) { + this.fromHouseno = value; + } + + /** + * Gets the value of the fromStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromStreet() { + return fromStreet; + } + + /** + * Sets the value of the fromStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromStreet(String value) { + this.fromStreet = value; + } + + /** + * Gets the value of the fromCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromCity() { + return fromCity; + } + + /** + * Sets the value of the fromCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromCity(String value) { + this.fromCity = value; + } + + /** + * Gets the value of the fromCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromCountry() { + return fromCountry; + } + + /** + * Sets the value of the fromCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromCountry(String value) { + this.fromCountry = value; + } + + /** + * Gets the value of the toPostalcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToPostalcode() { + return toPostalcode; + } + + /** + * Sets the value of the toPostalcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToPostalcode(String value) { + this.toPostalcode = value; + } + + /** + * Gets the value of the toHouseno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToHouseno() { + return toHouseno; + } + + /** + * Sets the value of the toHouseno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToHouseno(String value) { + this.toHouseno = value; + } + + /** + * Gets the value of the toStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToStreet() { + return toStreet; + } + + /** + * Sets the value of the toStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToStreet(String value) { + this.toStreet = value; + } + + /** + * Gets the value of the toCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToCity() { + return toCity; + } + + /** + * Sets the value of the toCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToCity(String value) { + this.toCity = value; + } + + /** + * Gets the value of the toCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToCountry() { + return toCountry; + } + + /** + * Sets the value of the toCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToCountry(String value) { + this.toCountry = value; + } + + /** + * Gets the value of the language property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLanguage() { + return language; + } + + /** + * Sets the value of the language property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLanguage(String value) { + this.language = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionAddressResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionAddressResponseType.java new file mode 100644 index 0000000..d40c0f5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionAddressResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerDescriptionAddressResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerDescriptionAddressResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="route" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerDescriptionAddressResponseType", propOrder = { + +}) +public class RoutePlannerDescriptionAddressResponseType { + + @XmlElement(required = true) + protected RoutePartArray route; + + /** + * Gets the value of the route property. + * + * @return + * possible object is + * {@link RoutePartArray } + * + */ + public RoutePartArray getRoute() { + return route; + } + + /** + * Sets the value of the route property. + * + * @param value + * allowed object is + * {@link RoutePartArray } + * + */ + public void setRoute(RoutePartArray value) { + this.route = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionCoordinatesRDRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionCoordinatesRDRequestType.java new file mode 100644 index 0000000..beb5080 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionCoordinatesRDRequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerDescriptionCoordinatesRDRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerDescriptionCoordinatesRDRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcodeto" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="english" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerDescriptionCoordinatesRDRequestType", propOrder = { + +}) +public class RoutePlannerDescriptionCoordinatesRDRequestType { + + @XmlElement(required = true) + protected String postcodefrom; + @XmlElement(required = true) + protected String postcodeto; + @XmlElement(required = true) + protected String routetype; + protected boolean english; + + /** + * Gets the value of the postcodefrom property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcodefrom() { + return postcodefrom; + } + + /** + * Sets the value of the postcodefrom property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcodefrom(String value) { + this.postcodefrom = value; + } + + /** + * Gets the value of the postcodeto property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcodeto() { + return postcodeto; + } + + /** + * Sets the value of the postcodeto property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcodeto(String value) { + this.postcodeto = value; + } + + /** + * Gets the value of the routetype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoutetype() { + return routetype; + } + + /** + * Sets the value of the routetype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoutetype(String value) { + this.routetype = value; + } + + /** + * Gets the value of the english property. + * + */ + public boolean isEnglish() { + return english; + } + + /** + * Sets the value of the english property. + * + */ + public void setEnglish(boolean value) { + this.english = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionCoordinatesRDResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionCoordinatesRDResponseType.java new file mode 100644 index 0000000..e819747 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionCoordinatesRDResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerDescriptionCoordinatesRDResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerDescriptionCoordinatesRDResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="route" type="{http://www.webservices.nl/soap/}RouteDescriptionCoordinatesRD"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerDescriptionCoordinatesRDResponseType", propOrder = { + +}) +public class RoutePlannerDescriptionCoordinatesRDResponseType { + + @XmlElement(required = true) + protected RouteDescriptionCoordinatesRD route; + + /** + * Gets the value of the route property. + * + * @return + * possible object is + * {@link RouteDescriptionCoordinatesRD } + * + */ + public RouteDescriptionCoordinatesRD getRoute() { + return route; + } + + /** + * Sets the value of the route property. + * + * @param value + * allowed object is + * {@link RouteDescriptionCoordinatesRD } + * + */ + public void setRoute(RouteDescriptionCoordinatesRD value) { + this.route = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionDutchAddressRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionDutchAddressRequestType.java new file mode 100644 index 0000000..bd88a4f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionDutchAddressRequestType.java @@ -0,0 +1,312 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerDescriptionDutchAddressRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerDescriptionDutchAddressRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_housno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_housno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerDescriptionDutchAddressRequestType", propOrder = { + +}) +public class RoutePlannerDescriptionDutchAddressRequestType { + + @XmlElement(required = true) + protected String routetype; + @XmlElement(name = "from_postalcode", required = true) + protected String fromPostalcode; + @XmlElement(name = "from_housno", required = true) + protected String fromHousno; + @XmlElement(name = "from_street", required = true) + protected String fromStreet; + @XmlElement(name = "from_city", required = true) + protected String fromCity; + @XmlElement(name = "to_postalcode", required = true) + protected String toPostalcode; + @XmlElement(name = "to_housno", required = true) + protected String toHousno; + @XmlElement(name = "to_street", required = true) + protected String toStreet; + @XmlElement(name = "to_city", required = true) + protected String toCity; + @XmlElement(required = true) + protected String language; + + /** + * Gets the value of the routetype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoutetype() { + return routetype; + } + + /** + * Sets the value of the routetype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoutetype(String value) { + this.routetype = value; + } + + /** + * Gets the value of the fromPostalcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromPostalcode() { + return fromPostalcode; + } + + /** + * Sets the value of the fromPostalcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromPostalcode(String value) { + this.fromPostalcode = value; + } + + /** + * Gets the value of the fromHousno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromHousno() { + return fromHousno; + } + + /** + * Sets the value of the fromHousno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromHousno(String value) { + this.fromHousno = value; + } + + /** + * Gets the value of the fromStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromStreet() { + return fromStreet; + } + + /** + * Sets the value of the fromStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromStreet(String value) { + this.fromStreet = value; + } + + /** + * Gets the value of the fromCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromCity() { + return fromCity; + } + + /** + * Sets the value of the fromCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromCity(String value) { + this.fromCity = value; + } + + /** + * Gets the value of the toPostalcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToPostalcode() { + return toPostalcode; + } + + /** + * Sets the value of the toPostalcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToPostalcode(String value) { + this.toPostalcode = value; + } + + /** + * Gets the value of the toHousno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToHousno() { + return toHousno; + } + + /** + * Sets the value of the toHousno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToHousno(String value) { + this.toHousno = value; + } + + /** + * Gets the value of the toStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToStreet() { + return toStreet; + } + + /** + * Sets the value of the toStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToStreet(String value) { + this.toStreet = value; + } + + /** + * Gets the value of the toCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToCity() { + return toCity; + } + + /** + * Sets the value of the toCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToCity(String value) { + this.toCity = value; + } + + /** + * Gets the value of the language property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLanguage() { + return language; + } + + /** + * Sets the value of the language property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLanguage(String value) { + this.language = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionDutchAddressResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionDutchAddressResponseType.java new file mode 100644 index 0000000..57e63b7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionDutchAddressResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerDescriptionDutchAddressResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerDescriptionDutchAddressResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="route" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerDescriptionDutchAddressResponseType", propOrder = { + +}) +public class RoutePlannerDescriptionDutchAddressResponseType { + + @XmlElement(required = true) + protected RoutePartArray route; + + /** + * Gets the value of the route property. + * + * @return + * possible object is + * {@link RoutePartArray } + * + */ + public RoutePartArray getRoute() { + return route; + } + + /** + * Sets the value of the route property. + * + * @param value + * allowed object is + * {@link RoutePartArray } + * + */ + public void setRoute(RoutePartArray value) { + this.route = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionRequestType.java new file mode 100644 index 0000000..41cc4df --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionRequestType.java @@ -0,0 +1,114 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerDescriptionRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerDescriptionRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcodeto" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="english" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerDescriptionRequestType", propOrder = { + +}) +public class RoutePlannerDescriptionRequestType { + + @XmlElement(required = true) + protected String postcodefrom; + @XmlElement(required = true) + protected String postcodeto; + protected boolean english; + + /** + * Gets the value of the postcodefrom property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcodefrom() { + return postcodefrom; + } + + /** + * Sets the value of the postcodefrom property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcodefrom(String value) { + this.postcodefrom = value; + } + + /** + * Gets the value of the postcodeto property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcodeto() { + return postcodeto; + } + + /** + * Sets the value of the postcodeto property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcodeto(String value) { + this.postcodeto = value; + } + + /** + * Gets the value of the english property. + * + */ + public boolean isEnglish() { + return english; + } + + /** + * Sets the value of the english property. + * + */ + public void setEnglish(boolean value) { + this.english = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionResponseType.java new file mode 100644 index 0000000..da040d8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerDescriptionResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerDescriptionResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="route" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerDescriptionResponseType", propOrder = { + +}) +public class RoutePlannerDescriptionResponseType { + + @XmlElement(required = true) + protected RoutePartArray route; + + /** + * Gets the value of the route property. + * + * @return + * possible object is + * {@link RoutePartArray } + * + */ + public RoutePartArray getRoute() { + return route; + } + + /** + * Sets the value of the route property. + * + * @param value + * allowed object is + * {@link RoutePartArray } + * + */ + public void setRoute(RoutePartArray value) { + this.route = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionShortestRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionShortestRequestType.java new file mode 100644 index 0000000..4ce6050 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionShortestRequestType.java @@ -0,0 +1,114 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerDescriptionShortestRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerDescriptionShortestRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcodeto" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="english" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerDescriptionShortestRequestType", propOrder = { + +}) +public class RoutePlannerDescriptionShortestRequestType { + + @XmlElement(required = true) + protected String postcodefrom; + @XmlElement(required = true) + protected String postcodeto; + protected boolean english; + + /** + * Gets the value of the postcodefrom property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcodefrom() { + return postcodefrom; + } + + /** + * Sets the value of the postcodefrom property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcodefrom(String value) { + this.postcodefrom = value; + } + + /** + * Gets the value of the postcodeto property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcodeto() { + return postcodeto; + } + + /** + * Sets the value of the postcodeto property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcodeto(String value) { + this.postcodeto = value; + } + + /** + * Gets the value of the english property. + * + */ + public boolean isEnglish() { + return english; + } + + /** + * Sets the value of the english property. + * + */ + public void setEnglish(boolean value) { + this.english = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionShortestResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionShortestResponseType.java new file mode 100644 index 0000000..f61fdc2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionShortestResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerDescriptionShortestResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerDescriptionShortestResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="route" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerDescriptionShortestResponseType", propOrder = { + +}) +public class RoutePlannerDescriptionShortestResponseType { + + @XmlElement(required = true) + protected RoutePartArray route; + + /** + * Gets the value of the route property. + * + * @return + * possible object is + * {@link RoutePartArray } + * + */ + public RoutePartArray getRoute() { + return route; + } + + /** + * Sets the value of the route property. + * + * @param value + * allowed object is + * {@link RoutePartArray } + * + */ + public void setRoute(RoutePartArray value) { + this.route = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionCoordinatesLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionCoordinatesLatLonRequestType.java new file mode 100644 index 0000000..f8016cc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionCoordinatesLatLonRequestType.java @@ -0,0 +1,168 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerEUDescriptionCoordinatesLatLonRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerEUDescriptionCoordinatesLatLonRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="latitudefrom" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitudefrom" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="latitudeto" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitudeto" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerEUDescriptionCoordinatesLatLonRequestType", propOrder = { + +}) +public class RoutePlannerEUDescriptionCoordinatesLatLonRequestType { + + protected float latitudefrom; + protected float longitudefrom; + protected float latitudeto; + protected float longitudeto; + @XmlElement(required = true) + protected String routetype; + @XmlElement(required = true) + protected String language; + + /** + * Gets the value of the latitudefrom property. + * + */ + public float getLatitudefrom() { + return latitudefrom; + } + + /** + * Sets the value of the latitudefrom property. + * + */ + public void setLatitudefrom(float value) { + this.latitudefrom = value; + } + + /** + * Gets the value of the longitudefrom property. + * + */ + public float getLongitudefrom() { + return longitudefrom; + } + + /** + * Sets the value of the longitudefrom property. + * + */ + public void setLongitudefrom(float value) { + this.longitudefrom = value; + } + + /** + * Gets the value of the latitudeto property. + * + */ + public float getLatitudeto() { + return latitudeto; + } + + /** + * Sets the value of the latitudeto property. + * + */ + public void setLatitudeto(float value) { + this.latitudeto = value; + } + + /** + * Gets the value of the longitudeto property. + * + */ + public float getLongitudeto() { + return longitudeto; + } + + /** + * Sets the value of the longitudeto property. + * + */ + public void setLongitudeto(float value) { + this.longitudeto = value; + } + + /** + * Gets the value of the routetype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoutetype() { + return routetype; + } + + /** + * Sets the value of the routetype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoutetype(String value) { + this.routetype = value; + } + + /** + * Gets the value of the language property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLanguage() { + return language; + } + + /** + * Sets the value of the language property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLanguage(String value) { + this.language = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionCoordinatesLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionCoordinatesLatLonResponseType.java new file mode 100644 index 0000000..c9754ce --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionCoordinatesLatLonResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerEUDescriptionCoordinatesLatLonResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerEUDescriptionCoordinatesLatLonResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="route" type="{http://www.webservices.nl/soap/}RouteDescriptionCoordinatesLatLon"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerEUDescriptionCoordinatesLatLonResponseType", propOrder = { + +}) +public class RoutePlannerEUDescriptionCoordinatesLatLonResponseType { + + @XmlElement(required = true) + protected RouteDescriptionCoordinatesLatLon route; + + /** + * Gets the value of the route property. + * + * @return + * possible object is + * {@link RouteDescriptionCoordinatesLatLon } + * + */ + public RouteDescriptionCoordinatesLatLon getRoute() { + return route; + } + + /** + * Sets the value of the route property. + * + * @param value + * allowed object is + * {@link RouteDescriptionCoordinatesLatLon } + * + */ + public void setRoute(RouteDescriptionCoordinatesLatLon value) { + this.route = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionRequestType.java new file mode 100644 index 0000000..2b68de2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionRequestType.java @@ -0,0 +1,168 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerEUDescriptionRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerEUDescriptionRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="latitudefrom" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitudefrom" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="latitudeto" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitudeto" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerEUDescriptionRequestType", propOrder = { + +}) +public class RoutePlannerEUDescriptionRequestType { + + protected float latitudefrom; + protected float longitudefrom; + protected float latitudeto; + protected float longitudeto; + @XmlElement(required = true) + protected String routetype; + @XmlElement(required = true) + protected String language; + + /** + * Gets the value of the latitudefrom property. + * + */ + public float getLatitudefrom() { + return latitudefrom; + } + + /** + * Sets the value of the latitudefrom property. + * + */ + public void setLatitudefrom(float value) { + this.latitudefrom = value; + } + + /** + * Gets the value of the longitudefrom property. + * + */ + public float getLongitudefrom() { + return longitudefrom; + } + + /** + * Sets the value of the longitudefrom property. + * + */ + public void setLongitudefrom(float value) { + this.longitudefrom = value; + } + + /** + * Gets the value of the latitudeto property. + * + */ + public float getLatitudeto() { + return latitudeto; + } + + /** + * Sets the value of the latitudeto property. + * + */ + public void setLatitudeto(float value) { + this.latitudeto = value; + } + + /** + * Gets the value of the longitudeto property. + * + */ + public float getLongitudeto() { + return longitudeto; + } + + /** + * Sets the value of the longitudeto property. + * + */ + public void setLongitudeto(float value) { + this.longitudeto = value; + } + + /** + * Gets the value of the routetype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoutetype() { + return routetype; + } + + /** + * Sets the value of the routetype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoutetype(String value) { + this.routetype = value; + } + + /** + * Gets the value of the language property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLanguage() { + return language; + } + + /** + * Sets the value of the language property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLanguage(String value) { + this.language = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionResponseType.java new file mode 100644 index 0000000..28e2c05 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerEUDescriptionResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerEUDescriptionResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="route" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerEUDescriptionResponseType", propOrder = { + +}) +public class RoutePlannerEUDescriptionResponseType { + + @XmlElement(required = true) + protected RoutePartArray route; + + /** + * Gets the value of the route property. + * + * @return + * possible object is + * {@link RoutePartArray } + * + */ + public RoutePartArray getRoute() { + return route; + } + + /** + * Sets the value of the route property. + * + * @param value + * allowed object is + * {@link RoutePartArray } + * + */ + public void setRoute(RoutePartArray value) { + this.route = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUInformationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUInformationRequestType.java new file mode 100644 index 0000000..aa1b105 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUInformationRequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerEUInformationRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerEUInformationRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="latitudefrom" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitudefrom" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="latitudeto" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitudeto" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerEUInformationRequestType", propOrder = { + +}) +public class RoutePlannerEUInformationRequestType { + + protected float latitudefrom; + protected float longitudefrom; + protected float latitudeto; + protected float longitudeto; + @XmlElement(required = true) + protected String routetype; + + /** + * Gets the value of the latitudefrom property. + * + */ + public float getLatitudefrom() { + return latitudefrom; + } + + /** + * Sets the value of the latitudefrom property. + * + */ + public void setLatitudefrom(float value) { + this.latitudefrom = value; + } + + /** + * Gets the value of the longitudefrom property. + * + */ + public float getLongitudefrom() { + return longitudefrom; + } + + /** + * Sets the value of the longitudefrom property. + * + */ + public void setLongitudefrom(float value) { + this.longitudefrom = value; + } + + /** + * Gets the value of the latitudeto property. + * + */ + public float getLatitudeto() { + return latitudeto; + } + + /** + * Sets the value of the latitudeto property. + * + */ + public void setLatitudeto(float value) { + this.latitudeto = value; + } + + /** + * Gets the value of the longitudeto property. + * + */ + public float getLongitudeto() { + return longitudeto; + } + + /** + * Sets the value of the longitudeto property. + * + */ + public void setLongitudeto(float value) { + this.longitudeto = value; + } + + /** + * Gets the value of the routetype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoutetype() { + return routetype; + } + + /** + * Sets the value of the routetype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoutetype(String value) { + this.routetype = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUInformationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUInformationResponseType.java new file mode 100644 index 0000000..3c94323 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUInformationResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerEUInformationResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerEUInformationResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="route" type="{http://www.webservices.nl/soap/}RouteInfo"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerEUInformationResponseType", propOrder = { + +}) +public class RoutePlannerEUInformationResponseType { + + @XmlElement(required = true) + protected RouteInfo route; + + /** + * Gets the value of the route property. + * + * @return + * possible object is + * {@link RouteInfo } + * + */ + public RouteInfo getRoute() { + return route; + } + + /** + * Sets the value of the route property. + * + * @param value + * allowed object is + * {@link RouteInfo } + * + */ + public void setRoute(RouteInfo value) { + this.route = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUMapRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUMapRequestType.java new file mode 100644 index 0000000..282ac3d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUMapRequestType.java @@ -0,0 +1,258 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerEUMapRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerEUMapRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="latitudefrom" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitudefrom" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="latitudeto" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="longitudeto" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="width" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="height" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="view" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerEUMapRequestType", propOrder = { + +}) +public class RoutePlannerEUMapRequestType { + + protected float latitudefrom; + protected float longitudefrom; + protected float latitudeto; + protected float longitudeto; + @XmlElement(required = true) + protected String routetype; + @XmlElement(required = true) + protected String language; + @XmlElement(required = true) + protected String format; + protected int width; + protected int height; + @XmlElement(required = true) + protected String view; + + /** + * Gets the value of the latitudefrom property. + * + */ + public float getLatitudefrom() { + return latitudefrom; + } + + /** + * Sets the value of the latitudefrom property. + * + */ + public void setLatitudefrom(float value) { + this.latitudefrom = value; + } + + /** + * Gets the value of the longitudefrom property. + * + */ + public float getLongitudefrom() { + return longitudefrom; + } + + /** + * Sets the value of the longitudefrom property. + * + */ + public void setLongitudefrom(float value) { + this.longitudefrom = value; + } + + /** + * Gets the value of the latitudeto property. + * + */ + public float getLatitudeto() { + return latitudeto; + } + + /** + * Sets the value of the latitudeto property. + * + */ + public void setLatitudeto(float value) { + this.latitudeto = value; + } + + /** + * Gets the value of the longitudeto property. + * + */ + public float getLongitudeto() { + return longitudeto; + } + + /** + * Sets the value of the longitudeto property. + * + */ + public void setLongitudeto(float value) { + this.longitudeto = value; + } + + /** + * Gets the value of the routetype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoutetype() { + return routetype; + } + + /** + * Sets the value of the routetype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoutetype(String value) { + this.routetype = value; + } + + /** + * Gets the value of the language property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLanguage() { + return language; + } + + /** + * Sets the value of the language property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLanguage(String value) { + this.language = value; + } + + /** + * Gets the value of the format property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFormat() { + return format; + } + + /** + * Sets the value of the format property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFormat(String value) { + this.format = value; + } + + /** + * Gets the value of the width property. + * + */ + public int getWidth() { + return width; + } + + /** + * Sets the value of the width property. + * + */ + public void setWidth(int value) { + this.width = value; + } + + /** + * Gets the value of the height property. + * + */ + public int getHeight() { + return height; + } + + /** + * Sets the value of the height property. + * + */ + public void setHeight(int value) { + this.height = value; + } + + /** + * Gets the value of the view property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getView() { + return view; + } + + /** + * Sets the value of the view property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setView(String value) { + this.view = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUMapResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUMapResponseType.java new file mode 100644 index 0000000..45c009b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUMapResponseType.java @@ -0,0 +1,67 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerEUMapResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerEUMapResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="image" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerEUMapResponseType", propOrder = { + +}) +public class RoutePlannerEUMapResponseType { + + @XmlElement(required = true) + protected byte[] image; + + /** + * Gets the value of the image property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getImage() { + return image; + } + + /** + * Sets the value of the image property. + * + * @param value + * allowed object is + * byte[] + */ + public void setImage(byte[] value) { + this.image = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerGetRouteRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerGetRouteRequestType.java new file mode 100644 index 0000000..4608f78 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerGetRouteRequestType.java @@ -0,0 +1,404 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerGetRouteRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerGetRouteRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="start_postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="start_house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="start_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="start_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="start_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="start_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="destination_postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="destination_house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="destination_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="destination_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="destination_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="destination_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="route_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerGetRouteRequestType", propOrder = { + +}) +public class RoutePlannerGetRouteRequestType { + + @XmlElement(name = "start_postcode", required = true) + protected String startPostcode; + @XmlElement(name = "start_house_number") + protected int startHouseNumber; + @XmlElement(name = "start_house_number_addition", required = true) + protected String startHouseNumberAddition; + @XmlElement(name = "start_street", required = true) + protected String startStreet; + @XmlElement(name = "start_city", required = true) + protected String startCity; + @XmlElement(name = "start_country", required = true) + protected String startCountry; + @XmlElement(name = "destination_postcode", required = true) + protected String destinationPostcode; + @XmlElement(name = "destination_house_number") + protected int destinationHouseNumber; + @XmlElement(name = "destination_house_number_addition", required = true) + protected String destinationHouseNumberAddition; + @XmlElement(name = "destination_street", required = true) + protected String destinationStreet; + @XmlElement(name = "destination_city", required = true) + protected String destinationCity; + @XmlElement(name = "destination_country", required = true) + protected String destinationCountry; + @XmlElement(name = "route_type", required = true) + protected String routeType; + @XmlElement(required = true) + protected String language; + + /** + * Gets the value of the startPostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStartPostcode() { + return startPostcode; + } + + /** + * Sets the value of the startPostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStartPostcode(String value) { + this.startPostcode = value; + } + + /** + * Gets the value of the startHouseNumber property. + * + */ + public int getStartHouseNumber() { + return startHouseNumber; + } + + /** + * Sets the value of the startHouseNumber property. + * + */ + public void setStartHouseNumber(int value) { + this.startHouseNumber = value; + } + + /** + * Gets the value of the startHouseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStartHouseNumberAddition() { + return startHouseNumberAddition; + } + + /** + * Sets the value of the startHouseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStartHouseNumberAddition(String value) { + this.startHouseNumberAddition = value; + } + + /** + * Gets the value of the startStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStartStreet() { + return startStreet; + } + + /** + * Sets the value of the startStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStartStreet(String value) { + this.startStreet = value; + } + + /** + * Gets the value of the startCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStartCity() { + return startCity; + } + + /** + * Sets the value of the startCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStartCity(String value) { + this.startCity = value; + } + + /** + * Gets the value of the startCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStartCountry() { + return startCountry; + } + + /** + * Sets the value of the startCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStartCountry(String value) { + this.startCountry = value; + } + + /** + * Gets the value of the destinationPostcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDestinationPostcode() { + return destinationPostcode; + } + + /** + * Sets the value of the destinationPostcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDestinationPostcode(String value) { + this.destinationPostcode = value; + } + + /** + * Gets the value of the destinationHouseNumber property. + * + */ + public int getDestinationHouseNumber() { + return destinationHouseNumber; + } + + /** + * Sets the value of the destinationHouseNumber property. + * + */ + public void setDestinationHouseNumber(int value) { + this.destinationHouseNumber = value; + } + + /** + * Gets the value of the destinationHouseNumberAddition property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDestinationHouseNumberAddition() { + return destinationHouseNumberAddition; + } + + /** + * Sets the value of the destinationHouseNumberAddition property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDestinationHouseNumberAddition(String value) { + this.destinationHouseNumberAddition = value; + } + + /** + * Gets the value of the destinationStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDestinationStreet() { + return destinationStreet; + } + + /** + * Sets the value of the destinationStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDestinationStreet(String value) { + this.destinationStreet = value; + } + + /** + * Gets the value of the destinationCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDestinationCity() { + return destinationCity; + } + + /** + * Sets the value of the destinationCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDestinationCity(String value) { + this.destinationCity = value; + } + + /** + * Gets the value of the destinationCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDestinationCountry() { + return destinationCountry; + } + + /** + * Sets the value of the destinationCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDestinationCountry(String value) { + this.destinationCountry = value; + } + + /** + * Gets the value of the routeType property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRouteType() { + return routeType; + } + + /** + * Sets the value of the routeType property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRouteType(String value) { + this.routeType = value; + } + + /** + * Gets the value of the language property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLanguage() { + return language; + } + + /** + * Sets the value of the language property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLanguage(String value) { + this.language = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerGetRouteResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerGetRouteResponseType.java new file mode 100644 index 0000000..b100344 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerGetRouteResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerGetRouteResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerGetRouteResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="route" type="{http://www.webservices.nl/soap/}RoutePlannerRoute"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerGetRouteResponseType", propOrder = { + +}) +public class RoutePlannerGetRouteResponseType { + + @XmlElement(required = true) + protected RoutePlannerRoute route; + + /** + * Gets the value of the route property. + * + * @return + * possible object is + * {@link RoutePlannerRoute } + * + */ + public RoutePlannerRoute getRoute() { + return route; + } + + /** + * Sets the value of the route property. + * + * @param value + * allowed object is + * {@link RoutePlannerRoute } + * + */ + public void setRoute(RoutePlannerRoute value) { + this.route = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationAddressRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationAddressRequestType.java new file mode 100644 index 0000000..a1c4e6b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationAddressRequestType.java @@ -0,0 +1,339 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerInformationAddressRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerInformationAddressRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_houseno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_houseno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerInformationAddressRequestType", propOrder = { + +}) +public class RoutePlannerInformationAddressRequestType { + + @XmlElement(required = true) + protected String routetype; + @XmlElement(name = "from_postalcode", required = true) + protected String fromPostalcode; + @XmlElement(name = "from_houseno", required = true) + protected String fromHouseno; + @XmlElement(name = "from_street", required = true) + protected String fromStreet; + @XmlElement(name = "from_city", required = true) + protected String fromCity; + @XmlElement(name = "from_country", required = true) + protected String fromCountry; + @XmlElement(name = "to_postalcode", required = true) + protected String toPostalcode; + @XmlElement(name = "to_houseno", required = true) + protected String toHouseno; + @XmlElement(name = "to_street", required = true) + protected String toStreet; + @XmlElement(name = "to_city", required = true) + protected String toCity; + @XmlElement(name = "to_country", required = true) + protected String toCountry; + + /** + * Gets the value of the routetype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoutetype() { + return routetype; + } + + /** + * Sets the value of the routetype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoutetype(String value) { + this.routetype = value; + } + + /** + * Gets the value of the fromPostalcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromPostalcode() { + return fromPostalcode; + } + + /** + * Sets the value of the fromPostalcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromPostalcode(String value) { + this.fromPostalcode = value; + } + + /** + * Gets the value of the fromHouseno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromHouseno() { + return fromHouseno; + } + + /** + * Sets the value of the fromHouseno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromHouseno(String value) { + this.fromHouseno = value; + } + + /** + * Gets the value of the fromStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromStreet() { + return fromStreet; + } + + /** + * Sets the value of the fromStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromStreet(String value) { + this.fromStreet = value; + } + + /** + * Gets the value of the fromCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromCity() { + return fromCity; + } + + /** + * Sets the value of the fromCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromCity(String value) { + this.fromCity = value; + } + + /** + * Gets the value of the fromCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromCountry() { + return fromCountry; + } + + /** + * Sets the value of the fromCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromCountry(String value) { + this.fromCountry = value; + } + + /** + * Gets the value of the toPostalcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToPostalcode() { + return toPostalcode; + } + + /** + * Sets the value of the toPostalcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToPostalcode(String value) { + this.toPostalcode = value; + } + + /** + * Gets the value of the toHouseno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToHouseno() { + return toHouseno; + } + + /** + * Sets the value of the toHouseno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToHouseno(String value) { + this.toHouseno = value; + } + + /** + * Gets the value of the toStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToStreet() { + return toStreet; + } + + /** + * Sets the value of the toStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToStreet(String value) { + this.toStreet = value; + } + + /** + * Gets the value of the toCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToCity() { + return toCity; + } + + /** + * Sets the value of the toCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToCity(String value) { + this.toCity = value; + } + + /** + * Gets the value of the toCountry property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToCountry() { + return toCountry; + } + + /** + * Sets the value of the toCountry property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToCountry(String value) { + this.toCountry = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationAddressResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationAddressResponseType.java new file mode 100644 index 0000000..1120cd1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationAddressResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerInformationAddressResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerInformationAddressResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="route" type="{http://www.webservices.nl/soap/}RouteInfo"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerInformationAddressResponseType", propOrder = { + +}) +public class RoutePlannerInformationAddressResponseType { + + @XmlElement(required = true) + protected RouteInfo route; + + /** + * Gets the value of the route property. + * + * @return + * possible object is + * {@link RouteInfo } + * + */ + public RouteInfo getRoute() { + return route; + } + + /** + * Sets the value of the route property. + * + * @param value + * allowed object is + * {@link RouteInfo } + * + */ + public void setRoute(RouteInfo value) { + this.route = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationDutchAddressRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationDutchAddressRequestType.java new file mode 100644 index 0000000..260cc32 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationDutchAddressRequestType.java @@ -0,0 +1,285 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerInformationDutchAddressRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerInformationDutchAddressRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_housno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="from_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_housno" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="to_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerInformationDutchAddressRequestType", propOrder = { + +}) +public class RoutePlannerInformationDutchAddressRequestType { + + @XmlElement(required = true) + protected String routetype; + @XmlElement(name = "from_postalcode", required = true) + protected String fromPostalcode; + @XmlElement(name = "from_housno", required = true) + protected String fromHousno; + @XmlElement(name = "from_street", required = true) + protected String fromStreet; + @XmlElement(name = "from_city", required = true) + protected String fromCity; + @XmlElement(name = "to_postalcode", required = true) + protected String toPostalcode; + @XmlElement(name = "to_housno", required = true) + protected String toHousno; + @XmlElement(name = "to_street", required = true) + protected String toStreet; + @XmlElement(name = "to_city", required = true) + protected String toCity; + + /** + * Gets the value of the routetype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoutetype() { + return routetype; + } + + /** + * Sets the value of the routetype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoutetype(String value) { + this.routetype = value; + } + + /** + * Gets the value of the fromPostalcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromPostalcode() { + return fromPostalcode; + } + + /** + * Sets the value of the fromPostalcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromPostalcode(String value) { + this.fromPostalcode = value; + } + + /** + * Gets the value of the fromHousno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromHousno() { + return fromHousno; + } + + /** + * Sets the value of the fromHousno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromHousno(String value) { + this.fromHousno = value; + } + + /** + * Gets the value of the fromStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromStreet() { + return fromStreet; + } + + /** + * Sets the value of the fromStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromStreet(String value) { + this.fromStreet = value; + } + + /** + * Gets the value of the fromCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFromCity() { + return fromCity; + } + + /** + * Sets the value of the fromCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFromCity(String value) { + this.fromCity = value; + } + + /** + * Gets the value of the toPostalcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToPostalcode() { + return toPostalcode; + } + + /** + * Sets the value of the toPostalcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToPostalcode(String value) { + this.toPostalcode = value; + } + + /** + * Gets the value of the toHousno property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToHousno() { + return toHousno; + } + + /** + * Sets the value of the toHousno property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToHousno(String value) { + this.toHousno = value; + } + + /** + * Gets the value of the toStreet property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToStreet() { + return toStreet; + } + + /** + * Sets the value of the toStreet property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToStreet(String value) { + this.toStreet = value; + } + + /** + * Gets the value of the toCity property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToCity() { + return toCity; + } + + /** + * Sets the value of the toCity property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToCity(String value) { + this.toCity = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationDutchAddressResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationDutchAddressResponseType.java new file mode 100644 index 0000000..e8e0d59 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationDutchAddressResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerInformationDutchAddressResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerInformationDutchAddressResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="route" type="{http://www.webservices.nl/soap/}RouteInfo"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerInformationDutchAddressResponseType", propOrder = { + +}) +public class RoutePlannerInformationDutchAddressResponseType { + + @XmlElement(required = true) + protected RouteInfo route; + + /** + * Gets the value of the route property. + * + * @return + * possible object is + * {@link RouteInfo } + * + */ + public RouteInfo getRoute() { + return route; + } + + /** + * Sets the value of the route property. + * + * @param value + * allowed object is + * {@link RouteInfo } + * + */ + public void setRoute(RouteInfo value) { + this.route = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationRequestType.java new file mode 100644 index 0000000..fb2788f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationRequestType.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerInformationRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerInformationRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="postcodeto" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerInformationRequestType", propOrder = { + +}) +public class RoutePlannerInformationRequestType { + + @XmlElement(required = true) + protected String postcodefrom; + @XmlElement(required = true) + protected String postcodeto; + @XmlElement(required = true) + protected String routetype; + + /** + * Gets the value of the postcodefrom property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcodefrom() { + return postcodefrom; + } + + /** + * Sets the value of the postcodefrom property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcodefrom(String value) { + this.postcodefrom = value; + } + + /** + * Gets the value of the postcodeto property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcodeto() { + return postcodeto; + } + + /** + * Sets the value of the postcodeto property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcodeto(String value) { + this.postcodeto = value; + } + + /** + * Gets the value of the routetype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoutetype() { + return routetype; + } + + /** + * Sets the value of the routetype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoutetype(String value) { + this.routetype = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationResponseType.java new file mode 100644 index 0000000..31305c0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerInformationResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerInformationResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="route" type="{http://www.webservices.nl/soap/}RouteInfo"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerInformationResponseType", propOrder = { + +}) +public class RoutePlannerInformationResponseType { + + @XmlElement(required = true) + protected RouteInfo route; + + /** + * Gets the value of the route property. + * + * @return + * possible object is + * {@link RouteInfo } + * + */ + public RouteInfo getRoute() { + return route; + } + + /** + * Sets the value of the route property. + * + * @param value + * allowed object is + * {@link RouteInfo } + * + */ + public void setRoute(RouteInfo value) { + this.route = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionCoordinatesRDRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionCoordinatesRDRequestType.java new file mode 100644 index 0000000..c4ef2e7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionCoordinatesRDRequestType.java @@ -0,0 +1,159 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerRDDescriptionCoordinatesRDRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerRDDescriptionCoordinatesRDRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="xfrom" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="yfrom" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="xto" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="yto" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="english" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerRDDescriptionCoordinatesRDRequestType", propOrder = { + +}) +public class RoutePlannerRDDescriptionCoordinatesRDRequestType { + + protected int xfrom; + protected int yfrom; + protected int xto; + protected int yto; + @XmlElement(required = true) + protected String routetype; + protected boolean english; + + /** + * Gets the value of the xfrom property. + * + */ + public int getXfrom() { + return xfrom; + } + + /** + * Sets the value of the xfrom property. + * + */ + public void setXfrom(int value) { + this.xfrom = value; + } + + /** + * Gets the value of the yfrom property. + * + */ + public int getYfrom() { + return yfrom; + } + + /** + * Sets the value of the yfrom property. + * + */ + public void setYfrom(int value) { + this.yfrom = value; + } + + /** + * Gets the value of the xto property. + * + */ + public int getXto() { + return xto; + } + + /** + * Sets the value of the xto property. + * + */ + public void setXto(int value) { + this.xto = value; + } + + /** + * Gets the value of the yto property. + * + */ + public int getYto() { + return yto; + } + + /** + * Sets the value of the yto property. + * + */ + public void setYto(int value) { + this.yto = value; + } + + /** + * Gets the value of the routetype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoutetype() { + return routetype; + } + + /** + * Sets the value of the routetype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoutetype(String value) { + this.routetype = value; + } + + /** + * Gets the value of the english property. + * + */ + public boolean isEnglish() { + return english; + } + + /** + * Sets the value of the english property. + * + */ + public void setEnglish(boolean value) { + this.english = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionCoordinatesRDResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionCoordinatesRDResponseType.java new file mode 100644 index 0000000..24b678c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionCoordinatesRDResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerRDDescriptionCoordinatesRDResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerRDDescriptionCoordinatesRDResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="route" type="{http://www.webservices.nl/soap/}RouteDescriptionCoordinatesRD"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerRDDescriptionCoordinatesRDResponseType", propOrder = { + +}) +public class RoutePlannerRDDescriptionCoordinatesRDResponseType { + + @XmlElement(required = true) + protected RouteDescriptionCoordinatesRD route; + + /** + * Gets the value of the route property. + * + * @return + * possible object is + * {@link RouteDescriptionCoordinatesRD } + * + */ + public RouteDescriptionCoordinatesRD getRoute() { + return route; + } + + /** + * Sets the value of the route property. + * + * @param value + * allowed object is + * {@link RouteDescriptionCoordinatesRD } + * + */ + public void setRoute(RouteDescriptionCoordinatesRD value) { + this.route = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionRequestType.java new file mode 100644 index 0000000..68261e0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionRequestType.java @@ -0,0 +1,159 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerRDDescriptionRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerRDDescriptionRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="xfrom" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="yfrom" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="xto" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="yto" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="english" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerRDDescriptionRequestType", propOrder = { + +}) +public class RoutePlannerRDDescriptionRequestType { + + protected int xfrom; + protected int yfrom; + protected int xto; + protected int yto; + @XmlElement(required = true) + protected String routetype; + protected boolean english; + + /** + * Gets the value of the xfrom property. + * + */ + public int getXfrom() { + return xfrom; + } + + /** + * Sets the value of the xfrom property. + * + */ + public void setXfrom(int value) { + this.xfrom = value; + } + + /** + * Gets the value of the yfrom property. + * + */ + public int getYfrom() { + return yfrom; + } + + /** + * Sets the value of the yfrom property. + * + */ + public void setYfrom(int value) { + this.yfrom = value; + } + + /** + * Gets the value of the xto property. + * + */ + public int getXto() { + return xto; + } + + /** + * Sets the value of the xto property. + * + */ + public void setXto(int value) { + this.xto = value; + } + + /** + * Gets the value of the yto property. + * + */ + public int getYto() { + return yto; + } + + /** + * Sets the value of the yto property. + * + */ + public void setYto(int value) { + this.yto = value; + } + + /** + * Gets the value of the routetype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoutetype() { + return routetype; + } + + /** + * Sets the value of the routetype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoutetype(String value) { + this.routetype = value; + } + + /** + * Gets the value of the english property. + * + */ + public boolean isEnglish() { + return english; + } + + /** + * Sets the value of the english property. + * + */ + public void setEnglish(boolean value) { + this.english = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionResponseType.java new file mode 100644 index 0000000..4069fb9 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerRDDescriptionResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerRDDescriptionResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="route" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerRDDescriptionResponseType", propOrder = { + +}) +public class RoutePlannerRDDescriptionResponseType { + + @XmlElement(required = true) + protected RoutePartArray route; + + /** + * Gets the value of the route property. + * + * @return + * possible object is + * {@link RoutePartArray } + * + */ + public RoutePartArray getRoute() { + return route; + } + + /** + * Sets the value of the route property. + * + * @param value + * allowed object is + * {@link RoutePartArray } + * + */ + public void setRoute(RoutePartArray value) { + this.route = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDInformationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDInformationRequestType.java new file mode 100644 index 0000000..2f471bf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDInformationRequestType.java @@ -0,0 +1,141 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerRDInformationRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerRDInformationRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="xfrom" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="yfrom" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="xto" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="yto" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerRDInformationRequestType", propOrder = { + +}) +public class RoutePlannerRDInformationRequestType { + + protected int xfrom; + protected int yfrom; + protected int xto; + protected int yto; + @XmlElement(required = true) + protected String routetype; + + /** + * Gets the value of the xfrom property. + * + */ + public int getXfrom() { + return xfrom; + } + + /** + * Sets the value of the xfrom property. + * + */ + public void setXfrom(int value) { + this.xfrom = value; + } + + /** + * Gets the value of the yfrom property. + * + */ + public int getYfrom() { + return yfrom; + } + + /** + * Sets the value of the yfrom property. + * + */ + public void setYfrom(int value) { + this.yfrom = value; + } + + /** + * Gets the value of the xto property. + * + */ + public int getXto() { + return xto; + } + + /** + * Sets the value of the xto property. + * + */ + public void setXto(int value) { + this.xto = value; + } + + /** + * Gets the value of the yto property. + * + */ + public int getYto() { + return yto; + } + + /** + * Sets the value of the yto property. + * + */ + public void setYto(int value) { + this.yto = value; + } + + /** + * Gets the value of the routetype property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRoutetype() { + return routetype; + } + + /** + * Sets the value of the routetype property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRoutetype(String value) { + this.routetype = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDInformationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDInformationResponseType.java new file mode 100644 index 0000000..7d06882 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDInformationResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for routePlannerRDInformationResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="routePlannerRDInformationResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="route" type="{http://www.webservices.nl/soap/}RouteInfo"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "routePlannerRDInformationResponseType", propOrder = { + +}) +public class RoutePlannerRDInformationResponseType { + + @XmlElement(required = true) + protected RouteInfo route; + + /** + * Gets the value of the route property. + * + * @return + * possible object is + * {@link RouteInfo } + * + */ + public RouteInfo getRoute() { + return route; + } + + /** + * Sets the value of the route property. + * + * @param value + * allowed object is + * {@link RouteInfo } + * + */ + public void setRoute(RouteInfo value) { + this.route = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRoute.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRoute.java new file mode 100644 index 0000000..403a10e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRoute.java @@ -0,0 +1,174 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RoutePlannerRoute complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RoutePlannerRoute">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="start" type="{http://www.webservices.nl/soap/}RouteLocation"/>
+ *         <element name="destination" type="{http://www.webservices.nl/soap/}RouteLocation"/>
+ *         <element name="summary" type="{http://www.webservices.nl/soap/}RouteSummary"/>
+ *         <element name="description" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
+ *         <element name="map" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RoutePlannerRoute", propOrder = { + +}) +public class RoutePlannerRoute { + + @XmlElement(required = true) + protected RouteLocation start; + @XmlElement(required = true) + protected RouteLocation destination; + @XmlElement(required = true) + protected RouteSummary summary; + @XmlElement(required = true) + protected RoutePartArray description; + protected byte[] map; + + /** + * Gets the value of the start property. + * + * @return + * possible object is + * {@link RouteLocation } + * + */ + public RouteLocation getStart() { + return start; + } + + /** + * Sets the value of the start property. + * + * @param value + * allowed object is + * {@link RouteLocation } + * + */ + public void setStart(RouteLocation value) { + this.start = value; + } + + /** + * Gets the value of the destination property. + * + * @return + * possible object is + * {@link RouteLocation } + * + */ + public RouteLocation getDestination() { + return destination; + } + + /** + * Sets the value of the destination property. + * + * @param value + * allowed object is + * {@link RouteLocation } + * + */ + public void setDestination(RouteLocation value) { + this.destination = value; + } + + /** + * Gets the value of the summary property. + * + * @return + * possible object is + * {@link RouteSummary } + * + */ + public RouteSummary getSummary() { + return summary; + } + + /** + * Sets the value of the summary property. + * + * @param value + * allowed object is + * {@link RouteSummary } + * + */ + public void setSummary(RouteSummary value) { + this.summary = value; + } + + /** + * Gets the value of the description property. + * + * @return + * possible object is + * {@link RoutePartArray } + * + */ + public RoutePartArray getDescription() { + return description; + } + + /** + * Sets the value of the description property. + * + * @param value + * allowed object is + * {@link RoutePartArray } + * + */ + public void setDescription(RoutePartArray value) { + this.description = value; + } + + /** + * Gets the value of the map property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getMap() { + return map; + } + + /** + * Sets the value of the map property. + * + * @param value + * allowed object is + * byte[] + */ + public void setMap(byte[] value) { + this.map = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteSummary.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteSummary.java new file mode 100644 index 0000000..5b15715 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteSummary.java @@ -0,0 +1,105 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for RouteSummary complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="RouteSummary">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="time" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "RouteSummary", propOrder = { + +}) +public class RouteSummary { + + protected int time; + protected int distance; + @XmlElement(required = true) + protected String type; + + /** + * Gets the value of the time property. + * + */ + public int getTime() { + return time; + } + + /** + * Sets the value of the time property. + * + */ + public void setTime(int value) { + this.time = value; + } + + /** + * Gets the value of the distance property. + * + */ + public int getDistance() { + return distance; + } + + /** + * Sets the value of the distance property. + * + */ + public void setDistance(int value) { + this.distance = value; + } + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SearchParts.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SearchParts.java new file mode 100644 index 0000000..0421410 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SearchParts.java @@ -0,0 +1,276 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SearchParts complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="SearchParts">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="huisnr" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="wijkcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="lettercombinatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="straat" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="plaats" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="gemeente" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="provincie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="reeksindicatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SearchParts", propOrder = { + +}) +public class SearchParts { + + protected int huisnr; + @XmlElement(required = true) + protected String toevoeging; + @XmlElement(required = true) + protected String wijkcode; + @XmlElement(required = true) + protected String lettercombinatie; + @XmlElement(required = true) + protected String straat; + @XmlElement(required = true) + protected String plaats; + @XmlElement(required = true) + protected String gemeente; + @XmlElement(required = true) + protected String provincie; + @XmlElement(required = true) + protected String reeksindicatie; + + /** + * Gets the value of the huisnr property. + * + */ + public int getHuisnr() { + return huisnr; + } + + /** + * Sets the value of the huisnr property. + * + */ + public void setHuisnr(int value) { + this.huisnr = value; + } + + /** + * Gets the value of the toevoeging property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getToevoeging() { + return toevoeging; + } + + /** + * Sets the value of the toevoeging property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setToevoeging(String value) { + this.toevoeging = value; + } + + /** + * Gets the value of the wijkcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getWijkcode() { + return wijkcode; + } + + /** + * Sets the value of the wijkcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setWijkcode(String value) { + this.wijkcode = value; + } + + /** + * Gets the value of the lettercombinatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLettercombinatie() { + return lettercombinatie; + } + + /** + * Sets the value of the lettercombinatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLettercombinatie(String value) { + this.lettercombinatie = value; + } + + /** + * Gets the value of the straat property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStraat() { + return straat; + } + + /** + * Sets the value of the straat property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStraat(String value) { + this.straat = value; + } + + /** + * Gets the value of the plaats property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPlaats() { + return plaats; + } + + /** + * Sets the value of the plaats property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPlaats(String value) { + this.plaats = value; + } + + /** + * Gets the value of the gemeente property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getGemeente() { + return gemeente; + } + + /** + * Sets the value of the gemeente property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setGemeente(String value) { + this.gemeente = value; + } + + /** + * Gets the value of the provincie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getProvincie() { + return provincie; + } + + /** + * Sets the value of the provincie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setProvincie(String value) { + this.provincie = value; + } + + /** + * Gets the value of the reeksindicatie property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReeksindicatie() { + return reeksindicatie; + } + + /** + * Sets the value of the reeksindicatie property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReeksindicatie(String value) { + this.reeksindicatie = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankAccountData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankAccountData.java new file mode 100644 index 0000000..85af9e6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankAccountData.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SepaBankAccountData complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="SepaBankAccountData">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bban" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="bic" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SepaBankAccountData", propOrder = { + +}) +public class SepaBankAccountData { + + @XmlElement(required = true) + protected String bban; + @XmlElement(required = true) + protected String iban; + @XmlElement(required = true) + protected String bic; + + /** + * Gets the value of the bban property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBban() { + return bban; + } + + /** + * Sets the value of the bban property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBban(String value) { + this.bban = value; + } + + /** + * Gets the value of the iban property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIban() { + return iban; + } + + /** + * Sets the value of the iban property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIban(String value) { + this.iban = value; + } + + /** + * Gets the value of the bic property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBic() { + return bic; + } + + /** + * Sets the value of the bic property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBic(String value) { + this.bic = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankAccountIbanData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankAccountIbanData.java new file mode 100644 index 0000000..e3cbe35 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankAccountIbanData.java @@ -0,0 +1,142 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SepaBankAccountIbanData complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="SepaBankAccountIbanData">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="iban_details" type="{http://www.webservices.nl/soap/}SepaIbanDetails"/>
+ *         <element name="bank_details" type="{http://www.webservices.nl/soap/}SepaBankDetails" minOccurs="0"/>
+ *         <element name="is_sepa_member" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SepaBankAccountIbanData", propOrder = { + +}) +public class SepaBankAccountIbanData { + + @XmlElement(required = true) + protected String iban; + @XmlElement(name = "iban_details", required = true) + protected SepaIbanDetails ibanDetails; + @XmlElement(name = "bank_details") + protected SepaBankDetails bankDetails; + @XmlElement(name = "is_sepa_member") + protected boolean isSepaMember; + + /** + * Gets the value of the iban property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIban() { + return iban; + } + + /** + * Sets the value of the iban property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIban(String value) { + this.iban = value; + } + + /** + * Gets the value of the ibanDetails property. + * + * @return + * possible object is + * {@link SepaIbanDetails } + * + */ + public SepaIbanDetails getIbanDetails() { + return ibanDetails; + } + + /** + * Sets the value of the ibanDetails property. + * + * @param value + * allowed object is + * {@link SepaIbanDetails } + * + */ + public void setIbanDetails(SepaIbanDetails value) { + this.ibanDetails = value; + } + + /** + * Gets the value of the bankDetails property. + * + * @return + * possible object is + * {@link SepaBankDetails } + * + */ + public SepaBankDetails getBankDetails() { + return bankDetails; + } + + /** + * Sets the value of the bankDetails property. + * + * @param value + * allowed object is + * {@link SepaBankDetails } + * + */ + public void setBankDetails(SepaBankDetails value) { + this.bankDetails = value; + } + + /** + * Gets the value of the isSepaMember property. + * + */ + public boolean isIsSepaMember() { + return isSepaMember; + } + + /** + * Sets the value of the isSepaMember property. + * + */ + public void setIsSepaMember(boolean value) { + this.isSepaMember = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankDetails.java new file mode 100644 index 0000000..adbcdb4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankDetails.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SepaBankDetails complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="SepaBankDetails">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bank_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="bank_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="bic" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SepaBankDetails", propOrder = { + +}) +public class SepaBankDetails { + + @XmlElement(name = "bank_code", required = true) + protected String bankCode; + @XmlElement(name = "bank_name", required = true) + protected String bankName; + @XmlElement(required = true) + protected String bic; + + /** + * Gets the value of the bankCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBankCode() { + return bankCode; + } + + /** + * Sets the value of the bankCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBankCode(String value) { + this.bankCode = value; + } + + /** + * Gets the value of the bankName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBankName() { + return bankName; + } + + /** + * Sets the value of the bankName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBankName(String value) { + this.bankName = value; + } + + /** + * Gets the value of the bic property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBic() { + return bic; + } + + /** + * Sets the value of the bic property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBic(String value) { + this.bic = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBankAccountNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBankAccountNumberRequestType.java new file mode 100644 index 0000000..3a877d3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBankAccountNumberRequestType.java @@ -0,0 +1,123 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for sepaConvertBankAccountNumberRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="sepaConvertBankAccountNumberRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="account_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="nbi" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "sepaConvertBankAccountNumberRequestType", propOrder = { + +}) +public class SepaConvertBankAccountNumberRequestType { + + @XmlElement(name = "account_number", required = true) + protected String accountNumber; + @XmlElement(required = true) + protected String nbi; + @XmlElement(name = "country_code", required = true) + protected String countryCode; + + /** + * Gets the value of the accountNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAccountNumber() { + return accountNumber; + } + + /** + * Sets the value of the accountNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAccountNumber(String value) { + this.accountNumber = value; + } + + /** + * Gets the value of the nbi property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNbi() { + return nbi; + } + + /** + * Sets the value of the nbi property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNbi(String value) { + this.nbi = value; + } + + /** + * Gets the value of the countryCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryCode() { + return countryCode; + } + + /** + * Sets the value of the countryCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryCode(String value) { + this.countryCode = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBankAccountNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBankAccountNumberResponseType.java new file mode 100644 index 0000000..3522987 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBankAccountNumberResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for sepaConvertBankAccountNumberResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="sepaConvertBankAccountNumberResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="response" type="{http://www.webservices.nl/soap/}SepaBankAccountIbanData"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "sepaConvertBankAccountNumberResponseType", propOrder = { + +}) +public class SepaConvertBankAccountNumberResponseType { + + @XmlElement(required = true) + protected SepaBankAccountIbanData response; + + /** + * Gets the value of the response property. + * + * @return + * possible object is + * {@link SepaBankAccountIbanData } + * + */ + public SepaBankAccountIbanData getResponse() { + return response; + } + + /** + * Sets the value of the response property. + * + * @param value + * allowed object is + * {@link SepaBankAccountIbanData } + * + */ + public void setResponse(SepaBankAccountIbanData value) { + this.response = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBasicBankAccountNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBasicBankAccountNumberRequestType.java new file mode 100644 index 0000000..91fd3dd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBasicBankAccountNumberRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for sepaConvertBasicBankAccountNumberRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="sepaConvertBasicBankAccountNumberRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bban" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country_iso" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "sepaConvertBasicBankAccountNumberRequestType", propOrder = { + +}) +public class SepaConvertBasicBankAccountNumberRequestType { + + @XmlElement(required = true) + protected String bban; + @XmlElement(name = "country_iso", required = true) + protected String countryIso; + + /** + * Gets the value of the bban property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBban() { + return bban; + } + + /** + * Sets the value of the bban property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBban(String value) { + this.bban = value; + } + + /** + * Gets the value of the countryIso property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryIso() { + return countryIso; + } + + /** + * Sets the value of the countryIso property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryIso(String value) { + this.countryIso = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBasicBankAccountNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBasicBankAccountNumberResponseType.java new file mode 100644 index 0000000..4d4ec89 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBasicBankAccountNumberResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for sepaConvertBasicBankAccountNumberResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="sepaConvertBasicBankAccountNumberResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="bankaccount" type="{http://www.webservices.nl/soap/}SepaBankAccountData"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "sepaConvertBasicBankAccountNumberResponseType", propOrder = { + +}) +public class SepaConvertBasicBankAccountNumberResponseType { + + @XmlElement(required = true) + protected SepaBankAccountData bankaccount; + + /** + * Gets the value of the bankaccount property. + * + * @return + * possible object is + * {@link SepaBankAccountData } + * + */ + public SepaBankAccountData getBankaccount() { + return bankaccount; + } + + /** + * Sets the value of the bankaccount property. + * + * @param value + * allowed object is + * {@link SepaBankAccountData } + * + */ + public void setBankaccount(SepaBankAccountData value) { + this.bankaccount = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetails.java new file mode 100644 index 0000000..6c6e512 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetails.java @@ -0,0 +1,150 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SepaIbanDetails complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="SepaIbanDetails">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="check_digits" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="bban" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="bban_details" type="{http://www.webservices.nl/soap/}BbanDetails"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SepaIbanDetails", propOrder = { + +}) +public class SepaIbanDetails { + + @XmlElement(name = "check_digits", required = true) + protected String checkDigits; + @XmlElement(name = "country_code", required = true) + protected String countryCode; + @XmlElement(required = true) + protected String bban; + @XmlElement(name = "bban_details", required = true) + protected BbanDetails bbanDetails; + + /** + * Gets the value of the checkDigits property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCheckDigits() { + return checkDigits; + } + + /** + * Sets the value of the checkDigits property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCheckDigits(String value) { + this.checkDigits = value; + } + + /** + * Gets the value of the countryCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryCode() { + return countryCode; + } + + /** + * Sets the value of the countryCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryCode(String value) { + this.countryCode = value; + } + + /** + * Gets the value of the bban property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBban() { + return bban; + } + + /** + * Sets the value of the bban property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBban(String value) { + this.bban = value; + } + + /** + * Gets the value of the bbanDetails property. + * + * @return + * possible object is + * {@link BbanDetails } + * + */ + public BbanDetails getBbanDetails() { + return bbanDetails; + } + + /** + * Sets the value of the bbanDetails property. + * + * @param value + * allowed object is + * {@link BbanDetails } + * + */ + public void setBbanDetails(BbanDetails value) { + this.bbanDetails = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetailsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetailsRequestType.java new file mode 100644 index 0000000..9fd916d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetailsRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for sepaIbanDetailsRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="sepaIbanDetailsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "sepaIbanDetailsRequestType", propOrder = { + +}) +public class SepaIbanDetailsRequestType { + + @XmlElement(required = true) + protected String iban; + + /** + * Gets the value of the iban property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIban() { + return iban; + } + + /** + * Sets the value of the iban property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIban(String value) { + this.iban = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetailsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetailsResponseType.java new file mode 100644 index 0000000..67a2292 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetailsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for sepaIbanDetailsResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="sepaIbanDetailsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="iban_details" type="{http://www.webservices.nl/soap/}SepaBankAccountIbanData"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "sepaIbanDetailsResponseType", propOrder = { + +}) +public class SepaIbanDetailsResponseType { + + @XmlElement(name = "iban_details", required = true) + protected SepaBankAccountIbanData ibanDetails; + + /** + * Gets the value of the ibanDetails property. + * + * @return + * possible object is + * {@link SepaBankAccountIbanData } + * + */ + public SepaBankAccountIbanData getIbanDetails() { + return ibanDetails; + } + + /** + * Sets the value of the ibanDetails property. + * + * @param value + * allowed object is + * {@link SepaBankAccountIbanData } + * + */ + public void setIbanDetails(SepaBankAccountIbanData value) { + this.ibanDetails = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaInternationalBankAccountNumberFormatValidationReport.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaInternationalBankAccountNumberFormatValidationReport.java new file mode 100644 index 0000000..6cec6cf --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaInternationalBankAccountNumberFormatValidationReport.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SepaInternationalBankAccountNumberFormatValidationReport complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="SepaInternationalBankAccountNumberFormatValidationReport">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="valid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SepaInternationalBankAccountNumberFormatValidationReport", propOrder = { + +}) +public class SepaInternationalBankAccountNumberFormatValidationReport { + + @XmlElement(required = true) + protected String iban; + protected boolean valid; + + /** + * Gets the value of the iban property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIban() { + return iban; + } + + /** + * Sets the value of the iban property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIban(String value) { + this.iban = value; + } + + /** + * Gets the value of the valid property. + * + */ + public boolean isValid() { + return valid; + } + + /** + * Sets the value of the valid property. + * + */ + public void setValid(boolean value) { + this.valid = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderRequestType.java new file mode 100644 index 0000000..8a333e8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderRequestType.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for sepaMatchAccountHolderRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="sepaMatchAccountHolderRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "sepaMatchAccountHolderRequestType", propOrder = { + +}) +public class SepaMatchAccountHolderRequestType { + + @XmlElement(required = true) + protected String iban; + @XmlElement(required = true) + protected String name; + + /** + * Gets the value of the iban property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIban() { + return iban; + } + + /** + * Sets the value of the iban property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIban(String value) { + this.iban = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderResponseType.java new file mode 100644 index 0000000..84d4bc4 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for sepaMatchAccountHolderResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="sepaMatchAccountHolderResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="match_account_holder" type="{http://www.webservices.nl/soap/}SepaMatchAccountHolderResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "sepaMatchAccountHolderResponseType", propOrder = { + +}) +public class SepaMatchAccountHolderResponseType { + + @XmlElement(name = "match_account_holder", required = true) + protected SepaMatchAccountHolderResult matchAccountHolder; + + /** + * Gets the value of the matchAccountHolder property. + * + * @return + * possible object is + * {@link SepaMatchAccountHolderResult } + * + */ + public SepaMatchAccountHolderResult getMatchAccountHolder() { + return matchAccountHolder; + } + + /** + * Sets the value of the matchAccountHolder property. + * + * @param value + * allowed object is + * {@link SepaMatchAccountHolderResult } + * + */ + public void setMatchAccountHolder(SepaMatchAccountHolderResult value) { + this.matchAccountHolder = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderResult.java new file mode 100644 index 0000000..9282d18 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderResult.java @@ -0,0 +1,169 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SepaMatchAccountHolderResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="SepaMatchAccountHolderResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="iban_found" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="bank_account_details" type="{http://www.webservices.nl/soap/}SepaMatchBankAccountDetails" minOccurs="0"/>
+ *         <element name="bank_account_holder" type="{http://www.webservices.nl/soap/}SepaMatchBankAccountHolder" minOccurs="0"/>
+ *         <element name="name_matching_result" type="{http://www.webservices.nl/soap/}SepaMatchNameMatchingResult" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SepaMatchAccountHolderResult", propOrder = { + +}) +public class SepaMatchAccountHolderResult { + + @XmlElement(required = true) + protected String iban; + @XmlElement(name = "iban_found") + protected boolean ibanFound; + @XmlElement(name = "bank_account_details") + protected SepaMatchBankAccountDetails bankAccountDetails; + @XmlElement(name = "bank_account_holder") + protected SepaMatchBankAccountHolder bankAccountHolder; + @XmlElement(name = "name_matching_result") + protected SepaMatchNameMatchingResult nameMatchingResult; + + /** + * Gets the value of the iban property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIban() { + return iban; + } + + /** + * Sets the value of the iban property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIban(String value) { + this.iban = value; + } + + /** + * Gets the value of the ibanFound property. + * + */ + public boolean isIbanFound() { + return ibanFound; + } + + /** + * Sets the value of the ibanFound property. + * + */ + public void setIbanFound(boolean value) { + this.ibanFound = value; + } + + /** + * Gets the value of the bankAccountDetails property. + * + * @return + * possible object is + * {@link SepaMatchBankAccountDetails } + * + */ + public SepaMatchBankAccountDetails getBankAccountDetails() { + return bankAccountDetails; + } + + /** + * Sets the value of the bankAccountDetails property. + * + * @param value + * allowed object is + * {@link SepaMatchBankAccountDetails } + * + */ + public void setBankAccountDetails(SepaMatchBankAccountDetails value) { + this.bankAccountDetails = value; + } + + /** + * Gets the value of the bankAccountHolder property. + * + * @return + * possible object is + * {@link SepaMatchBankAccountHolder } + * + */ + public SepaMatchBankAccountHolder getBankAccountHolder() { + return bankAccountHolder; + } + + /** + * Sets the value of the bankAccountHolder property. + * + * @param value + * allowed object is + * {@link SepaMatchBankAccountHolder } + * + */ + public void setBankAccountHolder(SepaMatchBankAccountHolder value) { + this.bankAccountHolder = value; + } + + /** + * Gets the value of the nameMatchingResult property. + * + * @return + * possible object is + * {@link SepaMatchNameMatchingResult } + * + */ + public SepaMatchNameMatchingResult getNameMatchingResult() { + return nameMatchingResult; + } + + /** + * Sets the value of the nameMatchingResult property. + * + * @param value + * allowed object is + * {@link SepaMatchNameMatchingResult } + * + */ + public void setNameMatchingResult(SepaMatchNameMatchingResult value) { + this.nameMatchingResult = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchBankAccountDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchBankAccountDetails.java new file mode 100644 index 0000000..70dce80 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchBankAccountDetails.java @@ -0,0 +1,121 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SepaMatchBankAccountDetails complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="SepaMatchBankAccountDetails">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="foreign" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SepaMatchBankAccountDetails", propOrder = { + +}) +public class SepaMatchBankAccountDetails { + + protected Boolean foreign; + @XmlElement(name = "country_code") + protected String countryCode; + protected String status; + + /** + * Gets the value of the foreign property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isForeign() { + return foreign; + } + + /** + * Sets the value of the foreign property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setForeign(Boolean value) { + this.foreign = value; + } + + /** + * Gets the value of the countryCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryCode() { + return countryCode; + } + + /** + * Sets the value of the countryCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryCode(String value) { + this.countryCode = value; + } + + /** + * Gets the value of the status property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getStatus() { + return status; + } + + /** + * Sets the value of the status property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setStatus(String value) { + this.status = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchBankAccountHolder.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchBankAccountHolder.java new file mode 100644 index 0000000..2c89803 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchBankAccountHolder.java @@ -0,0 +1,149 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SepaMatchBankAccountHolder complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="SepaMatchBankAccountHolder">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="number_of_account_holders" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
+ *         <element name="joint_account" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ *         <element name="municipality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SepaMatchBankAccountHolder", propOrder = { + +}) +public class SepaMatchBankAccountHolder { + + @XmlElement(required = true) + protected String type; + @XmlElement(name = "number_of_account_holders") + protected Integer numberOfAccountHolders; + @XmlElement(name = "joint_account") + protected Boolean jointAccount; + protected String municipality; + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the numberOfAccountHolders property. + * + * @return + * possible object is + * {@link Integer } + * + */ + public Integer getNumberOfAccountHolders() { + return numberOfAccountHolders; + } + + /** + * Sets the value of the numberOfAccountHolders property. + * + * @param value + * allowed object is + * {@link Integer } + * + */ + public void setNumberOfAccountHolders(Integer value) { + this.numberOfAccountHolders = value; + } + + /** + * Gets the value of the jointAccount property. + * + * @return + * possible object is + * {@link Boolean } + * + */ + public Boolean isJointAccount() { + return jointAccount; + } + + /** + * Sets the value of the jointAccount property. + * + * @param value + * allowed object is + * {@link Boolean } + * + */ + public void setJointAccount(Boolean value) { + this.jointAccount = value; + } + + /** + * Gets the value of the municipality property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getMunicipality() { + return municipality; + } + + /** + * Sets the value of the municipality property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setMunicipality(String value) { + this.municipality = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchNameMatchingResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchNameMatchingResult.java new file mode 100644 index 0000000..aec911e --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchNameMatchingResult.java @@ -0,0 +1,95 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SepaMatchNameMatchingResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="SepaMatchNameMatchingResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="name_suggestion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SepaMatchNameMatchingResult", propOrder = { + +}) +public class SepaMatchNameMatchingResult { + + protected String type; + @XmlElement(name = "name_suggestion") + protected String nameSuggestion; + + /** + * Gets the value of the type property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getType() { + return type; + } + + /** + * Sets the value of the type property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setType(String value) { + this.type = value; + } + + /** + * Gets the value of the nameSuggestion property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNameSuggestion() { + return nameSuggestion; + } + + /** + * Sets the value of the nameSuggestion property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNameSuggestion(String value) { + this.nameSuggestion = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaValidateInternationalBankAccountNumberFormatRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaValidateInternationalBankAccountNumberFormatRequestType.java new file mode 100644 index 0000000..b240126 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaValidateInternationalBankAccountNumberFormatRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for sepaValidateInternationalBankAccountNumberFormatRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="sepaValidateInternationalBankAccountNumberFormatRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "sepaValidateInternationalBankAccountNumberFormatRequestType", propOrder = { + +}) +public class SepaValidateInternationalBankAccountNumberFormatRequestType { + + @XmlElement(required = true) + protected String iban; + + /** + * Gets the value of the iban property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIban() { + return iban; + } + + /** + * Sets the value of the iban property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIban(String value) { + this.iban = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaValidateInternationalBankAccountNumberFormatResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaValidateInternationalBankAccountNumberFormatResponseType.java new file mode 100644 index 0000000..fd1ac21 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaValidateInternationalBankAccountNumberFormatResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for sepaValidateInternationalBankAccountNumberFormatResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="sepaValidateInternationalBankAccountNumberFormatResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="validation_report" type="{http://www.webservices.nl/soap/}SepaInternationalBankAccountNumberFormatValidationReport"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "sepaValidateInternationalBankAccountNumberFormatResponseType", propOrder = { + +}) +public class SepaValidateInternationalBankAccountNumberFormatResponseType { + + @XmlElement(name = "validation_report", required = true) + protected SepaInternationalBankAccountNumberFormatValidationReport validationReport; + + /** + * Gets the value of the validationReport property. + * + * @return + * possible object is + * {@link SepaInternationalBankAccountNumberFormatValidationReport } + * + */ + public SepaInternationalBankAccountNumberFormatValidationReport getValidationReport() { + return validationReport; + } + + /** + * Sets the value of the validationReport property. + * + * @param value + * allowed object is + * {@link SepaInternationalBankAccountNumberFormatValidationReport } + * + */ + public void setValidationReport(SepaInternationalBankAccountNumberFormatValidationReport value) { + this.validationReport = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Session.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Session.java new file mode 100644 index 0000000..240f9da --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Session.java @@ -0,0 +1,214 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for Session complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="Session">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="reactid" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="user_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="user_nickname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="creationtime" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="lastvisit" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="hits" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="ip" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Session", propOrder = { + +}) +public class Session { + + @XmlElement(required = true) + protected String reactid; + @XmlElement(name = "user_id") + protected int userId; + @XmlElement(name = "user_nickname", required = true) + protected String userNickname; + @XmlElement(required = true) + protected String creationtime; + @XmlElement(required = true) + protected String lastvisit; + protected int hits; + @XmlElement(required = true) + protected String ip; + + /** + * Gets the value of the reactid property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReactid() { + return reactid; + } + + /** + * Sets the value of the reactid property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReactid(String value) { + this.reactid = value; + } + + /** + * Gets the value of the userId property. + * + */ + public int getUserId() { + return userId; + } + + /** + * Sets the value of the userId property. + * + */ + public void setUserId(int value) { + this.userId = value; + } + + /** + * Gets the value of the userNickname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUserNickname() { + return userNickname; + } + + /** + * Sets the value of the userNickname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUserNickname(String value) { + this.userNickname = value; + } + + /** + * Gets the value of the creationtime property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreationtime() { + return creationtime; + } + + /** + * Sets the value of the creationtime property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreationtime(String value) { + this.creationtime = value; + } + + /** + * Gets the value of the lastvisit property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastvisit() { + return lastvisit; + } + + /** + * Sets the value of the lastvisit property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastvisit(String value) { + this.lastvisit = value; + } + + /** + * Gets the value of the hits property. + * + */ + public int getHits() { + return hits; + } + + /** + * Sets the value of the hits property. + * + */ + public void setHits(int value) { + this.hits = value; + } + + /** + * Gets the value of the ip property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getIp() { + return ip; + } + + /** + * Sets the value of the ip property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setIp(String value) { + this.ip = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SessionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SessionArray.java new file mode 100644 index 0000000..e9ba1b1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SessionArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SessionArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="SessionArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}Session" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SessionArray", propOrder = { + "item" +}) +public class SessionArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Session } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SessionPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SessionPagedResult.java new file mode 100644 index 0000000..5020fa1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SessionPagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SessionPagedResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="SessionPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}SessionArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SessionPagedResult", propOrder = { + +}) +public class SessionPagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected SessionArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link SessionArray } + * + */ + public SessionArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link SessionArray } + * + */ + public void setResults(SessionArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcode.java new file mode 100644 index 0000000..8c7c409 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcode.java @@ -0,0 +1,114 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SortedPostcode complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="SortedPostcode">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="precision" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SortedPostcode", propOrder = { + +}) +public class SortedPostcode { + + @XmlElement(required = true) + protected String postcode; + protected int distance; + @XmlElement(required = true) + protected String precision; + + /** + * Gets the value of the postcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPostcode() { + return postcode; + } + + /** + * Sets the value of the postcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPostcode(String value) { + this.postcode = value; + } + + /** + * Gets the value of the distance property. + * + */ + public int getDistance() { + return distance; + } + + /** + * Sets the value of the distance property. + * + */ + public void setDistance(int value) { + this.distance = value; + } + + /** + * Gets the value of the precision property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPrecision() { + return precision; + } + + /** + * Sets the value of the precision property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPrecision(String value) { + this.precision = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcodeArray.java new file mode 100644 index 0000000..a493482 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcodeArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SortedPostcodeArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="SortedPostcodeArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}SortedPostcode" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SortedPostcodeArray", propOrder = { + "item" +}) +public class SortedPostcodeArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link SortedPostcode } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcodePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcodePagedResult.java new file mode 100644 index 0000000..eeec259 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcodePagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for SortedPostcodePagedResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="SortedPostcodePagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}SortedPostcodeArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "SortedPostcodePagedResult", propOrder = { + +}) +public class SortedPostcodePagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected SortedPostcodeArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link SortedPostcodeArray } + * + */ + public SortedPostcodeArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link SortedPostcodeArray } + * + */ + public void setResults(SortedPostcodeArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StringArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StringArray.java new file mode 100644 index 0000000..f37ea99 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StringArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for stringArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="stringArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "stringArray", propOrder = { + "item" +}) +public class StringArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Stuk.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Stuk.java new file mode 100644 index 0000000..a746428 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Stuk.java @@ -0,0 +1,206 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for Stuk complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="Stuk">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="aanduiding_soort_register" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="deel" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="nummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="reeks" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="datum_aanbieding" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "Stuk", propOrder = { + +}) +public class Stuk { + + @XmlElement(required = true) + protected String id; + @XmlElement(name = "aanduiding_soort_register", required = true) + protected String aanduidingSoortRegister; + @XmlElement(required = true) + protected String deel; + @XmlElement(required = true) + protected String nummer; + protected String reeks; + @XmlElement(name = "datum_aanbieding") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar datumAanbieding; + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the aanduidingSoortRegister property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAanduidingSoortRegister() { + return aanduidingSoortRegister; + } + + /** + * Sets the value of the aanduidingSoortRegister property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAanduidingSoortRegister(String value) { + this.aanduidingSoortRegister = value; + } + + /** + * Gets the value of the deel property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getDeel() { + return deel; + } + + /** + * Sets the value of the deel property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setDeel(String value) { + this.deel = value; + } + + /** + * Gets the value of the nummer property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNummer() { + return nummer; + } + + /** + * Sets the value of the nummer property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNummer(String value) { + this.nummer = value; + } + + /** + * Gets the value of the reeks property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReeks() { + return reeks; + } + + /** + * Sets the value of the reeks property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReeks(String value) { + this.reeks = value; + } + + /** + * Gets the value of the datumAanbieding property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getDatumAanbieding() { + return datumAanbieding; + } + + /** + * Sets the value of the datumAanbieding property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setDatumAanbieding(XMLGregorianCalendar value) { + this.datumAanbieding = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukArray.java new file mode 100644 index 0000000..5a42dc2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for StukArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="StukArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}Stuk" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "StukArray", propOrder = { + "item" +}) +public class StukArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link Stuk } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduiding.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduiding.java new file mode 100644 index 0000000..b2f72a2 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduiding.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for StukMetKadastraleAanduiding complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="StukMetKadastraleAanduiding">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="kadastrale_aanduiding" type="{http://www.webservices.nl/soap/}KadastraleAanduiding" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "StukMetKadastraleAanduiding", propOrder = { + +}) +public class StukMetKadastraleAanduiding { + + @XmlElement(required = true) + protected String id; + @XmlElement(name = "kadastrale_aanduiding") + protected KadastraleAanduiding kadastraleAanduiding; + + /** + * Gets the value of the id property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getId() { + return id; + } + + /** + * Sets the value of the id property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setId(String value) { + this.id = value; + } + + /** + * Gets the value of the kadastraleAanduiding property. + * + * @return + * possible object is + * {@link KadastraleAanduiding } + * + */ + public KadastraleAanduiding getKadastraleAanduiding() { + return kadastraleAanduiding; + } + + /** + * Sets the value of the kadastraleAanduiding property. + * + * @param value + * allowed object is + * {@link KadastraleAanduiding } + * + */ + public void setKadastraleAanduiding(KadastraleAanduiding value) { + this.kadastraleAanduiding = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduidingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduidingArray.java new file mode 100644 index 0000000..2124914 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduidingArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for StukMetKadastraleAanduidingArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="StukMetKadastraleAanduidingArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}StukMetKadastraleAanduiding" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "StukMetKadastraleAanduidingArray", propOrder = { + "item" +}) +public class StukMetKadastraleAanduidingArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link StukMetKadastraleAanduiding } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduidingLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduidingLijst.java new file mode 100644 index 0000000..aa887ba --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduidingLijst.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for StukMetKadastraleAanduidingLijst complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="StukMetKadastraleAanduidingLijst">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="stukken" type="{http://www.webservices.nl/soap/}StukMetKadastraleAanduidingArray"/>
+ *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "StukMetKadastraleAanduidingLijst", propOrder = { + +}) +public class StukMetKadastraleAanduidingLijst { + + @XmlElement(required = true) + protected StukMetKadastraleAanduidingArray stukken; + @XmlElement(name = "indicatie_compleet") + protected boolean indicatieCompleet; + + /** + * Gets the value of the stukken property. + * + * @return + * possible object is + * {@link StukMetKadastraleAanduidingArray } + * + */ + public StukMetKadastraleAanduidingArray getStukken() { + return stukken; + } + + /** + * Sets the value of the stukken property. + * + * @param value + * allowed object is + * {@link StukMetKadastraleAanduidingArray } + * + */ + public void setStukken(StukMetKadastraleAanduidingArray value) { + this.stukken = value; + } + + /** + * Gets the value of the indicatieCompleet property. + * + */ + public boolean isIndicatieCompleet() { + return indicatieCompleet; + } + + /** + * Sets the value of the indicatieCompleet property. + * + */ + public void setIndicatieCompleet(boolean value) { + this.indicatieCompleet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukReferentiesLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukReferentiesLijst.java new file mode 100644 index 0000000..c245275 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukReferentiesLijst.java @@ -0,0 +1,88 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for StukReferentiesLijst complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="StukReferentiesLijst">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="stukken" type="{http://www.webservices.nl/soap/}stringArray"/>
+ *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "StukReferentiesLijst", propOrder = { + +}) +public class StukReferentiesLijst { + + @XmlElement(required = true) + protected StringArray stukken; + @XmlElement(name = "indicatie_compleet") + protected boolean indicatieCompleet; + + /** + * Gets the value of the stukken property. + * + * @return + * possible object is + * {@link StringArray } + * + */ + public StringArray getStukken() { + return stukken; + } + + /** + * Sets the value of the stukken property. + * + * @param value + * allowed object is + * {@link StringArray } + * + */ + public void setStukken(StringArray value) { + this.stukken = value; + } + + /** + * Gets the value of the indicatieCompleet property. + * + */ + public boolean isIndicatieCompleet() { + return indicatieCompleet; + } + + /** + * Sets the value of the indicatieCompleet property. + * + */ + public void setIndicatieCompleet(boolean value) { + this.indicatieCompleet = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UittrekselKadastraleKaart.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UittrekselKadastraleKaart.java new file mode 100644 index 0000000..660bd3f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UittrekselKadastraleKaart.java @@ -0,0 +1,120 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for UittrekselKadastraleKaart complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="UittrekselKadastraleKaart">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="kaart" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
+ *         <element name="kadastrale_aanduidingen" type="{http://www.webservices.nl/soap/}KadastraleAanduidingArray"/>
+ *         <element name="afbeeldingen" type="{http://www.webservices.nl/soap/}base64BinaryArray" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "UittrekselKadastraleKaart", propOrder = { + +}) +public class UittrekselKadastraleKaart { + + @XmlElement(required = true) + protected byte[] kaart; + @XmlElement(name = "kadastrale_aanduidingen", required = true) + protected KadastraleAanduidingArray kadastraleAanduidingen; + protected Base64BinaryArray afbeeldingen; + + /** + * Gets the value of the kaart property. + * + * @return + * possible object is + * byte[] + */ + public byte[] getKaart() { + return kaart; + } + + /** + * Sets the value of the kaart property. + * + * @param value + * allowed object is + * byte[] + */ + public void setKaart(byte[] value) { + this.kaart = value; + } + + /** + * Gets the value of the kadastraleAanduidingen property. + * + * @return + * possible object is + * {@link KadastraleAanduidingArray } + * + */ + public KadastraleAanduidingArray getKadastraleAanduidingen() { + return kadastraleAanduidingen; + } + + /** + * Sets the value of the kadastraleAanduidingen property. + * + * @param value + * allowed object is + * {@link KadastraleAanduidingArray } + * + */ + public void setKadastraleAanduidingen(KadastraleAanduidingArray value) { + this.kadastraleAanduidingen = value; + } + + /** + * Gets the value of the afbeeldingen property. + * + * @return + * possible object is + * {@link Base64BinaryArray } + * + */ + public Base64BinaryArray getAfbeeldingen() { + return afbeeldingen; + } + + /** + * Sets the value of the afbeeldingen property. + * + * @param value + * allowed object is + * {@link Base64BinaryArray } + * + */ + public void setAfbeeldingen(Base64BinaryArray value) { + this.afbeeldingen = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/User.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/User.java new file mode 100644 index 0000000..45ba9fd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/User.java @@ -0,0 +1,538 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for User complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="User">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="nickname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="companyname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contactemail" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="credits" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="clientcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="comments" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="creationtime" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="lastmodified" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="account_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="account_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="usergroups" type="{http://www.webservices.nl/soap/}UserGroupArray"/>
+ *         <element name="creditthreshold" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="notificationrecipients" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "User", propOrder = { + +}) +public class User { + + protected int id; + @XmlElement(required = true) + protected String nickname; + @XmlElement(required = true) + protected String email; + @XmlElement(required = true) + protected String companyname; + @XmlElement(required = true) + protected String address; + @XmlElement(required = true) + protected String contactname; + @XmlElement(required = true) + protected String contactemail; + @XmlElement(required = true) + protected String telephone; + @XmlElement(required = true) + protected String fax; + protected int credits; + @XmlElement(required = true) + protected String clientcode; + @XmlElement(required = true) + protected String comments; + @XmlElement(required = true) + protected String creationtime; + @XmlElement(required = true) + protected String lastmodified; + protected boolean active; + @XmlElement(name = "account_id") + protected int accountId; + @XmlElement(name = "account_name", required = true) + protected String accountName; + @XmlElement(required = true) + protected UserGroupArray usergroups; + protected int creditthreshold; + @XmlElement(required = true) + protected String notificationrecipients; + + /** + * Gets the value of the id property. + * + */ + public int getId() { + return id; + } + + /** + * Sets the value of the id property. + * + */ + public void setId(int value) { + this.id = value; + } + + /** + * Gets the value of the nickname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNickname() { + return nickname; + } + + /** + * Sets the value of the nickname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNickname(String value) { + this.nickname = value; + } + + /** + * Gets the value of the email property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmail() { + return email; + } + + /** + * Sets the value of the email property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmail(String value) { + this.email = value; + } + + /** + * Gets the value of the companyname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyname() { + return companyname; + } + + /** + * Sets the value of the companyname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyname(String value) { + this.companyname = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the contactname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactname() { + return contactname; + } + + /** + * Sets the value of the contactname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactname(String value) { + this.contactname = value; + } + + /** + * Gets the value of the contactemail property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactemail() { + return contactemail; + } + + /** + * Sets the value of the contactemail property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactemail(String value) { + this.contactemail = value; + } + + /** + * Gets the value of the telephone property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephone() { + return telephone; + } + + /** + * Sets the value of the telephone property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephone(String value) { + this.telephone = value; + } + + /** + * Gets the value of the fax property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFax() { + return fax; + } + + /** + * Sets the value of the fax property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFax(String value) { + this.fax = value; + } + + /** + * Gets the value of the credits property. + * + */ + public int getCredits() { + return credits; + } + + /** + * Sets the value of the credits property. + * + */ + public void setCredits(int value) { + this.credits = value; + } + + /** + * Gets the value of the clientcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getClientcode() { + return clientcode; + } + + /** + * Sets the value of the clientcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setClientcode(String value) { + this.clientcode = value; + } + + /** + * Gets the value of the comments property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getComments() { + return comments; + } + + /** + * Sets the value of the comments property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setComments(String value) { + this.comments = value; + } + + /** + * Gets the value of the creationtime property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreationtime() { + return creationtime; + } + + /** + * Sets the value of the creationtime property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreationtime(String value) { + this.creationtime = value; + } + + /** + * Gets the value of the lastmodified property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastmodified() { + return lastmodified; + } + + /** + * Sets the value of the lastmodified property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastmodified(String value) { + this.lastmodified = value; + } + + /** + * Gets the value of the active property. + * + */ + public boolean isActive() { + return active; + } + + /** + * Sets the value of the active property. + * + */ + public void setActive(boolean value) { + this.active = value; + } + + /** + * Gets the value of the accountId property. + * + */ + public int getAccountId() { + return accountId; + } + + /** + * Sets the value of the accountId property. + * + */ + public void setAccountId(int value) { + this.accountId = value; + } + + /** + * Gets the value of the accountName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAccountName() { + return accountName; + } + + /** + * Sets the value of the accountName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAccountName(String value) { + this.accountName = value; + } + + /** + * Gets the value of the usergroups property. + * + * @return + * possible object is + * {@link UserGroupArray } + * + */ + public UserGroupArray getUsergroups() { + return usergroups; + } + + /** + * Sets the value of the usergroups property. + * + * @param value + * allowed object is + * {@link UserGroupArray } + * + */ + public void setUsergroups(UserGroupArray value) { + this.usergroups = value; + } + + /** + * Gets the value of the creditthreshold property. + * + */ + public int getCreditthreshold() { + return creditthreshold; + } + + /** + * Sets the value of the creditthreshold property. + * + */ + public void setCreditthreshold(int value) { + this.creditthreshold = value; + } + + /** + * Gets the value of the notificationrecipients property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNotificationrecipients() { + return notificationrecipients; + } + + /** + * Sets the value of the notificationrecipients property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNotificationrecipients(String value) { + this.notificationrecipients = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserAddGroupRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserAddGroupRequestType.java new file mode 100644 index 0000000..bb8fd3c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserAddGroupRequestType.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userAddGroupRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userAddGroupRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="usergroupid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userAddGroupRequestType", propOrder = { + +}) +public class UserAddGroupRequestType { + + protected int userid; + protected int usergroupid; + + /** + * Gets the value of the userid property. + * + */ + public int getUserid() { + return userid; + } + + /** + * Sets the value of the userid property. + * + */ + public void setUserid(int value) { + this.userid = value; + } + + /** + * Gets the value of the usergroupid property. + * + */ + public int getUsergroupid() { + return usergroupid; + } + + /** + * Sets the value of the usergroupid property. + * + */ + public void setUsergroupid(int value) { + this.usergroupid = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserAddGroupResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserAddGroupResponseType.java new file mode 100644 index 0000000..cb1ad2c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserAddGroupResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userAddGroupResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userAddGroupResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userAddGroupResponseType") +public class UserAddGroupResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserChangePasswordRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserChangePasswordRequestType.java new file mode 100644 index 0000000..7e255fd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserChangePasswordRequestType.java @@ -0,0 +1,114 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userChangePasswordRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userChangePasswordRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="old_password" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="new_password" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userChangePasswordRequestType", propOrder = { + +}) +public class UserChangePasswordRequestType { + + protected int userid; + @XmlElement(name = "old_password", required = true) + protected String oldPassword; + @XmlElement(name = "new_password", required = true) + protected String newPassword; + + /** + * Gets the value of the userid property. + * + */ + public int getUserid() { + return userid; + } + + /** + * Sets the value of the userid property. + * + */ + public void setUserid(int value) { + this.userid = value; + } + + /** + * Gets the value of the oldPassword property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOldPassword() { + return oldPassword; + } + + /** + * Sets the value of the oldPassword property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOldPassword(String value) { + this.oldPassword = value; + } + + /** + * Gets the value of the newPassword property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNewPassword() { + return newPassword; + } + + /** + * Sets the value of the newPassword property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNewPassword(String value) { + this.newPassword = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserChangePasswordResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserChangePasswordResponseType.java new file mode 100644 index 0000000..306c04d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserChangePasswordResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userChangePasswordResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userChangePasswordResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userChangePasswordResponseType") +public class UserChangePasswordResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCreateV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCreateV2RequestType.java new file mode 100644 index 0000000..1b73768 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCreateV2RequestType.java @@ -0,0 +1,384 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userCreateV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userCreateV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="nickname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="usergroups" type="{http://www.webservices.nl/soap/}intArray"/>
+ *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="companyname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contactemail" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="clientcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="comments" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userCreateV2RequestType", propOrder = { + +}) +public class UserCreateV2RequestType { + + protected int accountid; + @XmlElement(required = true) + protected String nickname; + @XmlElement(required = true) + protected String password; + @XmlElement(required = true) + protected IntArray usergroups; + @XmlElement(required = true) + protected String email; + @XmlElement(required = true) + protected String companyname; + @XmlElement(required = true) + protected String address; + @XmlElement(required = true) + protected String contactname; + @XmlElement(required = true) + protected String contactemail; + @XmlElement(required = true) + protected String telephone; + @XmlElement(required = true) + protected String fax; + @XmlElement(required = true) + protected String clientcode; + @XmlElement(required = true) + protected String comments; + + /** + * Gets the value of the accountid property. + * + */ + public int getAccountid() { + return accountid; + } + + /** + * Sets the value of the accountid property. + * + */ + public void setAccountid(int value) { + this.accountid = value; + } + + /** + * Gets the value of the nickname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNickname() { + return nickname; + } + + /** + * Sets the value of the nickname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNickname(String value) { + this.nickname = value; + } + + /** + * Gets the value of the password property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPassword() { + return password; + } + + /** + * Sets the value of the password property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPassword(String value) { + this.password = value; + } + + /** + * Gets the value of the usergroups property. + * + * @return + * possible object is + * {@link IntArray } + * + */ + public IntArray getUsergroups() { + return usergroups; + } + + /** + * Sets the value of the usergroups property. + * + * @param value + * allowed object is + * {@link IntArray } + * + */ + public void setUsergroups(IntArray value) { + this.usergroups = value; + } + + /** + * Gets the value of the email property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmail() { + return email; + } + + /** + * Sets the value of the email property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmail(String value) { + this.email = value; + } + + /** + * Gets the value of the companyname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyname() { + return companyname; + } + + /** + * Sets the value of the companyname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyname(String value) { + this.companyname = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the contactname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactname() { + return contactname; + } + + /** + * Sets the value of the contactname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactname(String value) { + this.contactname = value; + } + + /** + * Gets the value of the contactemail property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactemail() { + return contactemail; + } + + /** + * Sets the value of the contactemail property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactemail(String value) { + this.contactemail = value; + } + + /** + * Gets the value of the telephone property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephone() { + return telephone; + } + + /** + * Sets the value of the telephone property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephone(String value) { + this.telephone = value; + } + + /** + * Gets the value of the fax property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFax() { + return fax; + } + + /** + * Sets the value of the fax property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFax(String value) { + this.fax = value; + } + + /** + * Gets the value of the clientcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getClientcode() { + return clientcode; + } + + /** + * Sets the value of the clientcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setClientcode(String value) { + this.clientcode = value; + } + + /** + * Gets the value of the comments property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getComments() { + return comments; + } + + /** + * Sets the value of the comments property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setComments(String value) { + this.comments = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCreateV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCreateV2ResponseType.java new file mode 100644 index 0000000..2b9bf56 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCreateV2ResponseType.java @@ -0,0 +1,114 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userCreateV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userCreateV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="nickname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userCreateV2ResponseType", propOrder = { + +}) +public class UserCreateV2ResponseType { + + protected int id; + @XmlElement(required = true) + protected String nickname; + @XmlElement(required = true) + protected String password; + + /** + * Gets the value of the id property. + * + */ + public int getId() { + return id; + } + + /** + * Sets the value of the id property. + * + */ + public void setId(int value) { + this.id = value; + } + + /** + * Gets the value of the nickname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNickname() { + return nickname; + } + + /** + * Sets the value of the nickname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNickname(String value) { + this.nickname = value; + } + + /** + * Gets the value of the password property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPassword() { + return password; + } + + /** + * Sets the value of the password property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPassword(String value) { + this.password = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCredentials.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCredentials.java new file mode 100644 index 0000000..2e36fc0 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCredentials.java @@ -0,0 +1,114 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for UserCredentials complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="UserCredentials">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="username" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "UserCredentials", propOrder = { + +}) +public class UserCredentials { + + protected int id; + @XmlElement(required = true) + protected String username; + @XmlElement(required = true) + protected String password; + + /** + * Gets the value of the id property. + * + */ + public int getId() { + return id; + } + + /** + * Sets the value of the id property. + * + */ + public void setId(int value) { + this.id = value; + } + + /** + * Gets the value of the username property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getUsername() { + return username; + } + + /** + * Sets the value of the username property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setUsername(String value) { + this.username = value; + } + + /** + * Gets the value of the password property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPassword() { + return password; + } + + /** + * Sets the value of the password property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPassword(String value) { + this.password = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditBalanceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditBalanceRequestType.java new file mode 100644 index 0000000..87c23c8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditBalanceRequestType.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userEditBalanceRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userEditBalanceRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="balance" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userEditBalanceRequestType", propOrder = { + +}) +public class UserEditBalanceRequestType { + + protected int userid; + protected float balance; + + /** + * Gets the value of the userid property. + * + */ + public int getUserid() { + return userid; + } + + /** + * Sets the value of the userid property. + * + */ + public void setUserid(int value) { + this.userid = value; + } + + /** + * Gets the value of the balance property. + * + */ + public float getBalance() { + return balance; + } + + /** + * Sets the value of the balance property. + * + */ + public void setBalance(float value) { + this.balance = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditBalanceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditBalanceResponseType.java new file mode 100644 index 0000000..a56f6fc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditBalanceResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userEditBalanceResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userEditBalanceResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userEditBalanceResponseType") +public class UserEditBalanceResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditExtendedV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditExtendedV2RequestType.java new file mode 100644 index 0000000..6e35754 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditExtendedV2RequestType.java @@ -0,0 +1,420 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userEditExtendedV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userEditExtendedV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="nickname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="companyname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contactemail" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="clientcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="comments" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="balancethreshold" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="notificationrecipients" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userEditExtendedV2RequestType", propOrder = { + +}) +public class UserEditExtendedV2RequestType { + + protected int userid; + @XmlElement(required = true) + protected String nickname; + @XmlElement(required = true) + protected String password; + @XmlElement(required = true) + protected String email; + @XmlElement(required = true) + protected String companyname; + @XmlElement(required = true) + protected String address; + @XmlElement(required = true) + protected String contactname; + @XmlElement(required = true) + protected String contactemail; + @XmlElement(required = true) + protected String telephone; + @XmlElement(required = true) + protected String fax; + @XmlElement(required = true) + protected String clientcode; + @XmlElement(required = true) + protected String comments; + protected int accountid; + protected float balancethreshold; + @XmlElement(required = true) + protected String notificationrecipients; + + /** + * Gets the value of the userid property. + * + */ + public int getUserid() { + return userid; + } + + /** + * Sets the value of the userid property. + * + */ + public void setUserid(int value) { + this.userid = value; + } + + /** + * Gets the value of the nickname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNickname() { + return nickname; + } + + /** + * Sets the value of the nickname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNickname(String value) { + this.nickname = value; + } + + /** + * Gets the value of the password property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPassword() { + return password; + } + + /** + * Sets the value of the password property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPassword(String value) { + this.password = value; + } + + /** + * Gets the value of the email property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmail() { + return email; + } + + /** + * Sets the value of the email property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmail(String value) { + this.email = value; + } + + /** + * Gets the value of the companyname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyname() { + return companyname; + } + + /** + * Sets the value of the companyname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyname(String value) { + this.companyname = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the contactname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactname() { + return contactname; + } + + /** + * Sets the value of the contactname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactname(String value) { + this.contactname = value; + } + + /** + * Gets the value of the contactemail property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactemail() { + return contactemail; + } + + /** + * Sets the value of the contactemail property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactemail(String value) { + this.contactemail = value; + } + + /** + * Gets the value of the telephone property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephone() { + return telephone; + } + + /** + * Sets the value of the telephone property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephone(String value) { + this.telephone = value; + } + + /** + * Gets the value of the fax property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFax() { + return fax; + } + + /** + * Sets the value of the fax property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFax(String value) { + this.fax = value; + } + + /** + * Gets the value of the clientcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getClientcode() { + return clientcode; + } + + /** + * Sets the value of the clientcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setClientcode(String value) { + this.clientcode = value; + } + + /** + * Gets the value of the comments property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getComments() { + return comments; + } + + /** + * Sets the value of the comments property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setComments(String value) { + this.comments = value; + } + + /** + * Gets the value of the accountid property. + * + */ + public int getAccountid() { + return accountid; + } + + /** + * Sets the value of the accountid property. + * + */ + public void setAccountid(int value) { + this.accountid = value; + } + + /** + * Gets the value of the balancethreshold property. + * + */ + public float getBalancethreshold() { + return balancethreshold; + } + + /** + * Sets the value of the balancethreshold property. + * + */ + public void setBalancethreshold(float value) { + this.balancethreshold = value; + } + + /** + * Gets the value of the notificationrecipients property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNotificationrecipients() { + return notificationrecipients; + } + + /** + * Sets the value of the notificationrecipients property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNotificationrecipients(String value) { + this.notificationrecipients = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditExtendedV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditExtendedV2ResponseType.java new file mode 100644 index 0000000..aaf7fce --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditExtendedV2ResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userEditExtendedV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userEditExtendedV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userEditExtendedV2ResponseType") +public class UserEditExtendedV2ResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditHostRestrictionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditHostRestrictionsRequestType.java new file mode 100644 index 0000000..46908d8 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditHostRestrictionsRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userEditHostRestrictionsRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userEditHostRestrictionsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="restrictions" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userEditHostRestrictionsRequestType", propOrder = { + +}) +public class UserEditHostRestrictionsRequestType { + + protected int userid; + @XmlElement(required = true) + protected String restrictions; + + /** + * Gets the value of the userid property. + * + */ + public int getUserid() { + return userid; + } + + /** + * Sets the value of the userid property. + * + */ + public void setUserid(int value) { + this.userid = value; + } + + /** + * Gets the value of the restrictions property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRestrictions() { + return restrictions; + } + + /** + * Sets the value of the restrictions property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRestrictions(String value) { + this.restrictions = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditHostRestrictionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditHostRestrictionsResponseType.java new file mode 100644 index 0000000..fb8e716 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditHostRestrictionsResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userEditHostRestrictionsResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userEditHostRestrictionsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userEditHostRestrictionsResponseType") +public class UserEditHostRestrictionsResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditV2RequestType.java new file mode 100644 index 0000000..4479b7f --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditV2RequestType.java @@ -0,0 +1,249 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userEditV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userEditV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contactemail" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userEditV2RequestType", propOrder = { + +}) +public class UserEditV2RequestType { + + protected int userid; + @XmlElement(required = true) + protected String email; + @XmlElement(required = true) + protected String address; + @XmlElement(required = true) + protected String contactname; + @XmlElement(required = true) + protected String contactemail; + @XmlElement(required = true) + protected String telephone; + @XmlElement(required = true) + protected String fax; + @XmlElement(required = true) + protected String password; + + /** + * Gets the value of the userid property. + * + */ + public int getUserid() { + return userid; + } + + /** + * Sets the value of the userid property. + * + */ + public void setUserid(int value) { + this.userid = value; + } + + /** + * Gets the value of the email property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmail() { + return email; + } + + /** + * Sets the value of the email property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmail(String value) { + this.email = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the contactname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactname() { + return contactname; + } + + /** + * Sets the value of the contactname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactname(String value) { + this.contactname = value; + } + + /** + * Gets the value of the contactemail property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactemail() { + return contactemail; + } + + /** + * Sets the value of the contactemail property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactemail(String value) { + this.contactemail = value; + } + + /** + * Gets the value of the telephone property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephone() { + return telephone; + } + + /** + * Sets the value of the telephone property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephone(String value) { + this.telephone = value; + } + + /** + * Gets the value of the fax property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFax() { + return fax; + } + + /** + * Sets the value of the fax property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFax(String value) { + this.fax = value; + } + + /** + * Gets the value of the password property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPassword() { + return password; + } + + /** + * Sets the value of the password property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPassword(String value) { + this.password = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditV2ResponseType.java new file mode 100644 index 0000000..539721c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditV2ResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userEditV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userEditV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userEditV2ResponseType") +public class UserEditV2ResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroup.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroup.java new file mode 100644 index 0000000..c5acc19 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroup.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for UserGroup complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="UserGroup">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "UserGroup", propOrder = { + +}) +public class UserGroup { + + protected int id; + @XmlElement(required = true) + protected String name; + + /** + * Gets the value of the id property. + * + */ + public int getId() { + return id; + } + + /** + * Sets the value of the id property. + * + */ + public void setId(int value) { + this.id = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroupArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroupArray.java new file mode 100644 index 0000000..a43edf5 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroupArray.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for UserGroupArray complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="UserGroupArray">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}UserGroup" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "UserGroupArray", propOrder = { + "item" +}) +public class UserGroupArray { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link UserGroup } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroupPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroupPagedResult.java new file mode 100644 index 0000000..818b3e7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroupPagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for UserGroupPagedResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="UserGroupPagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}UserGroupArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "UserGroupPagedResult", propOrder = { + +}) +public class UserGroupPagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected UserGroupArray results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link UserGroupArray } + * + */ + public UserGroupArray getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link UserGroupArray } + * + */ + public void setResults(UserGroupArray value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserListAssignableGroupsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserListAssignableGroupsRequestType.java new file mode 100644 index 0000000..9180cbd --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserListAssignableGroupsRequestType.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userListAssignableGroupsRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userListAssignableGroupsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userListAssignableGroupsRequestType", propOrder = { + +}) +public class UserListAssignableGroupsRequestType { + + protected int userid; + protected int page; + + /** + * Gets the value of the userid property. + * + */ + public int getUserid() { + return userid; + } + + /** + * Sets the value of the userid property. + * + */ + public void setUserid(int value) { + this.userid = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserListAssignableGroupsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserListAssignableGroupsResponseType.java new file mode 100644 index 0000000..e6c5d03 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserListAssignableGroupsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userListAssignableGroupsResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userListAssignableGroupsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}UserGroupPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userListAssignableGroupsResponseType", propOrder = { + +}) +public class UserListAssignableGroupsResponseType { + + @XmlElement(required = true) + protected UserGroupPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link UserGroupPagedResult } + * + */ + public UserGroupPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link UserGroupPagedResult } + * + */ + public void setOut(UserGroupPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserNotifyRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserNotifyRequestType.java new file mode 100644 index 0000000..ffe8839 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserNotifyRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userNotifyRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userNotifyRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userNotifyRequestType", propOrder = { + +}) +public class UserNotifyRequestType { + + protected int userid; + @XmlElement(required = true) + protected String password; + + /** + * Gets the value of the userid property. + * + */ + public int getUserid() { + return userid; + } + + /** + * Sets the value of the userid property. + * + */ + public void setUserid(int value) { + this.userid = value; + } + + /** + * Gets the value of the password property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getPassword() { + return password; + } + + /** + * Sets the value of the password property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setPassword(String value) { + this.password = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserNotifyResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserNotifyResponseType.java new file mode 100644 index 0000000..31a6817 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserNotifyResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userNotifyResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userNotifyResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userNotifyResponseType", propOrder = { + +}) +public class UserNotifyResponseType { + + @XmlElement(required = true) + protected String out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveGroupRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveGroupRequestType.java new file mode 100644 index 0000000..2705832 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveGroupRequestType.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userRemoveGroupRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userRemoveGroupRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="usergroupid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userRemoveGroupRequestType", propOrder = { + +}) +public class UserRemoveGroupRequestType { + + protected int userid; + protected int usergroupid; + + /** + * Gets the value of the userid property. + * + */ + public int getUserid() { + return userid; + } + + /** + * Sets the value of the userid property. + * + */ + public void setUserid(int value) { + this.userid = value; + } + + /** + * Gets the value of the usergroupid property. + * + */ + public int getUsergroupid() { + return usergroupid; + } + + /** + * Sets the value of the usergroupid property. + * + */ + public void setUsergroupid(int value) { + this.usergroupid = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveGroupResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveGroupResponseType.java new file mode 100644 index 0000000..acb4355 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveGroupResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userRemoveGroupResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userRemoveGroupResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userRemoveGroupResponseType") +public class UserRemoveGroupResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveRequestType.java new file mode 100644 index 0000000..5ca5fd3 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveRequestType.java @@ -0,0 +1,59 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userRemoveRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userRemoveRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userRemoveRequestType", propOrder = { + +}) +public class UserRemoveRequestType { + + protected int userid; + + /** + * Gets the value of the userid property. + * + */ + public int getUserid() { + return userid; + } + + /** + * Sets the value of the userid property. + * + */ + public void setUserid(int value) { + this.userid = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveResponseType.java new file mode 100644 index 0000000..65e082b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userRemoveResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userRemoveResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userRemoveResponseType") +public class UserRemoveResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionListRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionListRequestType.java new file mode 100644 index 0000000..55193c1 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionListRequestType.java @@ -0,0 +1,77 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userSessionListRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userSessionListRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userSessionListRequestType", propOrder = { + +}) +public class UserSessionListRequestType { + + protected int userid; + protected int page; + + /** + * Gets the value of the userid property. + * + */ + public int getUserid() { + return userid; + } + + /** + * Sets the value of the userid property. + * + */ + public void setUserid(int value) { + this.userid = value; + } + + /** + * Gets the value of the page property. + * + */ + public int getPage() { + return page; + } + + /** + * Sets the value of the page property. + * + */ + public void setPage(int value) { + this.page = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionListResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionListResponseType.java new file mode 100644 index 0000000..3416523 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionListResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userSessionListResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userSessionListResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}SessionPagedResult"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userSessionListResponseType", propOrder = { + +}) +public class UserSessionListResponseType { + + @XmlElement(required = true) + protected SessionPagedResult out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link SessionPagedResult } + * + */ + public SessionPagedResult getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link SessionPagedResult } + * + */ + public void setOut(SessionPagedResult value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionRemoveRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionRemoveRequestType.java new file mode 100644 index 0000000..21d3197 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionRemoveRequestType.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userSessionRemoveRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userSessionRemoveRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="reactid" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userSessionRemoveRequestType", propOrder = { + +}) +public class UserSessionRemoveRequestType { + + protected int userid; + @XmlElement(required = true) + protected String reactid; + + /** + * Gets the value of the userid property. + * + */ + public int getUserid() { + return userid; + } + + /** + * Sets the value of the userid property. + * + */ + public void setUserid(int value) { + this.userid = value; + } + + /** + * Gets the value of the reactid property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getReactid() { + return reactid; + } + + /** + * Sets the value of the reactid property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setReactid(String value) { + this.reactid = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionRemoveResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionRemoveResponseType.java new file mode 100644 index 0000000..4b17c12 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionRemoveResponseType.java @@ -0,0 +1,37 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userSessionRemoveResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userSessionRemoveResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userSessionRemoveResponseType") +public class UserSessionRemoveResponseType { + + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2.java new file mode 100644 index 0000000..0f87114 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2.java @@ -0,0 +1,534 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for UserV2 complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="UserV2">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="nickname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="balance" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="balancethreshold" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *         <element name="notificationrecipients" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="companyname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="contactemail" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="clientcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="comments" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="creationtime" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="lastmodified" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="account_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *         <element name="account_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="usergroups" type="{http://www.webservices.nl/soap/}UserGroupArray"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "UserV2", propOrder = { + +}) +public class UserV2 { + + protected int id; + @XmlElement(required = true) + protected String nickname; + @XmlElement(required = true) + protected String email; + protected float balance; + protected float balancethreshold; + @XmlElement(required = true) + protected String notificationrecipients; + @XmlElement(required = true) + protected String companyname; + @XmlElement(required = true) + protected String address; + @XmlElement(required = true) + protected String contactname; + @XmlElement(required = true) + protected String contactemail; + @XmlElement(required = true) + protected String telephone; + @XmlElement(required = true) + protected String fax; + protected String clientcode; + protected String comments; + protected String creationtime; + protected String lastmodified; + protected boolean active; + @XmlElement(name = "account_id") + protected int accountId; + @XmlElement(name = "account_name", required = true) + protected String accountName; + @XmlElement(required = true) + protected UserGroupArray usergroups; + + /** + * Gets the value of the id property. + * + */ + public int getId() { + return id; + } + + /** + * Sets the value of the id property. + * + */ + public void setId(int value) { + this.id = value; + } + + /** + * Gets the value of the nickname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNickname() { + return nickname; + } + + /** + * Sets the value of the nickname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNickname(String value) { + this.nickname = value; + } + + /** + * Gets the value of the email property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getEmail() { + return email; + } + + /** + * Sets the value of the email property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setEmail(String value) { + this.email = value; + } + + /** + * Gets the value of the balance property. + * + */ + public float getBalance() { + return balance; + } + + /** + * Sets the value of the balance property. + * + */ + public void setBalance(float value) { + this.balance = value; + } + + /** + * Gets the value of the balancethreshold property. + * + */ + public float getBalancethreshold() { + return balancethreshold; + } + + /** + * Sets the value of the balancethreshold property. + * + */ + public void setBalancethreshold(float value) { + this.balancethreshold = value; + } + + /** + * Gets the value of the notificationrecipients property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNotificationrecipients() { + return notificationrecipients; + } + + /** + * Sets the value of the notificationrecipients property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNotificationrecipients(String value) { + this.notificationrecipients = value; + } + + /** + * Gets the value of the companyname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCompanyname() { + return companyname; + } + + /** + * Sets the value of the companyname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCompanyname(String value) { + this.companyname = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + + /** + * Gets the value of the contactname property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactname() { + return contactname; + } + + /** + * Sets the value of the contactname property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactname(String value) { + this.contactname = value; + } + + /** + * Gets the value of the contactemail property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getContactemail() { + return contactemail; + } + + /** + * Sets the value of the contactemail property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setContactemail(String value) { + this.contactemail = value; + } + + /** + * Gets the value of the telephone property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getTelephone() { + return telephone; + } + + /** + * Sets the value of the telephone property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setTelephone(String value) { + this.telephone = value; + } + + /** + * Gets the value of the fax property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getFax() { + return fax; + } + + /** + * Sets the value of the fax property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setFax(String value) { + this.fax = value; + } + + /** + * Gets the value of the clientcode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getClientcode() { + return clientcode; + } + + /** + * Sets the value of the clientcode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setClientcode(String value) { + this.clientcode = value; + } + + /** + * Gets the value of the comments property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getComments() { + return comments; + } + + /** + * Sets the value of the comments property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setComments(String value) { + this.comments = value; + } + + /** + * Gets the value of the creationtime property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCreationtime() { + return creationtime; + } + + /** + * Sets the value of the creationtime property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCreationtime(String value) { + this.creationtime = value; + } + + /** + * Gets the value of the lastmodified property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getLastmodified() { + return lastmodified; + } + + /** + * Sets the value of the lastmodified property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setLastmodified(String value) { + this.lastmodified = value; + } + + /** + * Gets the value of the active property. + * + */ + public boolean isActive() { + return active; + } + + /** + * Sets the value of the active property. + * + */ + public void setActive(boolean value) { + this.active = value; + } + + /** + * Gets the value of the accountId property. + * + */ + public int getAccountId() { + return accountId; + } + + /** + * Sets the value of the accountId property. + * + */ + public void setAccountId(int value) { + this.accountId = value; + } + + /** + * Gets the value of the accountName property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAccountName() { + return accountName; + } + + /** + * Sets the value of the accountName property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAccountName(String value) { + this.accountName = value; + } + + /** + * Gets the value of the usergroups property. + * + * @return + * possible object is + * {@link UserGroupArray } + * + */ + public UserGroupArray getUsergroups() { + return usergroups; + } + + /** + * Sets the value of the usergroups property. + * + * @param value + * allowed object is + * {@link UserGroupArray } + * + */ + public void setUsergroups(UserGroupArray value) { + this.usergroups = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2Array.java new file mode 100644 index 0000000..f7204f6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2Array.java @@ -0,0 +1,74 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import java.util.ArrayList; +import java.util.List; +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for UserV2Array complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="UserV2Array">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="item" type="{http://www.webservices.nl/soap/}UserV2" maxOccurs="unbounded" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "UserV2Array", propOrder = { + "item" +}) +public class UserV2Array { + + protected List item; + + /** + * Gets the value of the item property. + * + *

+ * This accessor method returns a reference to the live list, + * not a snapshot. Therefore any modification you make to the + * returned list will be present inside the JAXB object. + * This is why there is not a set method for the item property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getItem().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link UserV2 } + * + * + */ + public List getItem() { + if (item == null) { + item = new ArrayList(); + } + return this.item; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2PagedResult.java new file mode 100644 index 0000000..13459de --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2PagedResult.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for UserV2PagedResult complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="UserV2PagedResult">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
+ *         <element name="results" type="{http://www.webservices.nl/soap/}UserV2Array"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "UserV2PagedResult", propOrder = { + +}) +public class UserV2PagedResult { + + @XmlElement(required = true) + protected ResultInfo paging; + @XmlElement(required = true) + protected UserV2Array results; + + /** + * Gets the value of the paging property. + * + * @return + * possible object is + * {@link ResultInfo } + * + */ + public ResultInfo getPaging() { + return paging; + } + + /** + * Sets the value of the paging property. + * + * @param value + * allowed object is + * {@link ResultInfo } + * + */ + public void setPaging(ResultInfo value) { + this.paging = value; + } + + /** + * Gets the value of the results property. + * + * @return + * possible object is + * {@link UserV2Array } + * + */ + public UserV2Array getResults() { + return results; + } + + /** + * Sets the value of the results property. + * + * @param value + * allowed object is + * {@link UserV2Array } + * + */ + public void setResults(UserV2Array value) { + this.results = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewBalanceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewBalanceRequestType.java new file mode 100644 index 0000000..ebe418b --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewBalanceRequestType.java @@ -0,0 +1,59 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userViewBalanceRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userViewBalanceRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userViewBalanceRequestType", propOrder = { + +}) +public class UserViewBalanceRequestType { + + protected int userid; + + /** + * Gets the value of the userid property. + * + */ + public int getUserid() { + return userid; + } + + /** + * Sets the value of the userid property. + * + */ + public void setUserid(int value) { + this.userid = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewBalanceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewBalanceResponseType.java new file mode 100644 index 0000000..e82bd8d --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewBalanceResponseType.java @@ -0,0 +1,59 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userViewBalanceResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userViewBalanceResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="balance" type="{http://www.w3.org/2001/XMLSchema}float"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userViewBalanceResponseType", propOrder = { + +}) +public class UserViewBalanceResponseType { + + protected float balance; + + /** + * Gets the value of the balance property. + * + */ + public float getBalance() { + return balance; + } + + /** + * Sets the value of the balance property. + * + */ + public void setBalance(float value) { + this.balance = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewHostRestrictionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewHostRestrictionsRequestType.java new file mode 100644 index 0000000..48e9453 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewHostRestrictionsRequestType.java @@ -0,0 +1,59 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userViewHostRestrictionsRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userViewHostRestrictionsRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userViewHostRestrictionsRequestType", propOrder = { + +}) +public class UserViewHostRestrictionsRequestType { + + protected int userid; + + /** + * Gets the value of the userid property. + * + */ + public int getUserid() { + return userid; + } + + /** + * Sets the value of the userid property. + * + */ + public void setUserid(int value) { + this.userid = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewHostRestrictionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewHostRestrictionsResponseType.java new file mode 100644 index 0000000..7ea3cbe --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewHostRestrictionsResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userViewHostRestrictionsResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userViewHostRestrictionsResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userViewHostRestrictionsResponseType", propOrder = { + +}) +public class UserViewHostRestrictionsResponseType { + + @XmlElement(required = true) + protected String out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setOut(String value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewV2RequestType.java new file mode 100644 index 0000000..5df3621 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewV2RequestType.java @@ -0,0 +1,59 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userViewV2RequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userViewV2RequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userViewV2RequestType", propOrder = { + +}) +public class UserViewV2RequestType { + + protected int userid; + + /** + * Gets the value of the userid property. + * + */ + public int getUserid() { + return userid; + } + + /** + * Sets the value of the userid property. + * + */ + public void setUserid(int value) { + this.userid = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewV2ResponseType.java new file mode 100644 index 0000000..3134741 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewV2ResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for userViewV2ResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="userViewV2ResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}UserV2"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "userViewV2ResponseType", propOrder = { + +}) +public class UserViewV2ResponseType { + + @XmlElement(required = true) + protected UserV2 out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link UserV2 } + * + */ + public UserV2 getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link UserV2 } + * + */ + public void setOut(UserV2 value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatProxyViesCheckVatResponse.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatProxyViesCheckVatResponse.java new file mode 100644 index 0000000..7d8bee6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatProxyViesCheckVatResponse.java @@ -0,0 +1,196 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlSchemaType; +import javax.xml.bind.annotation.XmlType; +import javax.xml.datatype.XMLGregorianCalendar; + + +/** + *

Java class for VatProxyViesCheckVatResponse complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="VatProxyViesCheckVatResponse">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="request_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
+ *         <element name="valid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VatProxyViesCheckVatResponse", propOrder = { + +}) +public class VatProxyViesCheckVatResponse { + + @XmlElement(name = "country_code", required = true) + protected String countryCode; + @XmlElement(name = "vat_number", required = true) + protected String vatNumber; + @XmlElement(name = "request_date") + @XmlSchemaType(name = "date") + protected XMLGregorianCalendar requestDate; + protected boolean valid; + protected String name; + protected String address; + + /** + * Gets the value of the countryCode property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getCountryCode() { + return countryCode; + } + + /** + * Sets the value of the countryCode property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setCountryCode(String value) { + this.countryCode = value; + } + + /** + * Gets the value of the vatNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVatNumber() { + return vatNumber; + } + + /** + * Sets the value of the vatNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVatNumber(String value) { + this.vatNumber = value; + } + + /** + * Gets the value of the requestDate property. + * + * @return + * possible object is + * {@link XMLGregorianCalendar } + * + */ + public XMLGregorianCalendar getRequestDate() { + return requestDate; + } + + /** + * Sets the value of the requestDate property. + * + * @param value + * allowed object is + * {@link XMLGregorianCalendar } + * + */ + public void setRequestDate(XMLGregorianCalendar value) { + this.requestDate = value; + } + + /** + * Gets the value of the valid property. + * + */ + public boolean isValid() { + return valid; + } + + /** + * Sets the value of the valid property. + * + */ + public void setValid(boolean value) { + this.valid = value; + } + + /** + * Gets the value of the name property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the address property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getAddress() { + return address; + } + + /** + * Sets the value of the address property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAddress(String value) { + this.address = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidateRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidateRequestType.java new file mode 100644 index 0000000..bcd7a1a --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidateRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for vatValidateRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="vatValidateRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "vatValidateRequestType", propOrder = { + +}) +public class VatValidateRequestType { + + @XmlElement(name = "vat_number", required = true) + protected String vatNumber; + + /** + * Gets the value of the vatNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVatNumber() { + return vatNumber; + } + + /** + * Sets the value of the vatNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVatNumber(String value) { + this.vatNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidateResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidateResponseType.java new file mode 100644 index 0000000..e355724 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidateResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for vatValidateResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="vatValidateResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}VatValidation"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "vatValidateResponseType", propOrder = { + +}) +public class VatValidateResponseType { + + @XmlElement(required = true) + protected VatValidation out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link VatValidation } + * + */ + public VatValidation getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link VatValidation } + * + */ + public void setOut(VatValidation value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidation.java new file mode 100644 index 0000000..c14accc --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidation.java @@ -0,0 +1,87 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for VatValidation complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="VatValidation">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="valid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VatValidation", propOrder = { + +}) +public class VatValidation { + + @XmlElement(name = "vat_number", required = true) + protected String vatNumber; + protected boolean valid; + + /** + * Gets the value of the vatNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVatNumber() { + return vatNumber; + } + + /** + * Sets the value of the vatNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVatNumber(String value) { + this.vatNumber = value; + } + + /** + * Gets the value of the valid property. + * + */ + public boolean isValid() { + return valid; + } + + /** + * Sets the value of the valid property. + * + */ + public void setValid(boolean value) { + this.valid = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatViesProxyCheckVatRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatViesProxyCheckVatRequestType.java new file mode 100644 index 0000000..f82d541 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatViesProxyCheckVatRequestType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for vatViesProxyCheckVatRequestType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="vatViesProxyCheckVatRequestType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "vatViesProxyCheckVatRequestType", propOrder = { + +}) +public class VatViesProxyCheckVatRequestType { + + @XmlElement(name = "vat_number", required = true) + protected String vatNumber; + + /** + * Gets the value of the vatNumber property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getVatNumber() { + return vatNumber; + } + + /** + * Sets the value of the vatNumber property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setVatNumber(String value) { + this.vatNumber = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatViesProxyCheckVatResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatViesProxyCheckVatResponseType.java new file mode 100644 index 0000000..3e04a6c --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatViesProxyCheckVatResponseType.java @@ -0,0 +1,69 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for vatViesProxyCheckVatResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="vatViesProxyCheckVatResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="out" type="{http://www.webservices.nl/soap/}VatProxyViesCheckVatResponse"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "vatViesProxyCheckVatResponseType", propOrder = { + +}) +public class VatViesProxyCheckVatResponseType { + + @XmlElement(required = true) + protected VatProxyViesCheckVatResponse out; + + /** + * Gets the value of the out property. + * + * @return + * possible object is + * {@link VatProxyViesCheckVatResponse } + * + */ + public VatProxyViesCheckVatResponse getOut() { + return out; + } + + /** + * Sets the value of the out property. + * + * @param value + * allowed object is + * {@link VatProxyViesCheckVatResponse } + * + */ + public void setOut(VatProxyViesCheckVatResponse value) { + this.out = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VerenigingVanEigenaren.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VerenigingVanEigenaren.java new file mode 100644 index 0000000..2dd8181 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VerenigingVanEigenaren.java @@ -0,0 +1,96 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + + +package org.suggs.companydatafinderlib.companyinfo.wsdl; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for VerenigingVanEigenaren complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="VerenigingVanEigenaren">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <all>
+ *         <element name="naam" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="bestuurder_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *       </all>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "VerenigingVanEigenaren", propOrder = { + +}) +public class VerenigingVanEigenaren { + + @XmlElement(required = true) + protected String naam; + @XmlElement(name = "bestuurder_id") + protected String bestuurderId; + + /** + * Gets the value of the naam property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getNaam() { + return naam; + } + + /** + * Sets the value of the naam property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setNaam(String value) { + this.naam = value; + } + + /** + * Gets the value of the bestuurderId property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBestuurderId() { + return bestuurderId; + } + + /** + * Sets the value of the bestuurderId property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBestuurderId(String value) { + this.bestuurderId = value; + } + +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/package-info.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/package-info.java new file mode 100644 index 0000000..73b08e7 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/package-info.java @@ -0,0 +1,9 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2020.01.02 at 09:16:36 AM GMT +// + +@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.webservices.nl/soap/", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) +package org.suggs.companydatafinderlib.companyinfo.wsdl; diff --git a/settings.gradle b/settings.gradle index 0d26a84..a504e64 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,2 +1,2 @@ include 'company-data-finder-lib', -'company-data-finder-app', 'company-data-finder-lib:main', 'company-data-finder-lib:test' +'company-data-finder-app' From 74d639b878527e4f39f3375f5f2996cb06f17a50 Mon Sep 17 00:00:00 2001 From: harrydb Date: Tue, 7 Jan 2020 12:43:14 +0000 Subject: [PATCH 05/10] KVK integration --- .../companyinfo/proxy/Config.java | 26 ++++++ .../companyinfo/proxy/SOAPConnector.java | 10 ++ .../AreaCodePostcodeLookupResponseType.java | 2 +- .../companydatafinderlib/kvk/KVKProxy.kt | 38 ++++++++ .../suggs/companydatafinderlib/kvk/README.md | 4 + .../kvk/domain/KVKCompanyProfile.kt | 38 ++++++++ .../kvk/interceptors/KVKAuthInterceptor.kt | 16 ++++ .../RequestResponseLoggingInterceptor.kt | 53 +++++++++++ .../suggs/companydatafinderlib/kvk/KVKTest.kt | 34 +++++++ .../kvk/domain/KVKCompanyDataParseTest.kt | 91 +++++++++++++++++++ .../src/test/resources/application.yml | 4 +- 11 files changed, 314 insertions(+), 2 deletions(-) create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/proxy/Config.java create mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/proxy/SOAPConnector.java create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/KVKProxy.kt create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/README.md create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/domain/KVKCompanyProfile.kt create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/interceptors/KVKAuthInterceptor.kt create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/interceptors/RequestResponseLoggingInterceptor.kt create mode 100644 company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/kvk/KVKTest.kt create mode 100644 company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/kvk/domain/KVKCompanyDataParseTest.kt diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/proxy/Config.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/proxy/Config.java new file mode 100644 index 0000000..1e70093 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/proxy/Config.java @@ -0,0 +1,26 @@ +package org.suggs.companydatafinderlib.companyinfo.proxy; + +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.oxm.jaxb.Jaxb2Marshaller; + +@Configuration +public class Config { + @Bean + public Jaxb2Marshaller marshaller() { + Jaxb2Marshaller marshaller = new Jaxb2Marshaller(); + // this is the package name specified in the specified in + // pom.xml + marshaller.setContextPath("org.suggs.companydatafinderlib.companyinfo.wsdl"); + return marshaller; + } + + @Bean + public SOAPConnector soapConnector(Jaxb2Marshaller marshaller) { + SOAPConnector client = new SOAPConnector(); + client.setDefaultUri("http://www.webservices.nl/soap/"); + client.setMarshaller(marshaller); + client.setUnmarshaller(marshaller); + return client; + } +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/proxy/SOAPConnector.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/proxy/SOAPConnector.java new file mode 100644 index 0000000..43242f6 --- /dev/null +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/proxy/SOAPConnector.java @@ -0,0 +1,10 @@ +package org.suggs.companydatafinderlib.companyinfo.proxy; + +import org.springframework.ws.client.core.support.WebServiceGatewaySupport; + +public class SOAPConnector extends WebServiceGatewaySupport { + + public Object callWebService(String url, Object request){ + return getWebServiceTemplate().marshalSendAndReceive(url, request); + } +} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupResponseType.java index 637095c..10667d9 100644 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupResponseType.java +++ b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupResponseType.java @@ -37,7 +37,7 @@ @XmlType(name = "areaCodePostcodeLookupResponseType", propOrder = { }) -public class AreaCodePostcodeLookupResponseType { +public class AreaCodePostcodeLookupResponseType { @XmlElement(required = true) protected AreaCodeArray out; diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/KVKProxy.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/KVKProxy.kt new file mode 100644 index 0000000..40efe83 --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/KVKProxy.kt @@ -0,0 +1,38 @@ +package org.suggs.companydatafinderlib.kvk + +import org.slf4j.LoggerFactory +import org.springframework.http.client.BufferingClientHttpRequestFactory +import org.springframework.http.client.SimpleClientHttpRequestFactory +import org.springframework.web.client.RestTemplate +import org.suggs.companydatafinderlib.kvk.interceptors.RequestResponseLoggingInterceptor +import org.suggs.companydatafinderlib.kvk.domain.KVKCompanyProfile +import org.suggs.companydatafinderlib.kvk.interceptors.KVKAuthInterceptor + +class KVKProxy(private val authUsername: String, private val authPassword: String) { + + private val restTemplate = createRestTemplateWithInterceptorsForAuthentication() + private val log = LoggerFactory.getLogger(this::class.java) + + private fun createRestTemplateWithInterceptorsForAuthentication(): RestTemplate { + val factory = BufferingClientHttpRequestFactory(SimpleClientHttpRequestFactory()) + val template = RestTemplate(factory) + template.interceptors = listOf( + RequestResponseLoggingInterceptor(), + KVKAuthInterceptor(authUsername, authPassword)) + return template + } + + /** + * Retrieves company profile data for a given kvk company id + */ + fun getCompanyDataFor(companyId: String): KVKCompanyProfile { + log.debug("Retrieving company profile data for company id $companyId") + val url = "https://api.kvk.nl:443/api/v2/testprofile/companies?kvkNumber=$companyId" + return when (val profile = restTemplate.getForObject(url, KVKCompanyProfile::class.java)) { + null -> throw IllegalStateException("Could not create company profile for company number $companyId") + else -> profile + } + } + + +} \ No newline at end of file diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/README.md b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/README.md new file mode 100644 index 0000000..bdcb067 --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/README.md @@ -0,0 +1,4 @@ +# KVK API +Use this API for accessing data and documents from KVK (Dutch registered companies). +See the tests for details on how to use the api and simplified api access. +API access is directly to KVK. Details for connection etc can be found at the [KVK API](https://developers.kvk.nl/documentation/search-v2-test) pages. diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/domain/KVKCompanyProfile.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/domain/KVKCompanyProfile.kt new file mode 100644 index 0000000..18166bf --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/domain/KVKCompanyProfile.kt @@ -0,0 +1,38 @@ +package org.suggs.companydatafinderlib.kvk.domain + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties +import com.fasterxml.jackson.annotation.JsonInclude +import com.fasterxml.jackson.annotation.JsonProperty +import java.util.* + +@JsonIgnoreProperties(ignoreUnknown = true) +@JsonInclude(JsonInclude.Include.NON_EMPTY) +data class KVKCompanyProfile(@JsonProperty("data") val kvkData: KVKData ) + + +@JsonIgnoreProperties(ignoreUnknown = true) +@JsonInclude(JsonInclude.Include.NON_EMPTY) +data class KVKData(@JsonProperty("items") val kvkDataItems: List) + + +@JsonIgnoreProperties(ignoreUnknown = true) +@JsonInclude(JsonInclude.Include.NON_EMPTY) +data class KVKDataItem(@JsonProperty("kvkNumber") val kvkNumber: String, + @JsonProperty("tradeNames") val kvkTradeNames: KVKTradeNames, + @JsonProperty("addresses") val kvkAddresses: List, + @JsonProperty("foundationDate") val kvkFoundationDate: Date) + + +@JsonIgnoreProperties(ignoreUnknown = true) +@JsonInclude(JsonInclude.Include.NON_EMPTY) +data class KVKTradeNames(@JsonProperty("businessName") val kvkBusinessName: String, + @JsonProperty("currentTradeNames") val kvkTradeNames: List) + + +@JsonIgnoreProperties(ignoreUnknown = true) +@JsonInclude(JsonInclude.Include.NON_EMPTY) +data class KVKAddress(@JsonProperty("street") val kvkStreetAddress: String, + @JsonProperty("houseNumber") val kvkHouseNumber: String, + @JsonProperty("postalCode") val kvkPostCode: String, + @JsonProperty("city") val kvkCity: String, + @JsonProperty("country") val kvkCountry: String) \ No newline at end of file diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/interceptors/KVKAuthInterceptor.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/interceptors/KVKAuthInterceptor.kt new file mode 100644 index 0000000..dd40827 --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/interceptors/KVKAuthInterceptor.kt @@ -0,0 +1,16 @@ +package org.suggs.companydatafinderlib.kvk.interceptors + +import org.springframework.http.HttpRequest +import org.springframework.http.client.ClientHttpRequestExecution +import org.springframework.http.client.ClientHttpRequestInterceptor +import org.springframework.http.client.ClientHttpResponse +import java.util.* + +class KVKAuthInterceptor(private val username: String, private val password: String) : ClientHttpRequestInterceptor { + override fun intercept(request: HttpRequest, body: ByteArray, execution: ClientHttpRequestExecution): ClientHttpResponse { + val auth = "$username:$password" + val encodedAuth = Base64.getEncoder().encodeToString(auth.toByteArray()) + request.headers.add("Authorization", "Basic $encodedAuth") + return execution.execute(request, body) + } +} \ No newline at end of file diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/interceptors/RequestResponseLoggingInterceptor.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/interceptors/RequestResponseLoggingInterceptor.kt new file mode 100644 index 0000000..86cd14b --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/interceptors/RequestResponseLoggingInterceptor.kt @@ -0,0 +1,53 @@ +package org.suggs.companydatafinderlib.kvk.interceptors + +import org.slf4j.LoggerFactory +import org.springframework.http.HttpRequest +import org.springframework.http.MediaType +import org.springframework.http.client.ClientHttpRequestExecution +import org.springframework.http.client.ClientHttpRequestInterceptor +import org.springframework.http.client.ClientHttpResponse +import org.springframework.util.StreamUtils +import java.io.IOException +import java.nio.charset.Charset + +class RequestResponseLoggingInterceptor : ClientHttpRequestInterceptor { + + private val log = LoggerFactory.getLogger(this::class.java) + + override fun intercept(request: HttpRequest, body: ByteArray, execution: ClientHttpRequestExecution): ClientHttpResponse { + logRequest(request, body) + val response = execution.execute(request, body) + logResponse(response) + return response + } + + @Throws(IOException::class) + private fun logRequest(request: HttpRequest, body: ByteArray) { + if (log.isDebugEnabled) { + log.debug("===========================request begin================================================") + log.debug("URI : ${request.uri}") + log.debug("Method : ${request.method}") + log.debug("Headers : ${request.headers}") + log.debug("Request body: ${String(body, Charset.forName("UTF-8"))}") + log.debug("==========================request end================================================") + } + } + + @Throws(IOException::class) + private fun logResponse(response: ClientHttpResponse) { + if (log.isDebugEnabled) { + log.debug("============================response begin==========================================") + log.debug("Status code : ${response.statusCode}") + log.debug("Status text : ${response.statusText}") + log.debug("Headers : ${response.headers}") + if (response.headers.contentType!!.compareTo(MediaType.APPLICATION_JSON) == 0) { + log.debug("Response body: ${StreamUtils.copyToString(response.body, Charset.defaultCharset())}") + } else { + //log.debug("Response body: {huge blob of data}") + log.debug("Response body: ${StreamUtils.copyToString(response.body, Charset.defaultCharset())}") + } + log.debug("=======================response end=================================================") + } + } + +} \ No newline at end of file diff --git a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/kvk/KVKTest.kt b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/kvk/KVKTest.kt new file mode 100644 index 0000000..dfbf0db --- /dev/null +++ b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/kvk/KVKTest.kt @@ -0,0 +1,34 @@ +package org.suggs.companydatafinderlib.kvk + +import org.assertj.core.api.Assertions.assertThat +import org.junit.jupiter.api.DisplayName +import org.junit.jupiter.api.Test +import org.slf4j.LoggerFactory +import org.yaml.snakeyaml.Yaml + +@DisplayName("KVK Proxy allows us to") +class KVKTest { + + private val log = LoggerFactory.getLogger(this::class.java) + private val config = loadConfig() + private var kVK = KVKProxy(config.get("user"), config.get("pass")) + + @Test fun `retrieve data using kvk ID`() { + val companyData = kVK.getCompanyDataFor("69599084") + log.debug("KVK Data: $companyData") + assertThat(companyData).isNotNull + } + + private fun loadConfig(): AppConfig { + return AppConfig(Yaml().load(this.javaClass.classLoader.getResourceAsStream("application.yml"))) + } +} + +data class AppConfig(val configData: Map) { + fun get(key: String): String { + return when (val data = configData[key]) { + null -> throw IllegalStateException("Could not locate configuration data for key: $key") + else -> data + } + } +} \ No newline at end of file diff --git a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/kvk/domain/KVKCompanyDataParseTest.kt b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/kvk/domain/KVKCompanyDataParseTest.kt new file mode 100644 index 0000000..03a474f --- /dev/null +++ b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/kvk/domain/KVKCompanyDataParseTest.kt @@ -0,0 +1,91 @@ +package org.suggs.companydatafinderlib.kvk.domain + +import com.fasterxml.jackson.databind.ObjectMapper +import com.fasterxml.jackson.module.kotlin.KotlinModule +import com.fasterxml.jackson.module.kotlin.readValue +import org.assertj.core.api.Assertions.assertThat +import org.junit.jupiter.api.Assertions.assertAll +import org.junit.jupiter.api.DisplayName +import org.junit.jupiter.api.Test +import org.junit.jupiter.api.function.Executable +import org.slf4j.LoggerFactory + +@DisplayName("KVK Response contains company data directly from KVK") +class KVKCompanyDataParseTest { + + private val JSON = """{ + |"apiVersion": "2.0", + |"meta":{}, + |"data":{ + |"itemsPerPage": 1, + |"startPage": 1, + |"totalItems": 2, + |"nextLink": "https://api.kvk.nl/api/v2/profile/companies?kvkNumber=69599084&startPage=2", + |"items": [{ + |"kvkNumber": "69599084", + |"branchNumber": "000038509504", + |"tradeNames":{ + |"businessName": "Test EMZ Dagobert", + |"currentTradeNames": [ "Test EMZ Dagobert", + |"Tweede handelsnaam 1MZ", + |"Derde handelsnaam 1MZ", + |"Vierde handelsnaam 1MZ"] + |}, + |"legalForm": "Eenmanszaak", + |"businessActivities": [{ + |"sbiCode": "1011", + |"sbiCodeDescription": "Slachterijen (geen pluimvee-)", + |"isMainSbi": true},{ + |"sbiCode": "1012", + |"sbiCodeDescription": "Pluimveeslachterijen", + |"isMainSbi": false},{ + |"sbiCode": "1013", + |"sbiCodeDescription": "Vleesverwerking (niet tot maaltijden)", + |"isMainSbi": false}], + |"hasEntryInBusinessRegister": true, + |"hasCommercialActivities": true, + |"hasNonMailingIndication": true, + |"isLegalPerson": false, + |"isBranch": true, + |"isMainBranch": true, + |"employees": 1, + |"foundationDate": "20170108", + |"registrationDate": "20170710", + |"addresses": [{ + |"type": "vestigingsadres", + |"bagId": "0363010000951555", + |"street": "Abebe Bikilalaan", + |"houseNumber": "17", + |"houseNumberAddition": "", + |"postalCode": "1034WL", + |"city": "Amsterdam", + |"country": "Nederland", + |"gpsLatitude": 52.403176952488096, + |"gpsLongitude": 4.917604057883805, + |"rijksdriehoekX": 123042, + |"rijksdriehoekY": 490697, + |"rijksdriehoekZ": 0 + |} + |] + |} + |] + |} +|} +""".trimMargin() + + private val mapper = ObjectMapper().registerModule(KotlinModule()) + private val log = LoggerFactory.getLogger(this::class.java) + + @Test + fun `can create kvk response from JSON`() { + val response = mapper.readValue(JSON) + log.debug(response.toString()) + assertAll( + Executable { assertThat(response.kvkData.kvkDataItems[0].kvkTradeNames.kvkBusinessName).isNotNull() }, + Executable { assertThat(response.kvkData.kvkDataItems[0].kvkNumber).isEqualTo("69599084") }, + Executable { assertThat(response.kvkData.kvkDataItems[0].kvkFoundationDate).isNotNull() }, + Executable { assertThat(response.kvkData.kvkDataItems[0].kvkAddresses[0].kvkStreetAddress).isNotNull() } + + ) + } +} \ No newline at end of file diff --git a/company-data-finder-lib/src/test/resources/application.yml b/company-data-finder-lib/src/test/resources/application.yml index d39b023..ce697af 100644 --- a/company-data-finder-lib/src/test/resources/application.yml +++ b/company-data-finder-lib/src/test/resources/application.yml @@ -1 +1,3 @@ -auth: "_JMZGS85jZjkf5sAQsM8ESbFdzo9sEyUqnnQIXmM" \ No newline at end of file +auth: "_JMZGS85jZjkf5sAQsM8ESbFdzo9sEyUqnnQIXmM" +user: "testourapis" +pass: "testourapis" \ No newline at end of file From d8f23a1f45862b214e7b94d4d5cb0e88e806c885 Mon Sep 17 00:00:00 2001 From: harrydb Date: Tue, 7 Jan 2020 15:49:47 +0000 Subject: [PATCH 06/10] Slight modification to Gradle config to work with JDK11 --- build.gradle | 8 ++++---- company-data-finder-lib/build.gradle | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 81da840..6834fb2 100644 --- a/build.gradle +++ b/build.gradle @@ -53,8 +53,8 @@ subprojects{ } ext { - sourceCompatibility = 1.8 - targetCompatibility = 1.8 + sourceCompatibility = 11 + targetCompatibility = 11 } test { @@ -65,13 +65,13 @@ subprojects{ compileKotlin { kotlinOptions { freeCompilerArgs = ["-Xjsr305=strict"] - jvmTarget = "1.8" + jvmTarget = "11" } } compileTestKotlin { kotlinOptions { freeCompilerArgs = ["-Xjsr305=strict"] - jvmTarget = "1.8" + jvmTarget = "11" } } } diff --git a/company-data-finder-lib/build.gradle b/company-data-finder-lib/build.gradle index 96ed3e4..7a9ee3e 100644 --- a/company-data-finder-lib/build.gradle +++ b/company-data-finder-lib/build.gradle @@ -27,7 +27,7 @@ task genJaxb { produces(dir: sourcesDir, includes: "**/*.java") } - javac(destdir: classesDir, source: 1.8, target: 1.8, debug: true, + javac(destdir: classesDir, source: 11, target: 11, debug: true, debugLevel: "lines,vars,source", classpath: configurations.jaxb.asPath) { src(path: sourcesDir) From 44edd3177149fb8791ed8e40268ba62bdd9529ee Mon Sep 17 00:00:00 2001 From: harrydb Date: Thu, 9 Jan 2020 08:16:49 +0000 Subject: [PATCH 07/10] Added CRO (Irish Company Register) --- .../companydatafinderlib/cro/CROProxy.kt | 38 +++++++++++++ .../suggs/companydatafinderlib/cro/README.md | 4 ++ .../cro/domain/CROCompanyProfile.kt | 17 ++++++ .../cro/interceptors/CROAuthInterceptor.kt | 16 ++++++ .../RequestResponseLoggingInterceptor.kt | 53 +++++++++++++++++++ .../companydatafinderlib/kvk/KVKProxy.kt | 2 +- .../kvk/domain/KVKCompanyProfile.kt | 2 +- .../suggs/companydatafinderlib/cro/CROTest.kt | 34 ++++++++++++ .../cro/domain/CROCompanyDataParseTest.kt | 49 +++++++++++++++++ .../suggs/companydatafinderlib/kvk/KVKTest.kt | 1 + .../src/test/resources/application.yml | 7 ++- 11 files changed, 220 insertions(+), 3 deletions(-) create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/CROProxy.kt create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/README.md create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/domain/CROCompanyProfile.kt create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/interceptors/CROAuthInterceptor.kt create mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/interceptors/RequestResponseLoggingInterceptor.kt create mode 100644 company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/cro/CROTest.kt create mode 100644 company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/cro/domain/CROCompanyDataParseTest.kt diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/CROProxy.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/CROProxy.kt new file mode 100644 index 0000000..e3d7393 --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/CROProxy.kt @@ -0,0 +1,38 @@ +package org.suggs.companydatafinderlib.cro + +import org.slf4j.LoggerFactory +import org.springframework.http.client.BufferingClientHttpRequestFactory +import org.springframework.http.client.SimpleClientHttpRequestFactory +import org.springframework.web.client.RestTemplate +import org.suggs.companydatafinderlib.cro.interceptors.RequestResponseLoggingInterceptor +import org.suggs.companydatafinderlib.cro.domain.CROCompanyProfile +import org.suggs.companydatafinderlib.cro.interceptors.CROAuthInterceptor + +class CROProxy(private val authUsername: String) { + + private val restTemplate = createRestTemplateWithInterceptorsForAuthentication() + private val log = LoggerFactory.getLogger(this::class.java) + + private fun createRestTemplateWithInterceptorsForAuthentication(): RestTemplate { + val factory = BufferingClientHttpRequestFactory(SimpleClientHttpRequestFactory()) + val template = RestTemplate(factory) + template.interceptors = listOf( + CROAuthInterceptor(authUsername), + RequestResponseLoggingInterceptor()) + return template + } + + /** + * Retrieves company profile data for a given cro company id + */ + fun getCompanyDataFor(companyId: String): List { + log.debug("Retrieving company profile data for company id $companyId") + val url = "https://services.cro.ie/cws/companies?company_num=$companyId" + return when (val profile = restTemplate.getForEntity(url, Array::class.java).body) { + null -> throw IllegalStateException("Could not create company profile for company number $companyId") + else -> profile.asList() + } + } + + +} \ No newline at end of file diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/README.md b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/README.md new file mode 100644 index 0000000..fb708f5 --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/README.md @@ -0,0 +1,4 @@ +# CRO API +Use this API for accessing data and documents from CRO (Irish registrar of companies). +See the tests for details on how to use the api and simplified api access. +API access is directly to CRO. Details for connection etc can be found at the [CRO API](https://services.cro.ie/companies.aspx) pages. diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/domain/CROCompanyProfile.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/domain/CROCompanyProfile.kt new file mode 100644 index 0000000..4e429bb --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/domain/CROCompanyProfile.kt @@ -0,0 +1,17 @@ +package org.suggs.companydatafinderlib.cro.domain + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties +import com.fasterxml.jackson.annotation.JsonInclude +import com.fasterxml.jackson.annotation.JsonProperty +import java.util.* + + +@JsonIgnoreProperties(ignoreUnknown = true) +@JsonInclude(JsonInclude.Include.NON_EMPTY) +data class CROCompanyProfile(@JsonProperty("company_num") val croNumber: String, + @JsonProperty("company_name") val croBusinessName: String, + @JsonProperty("company_addr_1") val croAddress1: String, + @JsonProperty("company_addr_2") val croAddress2: String, + @JsonProperty("company_addr_3") val croAddress3: String, + @JsonProperty("company_addr_4") val croAddress4: String, + @JsonProperty("company_reg_date") val croRegisteredDate: Date) diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/interceptors/CROAuthInterceptor.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/interceptors/CROAuthInterceptor.kt new file mode 100644 index 0000000..c0aa1e7 --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/interceptors/CROAuthInterceptor.kt @@ -0,0 +1,16 @@ +package org.suggs.companydatafinderlib.cro.interceptors + +import org.springframework.http.HttpRequest +import org.springframework.http.client.ClientHttpRequestExecution +import org.springframework.http.client.ClientHttpRequestInterceptor +import org.springframework.http.client.ClientHttpResponse +import java.util.* + +class CROAuthInterceptor(private val username: String) : ClientHttpRequestInterceptor { + override fun intercept(request: HttpRequest, body: ByteArray, execution: ClientHttpRequestExecution): ClientHttpResponse { + val auth = "$username" + val encodedAuth = Base64.getEncoder().encodeToString(auth.toByteArray()) + request.headers.add("Authorization", "Basic $encodedAuth") + return execution.execute(request, body) + } +} \ No newline at end of file diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/interceptors/RequestResponseLoggingInterceptor.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/interceptors/RequestResponseLoggingInterceptor.kt new file mode 100644 index 0000000..89835f7 --- /dev/null +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/cro/interceptors/RequestResponseLoggingInterceptor.kt @@ -0,0 +1,53 @@ +package org.suggs.companydatafinderlib.cro.interceptors + +import org.slf4j.LoggerFactory +import org.springframework.http.HttpRequest +import org.springframework.http.MediaType +import org.springframework.http.client.ClientHttpRequestExecution +import org.springframework.http.client.ClientHttpRequestInterceptor +import org.springframework.http.client.ClientHttpResponse +import org.springframework.util.StreamUtils +import java.io.IOException +import java.nio.charset.Charset + +class RequestResponseLoggingInterceptor : ClientHttpRequestInterceptor { + + private val log = LoggerFactory.getLogger(this::class.java) + + override fun intercept(request: HttpRequest, body: ByteArray, execution: ClientHttpRequestExecution): ClientHttpResponse { + logRequest(request, body) + val response = execution.execute(request, body) + logResponse(response) + return response + } + + @Throws(IOException::class) + private fun logRequest(request: HttpRequest, body: ByteArray) { + if (log.isDebugEnabled) { + log.debug("===========================request begin================================================") + log.debug("URI : ${request.uri}") + log.debug("Method : ${request.method}") + log.debug("Headers : ${request.headers}") + log.debug("Request body: ${String(body, Charset.forName("UTF-8"))}") + log.debug("==========================request end================================================") + } + } + + @Throws(IOException::class) + private fun logResponse(response: ClientHttpResponse) { + if (log.isDebugEnabled) { + log.debug("============================response begin==========================================") + log.debug("Status code : ${response.statusCode}") + log.debug("Status text : ${response.statusText}") + log.debug("Headers : ${response.headers}") + if (response.headers.contentType!!.compareTo(MediaType.APPLICATION_JSON) == 0) { + log.debug("Response body: ${StreamUtils.copyToString(response.body, Charset.defaultCharset())}") + } else { + //log.debug("Response body: {huge blob of data}") + log.debug("Response body: ${StreamUtils.copyToString(response.body, Charset.defaultCharset())}") + } + log.debug("=======================response end=================================================") + } + } + +} \ No newline at end of file diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/KVKProxy.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/KVKProxy.kt index 40efe83..10ca6fb 100644 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/KVKProxy.kt +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/KVKProxy.kt @@ -4,7 +4,7 @@ import org.slf4j.LoggerFactory import org.springframework.http.client.BufferingClientHttpRequestFactory import org.springframework.http.client.SimpleClientHttpRequestFactory import org.springframework.web.client.RestTemplate -import org.suggs.companydatafinderlib.kvk.interceptors.RequestResponseLoggingInterceptor +import org.suggs.companydatafinderlib.cro.interceptors.RequestResponseLoggingInterceptor import org.suggs.companydatafinderlib.kvk.domain.KVKCompanyProfile import org.suggs.companydatafinderlib.kvk.interceptors.KVKAuthInterceptor diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/domain/KVKCompanyProfile.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/domain/KVKCompanyProfile.kt index 18166bf..7952851 100644 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/domain/KVKCompanyProfile.kt +++ b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/kvk/domain/KVKCompanyProfile.kt @@ -7,7 +7,7 @@ import java.util.* @JsonIgnoreProperties(ignoreUnknown = true) @JsonInclude(JsonInclude.Include.NON_EMPTY) -data class KVKCompanyProfile(@JsonProperty("data") val kvkData: KVKData ) +data class KVKCompanyProfile(@JsonProperty("data") val kvkData: KVKData) @JsonIgnoreProperties(ignoreUnknown = true) diff --git a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/cro/CROTest.kt b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/cro/CROTest.kt new file mode 100644 index 0000000..3b71f44 --- /dev/null +++ b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/cro/CROTest.kt @@ -0,0 +1,34 @@ +package org.suggs.companydatafinderlib.cro + +import org.assertj.core.api.Assertions.assertThat +import org.junit.jupiter.api.DisplayName +import org.junit.jupiter.api.Test +import org.slf4j.LoggerFactory +import org.yaml.snakeyaml.Yaml + +@DisplayName("CRO Proxy allows us to") +class CROTest { + + private val log = LoggerFactory.getLogger(this::class.java) + private val config = loadConfig() + private var cRO = CROProxy(config.get("cro_key")) + + @Test fun `retrieve data using cro ID`() { + val companyData = cRO.getCompanyDataFor("83740") + log.debug("CRO Data: $companyData") + assertThat(companyData).isNotNull + } + + private fun loadConfig(): AppConfig { + return AppConfig(Yaml().load(this.javaClass.classLoader.getResourceAsStream("application.yml"))) + } +} + +data class AppConfig(val configData: Map) { + fun get(key: String): String { + return when (val data = configData[key]) { + null -> throw IllegalStateException("Could not locate configuration data for key: $key") + else -> data + } + } +} \ No newline at end of file diff --git a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/cro/domain/CROCompanyDataParseTest.kt b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/cro/domain/CROCompanyDataParseTest.kt new file mode 100644 index 0000000..08fc090 --- /dev/null +++ b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/cro/domain/CROCompanyDataParseTest.kt @@ -0,0 +1,49 @@ +package org.suggs.companydatafinderlib.cro.domain + +import com.fasterxml.jackson.databind.ObjectMapper +import com.fasterxml.jackson.module.kotlin.KotlinModule +import com.fasterxml.jackson.module.kotlin.readValue +import org.assertj.core.api.Assertions.assertThat +import org.junit.jupiter.api.Assertions.assertAll +import org.junit.jupiter.api.DisplayName +import org.junit.jupiter.api.Test +import org.junit.jupiter.api.function.Executable +import org.slf4j.LoggerFactory + +@DisplayName("CRO Response contains company data directly from CRO") +class CROCompanyDataParseTest { + + private val JSON = """[ + {"company_num":83740, + "company_bus_ind":"C", + "company_name":"FOSTER WHEELER IRELAND LIMITED", + "company_addr_1":"C\/O, COOPERS, LYBRAND,", + "company_addr_2":"FITZWILTON HOUSE,", + "company_addr_3":"WILTON PLACE,", + "company_addr_4":"DUBLIN 2.", + "company_reg_date":"1981-07-08T00:00:00Z", + "company_status_desc":"Dissolved", + "company_status_date":"1993-11-19T00:00:00Z", + "last_ar_date":"0001-01-01T00:00:00Z", + "next_ar_date":"0001-01-01T00:00:00Z", + "last_acc_date":"0001-01-01T00:00:00Z", + "comp_type_desc":"Private limited by shares", + "company_type_code":19, + "company_status_code":8, + "place_of_business":"", + "eircode":""} + ]""".trimMargin() + + private val mapper = ObjectMapper().registerModule(KotlinModule()) + private val log = LoggerFactory.getLogger(this::class.java) + + @Test + fun `can create cro response from JSON`() { + val responseList: List = mapper.readValue(JSON) + log.debug(responseList[0].croNumber) + assertAll( + Executable { assertThat(responseList[0].croBusinessName).isNotNull() }, + Executable { assertThat(responseList[0].croNumber).isEqualTo("83740") } + ) + } +} \ No newline at end of file diff --git a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/kvk/KVKTest.kt b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/kvk/KVKTest.kt index dfbf0db..1213545 100644 --- a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/kvk/KVKTest.kt +++ b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/kvk/KVKTest.kt @@ -4,6 +4,7 @@ import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.DisplayName import org.junit.jupiter.api.Test import org.slf4j.LoggerFactory +import org.suggs.companydatafinderlib.cro.AppConfig import org.yaml.snakeyaml.Yaml @DisplayName("KVK Proxy allows us to") diff --git a/company-data-finder-lib/src/test/resources/application.yml b/company-data-finder-lib/src/test/resources/application.yml index ce697af..2f8418b 100644 --- a/company-data-finder-lib/src/test/resources/application.yml +++ b/company-data-finder-lib/src/test/resources/application.yml @@ -1,3 +1,8 @@ auth: "_JMZGS85jZjkf5sAQsM8ESbFdzo9sEyUqnnQIXmM" user: "testourapis" -pass: "testourapis" \ No newline at end of file +pass: "testourapis" +cro_user: "test@cro.ie" +cro_pass: "da093a04-c9d7-46d7-9c83-9c9f8630d5e0" +cro_key: "test@cro.ie:da093a04-c9d7-46d7-9c83-9c9f8630d5e0" +cro_key1: "dGVzdEBjcm8uaWU6ZGEwOTNhMDQtYzlkNy00NmQ3LTljODMtOWM5Zjg2MzBkNWUw" +cro_key2: "dGVzdEBjcm8uaWU6ZGEwOTNhMDQtYzlkNy00NmQ3LTljODMtOWM5Zjg2MzBkNWUwOg" \ No newline at end of file From b60e659d3b5e16a45d10ed827ea3d2a35cadbefc Mon Sep 17 00:00:00 2001 From: harrydb Date: Fri, 10 Jan 2020 17:27:12 +0000 Subject: [PATCH 08/10] Added CRO (Irish Company Register) --- build.gradle | 8 ++++---- company-data-finder-lib/build.gradle | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 6834fb2..81da840 100644 --- a/build.gradle +++ b/build.gradle @@ -53,8 +53,8 @@ subprojects{ } ext { - sourceCompatibility = 11 - targetCompatibility = 11 + sourceCompatibility = 1.8 + targetCompatibility = 1.8 } test { @@ -65,13 +65,13 @@ subprojects{ compileKotlin { kotlinOptions { freeCompilerArgs = ["-Xjsr305=strict"] - jvmTarget = "11" + jvmTarget = "1.8" } } compileTestKotlin { kotlinOptions { freeCompilerArgs = ["-Xjsr305=strict"] - jvmTarget = "11" + jvmTarget = "1.8" } } } diff --git a/company-data-finder-lib/build.gradle b/company-data-finder-lib/build.gradle index 7a9ee3e..96ed3e4 100644 --- a/company-data-finder-lib/build.gradle +++ b/company-data-finder-lib/build.gradle @@ -27,7 +27,7 @@ task genJaxb { produces(dir: sourcesDir, includes: "**/*.java") } - javac(destdir: classesDir, source: 11, target: 11, debug: true, + javac(destdir: classesDir, source: 1.8, target: 1.8, debug: true, debugLevel: "lines,vars,source", classpath: configurations.jaxb.asPath) { src(path: sourcesDir) From f8cc47c6347182e1accd2e820d4317cfaf1eb6d7 Mon Sep 17 00:00:00 2001 From: harrydb Date: Fri, 10 Jan 2020 17:36:20 +0000 Subject: [PATCH 09/10] Removed stubs for Companyinfo --- company-data-finder-lib/build.gradle | 55 - .../companyinfo/proxy/Config.java | 26 - .../companyinfo/proxy/SOAPConnector.java | 10 - .../wsdl/AantekeningKadastraalObject.java | 150 - .../AantekeningKadastraalObjectArray.java | 74 - .../AantekeningKadastraalObjectLijst.java | 88 - .../companyinfo/wsdl/AantekeningRecht.java | 180 - .../wsdl/AantekeningRechtArray.java | 74 - .../wsdl/AantekeningRechtLijst.java | 88 - .../wsdl/AantekeningenKadastraalObject.java | 95 - .../companyinfo/wsdl/Account.java | 465 - .../companyinfo/wsdl/AccountArray.java | 74 - .../wsdl/AccountCreationToken.java | 96 - ...ccountEditHostRestrictionsRequestType.java | 87 - ...countEditHostRestrictionsResponseType.java | 37 - .../wsdl/AccountEditV2RequestType.java | 240 - .../wsdl/AccountEditV2ResponseType.java | 37 - .../AccountGetCreationStatusRequestType.java | 69 - .../AccountGetCreationStatusResponseType.java | 59 - .../AccountGetCreationTokenRequestType.java | 69 - .../AccountGetCreationTokenResponseType.java | 69 - .../wsdl/AccountGetOrderTokenRequestType.java | 87 - .../AccountGetOrderTokenResponseType.java | 69 - .../companyinfo/wsdl/AccountOrderToken.java | 96 - .../companyinfo/wsdl/AccountPagedResult.java | 96 - .../wsdl/AccountUserListV2RequestType.java | 77 - .../wsdl/AccountUserListV2ResponseType.java | 69 - .../wsdl/AccountUserSearchV2RequestType.java | 105 - .../wsdl/AccountUserSearchV2ResponseType.java | 69 - .../companyinfo/wsdl/AccountV2.java | 465 - .../companyinfo/wsdl/AccountV2Array.java | 74 - .../wsdl/AccountV2PagedResult.java | 96 - .../wsdl/AccountViewBalanceRequestType.java | 59 - .../wsdl/AccountViewBalanceResponseType.java | 59 - ...ccountViewHostRestrictionsRequestType.java | 59 - ...countViewHostRestrictionsResponseType.java | 69 - .../wsdl/AccountViewV2RequestType.java | 59 - .../wsdl/AccountViewV2ResponseType.java | 69 - ...dressCityListNeighborhoodsRequestType.java | 105 - ...ressCityListNeighborhoodsResponseType.java | 69 - .../wsdl/AddressCitySearchV2RequestType.java | 87 - .../wsdl/AddressCitySearchV2ResponseType.java | 69 - .../AddressDistrictListCitiesRequestType.java | 87 - ...AddressDistrictListCitiesResponseType.java | 69 - ...sDistrictListNeighborhoodsRequestType.java | 105 - ...DistrictListNeighborhoodsResponseType.java | 69 - .../AddressDistrictSearchRequestType.java | 87 - .../AddressDistrictSearchResponseType.java | 69 - .../AddressNeighborhoodNameRequestType.java | 69 - .../AddressNeighborhoodNameResponseType.java | 69 - ...ssNeighborhoodPhraseSearchRequestType.java | 87 - ...sNeighborhoodPhraseSearchResponseType.java | 69 - ...PerceelFullParameterSearchRequestType.java | 294 - ...erceelFullParameterSearchResponseType.java | 69 - ...rceelFullParameterSearchV2RequestType.java | 294 - ...ceelFullParameterSearchV2ResponseType.java | 69 - ...ressPerceelParameterSearchRequestType.java | 213 - ...essPerceelParameterSearchResponseType.java | 69 - ...AddressPerceelPhraseSearchRequestType.java | 87 - ...ddressPerceelPhraseSearchResponseType.java | 69 - ...dressProvinceListDistrictsRequestType.java | 87 - ...ressProvinceListDistrictsResponseType.java | 69 - ...sProvinceListNeighborhoodsRequestType.java | 105 - ...ProvinceListNeighborhoodsResponseType.java | 69 - .../wsdl/AddressProvinceListRequestType.java | 59 - .../wsdl/AddressProvinceListResponseType.java | 69 - .../AddressProvinceSearchRequestType.java | 87 - .../AddressProvinceSearchResponseType.java | 69 - .../AddressReeksAddressSearchRequestType.java | 141 - ...AddressReeksAddressSearchResponseType.java | 69 - ...ssReeksFullParameterSearchRequestType.java | 294 - ...sReeksFullParameterSearchResponseType.java | 69 - ...ddressReeksParameterSearchRequestType.java | 213 - ...dressReeksParameterSearchResponseType.java | 69 - .../AddressReeksPhraseSearchRequestType.java | 87 - .../AddressReeksPhraseSearchResponseType.java | 69 - ...AddressReeksPostcodeSearchRequestType.java | 69 - ...ddressReeksPostcodeSearchResponseType.java | 69 - .../companyinfo/wsdl/AreaCode.java | 69 - .../companyinfo/wsdl/AreaCodeArray.java | 74 - .../wsdl/AreaCodeLookupRequestType.java | 87 - .../wsdl/AreaCodeLookupResponseType.java | 69 - .../companyinfo/wsdl/AreaCodePagedResult.java | 96 - .../AreaCodePostcodeLookupRequestType.java | 69 - .../AreaCodePostcodeLookupResponseType.java | 69 - ...AreaCodeToNeighborhoodcodeRequestType.java | 87 - ...reaCodeToNeighborhoodcodeResponseType.java | 69 - .../companyinfo/wsdl/Base64BinaryArray.java | 73 - .../companyinfo/wsdl/BbanDetails.java | 339 - .../wsdl/BelgianBusinessAddress.java | 194 - .../wsdl/BelgianBusinessAddressArray.java | 74 - ...lgianBusinessAnnualFinancialStatement.java | 562 - ...BusinessAnnualFinancialStatementArray.java | 74 - .../wsdl/BelgianBusinessBankAccount.java | 142 - .../wsdl/BelgianBusinessBankAccountArray.java | 74 - .../wsdl/BelgianBusinessCompany.java | 384 - .../companyinfo/wsdl/BelgianBusinessDate.java | 119 - .../wsdl/BelgianBusinessDatedItem.java | 149 - .../wsdl/BelgianBusinessDatedItemArray.java | 74 - .../wsdl/BelgianBusinessDossier.java | 230 - .../wsdl/BelgianBusinessDossierErrors.java | 177 - .../wsdl/BelgianBusinessFinancialValues.java | 3141 --- .../BelgianBusinessGetDossierRequestType.java | 69 - ...BelgianBusinessGetDossierResponseType.java | 69 - .../BelgianBusinessInternationalAddress.java | 194 - ...gianBusinessInternationalAddressArray.java | 74 - .../BelgianBusinessLegalRepresentative.java | 149 - ...lgianBusinessLegalRepresentativeArray.java | 74 - ...ianBusinessLegalRepresentativeCompany.java | 121 - ...sinessLegalRepresentativeCompanyArray.java | 74 - .../wsdl/BelgianBusinessRatios.java | 904 - .../wsdl/BelgianBusinessRevisor.java | 254 - .../wsdl/BelgianBusinessRevisorArray.java | 74 - .../wsdl/BelgianBusinessSocialBalance.java | 744 - .../wsdl/BelgianBusinessStakeHolder.java | 281 - .../wsdl/BelgianBusinessStakeHolderArray.java | 74 - .../companyinfo/wsdl/BerichtObject.java | 231 - .../wsdl/BerichtObjectDocument.java | 229 - .../wsdl/BerichtObjectDocumentResultaat.java | 93 - .../wsdl/BerichtObjectResultaat.java | 93 - .../wsdl/BerichtObjectResultaatV2.java | 93 - .../companyinfo/wsdl/BerichtObjectV2.java | 231 - .../companyinfo/wsdl/BovagDepartment.java | 95 - .../wsdl/BovagDepartmentArray.java | 74 - .../BovagGetMemberByBovagIdRequestType.java | 69 - .../BovagGetMemberByBovagIdResponseType.java | 69 - ...agGetMemberByDutchBusinessRequestType.java | 96 - ...gGetMemberByDutchBusinessResponseType.java | 69 - .../companyinfo/wsdl/BovagMember.java | 177 - .../companyinfo/wsdl/BusinessBIKCode.java | 96 - .../wsdl/BusinessBIKCodeArray.java | 74 - .../companyinfo/wsdl/BusinessBIKCodeInfo.java | 96 - .../companyinfo/wsdl/BusinessBIKSection.java | 96 - .../wsdl/BusinessBIKSectionArray.java | 74 - .../wsdl/BusinessBIKToSBIRequestType.java | 69 - .../wsdl/BusinessBIKToSBIResponseType.java | 69 - .../companyinfo/wsdl/BusinessDate.java | 126 - .../companyinfo/wsdl/BusinessDossier.java | 1106 - .../wsdl/BusinessDossierArray.java | 74 - .../wsdl/BusinessDossierExtended.java | 96 - .../wsdl/BusinessDossierExtendedPart.java | 609 - .../wsdl/BusinessDossierPagedResult.java | 96 - .../companyinfo/wsdl/BusinessDossierSBI.java | 204 - .../companyinfo/wsdl/BusinessDossierV2.java | 1004 - .../wsdl/BusinessDossierV2Array.java | 74 - .../wsdl/BusinessDossierV2PagedResult.java | 96 - .../companyinfo/wsdl/BusinessDossierV3.java | 923 - .../wsdl/BusinessDossierV3Array.java | 74 - .../wsdl/BusinessDossierV3PagedResult.java | 96 - .../BusinessGetBIKDescriptionRequestType.java | 69 - ...BusinessGetBIKDescriptionResponseType.java | 69 - ...BusinessGetDossierExtendedRequestType.java | 96 - ...usinessGetDossierExtendedResponseType.java | 69 - .../BusinessGetDossierSBIRequestType.java | 96 - .../BusinessGetDossierSBIResponseType.java | 69 - .../wsdl/BusinessGetDossierV3RequestType.java | 114 - .../BusinessGetDossierV3ResponseType.java | 69 - ...nessGetEstablishmentNumberRequestType.java | 96 - ...essGetEstablishmentNumberResponseType.java | 69 - .../BusinessGetSBIDescriptionRequestType.java | 69 - ...BusinessGetSBIDescriptionResponseType.java | 69 - .../companyinfo/wsdl/BusinessReference.java | 177 - .../wsdl/BusinessReferenceArray.java | 74 - .../wsdl/BusinessReferencePagedResult.java | 96 - .../companyinfo/wsdl/BusinessReferenceV2.java | 231 - .../wsdl/BusinessReferenceV2Array.java | 74 - .../wsdl/BusinessReferenceV2PagedResult.java | 96 - .../companyinfo/wsdl/BusinessReferenceV3.java | 250 - .../wsdl/BusinessReferenceV3Array.java | 74 - .../wsdl/BusinessReferenceV3PagedResult.java | 96 - .../companyinfo/wsdl/BusinessSBICode.java | 96 - .../wsdl/BusinessSBICodeArray.java | 74 - .../companyinfo/wsdl/BusinessSBICodeInfo.java | 96 - .../companyinfo/wsdl/BusinessSBISection.java | 96 - .../wsdl/BusinessSBISectionArray.java | 74 - .../wsdl/BusinessSBIToBIKRequestType.java | 69 - .../wsdl/BusinessSBIToBIKResponseType.java | 69 - .../BusinessSearchAddressRequestType.java | 159 - .../BusinessSearchAddressResponseType.java | 69 - ...usinessSearchDossierNumberRequestType.java | 114 - ...sinessSearchDossierNumberResponseType.java | 69 - .../wsdl/BusinessSearchNameRequestType.java | 87 - .../wsdl/BusinessSearchNameResponseType.java | 69 - .../BusinessSearchParametersRequestType.java | 267 - .../BusinessSearchParametersResponseType.java | 69 - ...BusinessSearchParametersV2RequestType.java | 240 - ...usinessSearchParametersV2ResponseType.java | 69 - ...BusinessSearchParametersV3RequestType.java | 240 - ...usinessSearchParametersV3ResponseType.java | 69 - .../BusinessSearchPostcodeRequestType.java | 159 - .../BusinessSearchPostcodeResponseType.java | 69 - .../BusinessSearchSelectionRequestType.java | 306 - .../BusinessSearchSelectionResponseType.java | 69 - .../BusinessSearchSelectionV2RequestType.java | 333 - ...BusinessSearchSelectionV2ResponseType.java | 69 - .../BusinessUpdateAddDossierRequestType.java | 96 - .../BusinessUpdateAddDossierResponseType.java | 37 - ...BusinessUpdateCheckDossierRequestType.java | 123 - ...usinessUpdateCheckDossierResponseType.java | 69 - ...ssUpdateGetChangedDossiersRequestType.java | 117 - ...sUpdateGetChangedDossiersResponseType.java | 69 - .../BusinessUpdateGetDossiersRequestType.java | 87 - ...BusinessUpdateGetDossiersResponseType.java | 69 - .../wsdl/BusinessUpdateReference.java | 153 - .../wsdl/BusinessUpdateReferenceArray.java | 74 - .../BusinessUpdateReferencePagedResult.java | 96 - ...usinessUpdateRemoveDossierRequestType.java | 96 - ...sinessUpdateRemoveDossierResponseType.java | 37 - .../companyinfo/wsdl/Car.java | 557 - .../wsdl/CarATDPriceRequestType.java | 69 - .../wsdl/CarATDPriceResponseType.java | 69 - .../companyinfo/wsdl/CarATDPrices.java | 150 - .../companyinfo/wsdl/CarATDValuation.java | 145 - .../wsdl/CarATDValuationArray.java | 74 - .../companyinfo/wsdl/CarBP.java | 593 - .../companyinfo/wsdl/CarBPV2.java | 95 - .../companyinfo/wsdl/CarBody.java | 119 - .../companyinfo/wsdl/CarBodyArray.java | 74 - .../companyinfo/wsdl/CarCheckCode.java | 105 - .../companyinfo/wsdl/CarDataV3Result.java | 96 - .../companyinfo/wsdl/CarEnvironment.java | 232 - .../companyinfo/wsdl/CarExtended.java | 1082 - .../companyinfo/wsdl/CarOption.java | 150 - .../companyinfo/wsdl/CarOptions.java | 5448 ----- .../wsdl/CarRDWCarCheckCodeRequestType.java | 96 - .../wsdl/CarRDWCarCheckCodeResponseType.java | 69 - .../wsdl/CarRDWCarDataBPRequestType.java | 69 - .../wsdl/CarRDWCarDataBPResponseType.java | 69 - .../wsdl/CarRDWCarDataBPV2RequestType.java | 69 - .../wsdl/CarRDWCarDataBPV2ResponseType.java | 69 - .../CarRDWCarDataExtendedRequestType.java | 96 - .../CarRDWCarDataExtendedResponseType.java | 69 - .../wsdl/CarRDWCarDataOptionsRequestType.java | 69 - .../CarRDWCarDataOptionsResponseType.java | 69 - .../companyinfo/wsdl/CarRDWCarDataPrice.java | 284 - .../wsdl/CarRDWCarDataPriceRequestType.java | 69 - .../wsdl/CarRDWCarDataPriceResponseType.java | 69 - .../wsdl/CarRDWCarDataRequestType.java | 69 - .../wsdl/CarRDWCarDataResponseType.java | 69 - .../wsdl/CarRDWCarDataV2RequestType.java | 69 - .../wsdl/CarRDWCarDataV2ResponseType.java | 69 - .../wsdl/CarRDWCarDataV3RequestType.java | 69 - .../wsdl/CarRDWCarDataV3ResponseType.java | 69 - .../companyinfo/wsdl/CarStatus.java | 147 - .../companyinfo/wsdl/CarType.java | 215 - .../companyinfo/wsdl/CarTypeArray.java | 74 - .../companyinfo/wsdl/CarV2.java | 96 - .../companyinfo/wsdl/CarV3.java | 576 - .../companyinfo/wsdl/CarVWEBasicTypeData.java | 1040 - .../wsdl/CarVWEBasicTypeDataRequestType.java | 69 - .../wsdl/CarVWEBasicTypeDataResponseType.java | 69 - .../companyinfo/wsdl/CarVWEBrand.java | 88 - .../companyinfo/wsdl/CarVWEBrandArray.java | 74 - .../wsdl/CarVWEBrandPagedResult.java | 96 - .../wsdl/CarVWEListBrandsRequestType.java | 98 - .../wsdl/CarVWEListBrandsResponseType.java | 69 - .../wsdl/CarVWEListModelsRequestType.java | 117 - .../wsdl/CarVWEListModelsResponseType.java | 69 - .../wsdl/CarVWEListVersionsRequestType.java | 211 - .../wsdl/CarVWEListVersionsResponseType.java | 69 - .../companyinfo/wsdl/CarVWEMeldcodeCheck.java | 87 - .../wsdl/CarVWEMeldcodeCheckRequestType.java | 96 - .../wsdl/CarVWEMeldcodeCheckResponseType.java | 69 - .../companyinfo/wsdl/CarVWEModel.java | 88 - .../companyinfo/wsdl/CarVWEModelArray.java | 74 - .../wsdl/CarVWEModelPagedResult.java | 96 - .../companyinfo/wsdl/CarVWEOption.java | 141 - .../companyinfo/wsdl/CarVWEOptionArray.java | 74 - .../companyinfo/wsdl/CarVWEOptionPackage.java | 133 - .../wsdl/CarVWEOptionPackageArray.java | 74 - .../companyinfo/wsdl/CarVWEOptions.java | 123 - .../wsdl/CarVWEOptionsManufacture.java | 115 - .../wsdl/CarVWEOptionsPackage.java | 115 - .../wsdl/CarVWEOptionsRequestType.java | 88 - .../wsdl/CarVWEOptionsResponseType.java | 69 - .../wsdl/CarVWEOptionsStandard.java | 115 - .../companyinfo/wsdl/CarVWEPhoto.java | 121 - .../companyinfo/wsdl/CarVWEPhotoArray.java | 74 - .../wsdl/CarVWEPhotosRequestType.java | 61 - .../wsdl/CarVWEPhotosResponseType.java | 69 - .../companyinfo/wsdl/CarVWEPrices.java | 342 - .../companyinfo/wsdl/CarVWEVersion.java | 320 - .../companyinfo/wsdl/CarVWEVersionArray.java | 74 - .../wsdl/CarVWEVersionPagedResult.java | 96 - .../companyinfo/wsdl/CarVWEVersionPrice.java | 575 - .../wsdl/CarVWEVersionPriceReference.java | 107 - .../CarVWEVersionPriceReferenceArray.java | 74 - .../wsdl/CarVWEVersionPriceRequestType.java | 88 - .../wsdl/CarVWEVersionPriceResponseType.java | 69 - .../wsdl/CarVWEVersionYearData.java | 603 - .../CarVWEVersionYearDataRequestType.java | 80 - .../CarVWEVersionYearDataResponseType.java | 69 - .../companyinfo/wsdl/City.java | 159 - .../companyinfo/wsdl/CityArray.java | 74 - .../companyinfo/wsdl/CityPagedResult.java | 96 - .../companyinfo/wsdl/CityV2.java | 276 - .../companyinfo/wsdl/CityV2Array.java | 74 - .../companyinfo/wsdl/CityV2PagedResult.java | 96 - .../wsdl/ComplianceAddressReference.java | 174 - .../wsdl/ComplianceAddressReferenceArray.java | 74 - .../companyinfo/wsdl/ComplianceBusiness.java | 394 - .../wsdl/ComplianceBusinessReference.java | 124 - .../ComplianceBusinessReferenceArray.java | 74 - .../ComplianceBusinessSearchReference.java | 177 - ...omplianceBusinessSearchReferenceArray.java | 74 - ...nceBusinessSearchReferencePagedResult.java | 96 - .../companyinfo/wsdl/ComplianceDate.java | 111 - .../wsdl/ComplianceDocumentReference.java | 153 - .../ComplianceDocumentReferenceArray.java | 74 - .../ComplianceGetBusinessRequestType.java | 69 - .../ComplianceGetBusinessResponseType.java | 69 - .../wsdl/ComplianceGetPersonRequestType.java | 69 - .../wsdl/ComplianceGetPersonResponseType.java | 69 - .../wsdl/ComplianceNoteReference.java | 95 - .../wsdl/ComplianceNoteReferenceArray.java | 74 - .../companyinfo/wsdl/CompliancePerson.java | 691 - .../wsdl/CompliancePersonReference.java | 181 - .../wsdl/CompliancePersonReferenceArray.java | 74 - .../wsdl/CompliancePersonSearchReference.java | 234 - .../CompliancePersonSearchReferenceArray.java | 74 - ...iancePersonSearchReferencePagedResult.java | 96 - .../wsdl/ComplianceRoleReference.java | 149 - .../wsdl/ComplianceRoleReferenceArray.java | 74 - .../wsdl/ComplianceSanctionReference.java | 87 - .../ComplianceSanctionReferenceArray.java | 74 - ...ComplianceSearchBusinessesRequestType.java | 241 - ...omplianceSearchBusinessesResponseType.java | 69 - .../ComplianceSearchPersonsRequestType.java | 144 - .../ComplianceSearchPersonsResponseType.java | 69 - .../wsdl/CreateTestUserRequestType.java | 177 - .../wsdl/CreateTestUserResponseType.java | 69 - .../wsdl/CreditsafeAdditionalInformation.java | 93 - .../companyinfo/wsdl/CreditsafeAddressV2.java | 227 - .../wsdl/CreditsafeAddressV2Array.java | 74 - .../companyinfo/wsdl/CreditsafeAdvisor.java | 96 - .../wsdl/CreditsafeAdvisorArray.java | 74 - .../wsdl/CreditsafeBalanceSheet.java | 1359 -- .../companyinfo/wsdl/CreditsafeBanker.java | 122 - .../wsdl/CreditsafeBankerArray.java | 74 - .../CreditsafeBeAdditionalInformation.java | 229 - .../wsdl/CreditsafeBeBankruptcyEvent.java | 478 - .../CreditsafeBeBankruptcyEventArray.java | 74 - .../companyinfo/wsdl/CreditsafeBeEvent.java | 97 - .../wsdl/CreditsafeBeEventArray.java | 74 - .../wsdl/CreditsafeBeIndustryComparison.java | 180 - .../companyinfo/wsdl/CreditsafeBeMisc.java | 69 - .../wsdl/CreditsafeBeNSSODetail.java | 180 - .../wsdl/CreditsafeBeNSSODetailArray.java | 74 - .../wsdl/CreditsafeBeNegativeInformation.java | 123 - ...reditsafeBePaymentExpectationsSummary.java | 97 - .../wsdl/CreditsafeBeProtestedBill.java | 262 - .../wsdl/CreditsafeBeProtestedBillArray.java | 74 - .../CreditsafeBeRegisteredContractor.java | 127 - ...CreditsafeBeRegisteredContractorArray.java | 74 - .../wsdl/CreditsafeChangedString.java | 99 - .../wsdl/CreditsafeChangedStringArray.java | 74 - .../companyinfo/wsdl/CreditsafeCompany.java | 328 - .../wsdl/CreditsafeCompanyActivity.java | 96 - .../wsdl/CreditsafeCompanyActivityArray.java | 74 - ...itsafeCompanyActivityClassificationV2.java | 93 - ...eCompanyActivityClassificationV2Array.java | 74 - .../wsdl/CreditsafeCompanyActivityV2.java | 122 - .../CreditsafeCompanyActivityV2Array.java | 74 - ...CompanyAdditionalInformationCommentV2.java | 93 - ...nyAdditionalInformationCommentV2Array.java | 74 - ...lInformationDEAdditionalInformationV2.java | 202 - ...rmationDEAdditionalInformationV2Array.java | 74 - ...AdditionalInformationDEImageAccountV2.java | 209 - ...ionalInformationDEImageAccountV2Array.java | 74 - ...dditionalInformationDEMiscellaneousV2.java | 393 - ...onalInformationDEMiscellaneousV2Array.java | 74 - ...CompanyAdditionalInformationDEOwnerV2.java | 174 - ...nyAdditionalInformationDEOwnerV2Array.java | 74 - ...dditionalInformationDETurnoverRangeV2.java | 94 - ...onalInformationDETurnoverRangeV2Array.java | 74 - ...dditionalInformationHistoricalEventV2.java | 151 - ...onalInformationHistoricalEventV2Array.java | 74 - ...lInformationNLAdditionalInformationV2.java | 283 - ...rmationNLAdditionalInformationV2Array.java | 74 - ...dditionalInformationNLFinancialItemV2.java | 125 - ...onalInformationNLFinancialItemV2Array.java | 74 - ...onalInformationNLIndustryComparisonV2.java | 96 - ...nformationNLIndustryComparisonV2Array.java | 74 - ...mationNLIndustryQuartileAnalysisDayV2.java | 119 - ...nNLIndustryQuartileAnalysisDayV2Array.java | 74 - ...formationNLIndustryQuartileAnalysisV2.java | 96 - ...tionNLIndustryQuartileAnalysisV2Array.java | 74 - ...anyAdditionalInformationNLKvkFilingV2.java | 96 - ...ditionalInformationNLKvkFilingV2Array.java | 74 - ...onNLLetterOfLiabilityInformation403V2.java | 602 - ...etterOfLiabilityInformation403V2Array.java | 74 - ...dditionalInformationNLMiscellaneousV2.java | 234 - ...onalInformationNLMiscellaneousV2Array.java | 74 - ...rmationNLPaymentExpectationsSummaryV2.java | 178 - ...onNLPaymentExpectationsSummaryV2Array.java | 74 - ...ditsafeCompanyAdditionalInformationV2.java | 119 - ...feCompanyAdditionalInformationV2Array.java | 74 - .../wsdl/CreditsafeCompanyAdvisorV2.java | 96 - .../wsdl/CreditsafeCompanyAdvisorV2Array.java | 74 - .../wsdl/CreditsafeCompanyArray.java | 74 - .../wsdl/CreditsafeCompanyBalanceSheetV2.java | 1281 -- .../CreditsafeCompanyBalanceSheetV2Array.java | 74 - .../wsdl/CreditsafeCompanyBankerV2.java | 121 - .../wsdl/CreditsafeCompanyBankerV2Array.java | 74 - .../CreditsafeCompanyBasicInformationV2.java | 342 - ...ditsafeCompanyBasicInformationV2Array.java | 74 - .../wsdl/CreditsafeCompanyCompanyV2.java | 391 - .../wsdl/CreditsafeCompanyCompanyV2Array.java | 74 - ...CreditsafeCompanyContactInformationV2.java | 96 - ...tsafeCompanyContactInformationV2Array.java | 74 - .../wsdl/CreditsafeCompanyCreditRatingV2.java | 177 - .../CreditsafeCompanyCreditRatingV2Array.java | 74 - .../wsdl/CreditsafeCompanyCreditScoreV2.java | 96 - .../CreditsafeCompanyCreditScoreV2Array.java | 74 - ...reditsafeCompanyEmployeeInformationV2.java | 96 - ...safeCompanyEmployeeInformationV2Array.java | 74 - ...CreditsafeCompanyFinancialStatementV2.java | 286 - ...tsafeCompanyFinancialStatementV2Array.java | 74 - .../CreditsafeCompanyGroupStructureV2.java | 150 - ...reditsafeCompanyGroupStructureV2Array.java | 74 - .../CreditsafeCompanyIdentificationV2.java | 96 - ...reditsafeCompanyIdentificationV2Array.java | 74 - .../wsdl/CreditsafeCompanyKeyValueV2.java | 93 - .../CreditsafeCompanyKeyValueV2Array.java | 74 - .../wsdl/CreditsafeCompanyListEntry.java | 148 - .../wsdl/CreditsafeCompanyListEntryArray.java | 74 - ...panyNegativeInformationDEBankruptcyV2.java | 69 - ...egativeInformationDEBankruptcyV2Array.java | 74 - ...yNegativeInformationDEDirectorEventV2.java | 174 - ...tiveInformationDEDirectorEventV2Array.java | 74 - ...egativeInformationDEInsolvencyEventV2.java | 99 - ...veInformationDEInsolvencyEventV2Array.java | 74 - ...eInformationDEInsolvencyInformationV2.java | 122 - ...rmationDEInsolvencyInformationV2Array.java | 74 - ...CompanyNegativeInformationDETrusteeV2.java | 281 - ...nyNegativeInformationDETrusteeV2Array.java | 74 - ...ditsafeCompanyNegativeInformationDEV2.java | 122 - ...feCompanyNegativeInformationDEV2Array.java | 74 - ...mpanyNegativeInformationNLCourtItemV2.java | 125 - ...NegativeInformationNLCourtItemV2Array.java | 74 - ...ditsafeCompanyNegativeInformationNLV2.java | 69 - ...feCompanyNegativeInformationNLV2Array.java | 74 - ...reditsafeCompanyNegativeInformationV2.java | 119 - ...safeCompanyNegativeInformationV2Array.java | 74 - .../CreditsafeCompanyOtherFinancialsV2.java | 97 - ...editsafeCompanyOtherFinancialsV2Array.java | 74 - .../CreditsafeCompanyOtherInformationV2.java | 121 - ...ditsafeCompanyOtherInformationV2Array.java | 74 - .../wsdl/CreditsafeCompanyPagedResult.java | 96 - .../wsdl/CreditsafeCompanyPaymentDataV2.java | 67 - .../CreditsafeCompanyPaymentDataV2Array.java | 74 - .../CreditsafeCompanyProfitAndLossV2.java | 416 - ...CreditsafeCompanyProfitAndLossV2Array.java | 74 - .../wsdl/CreditsafeCompanyRatiosV2.java | 419 - .../wsdl/CreditsafeCompanyRatiosV2Array.java | 74 - .../wsdl/CreditsafeCompanyReportFull.java | 420 - .../wsdl/CreditsafeCompanyReportFullV2.java | 472 - .../CreditsafeCompanyReportFullV2Array.java | 74 - ...ditsafeCompanyShareCapitalStructureV2.java | 123 - ...feCompanyShareCapitalStructureV2Array.java | 74 - .../wsdl/CreditsafeCompanyShareHolderV2.java | 122 - .../CreditsafeCompanyShareHolderV2Array.java | 74 - .../wsdl/CreditsafeCompanyStatusV2.java | 93 - .../wsdl/CreditsafeCompanyStatusV2Array.java | 74 - .../wsdl/CreditsafeCompanySummaryV2.java | 283 - .../wsdl/CreditsafeCompanySummaryV2Array.java | 74 - .../wsdl/CreditsafeCompanyUpdate.java | 126 - .../wsdl/CreditsafeCompanyUpdateArray.java | 74 - .../CreditsafeCompanyUpdatePagedResult.java | 96 - .../companyinfo/wsdl/CreditsafeCompanyV2.java | 391 - .../wsdl/CreditsafeCompanyV2Array.java | 74 - .../wsdl/CreditsafeDescriptionV2.java | 119 - .../wsdl/CreditsafeDescriptionV2Array.java | 74 - .../companyinfo/wsdl/CreditsafeDirector.java | 205 - .../wsdl/CreditsafeDirectorArray.java | 74 - .../wsdl/CreditsafeEmployeeInformation.java | 97 - .../CreditsafeEmployeeInformationArray.java | 74 - .../wsdl/CreditsafeFinancialRatios.java | 420 - .../CreditsafeGetReportFullRequestType.java | 123 - .../CreditsafeGetReportFullResponseType.java | 69 - .../CreditsafeGetReportFullV2RequestType.java | 123 - ...CreditsafeGetReportFullV2ResponseType.java | 69 - .../CreditsafeIndustryQuartilyAnalysis.java | 96 - .../CreditsafeLtdCompanyBasicInformation.java | 479 - .../CreditsafeLtdCompanyIdentification.java | 149 - .../wsdl/CreditsafeLtdCompanySummary.java | 339 - .../wsdl/CreditsafeLtdContactInformation.java | 176 - .../wsdl/CreditsafeLtdCreditScore.java | 262 - .../wsdl/CreditsafeLtdDirectors.java | 96 - .../wsdl/CreditsafeLtdFinancialStatement.java | 149 - .../CreditsafeLtdFinancialStatementArray.java | 74 - .../wsdl/CreditsafeLtdGroupStructure.java | 150 - .../wsdl/CreditsafeLtdOtherInformation.java | 121 - .../CreditsafeLtdShareCapitalStructure.java | 124 - ...reditsafeMonitorAddCompanyRequestType.java | 69 - ...editsafeMonitorAddCompanyResponseType.java | 37 - ...MonitorGetUpdatedCompaniesRequestType.java | 90 - ...onitorGetUpdatedCompaniesResponseType.java | 69 - ...itsafeMonitorRemoveCompanyRequestType.java | 69 - ...tsafeMonitorRemoveCompanyResponseType.java | 37 - .../CreditsafeNlAdditionalInformation.java | 176 - .../wsdl/CreditsafeNlCourtData.java | 95 - .../wsdl/CreditsafeNlCourtDataFacts.java | 125 - .../wsdl/CreditsafeNlCourtDataReceiver.java | 93 - .../wsdl/CreditsafeNlLettersOfLiability.java | 156 - .../CreditsafeNlLettersOfLiabilityArray.java | 74 - ...afeNlLettersOfLiabilityInformation403.java | 209 - .../companyinfo/wsdl/CreditsafeNlMisc.java | 124 - .../wsdl/CreditsafeNlNegativeInformation.java | 69 - ...reditsafeNlPaymentExpectationsSummary.java | 178 - .../wsdl/CreditsafeOtherFinancials.java | 124 - .../wsdl/CreditsafePersonDirectorV2.java | 229 - .../wsdl/CreditsafePersonDirectorV2Array.java | 74 - .../wsdl/CreditsafePersonDirectorsV2.java | 96 - .../CreditsafePersonDirectorsV2Array.java | 74 - .../wsdl/CreditsafePersonPositionV2.java | 98 - .../wsdl/CreditsafePersonPositionV2Array.java | 74 - .../CreditsafePersonPreviousDirectorV2.java | 257 - ...editsafePersonPreviousDirectorV2Array.java | 74 - .../wsdl/CreditsafePreviousDirector.java | 99 - .../wsdl/CreditsafePreviousDirectorArray.java | 74 - .../wsdl/CreditsafeProfitAndLossFigures.java | 628 - .../companyinfo/wsdl/CreditsafeQuartiles.java | 120 - .../wsdl/CreditsafeSearchCriteria.java | 123 - .../CreditsafeSearchCriteriaCombination.java | 69 - ...ditsafeSearchCriteriaCombinationArray.java | 74 - .../wsdl/CreditsafeSearchCriteriaParam.java | 197 - .../CreditsafeSearchCriteriaParamArray.java | 74 - .../CreditsafeSearchCriteriaRequestType.java | 69 - .../CreditsafeSearchCriteriaResponseType.java | 69 - .../wsdl/CreditsafeSearchRequestType.java | 465 - .../wsdl/CreditsafeSearchResponseType.java | 69 - .../wsdl/CreditsafeSearchResultV2.java | 67 - .../wsdl/CreditsafeSearchV2RequestType.java | 339 - .../wsdl/CreditsafeSearchV2ResponseType.java | 69 - .../wsdl/CreditsafeShareHolder.java | 122 - .../wsdl/CreditsafeShareHolderArray.java | 74 - .../wsdl/CreditsafeStreetAddress.java | 95 - .../wsdl/CreditsafeStreetAddressArray.java | 74 - .../CreditsafeStreetAddressWithTelephone.java | 121 - ...itsafeStreetAddressWithTelephoneArray.java | 74 - .../companyinfo/wsdl/CreditsafeValueV2.java | 122 - .../wsdl/CreditsafeValueV2Array.java | 74 - .../companyinfo/wsdl/DNBAddress.java | 276 - .../wsdl/DNBBusinessReference.java | 296 - .../wsdl/DNBBusinessReferenceArray.java | 74 - .../wsdl/DNBBusinessReferencePagedResult.java | 96 - .../wsdl/DNBBusinessReferenceV2.java | 314 - .../wsdl/DNBBusinessReferenceV2Array.java | 74 - .../DNBBusinessReferenceV2PagedResult.java | 96 - .../wsdl/DNBBusinessVerification.java | 688 - .../companyinfo/wsdl/DNBCommentary.java | 95 - .../companyinfo/wsdl/DNBCommentaryArray.java | 74 - .../companyinfo/wsdl/DNBEmployeeCount.java | 175 - .../wsdl/DNBEnterpriseManagement.java | 1363 -- .../companyinfo/wsdl/DNBMarketing.java | 358 - .../companyinfo/wsdl/DNBMarketingPlus.java | 958 - .../wsdl/DNBMarketingPlusLinkage.java | 366 - .../wsdl/DNBMarketingPlusLinkageResult.java | 123 - .../wsdl/DNBMarketingPlusResult.java | 96 - .../companyinfo/wsdl/DNBMonetaryAmount.java | 173 - .../companyinfo/wsdl/DNBQuickCheck.java | 1712 -- .../companyinfo/wsdl/DNBRelatedBusiness.java | 150 - .../companyinfo/wsdl/DNBSICCode.java | 96 - .../companyinfo/wsdl/DNBSICCodeArray.java | 74 - .../companyinfo/wsdl/DNBScoreGroup.java | 365 - .../companyinfo/wsdl/DNBScoreGroupArray.java | 74 - .../companyinfo/wsdl/District.java | 132 - .../companyinfo/wsdl/DistrictArray.java | 74 - .../companyinfo/wsdl/DistrictPagedResult.java | 96 - .../DnbBusinessVerificationRequestType.java | 96 - .../DnbBusinessVerificationResponseType.java | 69 - .../DnbEnterpriseManagementRequestType.java | 96 - .../DnbEnterpriseManagementResponseType.java | 69 - .../wsdl/DnbGetReferenceRequestType.java | 96 - .../wsdl/DnbGetReferenceResponseType.java | 69 - .../wsdl/DnbQuickCheckRequestType.java | 96 - .../wsdl/DnbQuickCheckResponseType.java | 69 - .../wsdl/DnbSearchReferenceRequestType.java | 249 - .../wsdl/DnbSearchReferenceResponseType.java | 69 - .../wsdl/DnbSearchReferenceV2RequestType.java | 276 - .../DnbSearchReferenceV2ResponseType.java | 69 - ...ldbaseMarketingPlusLinkageRequestType.java | 96 - ...dbaseMarketingPlusLinkageResponseType.java | 69 - .../DnbWorldbaseMarketingPlusRequestType.java | 96 - ...DnbWorldbaseMarketingPlusResponseType.java | 69 - .../DnbWorldbaseMarketingRequestType.java | 96 - .../DnbWorldbaseMarketingResponseType.java | 69 - .../companyinfo/wsdl/DocumentOverzicht.java | 69 - .../companyinfo/wsdl/DriveInfo.java | 77 - .../DriveInfoDistanceLookupRequestType.java | 96 - .../DriveInfoDistanceLookupResponseType.java | 69 - .../wsdl/DriveInfoTimeLookupRequestType.java | 96 - .../wsdl/DriveInfoTimeLookupResponseType.java | 69 - .../wsdl/DutchAddressPostcodeRange.java | 361 - ...AddressRangePostcodeSearchRequestType.java | 69 - ...ddressRangePostcodeSearchResponseType.java | 69 - .../wsdl/DutchBusinessAdditionalPosition.java | 261 - .../DutchBusinessAdditionalPositionArray.java | 74 - ...BusinessAdditionalPositionFunctionary.java | 261 - .../wsdl/DutchBusinessAddressV2.java | 200 - .../wsdl/DutchBusinessAddressV3.java | 226 - ...DutchBusinessAnnualFinancialStatement.java | 139 - ...sinessAnnualFinancialStatementSummary.java | 145 - .../wsdl/DutchBusinessChangeSet.java | 96 - .../companyinfo/wsdl/DutchBusinessDate.java | 115 - .../companyinfo/wsdl/DutchBusinessDateV2.java | 119 - .../companyinfo/wsdl/DutchBusinessDateV3.java | 119 - .../wsdl/DutchBusinessDossier.java | 1573 -- .../wsdl/DutchBusinessDossierHistory.java | 69 - .../wsdl/DutchBusinessDossierReference.java | 99 - .../DutchBusinessDossierReferenceArray.java | 74 - .../wsdl/DutchBusinessDossierV2.java | 1745 -- .../wsdl/DutchBusinessDossierV3.java | 1544 -- .../wsdl/DutchBusinessEnterprise.java | 900 - .../wsdl/DutchBusinessEnterpriseV2.java | 387 - .../wsdl/DutchBusinessEnterpriseV3.java | 387 - .../wsdl/DutchBusinessEstablishment.java | 956 - .../wsdl/DutchBusinessEstablishmentArray.java | 74 - .../DutchBusinessEstablishmentReference.java | 312 - ...chBusinessEstablishmentReferenceArray.java | 74 - ...nessEstablishmentReferencePagedResult.java | 96 - .../wsdl/DutchBusinessEstablishmentV2.java | 497 - .../DutchBusinessEstablishmentV2Array.java | 74 - .../wsdl/DutchBusinessEstablishmentV3.java | 497 - .../DutchBusinessEstablishmentV3Array.java | 74 - .../DutchBusinessExtractChangeForecast.java | 69 - .../wsdl/DutchBusinessExtractChangeSet.java | 96 - .../wsdl/DutchBusinessExtractDataV2.java | 256 - .../wsdl/DutchBusinessExtractDataV3.java | 256 - .../wsdl/DutchBusinessExtractDocument.java | 97 - .../DutchBusinessExtractDocumentData.java | 307 - .../DutchBusinessExtractDocumentDataV2.java | 93 - .../DutchBusinessExtractDocumentDataV3.java | 117 - .../wsdl/DutchBusinessExtractHistory.java | 96 - .../wsdl/DutchBusinessExtractReference.java | 126 - .../DutchBusinessExtractReferenceArray.java | 74 - .../wsdl/DutchBusinessFormattedAddress.java | 119 - ...nessGetAdditionalPositionsRequestType.java | 153 - ...essGetAdditionalPositionsResponseType.java | 69 - ...hBusinessGetAdditionalPositionsResult.java | 177 - ...etAnnualFinancialStatementRequestType.java | 114 - ...tAnnualFinancialStatementResponseType.java | 69 - ...sinessGetConcernRelationsDetailsGraph.java | 96 - ...ssGetConcernRelationsDetailsGraphLink.java | 123 - ...ConcernRelationsDetailsGraphLinkArray.java | 74 - ...ssGetConcernRelationsDetailsGraphNode.java | 96 - ...ConcernRelationsDetailsGraphNodeArray.java | 74 - ...GetConcernRelationsDetailsRequestType.java | 88 - ...etConcernRelationsDetailsResponseType.java | 69 - ...inessGetConcernRelationsDetailsResult.java | 145 - ...sGetConcernRelationsOverviewReference.java | 151 - ...oncernRelationsOverviewReferenceArray.java | 74 - ...etConcernRelationsOverviewRequestType.java | 69 - ...tConcernRelationsOverviewResponseType.java | 69 - ...nessGetConcernRelationsOverviewResult.java | 69 - ...hBusinessGetDossierHistoryRequestType.java | 127 - ...BusinessGetDossierHistoryResponseType.java | 69 - .../DutchBusinessGetDossierRequestType.java | 96 - .../DutchBusinessGetDossierResponseType.java | 69 - .../DutchBusinessGetDossierV2RequestType.java | 96 - ...DutchBusinessGetDossierV2ResponseType.java | 69 - .../DutchBusinessGetDossierV3RequestType.java | 96 - ...DutchBusinessGetDossierV3ResponseType.java | 69 - ...nessGetExtractDocumentDataRequestType.java | 88 - ...essGetExtractDocumentDataResponseType.java | 69 - ...ssGetExtractDocumentDataV2RequestType.java | 69 - ...sGetExtractDocumentDataV2ResponseType.java | 69 - ...ssGetExtractDocumentDataV3RequestType.java | 88 - ...sGetExtractDocumentDataV3ResponseType.java | 69 - ...BusinessGetExtractDocumentRequestType.java | 88 - ...usinessGetExtractDocumentResponseType.java | 69 - ...ssGetExtractHistoryChangedRequestType.java | 127 - ...sGetExtractHistoryChangedResponseType.java | 69 - ...ExtractHistoryDocumentDataRequestType.java | 69 - ...xtractHistoryDocumentDataResponseType.java | 69 - ...tractHistoryDocumentDataV2RequestType.java | 69 - ...ractHistoryDocumentDataV2ResponseType.java | 69 - ...oryDocumentDataV3ByDossierRequestType.java | 146 - ...ryDocumentDataV3ByDossierResponseType.java | 69 - ...tractHistoryDocumentDataV3RequestType.java | 88 - ...ractHistoryDocumentDataV3ResponseType.java | 69 - ...hBusinessGetExtractHistoryRequestType.java | 127 - ...BusinessGetExtractHistoryResponseType.java | 69 - ...utchBusinessGetLegalEntityRequestType.java | 69 - ...tchBusinessGetLegalEntityResponseType.java | 69 - ...LegalExtractDocumentDataV2RequestType.java | 69 - ...egalExtractDocumentDataV2ResponseType.java | 69 - ...LegalExtractDocumentDataV3RequestType.java | 88 - ...egalExtractDocumentDataV3ResponseType.java | 69 - .../wsdl/DutchBusinessGetLeiRequestType.java | 69 - .../wsdl/DutchBusinessGetLeiResponseType.java | 69 - .../wsdl/DutchBusinessGetLeiResult.java | 123 - ...ssGetNonMarketingIndicatorRequestType.java | 96 - ...sGetNonMarketingIndicatorResponseType.java | 69 - ...usinessGetOrganizationTreeRequestType.java | 69 - ...sinessGetOrganizationTreeResponseType.java | 69 - .../DutchBusinessGetPositionsRequestType.java | 69 - ...DutchBusinessGetPositionsResponseType.java | 69 - ...hBusinessGetSBIDescriptionRequestType.java | 96 - ...BusinessGetSBIDescriptionResponseType.java | 69 - .../wsdl/DutchBusinessGetSBIRequestType.java | 123 - .../wsdl/DutchBusinessGetSBIResponseType.java | 69 - .../DutchBusinessGetVatNumberRequestType.java | 69 - ...DutchBusinessGetVatNumberResponseType.java | 69 - .../wsdl/DutchBusinessIdentifiers.java | 123 - .../wsdl/DutchBusinessInsolvency.java | 95 - .../wsdl/DutchBusinessInsolvencyArray.java | 74 - .../DutchBusinessInsolvencyPublication.java | 121 - ...tchBusinessInsolvencyPublicationArray.java | 74 - .../wsdl/DutchBusinessLegalEntity.java | 1574 -- .../wsdl/DutchBusinessLegalEntityData.java | 126 - .../wsdl/DutchBusinessLegalEntityV2.java | 1196 - .../wsdl/DutchBusinessLegalEntityV3.java | 1196 - .../wsdl/DutchBusinessLeiAddress.java | 176 - .../wsdl/DutchBusinessLeiBusinessEntity.java | 287 - .../wsdl/DutchBusinessLeiLegalForm.java | 69 - .../wsdl/DutchBusinessLeiRegistration.java | 209 - ...DutchBusinessLeiRegistrationAuthority.java | 96 - .../wsdl/DutchBusinessLeiSuccessor.java | 95 - .../wsdl/DutchBusinessMoneyV2.java | 119 - .../wsdl/DutchBusinessMoneyV3.java | 119 - .../wsdl/DutchBusinessNewsCompany.java | 96 - .../wsdl/DutchBusinessNewsCompanyArray.java | 74 - .../wsdl/DutchBusinessNewsItem.java | 289 - .../wsdl/DutchBusinessNewsItemArray.java | 74 - .../DutchBusinessNewsItemPagedResult.java | 96 - .../DutchBusinessNonMarketingIndicator.java | 144 - .../wsdl/DutchBusinessOrganizationNode.java | 148 - .../DutchBusinessOrganizationNodeArray.java | 74 - .../DutchBusinessOrganizationReferenceV2.java | 148 - .../DutchBusinessOrganizationReferenceV3.java | 148 - .../wsdl/DutchBusinessOrganizationTree.java | 123 - .../wsdl/DutchBusinessPartnership.java | 551 - .../wsdl/DutchBusinessPartnershipArray.java | 74 - .../wsdl/DutchBusinessPartnershipV2.java | 416 - .../wsdl/DutchBusinessPartnershipV3.java | 416 - .../companyinfo/wsdl/DutchBusinessPeriod.java | 100 - .../wsdl/DutchBusinessPersonV2.java | 309 - .../wsdl/DutchBusinessPersonV3.java | 309 - .../wsdl/DutchBusinessPersonnelInfoV2.java | 119 - .../wsdl/DutchBusinessPersonnelInfoV3.java | 119 - .../wsdl/DutchBusinessPosition.java | 1221 - .../wsdl/DutchBusinessPositionArray.java | 74 - .../DutchBusinessPositionAuthorization.java | 154 - ...tchBusinessPositionAuthorizationArray.java | 74 - .../wsdl/DutchBusinessPositionCompany.java | 204 - .../wsdl/DutchBusinessPositionV2.java | 929 - .../wsdl/DutchBusinessPositionV2Array.java | 74 - .../wsdl/DutchBusinessPositionV3.java | 929 - .../wsdl/DutchBusinessPositionV3Array.java | 74 - .../wsdl/DutchBusinessPositions.java | 125 - .../wsdl/DutchBusinessReference.java | 250 - .../wsdl/DutchBusinessReferenceArray.java | 74 - .../DutchBusinessReferencePagedResult.java | 96 - .../wsdl/DutchBusinessReferenceV2.java | 277 - .../wsdl/DutchBusinessReferenceV2Array.java | 74 - .../DutchBusinessReferenceV2PagedResult.java | 96 - .../wsdl/DutchBusinessSBICode.java | 96 - .../wsdl/DutchBusinessSBICodeArray.java | 74 - .../wsdl/DutchBusinessSBICodeInfo.java | 96 - .../wsdl/DutchBusinessSBICollection.java | 96 - .../wsdl/DutchBusinessSBICollectionArray.java | 74 - .../wsdl/DutchBusinessSBISection.java | 96 - .../wsdl/DutchBusinessSbiCodeV2.java | 95 - .../wsdl/DutchBusinessSbiCodeV2Array.java | 74 - .../wsdl/DutchBusinessSbiCodeV3.java | 95 - .../wsdl/DutchBusinessSbiCodeV3Array.java | 74 - ...usinessSearchDossierNumberRequestType.java | 141 - ...sinessSearchDossierNumberResponseType.java | 69 - ...sinessSearchEstablishmentsRequestType.java | 141 - ...inessSearchEstablishmentsResponseType.java | 69 - ...usinessSearchNewsByDossierRequestType.java | 172 - ...sinessSearchNewsByDossierResponseType.java | 69 - ...chBusinessSearchParametersRequestType.java | 287 - ...hBusinessSearchParametersResponseType.java | 69 - ...BusinessSearchParametersV2RequestType.java | 287 - ...usinessSearchParametersV2ResponseType.java | 69 - ...utchBusinessSearchPostcodeRequestType.java | 133 - ...tchBusinessSearchPostcodeResponseType.java | 69 - .../wsdl/DutchBusinessSearchRequestType.java | 314 - .../wsdl/DutchBusinessSearchResponseType.java | 69 - ...tchBusinessSearchSelectionRequestType.java | 387 - ...chBusinessSearchSelectionResponseType.java | 69 - ...inessSearchSelectionSimpleRequestType.java | 360 - ...nessSearchSelectionSimpleResponseType.java | 69 - .../wsdl/DutchBusinessStructure.java | 122 - ...inessUBOCheckInvestigationRequestType.java | 69 - ...nessUBOCheckInvestigationResponseType.java | 69 - .../DutchBusinessUBOClassificationResult.java | 123 - .../DutchBusinessUBOClassifiedPerson.java | 126 - .../wsdl/DutchBusinessUBOClassifiedRole.java | 149 - .../DutchBusinessUBOClassifiedSuspect.java | 150 - ...utchBusinessUBOClassifiedSuspectArray.java | 74 - ...ssUBOClassifyInvestigationRequestType.java | 96 - ...sUBOClassifyInvestigationResponseType.java | 69 - ...inessUBOCostsInvestigationRequestType.java | 69 - ...nessUBOCostsInvestigationResponseType.java | 69 - ...chBusinessUBOCostsInvestigationResult.java | 150 - .../wsdl/DutchBusinessUBOExtract.java | 150 - .../DutchBusinessUBOInvestigationResult.java | 177 - .../DutchBusinessUBOInvestigationStatus.java | 125 - .../DutchBusinessUBOInvestigationToken.java | 69 - .../wsdl/DutchBusinessUBOOrganisation.java | 201 - .../DutchBusinessUBOOrganisationArray.java | 74 - .../DutchBusinessUBOOrganizationNode.java | 231 - ...DutchBusinessUBOOrganizationNodeArray.java | 74 - .../wsdl/DutchBusinessUBOPayment.java | 123 - .../wsdl/DutchBusinessUBOPerson.java | 315 - .../wsdl/DutchBusinessUBOPersonArray.java | 74 - ...nessUBOPickupInvestigationRequestType.java | 88 - ...essUBOPickupInvestigationResponseType.java | 69 - .../wsdl/DutchBusinessUBOReceipt.java | 96 - .../wsdl/DutchBusinessUBOReceiptItem.java | 141 - .../DutchBusinessUBOReceiptItemArray.java | 74 - .../wsdl/DutchBusinessUBORole.java | 178 - .../wsdl/DutchBusinessUBORoleArray.java | 74 - ...inessUBOStartInvestigationRequestType.java | 118 - ...nessUBOStartInvestigationResponseType.java | 69 - ...chBusinessUpdateAddDossierRequestType.java | 96 - ...hBusinessUpdateAddDossierResponseType.java | 37 - ...BusinessUpdateCheckDossierRequestType.java | 123 - ...usinessUpdateCheckDossierResponseType.java | 69 - ...ssUpdateGetChangedDossiersRequestType.java | 117 - ...sUpdateGetChangedDossiersResponseType.java | 69 - ...hBusinessUpdateGetDossiersRequestType.java | 87 - ...BusinessUpdateGetDossiersResponseType.java | 69 - ...hBusinessUpdateGetOverviewRequestType.java | 59 - ...BusinessUpdateGetOverviewResponseType.java | 69 - .../wsdl/DutchBusinessUpdateReference.java | 153 - .../DutchBusinessUpdateReferenceArray.java | 74 - ...tchBusinessUpdateReferencePagedResult.java | 96 - ...usinessUpdateRemoveDossierRequestType.java | 96 - ...sinessUpdateRemoveDossierResponseType.java | 37 - .../wsdl/DutchBusinessUpdateSubscription.java | 142 - .../DutchBusinessUpdateSubscriptionArray.java | 74 - ...BusinessUpdateSubscriptionPagedResult.java | 96 - .../wsdl/DutchBusinessVatNumber.java | 126 - .../companyinfo/wsdl/DutchVehicle.java | 386 - .../companyinfo/wsdl/DutchVehicleAxle.java | 284 - .../wsdl/DutchVehicleAxleArray.java | 74 - .../wsdl/DutchVehicleBodyApproval.java | 122 - .../wsdl/DutchVehicleBodyApprovalArray.java | 74 - .../companyinfo/wsdl/DutchVehicleData.java | 334 - .../companyinfo/wsdl/DutchVehicleEngine.java | 149 - .../wsdl/DutchVehicleEnvironment.java | 502 - .../wsdl/DutchVehicleEnvironmentArray.java | 74 - .../companyinfo/wsdl/DutchVehicleFeature.java | 359 - ...DutchVehicleGetMarketValueRequestType.java | 69 - ...utchVehicleGetMarketValueResponseType.java | 69 - ...utchVehicleGetOwnerHistoryRequestType.java | 69 - ...tchVehicleGetOwnerHistoryResponseType.java | 69 - ...ehicleGetPurchaseReferenceRequestType.java | 69 - ...hicleGetPurchaseReferenceResponseType.java | 69 - .../DutchVehicleGetVehicleRequestType.java | 69 - .../DutchVehicleGetVehicleResponseType.java | 69 - .../DutchVehicleGetVehicleV2RequestType.java | 69 - .../DutchVehicleGetVehicleV2ResponseType.java | 69 - .../wsdl/DutchVehicleMarketValue.java | 67 - .../companyinfo/wsdl/DutchVehicleMileage.java | 115 - .../wsdl/DutchVehicleOwnerHistory.java | 67 - .../wsdl/DutchVehicleOwnership.java | 145 - .../wsdl/DutchVehicleOwnershipArray.java | 74 - .../companyinfo/wsdl/DutchVehiclePrice.java | 178 - .../wsdl/DutchVehiclePriceValuation.java | 226 - .../wsdl/DutchVehiclePriceValuationArray.java | 74 - .../wsdl/DutchVehiclePurchase.java | 99 - .../wsdl/DutchVehiclePurchaseReference.java | 123 - .../companyinfo/wsdl/DutchVehicleRecall.java | 93 - .../wsdl/DutchVehicleReference.java | 205 - .../wsdl/DutchVehicleRegistration.java | 238 - .../companyinfo/wsdl/DutchVehicleRemark.java | 122 - .../wsdl/DutchVehicleRemarkArray.java | 74 - .../companyinfo/wsdl/DutchVehicleStatus.java | 199 - .../companyinfo/wsdl/DutchVehicleTaxData.java | 93 - .../wsdl/DutchVehicleTechnicalWeight.java | 258 - .../wsdl/DutchVehicleTypeApproval.java | 123 - .../companyinfo/wsdl/DutchVehicleV2.java | 412 - .../companyinfo/wsdl/EDRScore.java | 118 - .../wsdl/EdrGetScoreRequestType.java | 285 - .../wsdl/EdrGetScoreResponseType.java | 69 - .../companyinfo/wsdl/GCRAddress.java | 393 - .../companyinfo/wsdl/GCRAddressArray.java | 74 - .../companyinfo/wsdl/GCRAlarm.java | 88 - .../wsdl/GCRAlarmContactDetails.java | 122 - .../companyinfo/wsdl/GCRAnnualFigures.java | 124 - .../wsdl/GCRAnnualFiguresArray.java | 74 - .../companyinfo/wsdl/GCRAssets.java | 178 - .../companyinfo/wsdl/GCRBalanceSheet.java | 119 - .../wsdl/GCRBankAndInsurerData.java | 503 - .../wsdl/GCRBankAndInsurerDataArray.java | 74 - .../wsdl/GCRBankAndInsurerKeyFigures.java | 580 - .../companyinfo/wsdl/GCRBankruptcy.java | 235 - .../companyinfo/wsdl/GCRBirthInformation.java | 151 - .../companyinfo/wsdl/GCRBranchOffice.java | 259 - .../wsdl/GCRBranchOfficeArray.java | 74 - .../companyinfo/wsdl/GCRCalamity.java | 96 - .../companyinfo/wsdl/GCRCalamityEvent.java | 282 - .../wsdl/GCRCalamityEventArray.java | 74 - .../companyinfo/wsdl/GCRCalamityOther.java | 118 - .../wsdl/GCRCalamityOtherArray.java | 74 - .../companyinfo/wsdl/GCRCapital.java | 234 - .../companyinfo/wsdl/GCRCapitalArray.java | 74 - .../wsdl/GCRChamberOfCommerce.java | 177 - .../companyinfo/wsdl/GCRCompany.java | 285 - .../wsdl/GCRCompanyAnnualAccount.java | 557 - .../wsdl/GCRCompanyAnnualAccountArray.java | 74 - .../companyinfo/wsdl/GCRCompanyArray.java | 74 - .../wsdl/GCRCompanyContinuedUnder.java | 154 - .../wsdl/GCRCompanyContinuedUnderArray.java | 74 - .../companyinfo/wsdl/GCRCompanyItself.java | 472 - .../wsdl/GCRCompanyItselfAlarm.java | 150 - .../wsdl/GCRCompanyItselfCalamity.java | 392 - .../wsdl/GCRCompanyManagement.java | 95 - .../companyinfo/wsdl/GCRCompanyRelations.java | 93 - .../wsdl/GCRCompanyRelationsSimple.java | 93 - .../companyinfo/wsdl/GCRCompanySimple.java | 177 - .../wsdl/GCRCompanySimpleArray.java | 74 - .../companyinfo/wsdl/GCRContactDetails.java | 149 - .../companyinfo/wsdl/GCRContinuation.java | 152 - .../wsdl/GCRContinuationArray.java | 74 - .../companyinfo/wsdl/GCRCountry.java | 88 - .../companyinfo/wsdl/GCRCountryArray.java | 74 - .../companyinfo/wsdl/GCRCreditAdvice.java | 178 - .../companyinfo/wsdl/GCRCreditAdviceData.java | 142 - .../wsdl/GCRCreditAdviceMother.java | 96 - .../companyinfo/wsdl/GCRCreditFactor.java | 114 - .../wsdl/GCRCreditFactorArray.java | 74 - .../companyinfo/wsdl/GCRCreditRating.java | 311 - .../companyinfo/wsdl/GCRCurator.java | 100 - .../companyinfo/wsdl/GCRCuratorArray.java | 74 - .../GCRDebtRestructuringPrivatePersons.java | 372 - .../wsdl/GCRDeclarationOfLiability.java | 155 - .../wsdl/GCRDeclarationOfLiabilityArray.java | 74 - .../companyinfo/wsdl/GCRDiscontinuance.java | 122 - .../companyinfo/wsdl/GCRFiling.java | 153 - .../wsdl/GCRFinancialCalamity.java | 121 - .../wsdl/GCRFinancialCalamityArray.java | 74 - .../wsdl/GCRFinancialDetailValue.java | 194 - .../wsdl/GCRFinancialDetailValueArray.java | 74 - .../companyinfo/wsdl/GCRFinancialDetails.java | 122 - .../companyinfo/wsdl/GCRFirstDirector.java | 209 - .../wsdl/GCRFirstDirectorArray.java | 74 - .../companyinfo/wsdl/GCRFounded.java | 208 - .../companyinfo/wsdl/GCRFoundedArray.java | 74 - .../companyinfo/wsdl/GCRHistory.java | 122 - .../wsdl/GCRHistoryAdvisedLimit.java | 99 - .../wsdl/GCRHistoryAdvisedLimitArray.java | 74 - .../companyinfo/wsdl/GCRImportExport.java | 96 - .../companyinfo/wsdl/GCRItem.java | 204 - .../companyinfo/wsdl/GCRItemArray.java | 74 - .../companyinfo/wsdl/GCRJobTitle.java | 263 - .../companyinfo/wsdl/GCRJobTitleArray.java | 74 - .../companyinfo/wsdl/GCRLiabilities.java | 97 - .../companyinfo/wsdl/GCRLiaison.java | 124 - .../companyinfo/wsdl/GCRLiaisonArray.java | 74 - .../companyinfo/wsdl/GCRLiaisonCompany.java | 151 - .../wsdl/GCRLiaisonCompanyArray.java | 74 - .../wsdl/GCRLiaisonContactDetails.java | 122 - .../wsdl/GCRLiaisonOfficialData.java | 123 - .../companyinfo/wsdl/GCRManagement.java | 151 - .../companyinfo/wsdl/GCRManagementArray.java | 74 - .../companyinfo/wsdl/GCRMoratorium.java | 455 - .../wsdl/GCRNumberOfEmployees.java | 79 - .../wsdl/GCRNumberOfEmployeesArray.java | 74 - .../companyinfo/wsdl/GCROfficialData.java | 363 - .../companyinfo/wsdl/GCROriginatedFrom.java | 146 - .../wsdl/GCROriginatedFromArray.java | 74 - .../companyinfo/wsdl/GCRParticipation.java | 182 - .../wsdl/GCRParticipationArray.java | 74 - .../wsdl/GCRPaymentInformation.java | 98 - .../wsdl/GCRPaymentInformationArray.java | 74 - .../wsdl/GCRPercentageHistory.java | 98 - .../wsdl/GCRPercentageHistoryArray.java | 74 - .../companyinfo/wsdl/GCRPerson.java | 231 - .../companyinfo/wsdl/GCRPersonArray.java | 74 - .../companyinfo/wsdl/GCRPersonSimple.java | 150 - .../wsdl/GCRPersonSimpleArray.java | 74 - .../companyinfo/wsdl/GCRPersonalDetails.java | 200 - .../companyinfo/wsdl/GCRPersonnel.java | 151 - .../companyinfo/wsdl/GCRRating.java | 123 - .../companyinfo/wsdl/GCRRatingArray.java | 74 - .../companyinfo/wsdl/GCRRatingHistory.java | 98 - .../wsdl/GCRRatingHistoryArray.java | 74 - .../companyinfo/wsdl/GCRRatio.java | 123 - .../companyinfo/wsdl/GCRRatioArray.java | 74 - .../companyinfo/wsdl/GCRReceiver.java | 100 - .../companyinfo/wsdl/GCRReceiverArray.java | 74 - .../companyinfo/wsdl/GCRSectorOfIndustry.java | 123 - .../wsdl/GCRSectorOfIndustryArray.java | 74 - .../companyinfo/wsdl/GCRShareHolder.java | 209 - .../companyinfo/wsdl/GCRShareHolderArray.java | 74 - .../wsdl/GCRSpecialCompanyInformation.java | 122 - .../GCRSpecialCompanyInformationArray.java | 74 - .../companyinfo/wsdl/GCRTelephoneNumber.java | 169 - .../wsdl/GCRTelephoneNumberArray.java | 74 - .../companyinfo/wsdl/GCRTextSequence.java | 96 - .../wsdl/GCRTextSequenceArray.java | 74 - .../companyinfo/wsdl/GCRTitle.java | 88 - .../companyinfo/wsdl/GCRTitleArray.java | 74 - .../companyinfo/wsdl/GCRTradeName.java | 154 - .../companyinfo/wsdl/GCRTradeNameArray.java | 74 - .../companyinfo/wsdl/GemeenteStuk.java | 126 - .../companyinfo/wsdl/GemeenteStukArray.java | 74 - .../companyinfo/wsdl/GeoLocationAddress.java | 305 - ...onAddressCoordinatesLatLonRequestType.java | 141 - ...nAddressCoordinatesLatLonResponseType.java | 69 - ...cationAddressCoordinatesRDRequestType.java | 141 - ...ationAddressCoordinatesRDResponseType.java | 69 - .../wsdl/GeoLocationAddressV2.java | 313 - ...tedNeighborhoodCodesRadiusRequestType.java | 124 - ...edNeighborhoodCodesRadiusResponseType.java | 69 - ...nceSortedNeighborhoodCodesRequestType.java | 96 - ...ceSortedNeighborhoodCodesResponseType.java | 69 - ...tanceSortedPostcodesRadiusRequestType.java | 124 - ...anceSortedPostcodesRadiusResponseType.java | 69 - ...ionDistanceSortedPostcodesRequestType.java | 96 - ...onDistanceSortedPostcodesResponseType.java | 69 - ...oLocationHaversineDistanceRequestType.java | 137 - ...LocationHaversineDistanceResponseType.java | 59 - .../wsdl/GeoLocationInternationalAddress.java | 258 - ...alAddressCoordinatesLatLonRequestType.java | 195 - ...lAddressCoordinatesLatLonResponseType.java | 69 - ...AddressCoordinatesLatLonV2RequestType.java | 240 - ...ddressCoordinatesLatLonV2ResponseType.java | 69 - ...ternationalLatLonToAddressRequestType.java | 77 - ...ernationalLatLonToAddressResponseType.java | 69 - ...lPostcodeCoordinatesLatLonRequestType.java | 96 - ...PostcodeCoordinatesLatLonResponseType.java | 69 - ...oLocationLatLonToAddressV2RequestType.java | 77 - ...LocationLatLonToAddressV2ResponseType.java | 69 - ...eoLocationLatLonToPostcodeRequestType.java | 77 - ...oLocationLatLonToPostcodeResponseType.java | 69 - .../GeoLocationLatLonToRDRequestType.java | 77 - .../GeoLocationLatLonToRDResponseType.java | 69 - ...ghborhoodCoordinatesLatLonRequestType.java | 69 - ...hborhoodCoordinatesLatLonResponseType.java | 69 - ...nNeighborhoodCoordinatesRDRequestType.java | 69 - ...NeighborhoodCoordinatesRDResponseType.java | 69 - ...cationNeighborhoodDistanceRequestType.java | 96 - ...ationNeighborhoodDistanceResponseType.java | 59 - ...nPostcodeCoordinatesLatLonRequestType.java | 69 - ...PostcodeCoordinatesLatLonResponseType.java | 69 - ...ationPostcodeCoordinatesRDRequestType.java | 69 - ...tionPostcodeCoordinatesRDResponseType.java | 69 - ...eoLocationPostcodeDistanceRequestType.java | 96 - ...oLocationPostcodeDistanceResponseType.java | 59 - .../GeoLocationRDToAddressV2RequestType.java | 77 - .../GeoLocationRDToAddressV2ResponseType.java | 69 - .../GeoLocationRDToLatLonRequestType.java | 77 - .../GeoLocationRDToLatLonResponseType.java | 69 - .../GeoLocationRDToPostcodeRequestType.java | 77 - .../GeoLocationRDToPostcodeResponseType.java | 69 - ...aydonCreditCompanyLiaisonsRequestType.java | 70 - ...ydonCreditCompanyLiaisonsResponseType.java | 69 - .../GraydonCreditGetReportRequestType.java | 97 - .../GraydonCreditGetReportResponseType.java | 69 - .../GraydonCreditManagementRequestType.java | 70 - .../GraydonCreditManagementResponseType.java | 69 - .../GraydonCreditQuickscanRequestType.java | 70 - .../GraydonCreditQuickscanResponseType.java | 69 - .../wsdl/GraydonCreditRatingsRequestType.java | 70 - .../GraydonCreditRatingsResponseType.java | 69 - .../companyinfo/wsdl/GraydonCreditReport.java | 173 - .../wsdl/GraydonCreditReportAlarm.java | 69 - .../wsdl/GraydonCreditReportCalamity.java | 96 - .../GraydonCreditReportCompanyLiaisons.java | 121 - .../wsdl/GraydonCreditReportManagement.java | 121 - .../wsdl/GraydonCreditReportNormal.java | 123 - .../wsdl/GraydonCreditReportQuickscan.java | 149 - .../wsdl/GraydonCreditReportRatings.java | 229 - .../wsdl/GraydonCreditReportVatNumber.java | 95 - ...CreditSearchIdentificationRequestType.java | 123 - ...reditSearchIdentificationResponseType.java | 69 - .../GraydonCreditSearchNameRequestType.java | 123 - .../GraydonCreditSearchNameResponseType.java | 69 - ...raydonCreditSearchPostcodeRequestType.java | 142 - ...aydonCreditSearchPostcodeResponseType.java | 69 - .../GraydonCreditVatNumberRequestType.java | 70 - .../GraydonCreditVatNumberResponseType.java | 69 - .../companyinfo/wsdl/GraydonReference.java | 331 - .../wsdl/GraydonReferenceArray.java | 74 - .../wsdl/HeaderAuthenticateType.java | 69 - .../companyinfo/wsdl/HeaderLoginType.java | 96 - .../companyinfo/wsdl/InsolvencyAddress.java | 257 - .../wsdl/InsolvencyAddressArray.java | 74 - .../companyinfo/wsdl/InsolvencyAddresses.java | 93 - .../wsdl/InsolvencyAffectedCompany.java | 176 - .../wsdl/InsolvencyAffectedCompanyArray.java | 74 - .../companyinfo/wsdl/InsolvencyCase.java | 438 - .../wsdl/InsolvencyConcernedPerson.java | 286 - .../wsdl/InsolvencyCourtSession.java | 150 - .../companyinfo/wsdl/InsolvencyCurators.java | 69 - ...lvencyGetCaseByPublicationRequestType.java | 69 - ...vencyGetCaseByPublicationResponseType.java | 69 - .../wsdl/InsolvencyLegalPerformingPerson.java | 232 - .../InsolvencyLegalPerformingPersonArray.java | 74 - .../wsdl/InsolvencyLegalSubject.java | 96 - .../wsdl/InsolvencyPublication.java | 208 - .../wsdl/InsolvencyPublicationArray.java | 74 - .../wsdl/InsolvencyPublicationList.java | 99 - .../wsdl/InsolvencyPublications.java | 88 - .../companyinfo/wsdl/InsolvencyReceivers.java | 69 - .../companyinfo/wsdl/InsolvencyReport.java | 145 - .../wsdl/InsolvencyReportArray.java | 74 - ...rchPublicationsByCoCNumberRequestType.java | 69 - ...chPublicationsByCoCNumberResponseType.java | 69 - ...SearchPublicationsByPersonRequestType.java | 172 - ...earchPublicationsByPersonResponseType.java | 69 - .../wsdl/InsolvencyTreatingAuthority.java | 151 - .../companyinfo/wsdl/IntArray.java | 76 - .../companyinfo/wsdl/International.java | 249 - ...alAddressSearchInteractiveRequestType.java | 339 - ...lAddressSearchInteractiveResponseType.java | 69 - ...ternationalAddressSearchV2RequestType.java | 339 - ...ernationalAddressSearchV2ResponseType.java | 69 - .../InternationalAddressSearchV2Result.java | 123 - .../companyinfo/wsdl/InternationalArray.java | 74 - .../wsdl/InternationalFormattedAddress.java | 438 - .../InternationalFormattedAddressArray.java | 74 - ...ernationalFormattedAddressPagedResult.java | 96 - .../wsdl/InternationalPagedResult.java | 96 - .../companyinfo/wsdl/InternationalV2.java | 123 - .../wsdl/InternationalV2Array.java | 74 - ...KadasterAddressCoordinatesRequestType.java | 168 - ...adasterAddressCoordinatesResponseType.java | 69 - .../companyinfo/wsdl/KadasterBedrag.java | 87 - .../wsdl/KadasterBeknoptOnroerendeZaak.java | 284 - .../KadasterBeknoptOnroerendeZaakArray.java | 74 - .../wsdl/KadasterBerichtObjectDocument.java | 93 - .../wsdl/KadasterBronDocument.java | 93 - .../wsdl/KadasterBronDocumentRequestType.java | 177 - .../KadasterBronDocumentResponseType.java | 69 - .../companyinfo/wsdl/KadasterCoordinates.java | 133 - .../wsdl/KadasterDomicilieKeuze.java | 145 - .../wsdl/KadasterDomicilieKeuzeArray.java | 74 - .../wsdl/KadasterDomicilieKeuzeLijst.java | 96 - ...domsBerichtDocumentPerceelRequestType.java | 231 - ...omsBerichtDocumentPerceelResponseType.java | 69 - ...omsBerichtDocumentPostcodeRequestType.java | 141 - ...msBerichtDocumentPostcodeResponseType.java | 69 - ...terEigendomsBerichtPerceelRequestType.java | 204 - ...erEigendomsBerichtPerceelResponseType.java | 69 - ...rEigendomsBerichtPerceelV2RequestType.java | 204 - ...EigendomsBerichtPerceelV2ResponseType.java | 69 - ...erEigendomsBerichtPostcodeRequestType.java | 114 - ...rEigendomsBerichtPostcodeResponseType.java | 69 - ...EigendomsBerichtPostcodeV2RequestType.java | 114 - ...igendomsBerichtPostcodeV2ResponseType.java | 69 - .../wsdl/KadasterGerelateerdStukdeel.java | 121 - .../KadasterGerelateerdStukdeelArray.java | 74 - .../KadasterHypothecairBerichtObject.java | 150 - ...rHypothecairBerichtPerceelRequestType.java | 231 - ...HypothecairBerichtPerceelResponseType.java | 69 - ...ypothecairBerichtPerceelV2RequestType.java | 231 - ...pothecairBerichtPerceelV2ResponseType.java | 69 - ...ypothecairBerichtPerceelV3RequestType.java | 231 - ...pothecairBerichtPerceelV3ResponseType.java | 69 - ...HypothecairBerichtPostcodeRequestType.java | 141 - ...ypothecairBerichtPostcodeResponseType.java | 69 - ...pothecairBerichtPostcodeV2RequestType.java | 141 - ...othecairBerichtPostcodeV2ResponseType.java | 69 - ...pothecairBerichtPostcodeV3RequestType.java | 141 - ...othecairBerichtPostcodeV3ResponseType.java | 69 - .../KadasterHypothecairBerichtResultaat.java | 93 - ...KadasterHypothecairBerichtResultaatV2.java | 93 - .../companyinfo/wsdl/KadasterHypotheek.java | 122 - .../wsdl/KadasterHypotheekStuk.java | 256 - .../wsdl/KadasterHypotheekStukArray.java | 74 - .../wsdl/KadasterHypotheekStukLijst.java | 88 - .../wsdl/KadasterKadastraleKaart.java | 111 - ...sterKadastraleKaartPerceelRequestType.java | 249 - ...terKadastraleKaartPerceelResponseType.java | 69 - ...erKadastraleKaartPerceelV2RequestType.java | 249 - ...rKadastraleKaartPerceelV2ResponseType.java | 69 - ...terKadastraleKaartPostcodeRequestType.java | 159 - ...erKadastraleKaartPostcodeResponseType.java | 69 - ...rKadastraleKaartPostcodeV2RequestType.java | 159 - ...KadastraleKaartPostcodeV2ResponseType.java | 69 - .../KadasterKadastraleKaartResultaat.java | 95 - .../KadasterKadastraleKaartResultaatV2.java | 95 - ...adasterKoopsommenOverzichtRequestType.java | 87 - ...dasterKoopsommenOverzichtResponseType.java | 69 - ...asterKoopsommenOverzichtV2RequestType.java | 114 - ...sterKoopsommenOverzichtV2ResponseType.java | 69 - .../companyinfo/wsdl/KadasterListValue.java | 95 - .../wsdl/KadasterListValueArray.java | 74 - .../companyinfo/wsdl/KadasterLocatie.java | 96 - .../wsdl/KadasterLocatieBinnenland.java | 225 - .../wsdl/KadasterLocatieBinnenlandArray.java | 74 - .../wsdl/KadasterLocatieBuitenland.java | 147 - .../wsdl/KadasterNatuurlijkPersoon.java | 310 - .../wsdl/KadasterNietNatuurlijkPersoon.java | 149 - .../companyinfo/wsdl/KadasterOverzicht.java | 123 - .../KadasterOverzichtNatuurlijkPersoon.java | 174 - ...adasterOverzichtNietNatuurlijkPersoon.java | 122 - .../wsdl/KadasterOverzichtOnroerendeZaak.java | 175 - .../KadasterOverzichtOnroerendeZaakArray.java | 74 - .../wsdl/KadasterOverzichtPersoon.java | 150 - .../wsdl/KadasterOverzichtPersoonArray.java | 74 - .../wsdl/KadasterOverzichtPersoonV2.java | 176 - .../wsdl/KadasterOverzichtPersoonV2Array.java | 74 - .../wsdl/KadasterOverzichtRecht.java | 123 - .../wsdl/KadasterOverzichtRechtArray.java | 74 - .../companyinfo/wsdl/KadasterOverzichtV2.java | 123 - .../companyinfo/wsdl/KadasterPersoon.java | 256 - .../wsdl/KadasterPersoonArray.java | 74 - .../wsdl/KadasterPersoonLijst.java | 88 - .../companyinfo/wsdl/KadasterStukdeel.java | 308 - .../wsdl/KadasterStukdeelArray.java | 74 - .../wsdl/KadasterStukdeelRecht.java | 230 - .../wsdl/KadasterStukdeelRechtArray.java | 74 - .../KadasterStukdeelReferentiesLijst.java | 96 - ...kselKadastraleKaartPerceelRequestType.java | 231 - ...selKadastraleKaartPerceelResponseType.java | 69 - ...elKadastraleKaartPerceelV2RequestType.java | 231 - ...lKadastraleKaartPerceelV2ResponseType.java | 69 - ...elKadastraleKaartPerceelV3RequestType.java | 231 - ...lKadastraleKaartPerceelV3ResponseType.java | 69 - ...selKadastraleKaartPostcodeRequestType.java | 141 - ...elKadastraleKaartPostcodeResponseType.java | 69 - ...lKadastraleKaartPostcodeV2RequestType.java | 141 - ...KadastraleKaartPostcodeV2ResponseType.java | 69 - ...lKadastraleKaartPostcodeV3RequestType.java | 141 - ...KadastraleKaartPostcodeV3ResponseType.java | 69 - ...terUittrekselKadastraleKaartResultaat.java | 95 - ...rUittrekselKadastraleKaartResultaatV2.java | 95 - .../KadasterUittrekselKadastraleKaartV2.java | 93 - .../wsdl/KadasterV2AangebodenStuk.java | 340 - .../wsdl/KadasterV2AangebodenStukArray.java | 74 - .../wsdl/KadasterV2Aantekening.java | 391 - .../wsdl/KadasterV2AantekeningArray.java | 74 - .../wsdl/KadasterV2AantekeningWKPB.java | 175 - .../wsdl/KadasterV2AantekeningWKPBArray.java | 74 - .../wsdl/KadasterV2Aanvulling.java | 96 - .../wsdl/KadasterV2AanvullingArray.java | 74 - .../wsdl/KadasterV2AcgIdentificatie.java | 124 - .../wsdl/KadasterV2AdresLocatie.java | 123 - .../wsdl/KadasterV2AdresLocatieArray.java | 74 - .../companyinfo/wsdl/KadasterV2Bedrag.java | 87 - .../wsdl/KadasterV2Beslaglegging.java | 257 - .../wsdl/KadasterV2BeslagleggingArray.java | 74 - .../companyinfo/wsdl/KadasterV2Bijlage.java | 98 - .../wsdl/KadasterV2BijlageArray.java | 74 - .../companyinfo/wsdl/KadasterV2Breuk.java | 94 - .../wsdl/KadasterV2BronDocumentResponse.java | 65 - .../wsdl/KadasterV2Coordinaat.java | 148 - .../wsdl/KadasterV2DeelEnNummer.java | 173 - .../wsdl/KadasterV2ErfpachtCanon.java | 259 - .../wsdl/KadasterV2ErfpachtCanonArray.java | 74 - .../KadasterV2GerelateerdeOpenbareRuimte.java | 123 - .../KadasterV2GetBronDocumentRequestType.java | 177 - ...KadasterV2GetBronDocumentResponseType.java | 69 - ...hecairBerichtObjectByAdresRequestType.java | 168 - ...ecairBerichtObjectByAdresResponseType.java | 69 - ...jectByKadastraleAanduidingRequestType.java | 159 - ...ectByKadastraleAanduidingResponseType.java | 69 - ...airBerichtObjectByObjectIdRequestType.java | 96 - ...irBerichtObjectByObjectIdResponseType.java | 69 - ...straalBerichtObjectByAdresRequestType.java | 168 - ...traalBerichtObjectByAdresResponseType.java | 69 - ...jectByKadastraleAanduidingRequestType.java | 159 - ...ectByKadastraleAanduidingResponseType.java | 69 - ...aalBerichtObjectByObjectIdRequestType.java | 96 - ...alBerichtObjectByObjectIdResponseType.java | 69 - ...erV2GetKoopsommenOverzichtRequestType.java | 168 - ...rV2GetKoopsommenOverzichtResponseType.java | 69 - ...kselKadastraleKaartByAdresRequestType.java | 141 - ...selKadastraleKaartByAdresResponseType.java | 69 - ...aartByKadastraleAanduidingRequestType.java | 132 - ...artByKadastraleAanduidingResponseType.java | 69 - ...lKadastraleKaartByObjectIdRequestType.java | 69 - ...KadastraleKaartByObjectIdResponseType.java | 69 - .../wsdl/KadasterV2GevraagdGebied.java | 228 - .../wsdl/KadasterV2GezamenlijkAandeel.java | 95 - .../KadasterV2GezamenlijkAandeelArray.java | 74 - .../companyinfo/wsdl/KadasterV2Historie.java | 210 - .../companyinfo/wsdl/KadasterV2Hoofdzaak.java | 95 - .../wsdl/KadasterV2HoofdzaakArray.java | 74 - .../wsdl/KadasterV2HypothecairBericht.java | 398 - .../KadasterV2HypothecairBerichtResponse.java | 146 - .../companyinfo/wsdl/KadasterV2Hypotheek.java | 230 - .../wsdl/KadasterV2HypotheekArray.java | 74 - .../wsdl/KadasterV2JaarlijksBedrag.java | 95 - .../wsdl/KadasterV2JaarlijksBedragArray.java | 74 - .../wsdl/KadasterV2KadastraalBericht.java | 397 - .../KadasterV2KadastraalBerichtResponse.java | 146 - .../wsdl/KadasterV2KadastraleAanduiding.java | 149 - .../wsdl/KadasterV2KadastraleGrootte.java | 95 - .../companyinfo/wsdl/KadasterV2Koopsom.java | 150 - .../wsdl/KadasterV2KoopsomGegeven.java | 175 - .../wsdl/KadasterV2KoopsomGegevenArray.java | 74 - .../wsdl/KadasterV2KoopsommenOverzicht.java | 207 - ...KadasterV2KoopsommenOverzichtResponse.java | 91 - .../wsdl/KadasterV2LandinrichtingsRente.java | 94 - .../KadasterV2LandinrichtingsRenteArray.java | 74 - .../wsdl/KadasterV2LocatieBinnenland.java | 253 - .../KadasterV2LocatieBinnenlandArray.java | 74 - .../wsdl/KadasterV2LocatieBuitenland.java | 200 - .../KadasterV2LocatieBuitenlandArray.java | 74 - .../wsdl/KadasterV2LocatiePostbus.java | 148 - .../wsdl/KadasterV2LocatiePostbusArray.java | 74 - .../wsdl/KadasterV2Mandeligheid.java | 122 - .../wsdl/KadasterV2MandeligheidArray.java | 74 - .../wsdl/KadasterV2NatuurlijkPersoon.java | 577 - .../KadasterV2NatuurlijkPersoonArray.java | 74 - .../wsdl/KadasterV2NietNatuurlijkPersoon.java | 333 - .../KadasterV2NietNatuurlijkPersoonArray.java | 74 - .../wsdl/KadasterV2OnroerendeZaak.java | 790 - .../wsdl/KadasterV2OnroerendeZaakArray.java | 74 - .../KadasterV2OnroerendeZaakFiliatie.java | 119 - ...KadasterV2OnroerendeZaakFiliatieArray.java | 74 - .../KadasterV2OnroerendeZaakReference.java | 121 - ...adasterV2OnroerendeZaakReferenceArray.java | 74 - .../wsdl/KadasterV2OvergegaanIn.java | 318 - .../companyinfo/wsdl/KadasterV2Personen.java | 96 - .../wsdl/KadasterV2PostcodeTreffers.java | 266 - .../wsdl/KadasterV2RDCoordinaat.java | 96 - .../wsdl/KadasterV2RedenVerzoek.java | 95 - .../wsdl/KadasterV2RedenVerzoekArray.java | 74 - .../companyinfo/wsdl/KadasterV2Splitsing.java | 148 - .../wsdl/KadasterV2SplitsingArray.java | 74 - .../companyinfo/wsdl/KadasterV2Stuk.java | 201 - .../companyinfo/wsdl/KadasterV2StukArray.java | 74 - .../companyinfo/wsdl/KadasterV2Stukdeel.java | 283 - .../wsdl/KadasterV2StukdeelArray.java | 74 - .../companyinfo/wsdl/KadasterV2Stukken.java | 95 - .../wsdl/KadasterV2Tenaamstelling.java | 389 - .../wsdl/KadasterV2TenaamstellingArray.java | 74 - ...erV2UittrekselKadastraleKaartResponse.java | 120 - .../companyinfo/wsdl/KadasterV2Verzoek.java | 121 - .../wsdl/KadasterV2VerzoekArray.java | 74 - .../wsdl/KadasterV2ZakelijkRecht.java | 283 - .../wsdl/KadasterV2ZakelijkRechtArray.java | 74 - .../companyinfo/wsdl/KadasterValueList.java | 69 - ...ValueListGetMunicipalitiesRequestType.java | 37 - ...alueListGetMunicipalitiesResponseType.java | 69 - ...KadasterValueListGetRangesRequestType.java | 37 - ...adasterValueListGetRangesResponseType.java | 69 - .../companyinfo/wsdl/KadastraalPerceel.java | 142 - .../wsdl/KadastraleAanduiding.java | 200 - .../wsdl/KadastraleAanduidingArray.java | 74 - .../wsdl/KadastraleAanduidingLijst.java | 88 - .../companyinfo/wsdl/Koopsom.java | 199 - .../companyinfo/wsdl/KoopsomArray.java | 74 - .../companyinfo/wsdl/KoopsommenOverzicht.java | 218 - .../wsdl/KoopsommenOverzichtV2.java | 93 - .../companyinfo/wsdl/KvkDate.java | 115 - .../companyinfo/wsdl/KvkDossier.java | 1573 -- .../companyinfo/wsdl/KvkExtractDocument.java | 97 - .../wsdl/KvkGetDossierRequestType.java | 96 - .../wsdl/KvkGetDossierResponseType.java | 69 - .../KvkGetExtractDocumentRequestType.java | 88 - .../KvkGetExtractDocumentResponseType.java | 69 - .../companyinfo/wsdl/KvkReference.java | 250 - .../companyinfo/wsdl/KvkReferenceArray.java | 74 - .../wsdl/KvkReferencePagedResult.java | 96 - .../KvkSearchDossierNumberRequestType.java | 141 - .../KvkSearchDossierNumberResponseType.java | 69 - .../wsdl/KvkSearchParametersRequestType.java | 287 - .../wsdl/KvkSearchParametersResponseType.java | 69 - .../wsdl/KvkSearchPostcodeRequestType.java | 133 - .../wsdl/KvkSearchPostcodeResponseType.java | 69 - .../wsdl/KvkSearchSelectionRequestType.java | 333 - .../wsdl/KvkSearchSelectionResponseType.java | 69 - .../wsdl/KvkUpdateAddDossierRequestType.java | 96 - .../wsdl/KvkUpdateAddDossierResponseType.java | 37 - .../KvkUpdateCheckDossierRequestType.java | 123 - .../KvkUpdateCheckDossierResponseType.java | 69 - ...vkUpdateGetChangedDossiersRequestType.java | 117 - ...kUpdateGetChangedDossiersResponseType.java | 69 - .../wsdl/KvkUpdateGetDossiersRequestType.java | 87 - .../KvkUpdateGetDossiersResponseType.java | 69 - .../companyinfo/wsdl/KvkUpdateReference.java | 153 - .../wsdl/KvkUpdateReferenceArray.java | 74 - .../wsdl/KvkUpdateReferencePagedResult.java | 96 - .../KvkUpdateRemoveDossierRequestType.java | 96 - .../KvkUpdateRemoveDossierResponseType.java | 37 - .../wsdl/Landinrichtingsrente.java | 96 - .../companyinfo/wsdl/LatLonCoordinates.java | 77 - .../wsdl/LatLonCoordinatesArray.java | 74 - ...LatLonCoordinatesInternationalAddress.java | 213 - ...nCoordinatesInternationalAddressArray.java | 74 - .../wsdl/LatLonCoordinatesMatch.java | 132 - .../companyinfo/wsdl/Lid.java | 96 - .../companyinfo/wsdl/LidArray.java | 74 - .../companyinfo/wsdl/LidLijst.java | 88 - .../companyinfo/wsdl/Locatie.java | 96 - .../companyinfo/wsdl/LocatieBinnenland.java | 199 - .../wsdl/LocatieBinnenlandArray.java | 74 - .../wsdl/LocatieBinnenlandLijst.java | 88 - .../companyinfo/wsdl/LocatieBuitenland.java | 149 - .../companyinfo/wsdl/LoginRequestType.java | 96 - .../companyinfo/wsdl/LoginResponseType.java | 69 - .../companyinfo/wsdl/LogoutRequestType.java | 37 - .../companyinfo/wsdl/LogoutResponseType.java | 37 - .../companyinfo/wsdl/Mandeligheid.java | 96 - ...MapViewInternationalLatLonRequestType.java | 159 - ...apViewInternationalLatLonResponseType.java | 67 - .../wsdl/MapViewLatLonRequestType.java | 188 - .../wsdl/MapViewLatLonResponseType.java | 67 - .../wsdl/MapViewPostcodeV2RequestType.java | 150 - .../wsdl/MapViewPostcodeV2ResponseType.java | 67 - .../wsdl/MapViewRDRequestType.java | 188 - .../wsdl/MapViewRDResponseType.java | 67 - .../wsdl/MetaElementDefinition.java | 221 - .../wsdl/MetaElementDefinitionArray.java | 74 - .../wsdl/MetaGetMethodRequestType.java | 96 - .../wsdl/MetaGetMethodResponseType.java | 69 - .../wsdl/MetaGetServiceRequestType.java | 69 - .../wsdl/MetaGetServiceResponseType.java | 69 - .../wsdl/MetaGetServicesRequestType.java | 37 - .../wsdl/MetaGetServicesResponseType.java | 69 - .../wsdl/MetaMethodDefinition.java | 294 - .../wsdl/MetaMethodDefinitionArray.java | 74 - .../companyinfo/wsdl/MetaMethodReference.java | 158 - .../wsdl/MetaMethodReferenceArray.java | 74 - .../wsdl/MetaProtocolDefinition.java | 123 - .../wsdl/MetaProtocolDefinitionArray.java | 74 - .../wsdl/MetaServiceDefinition.java | 227 - .../wsdl/MetaServiceDefinitionArray.java | 74 - .../wsdl/MetaServiceReference.java | 176 - .../wsdl/MetaServiceReferenceArray.java | 74 - .../wsdl/MetaValidationDefinition.java | 96 - .../wsdl/MetaValidationDefinitionArray.java | 74 - .../companyinfo/wsdl/NatuurlijkPersoon.java | 322 - .../companyinfo/wsdl/NatuurlijkPersoonV2.java | 376 - .../wsdl/NbwoEstimateValueRequestType.java | 204 - .../wsdl/NbwoEstimateValueResponseType.java | 69 - .../wsdl/NbwoKenmerkenModelResultaat.java | 95 - .../NbwoPostcodeStraatModelResultaat.java | 207 - .../wsdl/NbwoVorigeVerkoopModelResultaat.java | 181 - .../companyinfo/wsdl/NbwoWaarde.java | 644 - .../companyinfo/wsdl/NbwoWaardeVerdeling.java | 98 - .../wsdl/NbwoWaardeVerdelingArray.java | 74 - .../companyinfo/wsdl/Neighborhood.java | 69 - .../companyinfo/wsdl/NeighborhoodArray.java | 74 - .../companyinfo/wsdl/NeighborhoodName.java | 96 - .../wsdl/NeighborhoodNameArray.java | 74 - .../wsdl/NeighborhoodNamePagedResult.java | 96 - .../wsdl/NeighborhoodPagedResult.java | 96 - .../wsdl/NietNatuurlijkPersoon.java | 149 - .../companyinfo/wsdl/ObjectFactory.java | 19024 ---------------- .../companyinfo/wsdl/OnroerendeZaak.java | 474 - .../companyinfo/wsdl/Overzicht.java | 122 - .../wsdl/OverzichtNatuurlijkPersoon.java | 122 - .../wsdl/OverzichtNietNatuurlijkPersoon.java | 96 - .../wsdl/OverzichtOnroerendeZaak.java | 148 - .../wsdl/OverzichtOnroerendeZaakArray.java | 74 - .../companyinfo/wsdl/OverzichtPersoon.java | 122 - .../wsdl/OverzichtPersoonArray.java | 74 - .../companyinfo/wsdl/OverzichtPersoonV2.java | 148 - .../wsdl/OverzichtPersoonV2Array.java | 74 - .../companyinfo/wsdl/OverzichtRecht.java | 96 - .../companyinfo/wsdl/OverzichtRechtArray.java | 74 - .../companyinfo/wsdl/OverzichtV2.java | 122 - .../companyinfo/wsdl/PCReeks.java | 539 - .../companyinfo/wsdl/PCReeksArray.java | 74 - .../wsdl/PCReeksSearchPartsPagedResult.java | 123 - .../companyinfo/wsdl/PRBeperking.java | 231 - .../companyinfo/wsdl/PRBeperkingArray.java | 74 - .../companyinfo/wsdl/PRBeperkingLijst.java | 88 - .../wsdl/PRBeperkingenKadastraalObject.java | 95 - .../companyinfo/wsdl/Perceel.java | 620 - .../companyinfo/wsdl/PerceelArray.java | 74 - .../companyinfo/wsdl/PerceelDetails.java | 93 - .../wsdl/PerceelSearchPartsPagedResult.java | 123 - .../companyinfo/wsdl/Persoon.java | 267 - .../companyinfo/wsdl/PersoonArray.java | 74 - .../companyinfo/wsdl/PersoonV2.java | 267 - .../companyinfo/wsdl/PersoonV2Array.java | 74 - .../companyinfo/wsdl/Province.java | 96 - .../companyinfo/wsdl/ProvinceArray.java | 74 - .../companyinfo/wsdl/ProvincePagedResult.java | 96 - .../companyinfo/wsdl/RDCoordinates.java | 77 - .../companyinfo/wsdl/RDCoordinatesArray.java | 74 - .../companyinfo/wsdl/RDCoordinatesMatch.java | 132 - .../companyinfo/wsdl/RangeAddress.java | 122 - .../companyinfo/wsdl/RangeAddressArray.java | 74 - .../wsdl/RangeAddressPagedResult.java | 96 - .../companyinfo/wsdl/Recht.java | 307 - .../companyinfo/wsdl/RechtArray.java | 74 - .../companyinfo/wsdl/RechtenLijst.java | 88 - .../companyinfo/wsdl/ResultInfo.java | 131 - .../companyinfo/wsdl/RiskAddress.java | 279 - ...GetRiskPersonCompanyReportRequestType.java | 304 - ...etRiskPersonCompanyReportResponseType.java | 69 - .../wsdl/RiskCheckPersonRequestType.java | 439 - .../wsdl/RiskCheckPersonResponseType.java | 69 - .../companyinfo/wsdl/RiskCompany.java | 313 - .../companyinfo/wsdl/RiskCompanyAddress.java | 96 - .../wsdl/RiskCompanyAddressArray.java | 74 - .../companyinfo/wsdl/RiskCompanyArray.java | 74 - .../companyinfo/wsdl/RiskCompanyReport.java | 121 - .../companyinfo/wsdl/RiskInsolvency.java | 145 - .../companyinfo/wsdl/RiskInsolvencyArray.java | 74 - .../wsdl/RiskInsolvencyCurator.java | 284 - .../wsdl/RiskInsolvencyCuratorArray.java | 74 - .../companyinfo/wsdl/RiskInsolvencyJudge.java | 147 - .../wsdl/RiskInsolvencyPublication.java | 151 - .../wsdl/RiskInsolvencyPublicationArray.java | 74 - .../wsdl/RiskInsolvencyRegistration.java | 226 - .../companyinfo/wsdl/RiskLegalRestraint.java | 147 - .../wsdl/RiskLegalRestraintAdministrator.java | 119 - .../wsdl/RiskLegalRestraintDecision.java | 226 - .../wsdl/RiskLegalRestraintDecisionArray.java | 74 - .../wsdl/RiskLegalRestraintPerson.java | 152 - .../wsdl/RiskLegalRestraintRegistry.java | 122 - .../companyinfo/wsdl/RiskPerson.java | 230 - .../wsdl/RiskPersonCompanyReport.java | 123 - .../companyinfo/wsdl/RiskResult.java | 124 - .../companyinfo/wsdl/RouteAddress.java | 227 - .../wsdl/RouteCoordinateLatLong.java | 77 - .../companyinfo/wsdl/RouteCoordinateRD.java | 77 - .../companyinfo/wsdl/RouteCoordinates.java | 95 - .../wsdl/RouteCoordinatesLatLon.java | 87 - .../companyinfo/wsdl/RouteCoordinatesRD.java | 87 - .../RouteDescriptionCoordinatesLatLon.java | 96 - .../wsdl/RouteDescriptionCoordinatesRD.java | 96 - .../companyinfo/wsdl/RouteInfo.java | 77 - .../companyinfo/wsdl/RouteLocation.java | 96 - .../companyinfo/wsdl/RoutePart.java | 105 - .../companyinfo/wsdl/RoutePartArray.java | 74 - ...ePlannerDescriptionAddressRequestType.java | 366 - ...PlannerDescriptionAddressResponseType.java | 69 - ...erDescriptionCoordinatesRDRequestType.java | 141 - ...rDescriptionCoordinatesRDResponseType.java | 69 - ...nerDescriptionDutchAddressRequestType.java | 312 - ...erDescriptionDutchAddressResponseType.java | 69 - .../RoutePlannerDescriptionRequestType.java | 114 - .../RoutePlannerDescriptionResponseType.java | 69 - ...PlannerDescriptionShortestRequestType.java | 114 - ...lannerDescriptionShortestResponseType.java | 69 - ...scriptionCoordinatesLatLonRequestType.java | 168 - ...criptionCoordinatesLatLonResponseType.java | 69 - .../RoutePlannerEUDescriptionRequestType.java | 168 - ...RoutePlannerEUDescriptionResponseType.java | 69 - .../RoutePlannerEUInformationRequestType.java | 141 - ...RoutePlannerEUInformationResponseType.java | 69 - .../wsdl/RoutePlannerEUMapRequestType.java | 258 - .../wsdl/RoutePlannerEUMapResponseType.java | 67 - .../wsdl/RoutePlannerGetRouteRequestType.java | 404 - .../RoutePlannerGetRouteResponseType.java | 69 - ...ePlannerInformationAddressRequestType.java | 339 - ...PlannerInformationAddressResponseType.java | 69 - ...nerInformationDutchAddressRequestType.java | 285 - ...erInformationDutchAddressResponseType.java | 69 - .../RoutePlannerInformationRequestType.java | 123 - .../RoutePlannerInformationResponseType.java | 69 - ...RDDescriptionCoordinatesRDRequestType.java | 159 - ...DDescriptionCoordinatesRDResponseType.java | 69 - .../RoutePlannerRDDescriptionRequestType.java | 159 - ...RoutePlannerRDDescriptionResponseType.java | 69 - .../RoutePlannerRDInformationRequestType.java | 141 - ...RoutePlannerRDInformationResponseType.java | 69 - .../companyinfo/wsdl/RoutePlannerRoute.java | 174 - .../companyinfo/wsdl/RouteSummary.java | 105 - .../companyinfo/wsdl/SearchParts.java | 276 - .../companyinfo/wsdl/SepaBankAccountData.java | 123 - .../wsdl/SepaBankAccountIbanData.java | 142 - .../companyinfo/wsdl/SepaBankDetails.java | 123 - ...paConvertBankAccountNumberRequestType.java | 123 - ...aConvertBankAccountNumberResponseType.java | 69 - ...vertBasicBankAccountNumberRequestType.java | 96 - ...ertBasicBankAccountNumberResponseType.java | 69 - .../companyinfo/wsdl/SepaIbanDetails.java | 150 - .../wsdl/SepaIbanDetailsRequestType.java | 69 - .../wsdl/SepaIbanDetailsResponseType.java | 69 - ...nkAccountNumberFormatValidationReport.java | 87 - .../SepaMatchAccountHolderRequestType.java | 96 - .../SepaMatchAccountHolderResponseType.java | 69 - .../wsdl/SepaMatchAccountHolderResult.java | 169 - .../wsdl/SepaMatchBankAccountDetails.java | 121 - .../wsdl/SepaMatchBankAccountHolder.java | 149 - .../wsdl/SepaMatchNameMatchingResult.java | 95 - ...nalBankAccountNumberFormatRequestType.java | 69 - ...alBankAccountNumberFormatResponseType.java | 69 - .../companyinfo/wsdl/Session.java | 214 - .../companyinfo/wsdl/SessionArray.java | 74 - .../companyinfo/wsdl/SessionPagedResult.java | 96 - .../companyinfo/wsdl/SortedPostcode.java | 114 - .../companyinfo/wsdl/SortedPostcodeArray.java | 74 - .../wsdl/SortedPostcodePagedResult.java | 96 - .../companyinfo/wsdl/StringArray.java | 74 - .../companyinfo/wsdl/Stuk.java | 206 - .../companyinfo/wsdl/StukArray.java | 74 - .../wsdl/StukMetKadastraleAanduiding.java | 96 - .../StukMetKadastraleAanduidingArray.java | 74 - .../StukMetKadastraleAanduidingLijst.java | 88 - .../wsdl/StukReferentiesLijst.java | 88 - .../wsdl/UittrekselKadastraleKaart.java | 120 - .../companyinfo/wsdl/User.java | 538 - .../wsdl/UserAddGroupRequestType.java | 77 - .../wsdl/UserAddGroupResponseType.java | 37 - .../wsdl/UserChangePasswordRequestType.java | 114 - .../wsdl/UserChangePasswordResponseType.java | 37 - .../wsdl/UserCreateV2RequestType.java | 384 - .../wsdl/UserCreateV2ResponseType.java | 114 - .../companyinfo/wsdl/UserCredentials.java | 114 - .../wsdl/UserEditBalanceRequestType.java | 77 - .../wsdl/UserEditBalanceResponseType.java | 37 - .../wsdl/UserEditExtendedV2RequestType.java | 420 - .../wsdl/UserEditExtendedV2ResponseType.java | 37 - .../UserEditHostRestrictionsRequestType.java | 87 - .../UserEditHostRestrictionsResponseType.java | 37 - .../wsdl/UserEditV2RequestType.java | 249 - .../wsdl/UserEditV2ResponseType.java | 37 - .../companyinfo/wsdl/UserGroup.java | 87 - .../companyinfo/wsdl/UserGroupArray.java | 74 - .../wsdl/UserGroupPagedResult.java | 96 - .../UserListAssignableGroupsRequestType.java | 77 - .../UserListAssignableGroupsResponseType.java | 69 - .../wsdl/UserNotifyRequestType.java | 87 - .../wsdl/UserNotifyResponseType.java | 69 - .../wsdl/UserRemoveGroupRequestType.java | 77 - .../wsdl/UserRemoveGroupResponseType.java | 37 - .../wsdl/UserRemoveRequestType.java | 59 - .../wsdl/UserRemoveResponseType.java | 37 - .../wsdl/UserSessionListRequestType.java | 77 - .../wsdl/UserSessionListResponseType.java | 69 - .../wsdl/UserSessionRemoveRequestType.java | 87 - .../wsdl/UserSessionRemoveResponseType.java | 37 - .../companyinfo/wsdl/UserV2.java | 534 - .../companyinfo/wsdl/UserV2Array.java | 74 - .../companyinfo/wsdl/UserV2PagedResult.java | 96 - .../wsdl/UserViewBalanceRequestType.java | 59 - .../wsdl/UserViewBalanceResponseType.java | 59 - .../UserViewHostRestrictionsRequestType.java | 59 - .../UserViewHostRestrictionsResponseType.java | 69 - .../wsdl/UserViewV2RequestType.java | 59 - .../wsdl/UserViewV2ResponseType.java | 69 - .../wsdl/VatProxyViesCheckVatResponse.java | 196 - .../wsdl/VatValidateRequestType.java | 69 - .../wsdl/VatValidateResponseType.java | 69 - .../companyinfo/wsdl/VatValidation.java | 87 - .../wsdl/VatViesProxyCheckVatRequestType.java | 69 - .../VatViesProxyCheckVatResponseType.java | 69 - .../wsdl/VerenigingVanEigenaren.java | 96 - .../companyinfo/wsdl/package-info.java | 9 - .../companyinfo/CompanyinfoProxy.kt | 98 - .../companyinfo/README.md | 6 - ...CompanyinfoDocumentHttpMessageConverter.kt | 41 - .../domain/CompanyinfoCompanyProfile.kt | 27 - .../companyinfo/domain/CompanyinfoDocument.kt | 29 - .../domain/CompanyinfoDocumentMetadata.kt | 19 - .../domain/CompanyinfoFilingHistoryList.kt | 34 - .../CompanyInfoAuthInterceptor.kt | 16 - .../RequestResponseLoggingInterceptor.kt | 52 - .../companyinfo/CompanyInfoTest.kt | 65 - .../domain/CompanyInfoCompanyDataParseTest.kt | 73 - .../src/test/resources/soap_doclit.wsdl.xml | 17812 --------------- 1651 files changed, 280608 deletions(-) delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/proxy/Config.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/proxy/SOAPConnector.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObject.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObjectArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObjectLijst.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRecht.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRechtArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRechtLijst.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningenKadastraalObject.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Account.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountCreationToken.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditHostRestrictionsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditHostRestrictionsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationStatusRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationStatusResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationTokenRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationTokenResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetOrderTokenRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetOrderTokenResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountOrderToken.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserListV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserListV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserSearchV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserSearchV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2PagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewBalanceRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewBalanceResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewHostRestrictionsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewHostRestrictionsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCityListNeighborhoodsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCityListNeighborhoodsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCitySearchV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCitySearchV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListCitiesRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListCitiesResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListNeighborhoodsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListNeighborhoodsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictSearchRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictSearchResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodNameRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodNameResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodPhraseSearchRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodPhraseSearchResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelParameterSearchRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelParameterSearchResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelPhraseSearchRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelPhraseSearchResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListDistrictsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListDistrictsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListNeighborhoodsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListNeighborhoodsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceSearchRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceSearchResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksAddressSearchRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksAddressSearchResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksFullParameterSearchRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksFullParameterSearchResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksParameterSearchRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksParameterSearchResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPhraseSearchRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPhraseSearchResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPostcodeSearchRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPostcodeSearchResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCode.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeLookupRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeLookupResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeToNeighborhoodcodeRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeToNeighborhoodcodeResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Base64BinaryArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BbanDetails.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAddress.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAddressArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAnnualFinancialStatement.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAnnualFinancialStatementArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessBankAccount.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessBankAccountArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessCompany.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDate.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDatedItem.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDatedItemArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDossier.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDossierErrors.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessFinancialValues.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessGetDossierRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessGetDossierResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessInternationalAddress.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessInternationalAddressArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentative.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeCompany.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeCompanyArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRatios.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRevisor.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRevisorArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessSocialBalance.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessStakeHolder.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessStakeHolderArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObject.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectDocument.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectDocumentResultaat.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectResultaat.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectResultaatV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagDepartment.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagDepartmentArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByBovagIdRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByBovagIdResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByDutchBusinessRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByDutchBusinessResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagMember.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCode.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCodeArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCodeInfo.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKSection.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKSectionArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKToSBIRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKToSBIResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDate.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossier.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierExtended.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierExtendedPart.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierSBI.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2PagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3PagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetBIKDescriptionRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetBIKDescriptionResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierExtendedRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierExtendedResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierSBIRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierSBIResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierV3RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierV3ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetEstablishmentNumberRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetEstablishmentNumberResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetSBIDescriptionRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetSBIDescriptionResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferencePagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2PagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3PagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICode.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICodeArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICodeInfo.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBISection.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBISectionArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBIToBIKRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBIToBIKResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchAddressRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchAddressResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchDossierNumberRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchDossierNumberResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchNameRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchNameResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV3RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV3ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchPostcodeRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchPostcodeResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateAddDossierRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateAddDossierResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateCheckDossierRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateCheckDossierResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetChangedDossiersRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetChangedDossiersResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetDossiersRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetDossiersResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReferencePagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateRemoveDossierRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateRemoveDossierResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Car.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPriceRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPriceResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPrices.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDValuation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDValuationArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBP.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBPV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBody.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBodyArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarCheckCode.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarDataV3Result.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarEnvironment.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarExtended.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarOption.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarOptions.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarCheckCodeRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarCheckCodeResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataExtendedRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataExtendedResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataOptionsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataOptionsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPrice.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPriceRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPriceResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV3RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV3ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarStatus.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarTypeArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeData.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeDataRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeDataResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrand.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrandArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrandPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListBrandsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListBrandsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListModelsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListModelsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListVersionsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListVersionsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheck.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheckRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheckResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModel.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModelArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModelPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOption.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionPackage.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionPackageArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptions.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsManufacture.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsPackage.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsStandard.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhoto.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotoArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotosRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotosResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPrices.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersion.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPrice.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearData.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearDataRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearDataResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/City.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2PagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceAddressReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceAddressReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusiness.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReferencePagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDate.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDocumentReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDocumentReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetBusinessRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetBusinessResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetPersonRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetPersonResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceNoteReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceNoteReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePerson.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReferencePagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceRoleReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceRoleReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSanctionReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSanctionReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchBusinessesRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchBusinessesResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchPersonsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchPersonsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreateTestUserRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreateTestUserResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdditionalInformation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAddressV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAddressV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdvisor.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdvisorArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBalanceSheet.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBanker.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBankerArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeAdditionalInformation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeBankruptcyEvent.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeBankruptcyEventArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeEvent.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeEventArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeIndustryComparison.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeMisc.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNSSODetail.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNSSODetailArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNegativeInformation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBePaymentExpectationsSummary.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeProtestedBill.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeProtestedBillArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeRegisteredContractor.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeRegisteredContractorArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeChangedString.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeChangedStringArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompany.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivity.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityClassificationV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityClassificationV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationCommentV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationCommentV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEImageAccountV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEImageAccountV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEMiscellaneousV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEOwnerV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEOwnerV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDETurnoverRangeV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationHistoricalEventV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationHistoricalEventV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLFinancialItemV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLKvkFilingV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLMiscellaneousV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdvisorV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdvisorV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBalanceSheetV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBalanceSheetV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBankerV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBankerV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBasicInformationV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBasicInformationV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCompanyV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCompanyV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyContactInformationV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyContactInformationV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditRatingV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditRatingV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditScoreV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditScoreV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyEmployeeInformationV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyEmployeeInformationV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyFinancialStatementV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyFinancialStatementV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyGroupStructureV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyGroupStructureV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyIdentificationV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyIdentificationV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyKeyValueV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyKeyValueV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyListEntry.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyListEntryArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEBankruptcyV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEBankruptcyV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEDirectorEventV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEDirectorEventV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyEventV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDETrusteeV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDETrusteeV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLCourtItemV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLCourtItemV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherFinancialsV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherFinancialsV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherInformationV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherInformationV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPaymentDataV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPaymentDataV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyProfitAndLossV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyProfitAndLossV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyRatiosV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyRatiosV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFull.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFullV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFullV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareCapitalStructureV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareCapitalStructureV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareHolderV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareHolderV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyStatusV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyStatusV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanySummaryV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanySummaryV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdate.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdateArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdatePagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDescriptionV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDescriptionV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDirector.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDirectorArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeEmployeeInformation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeEmployeeInformationArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeFinancialRatios.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeIndustryQuartilyAnalysis.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanyBasicInformation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanyIdentification.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanySummary.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdContactInformation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCreditScore.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdDirectors.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdFinancialStatement.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdFinancialStatementArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdGroupStructure.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdOtherInformation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdShareCapitalStructure.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorAddCompanyRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorAddCompanyResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorGetUpdatedCompaniesRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorGetUpdatedCompaniesResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorRemoveCompanyRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorRemoveCompanyResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlAdditionalInformation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtData.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtDataFacts.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtDataReceiver.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiability.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiabilityArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiabilityInformation403.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlMisc.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlNegativeInformation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlPaymentExpectationsSummary.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeOtherFinancials.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorsV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorsV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPositionV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPositionV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPreviousDirectorV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPreviousDirectorV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePreviousDirector.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePreviousDirectorArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeProfitAndLossFigures.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeQuartiles.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteria.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaCombination.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaCombinationArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaParam.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaParamArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchResultV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeShareHolder.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeShareHolderArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddress.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressWithTelephone.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressWithTelephoneArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeValueV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeValueV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBAddress.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferencePagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2PagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessVerification.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBCommentary.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBCommentaryArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBEmployeeCount.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBEnterpriseManagement.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketing.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlus.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusLinkage.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusLinkageResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMonetaryAmount.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBQuickCheck.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBRelatedBusiness.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBSICCode.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBSICCodeArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBScoreGroup.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBScoreGroupArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/District.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DistrictArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DistrictPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbBusinessVerificationRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbBusinessVerificationResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbEnterpriseManagementRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbEnterpriseManagementResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbGetReferenceRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbGetReferenceResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbQuickCheckRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbQuickCheckResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusLinkageRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusLinkageResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DocumentOverzicht.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfo.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoDistanceLookupRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoDistanceLookupResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoTimeLookupRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoTimeLookupResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressPostcodeRange.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressRangePostcodeSearchRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressRangePostcodeSearchResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPosition.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPositionArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPositionFunctionary.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAddressV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAddressV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAnnualFinancialStatement.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAnnualFinancialStatementSummary.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessChangeSet.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDate.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDateV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDateV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossier.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierHistory.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterprise.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterpriseV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterpriseV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishment.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReferencePagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV3Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractChangeForecast.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractChangeSet.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDataV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDataV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocument.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentData.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentDataV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentDataV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractHistory.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessFormattedAddress.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAnnualFinancialStatementRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAnnualFinancialStatementResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraph.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphLink.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphLinkArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphNode.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphNodeArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierHistoryRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierHistoryResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV3RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV3ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV3RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV3ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryChangedRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryChangedResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalEntityRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalEntityResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV3RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV3ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetNonMarketingIndicatorRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetNonMarketingIndicatorResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetOrganizationTreeRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetOrganizationTreeResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetPositionsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetPositionsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIDescriptionRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIDescriptionResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetVatNumberRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetVatNumberResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessIdentifiers.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvency.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyPublication.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyPublicationArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntity.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityData.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiAddress.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiBusinessEntity.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiLegalForm.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiRegistration.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiRegistrationAuthority.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiSuccessor.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessMoneyV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessMoneyV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsCompany.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsCompanyArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItem.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItemArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItemPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNonMarketingIndicator.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationNode.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationNodeArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationReferenceV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationReferenceV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationTree.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnership.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPeriod.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonnelInfoV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonnelInfoV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPosition.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionAuthorization.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionAuthorizationArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionCompany.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV3Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositions.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferencePagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2PagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICode.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICodeArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICodeInfo.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICollection.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICollectionArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBISection.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV3.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV3Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchDossierNumberRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchDossierNumberResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchEstablishmentsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchEstablishmentsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchNewsByDossierRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchNewsByDossierResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchPostcodeRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchPostcodeResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionSimpleRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionSimpleResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessStructure.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCheckInvestigationRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCheckInvestigationResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassificationResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedPerson.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedRole.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedSuspect.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedSuspectArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifyInvestigationRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifyInvestigationResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOExtract.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationStatus.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationToken.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganisation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganisationArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganizationNode.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganizationNodeArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPayment.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPerson.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPersonArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPickupInvestigationRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPickupInvestigationResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceipt.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceiptItem.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceiptItemArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBORole.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBORoleArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOStartInvestigationRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOStartInvestigationResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateAddDossierRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateAddDossierResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateCheckDossierRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateCheckDossierResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetChangedDossiersRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetChangedDossiersResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetDossiersRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetDossiersResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetOverviewRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetOverviewResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReferencePagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateRemoveDossierRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateRemoveDossierResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscription.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscriptionArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscriptionPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessVatNumber.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicle.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleAxle.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleAxleArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleBodyApproval.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleBodyApprovalArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleData.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEngine.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEnvironment.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEnvironmentArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleFeature.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetMarketValueRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetMarketValueResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetOwnerHistoryRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetOwnerHistoryResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetPurchaseReferenceRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetPurchaseReferenceResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleMarketValue.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleMileage.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnerHistory.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnership.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnershipArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePrice.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePriceValuation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePriceValuationArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePurchase.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePurchaseReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRecall.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRegistration.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRemark.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRemarkArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleStatus.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTaxData.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTechnicalWeight.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTypeApproval.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EDRScore.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EdrGetScoreRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EdrGetScoreResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAddress.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAddressArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAlarm.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAlarmContactDetails.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAnnualFigures.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAnnualFiguresArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAssets.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBalanceSheet.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerData.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerDataArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerKeyFigures.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankruptcy.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBirthInformation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBranchOffice.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBranchOfficeArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamity.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityEvent.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityEventArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityOther.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityOtherArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCapital.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCapitalArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRChamberOfCommerce.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompany.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyAnnualAccount.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyAnnualAccountArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyContinuedUnder.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyContinuedUnderArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItself.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItselfAlarm.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItselfCalamity.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyManagement.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyRelations.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyRelationsSimple.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanySimple.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanySimpleArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContactDetails.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContinuation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContinuationArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCountry.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCountryArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdvice.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdviceData.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdviceMother.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditFactor.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditFactorArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditRating.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCurator.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCuratorArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDebtRestructuringPrivatePersons.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDeclarationOfLiability.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDeclarationOfLiabilityArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDiscontinuance.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFiling.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialCalamity.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialCalamityArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetailValue.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetailValueArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetails.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFirstDirector.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFirstDirectorArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFounded.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFoundedArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistory.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistoryAdvisedLimit.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistoryAdvisedLimitArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRImportExport.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRItem.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRItemArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRJobTitle.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRJobTitleArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiabilities.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaison.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonCompany.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonCompanyArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonContactDetails.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonOfficialData.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRManagement.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRManagementArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRMoratorium.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRNumberOfEmployees.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRNumberOfEmployeesArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROfficialData.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROriginatedFrom.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROriginatedFromArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRParticipation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRParticipationArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPaymentInformation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPaymentInformationArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPercentageHistory.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPercentageHistoryArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPerson.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonSimple.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonSimpleArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonalDetails.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonnel.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRating.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingHistory.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingHistoryArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatio.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatioArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRReceiver.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRReceiverArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSectorOfIndustry.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSectorOfIndustryArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRShareHolder.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRShareHolderArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSpecialCompanyInformation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSpecialCompanyInformationArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTelephoneNumber.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTelephoneNumberArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTextSequence.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTextSequenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTitle.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTitleArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTradeName.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTradeNameArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GemeenteStuk.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GemeenteStukArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddress.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesLatLonRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesLatLonResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesRDRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesRDResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRadiusRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRadiusResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationHaversineDistanceRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationHaversineDistanceResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddress.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalLatLonToAddressRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalLatLonToAddressResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalPostcodeCoordinatesLatLonRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalPostcodeCoordinatesLatLonResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToAddressV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToAddressV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToPostcodeRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToPostcodeResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToRDRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToRDResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesLatLonRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesLatLonResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesRDRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesRDResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodDistanceRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodDistanceResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesLatLonRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesLatLonResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesRDRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesRDResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeDistanceRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeDistanceResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToAddressV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToAddressV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToLatLonRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToLatLonResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToPostcodeRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToPostcodeResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditCompanyLiaisonsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditCompanyLiaisonsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditGetReportRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditGetReportResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditManagementRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditManagementResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditQuickscanRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditQuickscanResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditRatingsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditRatingsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReport.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportAlarm.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportCalamity.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportCompanyLiaisons.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportManagement.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportNormal.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportQuickscan.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportRatings.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportVatNumber.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchIdentificationRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchIdentificationResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchNameRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchNameResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchPostcodeRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchPostcodeResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditVatNumberRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditVatNumberResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/HeaderAuthenticateType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/HeaderLoginType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddress.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddressArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddresses.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAffectedCompany.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAffectedCompanyArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCase.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyConcernedPerson.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCourtSession.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCurators.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyGetCaseByPublicationRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyGetCaseByPublicationResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalPerformingPerson.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalPerformingPersonArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalSubject.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublication.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublicationArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublicationList.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublications.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReceivers.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReport.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReportArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByCoCNumberRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByCoCNumberResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByPersonRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByPersonResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyTreatingAuthority.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/IntArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/International.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchInteractiveRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchInteractiveResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2Result.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddress.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddressArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddressPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterAddressCoordinatesRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterAddressCoordinatesResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBedrag.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBeknoptOnroerendeZaak.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBeknoptOnroerendeZaakArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBerichtObjectDocument.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocument.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocumentRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocumentResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterCoordinates.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuze.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuzeArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuzeLijst.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPerceelRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPerceelResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPostcodeRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPostcodeResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterGerelateerdStukdeel.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterGerelateerdStukdeelArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtObject.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV3RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV3ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV3RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV3ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtResultaat.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtResultaatV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheek.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStuk.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStukArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStukLijst.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaart.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartResultaat.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartResultaatV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterListValue.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterListValueArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatie.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBinnenland.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBinnenlandArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBuitenland.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterNatuurlijkPersoon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterNietNatuurlijkPersoon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzicht.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtNatuurlijkPersoon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtNietNatuurlijkPersoon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtOnroerendeZaak.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtOnroerendeZaakArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtRecht.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtRechtArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoonArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoonLijst.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeel.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelRecht.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelRechtArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelReferentiesLijst.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV3RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV3ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV3RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV3ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartResultaat.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartResultaatV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AangebodenStuk.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AangebodenStukArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Aantekening.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningWKPB.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningWKPBArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Aanvulling.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AanvullingArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AcgIdentificatie.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AdresLocatie.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AdresLocatieArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Bedrag.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Beslaglegging.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BeslagleggingArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Bijlage.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BijlageArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Breuk.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BronDocumentResponse.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Coordinaat.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2DeelEnNummer.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ErfpachtCanon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ErfpachtCanonArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GerelateerdeOpenbareRuimte.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetBronDocumentRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetBronDocumentResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByAdresRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByAdresResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByAdresRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByAdresResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKoopsommenOverzichtRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKoopsommenOverzichtResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByAdresRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByAdresResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GevraagdGebied.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GezamenlijkAandeel.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GezamenlijkAandeelArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Historie.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Hoofdzaak.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HoofdzaakArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypothecairBericht.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypothecairBerichtResponse.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Hypotheek.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypotheekArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2JaarlijksBedrag.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2JaarlijksBedragArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraalBericht.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraalBerichtResponse.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraleAanduiding.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraleGrootte.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Koopsom.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsomGegeven.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsomGegevenArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsommenOverzicht.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsommenOverzichtResponse.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LandinrichtingsRente.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LandinrichtingsRenteArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBinnenland.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBinnenlandArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBuitenland.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBuitenlandArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatiePostbus.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatiePostbusArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Mandeligheid.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2MandeligheidArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NatuurlijkPersoon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NatuurlijkPersoonArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NietNatuurlijkPersoon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NietNatuurlijkPersoonArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaak.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakFiliatie.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakFiliatieArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OvergegaanIn.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Personen.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2PostcodeTreffers.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RDCoordinaat.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RedenVerzoek.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RedenVerzoekArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Splitsing.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2SplitsingArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stuk.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2StukArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stukdeel.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2StukdeelArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stukken.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Tenaamstelling.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2TenaamstellingArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2UittrekselKadastraleKaartResponse.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Verzoek.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2VerzoekArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ZakelijkRecht.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ZakelijkRechtArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueList.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetMunicipalitiesRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetMunicipalitiesResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetRangesRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetRangesResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraalPerceel.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduiding.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduidingArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduidingLijst.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Koopsom.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsomArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsommenOverzicht.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsommenOverzichtV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkDate.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkDossier.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkExtractDocument.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetDossierRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetDossierResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetExtractDocumentRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetExtractDocumentResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReferencePagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchDossierNumberRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchDossierNumberResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchParametersRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchParametersResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchPostcodeRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchPostcodeResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchSelectionRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchSelectionResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateAddDossierRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateAddDossierResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateCheckDossierRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateCheckDossierResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetChangedDossiersRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetChangedDossiersResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetDossiersRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetDossiersResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReferencePagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateRemoveDossierRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateRemoveDossierResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Landinrichtingsrente.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinates.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesInternationalAddress.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesInternationalAddressArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesMatch.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Lid.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LidArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LidLijst.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Locatie.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenland.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenlandArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenlandLijst.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBuitenland.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LoginRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LoginResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LogoutRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LogoutResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Mandeligheid.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewInternationalLatLonRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewInternationalLatLonResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewLatLonRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewLatLonResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewPostcodeV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewPostcodeV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewRDRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewRDResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaElementDefinition.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaElementDefinitionArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetMethodRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetMethodResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServiceRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServiceResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServicesRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServicesResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodDefinition.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodDefinitionArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaProtocolDefinition.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaProtocolDefinitionArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceDefinition.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceDefinitionArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceReference.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceReferenceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaValidationDefinition.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaValidationDefinitionArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NatuurlijkPersoon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NatuurlijkPersoonV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoEstimateValueRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoEstimateValueResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoKenmerkenModelResultaat.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoPostcodeStraatModelResultaat.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoVorigeVerkoopModelResultaat.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaarde.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaardeVerdeling.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaardeVerdelingArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Neighborhood.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodName.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodNameArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodNamePagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NietNatuurlijkPersoon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ObjectFactory.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OnroerendeZaak.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Overzicht.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtNatuurlijkPersoon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtNietNatuurlijkPersoon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtOnroerendeZaak.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtOnroerendeZaakArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtRecht.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtRechtArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeks.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeksArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeksSearchPartsPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperking.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingLijst.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingenKadastraalObject.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Perceel.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelDetails.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelSearchPartsPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Persoon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Province.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ProvinceArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ProvincePagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinates.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinatesArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinatesMatch.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddress.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddressArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddressPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Recht.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RechtArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RechtenLijst.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ResultInfo.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskAddress.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckGetRiskPersonCompanyReportRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckGetRiskPersonCompanyReportResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckPersonRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckPersonResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompany.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyAddress.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyAddressArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyReport.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvency.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyCurator.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyCuratorArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyJudge.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyPublication.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyPublicationArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyRegistration.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraint.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintAdministrator.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintDecision.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintDecisionArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintPerson.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintRegistry.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskPerson.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskPersonCompanyReport.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteAddress.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinateLatLong.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinateRD.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinates.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinatesLatLon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinatesRD.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteDescriptionCoordinatesLatLon.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteDescriptionCoordinatesRD.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteInfo.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteLocation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePart.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePartArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionAddressRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionAddressResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionCoordinatesRDRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionCoordinatesRDResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionDutchAddressRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionDutchAddressResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionShortestRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionShortestResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionCoordinatesLatLonRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionCoordinatesLatLonResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUInformationRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUInformationResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUMapRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUMapResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerGetRouteRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerGetRouteResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationAddressRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationAddressResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationDutchAddressRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationDutchAddressResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionCoordinatesRDRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionCoordinatesRDResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDInformationRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDInformationResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRoute.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteSummary.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SearchParts.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankAccountData.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankAccountIbanData.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankDetails.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBankAccountNumberRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBankAccountNumberResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBasicBankAccountNumberRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBasicBankAccountNumberResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetails.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetailsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetailsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaInternationalBankAccountNumberFormatValidationReport.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchBankAccountDetails.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchBankAccountHolder.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchNameMatchingResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaValidateInternationalBankAccountNumberFormatRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaValidateInternationalBankAccountNumberFormatResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Session.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SessionArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SessionPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcode.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcodeArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcodePagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StringArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Stuk.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduiding.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduidingArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduidingLijst.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukReferentiesLijst.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UittrekselKadastraleKaart.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/User.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserAddGroupRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserAddGroupResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserChangePasswordRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserChangePasswordResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCreateV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCreateV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCredentials.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditBalanceRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditBalanceResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditExtendedV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditExtendedV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditHostRestrictionsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditHostRestrictionsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroup.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroupArray.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroupPagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserListAssignableGroupsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserListAssignableGroupsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserNotifyRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserNotifyResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveGroupRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveGroupResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionListRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionListResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionRemoveRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionRemoveResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2Array.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2PagedResult.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewBalanceRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewBalanceResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewHostRestrictionsRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewHostRestrictionsResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewV2RequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewV2ResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatProxyViesCheckVatResponse.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidateRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidateResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidation.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatViesProxyCheckVatRequestType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatViesProxyCheckVatResponseType.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VerenigingVanEigenaren.java delete mode 100644 company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/package-info.java delete mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyinfoProxy.kt delete mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/README.md delete mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/converters/CompanyinfoDocumentHttpMessageConverter.kt delete mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoCompanyProfile.kt delete mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoDocument.kt delete mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoDocumentMetadata.kt delete mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoFilingHistoryList.kt delete mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/interceptors/CompanyInfoAuthInterceptor.kt delete mode 100644 company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/interceptors/RequestResponseLoggingInterceptor.kt delete mode 100644 company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyInfoTest.kt delete mode 100644 company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyInfoCompanyDataParseTest.kt delete mode 100644 company-data-finder-lib/src/test/resources/soap_doclit.wsdl.xml diff --git a/company-data-finder-lib/build.gradle b/company-data-finder-lib/build.gradle index 96ed3e4..cf5c082 100644 --- a/company-data-finder-lib/build.gradle +++ b/company-data-finder-lib/build.gradle @@ -3,58 +3,3 @@ jar { version = '0.0.1' } -configurations { - jaxb -} - -task genJaxb { - ext.sourcesDir = "$rootDir/company-data-finder-lib/src/main/java/" - ext.classesDir = "${buildDir}/classes/jaxb" - ext.schema = "https://ws1.webservices.nl/soap_doclit?wsdl" - - outputs.dir classesDir - - doLast() { - project.ant { - taskdef name: "xjc", classname: "com.sun.tools.xjc.XJCTask", - classpath: configurations.jaxb.asPath - mkdir(dir: sourcesDir) - mkdir(dir: classesDir) - - xjc(destdir: sourcesDir, schema: schema, - package: "org.suggs.companydatafinderlib.companyinfo.wsdl") { - arg(value: "-wsdl") - produces(dir: sourcesDir, includes: "**/*.java") - } - - javac(destdir: classesDir, source: 1.8, target: 1.8, debug: true, - debugLevel: "lines,vars,source", - classpath: configurations.jaxb.asPath) { - src(path: sourcesDir) - include(name: "**/*.java") - include(name: "*.java") - } - - copy(todir: classesDir) { - fileset(dir: sourcesDir, erroronmissingdir: false) { - exclude(name: "**/*.java") - } - } - } - } -} - -dependencies { - implementation libs.springBootStarterWeb - - testImplementation libs.snakeYaml - - compile(files(genJaxb.classesDir).builtBy(genJaxb)) - - implementation "com.sun.xml.bind:jaxb-xjc:2.1.7" - jaxb 'com.sun.xml.bind:jaxb-xjc:2.2.7-b41' - jaxb 'com.sun.xml.bind:jaxb-impl:2.2.7-b41' - jaxb 'javax.xml.bind:jaxb-api:2.2.7' - jaxb 'com.sun.activation:javax.activation:1.2.0' -} - diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/proxy/Config.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/proxy/Config.java deleted file mode 100644 index 1e70093..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/proxy/Config.java +++ /dev/null @@ -1,26 +0,0 @@ -package org.suggs.companydatafinderlib.companyinfo.proxy; - -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.oxm.jaxb.Jaxb2Marshaller; - -@Configuration -public class Config { - @Bean - public Jaxb2Marshaller marshaller() { - Jaxb2Marshaller marshaller = new Jaxb2Marshaller(); - // this is the package name specified in the specified in - // pom.xml - marshaller.setContextPath("org.suggs.companydatafinderlib.companyinfo.wsdl"); - return marshaller; - } - - @Bean - public SOAPConnector soapConnector(Jaxb2Marshaller marshaller) { - SOAPConnector client = new SOAPConnector(); - client.setDefaultUri("http://www.webservices.nl/soap/"); - client.setMarshaller(marshaller); - client.setUnmarshaller(marshaller); - return client; - } -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/proxy/SOAPConnector.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/proxy/SOAPConnector.java deleted file mode 100644 index 43242f6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/proxy/SOAPConnector.java +++ /dev/null @@ -1,10 +0,0 @@ -package org.suggs.companydatafinderlib.companyinfo.proxy; - -import org.springframework.ws.client.core.support.WebServiceGatewaySupport; - -public class SOAPConnector extends WebServiceGatewaySupport { - - public Object callWebService(String url, Object request){ - return getWebServiceTemplate().marshalSendAndReceive(url, request); - } -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObject.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObject.java deleted file mode 100644 index 74d0fcd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObject.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AantekeningKadastraalObject complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AantekeningKadastraalObject">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="stuk_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="betrokkene_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="omschrijving_aantekening" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="beschrijving_aantekening" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AantekeningKadastraalObject", propOrder = { - -}) -public class AantekeningKadastraalObject { - - @XmlElement(name = "stuk_id", required = true) - protected String stukId; - @XmlElement(name = "betrokkene_id") - protected String betrokkeneId; - @XmlElement(name = "omschrijving_aantekening", required = true) - protected String omschrijvingAantekening; - @XmlElement(name = "beschrijving_aantekening") - protected String beschrijvingAantekening; - - /** - * Gets the value of the stukId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStukId() { - return stukId; - } - - /** - * Sets the value of the stukId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStukId(String value) { - this.stukId = value; - } - - /** - * Gets the value of the betrokkeneId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetrokkeneId() { - return betrokkeneId; - } - - /** - * Sets the value of the betrokkeneId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetrokkeneId(String value) { - this.betrokkeneId = value; - } - - /** - * Gets the value of the omschrijvingAantekening property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijvingAantekening() { - return omschrijvingAantekening; - } - - /** - * Sets the value of the omschrijvingAantekening property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijvingAantekening(String value) { - this.omschrijvingAantekening = value; - } - - /** - * Gets the value of the beschrijvingAantekening property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBeschrijvingAantekening() { - return beschrijvingAantekening; - } - - /** - * Sets the value of the beschrijvingAantekening property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBeschrijvingAantekening(String value) { - this.beschrijvingAantekening = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObjectArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObjectArray.java deleted file mode 100644 index 8c6046b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObjectArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AantekeningKadastraalObjectArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AantekeningKadastraalObjectArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}AantekeningKadastraalObject" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AantekeningKadastraalObjectArray", propOrder = { - "item" -}) -public class AantekeningKadastraalObjectArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AantekeningKadastraalObject } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObjectLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObjectLijst.java deleted file mode 100644 index 70d0359..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningKadastraalObjectLijst.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AantekeningKadastraalObjectLijst complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AantekeningKadastraalObjectLijst">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="aantekeningen" type="{http://www.webservices.nl/soap/}AantekeningKadastraalObjectArray"/>
- *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AantekeningKadastraalObjectLijst", propOrder = { - -}) -public class AantekeningKadastraalObjectLijst { - - @XmlElement(required = true) - protected AantekeningKadastraalObjectArray aantekeningen; - @XmlElement(name = "indicatie_compleet") - protected boolean indicatieCompleet; - - /** - * Gets the value of the aantekeningen property. - * - * @return - * possible object is - * {@link AantekeningKadastraalObjectArray } - * - */ - public AantekeningKadastraalObjectArray getAantekeningen() { - return aantekeningen; - } - - /** - * Sets the value of the aantekeningen property. - * - * @param value - * allowed object is - * {@link AantekeningKadastraalObjectArray } - * - */ - public void setAantekeningen(AantekeningKadastraalObjectArray value) { - this.aantekeningen = value; - } - - /** - * Gets the value of the indicatieCompleet property. - * - */ - public boolean isIndicatieCompleet() { - return indicatieCompleet; - } - - /** - * Sets the value of the indicatieCompleet property. - * - */ - public void setIndicatieCompleet(boolean value) { - this.indicatieCompleet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRecht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRecht.java deleted file mode 100644 index c055765..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRecht.java +++ /dev/null @@ -1,180 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for AantekeningRecht complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AantekeningRecht">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="stuk_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="betrokkene_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="omschrijving_aantekening" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="beschrijving_aantekening" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="einddatum_aantekening" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AantekeningRecht", propOrder = { - -}) -public class AantekeningRecht { - - @XmlElement(name = "stuk_id", required = true) - protected String stukId; - @XmlElement(name = "betrokkene_id") - protected String betrokkeneId; - @XmlElement(name = "omschrijving_aantekening", required = true) - protected String omschrijvingAantekening; - @XmlElement(name = "beschrijving_aantekening") - protected String beschrijvingAantekening; - @XmlElement(name = "einddatum_aantekening") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar einddatumAantekening; - - /** - * Gets the value of the stukId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStukId() { - return stukId; - } - - /** - * Sets the value of the stukId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStukId(String value) { - this.stukId = value; - } - - /** - * Gets the value of the betrokkeneId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetrokkeneId() { - return betrokkeneId; - } - - /** - * Sets the value of the betrokkeneId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetrokkeneId(String value) { - this.betrokkeneId = value; - } - - /** - * Gets the value of the omschrijvingAantekening property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijvingAantekening() { - return omschrijvingAantekening; - } - - /** - * Sets the value of the omschrijvingAantekening property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijvingAantekening(String value) { - this.omschrijvingAantekening = value; - } - - /** - * Gets the value of the beschrijvingAantekening property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBeschrijvingAantekening() { - return beschrijvingAantekening; - } - - /** - * Sets the value of the beschrijvingAantekening property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBeschrijvingAantekening(String value) { - this.beschrijvingAantekening = value; - } - - /** - * Gets the value of the einddatumAantekening property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEinddatumAantekening() { - return einddatumAantekening; - } - - /** - * Sets the value of the einddatumAantekening property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEinddatumAantekening(XMLGregorianCalendar value) { - this.einddatumAantekening = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRechtArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRechtArray.java deleted file mode 100644 index 4e3a51e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRechtArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AantekeningRechtArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AantekeningRechtArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}AantekeningRecht" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AantekeningRechtArray", propOrder = { - "item" -}) -public class AantekeningRechtArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AantekeningRecht } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRechtLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRechtLijst.java deleted file mode 100644 index 5c10bdb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningRechtLijst.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AantekeningRechtLijst complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AantekeningRechtLijst">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="aantekeningen_recht" type="{http://www.webservices.nl/soap/}AantekeningRechtArray"/>
- *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AantekeningRechtLijst", propOrder = { - -}) -public class AantekeningRechtLijst { - - @XmlElement(name = "aantekeningen_recht", required = true) - protected AantekeningRechtArray aantekeningenRecht; - @XmlElement(name = "indicatie_compleet") - protected boolean indicatieCompleet; - - /** - * Gets the value of the aantekeningenRecht property. - * - * @return - * possible object is - * {@link AantekeningRechtArray } - * - */ - public AantekeningRechtArray getAantekeningenRecht() { - return aantekeningenRecht; - } - - /** - * Sets the value of the aantekeningenRecht property. - * - * @param value - * allowed object is - * {@link AantekeningRechtArray } - * - */ - public void setAantekeningenRecht(AantekeningRechtArray value) { - this.aantekeningenRecht = value; - } - - /** - * Gets the value of the indicatieCompleet property. - * - */ - public boolean isIndicatieCompleet() { - return indicatieCompleet; - } - - /** - * Sets the value of the indicatieCompleet property. - * - */ - public void setIndicatieCompleet(boolean value) { - this.indicatieCompleet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningenKadastraalObject.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningenKadastraalObject.java deleted file mode 100644 index 1eabdce..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AantekeningenKadastraalObject.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AantekeningenKadastraalObject complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AantekeningenKadastraalObject">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="aantekeningen_lijst" type="{http://www.webservices.nl/soap/}AantekeningKadastraalObjectLijst" minOccurs="0"/>
- *         <element name="melding" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AantekeningenKadastraalObject", propOrder = { - -}) -public class AantekeningenKadastraalObject { - - @XmlElement(name = "aantekeningen_lijst") - protected AantekeningKadastraalObjectLijst aantekeningenLijst; - protected String melding; - - /** - * Gets the value of the aantekeningenLijst property. - * - * @return - * possible object is - * {@link AantekeningKadastraalObjectLijst } - * - */ - public AantekeningKadastraalObjectLijst getAantekeningenLijst() { - return aantekeningenLijst; - } - - /** - * Sets the value of the aantekeningenLijst property. - * - * @param value - * allowed object is - * {@link AantekeningKadastraalObjectLijst } - * - */ - public void setAantekeningenLijst(AantekeningKadastraalObjectLijst value) { - this.aantekeningenLijst = value; - } - - /** - * Gets the value of the melding property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMelding() { - return melding; - } - - /** - * Sets the value of the melding property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMelding(String value) { - this.melding = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Account.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Account.java deleted file mode 100644 index f06bef9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Account.java +++ /dev/null @@ -1,465 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Account complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Account">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="environment" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="reseller" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contactemail" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="creationtime" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="lastmodified" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="credits" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="clientcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="comments" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="usernameprefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="creditthreshold" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Account", propOrder = { - -}) -public class Account { - - protected int id; - @XmlElement(required = true) - protected String name; - @XmlElement(required = true) - protected String address; - @XmlElement(required = true) - protected String environment; - protected boolean reseller; - @XmlElement(required = true) - protected String contactname; - @XmlElement(required = true) - protected String contactemail; - @XmlElement(required = true) - protected String telephone; - @XmlElement(required = true) - protected String fax; - @XmlElement(required = true) - protected String description; - @XmlElement(required = true) - protected String creationtime; - @XmlElement(required = true) - protected String lastmodified; - protected int credits; - @XmlElement(required = true) - protected String clientcode; - @XmlElement(required = true) - protected String comments; - @XmlElement(required = true) - protected String usernameprefix; - protected int creditthreshold; - - /** - * Gets the value of the id property. - * - */ - public int getId() { - return id; - } - - /** - * Sets the value of the id property. - * - */ - public void setId(int value) { - this.id = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the environment property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnvironment() { - return environment; - } - - /** - * Sets the value of the environment property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnvironment(String value) { - this.environment = value; - } - - /** - * Gets the value of the reseller property. - * - */ - public boolean isReseller() { - return reseller; - } - - /** - * Sets the value of the reseller property. - * - */ - public void setReseller(boolean value) { - this.reseller = value; - } - - /** - * Gets the value of the contactname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactname() { - return contactname; - } - - /** - * Sets the value of the contactname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactname(String value) { - this.contactname = value; - } - - /** - * Gets the value of the contactemail property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactemail() { - return contactemail; - } - - /** - * Sets the value of the contactemail property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactemail(String value) { - this.contactemail = value; - } - - /** - * Gets the value of the telephone property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephone() { - return telephone; - } - - /** - * Sets the value of the telephone property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephone(String value) { - this.telephone = value; - } - - /** - * Gets the value of the fax property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFax() { - return fax; - } - - /** - * Sets the value of the fax property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFax(String value) { - this.fax = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the creationtime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreationtime() { - return creationtime; - } - - /** - * Sets the value of the creationtime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreationtime(String value) { - this.creationtime = value; - } - - /** - * Gets the value of the lastmodified property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastmodified() { - return lastmodified; - } - - /** - * Sets the value of the lastmodified property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastmodified(String value) { - this.lastmodified = value; - } - - /** - * Gets the value of the credits property. - * - */ - public int getCredits() { - return credits; - } - - /** - * Sets the value of the credits property. - * - */ - public void setCredits(int value) { - this.credits = value; - } - - /** - * Gets the value of the clientcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClientcode() { - return clientcode; - } - - /** - * Sets the value of the clientcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClientcode(String value) { - this.clientcode = value; - } - - /** - * Gets the value of the comments property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getComments() { - return comments; - } - - /** - * Sets the value of the comments property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setComments(String value) { - this.comments = value; - } - - /** - * Gets the value of the usernameprefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUsernameprefix() { - return usernameprefix; - } - - /** - * Sets the value of the usernameprefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUsernameprefix(String value) { - this.usernameprefix = value; - } - - /** - * Gets the value of the creditthreshold property. - * - */ - public int getCreditthreshold() { - return creditthreshold; - } - - /** - * Sets the value of the creditthreshold property. - * - */ - public void setCreditthreshold(int value) { - this.creditthreshold = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountArray.java deleted file mode 100644 index 1e92544..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AccountArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AccountArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}Account" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AccountArray", propOrder = { - "item" -}) -public class AccountArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Account } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountCreationToken.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountCreationToken.java deleted file mode 100644 index 04e1714..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountCreationToken.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AccountCreationToken complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AccountCreationToken">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AccountCreationToken", propOrder = { - -}) -public class AccountCreationToken { - - @XmlElement(required = true) - protected String token; - @XmlElement(required = true) - protected String url; - - /** - * Gets the value of the token property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToken() { - return token; - } - - /** - * Sets the value of the token property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToken(String value) { - this.token = value; - } - - /** - * Gets the value of the url property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Sets the value of the url property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditHostRestrictionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditHostRestrictionsRequestType.java deleted file mode 100644 index 9f2ec03..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditHostRestrictionsRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountEditHostRestrictionsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountEditHostRestrictionsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="restrictions" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountEditHostRestrictionsRequestType", propOrder = { - -}) -public class AccountEditHostRestrictionsRequestType { - - protected int accountid; - @XmlElement(required = true) - protected String restrictions; - - /** - * Gets the value of the accountid property. - * - */ - public int getAccountid() { - return accountid; - } - - /** - * Sets the value of the accountid property. - * - */ - public void setAccountid(int value) { - this.accountid = value; - } - - /** - * Gets the value of the restrictions property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRestrictions() { - return restrictions; - } - - /** - * Sets the value of the restrictions property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRestrictions(String value) { - this.restrictions = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditHostRestrictionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditHostRestrictionsResponseType.java deleted file mode 100644 index bff8e64..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditHostRestrictionsResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountEditHostRestrictionsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountEditHostRestrictionsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountEditHostRestrictionsResponseType") -public class AccountEditHostRestrictionsResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditV2RequestType.java deleted file mode 100644 index 0841efe..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditV2RequestType.java +++ /dev/null @@ -1,240 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountEditV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountEditV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contactemail" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="balancethreshold" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountEditV2RequestType", propOrder = { - -}) -public class AccountEditV2RequestType { - - protected int accountid; - @XmlElement(required = true) - protected String address; - @XmlElement(required = true) - protected String contactname; - @XmlElement(required = true) - protected String contactemail; - @XmlElement(required = true) - protected String telephone; - @XmlElement(required = true) - protected String fax; - @XmlElement(required = true) - protected String description; - protected float balancethreshold; - - /** - * Gets the value of the accountid property. - * - */ - public int getAccountid() { - return accountid; - } - - /** - * Sets the value of the accountid property. - * - */ - public void setAccountid(int value) { - this.accountid = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the contactname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactname() { - return contactname; - } - - /** - * Sets the value of the contactname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactname(String value) { - this.contactname = value; - } - - /** - * Gets the value of the contactemail property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactemail() { - return contactemail; - } - - /** - * Sets the value of the contactemail property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactemail(String value) { - this.contactemail = value; - } - - /** - * Gets the value of the telephone property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephone() { - return telephone; - } - - /** - * Sets the value of the telephone property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephone(String value) { - this.telephone = value; - } - - /** - * Gets the value of the fax property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFax() { - return fax; - } - - /** - * Sets the value of the fax property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFax(String value) { - this.fax = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the balancethreshold property. - * - */ - public float getBalancethreshold() { - return balancethreshold; - } - - /** - * Sets the value of the balancethreshold property. - * - */ - public void setBalancethreshold(float value) { - this.balancethreshold = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditV2ResponseType.java deleted file mode 100644 index 08b4715..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountEditV2ResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountEditV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountEditV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountEditV2ResponseType") -public class AccountEditV2ResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationStatusRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationStatusRequestType.java deleted file mode 100644 index 6f971ae..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationStatusRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountGetCreationStatusRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountGetCreationStatusRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountGetCreationStatusRequestType", propOrder = { - -}) -public class AccountGetCreationStatusRequestType { - - @XmlElement(required = true) - protected String token; - - /** - * Gets the value of the token property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToken() { - return token; - } - - /** - * Sets the value of the token property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToken(String value) { - this.token = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationStatusResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationStatusResponseType.java deleted file mode 100644 index 4d9c253..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationStatusResponseType.java +++ /dev/null @@ -1,59 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountGetCreationStatusResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountGetCreationStatusResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountGetCreationStatusResponseType", propOrder = { - -}) -public class AccountGetCreationStatusResponseType { - - protected int accountid; - - /** - * Gets the value of the accountid property. - * - */ - public int getAccountid() { - return accountid; - } - - /** - * Sets the value of the accountid property. - * - */ - public void setAccountid(int value) { - this.accountid = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationTokenRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationTokenRequestType.java deleted file mode 100644 index 201d3e1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationTokenRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountGetCreationTokenRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountGetCreationTokenRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="return_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountGetCreationTokenRequestType", propOrder = { - -}) -public class AccountGetCreationTokenRequestType { - - @XmlElement(name = "return_url", required = true) - protected String returnUrl; - - /** - * Gets the value of the returnUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReturnUrl() { - return returnUrl; - } - - /** - * Sets the value of the returnUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReturnUrl(String value) { - this.returnUrl = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationTokenResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationTokenResponseType.java deleted file mode 100644 index a88cffb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetCreationTokenResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountGetCreationTokenResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountGetCreationTokenResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}AccountCreationToken"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountGetCreationTokenResponseType", propOrder = { - -}) -public class AccountGetCreationTokenResponseType { - - @XmlElement(required = true) - protected AccountCreationToken out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link AccountCreationToken } - * - */ - public AccountCreationToken getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link AccountCreationToken } - * - */ - public void setOut(AccountCreationToken value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetOrderTokenRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetOrderTokenRequestType.java deleted file mode 100644 index 17c8e6a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetOrderTokenRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountGetOrderTokenRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountGetOrderTokenRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="return_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountGetOrderTokenRequestType", propOrder = { - -}) -public class AccountGetOrderTokenRequestType { - - protected int accountid; - @XmlElement(name = "return_url", required = true) - protected String returnUrl; - - /** - * Gets the value of the accountid property. - * - */ - public int getAccountid() { - return accountid; - } - - /** - * Sets the value of the accountid property. - * - */ - public void setAccountid(int value) { - this.accountid = value; - } - - /** - * Gets the value of the returnUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReturnUrl() { - return returnUrl; - } - - /** - * Sets the value of the returnUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReturnUrl(String value) { - this.returnUrl = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetOrderTokenResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetOrderTokenResponseType.java deleted file mode 100644 index 2874280..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountGetOrderTokenResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountGetOrderTokenResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountGetOrderTokenResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}AccountOrderToken"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountGetOrderTokenResponseType", propOrder = { - -}) -public class AccountGetOrderTokenResponseType { - - @XmlElement(required = true) - protected AccountOrderToken out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link AccountOrderToken } - * - */ - public AccountOrderToken getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link AccountOrderToken } - * - */ - public void setOut(AccountOrderToken value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountOrderToken.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountOrderToken.java deleted file mode 100644 index a40e5b0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountOrderToken.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AccountOrderToken complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AccountOrderToken">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AccountOrderToken", propOrder = { - -}) -public class AccountOrderToken { - - @XmlElement(required = true) - protected String token; - @XmlElement(required = true) - protected String url; - - /** - * Gets the value of the token property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToken() { - return token; - } - - /** - * Sets the value of the token property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToken(String value) { - this.token = value; - } - - /** - * Gets the value of the url property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Sets the value of the url property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountPagedResult.java deleted file mode 100644 index a96b398..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountPagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AccountPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AccountPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}AccountArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AccountPagedResult", propOrder = { - -}) -public class AccountPagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected AccountArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link AccountArray } - * - */ - public AccountArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link AccountArray } - * - */ - public void setResults(AccountArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserListV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserListV2RequestType.java deleted file mode 100644 index 87c528c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserListV2RequestType.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountUserListV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountUserListV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountUserListV2RequestType", propOrder = { - -}) -public class AccountUserListV2RequestType { - - protected int accountid; - protected int page; - - /** - * Gets the value of the accountid property. - * - */ - public int getAccountid() { - return accountid; - } - - /** - * Sets the value of the accountid property. - * - */ - public void setAccountid(int value) { - this.accountid = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserListV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserListV2ResponseType.java deleted file mode 100644 index 0b31cc2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserListV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountUserListV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountUserListV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}UserV2PagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountUserListV2ResponseType", propOrder = { - -}) -public class AccountUserListV2ResponseType { - - @XmlElement(required = true) - protected UserV2PagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link UserV2PagedResult } - * - */ - public UserV2PagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link UserV2PagedResult } - * - */ - public void setOut(UserV2PagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserSearchV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserSearchV2RequestType.java deleted file mode 100644 index 558c5b8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserSearchV2RequestType.java +++ /dev/null @@ -1,105 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountUserSearchV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountUserSearchV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="phrase" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountUserSearchV2RequestType", propOrder = { - -}) -public class AccountUserSearchV2RequestType { - - protected int accountid; - @XmlElement(required = true) - protected String phrase; - protected int page; - - /** - * Gets the value of the accountid property. - * - */ - public int getAccountid() { - return accountid; - } - - /** - * Sets the value of the accountid property. - * - */ - public void setAccountid(int value) { - this.accountid = value; - } - - /** - * Gets the value of the phrase property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPhrase() { - return phrase; - } - - /** - * Sets the value of the phrase property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPhrase(String value) { - this.phrase = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserSearchV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserSearchV2ResponseType.java deleted file mode 100644 index 8573ab9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountUserSearchV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountUserSearchV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountUserSearchV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}UserV2PagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountUserSearchV2ResponseType", propOrder = { - -}) -public class AccountUserSearchV2ResponseType { - - @XmlElement(required = true) - protected UserV2PagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link UserV2PagedResult } - * - */ - public UserV2PagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link UserV2PagedResult } - * - */ - public void setOut(UserV2PagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2.java deleted file mode 100644 index 14e2885..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2.java +++ /dev/null @@ -1,465 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AccountV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AccountV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="environment" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="reseller" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contactemail" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="creationtime" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="lastmodified" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="clientcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="comments" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="usernameprefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="balance" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="balancethreshold" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AccountV2", propOrder = { - -}) -public class AccountV2 { - - protected int id; - @XmlElement(required = true) - protected String name; - @XmlElement(required = true) - protected String address; - @XmlElement(required = true) - protected String environment; - protected boolean reseller; - @XmlElement(required = true) - protected String contactname; - @XmlElement(required = true) - protected String contactemail; - @XmlElement(required = true) - protected String telephone; - @XmlElement(required = true) - protected String fax; - @XmlElement(required = true) - protected String description; - @XmlElement(required = true) - protected String creationtime; - @XmlElement(required = true) - protected String lastmodified; - @XmlElement(required = true) - protected String clientcode; - @XmlElement(required = true) - protected String comments; - @XmlElement(required = true) - protected String usernameprefix; - protected float balance; - protected float balancethreshold; - - /** - * Gets the value of the id property. - * - */ - public int getId() { - return id; - } - - /** - * Sets the value of the id property. - * - */ - public void setId(int value) { - this.id = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the environment property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnvironment() { - return environment; - } - - /** - * Sets the value of the environment property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnvironment(String value) { - this.environment = value; - } - - /** - * Gets the value of the reseller property. - * - */ - public boolean isReseller() { - return reseller; - } - - /** - * Sets the value of the reseller property. - * - */ - public void setReseller(boolean value) { - this.reseller = value; - } - - /** - * Gets the value of the contactname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactname() { - return contactname; - } - - /** - * Sets the value of the contactname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactname(String value) { - this.contactname = value; - } - - /** - * Gets the value of the contactemail property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactemail() { - return contactemail; - } - - /** - * Sets the value of the contactemail property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactemail(String value) { - this.contactemail = value; - } - - /** - * Gets the value of the telephone property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephone() { - return telephone; - } - - /** - * Sets the value of the telephone property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephone(String value) { - this.telephone = value; - } - - /** - * Gets the value of the fax property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFax() { - return fax; - } - - /** - * Sets the value of the fax property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFax(String value) { - this.fax = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the creationtime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreationtime() { - return creationtime; - } - - /** - * Sets the value of the creationtime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreationtime(String value) { - this.creationtime = value; - } - - /** - * Gets the value of the lastmodified property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastmodified() { - return lastmodified; - } - - /** - * Sets the value of the lastmodified property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastmodified(String value) { - this.lastmodified = value; - } - - /** - * Gets the value of the clientcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClientcode() { - return clientcode; - } - - /** - * Sets the value of the clientcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClientcode(String value) { - this.clientcode = value; - } - - /** - * Gets the value of the comments property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getComments() { - return comments; - } - - /** - * Sets the value of the comments property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setComments(String value) { - this.comments = value; - } - - /** - * Gets the value of the usernameprefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUsernameprefix() { - return usernameprefix; - } - - /** - * Sets the value of the usernameprefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUsernameprefix(String value) { - this.usernameprefix = value; - } - - /** - * Gets the value of the balance property. - * - */ - public float getBalance() { - return balance; - } - - /** - * Sets the value of the balance property. - * - */ - public void setBalance(float value) { - this.balance = value; - } - - /** - * Gets the value of the balancethreshold property. - * - */ - public float getBalancethreshold() { - return balancethreshold; - } - - /** - * Sets the value of the balancethreshold property. - * - */ - public void setBalancethreshold(float value) { - this.balancethreshold = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2Array.java deleted file mode 100644 index 376a628..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AccountV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AccountV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}AccountV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AccountV2Array", propOrder = { - "item" -}) -public class AccountV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AccountV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2PagedResult.java deleted file mode 100644 index 0e08ae5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountV2PagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AccountV2PagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AccountV2PagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}AccountV2Array"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AccountV2PagedResult", propOrder = { - -}) -public class AccountV2PagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected AccountV2Array results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link AccountV2Array } - * - */ - public AccountV2Array getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link AccountV2Array } - * - */ - public void setResults(AccountV2Array value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewBalanceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewBalanceRequestType.java deleted file mode 100644 index c90c1ac..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewBalanceRequestType.java +++ /dev/null @@ -1,59 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountViewBalanceRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountViewBalanceRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountViewBalanceRequestType", propOrder = { - -}) -public class AccountViewBalanceRequestType { - - protected int accountid; - - /** - * Gets the value of the accountid property. - * - */ - public int getAccountid() { - return accountid; - } - - /** - * Sets the value of the accountid property. - * - */ - public void setAccountid(int value) { - this.accountid = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewBalanceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewBalanceResponseType.java deleted file mode 100644 index 7973be5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewBalanceResponseType.java +++ /dev/null @@ -1,59 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountViewBalanceResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountViewBalanceResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="balance" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountViewBalanceResponseType", propOrder = { - -}) -public class AccountViewBalanceResponseType { - - protected float balance; - - /** - * Gets the value of the balance property. - * - */ - public float getBalance() { - return balance; - } - - /** - * Sets the value of the balance property. - * - */ - public void setBalance(float value) { - this.balance = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewHostRestrictionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewHostRestrictionsRequestType.java deleted file mode 100644 index 6969cdc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewHostRestrictionsRequestType.java +++ /dev/null @@ -1,59 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountViewHostRestrictionsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountViewHostRestrictionsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountViewHostRestrictionsRequestType", propOrder = { - -}) -public class AccountViewHostRestrictionsRequestType { - - protected int accountid; - - /** - * Gets the value of the accountid property. - * - */ - public int getAccountid() { - return accountid; - } - - /** - * Sets the value of the accountid property. - * - */ - public void setAccountid(int value) { - this.accountid = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewHostRestrictionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewHostRestrictionsResponseType.java deleted file mode 100644 index 8916196..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewHostRestrictionsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountViewHostRestrictionsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountViewHostRestrictionsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountViewHostRestrictionsResponseType", propOrder = { - -}) -public class AccountViewHostRestrictionsResponseType { - - @XmlElement(required = true) - protected String out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOut(String value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewV2RequestType.java deleted file mode 100644 index 07d5356..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewV2RequestType.java +++ /dev/null @@ -1,59 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountViewV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountViewV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountViewV2RequestType", propOrder = { - -}) -public class AccountViewV2RequestType { - - protected int accountid; - - /** - * Gets the value of the accountid property. - * - */ - public int getAccountid() { - return accountid; - } - - /** - * Sets the value of the accountid property. - * - */ - public void setAccountid(int value) { - this.accountid = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewV2ResponseType.java deleted file mode 100644 index 93d66a3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AccountViewV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for accountViewV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="accountViewV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}AccountV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "accountViewV2ResponseType", propOrder = { - -}) -public class AccountViewV2ResponseType { - - @XmlElement(required = true) - protected AccountV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link AccountV2 } - * - */ - public AccountV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link AccountV2 } - * - */ - public void setOut(AccountV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCityListNeighborhoodsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCityListNeighborhoodsRequestType.java deleted file mode 100644 index b986ade..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCityListNeighborhoodsRequestType.java +++ /dev/null @@ -1,105 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressCityListNeighborhoodsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressCityListNeighborhoodsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postbus" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressCityListNeighborhoodsRequestType", propOrder = { - -}) -public class AddressCityListNeighborhoodsRequestType { - - @XmlElement(required = true) - protected String name; - protected boolean postbus; - protected int page; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the postbus property. - * - */ - public boolean isPostbus() { - return postbus; - } - - /** - * Sets the value of the postbus property. - * - */ - public void setPostbus(boolean value) { - this.postbus = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCityListNeighborhoodsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCityListNeighborhoodsResponseType.java deleted file mode 100644 index 56fbf36..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCityListNeighborhoodsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressCityListNeighborhoodsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressCityListNeighborhoodsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}NeighborhoodPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressCityListNeighborhoodsResponseType", propOrder = { - -}) -public class AddressCityListNeighborhoodsResponseType { - - @XmlElement(required = true) - protected NeighborhoodPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link NeighborhoodPagedResult } - * - */ - public NeighborhoodPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link NeighborhoodPagedResult } - * - */ - public void setOut(NeighborhoodPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCitySearchV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCitySearchV2RequestType.java deleted file mode 100644 index 91c8e84..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCitySearchV2RequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressCitySearchV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressCitySearchV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressCitySearchV2RequestType", propOrder = { - -}) -public class AddressCitySearchV2RequestType { - - @XmlElement(required = true) - protected String name; - protected int page; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCitySearchV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCitySearchV2ResponseType.java deleted file mode 100644 index bd1106d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressCitySearchV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressCitySearchV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressCitySearchV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CityV2PagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressCitySearchV2ResponseType", propOrder = { - -}) -public class AddressCitySearchV2ResponseType { - - @XmlElement(required = true) - protected CityV2PagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CityV2PagedResult } - * - */ - public CityV2PagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CityV2PagedResult } - * - */ - public void setOut(CityV2PagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListCitiesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListCitiesRequestType.java deleted file mode 100644 index 4412fb6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListCitiesRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressDistrictListCitiesRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressDistrictListCitiesRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressDistrictListCitiesRequestType", propOrder = { - -}) -public class AddressDistrictListCitiesRequestType { - - @XmlElement(required = true) - protected String name; - protected int page; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListCitiesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListCitiesResponseType.java deleted file mode 100644 index 5cc1658..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListCitiesResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressDistrictListCitiesResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressDistrictListCitiesResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CityPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressDistrictListCitiesResponseType", propOrder = { - -}) -public class AddressDistrictListCitiesResponseType { - - @XmlElement(required = true) - protected CityPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CityPagedResult } - * - */ - public CityPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CityPagedResult } - * - */ - public void setOut(CityPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListNeighborhoodsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListNeighborhoodsRequestType.java deleted file mode 100644 index d962b1e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListNeighborhoodsRequestType.java +++ /dev/null @@ -1,105 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressDistrictListNeighborhoodsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressDistrictListNeighborhoodsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postbus" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressDistrictListNeighborhoodsRequestType", propOrder = { - -}) -public class AddressDistrictListNeighborhoodsRequestType { - - @XmlElement(required = true) - protected String name; - protected boolean postbus; - protected int page; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the postbus property. - * - */ - public boolean isPostbus() { - return postbus; - } - - /** - * Sets the value of the postbus property. - * - */ - public void setPostbus(boolean value) { - this.postbus = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListNeighborhoodsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListNeighborhoodsResponseType.java deleted file mode 100644 index b5efaa3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictListNeighborhoodsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressDistrictListNeighborhoodsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressDistrictListNeighborhoodsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}NeighborhoodPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressDistrictListNeighborhoodsResponseType", propOrder = { - -}) -public class AddressDistrictListNeighborhoodsResponseType { - - @XmlElement(required = true) - protected NeighborhoodPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link NeighborhoodPagedResult } - * - */ - public NeighborhoodPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link NeighborhoodPagedResult } - * - */ - public void setOut(NeighborhoodPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictSearchRequestType.java deleted file mode 100644 index 469440b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictSearchRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressDistrictSearchRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressDistrictSearchRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressDistrictSearchRequestType", propOrder = { - -}) -public class AddressDistrictSearchRequestType { - - @XmlElement(required = true) - protected String name; - protected int page; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictSearchResponseType.java deleted file mode 100644 index 7b3ceeb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressDistrictSearchResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressDistrictSearchResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressDistrictSearchResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DistrictPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressDistrictSearchResponseType", propOrder = { - -}) -public class AddressDistrictSearchResponseType { - - @XmlElement(required = true) - protected DistrictPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DistrictPagedResult } - * - */ - public DistrictPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DistrictPagedResult } - * - */ - public void setOut(DistrictPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodNameRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodNameRequestType.java deleted file mode 100644 index 462f1cb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodNameRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressNeighborhoodNameRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressNeighborhoodNameRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressNeighborhoodNameRequestType", propOrder = { - -}) -public class AddressNeighborhoodNameRequestType { - - @XmlElement(required = true) - protected String nbcode; - - /** - * Gets the value of the nbcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcode() { - return nbcode; - } - - /** - * Sets the value of the nbcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcode(String value) { - this.nbcode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodNameResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodNameResponseType.java deleted file mode 100644 index c47cc55..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodNameResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressNeighborhoodNameResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressNeighborhoodNameResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressNeighborhoodNameResponseType", propOrder = { - -}) -public class AddressNeighborhoodNameResponseType { - - @XmlElement(required = true) - protected String name; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodPhraseSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodPhraseSearchRequestType.java deleted file mode 100644 index 40c3667..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodPhraseSearchRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressNeighborhoodPhraseSearchRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressNeighborhoodPhraseSearchRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressNeighborhoodPhraseSearchRequestType", propOrder = { - -}) -public class AddressNeighborhoodPhraseSearchRequestType { - - @XmlElement(required = true) - protected String name; - protected int page; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodPhraseSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodPhraseSearchResponseType.java deleted file mode 100644 index 341bb4c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressNeighborhoodPhraseSearchResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressNeighborhoodPhraseSearchResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressNeighborhoodPhraseSearchResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}NeighborhoodNamePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressNeighborhoodPhraseSearchResponseType", propOrder = { - -}) -public class AddressNeighborhoodPhraseSearchResponseType { - - @XmlElement(required = true) - protected NeighborhoodNamePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link NeighborhoodNamePagedResult } - * - */ - public NeighborhoodNamePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link NeighborhoodNamePagedResult } - * - */ - public void setOut(NeighborhoodNamePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchRequestType.java deleted file mode 100644 index c1af08b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchRequestType.java +++ /dev/null @@ -1,294 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressPerceelFullParameterSearchRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressPerceelFullParameterSearchRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="houseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="lettercombination" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="addresstype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressPerceelFullParameterSearchRequestType", propOrder = { - -}) -public class AddressPerceelFullParameterSearchRequestType { - - @XmlElement(required = true) - protected String province; - @XmlElement(required = true) - protected String district; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String street; - protected int houseNo; - @XmlElement(required = true) - protected String houseNoAddition; - @XmlElement(required = true) - protected String nbcode; - @XmlElement(required = true) - protected String lettercombination; - @XmlElement(required = true) - protected String addresstype; - protected int page; - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the district property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDistrict() { - return district; - } - - /** - * Sets the value of the district property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDistrict(String value) { - this.district = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNo property. - * - */ - public int getHouseNo() { - return houseNo; - } - - /** - * Sets the value of the houseNo property. - * - */ - public void setHouseNo(int value) { - this.houseNo = value; - } - - /** - * Gets the value of the houseNoAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNoAddition() { - return houseNoAddition; - } - - /** - * Sets the value of the houseNoAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNoAddition(String value) { - this.houseNoAddition = value; - } - - /** - * Gets the value of the nbcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcode() { - return nbcode; - } - - /** - * Sets the value of the nbcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcode(String value) { - this.nbcode = value; - } - - /** - * Gets the value of the lettercombination property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLettercombination() { - return lettercombination; - } - - /** - * Sets the value of the lettercombination property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLettercombination(String value) { - this.lettercombination = value; - } - - /** - * Gets the value of the addresstype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddresstype() { - return addresstype; - } - - /** - * Sets the value of the addresstype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddresstype(String value) { - this.addresstype = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchResponseType.java deleted file mode 100644 index 308c869..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressPerceelFullParameterSearchResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressPerceelFullParameterSearchResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}PerceelSearchPartsPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressPerceelFullParameterSearchResponseType", propOrder = { - -}) -public class AddressPerceelFullParameterSearchResponseType { - - @XmlElement(required = true) - protected PerceelSearchPartsPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link PerceelSearchPartsPagedResult } - * - */ - public PerceelSearchPartsPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link PerceelSearchPartsPagedResult } - * - */ - public void setOut(PerceelSearchPartsPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchV2RequestType.java deleted file mode 100644 index 94accd2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchV2RequestType.java +++ /dev/null @@ -1,294 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressPerceelFullParameterSearchV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressPerceelFullParameterSearchV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="houseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="lettercombination" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="addresstype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressPerceelFullParameterSearchV2RequestType", propOrder = { - -}) -public class AddressPerceelFullParameterSearchV2RequestType { - - @XmlElement(required = true) - protected String province; - @XmlElement(required = true) - protected String district; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String street; - protected int houseNo; - @XmlElement(required = true) - protected String houseNoAddition; - @XmlElement(required = true) - protected String nbcode; - @XmlElement(required = true) - protected String lettercombination; - @XmlElement(required = true) - protected String addresstype; - protected int page; - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the district property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDistrict() { - return district; - } - - /** - * Sets the value of the district property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDistrict(String value) { - this.district = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNo property. - * - */ - public int getHouseNo() { - return houseNo; - } - - /** - * Sets the value of the houseNo property. - * - */ - public void setHouseNo(int value) { - this.houseNo = value; - } - - /** - * Gets the value of the houseNoAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNoAddition() { - return houseNoAddition; - } - - /** - * Sets the value of the houseNoAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNoAddition(String value) { - this.houseNoAddition = value; - } - - /** - * Gets the value of the nbcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcode() { - return nbcode; - } - - /** - * Sets the value of the nbcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcode(String value) { - this.nbcode = value; - } - - /** - * Gets the value of the lettercombination property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLettercombination() { - return lettercombination; - } - - /** - * Sets the value of the lettercombination property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLettercombination(String value) { - this.lettercombination = value; - } - - /** - * Gets the value of the addresstype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddresstype() { - return addresstype; - } - - /** - * Sets the value of the addresstype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddresstype(String value) { - this.addresstype = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchV2ResponseType.java deleted file mode 100644 index fa693d0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelFullParameterSearchV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressPerceelFullParameterSearchV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressPerceelFullParameterSearchV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}PerceelSearchPartsPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressPerceelFullParameterSearchV2ResponseType", propOrder = { - -}) -public class AddressPerceelFullParameterSearchV2ResponseType { - - @XmlElement(required = true) - protected PerceelSearchPartsPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link PerceelSearchPartsPagedResult } - * - */ - public PerceelSearchPartsPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link PerceelSearchPartsPagedResult } - * - */ - public void setOut(PerceelSearchPartsPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelParameterSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelParameterSearchRequestType.java deleted file mode 100644 index 856b943..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelParameterSearchRequestType.java +++ /dev/null @@ -1,213 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressPerceelParameterSearchRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressPerceelParameterSearchRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="houseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressPerceelParameterSearchRequestType", propOrder = { - -}) -public class AddressPerceelParameterSearchRequestType { - - @XmlElement(required = true) - protected String province; - @XmlElement(required = true) - protected String district; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String street; - protected int houseNo; - @XmlElement(required = true) - protected String houseNoAddition; - protected int page; - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the district property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDistrict() { - return district; - } - - /** - * Sets the value of the district property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDistrict(String value) { - this.district = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNo property. - * - */ - public int getHouseNo() { - return houseNo; - } - - /** - * Sets the value of the houseNo property. - * - */ - public void setHouseNo(int value) { - this.houseNo = value; - } - - /** - * Gets the value of the houseNoAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNoAddition() { - return houseNoAddition; - } - - /** - * Sets the value of the houseNoAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNoAddition(String value) { - this.houseNoAddition = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelParameterSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelParameterSearchResponseType.java deleted file mode 100644 index b40e48f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelParameterSearchResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressPerceelParameterSearchResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressPerceelParameterSearchResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}PerceelSearchPartsPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressPerceelParameterSearchResponseType", propOrder = { - -}) -public class AddressPerceelParameterSearchResponseType { - - @XmlElement(required = true) - protected PerceelSearchPartsPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link PerceelSearchPartsPagedResult } - * - */ - public PerceelSearchPartsPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link PerceelSearchPartsPagedResult } - * - */ - public void setOut(PerceelSearchPartsPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelPhraseSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelPhraseSearchRequestType.java deleted file mode 100644 index 37c7738..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelPhraseSearchRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressPerceelPhraseSearchRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressPerceelPhraseSearchRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressPerceelPhraseSearchRequestType", propOrder = { - -}) -public class AddressPerceelPhraseSearchRequestType { - - @XmlElement(required = true) - protected String address; - protected int page; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelPhraseSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelPhraseSearchResponseType.java deleted file mode 100644 index 0c304a4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressPerceelPhraseSearchResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressPerceelPhraseSearchResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressPerceelPhraseSearchResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}PerceelSearchPartsPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressPerceelPhraseSearchResponseType", propOrder = { - -}) -public class AddressPerceelPhraseSearchResponseType { - - @XmlElement(required = true) - protected PerceelSearchPartsPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link PerceelSearchPartsPagedResult } - * - */ - public PerceelSearchPartsPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link PerceelSearchPartsPagedResult } - * - */ - public void setOut(PerceelSearchPartsPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListDistrictsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListDistrictsRequestType.java deleted file mode 100644 index 1eaab27..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListDistrictsRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressProvinceListDistrictsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressProvinceListDistrictsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressProvinceListDistrictsRequestType", propOrder = { - -}) -public class AddressProvinceListDistrictsRequestType { - - @XmlElement(required = true) - protected String name; - protected int page; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListDistrictsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListDistrictsResponseType.java deleted file mode 100644 index f1ab006..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListDistrictsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressProvinceListDistrictsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressProvinceListDistrictsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DistrictPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressProvinceListDistrictsResponseType", propOrder = { - -}) -public class AddressProvinceListDistrictsResponseType { - - @XmlElement(required = true) - protected DistrictPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DistrictPagedResult } - * - */ - public DistrictPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DistrictPagedResult } - * - */ - public void setOut(DistrictPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListNeighborhoodsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListNeighborhoodsRequestType.java deleted file mode 100644 index 000b552..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListNeighborhoodsRequestType.java +++ /dev/null @@ -1,105 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressProvinceListNeighborhoodsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressProvinceListNeighborhoodsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postbus" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressProvinceListNeighborhoodsRequestType", propOrder = { - -}) -public class AddressProvinceListNeighborhoodsRequestType { - - @XmlElement(required = true) - protected String name; - protected boolean postbus; - protected int page; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the postbus property. - * - */ - public boolean isPostbus() { - return postbus; - } - - /** - * Sets the value of the postbus property. - * - */ - public void setPostbus(boolean value) { - this.postbus = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListNeighborhoodsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListNeighborhoodsResponseType.java deleted file mode 100644 index 484efbd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListNeighborhoodsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressProvinceListNeighborhoodsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressProvinceListNeighborhoodsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}NeighborhoodPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressProvinceListNeighborhoodsResponseType", propOrder = { - -}) -public class AddressProvinceListNeighborhoodsResponseType { - - @XmlElement(required = true) - protected NeighborhoodPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link NeighborhoodPagedResult } - * - */ - public NeighborhoodPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link NeighborhoodPagedResult } - * - */ - public void setOut(NeighborhoodPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListRequestType.java deleted file mode 100644 index 91dc02d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListRequestType.java +++ /dev/null @@ -1,59 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressProvinceListRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressProvinceListRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressProvinceListRequestType", propOrder = { - -}) -public class AddressProvinceListRequestType { - - protected int page; - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListResponseType.java deleted file mode 100644 index 658b395..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceListResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressProvinceListResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressProvinceListResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}ProvincePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressProvinceListResponseType", propOrder = { - -}) -public class AddressProvinceListResponseType { - - @XmlElement(required = true) - protected ProvincePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link ProvincePagedResult } - * - */ - public ProvincePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link ProvincePagedResult } - * - */ - public void setOut(ProvincePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceSearchRequestType.java deleted file mode 100644 index 0b250d4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceSearchRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressProvinceSearchRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressProvinceSearchRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressProvinceSearchRequestType", propOrder = { - -}) -public class AddressProvinceSearchRequestType { - - @XmlElement(required = true) - protected String name; - protected int page; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceSearchResponseType.java deleted file mode 100644 index 6f4f84e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressProvinceSearchResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressProvinceSearchResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressProvinceSearchResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}ProvincePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressProvinceSearchResponseType", propOrder = { - -}) -public class AddressProvinceSearchResponseType { - - @XmlElement(required = true) - protected ProvincePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link ProvincePagedResult } - * - */ - public ProvincePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link ProvincePagedResult } - * - */ - public void setOut(ProvincePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksAddressSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksAddressSearchRequestType.java deleted file mode 100644 index dfd02f5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksAddressSearchRequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressReeksAddressSearchRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressReeksAddressSearchRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressReeksAddressSearchRequestType", propOrder = { - -}) -public class AddressReeksAddressSearchRequestType { - - @XmlElement(required = true) - protected String address; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String city; - protected int page; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksAddressSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksAddressSearchResponseType.java deleted file mode 100644 index 2a41e3c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksAddressSearchResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressReeksAddressSearchResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressReeksAddressSearchResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}RangeAddressPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressReeksAddressSearchResponseType", propOrder = { - -}) -public class AddressReeksAddressSearchResponseType { - - @XmlElement(required = true) - protected RangeAddressPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link RangeAddressPagedResult } - * - */ - public RangeAddressPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link RangeAddressPagedResult } - * - */ - public void setOut(RangeAddressPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksFullParameterSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksFullParameterSearchRequestType.java deleted file mode 100644 index 2c980d2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksFullParameterSearchRequestType.java +++ /dev/null @@ -1,294 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressReeksFullParameterSearchRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressReeksFullParameterSearchRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="houseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="lettercombination" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="addresstype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressReeksFullParameterSearchRequestType", propOrder = { - -}) -public class AddressReeksFullParameterSearchRequestType { - - @XmlElement(required = true) - protected String province; - @XmlElement(required = true) - protected String district; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String street; - protected int houseNo; - @XmlElement(required = true) - protected String houseNoAddition; - @XmlElement(required = true) - protected String nbcode; - @XmlElement(required = true) - protected String lettercombination; - @XmlElement(required = true) - protected String addresstype; - protected int page; - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the district property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDistrict() { - return district; - } - - /** - * Sets the value of the district property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDistrict(String value) { - this.district = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNo property. - * - */ - public int getHouseNo() { - return houseNo; - } - - /** - * Sets the value of the houseNo property. - * - */ - public void setHouseNo(int value) { - this.houseNo = value; - } - - /** - * Gets the value of the houseNoAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNoAddition() { - return houseNoAddition; - } - - /** - * Sets the value of the houseNoAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNoAddition(String value) { - this.houseNoAddition = value; - } - - /** - * Gets the value of the nbcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcode() { - return nbcode; - } - - /** - * Sets the value of the nbcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcode(String value) { - this.nbcode = value; - } - - /** - * Gets the value of the lettercombination property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLettercombination() { - return lettercombination; - } - - /** - * Sets the value of the lettercombination property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLettercombination(String value) { - this.lettercombination = value; - } - - /** - * Gets the value of the addresstype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddresstype() { - return addresstype; - } - - /** - * Sets the value of the addresstype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddresstype(String value) { - this.addresstype = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksFullParameterSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksFullParameterSearchResponseType.java deleted file mode 100644 index d42c37f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksFullParameterSearchResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressReeksFullParameterSearchResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressReeksFullParameterSearchResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}PCReeksSearchPartsPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressReeksFullParameterSearchResponseType", propOrder = { - -}) -public class AddressReeksFullParameterSearchResponseType { - - @XmlElement(required = true) - protected PCReeksSearchPartsPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link PCReeksSearchPartsPagedResult } - * - */ - public PCReeksSearchPartsPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link PCReeksSearchPartsPagedResult } - * - */ - public void setOut(PCReeksSearchPartsPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksParameterSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksParameterSearchRequestType.java deleted file mode 100644 index e0f9f5d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksParameterSearchRequestType.java +++ /dev/null @@ -1,213 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressReeksParameterSearchRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressReeksParameterSearchRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="houseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressReeksParameterSearchRequestType", propOrder = { - -}) -public class AddressReeksParameterSearchRequestType { - - @XmlElement(required = true) - protected String province; - @XmlElement(required = true) - protected String district; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String street; - protected int houseNo; - @XmlElement(required = true) - protected String houseNoAddition; - protected int page; - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the district property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDistrict() { - return district; - } - - /** - * Sets the value of the district property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDistrict(String value) { - this.district = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNo property. - * - */ - public int getHouseNo() { - return houseNo; - } - - /** - * Sets the value of the houseNo property. - * - */ - public void setHouseNo(int value) { - this.houseNo = value; - } - - /** - * Gets the value of the houseNoAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNoAddition() { - return houseNoAddition; - } - - /** - * Sets the value of the houseNoAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNoAddition(String value) { - this.houseNoAddition = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksParameterSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksParameterSearchResponseType.java deleted file mode 100644 index f302313..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksParameterSearchResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressReeksParameterSearchResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressReeksParameterSearchResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}PCReeksSearchPartsPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressReeksParameterSearchResponseType", propOrder = { - -}) -public class AddressReeksParameterSearchResponseType { - - @XmlElement(required = true) - protected PCReeksSearchPartsPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link PCReeksSearchPartsPagedResult } - * - */ - public PCReeksSearchPartsPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link PCReeksSearchPartsPagedResult } - * - */ - public void setOut(PCReeksSearchPartsPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPhraseSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPhraseSearchRequestType.java deleted file mode 100644 index 57c85c7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPhraseSearchRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressReeksPhraseSearchRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressReeksPhraseSearchRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressReeksPhraseSearchRequestType", propOrder = { - -}) -public class AddressReeksPhraseSearchRequestType { - - @XmlElement(required = true) - protected String address; - protected int page; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPhraseSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPhraseSearchResponseType.java deleted file mode 100644 index 28b6a3c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPhraseSearchResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressReeksPhraseSearchResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressReeksPhraseSearchResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}PCReeksSearchPartsPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressReeksPhraseSearchResponseType", propOrder = { - -}) -public class AddressReeksPhraseSearchResponseType { - - @XmlElement(required = true) - protected PCReeksSearchPartsPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link PCReeksSearchPartsPagedResult } - * - */ - public PCReeksSearchPartsPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link PCReeksSearchPartsPagedResult } - * - */ - public void setOut(PCReeksSearchPartsPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPostcodeSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPostcodeSearchRequestType.java deleted file mode 100644 index 9a165c0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPostcodeSearchRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressReeksPostcodeSearchRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressReeksPostcodeSearchRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressReeksPostcodeSearchRequestType", propOrder = { - -}) -public class AddressReeksPostcodeSearchRequestType { - - @XmlElement(required = true) - protected String address; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPostcodeSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPostcodeSearchResponseType.java deleted file mode 100644 index 13cc7ff..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AddressReeksPostcodeSearchResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for addressReeksPostcodeSearchResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="addressReeksPostcodeSearchResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}PCReeks"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "addressReeksPostcodeSearchResponseType", propOrder = { - -}) -public class AddressReeksPostcodeSearchResponseType { - - @XmlElement(required = true) - protected PCReeks out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link PCReeks } - * - */ - public PCReeks getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link PCReeks } - * - */ - public void setOut(PCReeks value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCode.java deleted file mode 100644 index ab995b1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCode.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AreaCode complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AreaCode">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="areacode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AreaCode", propOrder = { - -}) -public class AreaCode { - - @XmlElement(required = true) - protected String areacode; - - /** - * Gets the value of the areacode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAreacode() { - return areacode; - } - - /** - * Sets the value of the areacode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAreacode(String value) { - this.areacode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeArray.java deleted file mode 100644 index 8decaf4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AreaCodeArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AreaCodeArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}AreaCode" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AreaCodeArray", propOrder = { - "item" -}) -public class AreaCodeArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AreaCode } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeLookupRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeLookupRequestType.java deleted file mode 100644 index d1d272c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeLookupRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for areaCodeLookupRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="areaCodeLookupRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="neighborhoodcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "areaCodeLookupRequestType", propOrder = { - -}) -public class AreaCodeLookupRequestType { - - @XmlElement(required = true) - protected String neighborhoodcode; - protected int page; - - /** - * Gets the value of the neighborhoodcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNeighborhoodcode() { - return neighborhoodcode; - } - - /** - * Sets the value of the neighborhoodcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNeighborhoodcode(String value) { - this.neighborhoodcode = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeLookupResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeLookupResponseType.java deleted file mode 100644 index 65acda0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeLookupResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for areaCodeLookupResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="areaCodeLookupResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}AreaCodePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "areaCodeLookupResponseType", propOrder = { - -}) -public class AreaCodeLookupResponseType { - - @XmlElement(required = true) - protected AreaCodePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link AreaCodePagedResult } - * - */ - public AreaCodePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link AreaCodePagedResult } - * - */ - public void setOut(AreaCodePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePagedResult.java deleted file mode 100644 index 4409316..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for AreaCodePagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="AreaCodePagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}AreaCodeArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AreaCodePagedResult", propOrder = { - -}) -public class AreaCodePagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected AreaCodeArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link AreaCodeArray } - * - */ - public AreaCodeArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link AreaCodeArray } - * - */ - public void setResults(AreaCodeArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupRequestType.java deleted file mode 100644 index 141e6ec..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for areaCodePostcodeLookupRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="areaCodePostcodeLookupRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "areaCodePostcodeLookupRequestType", propOrder = { - -}) -public class AreaCodePostcodeLookupRequestType { - - @XmlElement(required = true) - protected String postcode; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupResponseType.java deleted file mode 100644 index 10667d9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodePostcodeLookupResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for areaCodePostcodeLookupResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="areaCodePostcodeLookupResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}AreaCodeArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "areaCodePostcodeLookupResponseType", propOrder = { - -}) -public class AreaCodePostcodeLookupResponseType { - - @XmlElement(required = true) - protected AreaCodeArray out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link AreaCodeArray } - * - */ - public AreaCodeArray getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link AreaCodeArray } - * - */ - public void setOut(AreaCodeArray value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeToNeighborhoodcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeToNeighborhoodcodeRequestType.java deleted file mode 100644 index 693ad3e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeToNeighborhoodcodeRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for areaCodeToNeighborhoodcodeRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="areaCodeToNeighborhoodcodeRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="areacode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "areaCodeToNeighborhoodcodeRequestType", propOrder = { - -}) -public class AreaCodeToNeighborhoodcodeRequestType { - - @XmlElement(required = true) - protected String areacode; - protected int page; - - /** - * Gets the value of the areacode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAreacode() { - return areacode; - } - - /** - * Sets the value of the areacode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAreacode(String value) { - this.areacode = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeToNeighborhoodcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeToNeighborhoodcodeResponseType.java deleted file mode 100644 index 59032a9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/AreaCodeToNeighborhoodcodeResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for areaCodeToNeighborhoodcodeResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="areaCodeToNeighborhoodcodeResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}NeighborhoodPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "areaCodeToNeighborhoodcodeResponseType", propOrder = { - -}) -public class AreaCodeToNeighborhoodcodeResponseType { - - @XmlElement(required = true) - protected NeighborhoodPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link NeighborhoodPagedResult } - * - */ - public NeighborhoodPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link NeighborhoodPagedResult } - * - */ - public void setOut(NeighborhoodPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Base64BinaryArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Base64BinaryArray.java deleted file mode 100644 index b673120..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Base64BinaryArray.java +++ /dev/null @@ -1,73 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for base64BinaryArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="base64BinaryArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.w3.org/2001/XMLSchema}base64Binary" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "base64BinaryArray", propOrder = { - "item" -}) -public class Base64BinaryArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * byte[] - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BbanDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BbanDetails.java deleted file mode 100644 index b4ca6e9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BbanDetails.java +++ /dev/null @@ -1,339 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BbanDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BbanDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bban_bank_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="bban_branch_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="bban_account" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="bban_account_prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="bban_account_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="bban_checksum" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="bban_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="bban_holder_kennitala" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="bban_owner_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="bban_sort_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="bban_zero" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BbanDetails", propOrder = { - -}) -public class BbanDetails { - - @XmlElement(name = "bban_bank_id") - protected String bbanBankId; - @XmlElement(name = "bban_branch_id") - protected String bbanBranchId; - @XmlElement(name = "bban_account") - protected String bbanAccount; - @XmlElement(name = "bban_account_prefix") - protected String bbanAccountPrefix; - @XmlElement(name = "bban_account_type") - protected String bbanAccountType; - @XmlElement(name = "bban_checksum") - protected String bbanChecksum; - @XmlElement(name = "bban_currency") - protected String bbanCurrency; - @XmlElement(name = "bban_holder_kennitala") - protected String bbanHolderKennitala; - @XmlElement(name = "bban_owner_number") - protected String bbanOwnerNumber; - @XmlElement(name = "bban_sort_code") - protected String bbanSortCode; - @XmlElement(name = "bban_zero") - protected String bbanZero; - - /** - * Gets the value of the bbanBankId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBbanBankId() { - return bbanBankId; - } - - /** - * Sets the value of the bbanBankId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBbanBankId(String value) { - this.bbanBankId = value; - } - - /** - * Gets the value of the bbanBranchId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBbanBranchId() { - return bbanBranchId; - } - - /** - * Sets the value of the bbanBranchId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBbanBranchId(String value) { - this.bbanBranchId = value; - } - - /** - * Gets the value of the bbanAccount property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBbanAccount() { - return bbanAccount; - } - - /** - * Sets the value of the bbanAccount property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBbanAccount(String value) { - this.bbanAccount = value; - } - - /** - * Gets the value of the bbanAccountPrefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBbanAccountPrefix() { - return bbanAccountPrefix; - } - - /** - * Sets the value of the bbanAccountPrefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBbanAccountPrefix(String value) { - this.bbanAccountPrefix = value; - } - - /** - * Gets the value of the bbanAccountType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBbanAccountType() { - return bbanAccountType; - } - - /** - * Sets the value of the bbanAccountType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBbanAccountType(String value) { - this.bbanAccountType = value; - } - - /** - * Gets the value of the bbanChecksum property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBbanChecksum() { - return bbanChecksum; - } - - /** - * Sets the value of the bbanChecksum property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBbanChecksum(String value) { - this.bbanChecksum = value; - } - - /** - * Gets the value of the bbanCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBbanCurrency() { - return bbanCurrency; - } - - /** - * Sets the value of the bbanCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBbanCurrency(String value) { - this.bbanCurrency = value; - } - - /** - * Gets the value of the bbanHolderKennitala property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBbanHolderKennitala() { - return bbanHolderKennitala; - } - - /** - * Sets the value of the bbanHolderKennitala property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBbanHolderKennitala(String value) { - this.bbanHolderKennitala = value; - } - - /** - * Gets the value of the bbanOwnerNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBbanOwnerNumber() { - return bbanOwnerNumber; - } - - /** - * Sets the value of the bbanOwnerNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBbanOwnerNumber(String value) { - this.bbanOwnerNumber = value; - } - - /** - * Gets the value of the bbanSortCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBbanSortCode() { - return bbanSortCode; - } - - /** - * Sets the value of the bbanSortCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBbanSortCode(String value) { - this.bbanSortCode = value; - } - - /** - * Gets the value of the bbanZero property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBbanZero() { - return bbanZero; - } - - /** - * Sets the value of the bbanZero property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBbanZero(String value) { - this.bbanZero = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAddress.java deleted file mode 100644 index 42a0ecf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAddress.java +++ /dev/null @@ -1,194 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessAddress complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessAddress">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="box" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="municipality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="post_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessAddress", propOrder = { - -}) -public class BelgianBusinessAddress { - - @XmlElement(required = true) - protected String street; - @XmlElement(name = "house_number") - protected int houseNumber; - protected String box; - @XmlElement(name = "country_code", required = true) - protected String countryCode; - protected String municipality; - @XmlElement(name = "post_code", required = true) - protected String postCode; - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNumber property. - * - */ - public int getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - */ - public void setHouseNumber(int value) { - this.houseNumber = value; - } - - /** - * Gets the value of the box property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBox() { - return box; - } - - /** - * Sets the value of the box property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBox(String value) { - this.box = value; - } - - /** - * Gets the value of the countryCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryCode() { - return countryCode; - } - - /** - * Sets the value of the countryCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryCode(String value) { - this.countryCode = value; - } - - /** - * Gets the value of the municipality property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMunicipality() { - return municipality; - } - - /** - * Sets the value of the municipality property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMunicipality(String value) { - this.municipality = value; - } - - /** - * Gets the value of the postCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostCode() { - return postCode; - } - - /** - * Sets the value of the postCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostCode(String value) { - this.postCode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAddressArray.java deleted file mode 100644 index ebd5805..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAddressArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessAddressArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessAddressArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessAddress" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessAddressArray", propOrder = { - "item" -}) -public class BelgianBusinessAddressArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BelgianBusinessAddress } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAnnualFinancialStatement.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAnnualFinancialStatement.java deleted file mode 100644 index bf2d924..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAnnualFinancialStatement.java +++ /dev/null @@ -1,562 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessAnnualFinancialStatement complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessAnnualFinancialStatement">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="number_of_employees" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="turnover" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="equity" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="revisors" type="{http://www.webservices.nl/soap/}BelgianBusinessRevisorArray" minOccurs="0"/>
- *         <element name="account_date" type="{http://www.webservices.nl/soap/}BelgianBusinessDate" minOccurs="0"/>
- *         <element name="current_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="gross_operating_margin" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="tangible_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="gain_loss_period" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="current_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="net_cash" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="self_financing_degree" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="return_on_equity" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="added_value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="balance_type" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="ratios" type="{http://www.webservices.nl/soap/}BelgianBusinessRatios"/>
- *         <element name="social_balance" type="{http://www.webservices.nl/soap/}BelgianBusinessSocialBalance"/>
- *         <element name="financial_values" type="{http://www.webservices.nl/soap/}BelgianBusinessFinancialValues"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessAnnualFinancialStatement", propOrder = { - -}) -public class BelgianBusinessAnnualFinancialStatement { - - @XmlElement(required = true) - protected String id; - protected int year; - @XmlElement(name = "number_of_employees") - protected Integer numberOfEmployees; - protected Float turnover; - protected float equity; - protected BelgianBusinessRevisorArray revisors; - @XmlElement(name = "account_date") - protected BelgianBusinessDate accountDate; - @XmlElement(name = "current_assets") - protected Float currentAssets; - @XmlElement(name = "gross_operating_margin") - protected Float grossOperatingMargin; - @XmlElement(name = "tangible_fixed_assets") - protected Float tangibleFixedAssets; - @XmlElement(name = "gain_loss_period") - protected Float gainLossPeriod; - @XmlElement(name = "current_ratio") - protected Float currentRatio; - @XmlElement(name = "net_cash") - protected Float netCash; - @XmlElement(name = "self_financing_degree") - protected Float selfFinancingDegree; - @XmlElement(name = "return_on_equity") - protected Float returnOnEquity; - @XmlElement(name = "added_value") - protected Float addedValue; - @XmlElement(name = "balance_type") - protected Float balanceType; - @XmlElement(required = true) - protected BelgianBusinessRatios ratios; - @XmlElement(name = "social_balance", required = true) - protected BelgianBusinessSocialBalance socialBalance; - @XmlElement(name = "financial_values", required = true) - protected BelgianBusinessFinancialValues financialValues; - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the year property. - * - */ - public int getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - */ - public void setYear(int value) { - this.year = value; - } - - /** - * Gets the value of the numberOfEmployees property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getNumberOfEmployees() { - return numberOfEmployees; - } - - /** - * Sets the value of the numberOfEmployees property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setNumberOfEmployees(Integer value) { - this.numberOfEmployees = value; - } - - /** - * Gets the value of the turnover property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getTurnover() { - return turnover; - } - - /** - * Sets the value of the turnover property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setTurnover(Float value) { - this.turnover = value; - } - - /** - * Gets the value of the equity property. - * - */ - public float getEquity() { - return equity; - } - - /** - * Sets the value of the equity property. - * - */ - public void setEquity(float value) { - this.equity = value; - } - - /** - * Gets the value of the revisors property. - * - * @return - * possible object is - * {@link BelgianBusinessRevisorArray } - * - */ - public BelgianBusinessRevisorArray getRevisors() { - return revisors; - } - - /** - * Sets the value of the revisors property. - * - * @param value - * allowed object is - * {@link BelgianBusinessRevisorArray } - * - */ - public void setRevisors(BelgianBusinessRevisorArray value) { - this.revisors = value; - } - - /** - * Gets the value of the accountDate property. - * - * @return - * possible object is - * {@link BelgianBusinessDate } - * - */ - public BelgianBusinessDate getAccountDate() { - return accountDate; - } - - /** - * Sets the value of the accountDate property. - * - * @param value - * allowed object is - * {@link BelgianBusinessDate } - * - */ - public void setAccountDate(BelgianBusinessDate value) { - this.accountDate = value; - } - - /** - * Gets the value of the currentAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getCurrentAssets() { - return currentAssets; - } - - /** - * Sets the value of the currentAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setCurrentAssets(Float value) { - this.currentAssets = value; - } - - /** - * Gets the value of the grossOperatingMargin property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getGrossOperatingMargin() { - return grossOperatingMargin; - } - - /** - * Sets the value of the grossOperatingMargin property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setGrossOperatingMargin(Float value) { - this.grossOperatingMargin = value; - } - - /** - * Gets the value of the tangibleFixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getTangibleFixedAssets() { - return tangibleFixedAssets; - } - - /** - * Sets the value of the tangibleFixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setTangibleFixedAssets(Float value) { - this.tangibleFixedAssets = value; - } - - /** - * Gets the value of the gainLossPeriod property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getGainLossPeriod() { - return gainLossPeriod; - } - - /** - * Sets the value of the gainLossPeriod property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setGainLossPeriod(Float value) { - this.gainLossPeriod = value; - } - - /** - * Gets the value of the currentRatio property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getCurrentRatio() { - return currentRatio; - } - - /** - * Sets the value of the currentRatio property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setCurrentRatio(Float value) { - this.currentRatio = value; - } - - /** - * Gets the value of the netCash property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getNetCash() { - return netCash; - } - - /** - * Sets the value of the netCash property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setNetCash(Float value) { - this.netCash = value; - } - - /** - * Gets the value of the selfFinancingDegree property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getSelfFinancingDegree() { - return selfFinancingDegree; - } - - /** - * Sets the value of the selfFinancingDegree property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setSelfFinancingDegree(Float value) { - this.selfFinancingDegree = value; - } - - /** - * Gets the value of the returnOnEquity property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getReturnOnEquity() { - return returnOnEquity; - } - - /** - * Sets the value of the returnOnEquity property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setReturnOnEquity(Float value) { - this.returnOnEquity = value; - } - - /** - * Gets the value of the addedValue property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAddedValue() { - return addedValue; - } - - /** - * Sets the value of the addedValue property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAddedValue(Float value) { - this.addedValue = value; - } - - /** - * Gets the value of the balanceType property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getBalanceType() { - return balanceType; - } - - /** - * Sets the value of the balanceType property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setBalanceType(Float value) { - this.balanceType = value; - } - - /** - * Gets the value of the ratios property. - * - * @return - * possible object is - * {@link BelgianBusinessRatios } - * - */ - public BelgianBusinessRatios getRatios() { - return ratios; - } - - /** - * Sets the value of the ratios property. - * - * @param value - * allowed object is - * {@link BelgianBusinessRatios } - * - */ - public void setRatios(BelgianBusinessRatios value) { - this.ratios = value; - } - - /** - * Gets the value of the socialBalance property. - * - * @return - * possible object is - * {@link BelgianBusinessSocialBalance } - * - */ - public BelgianBusinessSocialBalance getSocialBalance() { - return socialBalance; - } - - /** - * Sets the value of the socialBalance property. - * - * @param value - * allowed object is - * {@link BelgianBusinessSocialBalance } - * - */ - public void setSocialBalance(BelgianBusinessSocialBalance value) { - this.socialBalance = value; - } - - /** - * Gets the value of the financialValues property. - * - * @return - * possible object is - * {@link BelgianBusinessFinancialValues } - * - */ - public BelgianBusinessFinancialValues getFinancialValues() { - return financialValues; - } - - /** - * Sets the value of the financialValues property. - * - * @param value - * allowed object is - * {@link BelgianBusinessFinancialValues } - * - */ - public void setFinancialValues(BelgianBusinessFinancialValues value) { - this.financialValues = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAnnualFinancialStatementArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAnnualFinancialStatementArray.java deleted file mode 100644 index 5a772d6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessAnnualFinancialStatementArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessAnnualFinancialStatementArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessAnnualFinancialStatementArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessAnnualFinancialStatement" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessAnnualFinancialStatementArray", propOrder = { - "item" -}) -public class BelgianBusinessAnnualFinancialStatementArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BelgianBusinessAnnualFinancialStatement } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessBankAccount.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessBankAccount.java deleted file mode 100644 index 6a795f4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessBankAccount.java +++ /dev/null @@ -1,142 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessBankAccount complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessBankAccount">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="bic" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="iban_valid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="start_date" type="{http://www.webservices.nl/soap/}BelgianBusinessDate" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessBankAccount", propOrder = { - -}) -public class BelgianBusinessBankAccount { - - @XmlElement(required = true) - protected String iban; - @XmlElement(required = true) - protected String bic; - @XmlElement(name = "iban_valid") - protected boolean ibanValid; - @XmlElement(name = "start_date") - protected BelgianBusinessDate startDate; - - /** - * Gets the value of the iban property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIban() { - return iban; - } - - /** - * Sets the value of the iban property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIban(String value) { - this.iban = value; - } - - /** - * Gets the value of the bic property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBic() { - return bic; - } - - /** - * Sets the value of the bic property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBic(String value) { - this.bic = value; - } - - /** - * Gets the value of the ibanValid property. - * - */ - public boolean isIbanValid() { - return ibanValid; - } - - /** - * Sets the value of the ibanValid property. - * - */ - public void setIbanValid(boolean value) { - this.ibanValid = value; - } - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link BelgianBusinessDate } - * - */ - public BelgianBusinessDate getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link BelgianBusinessDate } - * - */ - public void setStartDate(BelgianBusinessDate value) { - this.startDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessBankAccountArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessBankAccountArray.java deleted file mode 100644 index 3a88d9c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessBankAccountArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessBankAccountArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessBankAccountArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessBankAccount" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessBankAccountArray", propOrder = { - "item" -}) -public class BelgianBusinessBankAccountArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BelgianBusinessBankAccount } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessCompany.java deleted file mode 100644 index 06ca7e8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessCompany.java +++ /dev/null @@ -1,384 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessCompany complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessCompany">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="website" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="start_date" type="{http://www.webservices.nl/soap/}BelgianBusinessDate"/>
- *         <element name="establishment_units" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="type" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItem"/>
- *         <element name="activities" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItemArray"/>
- *         <element name="addresses" type="{http://www.webservices.nl/soap/}BelgianBusinessAddressArray"/>
- *         <element name="juridical_form" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItem"/>
- *         <element name="juridical_situation" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItem"/>
- *         <element name="legal_representatives_count" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_representative_companies_count" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessCompany", propOrder = { - -}) -public class BelgianBusinessCompany { - - @XmlElement(name = "vat_number", required = true) - protected String vatNumber; - @XmlElement(required = true) - protected String name; - @XmlElement(name = "phone_number") - protected String phoneNumber; - protected String website; - @XmlElement(name = "start_date", required = true) - protected BelgianBusinessDate startDate; - @XmlElement(name = "establishment_units") - protected int establishmentUnits; - @XmlElement(required = true) - protected BelgianBusinessDatedItem type; - @XmlElement(required = true) - protected BelgianBusinessDatedItemArray activities; - @XmlElement(required = true) - protected BelgianBusinessAddressArray addresses; - @XmlElement(name = "juridical_form", required = true) - protected BelgianBusinessDatedItem juridicalForm; - @XmlElement(name = "juridical_situation", required = true) - protected BelgianBusinessDatedItem juridicalSituation; - @XmlElement(name = "legal_representatives_count", required = true) - protected String legalRepresentativesCount; - @XmlElement(name = "legal_representative_companies_count", required = true) - protected String legalRepresentativeCompaniesCount; - - /** - * Gets the value of the vatNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVatNumber() { - return vatNumber; - } - - /** - * Sets the value of the vatNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVatNumber(String value) { - this.vatNumber = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the phoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPhoneNumber() { - return phoneNumber; - } - - /** - * Sets the value of the phoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPhoneNumber(String value) { - this.phoneNumber = value; - } - - /** - * Gets the value of the website property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWebsite() { - return website; - } - - /** - * Sets the value of the website property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWebsite(String value) { - this.website = value; - } - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link BelgianBusinessDate } - * - */ - public BelgianBusinessDate getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link BelgianBusinessDate } - * - */ - public void setStartDate(BelgianBusinessDate value) { - this.startDate = value; - } - - /** - * Gets the value of the establishmentUnits property. - * - */ - public int getEstablishmentUnits() { - return establishmentUnits; - } - - /** - * Sets the value of the establishmentUnits property. - * - */ - public void setEstablishmentUnits(int value) { - this.establishmentUnits = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link BelgianBusinessDatedItem } - * - */ - public BelgianBusinessDatedItem getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link BelgianBusinessDatedItem } - * - */ - public void setType(BelgianBusinessDatedItem value) { - this.type = value; - } - - /** - * Gets the value of the activities property. - * - * @return - * possible object is - * {@link BelgianBusinessDatedItemArray } - * - */ - public BelgianBusinessDatedItemArray getActivities() { - return activities; - } - - /** - * Sets the value of the activities property. - * - * @param value - * allowed object is - * {@link BelgianBusinessDatedItemArray } - * - */ - public void setActivities(BelgianBusinessDatedItemArray value) { - this.activities = value; - } - - /** - * Gets the value of the addresses property. - * - * @return - * possible object is - * {@link BelgianBusinessAddressArray } - * - */ - public BelgianBusinessAddressArray getAddresses() { - return addresses; - } - - /** - * Sets the value of the addresses property. - * - * @param value - * allowed object is - * {@link BelgianBusinessAddressArray } - * - */ - public void setAddresses(BelgianBusinessAddressArray value) { - this.addresses = value; - } - - /** - * Gets the value of the juridicalForm property. - * - * @return - * possible object is - * {@link BelgianBusinessDatedItem } - * - */ - public BelgianBusinessDatedItem getJuridicalForm() { - return juridicalForm; - } - - /** - * Sets the value of the juridicalForm property. - * - * @param value - * allowed object is - * {@link BelgianBusinessDatedItem } - * - */ - public void setJuridicalForm(BelgianBusinessDatedItem value) { - this.juridicalForm = value; - } - - /** - * Gets the value of the juridicalSituation property. - * - * @return - * possible object is - * {@link BelgianBusinessDatedItem } - * - */ - public BelgianBusinessDatedItem getJuridicalSituation() { - return juridicalSituation; - } - - /** - * Sets the value of the juridicalSituation property. - * - * @param value - * allowed object is - * {@link BelgianBusinessDatedItem } - * - */ - public void setJuridicalSituation(BelgianBusinessDatedItem value) { - this.juridicalSituation = value; - } - - /** - * Gets the value of the legalRepresentativesCount property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalRepresentativesCount() { - return legalRepresentativesCount; - } - - /** - * Sets the value of the legalRepresentativesCount property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalRepresentativesCount(String value) { - this.legalRepresentativesCount = value; - } - - /** - * Gets the value of the legalRepresentativeCompaniesCount property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalRepresentativeCompaniesCount() { - return legalRepresentativeCompaniesCount; - } - - /** - * Sets the value of the legalRepresentativeCompaniesCount property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalRepresentativeCompaniesCount(String value) { - this.legalRepresentativeCompaniesCount = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDate.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDate.java deleted file mode 100644 index 2c4f415..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDate.java +++ /dev/null @@ -1,119 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessDate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessDate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessDate", propOrder = { - -}) -public class BelgianBusinessDate { - - protected Integer day; - protected Integer month; - protected Integer year; - - /** - * Gets the value of the day property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDay() { - return day; - } - - /** - * Sets the value of the day property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDay(Integer value) { - this.day = value; - } - - /** - * Gets the value of the month property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMonth() { - return month; - } - - /** - * Sets the value of the month property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMonth(Integer value) { - this.month = value; - } - - /** - * Gets the value of the year property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setYear(Integer value) { - this.year = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDatedItem.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDatedItem.java deleted file mode 100644 index c0bc49d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDatedItem.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessDatedItem complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessDatedItem">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="start_date" type="{http://www.webservices.nl/soap/}BelgianBusinessDate" minOccurs="0"/>
- *         <element name="end_date" type="{http://www.webservices.nl/soap/}BelgianBusinessDate" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessDatedItem", propOrder = { - -}) -public class BelgianBusinessDatedItem { - - @XmlElement(required = true) - protected String code; - protected String label; - @XmlElement(name = "start_date") - protected BelgianBusinessDate startDate; - @XmlElement(name = "end_date") - protected BelgianBusinessDate endDate; - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - - /** - * Gets the value of the label property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLabel() { - return label; - } - - /** - * Sets the value of the label property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLabel(String value) { - this.label = value; - } - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link BelgianBusinessDate } - * - */ - public BelgianBusinessDate getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link BelgianBusinessDate } - * - */ - public void setStartDate(BelgianBusinessDate value) { - this.startDate = value; - } - - /** - * Gets the value of the endDate property. - * - * @return - * possible object is - * {@link BelgianBusinessDate } - * - */ - public BelgianBusinessDate getEndDate() { - return endDate; - } - - /** - * Sets the value of the endDate property. - * - * @param value - * allowed object is - * {@link BelgianBusinessDate } - * - */ - public void setEndDate(BelgianBusinessDate value) { - this.endDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDatedItemArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDatedItemArray.java deleted file mode 100644 index ad8bb27..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDatedItemArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessDatedItemArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessDatedItemArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItem" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessDatedItemArray", propOrder = { - "item" -}) -public class BelgianBusinessDatedItemArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BelgianBusinessDatedItem } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDossier.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDossier.java deleted file mode 100644 index fb944f6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDossier.java +++ /dev/null @@ -1,230 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessDossier complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessDossier">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="errors" type="{http://www.webservices.nl/soap/}BelgianBusinessDossierErrors" minOccurs="0"/>
- *         <element name="company" type="{http://www.webservices.nl/soap/}BelgianBusinessCompany"/>
- *         <element name="bank_accounts" type="{http://www.webservices.nl/soap/}BelgianBusinessBankAccountArray"/>
- *         <element name="annual_financial_statements" type="{http://www.webservices.nl/soap/}BelgianBusinessAnnualFinancialStatementArray"/>
- *         <element name="legal_representative_companies" type="{http://www.webservices.nl/soap/}BelgianBusinessLegalRepresentativeCompanyArray"/>
- *         <element name="legal_representatives" type="{http://www.webservices.nl/soap/}BelgianBusinessLegalRepresentativeArray"/>
- *         <element name="stakeholders" type="{http://www.webservices.nl/soap/}BelgianBusinessStakeHolderArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessDossier", propOrder = { - -}) -public class BelgianBusinessDossier { - - protected BelgianBusinessDossierErrors errors; - @XmlElement(required = true) - protected BelgianBusinessCompany company; - @XmlElement(name = "bank_accounts", required = true) - protected BelgianBusinessBankAccountArray bankAccounts; - @XmlElement(name = "annual_financial_statements", required = true) - protected BelgianBusinessAnnualFinancialStatementArray annualFinancialStatements; - @XmlElement(name = "legal_representative_companies", required = true) - protected BelgianBusinessLegalRepresentativeCompanyArray legalRepresentativeCompanies; - @XmlElement(name = "legal_representatives", required = true) - protected BelgianBusinessLegalRepresentativeArray legalRepresentatives; - @XmlElement(required = true) - protected BelgianBusinessStakeHolderArray stakeholders; - - /** - * Gets the value of the errors property. - * - * @return - * possible object is - * {@link BelgianBusinessDossierErrors } - * - */ - public BelgianBusinessDossierErrors getErrors() { - return errors; - } - - /** - * Sets the value of the errors property. - * - * @param value - * allowed object is - * {@link BelgianBusinessDossierErrors } - * - */ - public void setErrors(BelgianBusinessDossierErrors value) { - this.errors = value; - } - - /** - * Gets the value of the company property. - * - * @return - * possible object is - * {@link BelgianBusinessCompany } - * - */ - public BelgianBusinessCompany getCompany() { - return company; - } - - /** - * Sets the value of the company property. - * - * @param value - * allowed object is - * {@link BelgianBusinessCompany } - * - */ - public void setCompany(BelgianBusinessCompany value) { - this.company = value; - } - - /** - * Gets the value of the bankAccounts property. - * - * @return - * possible object is - * {@link BelgianBusinessBankAccountArray } - * - */ - public BelgianBusinessBankAccountArray getBankAccounts() { - return bankAccounts; - } - - /** - * Sets the value of the bankAccounts property. - * - * @param value - * allowed object is - * {@link BelgianBusinessBankAccountArray } - * - */ - public void setBankAccounts(BelgianBusinessBankAccountArray value) { - this.bankAccounts = value; - } - - /** - * Gets the value of the annualFinancialStatements property. - * - * @return - * possible object is - * {@link BelgianBusinessAnnualFinancialStatementArray } - * - */ - public BelgianBusinessAnnualFinancialStatementArray getAnnualFinancialStatements() { - return annualFinancialStatements; - } - - /** - * Sets the value of the annualFinancialStatements property. - * - * @param value - * allowed object is - * {@link BelgianBusinessAnnualFinancialStatementArray } - * - */ - public void setAnnualFinancialStatements(BelgianBusinessAnnualFinancialStatementArray value) { - this.annualFinancialStatements = value; - } - - /** - * Gets the value of the legalRepresentativeCompanies property. - * - * @return - * possible object is - * {@link BelgianBusinessLegalRepresentativeCompanyArray } - * - */ - public BelgianBusinessLegalRepresentativeCompanyArray getLegalRepresentativeCompanies() { - return legalRepresentativeCompanies; - } - - /** - * Sets the value of the legalRepresentativeCompanies property. - * - * @param value - * allowed object is - * {@link BelgianBusinessLegalRepresentativeCompanyArray } - * - */ - public void setLegalRepresentativeCompanies(BelgianBusinessLegalRepresentativeCompanyArray value) { - this.legalRepresentativeCompanies = value; - } - - /** - * Gets the value of the legalRepresentatives property. - * - * @return - * possible object is - * {@link BelgianBusinessLegalRepresentativeArray } - * - */ - public BelgianBusinessLegalRepresentativeArray getLegalRepresentatives() { - return legalRepresentatives; - } - - /** - * Sets the value of the legalRepresentatives property. - * - * @param value - * allowed object is - * {@link BelgianBusinessLegalRepresentativeArray } - * - */ - public void setLegalRepresentatives(BelgianBusinessLegalRepresentativeArray value) { - this.legalRepresentatives = value; - } - - /** - * Gets the value of the stakeholders property. - * - * @return - * possible object is - * {@link BelgianBusinessStakeHolderArray } - * - */ - public BelgianBusinessStakeHolderArray getStakeholders() { - return stakeholders; - } - - /** - * Sets the value of the stakeholders property. - * - * @param value - * allowed object is - * {@link BelgianBusinessStakeHolderArray } - * - */ - public void setStakeholders(BelgianBusinessStakeHolderArray value) { - this.stakeholders = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDossierErrors.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDossierErrors.java deleted file mode 100644 index e71fba1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessDossierErrors.java +++ /dev/null @@ -1,177 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessDossierErrors complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessDossierErrors">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bank_accounts_error" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="annual_financial_statements_error" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_representative_companies_error" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_representatives_error" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="stakeholders_error" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessDossierErrors", propOrder = { - -}) -public class BelgianBusinessDossierErrors { - - @XmlElement(name = "bank_accounts_error") - protected String bankAccountsError; - @XmlElement(name = "annual_financial_statements_error") - protected String annualFinancialStatementsError; - @XmlElement(name = "legal_representative_companies_error") - protected String legalRepresentativeCompaniesError; - @XmlElement(name = "legal_representatives_error") - protected String legalRepresentativesError; - @XmlElement(name = "stakeholders_error") - protected String stakeholdersError; - - /** - * Gets the value of the bankAccountsError property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBankAccountsError() { - return bankAccountsError; - } - - /** - * Sets the value of the bankAccountsError property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBankAccountsError(String value) { - this.bankAccountsError = value; - } - - /** - * Gets the value of the annualFinancialStatementsError property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAnnualFinancialStatementsError() { - return annualFinancialStatementsError; - } - - /** - * Sets the value of the annualFinancialStatementsError property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAnnualFinancialStatementsError(String value) { - this.annualFinancialStatementsError = value; - } - - /** - * Gets the value of the legalRepresentativeCompaniesError property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalRepresentativeCompaniesError() { - return legalRepresentativeCompaniesError; - } - - /** - * Sets the value of the legalRepresentativeCompaniesError property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalRepresentativeCompaniesError(String value) { - this.legalRepresentativeCompaniesError = value; - } - - /** - * Gets the value of the legalRepresentativesError property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalRepresentativesError() { - return legalRepresentativesError; - } - - /** - * Sets the value of the legalRepresentativesError property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalRepresentativesError(String value) { - this.legalRepresentativesError = value; - } - - /** - * Gets the value of the stakeholdersError property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStakeholdersError() { - return stakeholdersError; - } - - /** - * Sets the value of the stakeholdersError property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStakeholdersError(String value) { - this.stakeholdersError = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessFinancialValues.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessFinancialValues.java deleted file mode 100644 index 43ba9aa..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessFinancialValues.java +++ /dev/null @@ -1,3141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessFinancialValues complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessFinancialValues">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="number_of_employees" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="number_of_employees_men" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="number_of_employees_women" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="capital" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="financial_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="currents_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="amounts_receivable_more_one_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="trade_debtors_within_one_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="equity" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="amounts_payable_within_one_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="trade_debts_payable_within_one_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="turnover" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="gross_operating_margin" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="increase_decrease_stocks_work_contracts_progress" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="contributions_gifts_legacies_grants" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="remuneration_social_security_pensions" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="depreciation_other_amounts_written_down_formation_expenses_intangible_tangible_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="amounts_written_down_stocks_contracts_progress_trade_debtors_appropriations_write_backs" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="provisions_risks_charges_appropriations_write_backs" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="operating_charges" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="operating_profit_loss" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="financial_income" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="financial_charges" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="extraordinary_income" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="extraordinary_charges" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="income_taxes" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="gain_loss_period" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="tangible_fixed_assets_acquisition_including_produced_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="tangible_fixed_assets_revaluation_gains_third_parties" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="tangible_fixed_assets_depreciations_amount_written_down_acquired_third_party" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="outstanding_taxes_payable_due_tax_authorities" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="remuneration_social_security_recipient_national_social_security_office" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="amounts_receivable_within_one_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="accrued_charges_deferred_income" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="current_investments" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="cash_bank_hand" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="equity_liabilities" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="operating_income" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="other_operating_income" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="operating_subsidies_compensatory_amounts" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="capital_subsidies_granted_public_authorities_recorded_income_period" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="raw_materials_consumables" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="services_other_goods" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="hired_temporary_staff_costs_enterprise" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="persons_placed_enterprises_disposal_costs_enterprise" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_recorded_personnel_register_average_number_employees_calculated_full_time_equivalents" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="stock_raw_materials_consumables" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="stock_goods_purchased_resale" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="stock_immovable_property_intended_sale" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="advance_payments_purchases_stocks" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="stocks_contracts_progress" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="deferred_charges_accrued_income" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="own_construction_capitalised" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="stock_work_progress" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="stock_finished_goods" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="contracts_progress" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="personal_guarantees_provided_or_irrevocably_promised_by_enterprise" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="value_added_taxes_charged_by_enterprise" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="purchases_raw_materials_consumables" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="value_added_taxes_charged_to_enterprise" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="amounts_written_down_current_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="provisions_financial_nature_appropriations" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="provisions_financial_nature_uses_write_backs" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="extraordinary_depreciation_extraordinary_amounts_written_down" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="amounts_written_down_financial_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="provisions_extraordinary_liabilities_charges_appropriations_uses" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="write_back_depreciation_amounts_written_down_intangible_tangible_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="write_back_amounts_written_down_financial_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="write_back_provisions_extraordinary_liabilities_charges" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="losses_disposal_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="income_taxes_result_period" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="transfer_from_deferred_taxes" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="transfer_to_deferred_taxes" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="interest_subsidies_granted_public_authorities_recorded_income_period" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="charges_discounting_amounts_receivable" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="debt_charges" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="depreciation_loan_issue_expenses_reimbursement_premiums" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="provisions_pensions_similar_obligations_appropriations_write_backs" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="current_portion_amounts_payable_more_one_year_falling_due_within_one_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="amounts_payable_more_one_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="provisions_deferred_taxes" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="amounts_payable" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="reserves" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="accumulated_profits_losses" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="financial_debts_payable_within_one_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="formation_expenses" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="intangible_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="tangible_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="land_buildings_acquisition_including_produced_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="plant_machinery_equipment_acquisition_including_produced_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="furniture_vehicles_acquisition_including_produced_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="leasing_other_similar_rights_acquisition_including_produced_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="other_tangible_fixed_assets_acquisition_including_produced_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="tangible_fixed_assets_under_construction" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="land_buildings_revaluation_gains_third_parties" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="plant_machinery_equipment_revaluation_gains_third_parties" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="furniture_vehicles_revaluation_gains_third_parties" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="leasing_other_similar_rights_revaluation_gains_third_parties" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="other_tangible_fixed_assets_revaluation_gains_third_parties" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="tangible_fixed_assets_under_construction_advance_payments_revaluation_gains_third_parties" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="land_buildings_depreciations_amount_written_down_acquired_third_party" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="plant_machinery_equipment_depreciations_amount_written_down_acquired_third_party" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="furniture_vehicles_depreciations_amount_written_down_acquired_third_party" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="leasing_other_similar_rights_depreciations_amount_written_down_acquired_third_party" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="other_tangible_fixed_assets_depreciations_amount_written_down_acquired_third_party" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="tangible_fixed_assets_under_construction_advance_payments_depreciations" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_recorded_personnel_register_total_number_closing_date" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="number_employees_personnel_register_closing_date_financial_year_men_full_time" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="number_employees_personnel_register_closing_date_financial_year_women_full_time" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="number_employees_personnel_register_closing_date_financial_year_men_part_time" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="number_employees_personnel_register_closing_date_financial_year_women_part_time" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="investments" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="added_value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessFinancialValues", propOrder = { - -}) -public class BelgianBusinessFinancialValues { - - @XmlElement(name = "fixed_assets") - protected Float fixedAssets; - @XmlElement(name = "number_of_employees") - protected Integer numberOfEmployees; - @XmlElement(name = "number_of_employees_men") - protected Integer numberOfEmployeesMen; - @XmlElement(name = "number_of_employees_women") - protected Integer numberOfEmployeesWomen; - protected Float capital; - @XmlElement(name = "financial_fixed_assets") - protected Float financialFixedAssets; - @XmlElement(name = "currents_assets") - protected Float currentsAssets; - @XmlElement(name = "amounts_receivable_more_one_year") - protected Float amountsReceivableMoreOneYear; - @XmlElement(name = "trade_debtors_within_one_year") - protected Float tradeDebtorsWithinOneYear; - protected Float equity; - @XmlElement(name = "amounts_payable_within_one_year") - protected Float amountsPayableWithinOneYear; - @XmlElement(name = "trade_debts_payable_within_one_year") - protected Float tradeDebtsPayableWithinOneYear; - protected Float turnover; - @XmlElement(name = "gross_operating_margin") - protected Float grossOperatingMargin; - @XmlElement(name = "increase_decrease_stocks_work_contracts_progress") - protected Float increaseDecreaseStocksWorkContractsProgress; - @XmlElement(name = "contributions_gifts_legacies_grants") - protected Float contributionsGiftsLegaciesGrants; - @XmlElement(name = "remuneration_social_security_pensions") - protected Float remunerationSocialSecurityPensions; - @XmlElement(name = "depreciation_other_amounts_written_down_formation_expenses_intangible_tangible_fixed_assets") - protected Float depreciationOtherAmountsWrittenDownFormationExpensesIntangibleTangibleFixedAssets; - @XmlElement(name = "amounts_written_down_stocks_contracts_progress_trade_debtors_appropriations_write_backs") - protected Float amountsWrittenDownStocksContractsProgressTradeDebtorsAppropriationsWriteBacks; - @XmlElement(name = "provisions_risks_charges_appropriations_write_backs") - protected Float provisionsRisksChargesAppropriationsWriteBacks; - @XmlElement(name = "operating_charges") - protected Float operatingCharges; - @XmlElement(name = "operating_profit_loss") - protected Float operatingProfitLoss; - @XmlElement(name = "financial_income") - protected Float financialIncome; - @XmlElement(name = "financial_charges") - protected Float financialCharges; - @XmlElement(name = "extraordinary_income") - protected Float extraordinaryIncome; - @XmlElement(name = "extraordinary_charges") - protected Float extraordinaryCharges; - @XmlElement(name = "income_taxes") - protected Float incomeTaxes; - @XmlElement(name = "gain_loss_period") - protected Float gainLossPeriod; - @XmlElement(name = "tangible_fixed_assets_acquisition_including_produced_fixed_assets") - protected Float tangibleFixedAssetsAcquisitionIncludingProducedFixedAssets; - @XmlElement(name = "tangible_fixed_assets_revaluation_gains_third_parties") - protected Float tangibleFixedAssetsRevaluationGainsThirdParties; - @XmlElement(name = "tangible_fixed_assets_depreciations_amount_written_down_acquired_third_party") - protected Float tangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty; - @XmlElement(name = "outstanding_taxes_payable_due_tax_authorities") - protected Float outstandingTaxesPayableDueTaxAuthorities; - @XmlElement(name = "remuneration_social_security_recipient_national_social_security_office") - protected Float remunerationSocialSecurityRecipientNationalSocialSecurityOffice; - @XmlElement(name = "amounts_receivable_within_one_year") - protected Float amountsReceivableWithinOneYear; - @XmlElement(name = "accrued_charges_deferred_income") - protected Float accruedChargesDeferredIncome; - @XmlElement(name = "current_investments") - protected Float currentInvestments; - @XmlElement(name = "cash_bank_hand") - protected Float cashBankHand; - @XmlElement(name = "equity_liabilities") - protected Float equityLiabilities; - @XmlElement(name = "operating_income") - protected Float operatingIncome; - @XmlElement(name = "other_operating_income") - protected Float otherOperatingIncome; - @XmlElement(name = "operating_subsidies_compensatory_amounts") - protected Float operatingSubsidiesCompensatoryAmounts; - @XmlElement(name = "capital_subsidies_granted_public_authorities_recorded_income_period") - protected Float capitalSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod; - @XmlElement(name = "raw_materials_consumables") - protected Float rawMaterialsConsumables; - @XmlElement(name = "services_other_goods") - protected Float servicesOtherGoods; - @XmlElement(name = "hired_temporary_staff_costs_enterprise") - protected Float hiredTemporaryStaffCostsEnterprise; - @XmlElement(name = "persons_placed_enterprises_disposal_costs_enterprise") - protected Float personsPlacedEnterprisesDisposalCostsEnterprise; - @XmlElement(name = "employees_recorded_personnel_register_average_number_employees_calculated_full_time_equivalents") - protected Float employeesRecordedPersonnelRegisterAverageNumberEmployeesCalculatedFullTimeEquivalents; - @XmlElement(name = "stock_raw_materials_consumables") - protected Float stockRawMaterialsConsumables; - @XmlElement(name = "stock_goods_purchased_resale") - protected Float stockGoodsPurchasedResale; - @XmlElement(name = "stock_immovable_property_intended_sale") - protected Float stockImmovablePropertyIntendedSale; - @XmlElement(name = "advance_payments_purchases_stocks") - protected Float advancePaymentsPurchasesStocks; - @XmlElement(name = "stocks_contracts_progress") - protected Float stocksContractsProgress; - @XmlElement(name = "deferred_charges_accrued_income") - protected Float deferredChargesAccruedIncome; - @XmlElement(name = "own_construction_capitalised") - protected Float ownConstructionCapitalised; - @XmlElement(name = "stock_work_progress") - protected Float stockWorkProgress; - @XmlElement(name = "stock_finished_goods") - protected Float stockFinishedGoods; - @XmlElement(name = "contracts_progress") - protected Float contractsProgress; - @XmlElement(name = "personal_guarantees_provided_or_irrevocably_promised_by_enterprise") - protected Float personalGuaranteesProvidedOrIrrevocablyPromisedByEnterprise; - @XmlElement(name = "value_added_taxes_charged_by_enterprise") - protected Float valueAddedTaxesChargedByEnterprise; - @XmlElement(name = "purchases_raw_materials_consumables") - protected Float purchasesRawMaterialsConsumables; - @XmlElement(name = "value_added_taxes_charged_to_enterprise") - protected Float valueAddedTaxesChargedToEnterprise; - @XmlElement(name = "amounts_written_down_current_assets") - protected Float amountsWrittenDownCurrentAssets; - @XmlElement(name = "provisions_financial_nature_appropriations") - protected Float provisionsFinancialNatureAppropriations; - @XmlElement(name = "provisions_financial_nature_uses_write_backs") - protected Float provisionsFinancialNatureUsesWriteBacks; - @XmlElement(name = "extraordinary_depreciation_extraordinary_amounts_written_down") - protected Float extraordinaryDepreciationExtraordinaryAmountsWrittenDown; - @XmlElement(name = "amounts_written_down_financial_fixed_assets") - protected Float amountsWrittenDownFinancialFixedAssets; - @XmlElement(name = "provisions_extraordinary_liabilities_charges_appropriations_uses") - protected Float provisionsExtraordinaryLiabilitiesChargesAppropriationsUses; - @XmlElement(name = "write_back_depreciation_amounts_written_down_intangible_tangible_fixed_assets") - protected Float writeBackDepreciationAmountsWrittenDownIntangibleTangibleFixedAssets; - @XmlElement(name = "write_back_amounts_written_down_financial_fixed_assets") - protected Float writeBackAmountsWrittenDownFinancialFixedAssets; - @XmlElement(name = "write_back_provisions_extraordinary_liabilities_charges") - protected Float writeBackProvisionsExtraordinaryLiabilitiesCharges; - @XmlElement(name = "losses_disposal_fixed_assets") - protected Float lossesDisposalFixedAssets; - @XmlElement(name = "income_taxes_result_period") - protected Float incomeTaxesResultPeriod; - @XmlElement(name = "transfer_from_deferred_taxes") - protected Float transferFromDeferredTaxes; - @XmlElement(name = "transfer_to_deferred_taxes") - protected Float transferToDeferredTaxes; - protected Float assets; - @XmlElement(name = "interest_subsidies_granted_public_authorities_recorded_income_period") - protected Float interestSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod; - @XmlElement(name = "charges_discounting_amounts_receivable") - protected Float chargesDiscountingAmountsReceivable; - @XmlElement(name = "debt_charges") - protected Float debtCharges; - @XmlElement(name = "depreciation_loan_issue_expenses_reimbursement_premiums") - protected Float depreciationLoanIssueExpensesReimbursementPremiums; - @XmlElement(name = "provisions_pensions_similar_obligations_appropriations_write_backs") - protected Float provisionsPensionsSimilarObligationsAppropriationsWriteBacks; - @XmlElement(name = "current_portion_amounts_payable_more_one_year_falling_due_within_one_year") - protected Float currentPortionAmountsPayableMoreOneYearFallingDueWithinOneYear; - @XmlElement(name = "amounts_payable_more_one_year") - protected Float amountsPayableMoreOneYear; - @XmlElement(name = "provisions_deferred_taxes") - protected Float provisionsDeferredTaxes; - @XmlElement(name = "amounts_payable") - protected Float amountsPayable; - protected Float reserves; - @XmlElement(name = "accumulated_profits_losses") - protected Float accumulatedProfitsLosses; - @XmlElement(name = "financial_debts_payable_within_one_year") - protected Float financialDebtsPayableWithinOneYear; - @XmlElement(name = "formation_expenses") - protected Float formationExpenses; - @XmlElement(name = "intangible_fixed_assets") - protected Float intangibleFixedAssets; - @XmlElement(name = "tangible_fixed_assets") - protected Float tangibleFixedAssets; - @XmlElement(name = "land_buildings_acquisition_including_produced_fixed_assets") - protected Float landBuildingsAcquisitionIncludingProducedFixedAssets; - @XmlElement(name = "plant_machinery_equipment_acquisition_including_produced_fixed_assets") - protected Float plantMachineryEquipmentAcquisitionIncludingProducedFixedAssets; - @XmlElement(name = "furniture_vehicles_acquisition_including_produced_fixed_assets") - protected Float furnitureVehiclesAcquisitionIncludingProducedFixedAssets; - @XmlElement(name = "leasing_other_similar_rights_acquisition_including_produced_fixed_assets") - protected Float leasingOtherSimilarRightsAcquisitionIncludingProducedFixedAssets; - @XmlElement(name = "other_tangible_fixed_assets_acquisition_including_produced_fixed_assets") - protected Float otherTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets; - @XmlElement(name = "tangible_fixed_assets_under_construction") - protected Float tangibleFixedAssetsUnderConstruction; - @XmlElement(name = "land_buildings_revaluation_gains_third_parties") - protected Float landBuildingsRevaluationGainsThirdParties; - @XmlElement(name = "plant_machinery_equipment_revaluation_gains_third_parties") - protected Float plantMachineryEquipmentRevaluationGainsThirdParties; - @XmlElement(name = "furniture_vehicles_revaluation_gains_third_parties") - protected Float furnitureVehiclesRevaluationGainsThirdParties; - @XmlElement(name = "leasing_other_similar_rights_revaluation_gains_third_parties") - protected Float leasingOtherSimilarRightsRevaluationGainsThirdParties; - @XmlElement(name = "other_tangible_fixed_assets_revaluation_gains_third_parties") - protected Float otherTangibleFixedAssetsRevaluationGainsThirdParties; - @XmlElement(name = "tangible_fixed_assets_under_construction_advance_payments_revaluation_gains_third_parties") - protected Float tangibleFixedAssetsUnderConstructionAdvancePaymentsRevaluationGainsThirdParties; - @XmlElement(name = "land_buildings_depreciations_amount_written_down_acquired_third_party") - protected Float landBuildingsDepreciationsAmountWrittenDownAcquiredThirdParty; - @XmlElement(name = "plant_machinery_equipment_depreciations_amount_written_down_acquired_third_party") - protected Float plantMachineryEquipmentDepreciationsAmountWrittenDownAcquiredThirdParty; - @XmlElement(name = "furniture_vehicles_depreciations_amount_written_down_acquired_third_party") - protected Float furnitureVehiclesDepreciationsAmountWrittenDownAcquiredThirdParty; - @XmlElement(name = "leasing_other_similar_rights_depreciations_amount_written_down_acquired_third_party") - protected Float leasingOtherSimilarRightsDepreciationsAmountWrittenDownAcquiredThirdParty; - @XmlElement(name = "other_tangible_fixed_assets_depreciations_amount_written_down_acquired_third_party") - protected Float otherTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty; - @XmlElement(name = "tangible_fixed_assets_under_construction_advance_payments_depreciations") - protected Float tangibleFixedAssetsUnderConstructionAdvancePaymentsDepreciations; - @XmlElement(name = "employees_recorded_personnel_register_total_number_closing_date") - protected Float employeesRecordedPersonnelRegisterTotalNumberClosingDate; - @XmlElement(name = "number_employees_personnel_register_closing_date_financial_year_men_full_time") - protected Float numberEmployeesPersonnelRegisterClosingDateFinancialYearMenFullTime; - @XmlElement(name = "number_employees_personnel_register_closing_date_financial_year_women_full_time") - protected Float numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenFullTime; - @XmlElement(name = "number_employees_personnel_register_closing_date_financial_year_men_part_time") - protected Float numberEmployeesPersonnelRegisterClosingDateFinancialYearMenPartTime; - @XmlElement(name = "number_employees_personnel_register_closing_date_financial_year_women_part_time") - protected Float numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenPartTime; - protected Float investments; - @XmlElement(name = "added_value") - protected Float addedValue; - - /** - * Gets the value of the fixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getFixedAssets() { - return fixedAssets; - } - - /** - * Sets the value of the fixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setFixedAssets(Float value) { - this.fixedAssets = value; - } - - /** - * Gets the value of the numberOfEmployees property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getNumberOfEmployees() { - return numberOfEmployees; - } - - /** - * Sets the value of the numberOfEmployees property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setNumberOfEmployees(Integer value) { - this.numberOfEmployees = value; - } - - /** - * Gets the value of the numberOfEmployeesMen property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getNumberOfEmployeesMen() { - return numberOfEmployeesMen; - } - - /** - * Sets the value of the numberOfEmployeesMen property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setNumberOfEmployeesMen(Integer value) { - this.numberOfEmployeesMen = value; - } - - /** - * Gets the value of the numberOfEmployeesWomen property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getNumberOfEmployeesWomen() { - return numberOfEmployeesWomen; - } - - /** - * Sets the value of the numberOfEmployeesWomen property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setNumberOfEmployeesWomen(Integer value) { - this.numberOfEmployeesWomen = value; - } - - /** - * Gets the value of the capital property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getCapital() { - return capital; - } - - /** - * Sets the value of the capital property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setCapital(Float value) { - this.capital = value; - } - - /** - * Gets the value of the financialFixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getFinancialFixedAssets() { - return financialFixedAssets; - } - - /** - * Sets the value of the financialFixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setFinancialFixedAssets(Float value) { - this.financialFixedAssets = value; - } - - /** - * Gets the value of the currentsAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getCurrentsAssets() { - return currentsAssets; - } - - /** - * Sets the value of the currentsAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setCurrentsAssets(Float value) { - this.currentsAssets = value; - } - - /** - * Gets the value of the amountsReceivableMoreOneYear property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAmountsReceivableMoreOneYear() { - return amountsReceivableMoreOneYear; - } - - /** - * Sets the value of the amountsReceivableMoreOneYear property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAmountsReceivableMoreOneYear(Float value) { - this.amountsReceivableMoreOneYear = value; - } - - /** - * Gets the value of the tradeDebtorsWithinOneYear property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getTradeDebtorsWithinOneYear() { - return tradeDebtorsWithinOneYear; - } - - /** - * Sets the value of the tradeDebtorsWithinOneYear property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setTradeDebtorsWithinOneYear(Float value) { - this.tradeDebtorsWithinOneYear = value; - } - - /** - * Gets the value of the equity property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEquity() { - return equity; - } - - /** - * Sets the value of the equity property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEquity(Float value) { - this.equity = value; - } - - /** - * Gets the value of the amountsPayableWithinOneYear property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAmountsPayableWithinOneYear() { - return amountsPayableWithinOneYear; - } - - /** - * Sets the value of the amountsPayableWithinOneYear property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAmountsPayableWithinOneYear(Float value) { - this.amountsPayableWithinOneYear = value; - } - - /** - * Gets the value of the tradeDebtsPayableWithinOneYear property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getTradeDebtsPayableWithinOneYear() { - return tradeDebtsPayableWithinOneYear; - } - - /** - * Sets the value of the tradeDebtsPayableWithinOneYear property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setTradeDebtsPayableWithinOneYear(Float value) { - this.tradeDebtsPayableWithinOneYear = value; - } - - /** - * Gets the value of the turnover property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getTurnover() { - return turnover; - } - - /** - * Sets the value of the turnover property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setTurnover(Float value) { - this.turnover = value; - } - - /** - * Gets the value of the grossOperatingMargin property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getGrossOperatingMargin() { - return grossOperatingMargin; - } - - /** - * Sets the value of the grossOperatingMargin property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setGrossOperatingMargin(Float value) { - this.grossOperatingMargin = value; - } - - /** - * Gets the value of the increaseDecreaseStocksWorkContractsProgress property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getIncreaseDecreaseStocksWorkContractsProgress() { - return increaseDecreaseStocksWorkContractsProgress; - } - - /** - * Sets the value of the increaseDecreaseStocksWorkContractsProgress property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setIncreaseDecreaseStocksWorkContractsProgress(Float value) { - this.increaseDecreaseStocksWorkContractsProgress = value; - } - - /** - * Gets the value of the contributionsGiftsLegaciesGrants property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getContributionsGiftsLegaciesGrants() { - return contributionsGiftsLegaciesGrants; - } - - /** - * Sets the value of the contributionsGiftsLegaciesGrants property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setContributionsGiftsLegaciesGrants(Float value) { - this.contributionsGiftsLegaciesGrants = value; - } - - /** - * Gets the value of the remunerationSocialSecurityPensions property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getRemunerationSocialSecurityPensions() { - return remunerationSocialSecurityPensions; - } - - /** - * Sets the value of the remunerationSocialSecurityPensions property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setRemunerationSocialSecurityPensions(Float value) { - this.remunerationSocialSecurityPensions = value; - } - - /** - * Gets the value of the depreciationOtherAmountsWrittenDownFormationExpensesIntangibleTangibleFixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getDepreciationOtherAmountsWrittenDownFormationExpensesIntangibleTangibleFixedAssets() { - return depreciationOtherAmountsWrittenDownFormationExpensesIntangibleTangibleFixedAssets; - } - - /** - * Sets the value of the depreciationOtherAmountsWrittenDownFormationExpensesIntangibleTangibleFixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setDepreciationOtherAmountsWrittenDownFormationExpensesIntangibleTangibleFixedAssets(Float value) { - this.depreciationOtherAmountsWrittenDownFormationExpensesIntangibleTangibleFixedAssets = value; - } - - /** - * Gets the value of the amountsWrittenDownStocksContractsProgressTradeDebtorsAppropriationsWriteBacks property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAmountsWrittenDownStocksContractsProgressTradeDebtorsAppropriationsWriteBacks() { - return amountsWrittenDownStocksContractsProgressTradeDebtorsAppropriationsWriteBacks; - } - - /** - * Sets the value of the amountsWrittenDownStocksContractsProgressTradeDebtorsAppropriationsWriteBacks property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAmountsWrittenDownStocksContractsProgressTradeDebtorsAppropriationsWriteBacks(Float value) { - this.amountsWrittenDownStocksContractsProgressTradeDebtorsAppropriationsWriteBacks = value; - } - - /** - * Gets the value of the provisionsRisksChargesAppropriationsWriteBacks property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getProvisionsRisksChargesAppropriationsWriteBacks() { - return provisionsRisksChargesAppropriationsWriteBacks; - } - - /** - * Sets the value of the provisionsRisksChargesAppropriationsWriteBacks property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setProvisionsRisksChargesAppropriationsWriteBacks(Float value) { - this.provisionsRisksChargesAppropriationsWriteBacks = value; - } - - /** - * Gets the value of the operatingCharges property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getOperatingCharges() { - return operatingCharges; - } - - /** - * Sets the value of the operatingCharges property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setOperatingCharges(Float value) { - this.operatingCharges = value; - } - - /** - * Gets the value of the operatingProfitLoss property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getOperatingProfitLoss() { - return operatingProfitLoss; - } - - /** - * Sets the value of the operatingProfitLoss property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setOperatingProfitLoss(Float value) { - this.operatingProfitLoss = value; - } - - /** - * Gets the value of the financialIncome property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getFinancialIncome() { - return financialIncome; - } - - /** - * Sets the value of the financialIncome property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setFinancialIncome(Float value) { - this.financialIncome = value; - } - - /** - * Gets the value of the financialCharges property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getFinancialCharges() { - return financialCharges; - } - - /** - * Sets the value of the financialCharges property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setFinancialCharges(Float value) { - this.financialCharges = value; - } - - /** - * Gets the value of the extraordinaryIncome property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getExtraordinaryIncome() { - return extraordinaryIncome; - } - - /** - * Sets the value of the extraordinaryIncome property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setExtraordinaryIncome(Float value) { - this.extraordinaryIncome = value; - } - - /** - * Gets the value of the extraordinaryCharges property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getExtraordinaryCharges() { - return extraordinaryCharges; - } - - /** - * Sets the value of the extraordinaryCharges property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setExtraordinaryCharges(Float value) { - this.extraordinaryCharges = value; - } - - /** - * Gets the value of the incomeTaxes property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getIncomeTaxes() { - return incomeTaxes; - } - - /** - * Sets the value of the incomeTaxes property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setIncomeTaxes(Float value) { - this.incomeTaxes = value; - } - - /** - * Gets the value of the gainLossPeriod property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getGainLossPeriod() { - return gainLossPeriod; - } - - /** - * Sets the value of the gainLossPeriod property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setGainLossPeriod(Float value) { - this.gainLossPeriod = value; - } - - /** - * Gets the value of the tangibleFixedAssetsAcquisitionIncludingProducedFixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets() { - return tangibleFixedAssetsAcquisitionIncludingProducedFixedAssets; - } - - /** - * Sets the value of the tangibleFixedAssetsAcquisitionIncludingProducedFixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets(Float value) { - this.tangibleFixedAssetsAcquisitionIncludingProducedFixedAssets = value; - } - - /** - * Gets the value of the tangibleFixedAssetsRevaluationGainsThirdParties property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getTangibleFixedAssetsRevaluationGainsThirdParties() { - return tangibleFixedAssetsRevaluationGainsThirdParties; - } - - /** - * Sets the value of the tangibleFixedAssetsRevaluationGainsThirdParties property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setTangibleFixedAssetsRevaluationGainsThirdParties(Float value) { - this.tangibleFixedAssetsRevaluationGainsThirdParties = value; - } - - /** - * Gets the value of the tangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty() { - return tangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty; - } - - /** - * Sets the value of the tangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty(Float value) { - this.tangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty = value; - } - - /** - * Gets the value of the outstandingTaxesPayableDueTaxAuthorities property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getOutstandingTaxesPayableDueTaxAuthorities() { - return outstandingTaxesPayableDueTaxAuthorities; - } - - /** - * Sets the value of the outstandingTaxesPayableDueTaxAuthorities property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setOutstandingTaxesPayableDueTaxAuthorities(Float value) { - this.outstandingTaxesPayableDueTaxAuthorities = value; - } - - /** - * Gets the value of the remunerationSocialSecurityRecipientNationalSocialSecurityOffice property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getRemunerationSocialSecurityRecipientNationalSocialSecurityOffice() { - return remunerationSocialSecurityRecipientNationalSocialSecurityOffice; - } - - /** - * Sets the value of the remunerationSocialSecurityRecipientNationalSocialSecurityOffice property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setRemunerationSocialSecurityRecipientNationalSocialSecurityOffice(Float value) { - this.remunerationSocialSecurityRecipientNationalSocialSecurityOffice = value; - } - - /** - * Gets the value of the amountsReceivableWithinOneYear property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAmountsReceivableWithinOneYear() { - return amountsReceivableWithinOneYear; - } - - /** - * Sets the value of the amountsReceivableWithinOneYear property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAmountsReceivableWithinOneYear(Float value) { - this.amountsReceivableWithinOneYear = value; - } - - /** - * Gets the value of the accruedChargesDeferredIncome property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAccruedChargesDeferredIncome() { - return accruedChargesDeferredIncome; - } - - /** - * Sets the value of the accruedChargesDeferredIncome property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAccruedChargesDeferredIncome(Float value) { - this.accruedChargesDeferredIncome = value; - } - - /** - * Gets the value of the currentInvestments property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getCurrentInvestments() { - return currentInvestments; - } - - /** - * Sets the value of the currentInvestments property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setCurrentInvestments(Float value) { - this.currentInvestments = value; - } - - /** - * Gets the value of the cashBankHand property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getCashBankHand() { - return cashBankHand; - } - - /** - * Sets the value of the cashBankHand property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setCashBankHand(Float value) { - this.cashBankHand = value; - } - - /** - * Gets the value of the equityLiabilities property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEquityLiabilities() { - return equityLiabilities; - } - - /** - * Sets the value of the equityLiabilities property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEquityLiabilities(Float value) { - this.equityLiabilities = value; - } - - /** - * Gets the value of the operatingIncome property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getOperatingIncome() { - return operatingIncome; - } - - /** - * Sets the value of the operatingIncome property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setOperatingIncome(Float value) { - this.operatingIncome = value; - } - - /** - * Gets the value of the otherOperatingIncome property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getOtherOperatingIncome() { - return otherOperatingIncome; - } - - /** - * Sets the value of the otherOperatingIncome property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setOtherOperatingIncome(Float value) { - this.otherOperatingIncome = value; - } - - /** - * Gets the value of the operatingSubsidiesCompensatoryAmounts property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getOperatingSubsidiesCompensatoryAmounts() { - return operatingSubsidiesCompensatoryAmounts; - } - - /** - * Sets the value of the operatingSubsidiesCompensatoryAmounts property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setOperatingSubsidiesCompensatoryAmounts(Float value) { - this.operatingSubsidiesCompensatoryAmounts = value; - } - - /** - * Gets the value of the capitalSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getCapitalSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod() { - return capitalSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod; - } - - /** - * Sets the value of the capitalSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setCapitalSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod(Float value) { - this.capitalSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod = value; - } - - /** - * Gets the value of the rawMaterialsConsumables property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getRawMaterialsConsumables() { - return rawMaterialsConsumables; - } - - /** - * Sets the value of the rawMaterialsConsumables property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setRawMaterialsConsumables(Float value) { - this.rawMaterialsConsumables = value; - } - - /** - * Gets the value of the servicesOtherGoods property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getServicesOtherGoods() { - return servicesOtherGoods; - } - - /** - * Sets the value of the servicesOtherGoods property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setServicesOtherGoods(Float value) { - this.servicesOtherGoods = value; - } - - /** - * Gets the value of the hiredTemporaryStaffCostsEnterprise property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getHiredTemporaryStaffCostsEnterprise() { - return hiredTemporaryStaffCostsEnterprise; - } - - /** - * Sets the value of the hiredTemporaryStaffCostsEnterprise property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setHiredTemporaryStaffCostsEnterprise(Float value) { - this.hiredTemporaryStaffCostsEnterprise = value; - } - - /** - * Gets the value of the personsPlacedEnterprisesDisposalCostsEnterprise property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getPersonsPlacedEnterprisesDisposalCostsEnterprise() { - return personsPlacedEnterprisesDisposalCostsEnterprise; - } - - /** - * Sets the value of the personsPlacedEnterprisesDisposalCostsEnterprise property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setPersonsPlacedEnterprisesDisposalCostsEnterprise(Float value) { - this.personsPlacedEnterprisesDisposalCostsEnterprise = value; - } - - /** - * Gets the value of the employeesRecordedPersonnelRegisterAverageNumberEmployeesCalculatedFullTimeEquivalents property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesRecordedPersonnelRegisterAverageNumberEmployeesCalculatedFullTimeEquivalents() { - return employeesRecordedPersonnelRegisterAverageNumberEmployeesCalculatedFullTimeEquivalents; - } - - /** - * Sets the value of the employeesRecordedPersonnelRegisterAverageNumberEmployeesCalculatedFullTimeEquivalents property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesRecordedPersonnelRegisterAverageNumberEmployeesCalculatedFullTimeEquivalents(Float value) { - this.employeesRecordedPersonnelRegisterAverageNumberEmployeesCalculatedFullTimeEquivalents = value; - } - - /** - * Gets the value of the stockRawMaterialsConsumables property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getStockRawMaterialsConsumables() { - return stockRawMaterialsConsumables; - } - - /** - * Sets the value of the stockRawMaterialsConsumables property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setStockRawMaterialsConsumables(Float value) { - this.stockRawMaterialsConsumables = value; - } - - /** - * Gets the value of the stockGoodsPurchasedResale property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getStockGoodsPurchasedResale() { - return stockGoodsPurchasedResale; - } - - /** - * Sets the value of the stockGoodsPurchasedResale property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setStockGoodsPurchasedResale(Float value) { - this.stockGoodsPurchasedResale = value; - } - - /** - * Gets the value of the stockImmovablePropertyIntendedSale property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getStockImmovablePropertyIntendedSale() { - return stockImmovablePropertyIntendedSale; - } - - /** - * Sets the value of the stockImmovablePropertyIntendedSale property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setStockImmovablePropertyIntendedSale(Float value) { - this.stockImmovablePropertyIntendedSale = value; - } - - /** - * Gets the value of the advancePaymentsPurchasesStocks property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAdvancePaymentsPurchasesStocks() { - return advancePaymentsPurchasesStocks; - } - - /** - * Sets the value of the advancePaymentsPurchasesStocks property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAdvancePaymentsPurchasesStocks(Float value) { - this.advancePaymentsPurchasesStocks = value; - } - - /** - * Gets the value of the stocksContractsProgress property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getStocksContractsProgress() { - return stocksContractsProgress; - } - - /** - * Sets the value of the stocksContractsProgress property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setStocksContractsProgress(Float value) { - this.stocksContractsProgress = value; - } - - /** - * Gets the value of the deferredChargesAccruedIncome property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getDeferredChargesAccruedIncome() { - return deferredChargesAccruedIncome; - } - - /** - * Sets the value of the deferredChargesAccruedIncome property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setDeferredChargesAccruedIncome(Float value) { - this.deferredChargesAccruedIncome = value; - } - - /** - * Gets the value of the ownConstructionCapitalised property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getOwnConstructionCapitalised() { - return ownConstructionCapitalised; - } - - /** - * Sets the value of the ownConstructionCapitalised property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setOwnConstructionCapitalised(Float value) { - this.ownConstructionCapitalised = value; - } - - /** - * Gets the value of the stockWorkProgress property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getStockWorkProgress() { - return stockWorkProgress; - } - - /** - * Sets the value of the stockWorkProgress property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setStockWorkProgress(Float value) { - this.stockWorkProgress = value; - } - - /** - * Gets the value of the stockFinishedGoods property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getStockFinishedGoods() { - return stockFinishedGoods; - } - - /** - * Sets the value of the stockFinishedGoods property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setStockFinishedGoods(Float value) { - this.stockFinishedGoods = value; - } - - /** - * Gets the value of the contractsProgress property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getContractsProgress() { - return contractsProgress; - } - - /** - * Sets the value of the contractsProgress property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setContractsProgress(Float value) { - this.contractsProgress = value; - } - - /** - * Gets the value of the personalGuaranteesProvidedOrIrrevocablyPromisedByEnterprise property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getPersonalGuaranteesProvidedOrIrrevocablyPromisedByEnterprise() { - return personalGuaranteesProvidedOrIrrevocablyPromisedByEnterprise; - } - - /** - * Sets the value of the personalGuaranteesProvidedOrIrrevocablyPromisedByEnterprise property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setPersonalGuaranteesProvidedOrIrrevocablyPromisedByEnterprise(Float value) { - this.personalGuaranteesProvidedOrIrrevocablyPromisedByEnterprise = value; - } - - /** - * Gets the value of the valueAddedTaxesChargedByEnterprise property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getValueAddedTaxesChargedByEnterprise() { - return valueAddedTaxesChargedByEnterprise; - } - - /** - * Sets the value of the valueAddedTaxesChargedByEnterprise property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setValueAddedTaxesChargedByEnterprise(Float value) { - this.valueAddedTaxesChargedByEnterprise = value; - } - - /** - * Gets the value of the purchasesRawMaterialsConsumables property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getPurchasesRawMaterialsConsumables() { - return purchasesRawMaterialsConsumables; - } - - /** - * Sets the value of the purchasesRawMaterialsConsumables property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setPurchasesRawMaterialsConsumables(Float value) { - this.purchasesRawMaterialsConsumables = value; - } - - /** - * Gets the value of the valueAddedTaxesChargedToEnterprise property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getValueAddedTaxesChargedToEnterprise() { - return valueAddedTaxesChargedToEnterprise; - } - - /** - * Sets the value of the valueAddedTaxesChargedToEnterprise property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setValueAddedTaxesChargedToEnterprise(Float value) { - this.valueAddedTaxesChargedToEnterprise = value; - } - - /** - * Gets the value of the amountsWrittenDownCurrentAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAmountsWrittenDownCurrentAssets() { - return amountsWrittenDownCurrentAssets; - } - - /** - * Sets the value of the amountsWrittenDownCurrentAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAmountsWrittenDownCurrentAssets(Float value) { - this.amountsWrittenDownCurrentAssets = value; - } - - /** - * Gets the value of the provisionsFinancialNatureAppropriations property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getProvisionsFinancialNatureAppropriations() { - return provisionsFinancialNatureAppropriations; - } - - /** - * Sets the value of the provisionsFinancialNatureAppropriations property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setProvisionsFinancialNatureAppropriations(Float value) { - this.provisionsFinancialNatureAppropriations = value; - } - - /** - * Gets the value of the provisionsFinancialNatureUsesWriteBacks property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getProvisionsFinancialNatureUsesWriteBacks() { - return provisionsFinancialNatureUsesWriteBacks; - } - - /** - * Sets the value of the provisionsFinancialNatureUsesWriteBacks property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setProvisionsFinancialNatureUsesWriteBacks(Float value) { - this.provisionsFinancialNatureUsesWriteBacks = value; - } - - /** - * Gets the value of the extraordinaryDepreciationExtraordinaryAmountsWrittenDown property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getExtraordinaryDepreciationExtraordinaryAmountsWrittenDown() { - return extraordinaryDepreciationExtraordinaryAmountsWrittenDown; - } - - /** - * Sets the value of the extraordinaryDepreciationExtraordinaryAmountsWrittenDown property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setExtraordinaryDepreciationExtraordinaryAmountsWrittenDown(Float value) { - this.extraordinaryDepreciationExtraordinaryAmountsWrittenDown = value; - } - - /** - * Gets the value of the amountsWrittenDownFinancialFixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAmountsWrittenDownFinancialFixedAssets() { - return amountsWrittenDownFinancialFixedAssets; - } - - /** - * Sets the value of the amountsWrittenDownFinancialFixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAmountsWrittenDownFinancialFixedAssets(Float value) { - this.amountsWrittenDownFinancialFixedAssets = value; - } - - /** - * Gets the value of the provisionsExtraordinaryLiabilitiesChargesAppropriationsUses property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getProvisionsExtraordinaryLiabilitiesChargesAppropriationsUses() { - return provisionsExtraordinaryLiabilitiesChargesAppropriationsUses; - } - - /** - * Sets the value of the provisionsExtraordinaryLiabilitiesChargesAppropriationsUses property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setProvisionsExtraordinaryLiabilitiesChargesAppropriationsUses(Float value) { - this.provisionsExtraordinaryLiabilitiesChargesAppropriationsUses = value; - } - - /** - * Gets the value of the writeBackDepreciationAmountsWrittenDownIntangibleTangibleFixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getWriteBackDepreciationAmountsWrittenDownIntangibleTangibleFixedAssets() { - return writeBackDepreciationAmountsWrittenDownIntangibleTangibleFixedAssets; - } - - /** - * Sets the value of the writeBackDepreciationAmountsWrittenDownIntangibleTangibleFixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setWriteBackDepreciationAmountsWrittenDownIntangibleTangibleFixedAssets(Float value) { - this.writeBackDepreciationAmountsWrittenDownIntangibleTangibleFixedAssets = value; - } - - /** - * Gets the value of the writeBackAmountsWrittenDownFinancialFixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getWriteBackAmountsWrittenDownFinancialFixedAssets() { - return writeBackAmountsWrittenDownFinancialFixedAssets; - } - - /** - * Sets the value of the writeBackAmountsWrittenDownFinancialFixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setWriteBackAmountsWrittenDownFinancialFixedAssets(Float value) { - this.writeBackAmountsWrittenDownFinancialFixedAssets = value; - } - - /** - * Gets the value of the writeBackProvisionsExtraordinaryLiabilitiesCharges property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getWriteBackProvisionsExtraordinaryLiabilitiesCharges() { - return writeBackProvisionsExtraordinaryLiabilitiesCharges; - } - - /** - * Sets the value of the writeBackProvisionsExtraordinaryLiabilitiesCharges property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setWriteBackProvisionsExtraordinaryLiabilitiesCharges(Float value) { - this.writeBackProvisionsExtraordinaryLiabilitiesCharges = value; - } - - /** - * Gets the value of the lossesDisposalFixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getLossesDisposalFixedAssets() { - return lossesDisposalFixedAssets; - } - - /** - * Sets the value of the lossesDisposalFixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setLossesDisposalFixedAssets(Float value) { - this.lossesDisposalFixedAssets = value; - } - - /** - * Gets the value of the incomeTaxesResultPeriod property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getIncomeTaxesResultPeriod() { - return incomeTaxesResultPeriod; - } - - /** - * Sets the value of the incomeTaxesResultPeriod property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setIncomeTaxesResultPeriod(Float value) { - this.incomeTaxesResultPeriod = value; - } - - /** - * Gets the value of the transferFromDeferredTaxes property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getTransferFromDeferredTaxes() { - return transferFromDeferredTaxes; - } - - /** - * Sets the value of the transferFromDeferredTaxes property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setTransferFromDeferredTaxes(Float value) { - this.transferFromDeferredTaxes = value; - } - - /** - * Gets the value of the transferToDeferredTaxes property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getTransferToDeferredTaxes() { - return transferToDeferredTaxes; - } - - /** - * Sets the value of the transferToDeferredTaxes property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setTransferToDeferredTaxes(Float value) { - this.transferToDeferredTaxes = value; - } - - /** - * Gets the value of the assets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAssets() { - return assets; - } - - /** - * Sets the value of the assets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAssets(Float value) { - this.assets = value; - } - - /** - * Gets the value of the interestSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getInterestSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod() { - return interestSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod; - } - - /** - * Sets the value of the interestSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setInterestSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod(Float value) { - this.interestSubsidiesGrantedPublicAuthoritiesRecordedIncomePeriod = value; - } - - /** - * Gets the value of the chargesDiscountingAmountsReceivable property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getChargesDiscountingAmountsReceivable() { - return chargesDiscountingAmountsReceivable; - } - - /** - * Sets the value of the chargesDiscountingAmountsReceivable property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setChargesDiscountingAmountsReceivable(Float value) { - this.chargesDiscountingAmountsReceivable = value; - } - - /** - * Gets the value of the debtCharges property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getDebtCharges() { - return debtCharges; - } - - /** - * Sets the value of the debtCharges property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setDebtCharges(Float value) { - this.debtCharges = value; - } - - /** - * Gets the value of the depreciationLoanIssueExpensesReimbursementPremiums property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getDepreciationLoanIssueExpensesReimbursementPremiums() { - return depreciationLoanIssueExpensesReimbursementPremiums; - } - - /** - * Sets the value of the depreciationLoanIssueExpensesReimbursementPremiums property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setDepreciationLoanIssueExpensesReimbursementPremiums(Float value) { - this.depreciationLoanIssueExpensesReimbursementPremiums = value; - } - - /** - * Gets the value of the provisionsPensionsSimilarObligationsAppropriationsWriteBacks property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getProvisionsPensionsSimilarObligationsAppropriationsWriteBacks() { - return provisionsPensionsSimilarObligationsAppropriationsWriteBacks; - } - - /** - * Sets the value of the provisionsPensionsSimilarObligationsAppropriationsWriteBacks property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setProvisionsPensionsSimilarObligationsAppropriationsWriteBacks(Float value) { - this.provisionsPensionsSimilarObligationsAppropriationsWriteBacks = value; - } - - /** - * Gets the value of the currentPortionAmountsPayableMoreOneYearFallingDueWithinOneYear property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getCurrentPortionAmountsPayableMoreOneYearFallingDueWithinOneYear() { - return currentPortionAmountsPayableMoreOneYearFallingDueWithinOneYear; - } - - /** - * Sets the value of the currentPortionAmountsPayableMoreOneYearFallingDueWithinOneYear property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setCurrentPortionAmountsPayableMoreOneYearFallingDueWithinOneYear(Float value) { - this.currentPortionAmountsPayableMoreOneYearFallingDueWithinOneYear = value; - } - - /** - * Gets the value of the amountsPayableMoreOneYear property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAmountsPayableMoreOneYear() { - return amountsPayableMoreOneYear; - } - - /** - * Sets the value of the amountsPayableMoreOneYear property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAmountsPayableMoreOneYear(Float value) { - this.amountsPayableMoreOneYear = value; - } - - /** - * Gets the value of the provisionsDeferredTaxes property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getProvisionsDeferredTaxes() { - return provisionsDeferredTaxes; - } - - /** - * Sets the value of the provisionsDeferredTaxes property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setProvisionsDeferredTaxes(Float value) { - this.provisionsDeferredTaxes = value; - } - - /** - * Gets the value of the amountsPayable property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAmountsPayable() { - return amountsPayable; - } - - /** - * Sets the value of the amountsPayable property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAmountsPayable(Float value) { - this.amountsPayable = value; - } - - /** - * Gets the value of the reserves property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getReserves() { - return reserves; - } - - /** - * Sets the value of the reserves property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setReserves(Float value) { - this.reserves = value; - } - - /** - * Gets the value of the accumulatedProfitsLosses property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAccumulatedProfitsLosses() { - return accumulatedProfitsLosses; - } - - /** - * Sets the value of the accumulatedProfitsLosses property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAccumulatedProfitsLosses(Float value) { - this.accumulatedProfitsLosses = value; - } - - /** - * Gets the value of the financialDebtsPayableWithinOneYear property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getFinancialDebtsPayableWithinOneYear() { - return financialDebtsPayableWithinOneYear; - } - - /** - * Sets the value of the financialDebtsPayableWithinOneYear property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setFinancialDebtsPayableWithinOneYear(Float value) { - this.financialDebtsPayableWithinOneYear = value; - } - - /** - * Gets the value of the formationExpenses property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getFormationExpenses() { - return formationExpenses; - } - - /** - * Sets the value of the formationExpenses property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setFormationExpenses(Float value) { - this.formationExpenses = value; - } - - /** - * Gets the value of the intangibleFixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getIntangibleFixedAssets() { - return intangibleFixedAssets; - } - - /** - * Sets the value of the intangibleFixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setIntangibleFixedAssets(Float value) { - this.intangibleFixedAssets = value; - } - - /** - * Gets the value of the tangibleFixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getTangibleFixedAssets() { - return tangibleFixedAssets; - } - - /** - * Sets the value of the tangibleFixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setTangibleFixedAssets(Float value) { - this.tangibleFixedAssets = value; - } - - /** - * Gets the value of the landBuildingsAcquisitionIncludingProducedFixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getLandBuildingsAcquisitionIncludingProducedFixedAssets() { - return landBuildingsAcquisitionIncludingProducedFixedAssets; - } - - /** - * Sets the value of the landBuildingsAcquisitionIncludingProducedFixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setLandBuildingsAcquisitionIncludingProducedFixedAssets(Float value) { - this.landBuildingsAcquisitionIncludingProducedFixedAssets = value; - } - - /** - * Gets the value of the plantMachineryEquipmentAcquisitionIncludingProducedFixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getPlantMachineryEquipmentAcquisitionIncludingProducedFixedAssets() { - return plantMachineryEquipmentAcquisitionIncludingProducedFixedAssets; - } - - /** - * Sets the value of the plantMachineryEquipmentAcquisitionIncludingProducedFixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setPlantMachineryEquipmentAcquisitionIncludingProducedFixedAssets(Float value) { - this.plantMachineryEquipmentAcquisitionIncludingProducedFixedAssets = value; - } - - /** - * Gets the value of the furnitureVehiclesAcquisitionIncludingProducedFixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getFurnitureVehiclesAcquisitionIncludingProducedFixedAssets() { - return furnitureVehiclesAcquisitionIncludingProducedFixedAssets; - } - - /** - * Sets the value of the furnitureVehiclesAcquisitionIncludingProducedFixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setFurnitureVehiclesAcquisitionIncludingProducedFixedAssets(Float value) { - this.furnitureVehiclesAcquisitionIncludingProducedFixedAssets = value; - } - - /** - * Gets the value of the leasingOtherSimilarRightsAcquisitionIncludingProducedFixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getLeasingOtherSimilarRightsAcquisitionIncludingProducedFixedAssets() { - return leasingOtherSimilarRightsAcquisitionIncludingProducedFixedAssets; - } - - /** - * Sets the value of the leasingOtherSimilarRightsAcquisitionIncludingProducedFixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setLeasingOtherSimilarRightsAcquisitionIncludingProducedFixedAssets(Float value) { - this.leasingOtherSimilarRightsAcquisitionIncludingProducedFixedAssets = value; - } - - /** - * Gets the value of the otherTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getOtherTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets() { - return otherTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets; - } - - /** - * Sets the value of the otherTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setOtherTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets(Float value) { - this.otherTangibleFixedAssetsAcquisitionIncludingProducedFixedAssets = value; - } - - /** - * Gets the value of the tangibleFixedAssetsUnderConstruction property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getTangibleFixedAssetsUnderConstruction() { - return tangibleFixedAssetsUnderConstruction; - } - - /** - * Sets the value of the tangibleFixedAssetsUnderConstruction property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setTangibleFixedAssetsUnderConstruction(Float value) { - this.tangibleFixedAssetsUnderConstruction = value; - } - - /** - * Gets the value of the landBuildingsRevaluationGainsThirdParties property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getLandBuildingsRevaluationGainsThirdParties() { - return landBuildingsRevaluationGainsThirdParties; - } - - /** - * Sets the value of the landBuildingsRevaluationGainsThirdParties property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setLandBuildingsRevaluationGainsThirdParties(Float value) { - this.landBuildingsRevaluationGainsThirdParties = value; - } - - /** - * Gets the value of the plantMachineryEquipmentRevaluationGainsThirdParties property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getPlantMachineryEquipmentRevaluationGainsThirdParties() { - return plantMachineryEquipmentRevaluationGainsThirdParties; - } - - /** - * Sets the value of the plantMachineryEquipmentRevaluationGainsThirdParties property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setPlantMachineryEquipmentRevaluationGainsThirdParties(Float value) { - this.plantMachineryEquipmentRevaluationGainsThirdParties = value; - } - - /** - * Gets the value of the furnitureVehiclesRevaluationGainsThirdParties property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getFurnitureVehiclesRevaluationGainsThirdParties() { - return furnitureVehiclesRevaluationGainsThirdParties; - } - - /** - * Sets the value of the furnitureVehiclesRevaluationGainsThirdParties property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setFurnitureVehiclesRevaluationGainsThirdParties(Float value) { - this.furnitureVehiclesRevaluationGainsThirdParties = value; - } - - /** - * Gets the value of the leasingOtherSimilarRightsRevaluationGainsThirdParties property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getLeasingOtherSimilarRightsRevaluationGainsThirdParties() { - return leasingOtherSimilarRightsRevaluationGainsThirdParties; - } - - /** - * Sets the value of the leasingOtherSimilarRightsRevaluationGainsThirdParties property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setLeasingOtherSimilarRightsRevaluationGainsThirdParties(Float value) { - this.leasingOtherSimilarRightsRevaluationGainsThirdParties = value; - } - - /** - * Gets the value of the otherTangibleFixedAssetsRevaluationGainsThirdParties property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getOtherTangibleFixedAssetsRevaluationGainsThirdParties() { - return otherTangibleFixedAssetsRevaluationGainsThirdParties; - } - - /** - * Sets the value of the otherTangibleFixedAssetsRevaluationGainsThirdParties property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setOtherTangibleFixedAssetsRevaluationGainsThirdParties(Float value) { - this.otherTangibleFixedAssetsRevaluationGainsThirdParties = value; - } - - /** - * Gets the value of the tangibleFixedAssetsUnderConstructionAdvancePaymentsRevaluationGainsThirdParties property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getTangibleFixedAssetsUnderConstructionAdvancePaymentsRevaluationGainsThirdParties() { - return tangibleFixedAssetsUnderConstructionAdvancePaymentsRevaluationGainsThirdParties; - } - - /** - * Sets the value of the tangibleFixedAssetsUnderConstructionAdvancePaymentsRevaluationGainsThirdParties property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setTangibleFixedAssetsUnderConstructionAdvancePaymentsRevaluationGainsThirdParties(Float value) { - this.tangibleFixedAssetsUnderConstructionAdvancePaymentsRevaluationGainsThirdParties = value; - } - - /** - * Gets the value of the landBuildingsDepreciationsAmountWrittenDownAcquiredThirdParty property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getLandBuildingsDepreciationsAmountWrittenDownAcquiredThirdParty() { - return landBuildingsDepreciationsAmountWrittenDownAcquiredThirdParty; - } - - /** - * Sets the value of the landBuildingsDepreciationsAmountWrittenDownAcquiredThirdParty property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setLandBuildingsDepreciationsAmountWrittenDownAcquiredThirdParty(Float value) { - this.landBuildingsDepreciationsAmountWrittenDownAcquiredThirdParty = value; - } - - /** - * Gets the value of the plantMachineryEquipmentDepreciationsAmountWrittenDownAcquiredThirdParty property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getPlantMachineryEquipmentDepreciationsAmountWrittenDownAcquiredThirdParty() { - return plantMachineryEquipmentDepreciationsAmountWrittenDownAcquiredThirdParty; - } - - /** - * Sets the value of the plantMachineryEquipmentDepreciationsAmountWrittenDownAcquiredThirdParty property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setPlantMachineryEquipmentDepreciationsAmountWrittenDownAcquiredThirdParty(Float value) { - this.plantMachineryEquipmentDepreciationsAmountWrittenDownAcquiredThirdParty = value; - } - - /** - * Gets the value of the furnitureVehiclesDepreciationsAmountWrittenDownAcquiredThirdParty property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getFurnitureVehiclesDepreciationsAmountWrittenDownAcquiredThirdParty() { - return furnitureVehiclesDepreciationsAmountWrittenDownAcquiredThirdParty; - } - - /** - * Sets the value of the furnitureVehiclesDepreciationsAmountWrittenDownAcquiredThirdParty property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setFurnitureVehiclesDepreciationsAmountWrittenDownAcquiredThirdParty(Float value) { - this.furnitureVehiclesDepreciationsAmountWrittenDownAcquiredThirdParty = value; - } - - /** - * Gets the value of the leasingOtherSimilarRightsDepreciationsAmountWrittenDownAcquiredThirdParty property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getLeasingOtherSimilarRightsDepreciationsAmountWrittenDownAcquiredThirdParty() { - return leasingOtherSimilarRightsDepreciationsAmountWrittenDownAcquiredThirdParty; - } - - /** - * Sets the value of the leasingOtherSimilarRightsDepreciationsAmountWrittenDownAcquiredThirdParty property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setLeasingOtherSimilarRightsDepreciationsAmountWrittenDownAcquiredThirdParty(Float value) { - this.leasingOtherSimilarRightsDepreciationsAmountWrittenDownAcquiredThirdParty = value; - } - - /** - * Gets the value of the otherTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getOtherTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty() { - return otherTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty; - } - - /** - * Sets the value of the otherTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setOtherTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty(Float value) { - this.otherTangibleFixedAssetsDepreciationsAmountWrittenDownAcquiredThirdParty = value; - } - - /** - * Gets the value of the tangibleFixedAssetsUnderConstructionAdvancePaymentsDepreciations property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getTangibleFixedAssetsUnderConstructionAdvancePaymentsDepreciations() { - return tangibleFixedAssetsUnderConstructionAdvancePaymentsDepreciations; - } - - /** - * Sets the value of the tangibleFixedAssetsUnderConstructionAdvancePaymentsDepreciations property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setTangibleFixedAssetsUnderConstructionAdvancePaymentsDepreciations(Float value) { - this.tangibleFixedAssetsUnderConstructionAdvancePaymentsDepreciations = value; - } - - /** - * Gets the value of the employeesRecordedPersonnelRegisterTotalNumberClosingDate property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesRecordedPersonnelRegisterTotalNumberClosingDate() { - return employeesRecordedPersonnelRegisterTotalNumberClosingDate; - } - - /** - * Sets the value of the employeesRecordedPersonnelRegisterTotalNumberClosingDate property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesRecordedPersonnelRegisterTotalNumberClosingDate(Float value) { - this.employeesRecordedPersonnelRegisterTotalNumberClosingDate = value; - } - - /** - * Gets the value of the numberEmployeesPersonnelRegisterClosingDateFinancialYearMenFullTime property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getNumberEmployeesPersonnelRegisterClosingDateFinancialYearMenFullTime() { - return numberEmployeesPersonnelRegisterClosingDateFinancialYearMenFullTime; - } - - /** - * Sets the value of the numberEmployeesPersonnelRegisterClosingDateFinancialYearMenFullTime property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setNumberEmployeesPersonnelRegisterClosingDateFinancialYearMenFullTime(Float value) { - this.numberEmployeesPersonnelRegisterClosingDateFinancialYearMenFullTime = value; - } - - /** - * Gets the value of the numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenFullTime property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getNumberEmployeesPersonnelRegisterClosingDateFinancialYearWomenFullTime() { - return numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenFullTime; - } - - /** - * Sets the value of the numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenFullTime property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setNumberEmployeesPersonnelRegisterClosingDateFinancialYearWomenFullTime(Float value) { - this.numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenFullTime = value; - } - - /** - * Gets the value of the numberEmployeesPersonnelRegisterClosingDateFinancialYearMenPartTime property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getNumberEmployeesPersonnelRegisterClosingDateFinancialYearMenPartTime() { - return numberEmployeesPersonnelRegisterClosingDateFinancialYearMenPartTime; - } - - /** - * Sets the value of the numberEmployeesPersonnelRegisterClosingDateFinancialYearMenPartTime property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setNumberEmployeesPersonnelRegisterClosingDateFinancialYearMenPartTime(Float value) { - this.numberEmployeesPersonnelRegisterClosingDateFinancialYearMenPartTime = value; - } - - /** - * Gets the value of the numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenPartTime property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getNumberEmployeesPersonnelRegisterClosingDateFinancialYearWomenPartTime() { - return numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenPartTime; - } - - /** - * Sets the value of the numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenPartTime property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setNumberEmployeesPersonnelRegisterClosingDateFinancialYearWomenPartTime(Float value) { - this.numberEmployeesPersonnelRegisterClosingDateFinancialYearWomenPartTime = value; - } - - /** - * Gets the value of the investments property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getInvestments() { - return investments; - } - - /** - * Sets the value of the investments property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setInvestments(Float value) { - this.investments = value; - } - - /** - * Gets the value of the addedValue property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAddedValue() { - return addedValue; - } - - /** - * Sets the value of the addedValue property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAddedValue(Float value) { - this.addedValue = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessGetDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessGetDossierRequestType.java deleted file mode 100644 index 41acfd5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessGetDossierRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for belgianBusinessGetDossierRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="belgianBusinessGetDossierRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "belgianBusinessGetDossierRequestType", propOrder = { - -}) -public class BelgianBusinessGetDossierRequestType { - - @XmlElement(name = "vat_number", required = true) - protected String vatNumber; - - /** - * Gets the value of the vatNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVatNumber() { - return vatNumber; - } - - /** - * Sets the value of the vatNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVatNumber(String value) { - this.vatNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessGetDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessGetDossierResponseType.java deleted file mode 100644 index 36c7624..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessGetDossierResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for belgianBusinessGetDossierResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="belgianBusinessGetDossierResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BelgianBusinessDossier"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "belgianBusinessGetDossierResponseType", propOrder = { - -}) -public class BelgianBusinessGetDossierResponseType { - - @XmlElement(required = true) - protected BelgianBusinessDossier out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BelgianBusinessDossier } - * - */ - public BelgianBusinessDossier getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BelgianBusinessDossier } - * - */ - public void setOut(BelgianBusinessDossier value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessInternationalAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessInternationalAddress.java deleted file mode 100644 index 576e75f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessInternationalAddress.java +++ /dev/null @@ -1,194 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessInternationalAddress complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessInternationalAddress">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="box" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="municipality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="post_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessInternationalAddress", propOrder = { - -}) -public class BelgianBusinessInternationalAddress { - - @XmlElement(required = true) - protected String street; - @XmlElement(name = "house_number") - protected int houseNumber; - protected String box; - @XmlElement(name = "country_code", required = true) - protected String countryCode; - protected String municipality; - @XmlElement(name = "post_code", required = true) - protected String postCode; - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNumber property. - * - */ - public int getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - */ - public void setHouseNumber(int value) { - this.houseNumber = value; - } - - /** - * Gets the value of the box property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBox() { - return box; - } - - /** - * Sets the value of the box property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBox(String value) { - this.box = value; - } - - /** - * Gets the value of the countryCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryCode() { - return countryCode; - } - - /** - * Sets the value of the countryCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryCode(String value) { - this.countryCode = value; - } - - /** - * Gets the value of the municipality property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMunicipality() { - return municipality; - } - - /** - * Sets the value of the municipality property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMunicipality(String value) { - this.municipality = value; - } - - /** - * Gets the value of the postCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostCode() { - return postCode; - } - - /** - * Sets the value of the postCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostCode(String value) { - this.postCode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessInternationalAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessInternationalAddressArray.java deleted file mode 100644 index 1241650..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessInternationalAddressArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessInternationalAddressArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessInternationalAddressArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessInternationalAddress" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessInternationalAddressArray", propOrder = { - "item" -}) -public class BelgianBusinessInternationalAddressArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BelgianBusinessInternationalAddress } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentative.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentative.java deleted file mode 100644 index bbecb91..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentative.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessLegalRepresentative complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessLegalRepresentative">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_vat_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="role" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItem" minOccurs="0"/>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessLegalRepresentative", propOrder = { - -}) -public class BelgianBusinessLegalRepresentative { - - @XmlElement(name = "company_vat_number") - protected String companyVatNumber; - protected BelgianBusinessDatedItem role; - @XmlElement(name = "first_name", required = true) - protected String firstName; - @XmlElement(name = "last_name", required = true) - protected String lastName; - - /** - * Gets the value of the companyVatNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyVatNumber() { - return companyVatNumber; - } - - /** - * Sets the value of the companyVatNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyVatNumber(String value) { - this.companyVatNumber = value; - } - - /** - * Gets the value of the role property. - * - * @return - * possible object is - * {@link BelgianBusinessDatedItem } - * - */ - public BelgianBusinessDatedItem getRole() { - return role; - } - - /** - * Sets the value of the role property. - * - * @param value - * allowed object is - * {@link BelgianBusinessDatedItem } - * - */ - public void setRole(BelgianBusinessDatedItem value) { - this.role = value; - } - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeArray.java deleted file mode 100644 index 8db010f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessLegalRepresentativeArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessLegalRepresentativeArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessLegalRepresentative" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessLegalRepresentativeArray", propOrder = { - "item" -}) -public class BelgianBusinessLegalRepresentativeArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BelgianBusinessLegalRepresentative } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeCompany.java deleted file mode 100644 index 3a45660..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeCompany.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessLegalRepresentativeCompany complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessLegalRepresentativeCompany">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="role" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItem" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessLegalRepresentativeCompany", propOrder = { - -}) -public class BelgianBusinessLegalRepresentativeCompany { - - @XmlElement(name = "vat_number") - protected String vatNumber; - protected String name; - protected BelgianBusinessDatedItem role; - - /** - * Gets the value of the vatNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVatNumber() { - return vatNumber; - } - - /** - * Sets the value of the vatNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVatNumber(String value) { - this.vatNumber = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the role property. - * - * @return - * possible object is - * {@link BelgianBusinessDatedItem } - * - */ - public BelgianBusinessDatedItem getRole() { - return role; - } - - /** - * Sets the value of the role property. - * - * @param value - * allowed object is - * {@link BelgianBusinessDatedItem } - * - */ - public void setRole(BelgianBusinessDatedItem value) { - this.role = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeCompanyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeCompanyArray.java deleted file mode 100644 index 0c8f2be..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessLegalRepresentativeCompanyArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessLegalRepresentativeCompanyArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessLegalRepresentativeCompanyArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessLegalRepresentativeCompany" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessLegalRepresentativeCompanyArray", propOrder = { - "item" -}) -public class BelgianBusinessLegalRepresentativeCompanyArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BelgianBusinessLegalRepresentativeCompany } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRatios.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRatios.java deleted file mode 100644 index 9902903..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRatios.java +++ /dev/null @@ -1,904 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessRatios complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessRatios">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="net_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="return_on_equity" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="gross_operating_sales_margin" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="net_operating_sales_margin" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="rotation_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="total_assets_to_turnover" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="current_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="quick_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="immediate_liquidity" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="write_downs_to_added_value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="net_cash" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="net_cash_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="net_current_assets" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="cash_flow" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="number_days_customer_credit" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="number_days_supplier_credit" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="investments" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="dfl" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="own_assets_to_capital" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="cash_flow_to_debt" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="cash_flow_to_long_term_debt" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="long_term_debt_to_short_term_debt" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="debt_repayment" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="self_financing_degree" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="outstanding_tax_to_liabilities" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="added_value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="payroll_costs_to_added_value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="financial_charges_to_added_value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="net_profit_to_added_value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="added_value_to_operating_income" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="investment_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="added_value_per_employee" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessRatios", propOrder = { - -}) -public class BelgianBusinessRatios { - - @XmlElement(name = "net_assets") - protected Float netAssets; - @XmlElement(name = "return_on_equity") - protected Float returnOnEquity; - @XmlElement(name = "gross_operating_sales_margin") - protected Float grossOperatingSalesMargin; - @XmlElement(name = "net_operating_sales_margin") - protected Float netOperatingSalesMargin; - @XmlElement(name = "rotation_fixed_assets") - protected Float rotationFixedAssets; - @XmlElement(name = "total_assets_to_turnover") - protected Float totalAssetsToTurnover; - @XmlElement(name = "current_ratio") - protected Float currentRatio; - @XmlElement(name = "quick_ratio") - protected Float quickRatio; - @XmlElement(name = "immediate_liquidity") - protected Float immediateLiquidity; - @XmlElement(name = "write_downs_to_added_value") - protected Float writeDownsToAddedValue; - @XmlElement(name = "net_cash") - protected Float netCash; - @XmlElement(name = "net_cash_ratio") - protected Float netCashRatio; - @XmlElement(name = "net_current_assets") - protected Float netCurrentAssets; - @XmlElement(name = "cash_flow") - protected Float cashFlow; - @XmlElement(name = "number_days_customer_credit") - protected Float numberDaysCustomerCredit; - @XmlElement(name = "number_days_supplier_credit") - protected Float numberDaysSupplierCredit; - protected Float investments; - protected Float dfl; - @XmlElement(name = "own_assets_to_capital") - protected Float ownAssetsToCapital; - @XmlElement(name = "cash_flow_to_debt") - protected Float cashFlowToDebt; - @XmlElement(name = "cash_flow_to_long_term_debt") - protected Float cashFlowToLongTermDebt; - @XmlElement(name = "long_term_debt_to_short_term_debt") - protected Float longTermDebtToShortTermDebt; - @XmlElement(name = "debt_repayment") - protected Float debtRepayment; - @XmlElement(name = "self_financing_degree") - protected Float selfFinancingDegree; - @XmlElement(name = "outstanding_tax_to_liabilities") - protected Float outstandingTaxToLiabilities; - @XmlElement(name = "added_value") - protected Float addedValue; - @XmlElement(name = "payroll_costs_to_added_value") - protected Float payrollCostsToAddedValue; - @XmlElement(name = "financial_charges_to_added_value") - protected Float financialChargesToAddedValue; - @XmlElement(name = "net_profit_to_added_value") - protected Float netProfitToAddedValue; - @XmlElement(name = "added_value_to_operating_income") - protected Float addedValueToOperatingIncome; - @XmlElement(name = "investment_ratio") - protected Float investmentRatio; - @XmlElement(name = "added_value_per_employee") - protected Float addedValuePerEmployee; - - /** - * Gets the value of the netAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getNetAssets() { - return netAssets; - } - - /** - * Sets the value of the netAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setNetAssets(Float value) { - this.netAssets = value; - } - - /** - * Gets the value of the returnOnEquity property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getReturnOnEquity() { - return returnOnEquity; - } - - /** - * Sets the value of the returnOnEquity property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setReturnOnEquity(Float value) { - this.returnOnEquity = value; - } - - /** - * Gets the value of the grossOperatingSalesMargin property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getGrossOperatingSalesMargin() { - return grossOperatingSalesMargin; - } - - /** - * Sets the value of the grossOperatingSalesMargin property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setGrossOperatingSalesMargin(Float value) { - this.grossOperatingSalesMargin = value; - } - - /** - * Gets the value of the netOperatingSalesMargin property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getNetOperatingSalesMargin() { - return netOperatingSalesMargin; - } - - /** - * Sets the value of the netOperatingSalesMargin property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setNetOperatingSalesMargin(Float value) { - this.netOperatingSalesMargin = value; - } - - /** - * Gets the value of the rotationFixedAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getRotationFixedAssets() { - return rotationFixedAssets; - } - - /** - * Sets the value of the rotationFixedAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setRotationFixedAssets(Float value) { - this.rotationFixedAssets = value; - } - - /** - * Gets the value of the totalAssetsToTurnover property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getTotalAssetsToTurnover() { - return totalAssetsToTurnover; - } - - /** - * Sets the value of the totalAssetsToTurnover property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setTotalAssetsToTurnover(Float value) { - this.totalAssetsToTurnover = value; - } - - /** - * Gets the value of the currentRatio property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getCurrentRatio() { - return currentRatio; - } - - /** - * Sets the value of the currentRatio property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setCurrentRatio(Float value) { - this.currentRatio = value; - } - - /** - * Gets the value of the quickRatio property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getQuickRatio() { - return quickRatio; - } - - /** - * Sets the value of the quickRatio property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setQuickRatio(Float value) { - this.quickRatio = value; - } - - /** - * Gets the value of the immediateLiquidity property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getImmediateLiquidity() { - return immediateLiquidity; - } - - /** - * Sets the value of the immediateLiquidity property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setImmediateLiquidity(Float value) { - this.immediateLiquidity = value; - } - - /** - * Gets the value of the writeDownsToAddedValue property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getWriteDownsToAddedValue() { - return writeDownsToAddedValue; - } - - /** - * Sets the value of the writeDownsToAddedValue property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setWriteDownsToAddedValue(Float value) { - this.writeDownsToAddedValue = value; - } - - /** - * Gets the value of the netCash property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getNetCash() { - return netCash; - } - - /** - * Sets the value of the netCash property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setNetCash(Float value) { - this.netCash = value; - } - - /** - * Gets the value of the netCashRatio property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getNetCashRatio() { - return netCashRatio; - } - - /** - * Sets the value of the netCashRatio property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setNetCashRatio(Float value) { - this.netCashRatio = value; - } - - /** - * Gets the value of the netCurrentAssets property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getNetCurrentAssets() { - return netCurrentAssets; - } - - /** - * Sets the value of the netCurrentAssets property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setNetCurrentAssets(Float value) { - this.netCurrentAssets = value; - } - - /** - * Gets the value of the cashFlow property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getCashFlow() { - return cashFlow; - } - - /** - * Sets the value of the cashFlow property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setCashFlow(Float value) { - this.cashFlow = value; - } - - /** - * Gets the value of the numberDaysCustomerCredit property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getNumberDaysCustomerCredit() { - return numberDaysCustomerCredit; - } - - /** - * Sets the value of the numberDaysCustomerCredit property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setNumberDaysCustomerCredit(Float value) { - this.numberDaysCustomerCredit = value; - } - - /** - * Gets the value of the numberDaysSupplierCredit property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getNumberDaysSupplierCredit() { - return numberDaysSupplierCredit; - } - - /** - * Sets the value of the numberDaysSupplierCredit property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setNumberDaysSupplierCredit(Float value) { - this.numberDaysSupplierCredit = value; - } - - /** - * Gets the value of the investments property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getInvestments() { - return investments; - } - - /** - * Sets the value of the investments property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setInvestments(Float value) { - this.investments = value; - } - - /** - * Gets the value of the dfl property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getDfl() { - return dfl; - } - - /** - * Sets the value of the dfl property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setDfl(Float value) { - this.dfl = value; - } - - /** - * Gets the value of the ownAssetsToCapital property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getOwnAssetsToCapital() { - return ownAssetsToCapital; - } - - /** - * Sets the value of the ownAssetsToCapital property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setOwnAssetsToCapital(Float value) { - this.ownAssetsToCapital = value; - } - - /** - * Gets the value of the cashFlowToDebt property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getCashFlowToDebt() { - return cashFlowToDebt; - } - - /** - * Sets the value of the cashFlowToDebt property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setCashFlowToDebt(Float value) { - this.cashFlowToDebt = value; - } - - /** - * Gets the value of the cashFlowToLongTermDebt property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getCashFlowToLongTermDebt() { - return cashFlowToLongTermDebt; - } - - /** - * Sets the value of the cashFlowToLongTermDebt property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setCashFlowToLongTermDebt(Float value) { - this.cashFlowToLongTermDebt = value; - } - - /** - * Gets the value of the longTermDebtToShortTermDebt property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getLongTermDebtToShortTermDebt() { - return longTermDebtToShortTermDebt; - } - - /** - * Sets the value of the longTermDebtToShortTermDebt property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setLongTermDebtToShortTermDebt(Float value) { - this.longTermDebtToShortTermDebt = value; - } - - /** - * Gets the value of the debtRepayment property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getDebtRepayment() { - return debtRepayment; - } - - /** - * Sets the value of the debtRepayment property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setDebtRepayment(Float value) { - this.debtRepayment = value; - } - - /** - * Gets the value of the selfFinancingDegree property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getSelfFinancingDegree() { - return selfFinancingDegree; - } - - /** - * Sets the value of the selfFinancingDegree property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setSelfFinancingDegree(Float value) { - this.selfFinancingDegree = value; - } - - /** - * Gets the value of the outstandingTaxToLiabilities property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getOutstandingTaxToLiabilities() { - return outstandingTaxToLiabilities; - } - - /** - * Sets the value of the outstandingTaxToLiabilities property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setOutstandingTaxToLiabilities(Float value) { - this.outstandingTaxToLiabilities = value; - } - - /** - * Gets the value of the addedValue property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAddedValue() { - return addedValue; - } - - /** - * Sets the value of the addedValue property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAddedValue(Float value) { - this.addedValue = value; - } - - /** - * Gets the value of the payrollCostsToAddedValue property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getPayrollCostsToAddedValue() { - return payrollCostsToAddedValue; - } - - /** - * Sets the value of the payrollCostsToAddedValue property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setPayrollCostsToAddedValue(Float value) { - this.payrollCostsToAddedValue = value; - } - - /** - * Gets the value of the financialChargesToAddedValue property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getFinancialChargesToAddedValue() { - return financialChargesToAddedValue; - } - - /** - * Sets the value of the financialChargesToAddedValue property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setFinancialChargesToAddedValue(Float value) { - this.financialChargesToAddedValue = value; - } - - /** - * Gets the value of the netProfitToAddedValue property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getNetProfitToAddedValue() { - return netProfitToAddedValue; - } - - /** - * Sets the value of the netProfitToAddedValue property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setNetProfitToAddedValue(Float value) { - this.netProfitToAddedValue = value; - } - - /** - * Gets the value of the addedValueToOperatingIncome property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAddedValueToOperatingIncome() { - return addedValueToOperatingIncome; - } - - /** - * Sets the value of the addedValueToOperatingIncome property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAddedValueToOperatingIncome(Float value) { - this.addedValueToOperatingIncome = value; - } - - /** - * Gets the value of the investmentRatio property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getInvestmentRatio() { - return investmentRatio; - } - - /** - * Sets the value of the investmentRatio property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setInvestmentRatio(Float value) { - this.investmentRatio = value; - } - - /** - * Gets the value of the addedValuePerEmployee property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAddedValuePerEmployee() { - return addedValuePerEmployee; - } - - /** - * Sets the value of the addedValuePerEmployee property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAddedValuePerEmployee(Float value) { - this.addedValuePerEmployee = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRevisor.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRevisor.java deleted file mode 100644 index 4e83d03..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRevisor.java +++ /dev/null @@ -1,254 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessRevisor complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessRevisor">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="profession" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="address" type="{http://www.webservices.nl/soap/}BelgianBusinessInternationalAddress" minOccurs="0"/>
- *         <element name="mandate" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItem" minOccurs="0"/>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessRevisor", propOrder = { - -}) -public class BelgianBusinessRevisor { - - @XmlElement(required = true) - protected String type; - @XmlElement(name = "company_name", required = true) - protected String companyName; - protected String id; - protected String profession; - protected BelgianBusinessInternationalAddress address; - protected BelgianBusinessDatedItem mandate; - @XmlElement(name = "first_name", required = true) - protected String firstName; - @XmlElement(name = "last_name", required = true) - protected String lastName; - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the companyName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyName() { - return companyName; - } - - /** - * Sets the value of the companyName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyName(String value) { - this.companyName = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the profession property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProfession() { - return profession; - } - - /** - * Sets the value of the profession property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProfession(String value) { - this.profession = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link BelgianBusinessInternationalAddress } - * - */ - public BelgianBusinessInternationalAddress getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link BelgianBusinessInternationalAddress } - * - */ - public void setAddress(BelgianBusinessInternationalAddress value) { - this.address = value; - } - - /** - * Gets the value of the mandate property. - * - * @return - * possible object is - * {@link BelgianBusinessDatedItem } - * - */ - public BelgianBusinessDatedItem getMandate() { - return mandate; - } - - /** - * Sets the value of the mandate property. - * - * @param value - * allowed object is - * {@link BelgianBusinessDatedItem } - * - */ - public void setMandate(BelgianBusinessDatedItem value) { - this.mandate = value; - } - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRevisorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRevisorArray.java deleted file mode 100644 index 4ac10cb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessRevisorArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessRevisorArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessRevisorArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessRevisor" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessRevisorArray", propOrder = { - "item" -}) -public class BelgianBusinessRevisorArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BelgianBusinessRevisor } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessSocialBalance.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessSocialBalance.java deleted file mode 100644 index 9afb29a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessSocialBalance.java +++ /dev/null @@ -1,744 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessSocialBalance complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessSocialBalance">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="employees_worked_hours" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="advantages_addition_wages" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="professional_training_hours" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="professional_training_net_costs" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="average_number_of_employees_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_end_of_year_management_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_end_of_year" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_end_of_year_workers_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_end_of_year_others_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_new_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_end_of_year_men_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_end_of_year_women_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_end_of_year_university_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_end_of_year_non_university_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_end_of_year_secondary_education_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_end_of_year_primary_education_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_contract_indefinite_period_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_contract_definite_period_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_contract_termination_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_contract_termination_retirement_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_contract_termination_early_retirement_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_contract_termination_dismissal" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="employees_contract_termination_other_reason" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="hired_temporary_staff_fte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="hired_temporary_staff_worked_hours" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="hired_temporary_staff_costs" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessSocialBalance", propOrder = { - -}) -public class BelgianBusinessSocialBalance { - - @XmlElement(name = "employees_worked_hours") - protected Integer employeesWorkedHours; - @XmlElement(name = "advantages_addition_wages") - protected Float advantagesAdditionWages; - @XmlElement(name = "professional_training_hours") - protected Float professionalTrainingHours; - @XmlElement(name = "professional_training_net_costs") - protected Float professionalTrainingNetCosts; - @XmlElement(name = "average_number_of_employees_fte") - protected Float averageNumberOfEmployeesFte; - @XmlElement(name = "employees_end_of_year_management_fte") - protected Float employeesEndOfYearManagementFte; - @XmlElement(name = "employees_end_of_year") - protected Float employeesEndOfYear; - @XmlElement(name = "employees_end_of_year_workers_fte") - protected Float employeesEndOfYearWorkersFte; - @XmlElement(name = "employees_end_of_year_others_fte") - protected Float employeesEndOfYearOthersFte; - @XmlElement(name = "employees_new_fte") - protected Float employeesNewFte; - @XmlElement(name = "employees_end_of_year_men_fte") - protected Float employeesEndOfYearMenFte; - @XmlElement(name = "employees_end_of_year_women_fte") - protected Float employeesEndOfYearWomenFte; - @XmlElement(name = "employees_end_of_year_university_fte") - protected Float employeesEndOfYearUniversityFte; - @XmlElement(name = "employees_end_of_year_non_university_fte") - protected Float employeesEndOfYearNonUniversityFte; - @XmlElement(name = "employees_end_of_year_secondary_education_fte") - protected Float employeesEndOfYearSecondaryEducationFte; - @XmlElement(name = "employees_end_of_year_primary_education_fte") - protected Float employeesEndOfYearPrimaryEducationFte; - @XmlElement(name = "employees_contract_indefinite_period_fte") - protected Float employeesContractIndefinitePeriodFte; - @XmlElement(name = "employees_contract_definite_period_fte") - protected Float employeesContractDefinitePeriodFte; - @XmlElement(name = "employees_contract_termination_fte") - protected Float employeesContractTerminationFte; - @XmlElement(name = "employees_contract_termination_retirement_fte") - protected Float employeesContractTerminationRetirementFte; - @XmlElement(name = "employees_contract_termination_early_retirement_fte") - protected Float employeesContractTerminationEarlyRetirementFte; - @XmlElement(name = "employees_contract_termination_dismissal") - protected Float employeesContractTerminationDismissal; - @XmlElement(name = "employees_contract_termination_other_reason") - protected Float employeesContractTerminationOtherReason; - @XmlElement(name = "hired_temporary_staff_fte") - protected Float hiredTemporaryStaffFte; - @XmlElement(name = "hired_temporary_staff_worked_hours") - protected Float hiredTemporaryStaffWorkedHours; - @XmlElement(name = "hired_temporary_staff_costs") - protected Float hiredTemporaryStaffCosts; - - /** - * Gets the value of the employeesWorkedHours property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEmployeesWorkedHours() { - return employeesWorkedHours; - } - - /** - * Sets the value of the employeesWorkedHours property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEmployeesWorkedHours(Integer value) { - this.employeesWorkedHours = value; - } - - /** - * Gets the value of the advantagesAdditionWages property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAdvantagesAdditionWages() { - return advantagesAdditionWages; - } - - /** - * Sets the value of the advantagesAdditionWages property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAdvantagesAdditionWages(Float value) { - this.advantagesAdditionWages = value; - } - - /** - * Gets the value of the professionalTrainingHours property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getProfessionalTrainingHours() { - return professionalTrainingHours; - } - - /** - * Sets the value of the professionalTrainingHours property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setProfessionalTrainingHours(Float value) { - this.professionalTrainingHours = value; - } - - /** - * Gets the value of the professionalTrainingNetCosts property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getProfessionalTrainingNetCosts() { - return professionalTrainingNetCosts; - } - - /** - * Sets the value of the professionalTrainingNetCosts property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setProfessionalTrainingNetCosts(Float value) { - this.professionalTrainingNetCosts = value; - } - - /** - * Gets the value of the averageNumberOfEmployeesFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getAverageNumberOfEmployeesFte() { - return averageNumberOfEmployeesFte; - } - - /** - * Sets the value of the averageNumberOfEmployeesFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setAverageNumberOfEmployeesFte(Float value) { - this.averageNumberOfEmployeesFte = value; - } - - /** - * Gets the value of the employeesEndOfYearManagementFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesEndOfYearManagementFte() { - return employeesEndOfYearManagementFte; - } - - /** - * Sets the value of the employeesEndOfYearManagementFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesEndOfYearManagementFte(Float value) { - this.employeesEndOfYearManagementFte = value; - } - - /** - * Gets the value of the employeesEndOfYear property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesEndOfYear() { - return employeesEndOfYear; - } - - /** - * Sets the value of the employeesEndOfYear property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesEndOfYear(Float value) { - this.employeesEndOfYear = value; - } - - /** - * Gets the value of the employeesEndOfYearWorkersFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesEndOfYearWorkersFte() { - return employeesEndOfYearWorkersFte; - } - - /** - * Sets the value of the employeesEndOfYearWorkersFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesEndOfYearWorkersFte(Float value) { - this.employeesEndOfYearWorkersFte = value; - } - - /** - * Gets the value of the employeesEndOfYearOthersFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesEndOfYearOthersFte() { - return employeesEndOfYearOthersFte; - } - - /** - * Sets the value of the employeesEndOfYearOthersFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesEndOfYearOthersFte(Float value) { - this.employeesEndOfYearOthersFte = value; - } - - /** - * Gets the value of the employeesNewFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesNewFte() { - return employeesNewFte; - } - - /** - * Sets the value of the employeesNewFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesNewFte(Float value) { - this.employeesNewFte = value; - } - - /** - * Gets the value of the employeesEndOfYearMenFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesEndOfYearMenFte() { - return employeesEndOfYearMenFte; - } - - /** - * Sets the value of the employeesEndOfYearMenFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesEndOfYearMenFte(Float value) { - this.employeesEndOfYearMenFte = value; - } - - /** - * Gets the value of the employeesEndOfYearWomenFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesEndOfYearWomenFte() { - return employeesEndOfYearWomenFte; - } - - /** - * Sets the value of the employeesEndOfYearWomenFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesEndOfYearWomenFte(Float value) { - this.employeesEndOfYearWomenFte = value; - } - - /** - * Gets the value of the employeesEndOfYearUniversityFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesEndOfYearUniversityFte() { - return employeesEndOfYearUniversityFte; - } - - /** - * Sets the value of the employeesEndOfYearUniversityFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesEndOfYearUniversityFte(Float value) { - this.employeesEndOfYearUniversityFte = value; - } - - /** - * Gets the value of the employeesEndOfYearNonUniversityFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesEndOfYearNonUniversityFte() { - return employeesEndOfYearNonUniversityFte; - } - - /** - * Sets the value of the employeesEndOfYearNonUniversityFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesEndOfYearNonUniversityFte(Float value) { - this.employeesEndOfYearNonUniversityFte = value; - } - - /** - * Gets the value of the employeesEndOfYearSecondaryEducationFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesEndOfYearSecondaryEducationFte() { - return employeesEndOfYearSecondaryEducationFte; - } - - /** - * Sets the value of the employeesEndOfYearSecondaryEducationFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesEndOfYearSecondaryEducationFte(Float value) { - this.employeesEndOfYearSecondaryEducationFte = value; - } - - /** - * Gets the value of the employeesEndOfYearPrimaryEducationFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesEndOfYearPrimaryEducationFte() { - return employeesEndOfYearPrimaryEducationFte; - } - - /** - * Sets the value of the employeesEndOfYearPrimaryEducationFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesEndOfYearPrimaryEducationFte(Float value) { - this.employeesEndOfYearPrimaryEducationFte = value; - } - - /** - * Gets the value of the employeesContractIndefinitePeriodFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesContractIndefinitePeriodFte() { - return employeesContractIndefinitePeriodFte; - } - - /** - * Sets the value of the employeesContractIndefinitePeriodFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesContractIndefinitePeriodFte(Float value) { - this.employeesContractIndefinitePeriodFte = value; - } - - /** - * Gets the value of the employeesContractDefinitePeriodFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesContractDefinitePeriodFte() { - return employeesContractDefinitePeriodFte; - } - - /** - * Sets the value of the employeesContractDefinitePeriodFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesContractDefinitePeriodFte(Float value) { - this.employeesContractDefinitePeriodFte = value; - } - - /** - * Gets the value of the employeesContractTerminationFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesContractTerminationFte() { - return employeesContractTerminationFte; - } - - /** - * Sets the value of the employeesContractTerminationFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesContractTerminationFte(Float value) { - this.employeesContractTerminationFte = value; - } - - /** - * Gets the value of the employeesContractTerminationRetirementFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesContractTerminationRetirementFte() { - return employeesContractTerminationRetirementFte; - } - - /** - * Sets the value of the employeesContractTerminationRetirementFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesContractTerminationRetirementFte(Float value) { - this.employeesContractTerminationRetirementFte = value; - } - - /** - * Gets the value of the employeesContractTerminationEarlyRetirementFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesContractTerminationEarlyRetirementFte() { - return employeesContractTerminationEarlyRetirementFte; - } - - /** - * Sets the value of the employeesContractTerminationEarlyRetirementFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesContractTerminationEarlyRetirementFte(Float value) { - this.employeesContractTerminationEarlyRetirementFte = value; - } - - /** - * Gets the value of the employeesContractTerminationDismissal property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesContractTerminationDismissal() { - return employeesContractTerminationDismissal; - } - - /** - * Sets the value of the employeesContractTerminationDismissal property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesContractTerminationDismissal(Float value) { - this.employeesContractTerminationDismissal = value; - } - - /** - * Gets the value of the employeesContractTerminationOtherReason property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEmployeesContractTerminationOtherReason() { - return employeesContractTerminationOtherReason; - } - - /** - * Sets the value of the employeesContractTerminationOtherReason property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEmployeesContractTerminationOtherReason(Float value) { - this.employeesContractTerminationOtherReason = value; - } - - /** - * Gets the value of the hiredTemporaryStaffFte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getHiredTemporaryStaffFte() { - return hiredTemporaryStaffFte; - } - - /** - * Sets the value of the hiredTemporaryStaffFte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setHiredTemporaryStaffFte(Float value) { - this.hiredTemporaryStaffFte = value; - } - - /** - * Gets the value of the hiredTemporaryStaffWorkedHours property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getHiredTemporaryStaffWorkedHours() { - return hiredTemporaryStaffWorkedHours; - } - - /** - * Sets the value of the hiredTemporaryStaffWorkedHours property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setHiredTemporaryStaffWorkedHours(Float value) { - this.hiredTemporaryStaffWorkedHours = value; - } - - /** - * Gets the value of the hiredTemporaryStaffCosts property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getHiredTemporaryStaffCosts() { - return hiredTemporaryStaffCosts; - } - - /** - * Sets the value of the hiredTemporaryStaffCosts property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setHiredTemporaryStaffCosts(Float value) { - this.hiredTemporaryStaffCosts = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessStakeHolder.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessStakeHolder.java deleted file mode 100644 index 03e0664..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessStakeHolder.java +++ /dev/null @@ -1,281 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessStakeHolder complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessStakeHolder">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="profession" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="address" type="{http://www.webservices.nl/soap/}BelgianBusinessInternationalAddress" minOccurs="0"/>
- *         <element name="mandate" type="{http://www.webservices.nl/soap/}BelgianBusinessDatedItem" minOccurs="0"/>
- *         <element name="source_date" type="{http://www.webservices.nl/soap/}BelgianBusinessDate" minOccurs="0"/>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessStakeHolder", propOrder = { - -}) -public class BelgianBusinessStakeHolder { - - @XmlElement(required = true) - protected String type; - @XmlElement(name = "company_name") - protected String companyName; - protected String id; - protected String profession; - protected BelgianBusinessInternationalAddress address; - protected BelgianBusinessDatedItem mandate; - @XmlElement(name = "source_date") - protected BelgianBusinessDate sourceDate; - @XmlElement(name = "first_name", required = true) - protected String firstName; - @XmlElement(name = "last_name", required = true) - protected String lastName; - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the companyName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyName() { - return companyName; - } - - /** - * Sets the value of the companyName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyName(String value) { - this.companyName = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the profession property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProfession() { - return profession; - } - - /** - * Sets the value of the profession property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProfession(String value) { - this.profession = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link BelgianBusinessInternationalAddress } - * - */ - public BelgianBusinessInternationalAddress getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link BelgianBusinessInternationalAddress } - * - */ - public void setAddress(BelgianBusinessInternationalAddress value) { - this.address = value; - } - - /** - * Gets the value of the mandate property. - * - * @return - * possible object is - * {@link BelgianBusinessDatedItem } - * - */ - public BelgianBusinessDatedItem getMandate() { - return mandate; - } - - /** - * Sets the value of the mandate property. - * - * @param value - * allowed object is - * {@link BelgianBusinessDatedItem } - * - */ - public void setMandate(BelgianBusinessDatedItem value) { - this.mandate = value; - } - - /** - * Gets the value of the sourceDate property. - * - * @return - * possible object is - * {@link BelgianBusinessDate } - * - */ - public BelgianBusinessDate getSourceDate() { - return sourceDate; - } - - /** - * Sets the value of the sourceDate property. - * - * @param value - * allowed object is - * {@link BelgianBusinessDate } - * - */ - public void setSourceDate(BelgianBusinessDate value) { - this.sourceDate = value; - } - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessStakeHolderArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessStakeHolderArray.java deleted file mode 100644 index ea6e763..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BelgianBusinessStakeHolderArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BelgianBusinessStakeHolderArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BelgianBusinessStakeHolderArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BelgianBusinessStakeHolder" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BelgianBusinessStakeHolderArray", propOrder = { - "item" -}) -public class BelgianBusinessStakeHolderArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BelgianBusinessStakeHolder } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObject.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObject.java deleted file mode 100644 index 2d938a3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObject.java +++ /dev/null @@ -1,231 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for BerichtObject complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BerichtObject">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="datum_bijgewerkt" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="onroerende_zaak" type="{http://www.webservices.nl/soap/}OnroerendeZaak"/>
- *         <element name="rechten_lijst" type="{http://www.webservices.nl/soap/}RechtenLijst"/>
- *         <element name="personen" type="{http://www.webservices.nl/soap/}PersoonArray"/>
- *         <element name="stukken" type="{http://www.webservices.nl/soap/}StukArray"/>
- *         <element name="gemeentestukken" type="{http://www.webservices.nl/soap/}GemeenteStukArray" minOccurs="0"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BerichtObject", propOrder = { - -}) -public class BerichtObject { - - @XmlElement(name = "datum_bijgewerkt") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar datumBijgewerkt; - @XmlElement(name = "onroerende_zaak", required = true) - protected OnroerendeZaak onroerendeZaak; - @XmlElement(name = "rechten_lijst", required = true) - protected RechtenLijst rechtenLijst; - @XmlElement(required = true) - protected PersoonArray personen; - @XmlElement(required = true) - protected StukArray stukken; - protected GemeenteStukArray gemeentestukken; - @XmlElement(required = true) - protected byte[] document; - - /** - * Gets the value of the datumBijgewerkt property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDatumBijgewerkt() { - return datumBijgewerkt; - } - - /** - * Sets the value of the datumBijgewerkt property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDatumBijgewerkt(XMLGregorianCalendar value) { - this.datumBijgewerkt = value; - } - - /** - * Gets the value of the onroerendeZaak property. - * - * @return - * possible object is - * {@link OnroerendeZaak } - * - */ - public OnroerendeZaak getOnroerendeZaak() { - return onroerendeZaak; - } - - /** - * Sets the value of the onroerendeZaak property. - * - * @param value - * allowed object is - * {@link OnroerendeZaak } - * - */ - public void setOnroerendeZaak(OnroerendeZaak value) { - this.onroerendeZaak = value; - } - - /** - * Gets the value of the rechtenLijst property. - * - * @return - * possible object is - * {@link RechtenLijst } - * - */ - public RechtenLijst getRechtenLijst() { - return rechtenLijst; - } - - /** - * Sets the value of the rechtenLijst property. - * - * @param value - * allowed object is - * {@link RechtenLijst } - * - */ - public void setRechtenLijst(RechtenLijst value) { - this.rechtenLijst = value; - } - - /** - * Gets the value of the personen property. - * - * @return - * possible object is - * {@link PersoonArray } - * - */ - public PersoonArray getPersonen() { - return personen; - } - - /** - * Sets the value of the personen property. - * - * @param value - * allowed object is - * {@link PersoonArray } - * - */ - public void setPersonen(PersoonArray value) { - this.personen = value; - } - - /** - * Gets the value of the stukken property. - * - * @return - * possible object is - * {@link StukArray } - * - */ - public StukArray getStukken() { - return stukken; - } - - /** - * Sets the value of the stukken property. - * - * @param value - * allowed object is - * {@link StukArray } - * - */ - public void setStukken(StukArray value) { - this.stukken = value; - } - - /** - * Gets the value of the gemeentestukken property. - * - * @return - * possible object is - * {@link GemeenteStukArray } - * - */ - public GemeenteStukArray getGemeentestukken() { - return gemeentestukken; - } - - /** - * Sets the value of the gemeentestukken property. - * - * @param value - * allowed object is - * {@link GemeenteStukArray } - * - */ - public void setGemeentestukken(GemeenteStukArray value) { - this.gemeentestukken = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectDocument.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectDocument.java deleted file mode 100644 index 3460f5f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectDocument.java +++ /dev/null @@ -1,229 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for BerichtObjectDocument complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BerichtObjectDocument">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="datum_bijgewerkt" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="kadastrale_aanduiding" type="{http://www.webservices.nl/soap/}KadastraleAanduiding"/>
- *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="locaties" type="{http://www.webservices.nl/soap/}LocatieBinnenlandLijst" minOccurs="0"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="afbeeldingen" type="{http://www.webservices.nl/soap/}base64BinaryArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BerichtObjectDocument", propOrder = { - -}) -public class BerichtObjectDocument { - - @XmlElement(name = "datum_bijgewerkt") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar datumBijgewerkt; - @XmlElement(name = "object_id") - protected String objectId; - @XmlElement(name = "kadastrale_aanduiding", required = true) - protected KadastraleAanduiding kadastraleAanduiding; - protected String omschrijving; - protected LocatieBinnenlandLijst locaties; - @XmlElement(required = true) - protected byte[] document; - protected Base64BinaryArray afbeeldingen; - - /** - * Gets the value of the datumBijgewerkt property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDatumBijgewerkt() { - return datumBijgewerkt; - } - - /** - * Sets the value of the datumBijgewerkt property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDatumBijgewerkt(XMLGregorianCalendar value) { - this.datumBijgewerkt = value; - } - - /** - * Gets the value of the objectId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjectId() { - return objectId; - } - - /** - * Sets the value of the objectId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjectId(String value) { - this.objectId = value; - } - - /** - * Gets the value of the kadastraleAanduiding property. - * - * @return - * possible object is - * {@link KadastraleAanduiding } - * - */ - public KadastraleAanduiding getKadastraleAanduiding() { - return kadastraleAanduiding; - } - - /** - * Sets the value of the kadastraleAanduiding property. - * - * @param value - * allowed object is - * {@link KadastraleAanduiding } - * - */ - public void setKadastraleAanduiding(KadastraleAanduiding value) { - this.kadastraleAanduiding = value; - } - - /** - * Gets the value of the omschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijving() { - return omschrijving; - } - - /** - * Sets the value of the omschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijving(String value) { - this.omschrijving = value; - } - - /** - * Gets the value of the locaties property. - * - * @return - * possible object is - * {@link LocatieBinnenlandLijst } - * - */ - public LocatieBinnenlandLijst getLocaties() { - return locaties; - } - - /** - * Sets the value of the locaties property. - * - * @param value - * allowed object is - * {@link LocatieBinnenlandLijst } - * - */ - public void setLocaties(LocatieBinnenlandLijst value) { - this.locaties = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - - /** - * Gets the value of the afbeeldingen property. - * - * @return - * possible object is - * {@link Base64BinaryArray } - * - */ - public Base64BinaryArray getAfbeeldingen() { - return afbeeldingen; - } - - /** - * Sets the value of the afbeeldingen property. - * - * @param value - * allowed object is - * {@link Base64BinaryArray } - * - */ - public void setAfbeeldingen(Base64BinaryArray value) { - this.afbeeldingen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectDocumentResultaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectDocumentResultaat.java deleted file mode 100644 index feea30c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectDocumentResultaat.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BerichtObjectDocumentResultaat complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BerichtObjectDocumentResultaat">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="overzicht" type="{http://www.webservices.nl/soap/}DocumentOverzicht" minOccurs="0"/>
- *         <element name="eigendomsbericht" type="{http://www.webservices.nl/soap/}BerichtObjectDocument" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BerichtObjectDocumentResultaat", propOrder = { - -}) -public class BerichtObjectDocumentResultaat { - - protected DocumentOverzicht overzicht; - protected BerichtObjectDocument eigendomsbericht; - - /** - * Gets the value of the overzicht property. - * - * @return - * possible object is - * {@link DocumentOverzicht } - * - */ - public DocumentOverzicht getOverzicht() { - return overzicht; - } - - /** - * Sets the value of the overzicht property. - * - * @param value - * allowed object is - * {@link DocumentOverzicht } - * - */ - public void setOverzicht(DocumentOverzicht value) { - this.overzicht = value; - } - - /** - * Gets the value of the eigendomsbericht property. - * - * @return - * possible object is - * {@link BerichtObjectDocument } - * - */ - public BerichtObjectDocument getEigendomsbericht() { - return eigendomsbericht; - } - - /** - * Sets the value of the eigendomsbericht property. - * - * @param value - * allowed object is - * {@link BerichtObjectDocument } - * - */ - public void setEigendomsbericht(BerichtObjectDocument value) { - this.eigendomsbericht = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectResultaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectResultaat.java deleted file mode 100644 index c11a2e9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectResultaat.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BerichtObjectResultaat complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BerichtObjectResultaat">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="overzicht" type="{http://www.webservices.nl/soap/}Overzicht" minOccurs="0"/>
- *         <element name="eigendomsbericht" type="{http://www.webservices.nl/soap/}BerichtObject" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BerichtObjectResultaat", propOrder = { - -}) -public class BerichtObjectResultaat { - - protected Overzicht overzicht; - protected BerichtObject eigendomsbericht; - - /** - * Gets the value of the overzicht property. - * - * @return - * possible object is - * {@link Overzicht } - * - */ - public Overzicht getOverzicht() { - return overzicht; - } - - /** - * Sets the value of the overzicht property. - * - * @param value - * allowed object is - * {@link Overzicht } - * - */ - public void setOverzicht(Overzicht value) { - this.overzicht = value; - } - - /** - * Gets the value of the eigendomsbericht property. - * - * @return - * possible object is - * {@link BerichtObject } - * - */ - public BerichtObject getEigendomsbericht() { - return eigendomsbericht; - } - - /** - * Sets the value of the eigendomsbericht property. - * - * @param value - * allowed object is - * {@link BerichtObject } - * - */ - public void setEigendomsbericht(BerichtObject value) { - this.eigendomsbericht = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectResultaatV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectResultaatV2.java deleted file mode 100644 index f97bf37..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectResultaatV2.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BerichtObjectResultaatV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BerichtObjectResultaatV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="overzicht" type="{http://www.webservices.nl/soap/}OverzichtV2" minOccurs="0"/>
- *         <element name="eigendomsbericht" type="{http://www.webservices.nl/soap/}BerichtObjectV2" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BerichtObjectResultaatV2", propOrder = { - -}) -public class BerichtObjectResultaatV2 { - - protected OverzichtV2 overzicht; - protected BerichtObjectV2 eigendomsbericht; - - /** - * Gets the value of the overzicht property. - * - * @return - * possible object is - * {@link OverzichtV2 } - * - */ - public OverzichtV2 getOverzicht() { - return overzicht; - } - - /** - * Sets the value of the overzicht property. - * - * @param value - * allowed object is - * {@link OverzichtV2 } - * - */ - public void setOverzicht(OverzichtV2 value) { - this.overzicht = value; - } - - /** - * Gets the value of the eigendomsbericht property. - * - * @return - * possible object is - * {@link BerichtObjectV2 } - * - */ - public BerichtObjectV2 getEigendomsbericht() { - return eigendomsbericht; - } - - /** - * Sets the value of the eigendomsbericht property. - * - * @param value - * allowed object is - * {@link BerichtObjectV2 } - * - */ - public void setEigendomsbericht(BerichtObjectV2 value) { - this.eigendomsbericht = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectV2.java deleted file mode 100644 index 8e9d5b9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BerichtObjectV2.java +++ /dev/null @@ -1,231 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for BerichtObjectV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BerichtObjectV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="datum_bijgewerkt" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="onroerende_zaak" type="{http://www.webservices.nl/soap/}OnroerendeZaak"/>
- *         <element name="rechten_lijst" type="{http://www.webservices.nl/soap/}RechtenLijst"/>
- *         <element name="personen" type="{http://www.webservices.nl/soap/}PersoonV2Array"/>
- *         <element name="stukken" type="{http://www.webservices.nl/soap/}StukArray"/>
- *         <element name="gemeentestukken" type="{http://www.webservices.nl/soap/}GemeenteStukArray" minOccurs="0"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BerichtObjectV2", propOrder = { - -}) -public class BerichtObjectV2 { - - @XmlElement(name = "datum_bijgewerkt") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar datumBijgewerkt; - @XmlElement(name = "onroerende_zaak", required = true) - protected OnroerendeZaak onroerendeZaak; - @XmlElement(name = "rechten_lijst", required = true) - protected RechtenLijst rechtenLijst; - @XmlElement(required = true) - protected PersoonV2Array personen; - @XmlElement(required = true) - protected StukArray stukken; - protected GemeenteStukArray gemeentestukken; - @XmlElement(required = true) - protected byte[] document; - - /** - * Gets the value of the datumBijgewerkt property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDatumBijgewerkt() { - return datumBijgewerkt; - } - - /** - * Sets the value of the datumBijgewerkt property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDatumBijgewerkt(XMLGregorianCalendar value) { - this.datumBijgewerkt = value; - } - - /** - * Gets the value of the onroerendeZaak property. - * - * @return - * possible object is - * {@link OnroerendeZaak } - * - */ - public OnroerendeZaak getOnroerendeZaak() { - return onroerendeZaak; - } - - /** - * Sets the value of the onroerendeZaak property. - * - * @param value - * allowed object is - * {@link OnroerendeZaak } - * - */ - public void setOnroerendeZaak(OnroerendeZaak value) { - this.onroerendeZaak = value; - } - - /** - * Gets the value of the rechtenLijst property. - * - * @return - * possible object is - * {@link RechtenLijst } - * - */ - public RechtenLijst getRechtenLijst() { - return rechtenLijst; - } - - /** - * Sets the value of the rechtenLijst property. - * - * @param value - * allowed object is - * {@link RechtenLijst } - * - */ - public void setRechtenLijst(RechtenLijst value) { - this.rechtenLijst = value; - } - - /** - * Gets the value of the personen property. - * - * @return - * possible object is - * {@link PersoonV2Array } - * - */ - public PersoonV2Array getPersonen() { - return personen; - } - - /** - * Sets the value of the personen property. - * - * @param value - * allowed object is - * {@link PersoonV2Array } - * - */ - public void setPersonen(PersoonV2Array value) { - this.personen = value; - } - - /** - * Gets the value of the stukken property. - * - * @return - * possible object is - * {@link StukArray } - * - */ - public StukArray getStukken() { - return stukken; - } - - /** - * Sets the value of the stukken property. - * - * @param value - * allowed object is - * {@link StukArray } - * - */ - public void setStukken(StukArray value) { - this.stukken = value; - } - - /** - * Gets the value of the gemeentestukken property. - * - * @return - * possible object is - * {@link GemeenteStukArray } - * - */ - public GemeenteStukArray getGemeentestukken() { - return gemeentestukken; - } - - /** - * Sets the value of the gemeentestukken property. - * - * @param value - * allowed object is - * {@link GemeenteStukArray } - * - */ - public void setGemeentestukken(GemeenteStukArray value) { - this.gemeentestukken = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagDepartment.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagDepartment.java deleted file mode 100644 index 7e0d6db..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagDepartment.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BovagDepartment complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BovagDepartment">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BovagDepartment", propOrder = { - -}) -public class BovagDepartment { - - @XmlElement(required = true) - protected String code; - protected String description; - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagDepartmentArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagDepartmentArray.java deleted file mode 100644 index c6d33b6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagDepartmentArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BovagDepartmentArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BovagDepartmentArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BovagDepartment" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BovagDepartmentArray", propOrder = { - "item" -}) -public class BovagDepartmentArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BovagDepartment } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByBovagIdRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByBovagIdRequestType.java deleted file mode 100644 index dfd42d1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByBovagIdRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for bovagGetMemberByBovagIdRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="bovagGetMemberByBovagIdRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bovag_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "bovagGetMemberByBovagIdRequestType", propOrder = { - -}) -public class BovagGetMemberByBovagIdRequestType { - - @XmlElement(name = "bovag_id", required = true) - protected String bovagId; - - /** - * Gets the value of the bovagId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBovagId() { - return bovagId; - } - - /** - * Sets the value of the bovagId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBovagId(String value) { - this.bovagId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByBovagIdResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByBovagIdResponseType.java deleted file mode 100644 index 05e5880..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByBovagIdResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for bovagGetMemberByBovagIdResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="bovagGetMemberByBovagIdResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="member" type="{http://www.webservices.nl/soap/}BovagMember"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "bovagGetMemberByBovagIdResponseType", propOrder = { - -}) -public class BovagGetMemberByBovagIdResponseType { - - @XmlElement(required = true) - protected BovagMember member; - - /** - * Gets the value of the member property. - * - * @return - * possible object is - * {@link BovagMember } - * - */ - public BovagMember getMember() { - return member; - } - - /** - * Sets the value of the member property. - * - * @param value - * allowed object is - * {@link BovagMember } - * - */ - public void setMember(BovagMember value) { - this.member = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByDutchBusinessRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByDutchBusinessRequestType.java deleted file mode 100644 index 9d96690..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByDutchBusinessRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for bovagGetMemberByDutchBusinessRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="bovagGetMemberByDutchBusinessRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "bovagGetMemberByDutchBusinessRequestType", propOrder = { - -}) -public class BovagGetMemberByDutchBusinessRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number", required = true) - protected String establishmentNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByDutchBusinessResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByDutchBusinessResponseType.java deleted file mode 100644 index 60d91f7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagGetMemberByDutchBusinessResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for bovagGetMemberByDutchBusinessResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="bovagGetMemberByDutchBusinessResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="member" type="{http://www.webservices.nl/soap/}BovagMember"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "bovagGetMemberByDutchBusinessResponseType", propOrder = { - -}) -public class BovagGetMemberByDutchBusinessResponseType { - - @XmlElement(required = true) - protected BovagMember member; - - /** - * Gets the value of the member property. - * - * @return - * possible object is - * {@link BovagMember } - * - */ - public BovagMember getMember() { - return member; - } - - /** - * Sets the value of the member property. - * - * @param value - * allowed object is - * {@link BovagMember } - * - */ - public void setMember(BovagMember value) { - this.member = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagMember.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagMember.java deleted file mode 100644 index 3d5ff67..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BovagMember.java +++ /dev/null @@ -1,177 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BovagMember complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BovagMember">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bovag_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="certificate_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="departments" type="{http://www.webservices.nl/soap/}BovagDepartmentArray"/>
- *         <element name="dutch_business_identifiers" type="{http://www.webservices.nl/soap/}DutchBusinessIdentifiers"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BovagMember", propOrder = { - -}) -public class BovagMember { - - @XmlElement(name = "bovag_id", required = true) - protected String bovagId; - @XmlElement(required = true) - protected String name; - @XmlElement(name = "certificate_url", required = true) - protected String certificateUrl; - @XmlElement(required = true) - protected BovagDepartmentArray departments; - @XmlElement(name = "dutch_business_identifiers", required = true) - protected DutchBusinessIdentifiers dutchBusinessIdentifiers; - - /** - * Gets the value of the bovagId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBovagId() { - return bovagId; - } - - /** - * Sets the value of the bovagId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBovagId(String value) { - this.bovagId = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the certificateUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCertificateUrl() { - return certificateUrl; - } - - /** - * Sets the value of the certificateUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCertificateUrl(String value) { - this.certificateUrl = value; - } - - /** - * Gets the value of the departments property. - * - * @return - * possible object is - * {@link BovagDepartmentArray } - * - */ - public BovagDepartmentArray getDepartments() { - return departments; - } - - /** - * Sets the value of the departments property. - * - * @param value - * allowed object is - * {@link BovagDepartmentArray } - * - */ - public void setDepartments(BovagDepartmentArray value) { - this.departments = value; - } - - /** - * Gets the value of the dutchBusinessIdentifiers property. - * - * @return - * possible object is - * {@link DutchBusinessIdentifiers } - * - */ - public DutchBusinessIdentifiers getDutchBusinessIdentifiers() { - return dutchBusinessIdentifiers; - } - - /** - * Sets the value of the dutchBusinessIdentifiers property. - * - * @param value - * allowed object is - * {@link DutchBusinessIdentifiers } - * - */ - public void setDutchBusinessIdentifiers(DutchBusinessIdentifiers value) { - this.dutchBusinessIdentifiers = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCode.java deleted file mode 100644 index a3c4ad5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCode.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessBIKCode complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessBIKCode">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bikcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessBIKCode", propOrder = { - -}) -public class BusinessBIKCode { - - @XmlElement(required = true) - protected String bikcode; - @XmlElement(required = true) - protected String description; - - /** - * Gets the value of the bikcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBikcode() { - return bikcode; - } - - /** - * Sets the value of the bikcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBikcode(String value) { - this.bikcode = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCodeArray.java deleted file mode 100644 index 6c4839d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCodeArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessBIKCodeArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessBIKCodeArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessBIKCode" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessBIKCodeArray", propOrder = { - "item" -}) -public class BusinessBIKCodeArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BusinessBIKCode } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCodeInfo.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCodeInfo.java deleted file mode 100644 index 5aaaf10..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKCodeInfo.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessBIKCodeInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessBIKCodeInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="sections" type="{http://www.webservices.nl/soap/}BusinessBIKSectionArray"/>
- *         <element name="bikcodes" type="{http://www.webservices.nl/soap/}BusinessBIKCodeArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessBIKCodeInfo", propOrder = { - -}) -public class BusinessBIKCodeInfo { - - @XmlElement(required = true) - protected BusinessBIKSectionArray sections; - @XmlElement(required = true) - protected BusinessBIKCodeArray bikcodes; - - /** - * Gets the value of the sections property. - * - * @return - * possible object is - * {@link BusinessBIKSectionArray } - * - */ - public BusinessBIKSectionArray getSections() { - return sections; - } - - /** - * Sets the value of the sections property. - * - * @param value - * allowed object is - * {@link BusinessBIKSectionArray } - * - */ - public void setSections(BusinessBIKSectionArray value) { - this.sections = value; - } - - /** - * Gets the value of the bikcodes property. - * - * @return - * possible object is - * {@link BusinessBIKCodeArray } - * - */ - public BusinessBIKCodeArray getBikcodes() { - return bikcodes; - } - - /** - * Sets the value of the bikcodes property. - * - * @param value - * allowed object is - * {@link BusinessBIKCodeArray } - * - */ - public void setBikcodes(BusinessBIKCodeArray value) { - this.bikcodes = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKSection.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKSection.java deleted file mode 100644 index c8b16c5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKSection.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessBIKSection complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessBIKSection">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="sectioncode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessBIKSection", propOrder = { - -}) -public class BusinessBIKSection { - - @XmlElement(required = true) - protected String sectioncode; - @XmlElement(required = true) - protected String description; - - /** - * Gets the value of the sectioncode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectioncode() { - return sectioncode; - } - - /** - * Sets the value of the sectioncode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectioncode(String value) { - this.sectioncode = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKSectionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKSectionArray.java deleted file mode 100644 index 5864606..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKSectionArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessBIKSectionArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessBIKSectionArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessBIKSection" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessBIKSectionArray", propOrder = { - "item" -}) -public class BusinessBIKSectionArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BusinessBIKSection } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKToSBIRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKToSBIRequestType.java deleted file mode 100644 index 980641e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKToSBIRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessBIKToSBIRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessBIKToSBIRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bikcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessBIKToSBIRequestType", propOrder = { - -}) -public class BusinessBIKToSBIRequestType { - - @XmlElement(required = true) - protected String bikcode; - - /** - * Gets the value of the bikcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBikcode() { - return bikcode; - } - - /** - * Sets the value of the bikcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBikcode(String value) { - this.bikcode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKToSBIResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKToSBIResponseType.java deleted file mode 100644 index 0ebfb38..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessBIKToSBIResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessBIKToSBIResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessBIKToSBIResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessSBICodeArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessBIKToSBIResponseType", propOrder = { - -}) -public class BusinessBIKToSBIResponseType { - - @XmlElement(required = true) - protected BusinessSBICodeArray out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessSBICodeArray } - * - */ - public BusinessSBICodeArray getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessSBICodeArray } - * - */ - public void setOut(BusinessSBICodeArray value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDate.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDate.java deleted file mode 100644 index e0483e3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDate.java +++ /dev/null @@ -1,126 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for BusinessDate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessDate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="Year" type="{http://www.w3.org/2001/XMLSchema}gYear"/>
- *         <element name="Month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="Day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessDate", propOrder = { - -}) -public class BusinessDate { - - @XmlElement(name = "Year", required = true) - @XmlSchemaType(name = "gYear") - protected XMLGregorianCalendar year; - @XmlElement(name = "Month") - protected Integer month; - @XmlElement(name = "Day") - protected Integer day; - - /** - * Gets the value of the year property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setYear(XMLGregorianCalendar value) { - this.year = value; - } - - /** - * Gets the value of the month property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMonth() { - return month; - } - - /** - * Sets the value of the month property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMonth(Integer value) { - this.month = value; - } - - /** - * Gets the value of the day property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDay() { - return day; - } - - /** - * Sets the value of the day property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDay(Integer value) { - this.day = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossier.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossier.java deleted file mode 100644 index bfa0c79..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossier.java +++ /dev/null @@ -1,1106 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessDossier complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessDossier">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="RegisterLetter" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="DossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ChamberNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Legalformcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="LegalformcodeText" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PreviousDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PreviousSubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Tradename30" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Tradename1x30" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Tradename2x30" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Tradename45" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="TradenameFull" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentAddress" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentPostcodeCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentHouseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="EstablishmentHouseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentPostcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondenceAddress" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondencePostcodeCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondenceStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondenceHouseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="CorrespondenceHouseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondencePostcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="TelephoneNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Domainname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PrimaryActivitycode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SecondaryActivitycode1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SecondaryActivitycode2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PrimaryActivitycodeText" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SecondaryActivitycode1Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SecondaryActivitycode2Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PersonnelFulltime" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ClassPersonnelFulltime" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="IndicationOrganisationcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="IndicationEconomicallyActive" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="IndicationNonMailing" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="IndicationBankruptcy" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="IndicationDIP" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessDossier", propOrder = { - -}) -public class BusinessDossier { - - @XmlElement(name = "RegisterLetter", required = true) - protected String registerLetter; - @XmlElement(name = "DossierNo", required = true) - protected String dossierNo; - @XmlElement(name = "SubDossierNo", required = true) - protected String subDossierNo; - @XmlElement(name = "ChamberNo", required = true) - protected String chamberNo; - @XmlElement(name = "Legalformcode", required = true) - protected String legalformcode; - @XmlElement(name = "LegalformcodeText", required = true) - protected String legalformcodeText; - @XmlElement(name = "PreviousDossierNo", required = true) - protected String previousDossierNo; - @XmlElement(name = "PreviousSubDossierNo", required = true) - protected String previousSubDossierNo; - @XmlElement(name = "Tradename30", required = true) - protected String tradename30; - @XmlElement(name = "Tradename1x30", required = true) - protected String tradename1X30; - @XmlElement(name = "Tradename2x30", required = true) - protected String tradename2X30; - @XmlElement(name = "Tradename45", required = true) - protected String tradename45; - @XmlElement(name = "TradenameFull", required = true) - protected String tradenameFull; - @XmlElement(name = "EstablishmentAddress", required = true) - protected String establishmentAddress; - @XmlElement(name = "EstablishmentPostcodeCity", required = true) - protected String establishmentPostcodeCity; - @XmlElement(name = "EstablishmentStreetname", required = true) - protected String establishmentStreetname; - @XmlElement(name = "EstablishmentHouseNo") - protected int establishmentHouseNo; - @XmlElement(name = "EstablishmentHouseNoAddition", required = true) - protected String establishmentHouseNoAddition; - @XmlElement(name = "EstablishmentPostcode", required = true) - protected String establishmentPostcode; - @XmlElement(name = "CorrespondenceAddress", required = true) - protected String correspondenceAddress; - @XmlElement(name = "CorrespondencePostcodeCity", required = true) - protected String correspondencePostcodeCity; - @XmlElement(name = "CorrespondenceStreetname", required = true) - protected String correspondenceStreetname; - @XmlElement(name = "CorrespondenceHouseNo") - protected int correspondenceHouseNo; - @XmlElement(name = "CorrespondenceHouseNoAddition", required = true) - protected String correspondenceHouseNoAddition; - @XmlElement(name = "CorrespondencePostcode", required = true) - protected String correspondencePostcode; - @XmlElement(name = "TelephoneNo", required = true) - protected String telephoneNo; - @XmlElement(name = "Domainname", required = true) - protected String domainname; - @XmlElement(name = "PrimaryActivitycode", required = true) - protected String primaryActivitycode; - @XmlElement(name = "SecondaryActivitycode1", required = true) - protected String secondaryActivitycode1; - @XmlElement(name = "SecondaryActivitycode2", required = true) - protected String secondaryActivitycode2; - @XmlElement(name = "PrimaryActivitycodeText", required = true) - protected String primaryActivitycodeText; - @XmlElement(name = "SecondaryActivitycode1Text", required = true) - protected String secondaryActivitycode1Text; - @XmlElement(name = "SecondaryActivitycode2Text", required = true) - protected String secondaryActivitycode2Text; - @XmlElement(name = "PersonnelFulltime", required = true) - protected String personnelFulltime; - @XmlElement(name = "ClassPersonnelFulltime", required = true) - protected String classPersonnelFulltime; - @XmlElement(name = "IndicationOrganisationcode", required = true) - protected String indicationOrganisationcode; - @XmlElement(name = "IndicationEconomicallyActive", required = true) - protected String indicationEconomicallyActive; - @XmlElement(name = "IndicationNonMailing", required = true) - protected String indicationNonMailing; - @XmlElement(name = "IndicationBankruptcy", required = true) - protected String indicationBankruptcy; - @XmlElement(name = "IndicationDIP", required = true) - protected String indicationDIP; - - /** - * Gets the value of the registerLetter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegisterLetter() { - return registerLetter; - } - - /** - * Sets the value of the registerLetter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegisterLetter(String value) { - this.registerLetter = value; - } - - /** - * Gets the value of the dossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNo() { - return dossierNo; - } - - /** - * Sets the value of the dossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNo(String value) { - this.dossierNo = value; - } - - /** - * Gets the value of the subDossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubDossierNo() { - return subDossierNo; - } - - /** - * Sets the value of the subDossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubDossierNo(String value) { - this.subDossierNo = value; - } - - /** - * Gets the value of the chamberNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getChamberNo() { - return chamberNo; - } - - /** - * Sets the value of the chamberNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChamberNo(String value) { - this.chamberNo = value; - } - - /** - * Gets the value of the legalformcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalformcode() { - return legalformcode; - } - - /** - * Sets the value of the legalformcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalformcode(String value) { - this.legalformcode = value; - } - - /** - * Gets the value of the legalformcodeText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalformcodeText() { - return legalformcodeText; - } - - /** - * Sets the value of the legalformcodeText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalformcodeText(String value) { - this.legalformcodeText = value; - } - - /** - * Gets the value of the previousDossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPreviousDossierNo() { - return previousDossierNo; - } - - /** - * Sets the value of the previousDossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPreviousDossierNo(String value) { - this.previousDossierNo = value; - } - - /** - * Gets the value of the previousSubDossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPreviousSubDossierNo() { - return previousSubDossierNo; - } - - /** - * Sets the value of the previousSubDossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPreviousSubDossierNo(String value) { - this.previousSubDossierNo = value; - } - - /** - * Gets the value of the tradename30 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradename30() { - return tradename30; - } - - /** - * Sets the value of the tradename30 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradename30(String value) { - this.tradename30 = value; - } - - /** - * Gets the value of the tradename1X30 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradename1X30() { - return tradename1X30; - } - - /** - * Sets the value of the tradename1X30 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradename1X30(String value) { - this.tradename1X30 = value; - } - - /** - * Gets the value of the tradename2X30 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradename2X30() { - return tradename2X30; - } - - /** - * Sets the value of the tradename2X30 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradename2X30(String value) { - this.tradename2X30 = value; - } - - /** - * Gets the value of the tradename45 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradename45() { - return tradename45; - } - - /** - * Sets the value of the tradename45 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradename45(String value) { - this.tradename45 = value; - } - - /** - * Gets the value of the tradenameFull property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradenameFull() { - return tradenameFull; - } - - /** - * Sets the value of the tradenameFull property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradenameFull(String value) { - this.tradenameFull = value; - } - - /** - * Gets the value of the establishmentAddress property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentAddress() { - return establishmentAddress; - } - - /** - * Sets the value of the establishmentAddress property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentAddress(String value) { - this.establishmentAddress = value; - } - - /** - * Gets the value of the establishmentPostcodeCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentPostcodeCity() { - return establishmentPostcodeCity; - } - - /** - * Sets the value of the establishmentPostcodeCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentPostcodeCity(String value) { - this.establishmentPostcodeCity = value; - } - - /** - * Gets the value of the establishmentStreetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentStreetname() { - return establishmentStreetname; - } - - /** - * Sets the value of the establishmentStreetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentStreetname(String value) { - this.establishmentStreetname = value; - } - - /** - * Gets the value of the establishmentHouseNo property. - * - */ - public int getEstablishmentHouseNo() { - return establishmentHouseNo; - } - - /** - * Sets the value of the establishmentHouseNo property. - * - */ - public void setEstablishmentHouseNo(int value) { - this.establishmentHouseNo = value; - } - - /** - * Gets the value of the establishmentHouseNoAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentHouseNoAddition() { - return establishmentHouseNoAddition; - } - - /** - * Sets the value of the establishmentHouseNoAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentHouseNoAddition(String value) { - this.establishmentHouseNoAddition = value; - } - - /** - * Gets the value of the establishmentPostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentPostcode() { - return establishmentPostcode; - } - - /** - * Sets the value of the establishmentPostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentPostcode(String value) { - this.establishmentPostcode = value; - } - - /** - * Gets the value of the correspondenceAddress property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceAddress() { - return correspondenceAddress; - } - - /** - * Sets the value of the correspondenceAddress property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceAddress(String value) { - this.correspondenceAddress = value; - } - - /** - * Gets the value of the correspondencePostcodeCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondencePostcodeCity() { - return correspondencePostcodeCity; - } - - /** - * Sets the value of the correspondencePostcodeCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondencePostcodeCity(String value) { - this.correspondencePostcodeCity = value; - } - - /** - * Gets the value of the correspondenceStreetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceStreetname() { - return correspondenceStreetname; - } - - /** - * Sets the value of the correspondenceStreetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceStreetname(String value) { - this.correspondenceStreetname = value; - } - - /** - * Gets the value of the correspondenceHouseNo property. - * - */ - public int getCorrespondenceHouseNo() { - return correspondenceHouseNo; - } - - /** - * Sets the value of the correspondenceHouseNo property. - * - */ - public void setCorrespondenceHouseNo(int value) { - this.correspondenceHouseNo = value; - } - - /** - * Gets the value of the correspondenceHouseNoAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceHouseNoAddition() { - return correspondenceHouseNoAddition; - } - - /** - * Sets the value of the correspondenceHouseNoAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceHouseNoAddition(String value) { - this.correspondenceHouseNoAddition = value; - } - - /** - * Gets the value of the correspondencePostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondencePostcode() { - return correspondencePostcode; - } - - /** - * Sets the value of the correspondencePostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondencePostcode(String value) { - this.correspondencePostcode = value; - } - - /** - * Gets the value of the telephoneNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNo() { - return telephoneNo; - } - - /** - * Sets the value of the telephoneNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNo(String value) { - this.telephoneNo = value; - } - - /** - * Gets the value of the domainname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomainname() { - return domainname; - } - - /** - * Sets the value of the domainname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomainname(String value) { - this.domainname = value; - } - - /** - * Gets the value of the primaryActivitycode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimaryActivitycode() { - return primaryActivitycode; - } - - /** - * Sets the value of the primaryActivitycode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimaryActivitycode(String value) { - this.primaryActivitycode = value; - } - - /** - * Gets the value of the secondaryActivitycode1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondaryActivitycode1() { - return secondaryActivitycode1; - } - - /** - * Sets the value of the secondaryActivitycode1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondaryActivitycode1(String value) { - this.secondaryActivitycode1 = value; - } - - /** - * Gets the value of the secondaryActivitycode2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondaryActivitycode2() { - return secondaryActivitycode2; - } - - /** - * Sets the value of the secondaryActivitycode2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondaryActivitycode2(String value) { - this.secondaryActivitycode2 = value; - } - - /** - * Gets the value of the primaryActivitycodeText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimaryActivitycodeText() { - return primaryActivitycodeText; - } - - /** - * Sets the value of the primaryActivitycodeText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimaryActivitycodeText(String value) { - this.primaryActivitycodeText = value; - } - - /** - * Gets the value of the secondaryActivitycode1Text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondaryActivitycode1Text() { - return secondaryActivitycode1Text; - } - - /** - * Sets the value of the secondaryActivitycode1Text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondaryActivitycode1Text(String value) { - this.secondaryActivitycode1Text = value; - } - - /** - * Gets the value of the secondaryActivitycode2Text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondaryActivitycode2Text() { - return secondaryActivitycode2Text; - } - - /** - * Sets the value of the secondaryActivitycode2Text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondaryActivitycode2Text(String value) { - this.secondaryActivitycode2Text = value; - } - - /** - * Gets the value of the personnelFulltime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPersonnelFulltime() { - return personnelFulltime; - } - - /** - * Sets the value of the personnelFulltime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPersonnelFulltime(String value) { - this.personnelFulltime = value; - } - - /** - * Gets the value of the classPersonnelFulltime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClassPersonnelFulltime() { - return classPersonnelFulltime; - } - - /** - * Sets the value of the classPersonnelFulltime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClassPersonnelFulltime(String value) { - this.classPersonnelFulltime = value; - } - - /** - * Gets the value of the indicationOrganisationcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndicationOrganisationcode() { - return indicationOrganisationcode; - } - - /** - * Sets the value of the indicationOrganisationcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndicationOrganisationcode(String value) { - this.indicationOrganisationcode = value; - } - - /** - * Gets the value of the indicationEconomicallyActive property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndicationEconomicallyActive() { - return indicationEconomicallyActive; - } - - /** - * Sets the value of the indicationEconomicallyActive property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndicationEconomicallyActive(String value) { - this.indicationEconomicallyActive = value; - } - - /** - * Gets the value of the indicationNonMailing property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndicationNonMailing() { - return indicationNonMailing; - } - - /** - * Sets the value of the indicationNonMailing property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndicationNonMailing(String value) { - this.indicationNonMailing = value; - } - - /** - * Gets the value of the indicationBankruptcy property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndicationBankruptcy() { - return indicationBankruptcy; - } - - /** - * Sets the value of the indicationBankruptcy property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndicationBankruptcy(String value) { - this.indicationBankruptcy = value; - } - - /** - * Gets the value of the indicationDIP property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndicationDIP() { - return indicationDIP; - } - - /** - * Sets the value of the indicationDIP property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndicationDIP(String value) { - this.indicationDIP = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierArray.java deleted file mode 100644 index c482956..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessDossierArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessDossierArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessDossier" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessDossierArray", propOrder = { - "item" -}) -public class BusinessDossierArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BusinessDossier } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierExtended.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierExtended.java deleted file mode 100644 index 8a3771a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierExtended.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessDossierExtended complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessDossierExtended">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="BasicDossierPart" type="{http://www.webservices.nl/soap/}BusinessDossierV3"/>
- *         <element name="ExtendedDossierPart" type="{http://www.webservices.nl/soap/}BusinessDossierExtendedPart"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessDossierExtended", propOrder = { - -}) -public class BusinessDossierExtended { - - @XmlElement(name = "BasicDossierPart", required = true) - protected BusinessDossierV3 basicDossierPart; - @XmlElement(name = "ExtendedDossierPart", required = true) - protected BusinessDossierExtendedPart extendedDossierPart; - - /** - * Gets the value of the basicDossierPart property. - * - * @return - * possible object is - * {@link BusinessDossierV3 } - * - */ - public BusinessDossierV3 getBasicDossierPart() { - return basicDossierPart; - } - - /** - * Sets the value of the basicDossierPart property. - * - * @param value - * allowed object is - * {@link BusinessDossierV3 } - * - */ - public void setBasicDossierPart(BusinessDossierV3 value) { - this.basicDossierPart = value; - } - - /** - * Gets the value of the extendedDossierPart property. - * - * @return - * possible object is - * {@link BusinessDossierExtendedPart } - * - */ - public BusinessDossierExtendedPart getExtendedDossierPart() { - return extendedDossierPart; - } - - /** - * Sets the value of the extendedDossierPart property. - * - * @param value - * allowed object is - * {@link BusinessDossierExtendedPart } - * - */ - public void setExtendedDossierPart(BusinessDossierExtendedPart value) { - this.extendedDossierPart = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierExtendedPart.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierExtendedPart.java deleted file mode 100644 index 8d101aa..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierExtendedPart.java +++ /dev/null @@ -1,609 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessDossierExtendedPart complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessDossierExtendedPart">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="MainBranchIndication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="MainBranchDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="MainBranchSubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ImportIndication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="ExportIndication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="LegalName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ContactTitle1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ContactTitle2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ContactInitials" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ContactPrefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ContactSurname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ContactGender" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="AuthorizedShareCapital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="AuthorizedShareCapitalCurrency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="PaidUpShareCapital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="PaidUpShareCapitalCurrency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="IssuedShareCapital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="IssuedShareCapitalCurrency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="FoundingDate" type="{http://www.webservices.nl/soap/}BusinessDate" minOccurs="0"/>
- *         <element name="ContinuationDate" type="{http://www.webservices.nl/soap/}BusinessDate" minOccurs="0"/>
- *         <element name="EstablishmentDate" type="{http://www.webservices.nl/soap/}BusinessDate" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessDossierExtendedPart", propOrder = { - -}) -public class BusinessDossierExtendedPart { - - @XmlElement(name = "MainBranchIndication") - protected Boolean mainBranchIndication; - @XmlElement(name = "MainBranchDossierNo", required = true) - protected String mainBranchDossierNo; - @XmlElement(name = "MainBranchSubDossierNo", required = true) - protected String mainBranchSubDossierNo; - @XmlElement(name = "ImportIndication") - protected Boolean importIndication; - @XmlElement(name = "ExportIndication") - protected Boolean exportIndication; - @XmlElement(name = "LegalName", required = true) - protected String legalName; - @XmlElement(name = "ContactTitle1", required = true) - protected String contactTitle1; - @XmlElement(name = "ContactTitle2", required = true) - protected String contactTitle2; - @XmlElement(name = "ContactInitials", required = true) - protected String contactInitials; - @XmlElement(name = "ContactPrefix", required = true) - protected String contactPrefix; - @XmlElement(name = "ContactSurname", required = true) - protected String contactSurname; - @XmlElement(name = "ContactGender", required = true) - protected String contactGender; - @XmlElement(name = "AuthorizedShareCapital") - protected Long authorizedShareCapital; - @XmlElement(name = "AuthorizedShareCapitalCurrency") - protected String authorizedShareCapitalCurrency; - @XmlElement(name = "PaidUpShareCapital") - protected Long paidUpShareCapital; - @XmlElement(name = "PaidUpShareCapitalCurrency") - protected String paidUpShareCapitalCurrency; - @XmlElement(name = "IssuedShareCapital") - protected Long issuedShareCapital; - @XmlElement(name = "IssuedShareCapitalCurrency") - protected String issuedShareCapitalCurrency; - @XmlElement(name = "FoundingDate") - protected BusinessDate foundingDate; - @XmlElement(name = "ContinuationDate") - protected BusinessDate continuationDate; - @XmlElement(name = "EstablishmentDate") - protected BusinessDate establishmentDate; - - /** - * Gets the value of the mainBranchIndication property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isMainBranchIndication() { - return mainBranchIndication; - } - - /** - * Sets the value of the mainBranchIndication property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setMainBranchIndication(Boolean value) { - this.mainBranchIndication = value; - } - - /** - * Gets the value of the mainBranchDossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMainBranchDossierNo() { - return mainBranchDossierNo; - } - - /** - * Sets the value of the mainBranchDossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMainBranchDossierNo(String value) { - this.mainBranchDossierNo = value; - } - - /** - * Gets the value of the mainBranchSubDossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMainBranchSubDossierNo() { - return mainBranchSubDossierNo; - } - - /** - * Sets the value of the mainBranchSubDossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMainBranchSubDossierNo(String value) { - this.mainBranchSubDossierNo = value; - } - - /** - * Gets the value of the importIndication property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isImportIndication() { - return importIndication; - } - - /** - * Sets the value of the importIndication property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setImportIndication(Boolean value) { - this.importIndication = value; - } - - /** - * Gets the value of the exportIndication property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isExportIndication() { - return exportIndication; - } - - /** - * Sets the value of the exportIndication property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setExportIndication(Boolean value) { - this.exportIndication = value; - } - - /** - * Gets the value of the legalName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalName() { - return legalName; - } - - /** - * Sets the value of the legalName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalName(String value) { - this.legalName = value; - } - - /** - * Gets the value of the contactTitle1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactTitle1() { - return contactTitle1; - } - - /** - * Sets the value of the contactTitle1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactTitle1(String value) { - this.contactTitle1 = value; - } - - /** - * Gets the value of the contactTitle2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactTitle2() { - return contactTitle2; - } - - /** - * Sets the value of the contactTitle2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactTitle2(String value) { - this.contactTitle2 = value; - } - - /** - * Gets the value of the contactInitials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactInitials() { - return contactInitials; - } - - /** - * Sets the value of the contactInitials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactInitials(String value) { - this.contactInitials = value; - } - - /** - * Gets the value of the contactPrefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactPrefix() { - return contactPrefix; - } - - /** - * Sets the value of the contactPrefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactPrefix(String value) { - this.contactPrefix = value; - } - - /** - * Gets the value of the contactSurname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactSurname() { - return contactSurname; - } - - /** - * Sets the value of the contactSurname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactSurname(String value) { - this.contactSurname = value; - } - - /** - * Gets the value of the contactGender property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactGender() { - return contactGender; - } - - /** - * Sets the value of the contactGender property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactGender(String value) { - this.contactGender = value; - } - - /** - * Gets the value of the authorizedShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getAuthorizedShareCapital() { - return authorizedShareCapital; - } - - /** - * Sets the value of the authorizedShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setAuthorizedShareCapital(Long value) { - this.authorizedShareCapital = value; - } - - /** - * Gets the value of the authorizedShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAuthorizedShareCapitalCurrency() { - return authorizedShareCapitalCurrency; - } - - /** - * Sets the value of the authorizedShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAuthorizedShareCapitalCurrency(String value) { - this.authorizedShareCapitalCurrency = value; - } - - /** - * Gets the value of the paidUpShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getPaidUpShareCapital() { - return paidUpShareCapital; - } - - /** - * Sets the value of the paidUpShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setPaidUpShareCapital(Long value) { - this.paidUpShareCapital = value; - } - - /** - * Gets the value of the paidUpShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPaidUpShareCapitalCurrency() { - return paidUpShareCapitalCurrency; - } - - /** - * Sets the value of the paidUpShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPaidUpShareCapitalCurrency(String value) { - this.paidUpShareCapitalCurrency = value; - } - - /** - * Gets the value of the issuedShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getIssuedShareCapital() { - return issuedShareCapital; - } - - /** - * Sets the value of the issuedShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setIssuedShareCapital(Long value) { - this.issuedShareCapital = value; - } - - /** - * Gets the value of the issuedShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIssuedShareCapitalCurrency() { - return issuedShareCapitalCurrency; - } - - /** - * Sets the value of the issuedShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIssuedShareCapitalCurrency(String value) { - this.issuedShareCapitalCurrency = value; - } - - /** - * Gets the value of the foundingDate property. - * - * @return - * possible object is - * {@link BusinessDate } - * - */ - public BusinessDate getFoundingDate() { - return foundingDate; - } - - /** - * Sets the value of the foundingDate property. - * - * @param value - * allowed object is - * {@link BusinessDate } - * - */ - public void setFoundingDate(BusinessDate value) { - this.foundingDate = value; - } - - /** - * Gets the value of the continuationDate property. - * - * @return - * possible object is - * {@link BusinessDate } - * - */ - public BusinessDate getContinuationDate() { - return continuationDate; - } - - /** - * Sets the value of the continuationDate property. - * - * @param value - * allowed object is - * {@link BusinessDate } - * - */ - public void setContinuationDate(BusinessDate value) { - this.continuationDate = value; - } - - /** - * Gets the value of the establishmentDate property. - * - * @return - * possible object is - * {@link BusinessDate } - * - */ - public BusinessDate getEstablishmentDate() { - return establishmentDate; - } - - /** - * Sets the value of the establishmentDate property. - * - * @param value - * allowed object is - * {@link BusinessDate } - * - */ - public void setEstablishmentDate(BusinessDate value) { - this.establishmentDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierPagedResult.java deleted file mode 100644 index 60d3bc8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierPagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessDossierPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessDossierPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}BusinessDossierArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessDossierPagedResult", propOrder = { - -}) -public class BusinessDossierPagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected BusinessDossierArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link BusinessDossierArray } - * - */ - public BusinessDossierArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link BusinessDossierArray } - * - */ - public void setResults(BusinessDossierArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierSBI.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierSBI.java deleted file mode 100644 index e304366..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierSBI.java +++ /dev/null @@ -1,204 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessDossierSBI complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessDossierSBI">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="PrimarySBICode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SecondarySBICode1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SecondarySBICode2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PrimarySBICodeText" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SecondarySBICode1Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SecondarySBICode2Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessDossierSBI", propOrder = { - -}) -public class BusinessDossierSBI { - - @XmlElement(name = "PrimarySBICode", required = true) - protected String primarySBICode; - @XmlElement(name = "SecondarySBICode1", required = true) - protected String secondarySBICode1; - @XmlElement(name = "SecondarySBICode2", required = true) - protected String secondarySBICode2; - @XmlElement(name = "PrimarySBICodeText", required = true) - protected String primarySBICodeText; - @XmlElement(name = "SecondarySBICode1Text", required = true) - protected String secondarySBICode1Text; - @XmlElement(name = "SecondarySBICode2Text", required = true) - protected String secondarySBICode2Text; - - /** - * Gets the value of the primarySBICode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimarySBICode() { - return primarySBICode; - } - - /** - * Sets the value of the primarySBICode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimarySBICode(String value) { - this.primarySBICode = value; - } - - /** - * Gets the value of the secondarySBICode1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySBICode1() { - return secondarySBICode1; - } - - /** - * Sets the value of the secondarySBICode1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySBICode1(String value) { - this.secondarySBICode1 = value; - } - - /** - * Gets the value of the secondarySBICode2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySBICode2() { - return secondarySBICode2; - } - - /** - * Sets the value of the secondarySBICode2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySBICode2(String value) { - this.secondarySBICode2 = value; - } - - /** - * Gets the value of the primarySBICodeText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimarySBICodeText() { - return primarySBICodeText; - } - - /** - * Sets the value of the primarySBICodeText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimarySBICodeText(String value) { - this.primarySBICodeText = value; - } - - /** - * Gets the value of the secondarySBICode1Text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySBICode1Text() { - return secondarySBICode1Text; - } - - /** - * Sets the value of the secondarySBICode1Text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySBICode1Text(String value) { - this.secondarySBICode1Text = value; - } - - /** - * Gets the value of the secondarySBICode2Text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySBICode2Text() { - return secondarySBICode2Text; - } - - /** - * Sets the value of the secondarySBICode2Text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySBICode2Text(String value) { - this.secondarySBICode2Text = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2.java deleted file mode 100644 index 6d317ee..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2.java +++ /dev/null @@ -1,1004 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessDossierV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessDossierV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="RegisterLetter" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="DossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ChamberNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Legalformcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="LegalformcodeText" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PreviousDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PreviousSubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Tradename30" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Tradename1x30" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Tradename2x30" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Tradename45" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="TradenameFull" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentPostcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentHouseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="EstablishmentHouseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondencePostcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondenceCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondenceStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondenceHouseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="CorrespondenceHouseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="TelephoneNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Domainname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PrimaryActivitycode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SecondaryActivitycode1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SecondaryActivitycode2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PrimaryActivitycodeText" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SecondaryActivitycode1Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SecondaryActivitycode2Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PersonnelFulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="ClassPersonnelFulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="IndicationOrganisationcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="IndicationEconomicallyActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="IndicationNonMailing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="IndicationBankruptcy" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="IndicationDIP" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessDossierV2", propOrder = { - -}) -public class BusinessDossierV2 { - - @XmlElement(name = "RegisterLetter", required = true) - protected String registerLetter; - @XmlElement(name = "DossierNo", required = true) - protected String dossierNo; - @XmlElement(name = "SubDossierNo", required = true) - protected String subDossierNo; - @XmlElement(name = "ChamberNo", required = true) - protected String chamberNo; - @XmlElement(name = "Legalformcode", required = true) - protected String legalformcode; - @XmlElement(name = "LegalformcodeText", required = true) - protected String legalformcodeText; - @XmlElement(name = "PreviousDossierNo", required = true) - protected String previousDossierNo; - @XmlElement(name = "PreviousSubDossierNo", required = true) - protected String previousSubDossierNo; - @XmlElement(name = "Tradename30", required = true) - protected String tradename30; - @XmlElement(name = "Tradename1x30", required = true) - protected String tradename1X30; - @XmlElement(name = "Tradename2x30", required = true) - protected String tradename2X30; - @XmlElement(name = "Tradename45", required = true) - protected String tradename45; - @XmlElement(name = "TradenameFull", required = true) - protected String tradenameFull; - @XmlElement(name = "EstablishmentPostcode", required = true) - protected String establishmentPostcode; - @XmlElement(name = "EstablishmentCity", required = true) - protected String establishmentCity; - @XmlElement(name = "EstablishmentStreetname", required = true) - protected String establishmentStreetname; - @XmlElement(name = "EstablishmentHouseNo") - protected int establishmentHouseNo; - @XmlElement(name = "EstablishmentHouseNoAddition", required = true) - protected String establishmentHouseNoAddition; - @XmlElement(name = "CorrespondencePostcode", required = true) - protected String correspondencePostcode; - @XmlElement(name = "CorrespondenceCity", required = true) - protected String correspondenceCity; - @XmlElement(name = "CorrespondenceStreetname", required = true) - protected String correspondenceStreetname; - @XmlElement(name = "CorrespondenceHouseNo") - protected int correspondenceHouseNo; - @XmlElement(name = "CorrespondenceHouseNoAddition", required = true) - protected String correspondenceHouseNoAddition; - @XmlElement(name = "TelephoneNo", required = true) - protected String telephoneNo; - @XmlElement(name = "Domainname", required = true) - protected String domainname; - @XmlElement(name = "PrimaryActivitycode", required = true) - protected String primaryActivitycode; - @XmlElement(name = "SecondaryActivitycode1", required = true) - protected String secondaryActivitycode1; - @XmlElement(name = "SecondaryActivitycode2", required = true) - protected String secondaryActivitycode2; - @XmlElement(name = "PrimaryActivitycodeText", required = true) - protected String primaryActivitycodeText; - @XmlElement(name = "SecondaryActivitycode1Text", required = true) - protected String secondaryActivitycode1Text; - @XmlElement(name = "SecondaryActivitycode2Text", required = true) - protected String secondaryActivitycode2Text; - @XmlElement(name = "PersonnelFulltime") - protected int personnelFulltime; - @XmlElement(name = "ClassPersonnelFulltime") - protected int classPersonnelFulltime; - @XmlElement(name = "IndicationOrganisationcode", required = true) - protected String indicationOrganisationcode; - @XmlElement(name = "IndicationEconomicallyActive") - protected boolean indicationEconomicallyActive; - @XmlElement(name = "IndicationNonMailing") - protected boolean indicationNonMailing; - @XmlElement(name = "IndicationBankruptcy") - protected boolean indicationBankruptcy; - @XmlElement(name = "IndicationDIP") - protected boolean indicationDIP; - - /** - * Gets the value of the registerLetter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegisterLetter() { - return registerLetter; - } - - /** - * Sets the value of the registerLetter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegisterLetter(String value) { - this.registerLetter = value; - } - - /** - * Gets the value of the dossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNo() { - return dossierNo; - } - - /** - * Sets the value of the dossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNo(String value) { - this.dossierNo = value; - } - - /** - * Gets the value of the subDossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubDossierNo() { - return subDossierNo; - } - - /** - * Sets the value of the subDossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubDossierNo(String value) { - this.subDossierNo = value; - } - - /** - * Gets the value of the chamberNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getChamberNo() { - return chamberNo; - } - - /** - * Sets the value of the chamberNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChamberNo(String value) { - this.chamberNo = value; - } - - /** - * Gets the value of the legalformcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalformcode() { - return legalformcode; - } - - /** - * Sets the value of the legalformcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalformcode(String value) { - this.legalformcode = value; - } - - /** - * Gets the value of the legalformcodeText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalformcodeText() { - return legalformcodeText; - } - - /** - * Sets the value of the legalformcodeText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalformcodeText(String value) { - this.legalformcodeText = value; - } - - /** - * Gets the value of the previousDossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPreviousDossierNo() { - return previousDossierNo; - } - - /** - * Sets the value of the previousDossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPreviousDossierNo(String value) { - this.previousDossierNo = value; - } - - /** - * Gets the value of the previousSubDossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPreviousSubDossierNo() { - return previousSubDossierNo; - } - - /** - * Sets the value of the previousSubDossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPreviousSubDossierNo(String value) { - this.previousSubDossierNo = value; - } - - /** - * Gets the value of the tradename30 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradename30() { - return tradename30; - } - - /** - * Sets the value of the tradename30 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradename30(String value) { - this.tradename30 = value; - } - - /** - * Gets the value of the tradename1X30 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradename1X30() { - return tradename1X30; - } - - /** - * Sets the value of the tradename1X30 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradename1X30(String value) { - this.tradename1X30 = value; - } - - /** - * Gets the value of the tradename2X30 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradename2X30() { - return tradename2X30; - } - - /** - * Sets the value of the tradename2X30 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradename2X30(String value) { - this.tradename2X30 = value; - } - - /** - * Gets the value of the tradename45 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradename45() { - return tradename45; - } - - /** - * Sets the value of the tradename45 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradename45(String value) { - this.tradename45 = value; - } - - /** - * Gets the value of the tradenameFull property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradenameFull() { - return tradenameFull; - } - - /** - * Sets the value of the tradenameFull property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradenameFull(String value) { - this.tradenameFull = value; - } - - /** - * Gets the value of the establishmentPostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentPostcode() { - return establishmentPostcode; - } - - /** - * Sets the value of the establishmentPostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentPostcode(String value) { - this.establishmentPostcode = value; - } - - /** - * Gets the value of the establishmentCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCity() { - return establishmentCity; - } - - /** - * Sets the value of the establishmentCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCity(String value) { - this.establishmentCity = value; - } - - /** - * Gets the value of the establishmentStreetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentStreetname() { - return establishmentStreetname; - } - - /** - * Sets the value of the establishmentStreetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentStreetname(String value) { - this.establishmentStreetname = value; - } - - /** - * Gets the value of the establishmentHouseNo property. - * - */ - public int getEstablishmentHouseNo() { - return establishmentHouseNo; - } - - /** - * Sets the value of the establishmentHouseNo property. - * - */ - public void setEstablishmentHouseNo(int value) { - this.establishmentHouseNo = value; - } - - /** - * Gets the value of the establishmentHouseNoAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentHouseNoAddition() { - return establishmentHouseNoAddition; - } - - /** - * Sets the value of the establishmentHouseNoAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentHouseNoAddition(String value) { - this.establishmentHouseNoAddition = value; - } - - /** - * Gets the value of the correspondencePostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondencePostcode() { - return correspondencePostcode; - } - - /** - * Sets the value of the correspondencePostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondencePostcode(String value) { - this.correspondencePostcode = value; - } - - /** - * Gets the value of the correspondenceCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCity() { - return correspondenceCity; - } - - /** - * Sets the value of the correspondenceCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCity(String value) { - this.correspondenceCity = value; - } - - /** - * Gets the value of the correspondenceStreetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceStreetname() { - return correspondenceStreetname; - } - - /** - * Sets the value of the correspondenceStreetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceStreetname(String value) { - this.correspondenceStreetname = value; - } - - /** - * Gets the value of the correspondenceHouseNo property. - * - */ - public int getCorrespondenceHouseNo() { - return correspondenceHouseNo; - } - - /** - * Sets the value of the correspondenceHouseNo property. - * - */ - public void setCorrespondenceHouseNo(int value) { - this.correspondenceHouseNo = value; - } - - /** - * Gets the value of the correspondenceHouseNoAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceHouseNoAddition() { - return correspondenceHouseNoAddition; - } - - /** - * Sets the value of the correspondenceHouseNoAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceHouseNoAddition(String value) { - this.correspondenceHouseNoAddition = value; - } - - /** - * Gets the value of the telephoneNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNo() { - return telephoneNo; - } - - /** - * Sets the value of the telephoneNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNo(String value) { - this.telephoneNo = value; - } - - /** - * Gets the value of the domainname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomainname() { - return domainname; - } - - /** - * Sets the value of the domainname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomainname(String value) { - this.domainname = value; - } - - /** - * Gets the value of the primaryActivitycode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimaryActivitycode() { - return primaryActivitycode; - } - - /** - * Sets the value of the primaryActivitycode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimaryActivitycode(String value) { - this.primaryActivitycode = value; - } - - /** - * Gets the value of the secondaryActivitycode1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondaryActivitycode1() { - return secondaryActivitycode1; - } - - /** - * Sets the value of the secondaryActivitycode1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondaryActivitycode1(String value) { - this.secondaryActivitycode1 = value; - } - - /** - * Gets the value of the secondaryActivitycode2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondaryActivitycode2() { - return secondaryActivitycode2; - } - - /** - * Sets the value of the secondaryActivitycode2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondaryActivitycode2(String value) { - this.secondaryActivitycode2 = value; - } - - /** - * Gets the value of the primaryActivitycodeText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimaryActivitycodeText() { - return primaryActivitycodeText; - } - - /** - * Sets the value of the primaryActivitycodeText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimaryActivitycodeText(String value) { - this.primaryActivitycodeText = value; - } - - /** - * Gets the value of the secondaryActivitycode1Text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondaryActivitycode1Text() { - return secondaryActivitycode1Text; - } - - /** - * Sets the value of the secondaryActivitycode1Text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondaryActivitycode1Text(String value) { - this.secondaryActivitycode1Text = value; - } - - /** - * Gets the value of the secondaryActivitycode2Text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondaryActivitycode2Text() { - return secondaryActivitycode2Text; - } - - /** - * Sets the value of the secondaryActivitycode2Text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondaryActivitycode2Text(String value) { - this.secondaryActivitycode2Text = value; - } - - /** - * Gets the value of the personnelFulltime property. - * - */ - public int getPersonnelFulltime() { - return personnelFulltime; - } - - /** - * Sets the value of the personnelFulltime property. - * - */ - public void setPersonnelFulltime(int value) { - this.personnelFulltime = value; - } - - /** - * Gets the value of the classPersonnelFulltime property. - * - */ - public int getClassPersonnelFulltime() { - return classPersonnelFulltime; - } - - /** - * Sets the value of the classPersonnelFulltime property. - * - */ - public void setClassPersonnelFulltime(int value) { - this.classPersonnelFulltime = value; - } - - /** - * Gets the value of the indicationOrganisationcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndicationOrganisationcode() { - return indicationOrganisationcode; - } - - /** - * Sets the value of the indicationOrganisationcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndicationOrganisationcode(String value) { - this.indicationOrganisationcode = value; - } - - /** - * Gets the value of the indicationEconomicallyActive property. - * - */ - public boolean isIndicationEconomicallyActive() { - return indicationEconomicallyActive; - } - - /** - * Sets the value of the indicationEconomicallyActive property. - * - */ - public void setIndicationEconomicallyActive(boolean value) { - this.indicationEconomicallyActive = value; - } - - /** - * Gets the value of the indicationNonMailing property. - * - */ - public boolean isIndicationNonMailing() { - return indicationNonMailing; - } - - /** - * Sets the value of the indicationNonMailing property. - * - */ - public void setIndicationNonMailing(boolean value) { - this.indicationNonMailing = value; - } - - /** - * Gets the value of the indicationBankruptcy property. - * - */ - public boolean isIndicationBankruptcy() { - return indicationBankruptcy; - } - - /** - * Sets the value of the indicationBankruptcy property. - * - */ - public void setIndicationBankruptcy(boolean value) { - this.indicationBankruptcy = value; - } - - /** - * Gets the value of the indicationDIP property. - * - */ - public boolean isIndicationDIP() { - return indicationDIP; - } - - /** - * Sets the value of the indicationDIP property. - * - */ - public void setIndicationDIP(boolean value) { - this.indicationDIP = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2Array.java deleted file mode 100644 index f62eb80..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessDossierV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessDossierV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessDossierV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessDossierV2Array", propOrder = { - "item" -}) -public class BusinessDossierV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BusinessDossierV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2PagedResult.java deleted file mode 100644 index 440ae15..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV2PagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessDossierV2PagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessDossierV2PagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}BusinessDossierV2Array"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessDossierV2PagedResult", propOrder = { - -}) -public class BusinessDossierV2PagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected BusinessDossierV2Array results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link BusinessDossierV2Array } - * - */ - public BusinessDossierV2Array getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link BusinessDossierV2Array } - * - */ - public void setResults(BusinessDossierV2Array value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3.java deleted file mode 100644 index 290017b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3.java +++ /dev/null @@ -1,923 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessDossierV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessDossierV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="RegisterLetter" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="DossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ChamberNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Legalformcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="LegalformcodeText" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PreviousDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PreviousSubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Tradename45" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="TradenameFull" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentPostcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentHouseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="EstablishmentHouseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondencePostcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondenceCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondenceStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondenceHouseNo" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="CorrespondenceHouseNoAddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="TelephoneNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Domainname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PrimarySBICode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SecondarySBICode1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SecondarySBICode2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="PrimarySBICodeText" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SecondarySBICode1Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SecondarySBICode2Text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="ClassPersonnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="IndicationOrganisationcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="IndicationEconomicallyActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="IndicationNonMailing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="IndicationBankruptcy" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="IndicationDIP" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessDossierV3", propOrder = { - -}) -public class BusinessDossierV3 { - - @XmlElement(name = "RegisterLetter", required = true) - protected String registerLetter; - @XmlElement(name = "DossierNo", required = true) - protected String dossierNo; - @XmlElement(name = "SubDossierNo", required = true) - protected String subDossierNo; - @XmlElement(name = "ChamberNo", required = true) - protected String chamberNo; - @XmlElement(name = "Legalformcode", required = true) - protected String legalformcode; - @XmlElement(name = "LegalformcodeText", required = true) - protected String legalformcodeText; - @XmlElement(name = "PreviousDossierNo", required = true) - protected String previousDossierNo; - @XmlElement(name = "PreviousSubDossierNo", required = true) - protected String previousSubDossierNo; - @XmlElement(name = "Tradename45", required = true) - protected String tradename45; - @XmlElement(name = "TradenameFull", required = true) - protected String tradenameFull; - @XmlElement(name = "EstablishmentPostcode", required = true) - protected String establishmentPostcode; - @XmlElement(name = "EstablishmentCity", required = true) - protected String establishmentCity; - @XmlElement(name = "EstablishmentStreetname", required = true) - protected String establishmentStreetname; - @XmlElement(name = "EstablishmentHouseNo") - protected int establishmentHouseNo; - @XmlElement(name = "EstablishmentHouseNoAddition", required = true) - protected String establishmentHouseNoAddition; - @XmlElement(name = "CorrespondencePostcode", required = true) - protected String correspondencePostcode; - @XmlElement(name = "CorrespondenceCity", required = true) - protected String correspondenceCity; - @XmlElement(name = "CorrespondenceStreetname", required = true) - protected String correspondenceStreetname; - @XmlElement(name = "CorrespondenceHouseNo") - protected int correspondenceHouseNo; - @XmlElement(name = "CorrespondenceHouseNoAddition", required = true) - protected String correspondenceHouseNoAddition; - @XmlElement(name = "TelephoneNo", required = true) - protected String telephoneNo; - @XmlElement(name = "Domainname", required = true) - protected String domainname; - @XmlElement(name = "PrimarySBICode", required = true) - protected String primarySBICode; - @XmlElement(name = "SecondarySBICode1", required = true) - protected String secondarySBICode1; - @XmlElement(name = "SecondarySBICode2", required = true) - protected String secondarySBICode2; - @XmlElement(name = "PrimarySBICodeText", required = true) - protected String primarySBICodeText; - @XmlElement(name = "SecondarySBICode1Text", required = true) - protected String secondarySBICode1Text; - @XmlElement(name = "SecondarySBICode2Text", required = true) - protected String secondarySBICode2Text; - @XmlElement(name = "Personnel") - protected int personnel; - @XmlElement(name = "ClassPersonnel") - protected int classPersonnel; - @XmlElement(name = "IndicationOrganisationcode", required = true) - protected String indicationOrganisationcode; - @XmlElement(name = "IndicationEconomicallyActive") - protected boolean indicationEconomicallyActive; - @XmlElement(name = "IndicationNonMailing") - protected boolean indicationNonMailing; - @XmlElement(name = "IndicationBankruptcy") - protected boolean indicationBankruptcy; - @XmlElement(name = "IndicationDIP") - protected boolean indicationDIP; - - /** - * Gets the value of the registerLetter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegisterLetter() { - return registerLetter; - } - - /** - * Sets the value of the registerLetter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegisterLetter(String value) { - this.registerLetter = value; - } - - /** - * Gets the value of the dossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNo() { - return dossierNo; - } - - /** - * Sets the value of the dossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNo(String value) { - this.dossierNo = value; - } - - /** - * Gets the value of the subDossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubDossierNo() { - return subDossierNo; - } - - /** - * Sets the value of the subDossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubDossierNo(String value) { - this.subDossierNo = value; - } - - /** - * Gets the value of the chamberNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getChamberNo() { - return chamberNo; - } - - /** - * Sets the value of the chamberNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChamberNo(String value) { - this.chamberNo = value; - } - - /** - * Gets the value of the legalformcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalformcode() { - return legalformcode; - } - - /** - * Sets the value of the legalformcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalformcode(String value) { - this.legalformcode = value; - } - - /** - * Gets the value of the legalformcodeText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalformcodeText() { - return legalformcodeText; - } - - /** - * Sets the value of the legalformcodeText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalformcodeText(String value) { - this.legalformcodeText = value; - } - - /** - * Gets the value of the previousDossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPreviousDossierNo() { - return previousDossierNo; - } - - /** - * Sets the value of the previousDossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPreviousDossierNo(String value) { - this.previousDossierNo = value; - } - - /** - * Gets the value of the previousSubDossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPreviousSubDossierNo() { - return previousSubDossierNo; - } - - /** - * Sets the value of the previousSubDossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPreviousSubDossierNo(String value) { - this.previousSubDossierNo = value; - } - - /** - * Gets the value of the tradename45 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradename45() { - return tradename45; - } - - /** - * Sets the value of the tradename45 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradename45(String value) { - this.tradename45 = value; - } - - /** - * Gets the value of the tradenameFull property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradenameFull() { - return tradenameFull; - } - - /** - * Sets the value of the tradenameFull property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradenameFull(String value) { - this.tradenameFull = value; - } - - /** - * Gets the value of the establishmentPostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentPostcode() { - return establishmentPostcode; - } - - /** - * Sets the value of the establishmentPostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentPostcode(String value) { - this.establishmentPostcode = value; - } - - /** - * Gets the value of the establishmentCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCity() { - return establishmentCity; - } - - /** - * Sets the value of the establishmentCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCity(String value) { - this.establishmentCity = value; - } - - /** - * Gets the value of the establishmentStreetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentStreetname() { - return establishmentStreetname; - } - - /** - * Sets the value of the establishmentStreetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentStreetname(String value) { - this.establishmentStreetname = value; - } - - /** - * Gets the value of the establishmentHouseNo property. - * - */ - public int getEstablishmentHouseNo() { - return establishmentHouseNo; - } - - /** - * Sets the value of the establishmentHouseNo property. - * - */ - public void setEstablishmentHouseNo(int value) { - this.establishmentHouseNo = value; - } - - /** - * Gets the value of the establishmentHouseNoAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentHouseNoAddition() { - return establishmentHouseNoAddition; - } - - /** - * Sets the value of the establishmentHouseNoAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentHouseNoAddition(String value) { - this.establishmentHouseNoAddition = value; - } - - /** - * Gets the value of the correspondencePostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondencePostcode() { - return correspondencePostcode; - } - - /** - * Sets the value of the correspondencePostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondencePostcode(String value) { - this.correspondencePostcode = value; - } - - /** - * Gets the value of the correspondenceCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCity() { - return correspondenceCity; - } - - /** - * Sets the value of the correspondenceCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCity(String value) { - this.correspondenceCity = value; - } - - /** - * Gets the value of the correspondenceStreetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceStreetname() { - return correspondenceStreetname; - } - - /** - * Sets the value of the correspondenceStreetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceStreetname(String value) { - this.correspondenceStreetname = value; - } - - /** - * Gets the value of the correspondenceHouseNo property. - * - */ - public int getCorrespondenceHouseNo() { - return correspondenceHouseNo; - } - - /** - * Sets the value of the correspondenceHouseNo property. - * - */ - public void setCorrespondenceHouseNo(int value) { - this.correspondenceHouseNo = value; - } - - /** - * Gets the value of the correspondenceHouseNoAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceHouseNoAddition() { - return correspondenceHouseNoAddition; - } - - /** - * Sets the value of the correspondenceHouseNoAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceHouseNoAddition(String value) { - this.correspondenceHouseNoAddition = value; - } - - /** - * Gets the value of the telephoneNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNo() { - return telephoneNo; - } - - /** - * Sets the value of the telephoneNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNo(String value) { - this.telephoneNo = value; - } - - /** - * Gets the value of the domainname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomainname() { - return domainname; - } - - /** - * Sets the value of the domainname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomainname(String value) { - this.domainname = value; - } - - /** - * Gets the value of the primarySBICode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimarySBICode() { - return primarySBICode; - } - - /** - * Sets the value of the primarySBICode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimarySBICode(String value) { - this.primarySBICode = value; - } - - /** - * Gets the value of the secondarySBICode1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySBICode1() { - return secondarySBICode1; - } - - /** - * Sets the value of the secondarySBICode1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySBICode1(String value) { - this.secondarySBICode1 = value; - } - - /** - * Gets the value of the secondarySBICode2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySBICode2() { - return secondarySBICode2; - } - - /** - * Sets the value of the secondarySBICode2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySBICode2(String value) { - this.secondarySBICode2 = value; - } - - /** - * Gets the value of the primarySBICodeText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimarySBICodeText() { - return primarySBICodeText; - } - - /** - * Sets the value of the primarySBICodeText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimarySBICodeText(String value) { - this.primarySBICodeText = value; - } - - /** - * Gets the value of the secondarySBICode1Text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySBICode1Text() { - return secondarySBICode1Text; - } - - /** - * Sets the value of the secondarySBICode1Text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySBICode1Text(String value) { - this.secondarySBICode1Text = value; - } - - /** - * Gets the value of the secondarySBICode2Text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySBICode2Text() { - return secondarySBICode2Text; - } - - /** - * Sets the value of the secondarySBICode2Text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySBICode2Text(String value) { - this.secondarySBICode2Text = value; - } - - /** - * Gets the value of the personnel property. - * - */ - public int getPersonnel() { - return personnel; - } - - /** - * Sets the value of the personnel property. - * - */ - public void setPersonnel(int value) { - this.personnel = value; - } - - /** - * Gets the value of the classPersonnel property. - * - */ - public int getClassPersonnel() { - return classPersonnel; - } - - /** - * Sets the value of the classPersonnel property. - * - */ - public void setClassPersonnel(int value) { - this.classPersonnel = value; - } - - /** - * Gets the value of the indicationOrganisationcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndicationOrganisationcode() { - return indicationOrganisationcode; - } - - /** - * Sets the value of the indicationOrganisationcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndicationOrganisationcode(String value) { - this.indicationOrganisationcode = value; - } - - /** - * Gets the value of the indicationEconomicallyActive property. - * - */ - public boolean isIndicationEconomicallyActive() { - return indicationEconomicallyActive; - } - - /** - * Sets the value of the indicationEconomicallyActive property. - * - */ - public void setIndicationEconomicallyActive(boolean value) { - this.indicationEconomicallyActive = value; - } - - /** - * Gets the value of the indicationNonMailing property. - * - */ - public boolean isIndicationNonMailing() { - return indicationNonMailing; - } - - /** - * Sets the value of the indicationNonMailing property. - * - */ - public void setIndicationNonMailing(boolean value) { - this.indicationNonMailing = value; - } - - /** - * Gets the value of the indicationBankruptcy property. - * - */ - public boolean isIndicationBankruptcy() { - return indicationBankruptcy; - } - - /** - * Sets the value of the indicationBankruptcy property. - * - */ - public void setIndicationBankruptcy(boolean value) { - this.indicationBankruptcy = value; - } - - /** - * Gets the value of the indicationDIP property. - * - */ - public boolean isIndicationDIP() { - return indicationDIP; - } - - /** - * Sets the value of the indicationDIP property. - * - */ - public void setIndicationDIP(boolean value) { - this.indicationDIP = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3Array.java deleted file mode 100644 index 4639888..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessDossierV3Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessDossierV3Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessDossierV3" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessDossierV3Array", propOrder = { - "item" -}) -public class BusinessDossierV3Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BusinessDossierV3 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3PagedResult.java deleted file mode 100644 index a1af437..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessDossierV3PagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessDossierV3PagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessDossierV3PagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}BusinessDossierV3Array"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessDossierV3PagedResult", propOrder = { - -}) -public class BusinessDossierV3PagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected BusinessDossierV3Array results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link BusinessDossierV3Array } - * - */ - public BusinessDossierV3Array getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link BusinessDossierV3Array } - * - */ - public void setResults(BusinessDossierV3Array value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetBIKDescriptionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetBIKDescriptionRequestType.java deleted file mode 100644 index b00e6fb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetBIKDescriptionRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessGetBIKDescriptionRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessGetBIKDescriptionRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bikcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessGetBIKDescriptionRequestType", propOrder = { - -}) -public class BusinessGetBIKDescriptionRequestType { - - @XmlElement(required = true) - protected String bikcode; - - /** - * Gets the value of the bikcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBikcode() { - return bikcode; - } - - /** - * Sets the value of the bikcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBikcode(String value) { - this.bikcode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetBIKDescriptionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetBIKDescriptionResponseType.java deleted file mode 100644 index c381801..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetBIKDescriptionResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessGetBIKDescriptionResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessGetBIKDescriptionResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessBIKCodeInfo"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessGetBIKDescriptionResponseType", propOrder = { - -}) -public class BusinessGetBIKDescriptionResponseType { - - @XmlElement(required = true) - protected BusinessBIKCodeInfo out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessBIKCodeInfo } - * - */ - public BusinessBIKCodeInfo getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessBIKCodeInfo } - * - */ - public void setOut(BusinessBIKCodeInfo value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierExtendedRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierExtendedRequestType.java deleted file mode 100644 index e79b6ba..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierExtendedRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessGetDossierExtendedRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessGetDossierExtendedRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="subdossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessGetDossierExtendedRequestType", propOrder = { - -}) -public class BusinessGetDossierExtendedRequestType { - - @XmlElement(required = true) - protected String dossierno; - @XmlElement(required = true) - protected String subdossierno; - - /** - * Gets the value of the dossierno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierno() { - return dossierno; - } - - /** - * Sets the value of the dossierno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierno(String value) { - this.dossierno = value; - } - - /** - * Gets the value of the subdossierno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubdossierno() { - return subdossierno; - } - - /** - * Sets the value of the subdossierno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubdossierno(String value) { - this.subdossierno = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierExtendedResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierExtendedResponseType.java deleted file mode 100644 index e6c8f68..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierExtendedResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessGetDossierExtendedResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessGetDossierExtendedResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessDossierExtended"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessGetDossierExtendedResponseType", propOrder = { - -}) -public class BusinessGetDossierExtendedResponseType { - - @XmlElement(required = true) - protected BusinessDossierExtended out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessDossierExtended } - * - */ - public BusinessDossierExtended getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessDossierExtended } - * - */ - public void setOut(BusinessDossierExtended value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierSBIRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierSBIRequestType.java deleted file mode 100644 index 5fa47d0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierSBIRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessGetDossierSBIRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessGetDossierSBIRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="subdossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessGetDossierSBIRequestType", propOrder = { - -}) -public class BusinessGetDossierSBIRequestType { - - @XmlElement(required = true) - protected String dossierno; - @XmlElement(required = true) - protected String subdossierno; - - /** - * Gets the value of the dossierno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierno() { - return dossierno; - } - - /** - * Sets the value of the dossierno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierno(String value) { - this.dossierno = value; - } - - /** - * Gets the value of the subdossierno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubdossierno() { - return subdossierno; - } - - /** - * Sets the value of the subdossierno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubdossierno(String value) { - this.subdossierno = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierSBIResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierSBIResponseType.java deleted file mode 100644 index 1acd431..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierSBIResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessGetDossierSBIResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessGetDossierSBIResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessDossierSBI"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessGetDossierSBIResponseType", propOrder = { - -}) -public class BusinessGetDossierSBIResponseType { - - @XmlElement(required = true) - protected BusinessDossierSBI out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessDossierSBI } - * - */ - public BusinessDossierSBI getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessDossierSBI } - * - */ - public void setOut(BusinessDossierSBI value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierV3RequestType.java deleted file mode 100644 index 35de2b9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierV3RequestType.java +++ /dev/null @@ -1,114 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessGetDossierV3RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessGetDossierV3RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="subdossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessGetDossierV3RequestType", propOrder = { - -}) -public class BusinessGetDossierV3RequestType { - - @XmlElement(required = true) - protected String dossierno; - @XmlElement(required = true) - protected String subdossierno; - protected int page; - - /** - * Gets the value of the dossierno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierno() { - return dossierno; - } - - /** - * Sets the value of the dossierno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierno(String value) { - this.dossierno = value; - } - - /** - * Gets the value of the subdossierno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubdossierno() { - return subdossierno; - } - - /** - * Sets the value of the subdossierno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubdossierno(String value) { - this.subdossierno = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierV3ResponseType.java deleted file mode 100644 index b513581..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetDossierV3ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessGetDossierV3ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessGetDossierV3ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessDossierV3PagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessGetDossierV3ResponseType", propOrder = { - -}) -public class BusinessGetDossierV3ResponseType { - - @XmlElement(required = true) - protected BusinessDossierV3PagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessDossierV3PagedResult } - * - */ - public BusinessDossierV3PagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessDossierV3PagedResult } - * - */ - public void setOut(BusinessDossierV3PagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetEstablishmentNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetEstablishmentNumberRequestType.java deleted file mode 100644 index 5e6769a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetEstablishmentNumberRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessGetEstablishmentNumberRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessGetEstablishmentNumberRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="subdossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessGetEstablishmentNumberRequestType", propOrder = { - -}) -public class BusinessGetEstablishmentNumberRequestType { - - @XmlElement(required = true) - protected String dossierno; - @XmlElement(required = true) - protected String subdossierno; - - /** - * Gets the value of the dossierno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierno() { - return dossierno; - } - - /** - * Sets the value of the dossierno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierno(String value) { - this.dossierno = value; - } - - /** - * Gets the value of the subdossierno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubdossierno() { - return subdossierno; - } - - /** - * Sets the value of the subdossierno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubdossierno(String value) { - this.subdossierno = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetEstablishmentNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetEstablishmentNumberResponseType.java deleted file mode 100644 index f0542ce..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetEstablishmentNumberResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessGetEstablishmentNumberResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessGetEstablishmentNumberResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessGetEstablishmentNumberResponseType", propOrder = { - -}) -public class BusinessGetEstablishmentNumberResponseType { - - @XmlElement(required = true) - protected String out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOut(String value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetSBIDescriptionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetSBIDescriptionRequestType.java deleted file mode 100644 index 60d6bd5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetSBIDescriptionRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessGetSBIDescriptionRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessGetSBIDescriptionRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="sbicode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessGetSBIDescriptionRequestType", propOrder = { - -}) -public class BusinessGetSBIDescriptionRequestType { - - @XmlElement(required = true) - protected String sbicode; - - /** - * Gets the value of the sbicode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSbicode() { - return sbicode; - } - - /** - * Sets the value of the sbicode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSbicode(String value) { - this.sbicode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetSBIDescriptionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetSBIDescriptionResponseType.java deleted file mode 100644 index 0cab176..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessGetSBIDescriptionResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessGetSBIDescriptionResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessGetSBIDescriptionResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessSBICodeInfo"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessGetSBIDescriptionResponseType", propOrder = { - -}) -public class BusinessGetSBIDescriptionResponseType { - - @XmlElement(required = true) - protected BusinessSBICodeInfo out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessSBICodeInfo } - * - */ - public BusinessSBICodeInfo getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessSBICodeInfo } - * - */ - public void setOut(BusinessSBICodeInfo value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReference.java deleted file mode 100644 index 2a4a406..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReference.java +++ /dev/null @@ -1,177 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="DossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Tradename" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="City" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessReference", propOrder = { - -}) -public class BusinessReference { - - @XmlElement(name = "DossierNo", required = true) - protected String dossierNo; - @XmlElement(name = "SubDossierNo", required = true) - protected String subDossierNo; - @XmlElement(name = "Tradename", required = true) - protected String tradename; - @XmlElement(name = "Streetname", required = true) - protected String streetname; - @XmlElement(name = "City", required = true) - protected String city; - - /** - * Gets the value of the dossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNo() { - return dossierNo; - } - - /** - * Sets the value of the dossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNo(String value) { - this.dossierNo = value; - } - - /** - * Gets the value of the subDossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubDossierNo() { - return subDossierNo; - } - - /** - * Sets the value of the subDossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubDossierNo(String value) { - this.subDossierNo = value; - } - - /** - * Gets the value of the tradename property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradename() { - return tradename; - } - - /** - * Sets the value of the tradename property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradename(String value) { - this.tradename = value; - } - - /** - * Gets the value of the streetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetname() { - return streetname; - } - - /** - * Sets the value of the streetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetname(String value) { - this.streetname = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceArray.java deleted file mode 100644 index 753dbab..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessReferenceArray", propOrder = { - "item" -}) -public class BusinessReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BusinessReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferencePagedResult.java deleted file mode 100644 index e0c4be7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferencePagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessReferencePagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessReferencePagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}BusinessReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessReferencePagedResult", propOrder = { - -}) -public class BusinessReferencePagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected BusinessReferenceArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link BusinessReferenceArray } - * - */ - public BusinessReferenceArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link BusinessReferenceArray } - * - */ - public void setResults(BusinessReferenceArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2.java deleted file mode 100644 index 76908e7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2.java +++ /dev/null @@ -1,231 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessReferenceV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessReferenceV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="DossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Tradename" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondenceStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondenceCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessReferenceV2", propOrder = { - -}) -public class BusinessReferenceV2 { - - @XmlElement(name = "DossierNo", required = true) - protected String dossierNo; - @XmlElement(name = "SubDossierNo", required = true) - protected String subDossierNo; - @XmlElement(name = "Tradename", required = true) - protected String tradename; - @XmlElement(name = "EstablishmentStreetname", required = true) - protected String establishmentStreetname; - @XmlElement(name = "EstablishmentCity", required = true) - protected String establishmentCity; - @XmlElement(name = "CorrespondenceStreetname", required = true) - protected String correspondenceStreetname; - @XmlElement(name = "CorrespondenceCity", required = true) - protected String correspondenceCity; - - /** - * Gets the value of the dossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNo() { - return dossierNo; - } - - /** - * Sets the value of the dossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNo(String value) { - this.dossierNo = value; - } - - /** - * Gets the value of the subDossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubDossierNo() { - return subDossierNo; - } - - /** - * Sets the value of the subDossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubDossierNo(String value) { - this.subDossierNo = value; - } - - /** - * Gets the value of the tradename property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradename() { - return tradename; - } - - /** - * Sets the value of the tradename property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradename(String value) { - this.tradename = value; - } - - /** - * Gets the value of the establishmentStreetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentStreetname() { - return establishmentStreetname; - } - - /** - * Sets the value of the establishmentStreetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentStreetname(String value) { - this.establishmentStreetname = value; - } - - /** - * Gets the value of the establishmentCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCity() { - return establishmentCity; - } - - /** - * Sets the value of the establishmentCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCity(String value) { - this.establishmentCity = value; - } - - /** - * Gets the value of the correspondenceStreetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceStreetname() { - return correspondenceStreetname; - } - - /** - * Sets the value of the correspondenceStreetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceStreetname(String value) { - this.correspondenceStreetname = value; - } - - /** - * Gets the value of the correspondenceCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCity() { - return correspondenceCity; - } - - /** - * Sets the value of the correspondenceCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCity(String value) { - this.correspondenceCity = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2Array.java deleted file mode 100644 index 1adb8c2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessReferenceV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessReferenceV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessReferenceV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessReferenceV2Array", propOrder = { - "item" -}) -public class BusinessReferenceV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BusinessReferenceV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2PagedResult.java deleted file mode 100644 index 720fa48..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV2PagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessReferenceV2PagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessReferenceV2PagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}BusinessReferenceV2Array"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessReferenceV2PagedResult", propOrder = { - -}) -public class BusinessReferenceV2PagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected BusinessReferenceV2Array results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link BusinessReferenceV2Array } - * - */ - public BusinessReferenceV2Array getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link BusinessReferenceV2Array } - * - */ - public void setResults(BusinessReferenceV2Array value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3.java deleted file mode 100644 index 32c246f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3.java +++ /dev/null @@ -1,250 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessReferenceV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessReferenceV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="DossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="Tradename" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="EstablishmentCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondenceStreetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="CorrespondenceCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="IndicationEconomicallyActive" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessReferenceV3", propOrder = { - -}) -public class BusinessReferenceV3 { - - @XmlElement(name = "DossierNo", required = true) - protected String dossierNo; - @XmlElement(name = "SubDossierNo", required = true) - protected String subDossierNo; - @XmlElement(name = "Tradename", required = true) - protected String tradename; - @XmlElement(name = "EstablishmentStreetname", required = true) - protected String establishmentStreetname; - @XmlElement(name = "EstablishmentCity", required = true) - protected String establishmentCity; - @XmlElement(name = "CorrespondenceStreetname", required = true) - protected String correspondenceStreetname; - @XmlElement(name = "CorrespondenceCity", required = true) - protected String correspondenceCity; - @XmlElement(name = "IndicationEconomicallyActive") - protected boolean indicationEconomicallyActive; - - /** - * Gets the value of the dossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNo() { - return dossierNo; - } - - /** - * Sets the value of the dossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNo(String value) { - this.dossierNo = value; - } - - /** - * Gets the value of the subDossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubDossierNo() { - return subDossierNo; - } - - /** - * Sets the value of the subDossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubDossierNo(String value) { - this.subDossierNo = value; - } - - /** - * Gets the value of the tradename property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradename() { - return tradename; - } - - /** - * Sets the value of the tradename property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradename(String value) { - this.tradename = value; - } - - /** - * Gets the value of the establishmentStreetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentStreetname() { - return establishmentStreetname; - } - - /** - * Sets the value of the establishmentStreetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentStreetname(String value) { - this.establishmentStreetname = value; - } - - /** - * Gets the value of the establishmentCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCity() { - return establishmentCity; - } - - /** - * Sets the value of the establishmentCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCity(String value) { - this.establishmentCity = value; - } - - /** - * Gets the value of the correspondenceStreetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceStreetname() { - return correspondenceStreetname; - } - - /** - * Sets the value of the correspondenceStreetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceStreetname(String value) { - this.correspondenceStreetname = value; - } - - /** - * Gets the value of the correspondenceCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCity() { - return correspondenceCity; - } - - /** - * Sets the value of the correspondenceCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCity(String value) { - this.correspondenceCity = value; - } - - /** - * Gets the value of the indicationEconomicallyActive property. - * - */ - public boolean isIndicationEconomicallyActive() { - return indicationEconomicallyActive; - } - - /** - * Sets the value of the indicationEconomicallyActive property. - * - */ - public void setIndicationEconomicallyActive(boolean value) { - this.indicationEconomicallyActive = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3Array.java deleted file mode 100644 index 7307037..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessReferenceV3Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessReferenceV3Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessReferenceV3" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessReferenceV3Array", propOrder = { - "item" -}) -public class BusinessReferenceV3Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BusinessReferenceV3 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3PagedResult.java deleted file mode 100644 index 881874f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessReferenceV3PagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessReferenceV3PagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessReferenceV3PagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}BusinessReferenceV3Array"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessReferenceV3PagedResult", propOrder = { - -}) -public class BusinessReferenceV3PagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected BusinessReferenceV3Array results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link BusinessReferenceV3Array } - * - */ - public BusinessReferenceV3Array getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link BusinessReferenceV3Array } - * - */ - public void setResults(BusinessReferenceV3Array value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICode.java deleted file mode 100644 index aa43873..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICode.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessSBICode complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessSBICode">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="sbicode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessSBICode", propOrder = { - -}) -public class BusinessSBICode { - - @XmlElement(required = true) - protected String sbicode; - @XmlElement(required = true) - protected String description; - - /** - * Gets the value of the sbicode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSbicode() { - return sbicode; - } - - /** - * Sets the value of the sbicode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSbicode(String value) { - this.sbicode = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICodeArray.java deleted file mode 100644 index 6576cf6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICodeArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessSBICodeArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessSBICodeArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessSBICode" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessSBICodeArray", propOrder = { - "item" -}) -public class BusinessSBICodeArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BusinessSBICode } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICodeInfo.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICodeInfo.java deleted file mode 100644 index 749c5c9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBICodeInfo.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessSBICodeInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessSBICodeInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="section" type="{http://www.webservices.nl/soap/}BusinessSBISection"/>
- *         <element name="sbicodes" type="{http://www.webservices.nl/soap/}BusinessSBICodeArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessSBICodeInfo", propOrder = { - -}) -public class BusinessSBICodeInfo { - - @XmlElement(required = true) - protected BusinessSBISection section; - @XmlElement(required = true) - protected BusinessSBICodeArray sbicodes; - - /** - * Gets the value of the section property. - * - * @return - * possible object is - * {@link BusinessSBISection } - * - */ - public BusinessSBISection getSection() { - return section; - } - - /** - * Sets the value of the section property. - * - * @param value - * allowed object is - * {@link BusinessSBISection } - * - */ - public void setSection(BusinessSBISection value) { - this.section = value; - } - - /** - * Gets the value of the sbicodes property. - * - * @return - * possible object is - * {@link BusinessSBICodeArray } - * - */ - public BusinessSBICodeArray getSbicodes() { - return sbicodes; - } - - /** - * Sets the value of the sbicodes property. - * - * @param value - * allowed object is - * {@link BusinessSBICodeArray } - * - */ - public void setSbicodes(BusinessSBICodeArray value) { - this.sbicodes = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBISection.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBISection.java deleted file mode 100644 index 8f818d8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBISection.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessSBISection complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessSBISection">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="sectioncode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessSBISection", propOrder = { - -}) -public class BusinessSBISection { - - @XmlElement(required = true) - protected String sectioncode; - @XmlElement(required = true) - protected String description; - - /** - * Gets the value of the sectioncode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectioncode() { - return sectioncode; - } - - /** - * Sets the value of the sectioncode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectioncode(String value) { - this.sectioncode = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBISectionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBISectionArray.java deleted file mode 100644 index 401c49b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBISectionArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessSBISectionArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessSBISectionArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessSBISection" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessSBISectionArray", propOrder = { - "item" -}) -public class BusinessSBISectionArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BusinessSBISection } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBIToBIKRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBIToBIKRequestType.java deleted file mode 100644 index 59ffba8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBIToBIKRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSBIToBIKRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSBIToBIKRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="sbicode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSBIToBIKRequestType", propOrder = { - -}) -public class BusinessSBIToBIKRequestType { - - @XmlElement(required = true) - protected String sbicode; - - /** - * Gets the value of the sbicode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSbicode() { - return sbicode; - } - - /** - * Sets the value of the sbicode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSbicode(String value) { - this.sbicode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBIToBIKResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBIToBIKResponseType.java deleted file mode 100644 index 2818fea..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSBIToBIKResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSBIToBIKResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSBIToBIKResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessBIKCodeArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSBIToBIKResponseType", propOrder = { - -}) -public class BusinessSBIToBIKResponseType { - - @XmlElement(required = true) - protected BusinessBIKCodeArray out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessBIKCodeArray } - * - */ - public BusinessBIKCodeArray getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessBIKCodeArray } - * - */ - public void setOut(BusinessBIKCodeArray value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchAddressRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchAddressRequestType.java deleted file mode 100644 index c6bdb3d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchAddressRequestType.java +++ /dev/null @@ -1,159 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchAddressRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchAddressRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="housenoaddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="cityname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchAddressRequestType", propOrder = { - -}) -public class BusinessSearchAddressRequestType { - - @XmlElement(required = true) - protected String streetname; - protected int houseno; - @XmlElement(required = true) - protected String housenoaddition; - @XmlElement(required = true) - protected String cityname; - protected int page; - - /** - * Gets the value of the streetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetname() { - return streetname; - } - - /** - * Sets the value of the streetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetname(String value) { - this.streetname = value; - } - - /** - * Gets the value of the houseno property. - * - */ - public int getHouseno() { - return houseno; - } - - /** - * Sets the value of the houseno property. - * - */ - public void setHouseno(int value) { - this.houseno = value; - } - - /** - * Gets the value of the housenoaddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHousenoaddition() { - return housenoaddition; - } - - /** - * Sets the value of the housenoaddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHousenoaddition(String value) { - this.housenoaddition = value; - } - - /** - * Gets the value of the cityname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCityname() { - return cityname; - } - - /** - * Sets the value of the cityname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCityname(String value) { - this.cityname = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchAddressResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchAddressResponseType.java deleted file mode 100644 index 0c5424b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchAddressResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchAddressResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchAddressResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchAddressResponseType", propOrder = { - -}) -public class BusinessSearchAddressResponseType { - - @XmlElement(required = true) - protected BusinessReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessReferencePagedResult } - * - */ - public BusinessReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessReferencePagedResult } - * - */ - public void setOut(BusinessReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchDossierNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchDossierNumberRequestType.java deleted file mode 100644 index 5254328..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchDossierNumberRequestType.java +++ /dev/null @@ -1,114 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchDossierNumberRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchDossierNumberRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="subdossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchDossierNumberRequestType", propOrder = { - -}) -public class BusinessSearchDossierNumberRequestType { - - @XmlElement(required = true) - protected String dossierno; - @XmlElement(required = true) - protected String subdossierno; - protected int page; - - /** - * Gets the value of the dossierno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierno() { - return dossierno; - } - - /** - * Sets the value of the dossierno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierno(String value) { - this.dossierno = value; - } - - /** - * Gets the value of the subdossierno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubdossierno() { - return subdossierno; - } - - /** - * Sets the value of the subdossierno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubdossierno(String value) { - this.subdossierno = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchDossierNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchDossierNumberResponseType.java deleted file mode 100644 index 599eb1a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchDossierNumberResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchDossierNumberResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchDossierNumberResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchDossierNumberResponseType", propOrder = { - -}) -public class BusinessSearchDossierNumberResponseType { - - @XmlElement(required = true) - protected BusinessReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessReferencePagedResult } - * - */ - public BusinessReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessReferencePagedResult } - * - */ - public void setOut(BusinessReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchNameRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchNameRequestType.java deleted file mode 100644 index 878e3ab..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchNameRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchNameRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchNameRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="tradename" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchNameRequestType", propOrder = { - -}) -public class BusinessSearchNameRequestType { - - @XmlElement(required = true) - protected String tradename; - protected int page; - - /** - * Gets the value of the tradename property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradename() { - return tradename; - } - - /** - * Sets the value of the tradename property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradename(String value) { - this.tradename = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchNameResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchNameResponseType.java deleted file mode 100644 index cdd03a6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchNameResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchNameResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchNameResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchNameResponseType", propOrder = { - -}) -public class BusinessSearchNameResponseType { - - @XmlElement(required = true) - protected BusinessReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessReferencePagedResult } - * - */ - public BusinessReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessReferencePagedResult } - * - */ - public void setOut(BusinessReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersRequestType.java deleted file mode 100644 index d5e9f6d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersRequestType.java +++ /dev/null @@ -1,267 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchParametersRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchParametersRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="tradename" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="cityname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="lettercomb" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="housenoaddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephoneno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchParametersRequestType", propOrder = { - -}) -public class BusinessSearchParametersRequestType { - - @XmlElement(required = true) - protected String tradename; - @XmlElement(required = true) - protected String cityname; - @XmlElement(required = true) - protected String streetname; - @XmlElement(required = true) - protected String nbcode; - @XmlElement(required = true) - protected String lettercomb; - protected int houseno; - @XmlElement(required = true) - protected String housenoaddition; - @XmlElement(required = true) - protected String telephoneno; - protected int page; - - /** - * Gets the value of the tradename property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradename() { - return tradename; - } - - /** - * Sets the value of the tradename property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradename(String value) { - this.tradename = value; - } - - /** - * Gets the value of the cityname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCityname() { - return cityname; - } - - /** - * Sets the value of the cityname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCityname(String value) { - this.cityname = value; - } - - /** - * Gets the value of the streetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetname() { - return streetname; - } - - /** - * Sets the value of the streetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetname(String value) { - this.streetname = value; - } - - /** - * Gets the value of the nbcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcode() { - return nbcode; - } - - /** - * Sets the value of the nbcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcode(String value) { - this.nbcode = value; - } - - /** - * Gets the value of the lettercomb property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLettercomb() { - return lettercomb; - } - - /** - * Sets the value of the lettercomb property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLettercomb(String value) { - this.lettercomb = value; - } - - /** - * Gets the value of the houseno property. - * - */ - public int getHouseno() { - return houseno; - } - - /** - * Sets the value of the houseno property. - * - */ - public void setHouseno(int value) { - this.houseno = value; - } - - /** - * Gets the value of the housenoaddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHousenoaddition() { - return housenoaddition; - } - - /** - * Sets the value of the housenoaddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHousenoaddition(String value) { - this.housenoaddition = value; - } - - /** - * Gets the value of the telephoneno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneno() { - return telephoneno; - } - - /** - * Sets the value of the telephoneno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneno(String value) { - this.telephoneno = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersResponseType.java deleted file mode 100644 index 92ac1fc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchParametersResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchParametersResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchParametersResponseType", propOrder = { - -}) -public class BusinessSearchParametersResponseType { - - @XmlElement(required = true) - protected BusinessReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessReferencePagedResult } - * - */ - public BusinessReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessReferencePagedResult } - * - */ - public void setOut(BusinessReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV2RequestType.java deleted file mode 100644 index 73875c6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV2RequestType.java +++ /dev/null @@ -1,240 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchParametersV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchParametersV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="tradename" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="cityname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="housenoaddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephoneno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchParametersV2RequestType", propOrder = { - -}) -public class BusinessSearchParametersV2RequestType { - - @XmlElement(required = true) - protected String tradename; - @XmlElement(required = true) - protected String cityname; - @XmlElement(required = true) - protected String streetname; - @XmlElement(required = true) - protected String postcode; - protected int houseno; - @XmlElement(required = true) - protected String housenoaddition; - @XmlElement(required = true) - protected String telephoneno; - protected int page; - - /** - * Gets the value of the tradename property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradename() { - return tradename; - } - - /** - * Sets the value of the tradename property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradename(String value) { - this.tradename = value; - } - - /** - * Gets the value of the cityname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCityname() { - return cityname; - } - - /** - * Sets the value of the cityname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCityname(String value) { - this.cityname = value; - } - - /** - * Gets the value of the streetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetname() { - return streetname; - } - - /** - * Sets the value of the streetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetname(String value) { - this.streetname = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the houseno property. - * - */ - public int getHouseno() { - return houseno; - } - - /** - * Sets the value of the houseno property. - * - */ - public void setHouseno(int value) { - this.houseno = value; - } - - /** - * Gets the value of the housenoaddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHousenoaddition() { - return housenoaddition; - } - - /** - * Sets the value of the housenoaddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHousenoaddition(String value) { - this.housenoaddition = value; - } - - /** - * Gets the value of the telephoneno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneno() { - return telephoneno; - } - - /** - * Sets the value of the telephoneno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneno(String value) { - this.telephoneno = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV2ResponseType.java deleted file mode 100644 index fd440b8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchParametersV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchParametersV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferenceV2PagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchParametersV2ResponseType", propOrder = { - -}) -public class BusinessSearchParametersV2ResponseType { - - @XmlElement(required = true) - protected BusinessReferenceV2PagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessReferenceV2PagedResult } - * - */ - public BusinessReferenceV2PagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessReferenceV2PagedResult } - * - */ - public void setOut(BusinessReferenceV2PagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV3RequestType.java deleted file mode 100644 index cd56515..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV3RequestType.java +++ /dev/null @@ -1,240 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchParametersV3RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchParametersV3RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="tradename" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="cityname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="housenoaddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephoneno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchParametersV3RequestType", propOrder = { - -}) -public class BusinessSearchParametersV3RequestType { - - @XmlElement(required = true) - protected String tradename; - @XmlElement(required = true) - protected String cityname; - @XmlElement(required = true) - protected String streetname; - @XmlElement(required = true) - protected String postcode; - protected int houseno; - @XmlElement(required = true) - protected String housenoaddition; - @XmlElement(required = true) - protected String telephoneno; - protected int page; - - /** - * Gets the value of the tradename property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradename() { - return tradename; - } - - /** - * Sets the value of the tradename property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradename(String value) { - this.tradename = value; - } - - /** - * Gets the value of the cityname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCityname() { - return cityname; - } - - /** - * Sets the value of the cityname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCityname(String value) { - this.cityname = value; - } - - /** - * Gets the value of the streetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetname() { - return streetname; - } - - /** - * Sets the value of the streetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetname(String value) { - this.streetname = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the houseno property. - * - */ - public int getHouseno() { - return houseno; - } - - /** - * Sets the value of the houseno property. - * - */ - public void setHouseno(int value) { - this.houseno = value; - } - - /** - * Gets the value of the housenoaddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHousenoaddition() { - return housenoaddition; - } - - /** - * Sets the value of the housenoaddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHousenoaddition(String value) { - this.housenoaddition = value; - } - - /** - * Gets the value of the telephoneno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneno() { - return telephoneno; - } - - /** - * Sets the value of the telephoneno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneno(String value) { - this.telephoneno = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV3ResponseType.java deleted file mode 100644 index c1c5839..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchParametersV3ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchParametersV3ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchParametersV3ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferenceV3PagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchParametersV3ResponseType", propOrder = { - -}) -public class BusinessSearchParametersV3ResponseType { - - @XmlElement(required = true) - protected BusinessReferenceV3PagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessReferenceV3PagedResult } - * - */ - public BusinessReferenceV3PagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessReferenceV3PagedResult } - * - */ - public void setOut(BusinessReferenceV3PagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchPostcodeRequestType.java deleted file mode 100644 index 97bea42..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchPostcodeRequestType.java +++ /dev/null @@ -1,159 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchPostcodeRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchPostcodeRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="lettercomb" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="housenoaddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchPostcodeRequestType", propOrder = { - -}) -public class BusinessSearchPostcodeRequestType { - - @XmlElement(required = true) - protected String nbcode; - @XmlElement(required = true) - protected String lettercomb; - protected int houseno; - @XmlElement(required = true) - protected String housenoaddition; - protected int page; - - /** - * Gets the value of the nbcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcode() { - return nbcode; - } - - /** - * Sets the value of the nbcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcode(String value) { - this.nbcode = value; - } - - /** - * Gets the value of the lettercomb property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLettercomb() { - return lettercomb; - } - - /** - * Sets the value of the lettercomb property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLettercomb(String value) { - this.lettercomb = value; - } - - /** - * Gets the value of the houseno property. - * - */ - public int getHouseno() { - return houseno; - } - - /** - * Sets the value of the houseno property. - * - */ - public void setHouseno(int value) { - this.houseno = value; - } - - /** - * Gets the value of the housenoaddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHousenoaddition() { - return housenoaddition; - } - - /** - * Sets the value of the housenoaddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHousenoaddition(String value) { - this.housenoaddition = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchPostcodeResponseType.java deleted file mode 100644 index 0ff4113..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchPostcodeResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchPostcodeResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchPostcodeResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchPostcodeResponseType", propOrder = { - -}) -public class BusinessSearchPostcodeResponseType { - - @XmlElement(required = true) - protected BusinessReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessReferencePagedResult } - * - */ - public BusinessReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessReferencePagedResult } - * - */ - public void setOut(BusinessReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionRequestType.java deleted file mode 100644 index b12632d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionRequestType.java +++ /dev/null @@ -1,306 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchSelectionRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchSelectionRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="city" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="postcode" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="sbi" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="primary_sbi_only" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="legal_forms" type="{http://www.webservices.nl/soap/}intArray"/>
- *         <element name="employees_min" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="employees_max" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="economically_active" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="financial_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchSelectionRequestType", propOrder = { - -}) -public class BusinessSearchSelectionRequestType { - - @XmlElement(required = true) - protected StringArray city; - @XmlElement(required = true) - protected StringArray postcode; - @XmlElement(required = true) - protected StringArray sbi; - @XmlElement(name = "primary_sbi_only") - protected boolean primarySbiOnly; - @XmlElement(name = "legal_forms", required = true) - protected IntArray legalForms; - @XmlElement(name = "employees_min") - protected int employeesMin; - @XmlElement(name = "employees_max") - protected int employeesMax; - @XmlElement(name = "economically_active", required = true) - protected String economicallyActive; - @XmlElement(name = "financial_status", required = true) - protected String financialStatus; - @XmlElement(name = "changed_since", required = true) - protected String changedSince; - protected int page; - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setCity(StringArray value) { - this.city = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setPostcode(StringArray value) { - this.postcode = value; - } - - /** - * Gets the value of the sbi property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getSbi() { - return sbi; - } - - /** - * Sets the value of the sbi property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setSbi(StringArray value) { - this.sbi = value; - } - - /** - * Gets the value of the primarySbiOnly property. - * - */ - public boolean isPrimarySbiOnly() { - return primarySbiOnly; - } - - /** - * Sets the value of the primarySbiOnly property. - * - */ - public void setPrimarySbiOnly(boolean value) { - this.primarySbiOnly = value; - } - - /** - * Gets the value of the legalForms property. - * - * @return - * possible object is - * {@link IntArray } - * - */ - public IntArray getLegalForms() { - return legalForms; - } - - /** - * Sets the value of the legalForms property. - * - * @param value - * allowed object is - * {@link IntArray } - * - */ - public void setLegalForms(IntArray value) { - this.legalForms = value; - } - - /** - * Gets the value of the employeesMin property. - * - */ - public int getEmployeesMin() { - return employeesMin; - } - - /** - * Sets the value of the employeesMin property. - * - */ - public void setEmployeesMin(int value) { - this.employeesMin = value; - } - - /** - * Gets the value of the employeesMax property. - * - */ - public int getEmployeesMax() { - return employeesMax; - } - - /** - * Sets the value of the employeesMax property. - * - */ - public void setEmployeesMax(int value) { - this.employeesMax = value; - } - - /** - * Gets the value of the economicallyActive property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEconomicallyActive() { - return economicallyActive; - } - - /** - * Sets the value of the economicallyActive property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEconomicallyActive(String value) { - this.economicallyActive = value; - } - - /** - * Gets the value of the financialStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinancialStatus() { - return financialStatus; - } - - /** - * Sets the value of the financialStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinancialStatus(String value) { - this.financialStatus = value; - } - - /** - * Gets the value of the changedSince property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getChangedSince() { - return changedSince; - } - - /** - * Sets the value of the changedSince property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChangedSince(String value) { - this.changedSince = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionResponseType.java deleted file mode 100644 index 5c9c58e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchSelectionResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchSelectionResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchSelectionResponseType", propOrder = { - -}) -public class BusinessSearchSelectionResponseType { - - @XmlElement(required = true) - protected BusinessReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessReferencePagedResult } - * - */ - public BusinessReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessReferencePagedResult } - * - */ - public void setOut(BusinessReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionV2RequestType.java deleted file mode 100644 index 15663c9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionV2RequestType.java +++ /dev/null @@ -1,333 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchSelectionV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchSelectionV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="city" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="postcode" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="sbi" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="primary_sbi_only" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="legal_forms" type="{http://www.webservices.nl/soap/}intArray"/>
- *         <element name="employees_min" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="employees_max" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="economically_active" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="financial_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="new_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchSelectionV2RequestType", propOrder = { - -}) -public class BusinessSearchSelectionV2RequestType { - - @XmlElement(required = true) - protected StringArray city; - @XmlElement(required = true) - protected StringArray postcode; - @XmlElement(required = true) - protected StringArray sbi; - @XmlElement(name = "primary_sbi_only") - protected boolean primarySbiOnly; - @XmlElement(name = "legal_forms", required = true) - protected IntArray legalForms; - @XmlElement(name = "employees_min") - protected int employeesMin; - @XmlElement(name = "employees_max") - protected int employeesMax; - @XmlElement(name = "economically_active", required = true) - protected String economicallyActive; - @XmlElement(name = "financial_status", required = true) - protected String financialStatus; - @XmlElement(name = "changed_since", required = true) - protected String changedSince; - @XmlElement(name = "new_since", required = true) - protected String newSince; - protected int page; - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setCity(StringArray value) { - this.city = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setPostcode(StringArray value) { - this.postcode = value; - } - - /** - * Gets the value of the sbi property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getSbi() { - return sbi; - } - - /** - * Sets the value of the sbi property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setSbi(StringArray value) { - this.sbi = value; - } - - /** - * Gets the value of the primarySbiOnly property. - * - */ - public boolean isPrimarySbiOnly() { - return primarySbiOnly; - } - - /** - * Sets the value of the primarySbiOnly property. - * - */ - public void setPrimarySbiOnly(boolean value) { - this.primarySbiOnly = value; - } - - /** - * Gets the value of the legalForms property. - * - * @return - * possible object is - * {@link IntArray } - * - */ - public IntArray getLegalForms() { - return legalForms; - } - - /** - * Sets the value of the legalForms property. - * - * @param value - * allowed object is - * {@link IntArray } - * - */ - public void setLegalForms(IntArray value) { - this.legalForms = value; - } - - /** - * Gets the value of the employeesMin property. - * - */ - public int getEmployeesMin() { - return employeesMin; - } - - /** - * Sets the value of the employeesMin property. - * - */ - public void setEmployeesMin(int value) { - this.employeesMin = value; - } - - /** - * Gets the value of the employeesMax property. - * - */ - public int getEmployeesMax() { - return employeesMax; - } - - /** - * Sets the value of the employeesMax property. - * - */ - public void setEmployeesMax(int value) { - this.employeesMax = value; - } - - /** - * Gets the value of the economicallyActive property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEconomicallyActive() { - return economicallyActive; - } - - /** - * Sets the value of the economicallyActive property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEconomicallyActive(String value) { - this.economicallyActive = value; - } - - /** - * Gets the value of the financialStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinancialStatus() { - return financialStatus; - } - - /** - * Sets the value of the financialStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinancialStatus(String value) { - this.financialStatus = value; - } - - /** - * Gets the value of the changedSince property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getChangedSince() { - return changedSince; - } - - /** - * Sets the value of the changedSince property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChangedSince(String value) { - this.changedSince = value; - } - - /** - * Gets the value of the newSince property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNewSince() { - return newSince; - } - - /** - * Sets the value of the newSince property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNewSince(String value) { - this.newSince = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionV2ResponseType.java deleted file mode 100644 index 56ee4b3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessSearchSelectionV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessSearchSelectionV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessSearchSelectionV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessSearchSelectionV2ResponseType", propOrder = { - -}) -public class BusinessSearchSelectionV2ResponseType { - - @XmlElement(required = true) - protected BusinessReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessReferencePagedResult } - * - */ - public BusinessReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessReferencePagedResult } - * - */ - public void setOut(BusinessReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateAddDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateAddDossierRequestType.java deleted file mode 100644 index 52b6e69..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateAddDossierRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessUpdateAddDossierRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessUpdateAddDossierRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="subdossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessUpdateAddDossierRequestType", propOrder = { - -}) -public class BusinessUpdateAddDossierRequestType { - - @XmlElement(required = true) - protected String dossierno; - @XmlElement(required = true) - protected String subdossierno; - - /** - * Gets the value of the dossierno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierno() { - return dossierno; - } - - /** - * Sets the value of the dossierno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierno(String value) { - this.dossierno = value; - } - - /** - * Gets the value of the subdossierno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubdossierno() { - return subdossierno; - } - - /** - * Sets the value of the subdossierno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubdossierno(String value) { - this.subdossierno = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateAddDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateAddDossierResponseType.java deleted file mode 100644 index 249a0e0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateAddDossierResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessUpdateAddDossierResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessUpdateAddDossierResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessUpdateAddDossierResponseType") -public class BusinessUpdateAddDossierResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateCheckDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateCheckDossierRequestType.java deleted file mode 100644 index 4a039ab..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateCheckDossierRequestType.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessUpdateCheckDossierRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessUpdateCheckDossierRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="subdossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessUpdateCheckDossierRequestType", propOrder = { - -}) -public class BusinessUpdateCheckDossierRequestType { - - @XmlElement(required = true) - protected String dossierno; - @XmlElement(required = true) - protected String subdossierno; - @XmlElement(name = "update_types", required = true) - protected StringArray updateTypes; - - /** - * Gets the value of the dossierno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierno() { - return dossierno; - } - - /** - * Sets the value of the dossierno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierno(String value) { - this.dossierno = value; - } - - /** - * Gets the value of the subdossierno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubdossierno() { - return subdossierno; - } - - /** - * Sets the value of the subdossierno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubdossierno(String value) { - this.subdossierno = value; - } - - /** - * Gets the value of the updateTypes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getUpdateTypes() { - return updateTypes; - } - - /** - * Sets the value of the updateTypes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setUpdateTypes(StringArray value) { - this.updateTypes = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateCheckDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateCheckDossierResponseType.java deleted file mode 100644 index 2e3e909..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateCheckDossierResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessUpdateCheckDossierResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessUpdateCheckDossierResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessUpdateReference"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessUpdateCheckDossierResponseType", propOrder = { - -}) -public class BusinessUpdateCheckDossierResponseType { - - @XmlElement(required = true) - protected BusinessUpdateReference out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessUpdateReference } - * - */ - public BusinessUpdateReference getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessUpdateReference } - * - */ - public void setOut(BusinessUpdateReference value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetChangedDossiersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetChangedDossiersRequestType.java deleted file mode 100644 index daa9804..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetChangedDossiersRequestType.java +++ /dev/null @@ -1,117 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for businessUpdateGetChangedDossiersRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessUpdateGetChangedDossiersRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessUpdateGetChangedDossiersRequestType", propOrder = { - -}) -public class BusinessUpdateGetChangedDossiersRequestType { - - @XmlElement(name = "changed_since", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar changedSince; - @XmlElement(name = "update_types", required = true) - protected StringArray updateTypes; - protected int page; - - /** - * Gets the value of the changedSince property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getChangedSince() { - return changedSince; - } - - /** - * Sets the value of the changedSince property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setChangedSince(XMLGregorianCalendar value) { - this.changedSince = value; - } - - /** - * Gets the value of the updateTypes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getUpdateTypes() { - return updateTypes; - } - - /** - * Sets the value of the updateTypes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setUpdateTypes(StringArray value) { - this.updateTypes = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetChangedDossiersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetChangedDossiersResponseType.java deleted file mode 100644 index c0ecdb5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetChangedDossiersResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessUpdateGetChangedDossiersResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessUpdateGetChangedDossiersResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessUpdateReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessUpdateGetChangedDossiersResponseType", propOrder = { - -}) -public class BusinessUpdateGetChangedDossiersResponseType { - - @XmlElement(required = true) - protected BusinessUpdateReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessUpdateReferencePagedResult } - * - */ - public BusinessUpdateReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessUpdateReferencePagedResult } - * - */ - public void setOut(BusinessUpdateReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetDossiersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetDossiersRequestType.java deleted file mode 100644 index 7483446..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetDossiersRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessUpdateGetDossiersRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessUpdateGetDossiersRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessUpdateGetDossiersRequestType", propOrder = { - -}) -public class BusinessUpdateGetDossiersRequestType { - - @XmlElement(name = "update_types", required = true) - protected StringArray updateTypes; - protected int page; - - /** - * Gets the value of the updateTypes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getUpdateTypes() { - return updateTypes; - } - - /** - * Sets the value of the updateTypes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setUpdateTypes(StringArray value) { - this.updateTypes = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetDossiersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetDossiersResponseType.java deleted file mode 100644 index 50f7594..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateGetDossiersResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessUpdateGetDossiersResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessUpdateGetDossiersResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}BusinessUpdateReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessUpdateGetDossiersResponseType", propOrder = { - -}) -public class BusinessUpdateGetDossiersResponseType { - - @XmlElement(required = true) - protected BusinessUpdateReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link BusinessUpdateReferencePagedResult } - * - */ - public BusinessUpdateReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link BusinessUpdateReferencePagedResult } - * - */ - public void setOut(BusinessUpdateReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReference.java deleted file mode 100644 index ac9142e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReference.java +++ /dev/null @@ -1,153 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for BusinessUpdateReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessUpdateReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="DossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="SubDossierNo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="UpdateTypes" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="DateLastUpdate" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessUpdateReference", propOrder = { - -}) -public class BusinessUpdateReference { - - @XmlElement(name = "DossierNo", required = true) - protected String dossierNo; - @XmlElement(name = "SubDossierNo", required = true) - protected String subDossierNo; - @XmlElement(name = "UpdateTypes", required = true) - protected StringArray updateTypes; - @XmlElement(name = "DateLastUpdate", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateLastUpdate; - - /** - * Gets the value of the dossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNo() { - return dossierNo; - } - - /** - * Sets the value of the dossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNo(String value) { - this.dossierNo = value; - } - - /** - * Gets the value of the subDossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubDossierNo() { - return subDossierNo; - } - - /** - * Sets the value of the subDossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubDossierNo(String value) { - this.subDossierNo = value; - } - - /** - * Gets the value of the updateTypes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getUpdateTypes() { - return updateTypes; - } - - /** - * Sets the value of the updateTypes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setUpdateTypes(StringArray value) { - this.updateTypes = value; - } - - /** - * Gets the value of the dateLastUpdate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateLastUpdate() { - return dateLastUpdate; - } - - /** - * Sets the value of the dateLastUpdate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateLastUpdate(XMLGregorianCalendar value) { - this.dateLastUpdate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReferenceArray.java deleted file mode 100644 index 5451d6a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessUpdateReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessUpdateReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}BusinessUpdateReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessUpdateReferenceArray", propOrder = { - "item" -}) -public class BusinessUpdateReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link BusinessUpdateReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReferencePagedResult.java deleted file mode 100644 index 9293d65..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateReferencePagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for BusinessUpdateReferencePagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="BusinessUpdateReferencePagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}BusinessUpdateReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "BusinessUpdateReferencePagedResult", propOrder = { - -}) -public class BusinessUpdateReferencePagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected BusinessUpdateReferenceArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link BusinessUpdateReferenceArray } - * - */ - public BusinessUpdateReferenceArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link BusinessUpdateReferenceArray } - * - */ - public void setResults(BusinessUpdateReferenceArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateRemoveDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateRemoveDossierRequestType.java deleted file mode 100644 index 5fcf002..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateRemoveDossierRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessUpdateRemoveDossierRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessUpdateRemoveDossierRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="subdossierno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessUpdateRemoveDossierRequestType", propOrder = { - -}) -public class BusinessUpdateRemoveDossierRequestType { - - @XmlElement(required = true) - protected String dossierno; - @XmlElement(required = true) - protected String subdossierno; - - /** - * Gets the value of the dossierno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierno() { - return dossierno; - } - - /** - * Sets the value of the dossierno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierno(String value) { - this.dossierno = value; - } - - /** - * Gets the value of the subdossierno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubdossierno() { - return subdossierno; - } - - /** - * Sets the value of the subdossierno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubdossierno(String value) { - this.subdossierno = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateRemoveDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateRemoveDossierResponseType.java deleted file mode 100644 index b780909..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/BusinessUpdateRemoveDossierResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for businessUpdateRemoveDossierResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="businessUpdateRemoveDossierResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "businessUpdateRemoveDossierResponseType") -public class BusinessUpdateRemoveDossierResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Car.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Car.java deleted file mode 100644 index 99d93d6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Car.java +++ /dev/null @@ -1,557 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Car complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Car">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="brand" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="colors" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="fuel_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="cylinders" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="cylinder_capacity" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="seats" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="standing_room" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="unladen_mass" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="gross_vehicle_mass" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="mass_ready" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_payload" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_unbraked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_trailer_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_self_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_axle_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="date_first_issuing" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_first_admission" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_latest_name_registration" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="apk_due_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Car", propOrder = { - -}) -public class Car { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - @XmlElement(required = true) - protected String category; - @XmlElement(required = true) - protected String brand; - @XmlElement(required = true) - protected String model; - @XmlElement(required = true) - protected String colors; - @XmlElement(name = "fuel_type", required = true) - protected String fuelType; - protected int cylinders; - @XmlElement(name = "cylinder_capacity") - protected int cylinderCapacity; - protected int seats; - @XmlElement(name = "standing_room") - protected int standingRoom; - @XmlElement(name = "unladen_mass") - protected int unladenMass; - @XmlElement(name = "gross_vehicle_mass") - protected int grossVehicleMass; - @XmlElement(name = "mass_ready") - protected int massReady; - @XmlElement(name = "maximum_mass_payload") - protected int maximumMassPayload; - @XmlElement(name = "maximum_mass_unbraked") - protected int maximumMassUnbraked; - @XmlElement(name = "maximum_mass_braked") - protected int maximumMassBraked; - @XmlElement(name = "maximum_mass_trailer_braked") - protected int maximumMassTrailerBraked; - @XmlElement(name = "maximum_mass_self_braked") - protected int maximumMassSelfBraked; - @XmlElement(name = "maximum_mass_axle_braked") - protected int maximumMassAxleBraked; - @XmlElement(name = "date_first_issuing", required = true) - protected String dateFirstIssuing; - @XmlElement(name = "date_first_admission", required = true) - protected String dateFirstAdmission; - @XmlElement(name = "date_latest_name_registration", required = true) - protected String dateLatestNameRegistration; - @XmlElement(name = "apk_due_date", required = true) - protected String apkDueDate; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - - /** - * Gets the value of the category property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCategory() { - return category; - } - - /** - * Sets the value of the category property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCategory(String value) { - this.category = value; - } - - /** - * Gets the value of the brand property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrand() { - return brand; - } - - /** - * Sets the value of the brand property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrand(String value) { - this.brand = value; - } - - /** - * Gets the value of the model property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModel() { - return model; - } - - /** - * Sets the value of the model property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModel(String value) { - this.model = value; - } - - /** - * Gets the value of the colors property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getColors() { - return colors; - } - - /** - * Sets the value of the colors property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setColors(String value) { - this.colors = value; - } - - /** - * Gets the value of the fuelType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFuelType() { - return fuelType; - } - - /** - * Sets the value of the fuelType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFuelType(String value) { - this.fuelType = value; - } - - /** - * Gets the value of the cylinders property. - * - */ - public int getCylinders() { - return cylinders; - } - - /** - * Sets the value of the cylinders property. - * - */ - public void setCylinders(int value) { - this.cylinders = value; - } - - /** - * Gets the value of the cylinderCapacity property. - * - */ - public int getCylinderCapacity() { - return cylinderCapacity; - } - - /** - * Sets the value of the cylinderCapacity property. - * - */ - public void setCylinderCapacity(int value) { - this.cylinderCapacity = value; - } - - /** - * Gets the value of the seats property. - * - */ - public int getSeats() { - return seats; - } - - /** - * Sets the value of the seats property. - * - */ - public void setSeats(int value) { - this.seats = value; - } - - /** - * Gets the value of the standingRoom property. - * - */ - public int getStandingRoom() { - return standingRoom; - } - - /** - * Sets the value of the standingRoom property. - * - */ - public void setStandingRoom(int value) { - this.standingRoom = value; - } - - /** - * Gets the value of the unladenMass property. - * - */ - public int getUnladenMass() { - return unladenMass; - } - - /** - * Sets the value of the unladenMass property. - * - */ - public void setUnladenMass(int value) { - this.unladenMass = value; - } - - /** - * Gets the value of the grossVehicleMass property. - * - */ - public int getGrossVehicleMass() { - return grossVehicleMass; - } - - /** - * Sets the value of the grossVehicleMass property. - * - */ - public void setGrossVehicleMass(int value) { - this.grossVehicleMass = value; - } - - /** - * Gets the value of the massReady property. - * - */ - public int getMassReady() { - return massReady; - } - - /** - * Sets the value of the massReady property. - * - */ - public void setMassReady(int value) { - this.massReady = value; - } - - /** - * Gets the value of the maximumMassPayload property. - * - */ - public int getMaximumMassPayload() { - return maximumMassPayload; - } - - /** - * Sets the value of the maximumMassPayload property. - * - */ - public void setMaximumMassPayload(int value) { - this.maximumMassPayload = value; - } - - /** - * Gets the value of the maximumMassUnbraked property. - * - */ - public int getMaximumMassUnbraked() { - return maximumMassUnbraked; - } - - /** - * Sets the value of the maximumMassUnbraked property. - * - */ - public void setMaximumMassUnbraked(int value) { - this.maximumMassUnbraked = value; - } - - /** - * Gets the value of the maximumMassBraked property. - * - */ - public int getMaximumMassBraked() { - return maximumMassBraked; - } - - /** - * Sets the value of the maximumMassBraked property. - * - */ - public void setMaximumMassBraked(int value) { - this.maximumMassBraked = value; - } - - /** - * Gets the value of the maximumMassTrailerBraked property. - * - */ - public int getMaximumMassTrailerBraked() { - return maximumMassTrailerBraked; - } - - /** - * Sets the value of the maximumMassTrailerBraked property. - * - */ - public void setMaximumMassTrailerBraked(int value) { - this.maximumMassTrailerBraked = value; - } - - /** - * Gets the value of the maximumMassSelfBraked property. - * - */ - public int getMaximumMassSelfBraked() { - return maximumMassSelfBraked; - } - - /** - * Sets the value of the maximumMassSelfBraked property. - * - */ - public void setMaximumMassSelfBraked(int value) { - this.maximumMassSelfBraked = value; - } - - /** - * Gets the value of the maximumMassAxleBraked property. - * - */ - public int getMaximumMassAxleBraked() { - return maximumMassAxleBraked; - } - - /** - * Sets the value of the maximumMassAxleBraked property. - * - */ - public void setMaximumMassAxleBraked(int value) { - this.maximumMassAxleBraked = value; - } - - /** - * Gets the value of the dateFirstIssuing property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateFirstIssuing() { - return dateFirstIssuing; - } - - /** - * Sets the value of the dateFirstIssuing property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateFirstIssuing(String value) { - this.dateFirstIssuing = value; - } - - /** - * Gets the value of the dateFirstAdmission property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateFirstAdmission() { - return dateFirstAdmission; - } - - /** - * Sets the value of the dateFirstAdmission property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateFirstAdmission(String value) { - this.dateFirstAdmission = value; - } - - /** - * Gets the value of the dateLatestNameRegistration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateLatestNameRegistration() { - return dateLatestNameRegistration; - } - - /** - * Sets the value of the dateLatestNameRegistration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateLatestNameRegistration(String value) { - this.dateLatestNameRegistration = value; - } - - /** - * Gets the value of the apkDueDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getApkDueDate() { - return apkDueDate; - } - - /** - * Sets the value of the apkDueDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setApkDueDate(String value) { - this.apkDueDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPriceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPriceRequestType.java deleted file mode 100644 index 368bc46..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPriceRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carATDPriceRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carATDPriceRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carATDPriceRequestType", propOrder = { - -}) -public class CarATDPriceRequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPriceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPriceResponseType.java deleted file mode 100644 index 0727f13..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPriceResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carATDPriceResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carATDPriceResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarATDPrices"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carATDPriceResponseType", propOrder = { - -}) -public class CarATDPriceResponseType { - - @XmlElement(required = true) - protected CarATDPrices out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarATDPrices } - * - */ - public CarATDPrices getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarATDPrices } - * - */ - public void setOut(CarATDPrices value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPrices.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPrices.java deleted file mode 100644 index 71f1d20..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDPrices.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarATDPrices complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarATDPrices">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="brand" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="valuations" type="{http://www.webservices.nl/soap/}CarATDValuationArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarATDPrices", propOrder = { - -}) -public class CarATDPrices { - - @XmlElement(required = true) - protected String brand; - @XmlElement(required = true) - protected String model; - @XmlElement(required = true) - protected String type; - @XmlElement(required = true) - protected CarATDValuationArray valuations; - - /** - * Gets the value of the brand property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrand() { - return brand; - } - - /** - * Sets the value of the brand property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrand(String value) { - this.brand = value; - } - - /** - * Gets the value of the model property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModel() { - return model; - } - - /** - * Sets the value of the model property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModel(String value) { - this.model = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the valuations property. - * - * @return - * possible object is - * {@link CarATDValuationArray } - * - */ - public CarATDValuationArray getValuations() { - return valuations; - } - - /** - * Sets the value of the valuations property. - * - * @param value - * allowed object is - * {@link CarATDValuationArray } - * - */ - public void setValuations(CarATDValuationArray value) { - this.valuations = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDValuation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDValuation.java deleted file mode 100644 index ee2abca..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDValuation.java +++ /dev/null @@ -1,145 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarATDValuation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarATDValuation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="type_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="price_retail" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="price_exchange" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="price_trade" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="type_names" type="{http://www.webservices.nl/soap/}stringArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarATDValuation", propOrder = { - -}) -public class CarATDValuation { - - @XmlElement(name = "type_id") - protected int typeId; - @XmlElement(name = "price_retail") - protected int priceRetail; - @XmlElement(name = "price_exchange") - protected int priceExchange; - @XmlElement(name = "price_trade") - protected int priceTrade; - @XmlElement(name = "type_names", required = true) - protected StringArray typeNames; - - /** - * Gets the value of the typeId property. - * - */ - public int getTypeId() { - return typeId; - } - - /** - * Sets the value of the typeId property. - * - */ - public void setTypeId(int value) { - this.typeId = value; - } - - /** - * Gets the value of the priceRetail property. - * - */ - public int getPriceRetail() { - return priceRetail; - } - - /** - * Sets the value of the priceRetail property. - * - */ - public void setPriceRetail(int value) { - this.priceRetail = value; - } - - /** - * Gets the value of the priceExchange property. - * - */ - public int getPriceExchange() { - return priceExchange; - } - - /** - * Sets the value of the priceExchange property. - * - */ - public void setPriceExchange(int value) { - this.priceExchange = value; - } - - /** - * Gets the value of the priceTrade property. - * - */ - public int getPriceTrade() { - return priceTrade; - } - - /** - * Sets the value of the priceTrade property. - * - */ - public void setPriceTrade(int value) { - this.priceTrade = value; - } - - /** - * Gets the value of the typeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTypeNames() { - return typeNames; - } - - /** - * Sets the value of the typeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTypeNames(StringArray value) { - this.typeNames = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDValuationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDValuationArray.java deleted file mode 100644 index 67fe95b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarATDValuationArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarATDValuationArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarATDValuationArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CarATDValuation" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarATDValuationArray", propOrder = { - "item" -}) -public class CarATDValuationArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CarATDValuation } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBP.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBP.java deleted file mode 100644 index a609781..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBP.java +++ /dev/null @@ -1,593 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarBP complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarBP">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="brand" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="colors" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="fuel_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="cylinders" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="cylinder_capacity" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="seats" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="standing_room" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="unladen_mass" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="gross_vehicle_mass" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="mass_ready" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_payload" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_unbraked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_trailer_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_self_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_axle_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="date_first_issuing" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_first_admission" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_latest_name_registration" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="apk_due_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="bpm" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="power" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarBP", propOrder = { - -}) -public class CarBP { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - @XmlElement(required = true) - protected String category; - @XmlElement(required = true) - protected String brand; - @XmlElement(required = true) - protected String model; - @XmlElement(required = true) - protected String colors; - @XmlElement(name = "fuel_type", required = true) - protected String fuelType; - protected int cylinders; - @XmlElement(name = "cylinder_capacity") - protected int cylinderCapacity; - protected int seats; - @XmlElement(name = "standing_room") - protected int standingRoom; - @XmlElement(name = "unladen_mass") - protected int unladenMass; - @XmlElement(name = "gross_vehicle_mass") - protected int grossVehicleMass; - @XmlElement(name = "mass_ready") - protected int massReady; - @XmlElement(name = "maximum_mass_payload") - protected int maximumMassPayload; - @XmlElement(name = "maximum_mass_unbraked") - protected int maximumMassUnbraked; - @XmlElement(name = "maximum_mass_braked") - protected int maximumMassBraked; - @XmlElement(name = "maximum_mass_trailer_braked") - protected int maximumMassTrailerBraked; - @XmlElement(name = "maximum_mass_self_braked") - protected int maximumMassSelfBraked; - @XmlElement(name = "maximum_mass_axle_braked") - protected int maximumMassAxleBraked; - @XmlElement(name = "date_first_issuing", required = true) - protected String dateFirstIssuing; - @XmlElement(name = "date_first_admission", required = true) - protected String dateFirstAdmission; - @XmlElement(name = "date_latest_name_registration", required = true) - protected String dateLatestNameRegistration; - @XmlElement(name = "apk_due_date", required = true) - protected String apkDueDate; - protected int bpm; - protected int power; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - - /** - * Gets the value of the category property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCategory() { - return category; - } - - /** - * Sets the value of the category property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCategory(String value) { - this.category = value; - } - - /** - * Gets the value of the brand property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrand() { - return brand; - } - - /** - * Sets the value of the brand property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrand(String value) { - this.brand = value; - } - - /** - * Gets the value of the model property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModel() { - return model; - } - - /** - * Sets the value of the model property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModel(String value) { - this.model = value; - } - - /** - * Gets the value of the colors property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getColors() { - return colors; - } - - /** - * Sets the value of the colors property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setColors(String value) { - this.colors = value; - } - - /** - * Gets the value of the fuelType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFuelType() { - return fuelType; - } - - /** - * Sets the value of the fuelType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFuelType(String value) { - this.fuelType = value; - } - - /** - * Gets the value of the cylinders property. - * - */ - public int getCylinders() { - return cylinders; - } - - /** - * Sets the value of the cylinders property. - * - */ - public void setCylinders(int value) { - this.cylinders = value; - } - - /** - * Gets the value of the cylinderCapacity property. - * - */ - public int getCylinderCapacity() { - return cylinderCapacity; - } - - /** - * Sets the value of the cylinderCapacity property. - * - */ - public void setCylinderCapacity(int value) { - this.cylinderCapacity = value; - } - - /** - * Gets the value of the seats property. - * - */ - public int getSeats() { - return seats; - } - - /** - * Sets the value of the seats property. - * - */ - public void setSeats(int value) { - this.seats = value; - } - - /** - * Gets the value of the standingRoom property. - * - */ - public int getStandingRoom() { - return standingRoom; - } - - /** - * Sets the value of the standingRoom property. - * - */ - public void setStandingRoom(int value) { - this.standingRoom = value; - } - - /** - * Gets the value of the unladenMass property. - * - */ - public int getUnladenMass() { - return unladenMass; - } - - /** - * Sets the value of the unladenMass property. - * - */ - public void setUnladenMass(int value) { - this.unladenMass = value; - } - - /** - * Gets the value of the grossVehicleMass property. - * - */ - public int getGrossVehicleMass() { - return grossVehicleMass; - } - - /** - * Sets the value of the grossVehicleMass property. - * - */ - public void setGrossVehicleMass(int value) { - this.grossVehicleMass = value; - } - - /** - * Gets the value of the massReady property. - * - */ - public int getMassReady() { - return massReady; - } - - /** - * Sets the value of the massReady property. - * - */ - public void setMassReady(int value) { - this.massReady = value; - } - - /** - * Gets the value of the maximumMassPayload property. - * - */ - public int getMaximumMassPayload() { - return maximumMassPayload; - } - - /** - * Sets the value of the maximumMassPayload property. - * - */ - public void setMaximumMassPayload(int value) { - this.maximumMassPayload = value; - } - - /** - * Gets the value of the maximumMassUnbraked property. - * - */ - public int getMaximumMassUnbraked() { - return maximumMassUnbraked; - } - - /** - * Sets the value of the maximumMassUnbraked property. - * - */ - public void setMaximumMassUnbraked(int value) { - this.maximumMassUnbraked = value; - } - - /** - * Gets the value of the maximumMassBraked property. - * - */ - public int getMaximumMassBraked() { - return maximumMassBraked; - } - - /** - * Sets the value of the maximumMassBraked property. - * - */ - public void setMaximumMassBraked(int value) { - this.maximumMassBraked = value; - } - - /** - * Gets the value of the maximumMassTrailerBraked property. - * - */ - public int getMaximumMassTrailerBraked() { - return maximumMassTrailerBraked; - } - - /** - * Sets the value of the maximumMassTrailerBraked property. - * - */ - public void setMaximumMassTrailerBraked(int value) { - this.maximumMassTrailerBraked = value; - } - - /** - * Gets the value of the maximumMassSelfBraked property. - * - */ - public int getMaximumMassSelfBraked() { - return maximumMassSelfBraked; - } - - /** - * Sets the value of the maximumMassSelfBraked property. - * - */ - public void setMaximumMassSelfBraked(int value) { - this.maximumMassSelfBraked = value; - } - - /** - * Gets the value of the maximumMassAxleBraked property. - * - */ - public int getMaximumMassAxleBraked() { - return maximumMassAxleBraked; - } - - /** - * Sets the value of the maximumMassAxleBraked property. - * - */ - public void setMaximumMassAxleBraked(int value) { - this.maximumMassAxleBraked = value; - } - - /** - * Gets the value of the dateFirstIssuing property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateFirstIssuing() { - return dateFirstIssuing; - } - - /** - * Sets the value of the dateFirstIssuing property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateFirstIssuing(String value) { - this.dateFirstIssuing = value; - } - - /** - * Gets the value of the dateFirstAdmission property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateFirstAdmission() { - return dateFirstAdmission; - } - - /** - * Sets the value of the dateFirstAdmission property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateFirstAdmission(String value) { - this.dateFirstAdmission = value; - } - - /** - * Gets the value of the dateLatestNameRegistration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateLatestNameRegistration() { - return dateLatestNameRegistration; - } - - /** - * Sets the value of the dateLatestNameRegistration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateLatestNameRegistration(String value) { - this.dateLatestNameRegistration = value; - } - - /** - * Gets the value of the apkDueDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getApkDueDate() { - return apkDueDate; - } - - /** - * Sets the value of the apkDueDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setApkDueDate(String value) { - this.apkDueDate = value; - } - - /** - * Gets the value of the bpm property. - * - */ - public int getBpm() { - return bpm; - } - - /** - * Sets the value of the bpm property. - * - */ - public void setBpm(int value) { - this.bpm = value; - } - - /** - * Gets the value of the power property. - * - */ - public int getPower() { - return power; - } - - /** - * Sets the value of the power property. - * - */ - public void setPower(int value) { - this.power = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBPV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBPV2.java deleted file mode 100644 index 099f029..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBPV2.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarBPV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarBPV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="car_data" type="{http://www.webservices.nl/soap/}CarBP"/>
- *         <element name="types" type="{http://www.webservices.nl/soap/}CarTypeArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarBPV2", propOrder = { - -}) -public class CarBPV2 { - - @XmlElement(name = "car_data", required = true) - protected CarBP carData; - protected CarTypeArray types; - - /** - * Gets the value of the carData property. - * - * @return - * possible object is - * {@link CarBP } - * - */ - public CarBP getCarData() { - return carData; - } - - /** - * Sets the value of the carData property. - * - * @param value - * allowed object is - * {@link CarBP } - * - */ - public void setCarData(CarBP value) { - this.carData = value; - } - - /** - * Gets the value of the types property. - * - * @return - * possible object is - * {@link CarTypeArray } - * - */ - public CarTypeArray getTypes() { - return types; - } - - /** - * Sets the value of the types property. - * - * @param value - * allowed object is - * {@link CarTypeArray } - * - */ - public void setTypes(CarTypeArray value) { - this.types = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBody.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBody.java deleted file mode 100644 index e920b6a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBody.java +++ /dev/null @@ -1,119 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarBody complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarBody">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarBody", propOrder = { - -}) -public class CarBody { - - protected Integer id; - protected String code; - protected String description; - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setId(Integer value) { - this.id = value; - } - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBodyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBodyArray.java deleted file mode 100644 index 61e69b0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarBodyArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarBodyArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarBodyArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CarBody" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarBodyArray", propOrder = { - "item" -}) -public class CarBodyArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CarBody } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarCheckCode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarCheckCode.java deleted file mode 100644 index 2af7fe2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarCheckCode.java +++ /dev/null @@ -1,105 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarCheckCode complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarCheckCode">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correct" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarCheckCode", propOrder = { - -}) -public class CarCheckCode { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - protected boolean correct; - protected boolean active; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - - /** - * Gets the value of the correct property. - * - */ - public boolean isCorrect() { - return correct; - } - - /** - * Sets the value of the correct property. - * - */ - public void setCorrect(boolean value) { - this.correct = value; - } - - /** - * Gets the value of the active property. - * - */ - public boolean isActive() { - return active; - } - - /** - * Sets the value of the active property. - * - */ - public void setActive(boolean value) { - this.active = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarDataV3Result.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarDataV3Result.java deleted file mode 100644 index bd298bc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarDataV3Result.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarDataV3Result complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarDataV3Result">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="car_data" type="{http://www.webservices.nl/soap/}CarV3"/>
- *         <element name="types" type="{http://www.webservices.nl/soap/}CarTypeArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarDataV3Result", propOrder = { - -}) -public class CarDataV3Result { - - @XmlElement(name = "car_data", required = true) - protected CarV3 carData; - @XmlElement(required = true) - protected CarTypeArray types; - - /** - * Gets the value of the carData property. - * - * @return - * possible object is - * {@link CarV3 } - * - */ - public CarV3 getCarData() { - return carData; - } - - /** - * Sets the value of the carData property. - * - * @param value - * allowed object is - * {@link CarV3 } - * - */ - public void setCarData(CarV3 value) { - this.carData = value; - } - - /** - * Gets the value of the types property. - * - * @return - * possible object is - * {@link CarTypeArray } - * - */ - public CarTypeArray getTypes() { - return types; - } - - /** - * Sets the value of the types property. - * - * @param value - * allowed object is - * {@link CarTypeArray } - * - */ - public void setTypes(CarTypeArray value) { - this.types = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarEnvironment.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarEnvironment.java deleted file mode 100644 index 1dab800..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarEnvironment.java +++ /dev/null @@ -1,232 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarEnvironment complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarEnvironment">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="emission_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="energy_label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="g3_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="particulate_filter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="fuel_usage_city" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="fuel_usage_highway" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="fuel_usage_combined" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarEnvironment", propOrder = { - -}) -public class CarEnvironment { - - @XmlElement(name = "emission_code") - protected String emissionCode; - @XmlElement(name = "energy_label") - protected String energyLabel; - @XmlElement(name = "g3_indication") - protected Boolean g3Indication; - @XmlElement(name = "particulate_filter") - protected String particulateFilter; - @XmlElement(name = "fuel_usage_city") - protected BigDecimal fuelUsageCity; - @XmlElement(name = "fuel_usage_highway") - protected BigDecimal fuelUsageHighway; - @XmlElement(name = "fuel_usage_combined") - protected BigDecimal fuelUsageCombined; - - /** - * Gets the value of the emissionCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmissionCode() { - return emissionCode; - } - - /** - * Sets the value of the emissionCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmissionCode(String value) { - this.emissionCode = value; - } - - /** - * Gets the value of the energyLabel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnergyLabel() { - return energyLabel; - } - - /** - * Sets the value of the energyLabel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnergyLabel(String value) { - this.energyLabel = value; - } - - /** - * Gets the value of the g3Indication property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isG3Indication() { - return g3Indication; - } - - /** - * Sets the value of the g3Indication property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setG3Indication(Boolean value) { - this.g3Indication = value; - } - - /** - * Gets the value of the particulateFilter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getParticulateFilter() { - return particulateFilter; - } - - /** - * Sets the value of the particulateFilter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setParticulateFilter(String value) { - this.particulateFilter = value; - } - - /** - * Gets the value of the fuelUsageCity property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getFuelUsageCity() { - return fuelUsageCity; - } - - /** - * Sets the value of the fuelUsageCity property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setFuelUsageCity(BigDecimal value) { - this.fuelUsageCity = value; - } - - /** - * Gets the value of the fuelUsageHighway property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getFuelUsageHighway() { - return fuelUsageHighway; - } - - /** - * Sets the value of the fuelUsageHighway property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setFuelUsageHighway(BigDecimal value) { - this.fuelUsageHighway = value; - } - - /** - * Gets the value of the fuelUsageCombined property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getFuelUsageCombined() { - return fuelUsageCombined; - } - - /** - * Sets the value of the fuelUsageCombined property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setFuelUsageCombined(BigDecimal value) { - this.fuelUsageCombined = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarExtended.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarExtended.java deleted file mode 100644 index 637eef6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarExtended.java +++ /dev/null @@ -1,1082 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarExtended complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarExtended">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="check_code_status" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="brand" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="brand_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="model" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="body_style" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="colors" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="fuel_types" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="cylinders" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="cylinder_capacity" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="seats" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="standing_room" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="unladen_mass" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="gross_vehicle_mass" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="mass_ready" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_payload" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_unbraked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_trailer_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_self_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_axle_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="date_first_issuing" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_first_admission" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_latest_name_registration" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="apk_due_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="bpm" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="power" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="g3_indicator" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="particulate_filter" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="co2_emission_combined" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="emission_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="top_speed" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="fuel_consumption_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="fuel_consumption_freeway" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="fuel_consumption_combined" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="energy_label" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="stolen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="insured" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="license_plate_signal" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="awaiting_inspection" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="catalog_price" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="european_type_approval_mark" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="types" type="{http://www.webservices.nl/soap/}CarTypeArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarExtended", propOrder = { - -}) -public class CarExtended { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - @XmlElement(required = true) - protected String code; - @XmlElement(name = "check_code_status") - protected boolean checkCodeStatus; - @XmlElement(required = true) - protected String category; - @XmlElement(required = true) - protected String brand; - @XmlElement(name = "brand_code", required = true) - protected String brandCode; - @XmlElement(required = true) - protected StringArray model; - @XmlElement(name = "body_style", required = true) - protected String bodyStyle; - @XmlElement(required = true) - protected StringArray colors; - @XmlElement(name = "fuel_types", required = true) - protected StringArray fuelTypes; - protected int cylinders; - @XmlElement(name = "cylinder_capacity") - protected int cylinderCapacity; - protected int seats; - @XmlElement(name = "standing_room") - protected int standingRoom; - @XmlElement(name = "unladen_mass") - protected int unladenMass; - @XmlElement(name = "gross_vehicle_mass") - protected int grossVehicleMass; - @XmlElement(name = "mass_ready") - protected int massReady; - @XmlElement(name = "maximum_mass_payload") - protected int maximumMassPayload; - @XmlElement(name = "maximum_mass_unbraked") - protected int maximumMassUnbraked; - @XmlElement(name = "maximum_mass_braked") - protected int maximumMassBraked; - @XmlElement(name = "maximum_mass_trailer_braked") - protected int maximumMassTrailerBraked; - @XmlElement(name = "maximum_mass_self_braked") - protected int maximumMassSelfBraked; - @XmlElement(name = "maximum_mass_axle_braked") - protected int maximumMassAxleBraked; - @XmlElement(name = "date_first_issuing", required = true) - protected String dateFirstIssuing; - @XmlElement(name = "date_first_admission", required = true) - protected String dateFirstAdmission; - @XmlElement(name = "date_latest_name_registration", required = true) - protected String dateLatestNameRegistration; - @XmlElement(name = "apk_due_date", required = true) - protected String apkDueDate; - protected int bpm; - protected int power; - @XmlElement(name = "g3_indicator", required = true) - protected String g3Indicator; - @XmlElement(name = "particulate_filter", required = true) - protected String particulateFilter; - @XmlElement(name = "co2_emission_combined", required = true) - protected String co2EmissionCombined; - @XmlElement(name = "emission_code", required = true) - protected String emissionCode; - @XmlElement(name = "top_speed") - protected int topSpeed; - @XmlElement(name = "fuel_consumption_city", required = true) - protected String fuelConsumptionCity; - @XmlElement(name = "fuel_consumption_freeway", required = true) - protected String fuelConsumptionFreeway; - @XmlElement(name = "fuel_consumption_combined", required = true) - protected String fuelConsumptionCombined; - @XmlElement(name = "energy_label", required = true) - protected String energyLabel; - protected boolean stolen; - protected boolean insured; - @XmlElement(name = "license_plate_signal") - protected boolean licensePlateSignal; - @XmlElement(name = "awaiting_inspection") - protected boolean awaitingInspection; - @XmlElement(name = "catalog_price", required = true) - protected String catalogPrice; - @XmlElement(name = "european_type_approval_mark", required = true) - protected String europeanTypeApprovalMark; - protected CarTypeArray types; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - - /** - * Gets the value of the checkCodeStatus property. - * - */ - public boolean isCheckCodeStatus() { - return checkCodeStatus; - } - - /** - * Sets the value of the checkCodeStatus property. - * - */ - public void setCheckCodeStatus(boolean value) { - this.checkCodeStatus = value; - } - - /** - * Gets the value of the category property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCategory() { - return category; - } - - /** - * Sets the value of the category property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCategory(String value) { - this.category = value; - } - - /** - * Gets the value of the brand property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrand() { - return brand; - } - - /** - * Sets the value of the brand property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrand(String value) { - this.brand = value; - } - - /** - * Gets the value of the brandCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrandCode() { - return brandCode; - } - - /** - * Sets the value of the brandCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrandCode(String value) { - this.brandCode = value; - } - - /** - * Gets the value of the model property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getModel() { - return model; - } - - /** - * Sets the value of the model property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setModel(StringArray value) { - this.model = value; - } - - /** - * Gets the value of the bodyStyle property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBodyStyle() { - return bodyStyle; - } - - /** - * Sets the value of the bodyStyle property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBodyStyle(String value) { - this.bodyStyle = value; - } - - /** - * Gets the value of the colors property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getColors() { - return colors; - } - - /** - * Sets the value of the colors property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setColors(StringArray value) { - this.colors = value; - } - - /** - * Gets the value of the fuelTypes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getFuelTypes() { - return fuelTypes; - } - - /** - * Sets the value of the fuelTypes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setFuelTypes(StringArray value) { - this.fuelTypes = value; - } - - /** - * Gets the value of the cylinders property. - * - */ - public int getCylinders() { - return cylinders; - } - - /** - * Sets the value of the cylinders property. - * - */ - public void setCylinders(int value) { - this.cylinders = value; - } - - /** - * Gets the value of the cylinderCapacity property. - * - */ - public int getCylinderCapacity() { - return cylinderCapacity; - } - - /** - * Sets the value of the cylinderCapacity property. - * - */ - public void setCylinderCapacity(int value) { - this.cylinderCapacity = value; - } - - /** - * Gets the value of the seats property. - * - */ - public int getSeats() { - return seats; - } - - /** - * Sets the value of the seats property. - * - */ - public void setSeats(int value) { - this.seats = value; - } - - /** - * Gets the value of the standingRoom property. - * - */ - public int getStandingRoom() { - return standingRoom; - } - - /** - * Sets the value of the standingRoom property. - * - */ - public void setStandingRoom(int value) { - this.standingRoom = value; - } - - /** - * Gets the value of the unladenMass property. - * - */ - public int getUnladenMass() { - return unladenMass; - } - - /** - * Sets the value of the unladenMass property. - * - */ - public void setUnladenMass(int value) { - this.unladenMass = value; - } - - /** - * Gets the value of the grossVehicleMass property. - * - */ - public int getGrossVehicleMass() { - return grossVehicleMass; - } - - /** - * Sets the value of the grossVehicleMass property. - * - */ - public void setGrossVehicleMass(int value) { - this.grossVehicleMass = value; - } - - /** - * Gets the value of the massReady property. - * - */ - public int getMassReady() { - return massReady; - } - - /** - * Sets the value of the massReady property. - * - */ - public void setMassReady(int value) { - this.massReady = value; - } - - /** - * Gets the value of the maximumMassPayload property. - * - */ - public int getMaximumMassPayload() { - return maximumMassPayload; - } - - /** - * Sets the value of the maximumMassPayload property. - * - */ - public void setMaximumMassPayload(int value) { - this.maximumMassPayload = value; - } - - /** - * Gets the value of the maximumMassUnbraked property. - * - */ - public int getMaximumMassUnbraked() { - return maximumMassUnbraked; - } - - /** - * Sets the value of the maximumMassUnbraked property. - * - */ - public void setMaximumMassUnbraked(int value) { - this.maximumMassUnbraked = value; - } - - /** - * Gets the value of the maximumMassBraked property. - * - */ - public int getMaximumMassBraked() { - return maximumMassBraked; - } - - /** - * Sets the value of the maximumMassBraked property. - * - */ - public void setMaximumMassBraked(int value) { - this.maximumMassBraked = value; - } - - /** - * Gets the value of the maximumMassTrailerBraked property. - * - */ - public int getMaximumMassTrailerBraked() { - return maximumMassTrailerBraked; - } - - /** - * Sets the value of the maximumMassTrailerBraked property. - * - */ - public void setMaximumMassTrailerBraked(int value) { - this.maximumMassTrailerBraked = value; - } - - /** - * Gets the value of the maximumMassSelfBraked property. - * - */ - public int getMaximumMassSelfBraked() { - return maximumMassSelfBraked; - } - - /** - * Sets the value of the maximumMassSelfBraked property. - * - */ - public void setMaximumMassSelfBraked(int value) { - this.maximumMassSelfBraked = value; - } - - /** - * Gets the value of the maximumMassAxleBraked property. - * - */ - public int getMaximumMassAxleBraked() { - return maximumMassAxleBraked; - } - - /** - * Sets the value of the maximumMassAxleBraked property. - * - */ - public void setMaximumMassAxleBraked(int value) { - this.maximumMassAxleBraked = value; - } - - /** - * Gets the value of the dateFirstIssuing property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateFirstIssuing() { - return dateFirstIssuing; - } - - /** - * Sets the value of the dateFirstIssuing property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateFirstIssuing(String value) { - this.dateFirstIssuing = value; - } - - /** - * Gets the value of the dateFirstAdmission property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateFirstAdmission() { - return dateFirstAdmission; - } - - /** - * Sets the value of the dateFirstAdmission property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateFirstAdmission(String value) { - this.dateFirstAdmission = value; - } - - /** - * Gets the value of the dateLatestNameRegistration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateLatestNameRegistration() { - return dateLatestNameRegistration; - } - - /** - * Sets the value of the dateLatestNameRegistration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateLatestNameRegistration(String value) { - this.dateLatestNameRegistration = value; - } - - /** - * Gets the value of the apkDueDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getApkDueDate() { - return apkDueDate; - } - - /** - * Sets the value of the apkDueDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setApkDueDate(String value) { - this.apkDueDate = value; - } - - /** - * Gets the value of the bpm property. - * - */ - public int getBpm() { - return bpm; - } - - /** - * Sets the value of the bpm property. - * - */ - public void setBpm(int value) { - this.bpm = value; - } - - /** - * Gets the value of the power property. - * - */ - public int getPower() { - return power; - } - - /** - * Sets the value of the power property. - * - */ - public void setPower(int value) { - this.power = value; - } - - /** - * Gets the value of the g3Indicator property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getG3Indicator() { - return g3Indicator; - } - - /** - * Sets the value of the g3Indicator property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setG3Indicator(String value) { - this.g3Indicator = value; - } - - /** - * Gets the value of the particulateFilter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getParticulateFilter() { - return particulateFilter; - } - - /** - * Sets the value of the particulateFilter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setParticulateFilter(String value) { - this.particulateFilter = value; - } - - /** - * Gets the value of the co2EmissionCombined property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCo2EmissionCombined() { - return co2EmissionCombined; - } - - /** - * Sets the value of the co2EmissionCombined property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCo2EmissionCombined(String value) { - this.co2EmissionCombined = value; - } - - /** - * Gets the value of the emissionCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmissionCode() { - return emissionCode; - } - - /** - * Sets the value of the emissionCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmissionCode(String value) { - this.emissionCode = value; - } - - /** - * Gets the value of the topSpeed property. - * - */ - public int getTopSpeed() { - return topSpeed; - } - - /** - * Sets the value of the topSpeed property. - * - */ - public void setTopSpeed(int value) { - this.topSpeed = value; - } - - /** - * Gets the value of the fuelConsumptionCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFuelConsumptionCity() { - return fuelConsumptionCity; - } - - /** - * Sets the value of the fuelConsumptionCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFuelConsumptionCity(String value) { - this.fuelConsumptionCity = value; - } - - /** - * Gets the value of the fuelConsumptionFreeway property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFuelConsumptionFreeway() { - return fuelConsumptionFreeway; - } - - /** - * Sets the value of the fuelConsumptionFreeway property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFuelConsumptionFreeway(String value) { - this.fuelConsumptionFreeway = value; - } - - /** - * Gets the value of the fuelConsumptionCombined property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFuelConsumptionCombined() { - return fuelConsumptionCombined; - } - - /** - * Sets the value of the fuelConsumptionCombined property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFuelConsumptionCombined(String value) { - this.fuelConsumptionCombined = value; - } - - /** - * Gets the value of the energyLabel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnergyLabel() { - return energyLabel; - } - - /** - * Sets the value of the energyLabel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnergyLabel(String value) { - this.energyLabel = value; - } - - /** - * Gets the value of the stolen property. - * - */ - public boolean isStolen() { - return stolen; - } - - /** - * Sets the value of the stolen property. - * - */ - public void setStolen(boolean value) { - this.stolen = value; - } - - /** - * Gets the value of the insured property. - * - */ - public boolean isInsured() { - return insured; - } - - /** - * Sets the value of the insured property. - * - */ - public void setInsured(boolean value) { - this.insured = value; - } - - /** - * Gets the value of the licensePlateSignal property. - * - */ - public boolean isLicensePlateSignal() { - return licensePlateSignal; - } - - /** - * Sets the value of the licensePlateSignal property. - * - */ - public void setLicensePlateSignal(boolean value) { - this.licensePlateSignal = value; - } - - /** - * Gets the value of the awaitingInspection property. - * - */ - public boolean isAwaitingInspection() { - return awaitingInspection; - } - - /** - * Sets the value of the awaitingInspection property. - * - */ - public void setAwaitingInspection(boolean value) { - this.awaitingInspection = value; - } - - /** - * Gets the value of the catalogPrice property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCatalogPrice() { - return catalogPrice; - } - - /** - * Sets the value of the catalogPrice property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCatalogPrice(String value) { - this.catalogPrice = value; - } - - /** - * Gets the value of the europeanTypeApprovalMark property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEuropeanTypeApprovalMark() { - return europeanTypeApprovalMark; - } - - /** - * Sets the value of the europeanTypeApprovalMark property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEuropeanTypeApprovalMark(String value) { - this.europeanTypeApprovalMark = value; - } - - /** - * Gets the value of the types property. - * - * @return - * possible object is - * {@link CarTypeArray } - * - */ - public CarTypeArray getTypes() { - return types; - } - - /** - * Sets the value of the types property. - * - * @param value - * allowed object is - * {@link CarTypeArray } - * - */ - public void setTypes(CarTypeArray value) { - this.types = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarOption.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarOption.java deleted file mode 100644 index 3f35311..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarOption.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CarOption complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarOption">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="standaard" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="pakket" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="standaard_sinds_datum" type="{http://www.w3.org/2001/XMLSchema}gYearMonth" minOccurs="0"/>
- *         <element name="prijs" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarOption", propOrder = { - -}) -public class CarOption { - - protected Boolean standaard; - protected Integer pakket; - @XmlElement(name = "standaard_sinds_datum") - @XmlSchemaType(name = "gYearMonth") - protected XMLGregorianCalendar standaardSindsDatum; - protected Integer prijs; - - /** - * Gets the value of the standaard property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isStandaard() { - return standaard; - } - - /** - * Sets the value of the standaard property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setStandaard(Boolean value) { - this.standaard = value; - } - - /** - * Gets the value of the pakket property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPakket() { - return pakket; - } - - /** - * Sets the value of the pakket property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPakket(Integer value) { - this.pakket = value; - } - - /** - * Gets the value of the standaardSindsDatum property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStandaardSindsDatum() { - return standaardSindsDatum; - } - - /** - * Sets the value of the standaardSindsDatum property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStandaardSindsDatum(XMLGregorianCalendar value) { - this.standaardSindsDatum = value; - } - - /** - * Gets the value of the prijs property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPrijs() { - return prijs; - } - - /** - * Sets the value of the prijs property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPrijs(Integer value) { - this.prijs = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarOptions.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarOptions.java deleted file mode 100644 index 4c0e4ca..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarOptions.java +++ /dev/null @@ -1,5448 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarOptions complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarOptions">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="car_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="merk" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="serie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="serie_jaar_van" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="serie_jaar_tot" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="model_maand_van" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="model_jaar_van" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="model_maand_tot" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="model_jaar_tot" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="belasting_min" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="belasting_max" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="algemene_garantie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="algemene_garantie_km" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="carrosserie_garantie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="deuren" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="carrosserietype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="aantal_versnellingen" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="soort_schakeling" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="aandrijving" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="brandstoftype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="aantal_cilinders" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="bouwwijze" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="kleppen_per_cilinder" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="cilinderinhoud" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="boring" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="slag" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="compressieverhouding" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="vermogen_kw" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="vermogen_pk" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="vermogen_tpm" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="koppel" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="koppel_tpm" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="katalysator" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="brandstofsysteem" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="klepbediening" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="turbo" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="wielophanging_voor" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="wielophanging_achter" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="vering_voor" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="vering_achter" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="stabilisator_voor" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="stabilisator_achter" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="remmen_voor" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="remmen_voor_mm" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="remmen_achter" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="remmen_achter_mm" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="cw_waarde" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="lengte" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="breedte" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="hoogte" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="wielbasis" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="spoorbreedte_voor" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="spoorbreedte_achter" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="draaicirkel" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="bandenmaat_voor" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="bandenmaat_achter" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="massa" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="max_toelaatbare_massa" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="max_aanhanger_geremd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="max_aanhanger_ongeremd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="max_kogeldruk" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="max_dakbelasting" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="koffer_min" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="koffer_max" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="tankinhoud" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="topsnelheid" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="acceleratie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="verbruik_binnen_bebouwde_kom" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="verbruik_buiten_bebouwde_kom" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="verbruik_gecombineerd" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="co2_uitstoot" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="verbruik_gemiddeld" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="abs" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="remkrachtverdeling" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="brakeassist" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="tractiecontrole" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="sperdifferentieel" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="stabiliteitsregeling" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="regelbare_schokdemping" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="niveauregeling" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="airbag_bestuurder" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="airbag_passagier" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="airbag_opzijvoor" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="airbag_opzijachter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="airbag_hoofdvoor" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="airbag_hoofdachter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="gordelspanners" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="verstelbare_gordelhoogte" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="startonderbreker" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="inbraakalarm" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="centrale_deurvergrendeling" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="afstandbediening_deurvergrendeling" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="automatische_vergrendeling" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="keyless_entry" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="elektrische_ramen_voor" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="elektrische_ramen_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="stuurbekrachtiging" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="stuurschakeling" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="cruise_control" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="radar_cruise_control" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="airconditioning" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="klimaatregeling" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="gescheiden_temperatuurregeling" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="pollenfilter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="parkeersensor" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="hoofdsteunen_voor" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="hoofdsteunen_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="verstelbare_hoofdsteunen_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="derde_hoofdsteun_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="derde_driepuntsgordel_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="verstelbare_lendensteun_bestuurder" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="verstelbare_lendensteun_passagier" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="hoogteverstelling_bestuurder" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="hoogteverstelling_passagier" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="elektrische_stoelverstelling" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="geheugen_stoelverstelling" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="verwarmde_zitplaatsen_voor" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="verwarmde_zitplaatsen_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="sportstoelen" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="bekledingstof_leer" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="lerenbekleding" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="hoogteverstelling_stuur" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="diepteverstelling_stuur" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="elektrische_stuurverstelling" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="leer_bekleed_stuur" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="middenarmsteun_voor" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="middenarmsteun_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="neerklapbare_achterbank" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="in_delen_neerklapbaar_achterbank" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="opbergvak_linkerportier" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="bekerhouder_voor" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="bekerhouder_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="zonnescherm_achterruit" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="dagteller" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="toerenteller" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="temperatuurmeter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="oliepeilmeter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="oliedrukmeter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="olietemperatuurmeter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="voltmeter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="verbruiksmeter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="turbodrukmeter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="buitentemperatuurmeter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="klokje" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="boardcomputer" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="luidsprekers" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="stereoinstallatie" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="cdspeler" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="cdwisselaar" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="audiostuurbediening" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="bandenspanningssensor" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="navigatiesysteem" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="televisie" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="telefoonvoorbereiding" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="telefoon" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="intervalruitenwisser" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="regelbare_interval" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="regensensor" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="ruitenwisser_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="achterruitverwarming" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="voorruitverwarming" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="verwarmde_ruitensproeiers" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="gelaagde_voorruit" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="getintglas" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="schuifdak" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="elektrisch_schuifdak" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="beschermstrips_opzij" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="bumpers_meegespoten" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="metallic_lak" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="lichtmetalen_velgen" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="rechter_buitenspiegel" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="binnenuit_verstelbare_buitenspiegel" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="elektrische_spiegels" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="verwarmde_spiegels" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="inklapbare_spiegels" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="meegespoten_spiegels" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="dodehoekspiegel_bestuurder" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="dimmende_binnenspiegel" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="dimmende_buitenspiegel" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="dakrails" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="binnenuit_te_openen_tankklep" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="binnenuit_te_openen_bagageklep" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="op_afstand_te_openen_bagageklep" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="halogeen_koplampen" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="xenon_koplampen" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="verstelbare_koplampen" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="koplampsproeiers" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="automatisch_inschakelende_koplampen" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="verstralers" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="mistlampen_voor" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="mistlampen_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="zoemer_vergeten_verlichting" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="verlichte_bagageruimte" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="verlichte_motorruimte" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="verlicht_dashboardkastje" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="regelbare_dashboardverlichting" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="leeslampje_voor" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="leeslampje_achter" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="verlichte_makeupspiegel" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="vertraging_interieurverlichting" type="{http://www.webservices.nl/soap/}CarOption"/>
- *         <element name="portierverlichting" type="{http://www.webservices.nl/soap/}CarOption"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarOptions", propOrder = { - -}) -public class CarOptions { - - @XmlElement(name = "car_id", required = true) - protected String carId; - @XmlElement(required = true) - protected String merk; - @XmlElement(required = true) - protected String serie; - @XmlElement(name = "serie_jaar_van") - protected int serieJaarVan; - @XmlElement(name = "serie_jaar_tot") - protected int serieJaarTot; - @XmlElement(required = true) - protected String model; - @XmlElement(name = "model_maand_van") - protected int modelMaandVan; - @XmlElement(name = "model_jaar_van") - protected int modelJaarVan; - @XmlElement(name = "model_maand_tot") - protected int modelMaandTot; - @XmlElement(name = "model_jaar_tot") - protected int modelJaarTot; - @XmlElement(name = "belasting_min", required = true) - protected String belastingMin; - @XmlElement(name = "belasting_max", required = true) - protected String belastingMax; - @XmlElement(name = "algemene_garantie", required = true) - protected String algemeneGarantie; - @XmlElement(name = "algemene_garantie_km", required = true) - protected String algemeneGarantieKm; - @XmlElement(name = "carrosserie_garantie", required = true) - protected String carrosserieGarantie; - @XmlElement(required = true) - protected String deuren; - @XmlElement(required = true) - protected String carrosserietype; - @XmlElement(name = "aantal_versnellingen", required = true) - protected String aantalVersnellingen; - @XmlElement(name = "soort_schakeling", required = true) - protected String soortSchakeling; - @XmlElement(required = true) - protected String aandrijving; - @XmlElement(required = true) - protected String brandstoftype; - @XmlElement(name = "aantal_cilinders", required = true) - protected String aantalCilinders; - @XmlElement(required = true) - protected String bouwwijze; - @XmlElement(name = "kleppen_per_cilinder", required = true) - protected String kleppenPerCilinder; - @XmlElement(required = true) - protected String cilinderinhoud; - @XmlElement(required = true) - protected String boring; - @XmlElement(required = true) - protected String slag; - @XmlElement(required = true) - protected String compressieverhouding; - @XmlElement(name = "vermogen_kw", required = true) - protected String vermogenKw; - @XmlElement(name = "vermogen_pk", required = true) - protected String vermogenPk; - @XmlElement(name = "vermogen_tpm", required = true) - protected String vermogenTpm; - @XmlElement(required = true) - protected String koppel; - @XmlElement(name = "koppel_tpm", required = true) - protected String koppelTpm; - @XmlElement(required = true) - protected String katalysator; - @XmlElement(required = true) - protected String brandstofsysteem; - @XmlElement(required = true) - protected String klepbediening; - @XmlElement(required = true) - protected String turbo; - @XmlElement(name = "wielophanging_voor", required = true) - protected String wielophangingVoor; - @XmlElement(name = "wielophanging_achter", required = true) - protected String wielophangingAchter; - @XmlElement(name = "vering_voor", required = true) - protected String veringVoor; - @XmlElement(name = "vering_achter", required = true) - protected String veringAchter; - @XmlElement(name = "stabilisator_voor", required = true) - protected String stabilisatorVoor; - @XmlElement(name = "stabilisator_achter", required = true) - protected String stabilisatorAchter; - @XmlElement(name = "remmen_voor", required = true) - protected String remmenVoor; - @XmlElement(name = "remmen_voor_mm", required = true) - protected String remmenVoorMm; - @XmlElement(name = "remmen_achter", required = true) - protected String remmenAchter; - @XmlElement(name = "remmen_achter_mm", required = true) - protected String remmenAchterMm; - @XmlElement(name = "cw_waarde", required = true) - protected String cwWaarde; - @XmlElement(required = true) - protected String lengte; - @XmlElement(required = true) - protected String breedte; - @XmlElement(required = true) - protected String hoogte; - @XmlElement(required = true) - protected String wielbasis; - @XmlElement(name = "spoorbreedte_voor", required = true) - protected String spoorbreedteVoor; - @XmlElement(name = "spoorbreedte_achter", required = true) - protected String spoorbreedteAchter; - @XmlElement(required = true) - protected String draaicirkel; - @XmlElement(name = "bandenmaat_voor", required = true) - protected String bandenmaatVoor; - @XmlElement(name = "bandenmaat_achter", required = true) - protected String bandenmaatAchter; - @XmlElement(required = true) - protected String massa; - @XmlElement(name = "max_toelaatbare_massa", required = true) - protected String maxToelaatbareMassa; - @XmlElement(name = "max_aanhanger_geremd", required = true) - protected String maxAanhangerGeremd; - @XmlElement(name = "max_aanhanger_ongeremd", required = true) - protected String maxAanhangerOngeremd; - @XmlElement(name = "max_kogeldruk", required = true) - protected String maxKogeldruk; - @XmlElement(name = "max_dakbelasting", required = true) - protected String maxDakbelasting; - @XmlElement(name = "koffer_min", required = true) - protected String kofferMin; - @XmlElement(name = "koffer_max", required = true) - protected String kofferMax; - @XmlElement(required = true) - protected String tankinhoud; - @XmlElement(required = true) - protected String topsnelheid; - @XmlElement(required = true) - protected String acceleratie; - @XmlElement(name = "verbruik_binnen_bebouwde_kom", required = true) - protected String verbruikBinnenBebouwdeKom; - @XmlElement(name = "verbruik_buiten_bebouwde_kom", required = true) - protected String verbruikBuitenBebouwdeKom; - @XmlElement(name = "verbruik_gecombineerd", required = true) - protected String verbruikGecombineerd; - @XmlElement(name = "co2_uitstoot", required = true) - protected String co2Uitstoot; - @XmlElement(name = "verbruik_gemiddeld", required = true) - protected String verbruikGemiddeld; - @XmlElement(required = true) - protected CarOption abs; - @XmlElement(required = true) - protected CarOption remkrachtverdeling; - @XmlElement(required = true) - protected CarOption brakeassist; - @XmlElement(required = true) - protected CarOption tractiecontrole; - @XmlElement(required = true) - protected CarOption sperdifferentieel; - @XmlElement(required = true) - protected CarOption stabiliteitsregeling; - @XmlElement(name = "regelbare_schokdemping", required = true) - protected CarOption regelbareSchokdemping; - @XmlElement(required = true) - protected CarOption niveauregeling; - @XmlElement(name = "airbag_bestuurder", required = true) - protected CarOption airbagBestuurder; - @XmlElement(name = "airbag_passagier", required = true) - protected CarOption airbagPassagier; - @XmlElement(name = "airbag_opzijvoor", required = true) - protected CarOption airbagOpzijvoor; - @XmlElement(name = "airbag_opzijachter", required = true) - protected CarOption airbagOpzijachter; - @XmlElement(name = "airbag_hoofdvoor", required = true) - protected CarOption airbagHoofdvoor; - @XmlElement(name = "airbag_hoofdachter", required = true) - protected CarOption airbagHoofdachter; - @XmlElement(required = true) - protected CarOption gordelspanners; - @XmlElement(name = "verstelbare_gordelhoogte", required = true) - protected CarOption verstelbareGordelhoogte; - @XmlElement(required = true) - protected CarOption startonderbreker; - @XmlElement(required = true) - protected CarOption inbraakalarm; - @XmlElement(name = "centrale_deurvergrendeling", required = true) - protected CarOption centraleDeurvergrendeling; - @XmlElement(name = "afstandbediening_deurvergrendeling", required = true) - protected CarOption afstandbedieningDeurvergrendeling; - @XmlElement(name = "automatische_vergrendeling", required = true) - protected CarOption automatischeVergrendeling; - @XmlElement(name = "keyless_entry", required = true) - protected CarOption keylessEntry; - @XmlElement(name = "elektrische_ramen_voor", required = true) - protected CarOption elektrischeRamenVoor; - @XmlElement(name = "elektrische_ramen_achter", required = true) - protected CarOption elektrischeRamenAchter; - @XmlElement(required = true) - protected CarOption stuurbekrachtiging; - @XmlElement(required = true) - protected CarOption stuurschakeling; - @XmlElement(name = "cruise_control", required = true) - protected CarOption cruiseControl; - @XmlElement(name = "radar_cruise_control", required = true) - protected CarOption radarCruiseControl; - @XmlElement(required = true) - protected CarOption airconditioning; - @XmlElement(required = true) - protected CarOption klimaatregeling; - @XmlElement(name = "gescheiden_temperatuurregeling", required = true) - protected CarOption gescheidenTemperatuurregeling; - @XmlElement(required = true) - protected CarOption pollenfilter; - @XmlElement(required = true) - protected CarOption parkeersensor; - @XmlElement(name = "hoofdsteunen_voor", required = true) - protected CarOption hoofdsteunenVoor; - @XmlElement(name = "hoofdsteunen_achter", required = true) - protected CarOption hoofdsteunenAchter; - @XmlElement(name = "verstelbare_hoofdsteunen_achter", required = true) - protected CarOption verstelbareHoofdsteunenAchter; - @XmlElement(name = "derde_hoofdsteun_achter", required = true) - protected CarOption derdeHoofdsteunAchter; - @XmlElement(name = "derde_driepuntsgordel_achter", required = true) - protected CarOption derdeDriepuntsgordelAchter; - @XmlElement(name = "verstelbare_lendensteun_bestuurder", required = true) - protected CarOption verstelbareLendensteunBestuurder; - @XmlElement(name = "verstelbare_lendensteun_passagier", required = true) - protected CarOption verstelbareLendensteunPassagier; - @XmlElement(name = "hoogteverstelling_bestuurder", required = true) - protected CarOption hoogteverstellingBestuurder; - @XmlElement(name = "hoogteverstelling_passagier", required = true) - protected CarOption hoogteverstellingPassagier; - @XmlElement(name = "elektrische_stoelverstelling", required = true) - protected CarOption elektrischeStoelverstelling; - @XmlElement(name = "geheugen_stoelverstelling", required = true) - protected CarOption geheugenStoelverstelling; - @XmlElement(name = "verwarmde_zitplaatsen_voor", required = true) - protected CarOption verwarmdeZitplaatsenVoor; - @XmlElement(name = "verwarmde_zitplaatsen_achter", required = true) - protected CarOption verwarmdeZitplaatsenAchter; - @XmlElement(required = true) - protected CarOption sportstoelen; - @XmlElement(name = "bekledingstof_leer", required = true) - protected CarOption bekledingstofLeer; - @XmlElement(required = true) - protected CarOption lerenbekleding; - @XmlElement(name = "hoogteverstelling_stuur", required = true) - protected CarOption hoogteverstellingStuur; - @XmlElement(name = "diepteverstelling_stuur", required = true) - protected CarOption diepteverstellingStuur; - @XmlElement(name = "elektrische_stuurverstelling", required = true) - protected CarOption elektrischeStuurverstelling; - @XmlElement(name = "leer_bekleed_stuur", required = true) - protected CarOption leerBekleedStuur; - @XmlElement(name = "middenarmsteun_voor", required = true) - protected CarOption middenarmsteunVoor; - @XmlElement(name = "middenarmsteun_achter", required = true) - protected CarOption middenarmsteunAchter; - @XmlElement(name = "neerklapbare_achterbank", required = true) - protected CarOption neerklapbareAchterbank; - @XmlElement(name = "in_delen_neerklapbaar_achterbank", required = true) - protected CarOption inDelenNeerklapbaarAchterbank; - @XmlElement(name = "opbergvak_linkerportier", required = true) - protected CarOption opbergvakLinkerportier; - @XmlElement(name = "bekerhouder_voor", required = true) - protected CarOption bekerhouderVoor; - @XmlElement(name = "bekerhouder_achter", required = true) - protected CarOption bekerhouderAchter; - @XmlElement(name = "zonnescherm_achterruit", required = true) - protected CarOption zonneschermAchterruit; - @XmlElement(required = true) - protected CarOption dagteller; - @XmlElement(required = true) - protected CarOption toerenteller; - @XmlElement(required = true) - protected CarOption temperatuurmeter; - @XmlElement(required = true) - protected CarOption oliepeilmeter; - @XmlElement(required = true) - protected CarOption oliedrukmeter; - @XmlElement(required = true) - protected CarOption olietemperatuurmeter; - @XmlElement(required = true) - protected CarOption voltmeter; - @XmlElement(required = true) - protected CarOption verbruiksmeter; - @XmlElement(required = true) - protected CarOption turbodrukmeter; - @XmlElement(required = true) - protected CarOption buitentemperatuurmeter; - @XmlElement(required = true) - protected CarOption klokje; - @XmlElement(required = true) - protected CarOption boardcomputer; - @XmlElement(required = true) - protected CarOption luidsprekers; - @XmlElement(required = true) - protected CarOption stereoinstallatie; - @XmlElement(required = true) - protected CarOption cdspeler; - @XmlElement(required = true) - protected CarOption cdwisselaar; - @XmlElement(required = true) - protected CarOption audiostuurbediening; - @XmlElement(required = true) - protected CarOption bandenspanningssensor; - @XmlElement(required = true) - protected CarOption navigatiesysteem; - @XmlElement(required = true) - protected CarOption televisie; - @XmlElement(required = true) - protected CarOption telefoonvoorbereiding; - @XmlElement(required = true) - protected CarOption telefoon; - @XmlElement(required = true) - protected CarOption intervalruitenwisser; - @XmlElement(name = "regelbare_interval", required = true) - protected CarOption regelbareInterval; - @XmlElement(required = true) - protected CarOption regensensor; - @XmlElement(name = "ruitenwisser_achter", required = true) - protected CarOption ruitenwisserAchter; - @XmlElement(required = true) - protected CarOption achterruitverwarming; - @XmlElement(required = true) - protected CarOption voorruitverwarming; - @XmlElement(name = "verwarmde_ruitensproeiers", required = true) - protected CarOption verwarmdeRuitensproeiers; - @XmlElement(name = "gelaagde_voorruit", required = true) - protected CarOption gelaagdeVoorruit; - @XmlElement(required = true) - protected CarOption getintglas; - @XmlElement(required = true) - protected CarOption schuifdak; - @XmlElement(name = "elektrisch_schuifdak", required = true) - protected CarOption elektrischSchuifdak; - @XmlElement(name = "beschermstrips_opzij", required = true) - protected CarOption beschermstripsOpzij; - @XmlElement(name = "bumpers_meegespoten", required = true) - protected CarOption bumpersMeegespoten; - @XmlElement(name = "metallic_lak", required = true) - protected CarOption metallicLak; - @XmlElement(name = "lichtmetalen_velgen", required = true) - protected CarOption lichtmetalenVelgen; - @XmlElement(name = "rechter_buitenspiegel", required = true) - protected CarOption rechterBuitenspiegel; - @XmlElement(name = "binnenuit_verstelbare_buitenspiegel", required = true) - protected CarOption binnenuitVerstelbareBuitenspiegel; - @XmlElement(name = "elektrische_spiegels", required = true) - protected CarOption elektrischeSpiegels; - @XmlElement(name = "verwarmde_spiegels", required = true) - protected CarOption verwarmdeSpiegels; - @XmlElement(name = "inklapbare_spiegels", required = true) - protected CarOption inklapbareSpiegels; - @XmlElement(name = "meegespoten_spiegels", required = true) - protected CarOption meegespotenSpiegels; - @XmlElement(name = "dodehoekspiegel_bestuurder", required = true) - protected CarOption dodehoekspiegelBestuurder; - @XmlElement(name = "dimmende_binnenspiegel", required = true) - protected CarOption dimmendeBinnenspiegel; - @XmlElement(name = "dimmende_buitenspiegel", required = true) - protected CarOption dimmendeBuitenspiegel; - @XmlElement(required = true) - protected CarOption dakrails; - @XmlElement(name = "binnenuit_te_openen_tankklep", required = true) - protected CarOption binnenuitTeOpenenTankklep; - @XmlElement(name = "binnenuit_te_openen_bagageklep", required = true) - protected CarOption binnenuitTeOpenenBagageklep; - @XmlElement(name = "op_afstand_te_openen_bagageklep", required = true) - protected CarOption opAfstandTeOpenenBagageklep; - @XmlElement(name = "halogeen_koplampen", required = true) - protected CarOption halogeenKoplampen; - @XmlElement(name = "xenon_koplampen", required = true) - protected CarOption xenonKoplampen; - @XmlElement(name = "verstelbare_koplampen", required = true) - protected CarOption verstelbareKoplampen; - @XmlElement(required = true) - protected CarOption koplampsproeiers; - @XmlElement(name = "automatisch_inschakelende_koplampen", required = true) - protected CarOption automatischInschakelendeKoplampen; - @XmlElement(required = true) - protected CarOption verstralers; - @XmlElement(name = "mistlampen_voor", required = true) - protected CarOption mistlampenVoor; - @XmlElement(name = "mistlampen_achter", required = true) - protected CarOption mistlampenAchter; - @XmlElement(name = "zoemer_vergeten_verlichting", required = true) - protected CarOption zoemerVergetenVerlichting; - @XmlElement(name = "verlichte_bagageruimte", required = true) - protected CarOption verlichteBagageruimte; - @XmlElement(name = "verlichte_motorruimte", required = true) - protected CarOption verlichteMotorruimte; - @XmlElement(name = "verlicht_dashboardkastje", required = true) - protected CarOption verlichtDashboardkastje; - @XmlElement(name = "regelbare_dashboardverlichting", required = true) - protected CarOption regelbareDashboardverlichting; - @XmlElement(name = "leeslampje_voor", required = true) - protected CarOption leeslampjeVoor; - @XmlElement(name = "leeslampje_achter", required = true) - protected CarOption leeslampjeAchter; - @XmlElement(name = "verlichte_makeupspiegel", required = true) - protected CarOption verlichteMakeupspiegel; - @XmlElement(name = "vertraging_interieurverlichting", required = true) - protected CarOption vertragingInterieurverlichting; - @XmlElement(required = true) - protected CarOption portierverlichting; - - /** - * Gets the value of the carId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCarId() { - return carId; - } - - /** - * Sets the value of the carId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCarId(String value) { - this.carId = value; - } - - /** - * Gets the value of the merk property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMerk() { - return merk; - } - - /** - * Sets the value of the merk property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMerk(String value) { - this.merk = value; - } - - /** - * Gets the value of the serie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSerie() { - return serie; - } - - /** - * Sets the value of the serie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSerie(String value) { - this.serie = value; - } - - /** - * Gets the value of the serieJaarVan property. - * - */ - public int getSerieJaarVan() { - return serieJaarVan; - } - - /** - * Sets the value of the serieJaarVan property. - * - */ - public void setSerieJaarVan(int value) { - this.serieJaarVan = value; - } - - /** - * Gets the value of the serieJaarTot property. - * - */ - public int getSerieJaarTot() { - return serieJaarTot; - } - - /** - * Sets the value of the serieJaarTot property. - * - */ - public void setSerieJaarTot(int value) { - this.serieJaarTot = value; - } - - /** - * Gets the value of the model property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModel() { - return model; - } - - /** - * Sets the value of the model property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModel(String value) { - this.model = value; - } - - /** - * Gets the value of the modelMaandVan property. - * - */ - public int getModelMaandVan() { - return modelMaandVan; - } - - /** - * Sets the value of the modelMaandVan property. - * - */ - public void setModelMaandVan(int value) { - this.modelMaandVan = value; - } - - /** - * Gets the value of the modelJaarVan property. - * - */ - public int getModelJaarVan() { - return modelJaarVan; - } - - /** - * Sets the value of the modelJaarVan property. - * - */ - public void setModelJaarVan(int value) { - this.modelJaarVan = value; - } - - /** - * Gets the value of the modelMaandTot property. - * - */ - public int getModelMaandTot() { - return modelMaandTot; - } - - /** - * Sets the value of the modelMaandTot property. - * - */ - public void setModelMaandTot(int value) { - this.modelMaandTot = value; - } - - /** - * Gets the value of the modelJaarTot property. - * - */ - public int getModelJaarTot() { - return modelJaarTot; - } - - /** - * Sets the value of the modelJaarTot property. - * - */ - public void setModelJaarTot(int value) { - this.modelJaarTot = value; - } - - /** - * Gets the value of the belastingMin property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBelastingMin() { - return belastingMin; - } - - /** - * Sets the value of the belastingMin property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBelastingMin(String value) { - this.belastingMin = value; - } - - /** - * Gets the value of the belastingMax property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBelastingMax() { - return belastingMax; - } - - /** - * Sets the value of the belastingMax property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBelastingMax(String value) { - this.belastingMax = value; - } - - /** - * Gets the value of the algemeneGarantie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlgemeneGarantie() { - return algemeneGarantie; - } - - /** - * Sets the value of the algemeneGarantie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlgemeneGarantie(String value) { - this.algemeneGarantie = value; - } - - /** - * Gets the value of the algemeneGarantieKm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlgemeneGarantieKm() { - return algemeneGarantieKm; - } - - /** - * Sets the value of the algemeneGarantieKm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlgemeneGarantieKm(String value) { - this.algemeneGarantieKm = value; - } - - /** - * Gets the value of the carrosserieGarantie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCarrosserieGarantie() { - return carrosserieGarantie; - } - - /** - * Sets the value of the carrosserieGarantie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCarrosserieGarantie(String value) { - this.carrosserieGarantie = value; - } - - /** - * Gets the value of the deuren property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeuren() { - return deuren; - } - - /** - * Sets the value of the deuren property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeuren(String value) { - this.deuren = value; - } - - /** - * Gets the value of the carrosserietype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCarrosserietype() { - return carrosserietype; - } - - /** - * Sets the value of the carrosserietype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCarrosserietype(String value) { - this.carrosserietype = value; - } - - /** - * Gets the value of the aantalVersnellingen property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAantalVersnellingen() { - return aantalVersnellingen; - } - - /** - * Sets the value of the aantalVersnellingen property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAantalVersnellingen(String value) { - this.aantalVersnellingen = value; - } - - /** - * Gets the value of the soortSchakeling property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSoortSchakeling() { - return soortSchakeling; - } - - /** - * Sets the value of the soortSchakeling property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSoortSchakeling(String value) { - this.soortSchakeling = value; - } - - /** - * Gets the value of the aandrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAandrijving() { - return aandrijving; - } - - /** - * Sets the value of the aandrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAandrijving(String value) { - this.aandrijving = value; - } - - /** - * Gets the value of the brandstoftype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrandstoftype() { - return brandstoftype; - } - - /** - * Sets the value of the brandstoftype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrandstoftype(String value) { - this.brandstoftype = value; - } - - /** - * Gets the value of the aantalCilinders property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAantalCilinders() { - return aantalCilinders; - } - - /** - * Sets the value of the aantalCilinders property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAantalCilinders(String value) { - this.aantalCilinders = value; - } - - /** - * Gets the value of the bouwwijze property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBouwwijze() { - return bouwwijze; - } - - /** - * Sets the value of the bouwwijze property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBouwwijze(String value) { - this.bouwwijze = value; - } - - /** - * Gets the value of the kleppenPerCilinder property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKleppenPerCilinder() { - return kleppenPerCilinder; - } - - /** - * Sets the value of the kleppenPerCilinder property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKleppenPerCilinder(String value) { - this.kleppenPerCilinder = value; - } - - /** - * Gets the value of the cilinderinhoud property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCilinderinhoud() { - return cilinderinhoud; - } - - /** - * Sets the value of the cilinderinhoud property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCilinderinhoud(String value) { - this.cilinderinhoud = value; - } - - /** - * Gets the value of the boring property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBoring() { - return boring; - } - - /** - * Sets the value of the boring property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBoring(String value) { - this.boring = value; - } - - /** - * Gets the value of the slag property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSlag() { - return slag; - } - - /** - * Sets the value of the slag property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSlag(String value) { - this.slag = value; - } - - /** - * Gets the value of the compressieverhouding property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompressieverhouding() { - return compressieverhouding; - } - - /** - * Sets the value of the compressieverhouding property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompressieverhouding(String value) { - this.compressieverhouding = value; - } - - /** - * Gets the value of the vermogenKw property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermogenKw() { - return vermogenKw; - } - - /** - * Sets the value of the vermogenKw property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermogenKw(String value) { - this.vermogenKw = value; - } - - /** - * Gets the value of the vermogenPk property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermogenPk() { - return vermogenPk; - } - - /** - * Sets the value of the vermogenPk property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermogenPk(String value) { - this.vermogenPk = value; - } - - /** - * Gets the value of the vermogenTpm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVermogenTpm() { - return vermogenTpm; - } - - /** - * Sets the value of the vermogenTpm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVermogenTpm(String value) { - this.vermogenTpm = value; - } - - /** - * Gets the value of the koppel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKoppel() { - return koppel; - } - - /** - * Sets the value of the koppel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKoppel(String value) { - this.koppel = value; - } - - /** - * Gets the value of the koppelTpm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKoppelTpm() { - return koppelTpm; - } - - /** - * Sets the value of the koppelTpm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKoppelTpm(String value) { - this.koppelTpm = value; - } - - /** - * Gets the value of the katalysator property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKatalysator() { - return katalysator; - } - - /** - * Sets the value of the katalysator property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKatalysator(String value) { - this.katalysator = value; - } - - /** - * Gets the value of the brandstofsysteem property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrandstofsysteem() { - return brandstofsysteem; - } - - /** - * Sets the value of the brandstofsysteem property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrandstofsysteem(String value) { - this.brandstofsysteem = value; - } - - /** - * Gets the value of the klepbediening property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKlepbediening() { - return klepbediening; - } - - /** - * Sets the value of the klepbediening property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKlepbediening(String value) { - this.klepbediening = value; - } - - /** - * Gets the value of the turbo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTurbo() { - return turbo; - } - - /** - * Sets the value of the turbo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTurbo(String value) { - this.turbo = value; - } - - /** - * Gets the value of the wielophangingVoor property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWielophangingVoor() { - return wielophangingVoor; - } - - /** - * Sets the value of the wielophangingVoor property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWielophangingVoor(String value) { - this.wielophangingVoor = value; - } - - /** - * Gets the value of the wielophangingAchter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWielophangingAchter() { - return wielophangingAchter; - } - - /** - * Sets the value of the wielophangingAchter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWielophangingAchter(String value) { - this.wielophangingAchter = value; - } - - /** - * Gets the value of the veringVoor property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVeringVoor() { - return veringVoor; - } - - /** - * Sets the value of the veringVoor property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVeringVoor(String value) { - this.veringVoor = value; - } - - /** - * Gets the value of the veringAchter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVeringAchter() { - return veringAchter; - } - - /** - * Sets the value of the veringAchter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVeringAchter(String value) { - this.veringAchter = value; - } - - /** - * Gets the value of the stabilisatorVoor property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStabilisatorVoor() { - return stabilisatorVoor; - } - - /** - * Sets the value of the stabilisatorVoor property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStabilisatorVoor(String value) { - this.stabilisatorVoor = value; - } - - /** - * Gets the value of the stabilisatorAchter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStabilisatorAchter() { - return stabilisatorAchter; - } - - /** - * Sets the value of the stabilisatorAchter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStabilisatorAchter(String value) { - this.stabilisatorAchter = value; - } - - /** - * Gets the value of the remmenVoor property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRemmenVoor() { - return remmenVoor; - } - - /** - * Sets the value of the remmenVoor property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRemmenVoor(String value) { - this.remmenVoor = value; - } - - /** - * Gets the value of the remmenVoorMm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRemmenVoorMm() { - return remmenVoorMm; - } - - /** - * Sets the value of the remmenVoorMm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRemmenVoorMm(String value) { - this.remmenVoorMm = value; - } - - /** - * Gets the value of the remmenAchter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRemmenAchter() { - return remmenAchter; - } - - /** - * Sets the value of the remmenAchter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRemmenAchter(String value) { - this.remmenAchter = value; - } - - /** - * Gets the value of the remmenAchterMm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRemmenAchterMm() { - return remmenAchterMm; - } - - /** - * Sets the value of the remmenAchterMm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRemmenAchterMm(String value) { - this.remmenAchterMm = value; - } - - /** - * Gets the value of the cwWaarde property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCwWaarde() { - return cwWaarde; - } - - /** - * Sets the value of the cwWaarde property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCwWaarde(String value) { - this.cwWaarde = value; - } - - /** - * Gets the value of the lengte property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLengte() { - return lengte; - } - - /** - * Sets the value of the lengte property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLengte(String value) { - this.lengte = value; - } - - /** - * Gets the value of the breedte property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBreedte() { - return breedte; - } - - /** - * Sets the value of the breedte property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBreedte(String value) { - this.breedte = value; - } - - /** - * Gets the value of the hoogte property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHoogte() { - return hoogte; - } - - /** - * Sets the value of the hoogte property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHoogte(String value) { - this.hoogte = value; - } - - /** - * Gets the value of the wielbasis property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWielbasis() { - return wielbasis; - } - - /** - * Sets the value of the wielbasis property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWielbasis(String value) { - this.wielbasis = value; - } - - /** - * Gets the value of the spoorbreedteVoor property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpoorbreedteVoor() { - return spoorbreedteVoor; - } - - /** - * Sets the value of the spoorbreedteVoor property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpoorbreedteVoor(String value) { - this.spoorbreedteVoor = value; - } - - /** - * Gets the value of the spoorbreedteAchter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpoorbreedteAchter() { - return spoorbreedteAchter; - } - - /** - * Sets the value of the spoorbreedteAchter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpoorbreedteAchter(String value) { - this.spoorbreedteAchter = value; - } - - /** - * Gets the value of the draaicirkel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDraaicirkel() { - return draaicirkel; - } - - /** - * Sets the value of the draaicirkel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDraaicirkel(String value) { - this.draaicirkel = value; - } - - /** - * Gets the value of the bandenmaatVoor property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBandenmaatVoor() { - return bandenmaatVoor; - } - - /** - * Sets the value of the bandenmaatVoor property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBandenmaatVoor(String value) { - this.bandenmaatVoor = value; - } - - /** - * Gets the value of the bandenmaatAchter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBandenmaatAchter() { - return bandenmaatAchter; - } - - /** - * Sets the value of the bandenmaatAchter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBandenmaatAchter(String value) { - this.bandenmaatAchter = value; - } - - /** - * Gets the value of the massa property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMassa() { - return massa; - } - - /** - * Sets the value of the massa property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMassa(String value) { - this.massa = value; - } - - /** - * Gets the value of the maxToelaatbareMassa property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMaxToelaatbareMassa() { - return maxToelaatbareMassa; - } - - /** - * Sets the value of the maxToelaatbareMassa property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMaxToelaatbareMassa(String value) { - this.maxToelaatbareMassa = value; - } - - /** - * Gets the value of the maxAanhangerGeremd property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMaxAanhangerGeremd() { - return maxAanhangerGeremd; - } - - /** - * Sets the value of the maxAanhangerGeremd property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMaxAanhangerGeremd(String value) { - this.maxAanhangerGeremd = value; - } - - /** - * Gets the value of the maxAanhangerOngeremd property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMaxAanhangerOngeremd() { - return maxAanhangerOngeremd; - } - - /** - * Sets the value of the maxAanhangerOngeremd property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMaxAanhangerOngeremd(String value) { - this.maxAanhangerOngeremd = value; - } - - /** - * Gets the value of the maxKogeldruk property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMaxKogeldruk() { - return maxKogeldruk; - } - - /** - * Sets the value of the maxKogeldruk property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMaxKogeldruk(String value) { - this.maxKogeldruk = value; - } - - /** - * Gets the value of the maxDakbelasting property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMaxDakbelasting() { - return maxDakbelasting; - } - - /** - * Sets the value of the maxDakbelasting property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMaxDakbelasting(String value) { - this.maxDakbelasting = value; - } - - /** - * Gets the value of the kofferMin property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKofferMin() { - return kofferMin; - } - - /** - * Sets the value of the kofferMin property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKofferMin(String value) { - this.kofferMin = value; - } - - /** - * Gets the value of the kofferMax property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKofferMax() { - return kofferMax; - } - - /** - * Sets the value of the kofferMax property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKofferMax(String value) { - this.kofferMax = value; - } - - /** - * Gets the value of the tankinhoud property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTankinhoud() { - return tankinhoud; - } - - /** - * Sets the value of the tankinhoud property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTankinhoud(String value) { - this.tankinhoud = value; - } - - /** - * Gets the value of the topsnelheid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTopsnelheid() { - return topsnelheid; - } - - /** - * Sets the value of the topsnelheid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTopsnelheid(String value) { - this.topsnelheid = value; - } - - /** - * Gets the value of the acceleratie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAcceleratie() { - return acceleratie; - } - - /** - * Sets the value of the acceleratie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAcceleratie(String value) { - this.acceleratie = value; - } - - /** - * Gets the value of the verbruikBinnenBebouwdeKom property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerbruikBinnenBebouwdeKom() { - return verbruikBinnenBebouwdeKom; - } - - /** - * Sets the value of the verbruikBinnenBebouwdeKom property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerbruikBinnenBebouwdeKom(String value) { - this.verbruikBinnenBebouwdeKom = value; - } - - /** - * Gets the value of the verbruikBuitenBebouwdeKom property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerbruikBuitenBebouwdeKom() { - return verbruikBuitenBebouwdeKom; - } - - /** - * Sets the value of the verbruikBuitenBebouwdeKom property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerbruikBuitenBebouwdeKom(String value) { - this.verbruikBuitenBebouwdeKom = value; - } - - /** - * Gets the value of the verbruikGecombineerd property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerbruikGecombineerd() { - return verbruikGecombineerd; - } - - /** - * Sets the value of the verbruikGecombineerd property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerbruikGecombineerd(String value) { - this.verbruikGecombineerd = value; - } - - /** - * Gets the value of the co2Uitstoot property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCo2Uitstoot() { - return co2Uitstoot; - } - - /** - * Sets the value of the co2Uitstoot property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCo2Uitstoot(String value) { - this.co2Uitstoot = value; - } - - /** - * Gets the value of the verbruikGemiddeld property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerbruikGemiddeld() { - return verbruikGemiddeld; - } - - /** - * Sets the value of the verbruikGemiddeld property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerbruikGemiddeld(String value) { - this.verbruikGemiddeld = value; - } - - /** - * Gets the value of the abs property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getAbs() { - return abs; - } - - /** - * Sets the value of the abs property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setAbs(CarOption value) { - this.abs = value; - } - - /** - * Gets the value of the remkrachtverdeling property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getRemkrachtverdeling() { - return remkrachtverdeling; - } - - /** - * Sets the value of the remkrachtverdeling property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setRemkrachtverdeling(CarOption value) { - this.remkrachtverdeling = value; - } - - /** - * Gets the value of the brakeassist property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getBrakeassist() { - return brakeassist; - } - - /** - * Sets the value of the brakeassist property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setBrakeassist(CarOption value) { - this.brakeassist = value; - } - - /** - * Gets the value of the tractiecontrole property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getTractiecontrole() { - return tractiecontrole; - } - - /** - * Sets the value of the tractiecontrole property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setTractiecontrole(CarOption value) { - this.tractiecontrole = value; - } - - /** - * Gets the value of the sperdifferentieel property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getSperdifferentieel() { - return sperdifferentieel; - } - - /** - * Sets the value of the sperdifferentieel property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setSperdifferentieel(CarOption value) { - this.sperdifferentieel = value; - } - - /** - * Gets the value of the stabiliteitsregeling property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getStabiliteitsregeling() { - return stabiliteitsregeling; - } - - /** - * Sets the value of the stabiliteitsregeling property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setStabiliteitsregeling(CarOption value) { - this.stabiliteitsregeling = value; - } - - /** - * Gets the value of the regelbareSchokdemping property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getRegelbareSchokdemping() { - return regelbareSchokdemping; - } - - /** - * Sets the value of the regelbareSchokdemping property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setRegelbareSchokdemping(CarOption value) { - this.regelbareSchokdemping = value; - } - - /** - * Gets the value of the niveauregeling property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getNiveauregeling() { - return niveauregeling; - } - - /** - * Sets the value of the niveauregeling property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setNiveauregeling(CarOption value) { - this.niveauregeling = value; - } - - /** - * Gets the value of the airbagBestuurder property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getAirbagBestuurder() { - return airbagBestuurder; - } - - /** - * Sets the value of the airbagBestuurder property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setAirbagBestuurder(CarOption value) { - this.airbagBestuurder = value; - } - - /** - * Gets the value of the airbagPassagier property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getAirbagPassagier() { - return airbagPassagier; - } - - /** - * Sets the value of the airbagPassagier property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setAirbagPassagier(CarOption value) { - this.airbagPassagier = value; - } - - /** - * Gets the value of the airbagOpzijvoor property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getAirbagOpzijvoor() { - return airbagOpzijvoor; - } - - /** - * Sets the value of the airbagOpzijvoor property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setAirbagOpzijvoor(CarOption value) { - this.airbagOpzijvoor = value; - } - - /** - * Gets the value of the airbagOpzijachter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getAirbagOpzijachter() { - return airbagOpzijachter; - } - - /** - * Sets the value of the airbagOpzijachter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setAirbagOpzijachter(CarOption value) { - this.airbagOpzijachter = value; - } - - /** - * Gets the value of the airbagHoofdvoor property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getAirbagHoofdvoor() { - return airbagHoofdvoor; - } - - /** - * Sets the value of the airbagHoofdvoor property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setAirbagHoofdvoor(CarOption value) { - this.airbagHoofdvoor = value; - } - - /** - * Gets the value of the airbagHoofdachter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getAirbagHoofdachter() { - return airbagHoofdachter; - } - - /** - * Sets the value of the airbagHoofdachter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setAirbagHoofdachter(CarOption value) { - this.airbagHoofdachter = value; - } - - /** - * Gets the value of the gordelspanners property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getGordelspanners() { - return gordelspanners; - } - - /** - * Sets the value of the gordelspanners property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setGordelspanners(CarOption value) { - this.gordelspanners = value; - } - - /** - * Gets the value of the verstelbareGordelhoogte property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVerstelbareGordelhoogte() { - return verstelbareGordelhoogte; - } - - /** - * Sets the value of the verstelbareGordelhoogte property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVerstelbareGordelhoogte(CarOption value) { - this.verstelbareGordelhoogte = value; - } - - /** - * Gets the value of the startonderbreker property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getStartonderbreker() { - return startonderbreker; - } - - /** - * Sets the value of the startonderbreker property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setStartonderbreker(CarOption value) { - this.startonderbreker = value; - } - - /** - * Gets the value of the inbraakalarm property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getInbraakalarm() { - return inbraakalarm; - } - - /** - * Sets the value of the inbraakalarm property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setInbraakalarm(CarOption value) { - this.inbraakalarm = value; - } - - /** - * Gets the value of the centraleDeurvergrendeling property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getCentraleDeurvergrendeling() { - return centraleDeurvergrendeling; - } - - /** - * Sets the value of the centraleDeurvergrendeling property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setCentraleDeurvergrendeling(CarOption value) { - this.centraleDeurvergrendeling = value; - } - - /** - * Gets the value of the afstandbedieningDeurvergrendeling property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getAfstandbedieningDeurvergrendeling() { - return afstandbedieningDeurvergrendeling; - } - - /** - * Sets the value of the afstandbedieningDeurvergrendeling property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setAfstandbedieningDeurvergrendeling(CarOption value) { - this.afstandbedieningDeurvergrendeling = value; - } - - /** - * Gets the value of the automatischeVergrendeling property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getAutomatischeVergrendeling() { - return automatischeVergrendeling; - } - - /** - * Sets the value of the automatischeVergrendeling property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setAutomatischeVergrendeling(CarOption value) { - this.automatischeVergrendeling = value; - } - - /** - * Gets the value of the keylessEntry property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getKeylessEntry() { - return keylessEntry; - } - - /** - * Sets the value of the keylessEntry property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setKeylessEntry(CarOption value) { - this.keylessEntry = value; - } - - /** - * Gets the value of the elektrischeRamenVoor property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getElektrischeRamenVoor() { - return elektrischeRamenVoor; - } - - /** - * Sets the value of the elektrischeRamenVoor property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setElektrischeRamenVoor(CarOption value) { - this.elektrischeRamenVoor = value; - } - - /** - * Gets the value of the elektrischeRamenAchter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getElektrischeRamenAchter() { - return elektrischeRamenAchter; - } - - /** - * Sets the value of the elektrischeRamenAchter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setElektrischeRamenAchter(CarOption value) { - this.elektrischeRamenAchter = value; - } - - /** - * Gets the value of the stuurbekrachtiging property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getStuurbekrachtiging() { - return stuurbekrachtiging; - } - - /** - * Sets the value of the stuurbekrachtiging property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setStuurbekrachtiging(CarOption value) { - this.stuurbekrachtiging = value; - } - - /** - * Gets the value of the stuurschakeling property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getStuurschakeling() { - return stuurschakeling; - } - - /** - * Sets the value of the stuurschakeling property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setStuurschakeling(CarOption value) { - this.stuurschakeling = value; - } - - /** - * Gets the value of the cruiseControl property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getCruiseControl() { - return cruiseControl; - } - - /** - * Sets the value of the cruiseControl property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setCruiseControl(CarOption value) { - this.cruiseControl = value; - } - - /** - * Gets the value of the radarCruiseControl property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getRadarCruiseControl() { - return radarCruiseControl; - } - - /** - * Sets the value of the radarCruiseControl property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setRadarCruiseControl(CarOption value) { - this.radarCruiseControl = value; - } - - /** - * Gets the value of the airconditioning property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getAirconditioning() { - return airconditioning; - } - - /** - * Sets the value of the airconditioning property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setAirconditioning(CarOption value) { - this.airconditioning = value; - } - - /** - * Gets the value of the klimaatregeling property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getKlimaatregeling() { - return klimaatregeling; - } - - /** - * Sets the value of the klimaatregeling property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setKlimaatregeling(CarOption value) { - this.klimaatregeling = value; - } - - /** - * Gets the value of the gescheidenTemperatuurregeling property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getGescheidenTemperatuurregeling() { - return gescheidenTemperatuurregeling; - } - - /** - * Sets the value of the gescheidenTemperatuurregeling property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setGescheidenTemperatuurregeling(CarOption value) { - this.gescheidenTemperatuurregeling = value; - } - - /** - * Gets the value of the pollenfilter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getPollenfilter() { - return pollenfilter; - } - - /** - * Sets the value of the pollenfilter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setPollenfilter(CarOption value) { - this.pollenfilter = value; - } - - /** - * Gets the value of the parkeersensor property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getParkeersensor() { - return parkeersensor; - } - - /** - * Sets the value of the parkeersensor property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setParkeersensor(CarOption value) { - this.parkeersensor = value; - } - - /** - * Gets the value of the hoofdsteunenVoor property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getHoofdsteunenVoor() { - return hoofdsteunenVoor; - } - - /** - * Sets the value of the hoofdsteunenVoor property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setHoofdsteunenVoor(CarOption value) { - this.hoofdsteunenVoor = value; - } - - /** - * Gets the value of the hoofdsteunenAchter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getHoofdsteunenAchter() { - return hoofdsteunenAchter; - } - - /** - * Sets the value of the hoofdsteunenAchter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setHoofdsteunenAchter(CarOption value) { - this.hoofdsteunenAchter = value; - } - - /** - * Gets the value of the verstelbareHoofdsteunenAchter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVerstelbareHoofdsteunenAchter() { - return verstelbareHoofdsteunenAchter; - } - - /** - * Sets the value of the verstelbareHoofdsteunenAchter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVerstelbareHoofdsteunenAchter(CarOption value) { - this.verstelbareHoofdsteunenAchter = value; - } - - /** - * Gets the value of the derdeHoofdsteunAchter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getDerdeHoofdsteunAchter() { - return derdeHoofdsteunAchter; - } - - /** - * Sets the value of the derdeHoofdsteunAchter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setDerdeHoofdsteunAchter(CarOption value) { - this.derdeHoofdsteunAchter = value; - } - - /** - * Gets the value of the derdeDriepuntsgordelAchter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getDerdeDriepuntsgordelAchter() { - return derdeDriepuntsgordelAchter; - } - - /** - * Sets the value of the derdeDriepuntsgordelAchter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setDerdeDriepuntsgordelAchter(CarOption value) { - this.derdeDriepuntsgordelAchter = value; - } - - /** - * Gets the value of the verstelbareLendensteunBestuurder property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVerstelbareLendensteunBestuurder() { - return verstelbareLendensteunBestuurder; - } - - /** - * Sets the value of the verstelbareLendensteunBestuurder property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVerstelbareLendensteunBestuurder(CarOption value) { - this.verstelbareLendensteunBestuurder = value; - } - - /** - * Gets the value of the verstelbareLendensteunPassagier property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVerstelbareLendensteunPassagier() { - return verstelbareLendensteunPassagier; - } - - /** - * Sets the value of the verstelbareLendensteunPassagier property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVerstelbareLendensteunPassagier(CarOption value) { - this.verstelbareLendensteunPassagier = value; - } - - /** - * Gets the value of the hoogteverstellingBestuurder property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getHoogteverstellingBestuurder() { - return hoogteverstellingBestuurder; - } - - /** - * Sets the value of the hoogteverstellingBestuurder property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setHoogteverstellingBestuurder(CarOption value) { - this.hoogteverstellingBestuurder = value; - } - - /** - * Gets the value of the hoogteverstellingPassagier property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getHoogteverstellingPassagier() { - return hoogteverstellingPassagier; - } - - /** - * Sets the value of the hoogteverstellingPassagier property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setHoogteverstellingPassagier(CarOption value) { - this.hoogteverstellingPassagier = value; - } - - /** - * Gets the value of the elektrischeStoelverstelling property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getElektrischeStoelverstelling() { - return elektrischeStoelverstelling; - } - - /** - * Sets the value of the elektrischeStoelverstelling property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setElektrischeStoelverstelling(CarOption value) { - this.elektrischeStoelverstelling = value; - } - - /** - * Gets the value of the geheugenStoelverstelling property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getGeheugenStoelverstelling() { - return geheugenStoelverstelling; - } - - /** - * Sets the value of the geheugenStoelverstelling property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setGeheugenStoelverstelling(CarOption value) { - this.geheugenStoelverstelling = value; - } - - /** - * Gets the value of the verwarmdeZitplaatsenVoor property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVerwarmdeZitplaatsenVoor() { - return verwarmdeZitplaatsenVoor; - } - - /** - * Sets the value of the verwarmdeZitplaatsenVoor property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVerwarmdeZitplaatsenVoor(CarOption value) { - this.verwarmdeZitplaatsenVoor = value; - } - - /** - * Gets the value of the verwarmdeZitplaatsenAchter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVerwarmdeZitplaatsenAchter() { - return verwarmdeZitplaatsenAchter; - } - - /** - * Sets the value of the verwarmdeZitplaatsenAchter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVerwarmdeZitplaatsenAchter(CarOption value) { - this.verwarmdeZitplaatsenAchter = value; - } - - /** - * Gets the value of the sportstoelen property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getSportstoelen() { - return sportstoelen; - } - - /** - * Sets the value of the sportstoelen property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setSportstoelen(CarOption value) { - this.sportstoelen = value; - } - - /** - * Gets the value of the bekledingstofLeer property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getBekledingstofLeer() { - return bekledingstofLeer; - } - - /** - * Sets the value of the bekledingstofLeer property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setBekledingstofLeer(CarOption value) { - this.bekledingstofLeer = value; - } - - /** - * Gets the value of the lerenbekleding property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getLerenbekleding() { - return lerenbekleding; - } - - /** - * Sets the value of the lerenbekleding property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setLerenbekleding(CarOption value) { - this.lerenbekleding = value; - } - - /** - * Gets the value of the hoogteverstellingStuur property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getHoogteverstellingStuur() { - return hoogteverstellingStuur; - } - - /** - * Sets the value of the hoogteverstellingStuur property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setHoogteverstellingStuur(CarOption value) { - this.hoogteverstellingStuur = value; - } - - /** - * Gets the value of the diepteverstellingStuur property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getDiepteverstellingStuur() { - return diepteverstellingStuur; - } - - /** - * Sets the value of the diepteverstellingStuur property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setDiepteverstellingStuur(CarOption value) { - this.diepteverstellingStuur = value; - } - - /** - * Gets the value of the elektrischeStuurverstelling property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getElektrischeStuurverstelling() { - return elektrischeStuurverstelling; - } - - /** - * Sets the value of the elektrischeStuurverstelling property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setElektrischeStuurverstelling(CarOption value) { - this.elektrischeStuurverstelling = value; - } - - /** - * Gets the value of the leerBekleedStuur property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getLeerBekleedStuur() { - return leerBekleedStuur; - } - - /** - * Sets the value of the leerBekleedStuur property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setLeerBekleedStuur(CarOption value) { - this.leerBekleedStuur = value; - } - - /** - * Gets the value of the middenarmsteunVoor property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getMiddenarmsteunVoor() { - return middenarmsteunVoor; - } - - /** - * Sets the value of the middenarmsteunVoor property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setMiddenarmsteunVoor(CarOption value) { - this.middenarmsteunVoor = value; - } - - /** - * Gets the value of the middenarmsteunAchter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getMiddenarmsteunAchter() { - return middenarmsteunAchter; - } - - /** - * Sets the value of the middenarmsteunAchter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setMiddenarmsteunAchter(CarOption value) { - this.middenarmsteunAchter = value; - } - - /** - * Gets the value of the neerklapbareAchterbank property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getNeerklapbareAchterbank() { - return neerklapbareAchterbank; - } - - /** - * Sets the value of the neerklapbareAchterbank property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setNeerklapbareAchterbank(CarOption value) { - this.neerklapbareAchterbank = value; - } - - /** - * Gets the value of the inDelenNeerklapbaarAchterbank property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getInDelenNeerklapbaarAchterbank() { - return inDelenNeerklapbaarAchterbank; - } - - /** - * Sets the value of the inDelenNeerklapbaarAchterbank property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setInDelenNeerklapbaarAchterbank(CarOption value) { - this.inDelenNeerklapbaarAchterbank = value; - } - - /** - * Gets the value of the opbergvakLinkerportier property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getOpbergvakLinkerportier() { - return opbergvakLinkerportier; - } - - /** - * Sets the value of the opbergvakLinkerportier property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setOpbergvakLinkerportier(CarOption value) { - this.opbergvakLinkerportier = value; - } - - /** - * Gets the value of the bekerhouderVoor property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getBekerhouderVoor() { - return bekerhouderVoor; - } - - /** - * Sets the value of the bekerhouderVoor property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setBekerhouderVoor(CarOption value) { - this.bekerhouderVoor = value; - } - - /** - * Gets the value of the bekerhouderAchter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getBekerhouderAchter() { - return bekerhouderAchter; - } - - /** - * Sets the value of the bekerhouderAchter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setBekerhouderAchter(CarOption value) { - this.bekerhouderAchter = value; - } - - /** - * Gets the value of the zonneschermAchterruit property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getZonneschermAchterruit() { - return zonneschermAchterruit; - } - - /** - * Sets the value of the zonneschermAchterruit property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setZonneschermAchterruit(CarOption value) { - this.zonneschermAchterruit = value; - } - - /** - * Gets the value of the dagteller property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getDagteller() { - return dagteller; - } - - /** - * Sets the value of the dagteller property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setDagteller(CarOption value) { - this.dagteller = value; - } - - /** - * Gets the value of the toerenteller property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getToerenteller() { - return toerenteller; - } - - /** - * Sets the value of the toerenteller property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setToerenteller(CarOption value) { - this.toerenteller = value; - } - - /** - * Gets the value of the temperatuurmeter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getTemperatuurmeter() { - return temperatuurmeter; - } - - /** - * Sets the value of the temperatuurmeter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setTemperatuurmeter(CarOption value) { - this.temperatuurmeter = value; - } - - /** - * Gets the value of the oliepeilmeter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getOliepeilmeter() { - return oliepeilmeter; - } - - /** - * Sets the value of the oliepeilmeter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setOliepeilmeter(CarOption value) { - this.oliepeilmeter = value; - } - - /** - * Gets the value of the oliedrukmeter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getOliedrukmeter() { - return oliedrukmeter; - } - - /** - * Sets the value of the oliedrukmeter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setOliedrukmeter(CarOption value) { - this.oliedrukmeter = value; - } - - /** - * Gets the value of the olietemperatuurmeter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getOlietemperatuurmeter() { - return olietemperatuurmeter; - } - - /** - * Sets the value of the olietemperatuurmeter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setOlietemperatuurmeter(CarOption value) { - this.olietemperatuurmeter = value; - } - - /** - * Gets the value of the voltmeter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVoltmeter() { - return voltmeter; - } - - /** - * Sets the value of the voltmeter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVoltmeter(CarOption value) { - this.voltmeter = value; - } - - /** - * Gets the value of the verbruiksmeter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVerbruiksmeter() { - return verbruiksmeter; - } - - /** - * Sets the value of the verbruiksmeter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVerbruiksmeter(CarOption value) { - this.verbruiksmeter = value; - } - - /** - * Gets the value of the turbodrukmeter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getTurbodrukmeter() { - return turbodrukmeter; - } - - /** - * Sets the value of the turbodrukmeter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setTurbodrukmeter(CarOption value) { - this.turbodrukmeter = value; - } - - /** - * Gets the value of the buitentemperatuurmeter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getBuitentemperatuurmeter() { - return buitentemperatuurmeter; - } - - /** - * Sets the value of the buitentemperatuurmeter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setBuitentemperatuurmeter(CarOption value) { - this.buitentemperatuurmeter = value; - } - - /** - * Gets the value of the klokje property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getKlokje() { - return klokje; - } - - /** - * Sets the value of the klokje property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setKlokje(CarOption value) { - this.klokje = value; - } - - /** - * Gets the value of the boardcomputer property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getBoardcomputer() { - return boardcomputer; - } - - /** - * Sets the value of the boardcomputer property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setBoardcomputer(CarOption value) { - this.boardcomputer = value; - } - - /** - * Gets the value of the luidsprekers property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getLuidsprekers() { - return luidsprekers; - } - - /** - * Sets the value of the luidsprekers property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setLuidsprekers(CarOption value) { - this.luidsprekers = value; - } - - /** - * Gets the value of the stereoinstallatie property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getStereoinstallatie() { - return stereoinstallatie; - } - - /** - * Sets the value of the stereoinstallatie property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setStereoinstallatie(CarOption value) { - this.stereoinstallatie = value; - } - - /** - * Gets the value of the cdspeler property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getCdspeler() { - return cdspeler; - } - - /** - * Sets the value of the cdspeler property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setCdspeler(CarOption value) { - this.cdspeler = value; - } - - /** - * Gets the value of the cdwisselaar property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getCdwisselaar() { - return cdwisselaar; - } - - /** - * Sets the value of the cdwisselaar property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setCdwisselaar(CarOption value) { - this.cdwisselaar = value; - } - - /** - * Gets the value of the audiostuurbediening property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getAudiostuurbediening() { - return audiostuurbediening; - } - - /** - * Sets the value of the audiostuurbediening property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setAudiostuurbediening(CarOption value) { - this.audiostuurbediening = value; - } - - /** - * Gets the value of the bandenspanningssensor property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getBandenspanningssensor() { - return bandenspanningssensor; - } - - /** - * Sets the value of the bandenspanningssensor property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setBandenspanningssensor(CarOption value) { - this.bandenspanningssensor = value; - } - - /** - * Gets the value of the navigatiesysteem property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getNavigatiesysteem() { - return navigatiesysteem; - } - - /** - * Sets the value of the navigatiesysteem property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setNavigatiesysteem(CarOption value) { - this.navigatiesysteem = value; - } - - /** - * Gets the value of the televisie property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getTelevisie() { - return televisie; - } - - /** - * Sets the value of the televisie property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setTelevisie(CarOption value) { - this.televisie = value; - } - - /** - * Gets the value of the telefoonvoorbereiding property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getTelefoonvoorbereiding() { - return telefoonvoorbereiding; - } - - /** - * Sets the value of the telefoonvoorbereiding property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setTelefoonvoorbereiding(CarOption value) { - this.telefoonvoorbereiding = value; - } - - /** - * Gets the value of the telefoon property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getTelefoon() { - return telefoon; - } - - /** - * Sets the value of the telefoon property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setTelefoon(CarOption value) { - this.telefoon = value; - } - - /** - * Gets the value of the intervalruitenwisser property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getIntervalruitenwisser() { - return intervalruitenwisser; - } - - /** - * Sets the value of the intervalruitenwisser property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setIntervalruitenwisser(CarOption value) { - this.intervalruitenwisser = value; - } - - /** - * Gets the value of the regelbareInterval property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getRegelbareInterval() { - return regelbareInterval; - } - - /** - * Sets the value of the regelbareInterval property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setRegelbareInterval(CarOption value) { - this.regelbareInterval = value; - } - - /** - * Gets the value of the regensensor property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getRegensensor() { - return regensensor; - } - - /** - * Sets the value of the regensensor property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setRegensensor(CarOption value) { - this.regensensor = value; - } - - /** - * Gets the value of the ruitenwisserAchter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getRuitenwisserAchter() { - return ruitenwisserAchter; - } - - /** - * Sets the value of the ruitenwisserAchter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setRuitenwisserAchter(CarOption value) { - this.ruitenwisserAchter = value; - } - - /** - * Gets the value of the achterruitverwarming property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getAchterruitverwarming() { - return achterruitverwarming; - } - - /** - * Sets the value of the achterruitverwarming property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setAchterruitverwarming(CarOption value) { - this.achterruitverwarming = value; - } - - /** - * Gets the value of the voorruitverwarming property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVoorruitverwarming() { - return voorruitverwarming; - } - - /** - * Sets the value of the voorruitverwarming property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVoorruitverwarming(CarOption value) { - this.voorruitverwarming = value; - } - - /** - * Gets the value of the verwarmdeRuitensproeiers property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVerwarmdeRuitensproeiers() { - return verwarmdeRuitensproeiers; - } - - /** - * Sets the value of the verwarmdeRuitensproeiers property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVerwarmdeRuitensproeiers(CarOption value) { - this.verwarmdeRuitensproeiers = value; - } - - /** - * Gets the value of the gelaagdeVoorruit property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getGelaagdeVoorruit() { - return gelaagdeVoorruit; - } - - /** - * Sets the value of the gelaagdeVoorruit property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setGelaagdeVoorruit(CarOption value) { - this.gelaagdeVoorruit = value; - } - - /** - * Gets the value of the getintglas property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getGetintglas() { - return getintglas; - } - - /** - * Sets the value of the getintglas property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setGetintglas(CarOption value) { - this.getintglas = value; - } - - /** - * Gets the value of the schuifdak property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getSchuifdak() { - return schuifdak; - } - - /** - * Sets the value of the schuifdak property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setSchuifdak(CarOption value) { - this.schuifdak = value; - } - - /** - * Gets the value of the elektrischSchuifdak property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getElektrischSchuifdak() { - return elektrischSchuifdak; - } - - /** - * Sets the value of the elektrischSchuifdak property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setElektrischSchuifdak(CarOption value) { - this.elektrischSchuifdak = value; - } - - /** - * Gets the value of the beschermstripsOpzij property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getBeschermstripsOpzij() { - return beschermstripsOpzij; - } - - /** - * Sets the value of the beschermstripsOpzij property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setBeschermstripsOpzij(CarOption value) { - this.beschermstripsOpzij = value; - } - - /** - * Gets the value of the bumpersMeegespoten property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getBumpersMeegespoten() { - return bumpersMeegespoten; - } - - /** - * Sets the value of the bumpersMeegespoten property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setBumpersMeegespoten(CarOption value) { - this.bumpersMeegespoten = value; - } - - /** - * Gets the value of the metallicLak property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getMetallicLak() { - return metallicLak; - } - - /** - * Sets the value of the metallicLak property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setMetallicLak(CarOption value) { - this.metallicLak = value; - } - - /** - * Gets the value of the lichtmetalenVelgen property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getLichtmetalenVelgen() { - return lichtmetalenVelgen; - } - - /** - * Sets the value of the lichtmetalenVelgen property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setLichtmetalenVelgen(CarOption value) { - this.lichtmetalenVelgen = value; - } - - /** - * Gets the value of the rechterBuitenspiegel property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getRechterBuitenspiegel() { - return rechterBuitenspiegel; - } - - /** - * Sets the value of the rechterBuitenspiegel property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setRechterBuitenspiegel(CarOption value) { - this.rechterBuitenspiegel = value; - } - - /** - * Gets the value of the binnenuitVerstelbareBuitenspiegel property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getBinnenuitVerstelbareBuitenspiegel() { - return binnenuitVerstelbareBuitenspiegel; - } - - /** - * Sets the value of the binnenuitVerstelbareBuitenspiegel property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setBinnenuitVerstelbareBuitenspiegel(CarOption value) { - this.binnenuitVerstelbareBuitenspiegel = value; - } - - /** - * Gets the value of the elektrischeSpiegels property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getElektrischeSpiegels() { - return elektrischeSpiegels; - } - - /** - * Sets the value of the elektrischeSpiegels property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setElektrischeSpiegels(CarOption value) { - this.elektrischeSpiegels = value; - } - - /** - * Gets the value of the verwarmdeSpiegels property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVerwarmdeSpiegels() { - return verwarmdeSpiegels; - } - - /** - * Sets the value of the verwarmdeSpiegels property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVerwarmdeSpiegels(CarOption value) { - this.verwarmdeSpiegels = value; - } - - /** - * Gets the value of the inklapbareSpiegels property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getInklapbareSpiegels() { - return inklapbareSpiegels; - } - - /** - * Sets the value of the inklapbareSpiegels property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setInklapbareSpiegels(CarOption value) { - this.inklapbareSpiegels = value; - } - - /** - * Gets the value of the meegespotenSpiegels property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getMeegespotenSpiegels() { - return meegespotenSpiegels; - } - - /** - * Sets the value of the meegespotenSpiegels property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setMeegespotenSpiegels(CarOption value) { - this.meegespotenSpiegels = value; - } - - /** - * Gets the value of the dodehoekspiegelBestuurder property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getDodehoekspiegelBestuurder() { - return dodehoekspiegelBestuurder; - } - - /** - * Sets the value of the dodehoekspiegelBestuurder property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setDodehoekspiegelBestuurder(CarOption value) { - this.dodehoekspiegelBestuurder = value; - } - - /** - * Gets the value of the dimmendeBinnenspiegel property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getDimmendeBinnenspiegel() { - return dimmendeBinnenspiegel; - } - - /** - * Sets the value of the dimmendeBinnenspiegel property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setDimmendeBinnenspiegel(CarOption value) { - this.dimmendeBinnenspiegel = value; - } - - /** - * Gets the value of the dimmendeBuitenspiegel property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getDimmendeBuitenspiegel() { - return dimmendeBuitenspiegel; - } - - /** - * Sets the value of the dimmendeBuitenspiegel property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setDimmendeBuitenspiegel(CarOption value) { - this.dimmendeBuitenspiegel = value; - } - - /** - * Gets the value of the dakrails property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getDakrails() { - return dakrails; - } - - /** - * Sets the value of the dakrails property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setDakrails(CarOption value) { - this.dakrails = value; - } - - /** - * Gets the value of the binnenuitTeOpenenTankklep property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getBinnenuitTeOpenenTankklep() { - return binnenuitTeOpenenTankklep; - } - - /** - * Sets the value of the binnenuitTeOpenenTankklep property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setBinnenuitTeOpenenTankklep(CarOption value) { - this.binnenuitTeOpenenTankklep = value; - } - - /** - * Gets the value of the binnenuitTeOpenenBagageklep property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getBinnenuitTeOpenenBagageklep() { - return binnenuitTeOpenenBagageklep; - } - - /** - * Sets the value of the binnenuitTeOpenenBagageklep property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setBinnenuitTeOpenenBagageklep(CarOption value) { - this.binnenuitTeOpenenBagageklep = value; - } - - /** - * Gets the value of the opAfstandTeOpenenBagageklep property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getOpAfstandTeOpenenBagageklep() { - return opAfstandTeOpenenBagageklep; - } - - /** - * Sets the value of the opAfstandTeOpenenBagageklep property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setOpAfstandTeOpenenBagageklep(CarOption value) { - this.opAfstandTeOpenenBagageklep = value; - } - - /** - * Gets the value of the halogeenKoplampen property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getHalogeenKoplampen() { - return halogeenKoplampen; - } - - /** - * Sets the value of the halogeenKoplampen property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setHalogeenKoplampen(CarOption value) { - this.halogeenKoplampen = value; - } - - /** - * Gets the value of the xenonKoplampen property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getXenonKoplampen() { - return xenonKoplampen; - } - - /** - * Sets the value of the xenonKoplampen property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setXenonKoplampen(CarOption value) { - this.xenonKoplampen = value; - } - - /** - * Gets the value of the verstelbareKoplampen property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVerstelbareKoplampen() { - return verstelbareKoplampen; - } - - /** - * Sets the value of the verstelbareKoplampen property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVerstelbareKoplampen(CarOption value) { - this.verstelbareKoplampen = value; - } - - /** - * Gets the value of the koplampsproeiers property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getKoplampsproeiers() { - return koplampsproeiers; - } - - /** - * Sets the value of the koplampsproeiers property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setKoplampsproeiers(CarOption value) { - this.koplampsproeiers = value; - } - - /** - * Gets the value of the automatischInschakelendeKoplampen property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getAutomatischInschakelendeKoplampen() { - return automatischInschakelendeKoplampen; - } - - /** - * Sets the value of the automatischInschakelendeKoplampen property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setAutomatischInschakelendeKoplampen(CarOption value) { - this.automatischInschakelendeKoplampen = value; - } - - /** - * Gets the value of the verstralers property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVerstralers() { - return verstralers; - } - - /** - * Sets the value of the verstralers property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVerstralers(CarOption value) { - this.verstralers = value; - } - - /** - * Gets the value of the mistlampenVoor property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getMistlampenVoor() { - return mistlampenVoor; - } - - /** - * Sets the value of the mistlampenVoor property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setMistlampenVoor(CarOption value) { - this.mistlampenVoor = value; - } - - /** - * Gets the value of the mistlampenAchter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getMistlampenAchter() { - return mistlampenAchter; - } - - /** - * Sets the value of the mistlampenAchter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setMistlampenAchter(CarOption value) { - this.mistlampenAchter = value; - } - - /** - * Gets the value of the zoemerVergetenVerlichting property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getZoemerVergetenVerlichting() { - return zoemerVergetenVerlichting; - } - - /** - * Sets the value of the zoemerVergetenVerlichting property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setZoemerVergetenVerlichting(CarOption value) { - this.zoemerVergetenVerlichting = value; - } - - /** - * Gets the value of the verlichteBagageruimte property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVerlichteBagageruimte() { - return verlichteBagageruimte; - } - - /** - * Sets the value of the verlichteBagageruimte property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVerlichteBagageruimte(CarOption value) { - this.verlichteBagageruimte = value; - } - - /** - * Gets the value of the verlichteMotorruimte property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVerlichteMotorruimte() { - return verlichteMotorruimte; - } - - /** - * Sets the value of the verlichteMotorruimte property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVerlichteMotorruimte(CarOption value) { - this.verlichteMotorruimte = value; - } - - /** - * Gets the value of the verlichtDashboardkastje property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVerlichtDashboardkastje() { - return verlichtDashboardkastje; - } - - /** - * Sets the value of the verlichtDashboardkastje property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVerlichtDashboardkastje(CarOption value) { - this.verlichtDashboardkastje = value; - } - - /** - * Gets the value of the regelbareDashboardverlichting property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getRegelbareDashboardverlichting() { - return regelbareDashboardverlichting; - } - - /** - * Sets the value of the regelbareDashboardverlichting property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setRegelbareDashboardverlichting(CarOption value) { - this.regelbareDashboardverlichting = value; - } - - /** - * Gets the value of the leeslampjeVoor property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getLeeslampjeVoor() { - return leeslampjeVoor; - } - - /** - * Sets the value of the leeslampjeVoor property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setLeeslampjeVoor(CarOption value) { - this.leeslampjeVoor = value; - } - - /** - * Gets the value of the leeslampjeAchter property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getLeeslampjeAchter() { - return leeslampjeAchter; - } - - /** - * Sets the value of the leeslampjeAchter property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setLeeslampjeAchter(CarOption value) { - this.leeslampjeAchter = value; - } - - /** - * Gets the value of the verlichteMakeupspiegel property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVerlichteMakeupspiegel() { - return verlichteMakeupspiegel; - } - - /** - * Sets the value of the verlichteMakeupspiegel property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVerlichteMakeupspiegel(CarOption value) { - this.verlichteMakeupspiegel = value; - } - - /** - * Gets the value of the vertragingInterieurverlichting property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getVertragingInterieurverlichting() { - return vertragingInterieurverlichting; - } - - /** - * Sets the value of the vertragingInterieurverlichting property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setVertragingInterieurverlichting(CarOption value) { - this.vertragingInterieurverlichting = value; - } - - /** - * Gets the value of the portierverlichting property. - * - * @return - * possible object is - * {@link CarOption } - * - */ - public CarOption getPortierverlichting() { - return portierverlichting; - } - - /** - * Sets the value of the portierverlichting property. - * - * @param value - * allowed object is - * {@link CarOption } - * - */ - public void setPortierverlichting(CarOption value) { - this.portierverlichting = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarCheckCodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarCheckCodeRequestType.java deleted file mode 100644 index da9c670..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarCheckCodeRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarCheckCodeRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarCheckCodeRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarCheckCodeRequestType", propOrder = { - -}) -public class CarRDWCarCheckCodeRequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - @XmlElement(required = true) - protected String code; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarCheckCodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarCheckCodeResponseType.java deleted file mode 100644 index f3243b1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarCheckCodeResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarCheckCodeResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarCheckCodeResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarCheckCode"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarCheckCodeResponseType", propOrder = { - -}) -public class CarRDWCarCheckCodeResponseType { - - @XmlElement(required = true) - protected CarCheckCode out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarCheckCode } - * - */ - public CarCheckCode getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarCheckCode } - * - */ - public void setOut(CarCheckCode value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPRequestType.java deleted file mode 100644 index 367475d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarDataBPRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarDataBPRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarDataBPRequestType", propOrder = { - -}) -public class CarRDWCarDataBPRequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPResponseType.java deleted file mode 100644 index 404d22d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarDataBPResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarDataBPResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarBP"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarDataBPResponseType", propOrder = { - -}) -public class CarRDWCarDataBPResponseType { - - @XmlElement(required = true) - protected CarBP out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarBP } - * - */ - public CarBP getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarBP } - * - */ - public void setOut(CarBP value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPV2RequestType.java deleted file mode 100644 index 6220e4f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPV2RequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarDataBPV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarDataBPV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarDataBPV2RequestType", propOrder = { - -}) -public class CarRDWCarDataBPV2RequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPV2ResponseType.java deleted file mode 100644 index 161e08c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataBPV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarDataBPV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarDataBPV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarBPV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarDataBPV2ResponseType", propOrder = { - -}) -public class CarRDWCarDataBPV2ResponseType { - - @XmlElement(required = true) - protected CarBPV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarBPV2 } - * - */ - public CarBPV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarBPV2 } - * - */ - public void setOut(CarBPV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataExtendedRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataExtendedRequestType.java deleted file mode 100644 index fc32fa7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataExtendedRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarDataExtendedRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarDataExtendedRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarDataExtendedRequestType", propOrder = { - -}) -public class CarRDWCarDataExtendedRequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - @XmlElement(required = true) - protected String code; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataExtendedResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataExtendedResponseType.java deleted file mode 100644 index da7d60b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataExtendedResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarDataExtendedResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarDataExtendedResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarExtended"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarDataExtendedResponseType", propOrder = { - -}) -public class CarRDWCarDataExtendedResponseType { - - @XmlElement(required = true) - protected CarExtended out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarExtended } - * - */ - public CarExtended getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarExtended } - * - */ - public void setOut(CarExtended value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataOptionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataOptionsRequestType.java deleted file mode 100644 index 911ed75..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataOptionsRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarDataOptionsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarDataOptionsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="car_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarDataOptionsRequestType", propOrder = { - -}) -public class CarRDWCarDataOptionsRequestType { - - @XmlElement(name = "car_id", required = true) - protected String carId; - - /** - * Gets the value of the carId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCarId() { - return carId; - } - - /** - * Sets the value of the carId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCarId(String value) { - this.carId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataOptionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataOptionsResponseType.java deleted file mode 100644 index 16d6ac1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataOptionsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarDataOptionsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarDataOptionsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarOptions"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarDataOptionsResponseType", propOrder = { - -}) -public class CarRDWCarDataOptionsResponseType { - - @XmlElement(required = true) - protected CarOptions out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarOptions } - * - */ - public CarOptions getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarOptions } - * - */ - public void setOut(CarOptions value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPrice.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPrice.java deleted file mode 100644 index c46d4bb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPrice.java +++ /dev/null @@ -1,284 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarRDWCarDataPrice complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarRDWCarDataPrice">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="basic_car_data" type="{http://www.webservices.nl/soap/}CarV3"/>
- *         <element name="environment_data" type="{http://www.webservices.nl/soap/}CarEnvironment"/>
- *         <element name="status_data" type="{http://www.webservices.nl/soap/}CarStatus"/>
- *         <element name="power" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="fuel_types" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="top_speed" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="catalog_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="bpm" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="bodies" type="{http://www.webservices.nl/soap/}CarBodyArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarRDWCarDataPrice", propOrder = { - -}) -public class CarRDWCarDataPrice { - - @XmlElement(name = "basic_car_data", required = true) - protected CarV3 basicCarData; - @XmlElement(name = "environment_data", required = true) - protected CarEnvironment environmentData; - @XmlElement(name = "status_data", required = true) - protected CarStatus statusData; - protected BigDecimal power; - @XmlElement(name = "fuel_types", required = true) - protected StringArray fuelTypes; - @XmlElement(name = "top_speed") - protected Integer topSpeed; - @XmlElement(name = "catalog_price") - protected Integer catalogPrice; - protected Integer bpm; - @XmlElement(required = true) - protected CarBodyArray bodies; - - /** - * Gets the value of the basicCarData property. - * - * @return - * possible object is - * {@link CarV3 } - * - */ - public CarV3 getBasicCarData() { - return basicCarData; - } - - /** - * Sets the value of the basicCarData property. - * - * @param value - * allowed object is - * {@link CarV3 } - * - */ - public void setBasicCarData(CarV3 value) { - this.basicCarData = value; - } - - /** - * Gets the value of the environmentData property. - * - * @return - * possible object is - * {@link CarEnvironment } - * - */ - public CarEnvironment getEnvironmentData() { - return environmentData; - } - - /** - * Sets the value of the environmentData property. - * - * @param value - * allowed object is - * {@link CarEnvironment } - * - */ - public void setEnvironmentData(CarEnvironment value) { - this.environmentData = value; - } - - /** - * Gets the value of the statusData property. - * - * @return - * possible object is - * {@link CarStatus } - * - */ - public CarStatus getStatusData() { - return statusData; - } - - /** - * Sets the value of the statusData property. - * - * @param value - * allowed object is - * {@link CarStatus } - * - */ - public void setStatusData(CarStatus value) { - this.statusData = value; - } - - /** - * Gets the value of the power property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPower() { - return power; - } - - /** - * Sets the value of the power property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPower(BigDecimal value) { - this.power = value; - } - - /** - * Gets the value of the fuelTypes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getFuelTypes() { - return fuelTypes; - } - - /** - * Sets the value of the fuelTypes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setFuelTypes(StringArray value) { - this.fuelTypes = value; - } - - /** - * Gets the value of the topSpeed property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTopSpeed() { - return topSpeed; - } - - /** - * Sets the value of the topSpeed property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTopSpeed(Integer value) { - this.topSpeed = value; - } - - /** - * Gets the value of the catalogPrice property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCatalogPrice() { - return catalogPrice; - } - - /** - * Sets the value of the catalogPrice property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCatalogPrice(Integer value) { - this.catalogPrice = value; - } - - /** - * Gets the value of the bpm property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getBpm() { - return bpm; - } - - /** - * Sets the value of the bpm property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setBpm(Integer value) { - this.bpm = value; - } - - /** - * Gets the value of the bodies property. - * - * @return - * possible object is - * {@link CarBodyArray } - * - */ - public CarBodyArray getBodies() { - return bodies; - } - - /** - * Sets the value of the bodies property. - * - * @param value - * allowed object is - * {@link CarBodyArray } - * - */ - public void setBodies(CarBodyArray value) { - this.bodies = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPriceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPriceRequestType.java deleted file mode 100644 index 38ea89f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPriceRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarDataPriceRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarDataPriceRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarDataPriceRequestType", propOrder = { - -}) -public class CarRDWCarDataPriceRequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPriceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPriceResponseType.java deleted file mode 100644 index b816083..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataPriceResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarDataPriceResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarDataPriceResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarRDWCarDataPrice"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarDataPriceResponseType", propOrder = { - -}) -public class CarRDWCarDataPriceResponseType { - - @XmlElement(required = true) - protected CarRDWCarDataPrice out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarRDWCarDataPrice } - * - */ - public CarRDWCarDataPrice getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarRDWCarDataPrice } - * - */ - public void setOut(CarRDWCarDataPrice value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataRequestType.java deleted file mode 100644 index eb5539c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarDataRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarDataRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarDataRequestType", propOrder = { - -}) -public class CarRDWCarDataRequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataResponseType.java deleted file mode 100644 index ef8f168..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarDataResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarDataResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}Car"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarDataResponseType", propOrder = { - -}) -public class CarRDWCarDataResponseType { - - @XmlElement(required = true) - protected Car out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link Car } - * - */ - public Car getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link Car } - * - */ - public void setOut(Car value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV2RequestType.java deleted file mode 100644 index 055876e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV2RequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarDataV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarDataV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarDataV2RequestType", propOrder = { - -}) -public class CarRDWCarDataV2RequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV2ResponseType.java deleted file mode 100644 index 76d8eea..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarDataV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarDataV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarDataV2ResponseType", propOrder = { - -}) -public class CarRDWCarDataV2ResponseType { - - @XmlElement(required = true) - protected CarV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarV2 } - * - */ - public CarV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarV2 } - * - */ - public void setOut(CarV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV3RequestType.java deleted file mode 100644 index cce9e61..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV3RequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarDataV3RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarDataV3RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarDataV3RequestType", propOrder = { - -}) -public class CarRDWCarDataV3RequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV3ResponseType.java deleted file mode 100644 index 424febf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarRDWCarDataV3ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carRDWCarDataV3ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carRDWCarDataV3ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarDataV3Result"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carRDWCarDataV3ResponseType", propOrder = { - -}) -public class CarRDWCarDataV3ResponseType { - - @XmlElement(required = true) - protected CarDataV3Result out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarDataV3Result } - * - */ - public CarDataV3Result getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarDataV3Result } - * - */ - public void setOut(CarDataV3Result value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarStatus.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarStatus.java deleted file mode 100644 index dfe9cf5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarStatus.java +++ /dev/null @@ -1,147 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarStatus complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarStatus">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="insured" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="awaiting_inspection" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="missing" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="stolen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarStatus", propOrder = { - -}) -public class CarStatus { - - protected Boolean insured; - @XmlElement(name = "awaiting_inspection") - protected Boolean awaitingInspection; - protected Boolean missing; - protected Boolean stolen; - - /** - * Gets the value of the insured property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isInsured() { - return insured; - } - - /** - * Sets the value of the insured property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setInsured(Boolean value) { - this.insured = value; - } - - /** - * Gets the value of the awaitingInspection property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isAwaitingInspection() { - return awaitingInspection; - } - - /** - * Sets the value of the awaitingInspection property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAwaitingInspection(Boolean value) { - this.awaitingInspection = value; - } - - /** - * Gets the value of the missing property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isMissing() { - return missing; - } - - /** - * Sets the value of the missing property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setMissing(Boolean value) { - this.missing = value; - } - - /** - * Gets the value of the stolen property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isStolen() { - return stolen; - } - - /** - * Sets the value of the stolen property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setStolen(Boolean value) { - this.stolen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarType.java deleted file mode 100644 index 601e134..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarType.java +++ /dev/null @@ -1,215 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="car_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="brand" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gearbox" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="first_year" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="last_year" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarType", propOrder = { - -}) -public class CarType { - - @XmlElement(name = "car_id", required = true) - protected String carId; - @XmlElement(required = true) - protected String brand; - @XmlElement(required = true) - protected String model; - @XmlElement(required = true) - protected String type; - @XmlElement(required = true) - protected String gearbox; - @XmlElement(name = "first_year") - protected int firstYear; - @XmlElement(name = "last_year") - protected int lastYear; - - /** - * Gets the value of the carId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCarId() { - return carId; - } - - /** - * Sets the value of the carId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCarId(String value) { - this.carId = value; - } - - /** - * Gets the value of the brand property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrand() { - return brand; - } - - /** - * Sets the value of the brand property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrand(String value) { - this.brand = value; - } - - /** - * Gets the value of the model property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModel() { - return model; - } - - /** - * Sets the value of the model property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModel(String value) { - this.model = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the gearbox property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGearbox() { - return gearbox; - } - - /** - * Sets the value of the gearbox property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGearbox(String value) { - this.gearbox = value; - } - - /** - * Gets the value of the firstYear property. - * - */ - public int getFirstYear() { - return firstYear; - } - - /** - * Sets the value of the firstYear property. - * - */ - public void setFirstYear(int value) { - this.firstYear = value; - } - - /** - * Gets the value of the lastYear property. - * - */ - public int getLastYear() { - return lastYear; - } - - /** - * Sets the value of the lastYear property. - * - */ - public void setLastYear(int value) { - this.lastYear = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarTypeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarTypeArray.java deleted file mode 100644 index e001ae0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarTypeArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarTypeArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarTypeArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CarType" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarTypeArray", propOrder = { - "item" -}) -public class CarTypeArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CarType } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarV2.java deleted file mode 100644 index d4efd8c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarV2.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="car_data" type="{http://www.webservices.nl/soap/}Car"/>
- *         <element name="types" type="{http://www.webservices.nl/soap/}CarTypeArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarV2", propOrder = { - -}) -public class CarV2 { - - @XmlElement(name = "car_data", required = true) - protected Car carData; - @XmlElement(required = true) - protected CarTypeArray types; - - /** - * Gets the value of the carData property. - * - * @return - * possible object is - * {@link Car } - * - */ - public Car getCarData() { - return carData; - } - - /** - * Sets the value of the carData property. - * - * @param value - * allowed object is - * {@link Car } - * - */ - public void setCarData(Car value) { - this.carData = value; - } - - /** - * Gets the value of the types property. - * - * @return - * possible object is - * {@link CarTypeArray } - * - */ - public CarTypeArray getTypes() { - return types; - } - - /** - * Sets the value of the types property. - * - * @param value - * allowed object is - * {@link CarTypeArray } - * - */ - public void setTypes(CarTypeArray value) { - this.types = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarV3.java deleted file mode 100644 index f91ec95..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarV3.java +++ /dev/null @@ -1,576 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="brand" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="colors" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="fuel_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="cylinders" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="cylinder_capacity" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="seats" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="standing_room" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="unladen_mass" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="gross_vehicle_mass" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="mass_ready" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_payload" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_unbraked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_trailer_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_self_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maximum_mass_axle_braked" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="date_first_issuing" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_first_admission" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_latest_name_registration" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="apk_due_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="co2_emission" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarV3", propOrder = { - -}) -public class CarV3 { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - @XmlElement(required = true) - protected String category; - @XmlElement(required = true) - protected String brand; - @XmlElement(required = true) - protected String model; - @XmlElement(required = true) - protected String colors; - @XmlElement(name = "fuel_type", required = true) - protected String fuelType; - protected int cylinders; - @XmlElement(name = "cylinder_capacity") - protected int cylinderCapacity; - protected int seats; - @XmlElement(name = "standing_room") - protected int standingRoom; - @XmlElement(name = "unladen_mass") - protected int unladenMass; - @XmlElement(name = "gross_vehicle_mass") - protected int grossVehicleMass; - @XmlElement(name = "mass_ready") - protected int massReady; - @XmlElement(name = "maximum_mass_payload") - protected int maximumMassPayload; - @XmlElement(name = "maximum_mass_unbraked") - protected int maximumMassUnbraked; - @XmlElement(name = "maximum_mass_braked") - protected int maximumMassBraked; - @XmlElement(name = "maximum_mass_trailer_braked") - protected int maximumMassTrailerBraked; - @XmlElement(name = "maximum_mass_self_braked") - protected int maximumMassSelfBraked; - @XmlElement(name = "maximum_mass_axle_braked") - protected int maximumMassAxleBraked; - @XmlElement(name = "date_first_issuing", required = true) - protected String dateFirstIssuing; - @XmlElement(name = "date_first_admission", required = true) - protected String dateFirstAdmission; - @XmlElement(name = "date_latest_name_registration", required = true) - protected String dateLatestNameRegistration; - @XmlElement(name = "apk_due_date", required = true) - protected String apkDueDate; - @XmlElement(name = "co2_emission") - protected int co2Emission; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - - /** - * Gets the value of the category property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCategory() { - return category; - } - - /** - * Sets the value of the category property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCategory(String value) { - this.category = value; - } - - /** - * Gets the value of the brand property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrand() { - return brand; - } - - /** - * Sets the value of the brand property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrand(String value) { - this.brand = value; - } - - /** - * Gets the value of the model property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModel() { - return model; - } - - /** - * Sets the value of the model property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModel(String value) { - this.model = value; - } - - /** - * Gets the value of the colors property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getColors() { - return colors; - } - - /** - * Sets the value of the colors property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setColors(String value) { - this.colors = value; - } - - /** - * Gets the value of the fuelType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFuelType() { - return fuelType; - } - - /** - * Sets the value of the fuelType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFuelType(String value) { - this.fuelType = value; - } - - /** - * Gets the value of the cylinders property. - * - */ - public int getCylinders() { - return cylinders; - } - - /** - * Sets the value of the cylinders property. - * - */ - public void setCylinders(int value) { - this.cylinders = value; - } - - /** - * Gets the value of the cylinderCapacity property. - * - */ - public int getCylinderCapacity() { - return cylinderCapacity; - } - - /** - * Sets the value of the cylinderCapacity property. - * - */ - public void setCylinderCapacity(int value) { - this.cylinderCapacity = value; - } - - /** - * Gets the value of the seats property. - * - */ - public int getSeats() { - return seats; - } - - /** - * Sets the value of the seats property. - * - */ - public void setSeats(int value) { - this.seats = value; - } - - /** - * Gets the value of the standingRoom property. - * - */ - public int getStandingRoom() { - return standingRoom; - } - - /** - * Sets the value of the standingRoom property. - * - */ - public void setStandingRoom(int value) { - this.standingRoom = value; - } - - /** - * Gets the value of the unladenMass property. - * - */ - public int getUnladenMass() { - return unladenMass; - } - - /** - * Sets the value of the unladenMass property. - * - */ - public void setUnladenMass(int value) { - this.unladenMass = value; - } - - /** - * Gets the value of the grossVehicleMass property. - * - */ - public int getGrossVehicleMass() { - return grossVehicleMass; - } - - /** - * Sets the value of the grossVehicleMass property. - * - */ - public void setGrossVehicleMass(int value) { - this.grossVehicleMass = value; - } - - /** - * Gets the value of the massReady property. - * - */ - public int getMassReady() { - return massReady; - } - - /** - * Sets the value of the massReady property. - * - */ - public void setMassReady(int value) { - this.massReady = value; - } - - /** - * Gets the value of the maximumMassPayload property. - * - */ - public int getMaximumMassPayload() { - return maximumMassPayload; - } - - /** - * Sets the value of the maximumMassPayload property. - * - */ - public void setMaximumMassPayload(int value) { - this.maximumMassPayload = value; - } - - /** - * Gets the value of the maximumMassUnbraked property. - * - */ - public int getMaximumMassUnbraked() { - return maximumMassUnbraked; - } - - /** - * Sets the value of the maximumMassUnbraked property. - * - */ - public void setMaximumMassUnbraked(int value) { - this.maximumMassUnbraked = value; - } - - /** - * Gets the value of the maximumMassBraked property. - * - */ - public int getMaximumMassBraked() { - return maximumMassBraked; - } - - /** - * Sets the value of the maximumMassBraked property. - * - */ - public void setMaximumMassBraked(int value) { - this.maximumMassBraked = value; - } - - /** - * Gets the value of the maximumMassTrailerBraked property. - * - */ - public int getMaximumMassTrailerBraked() { - return maximumMassTrailerBraked; - } - - /** - * Sets the value of the maximumMassTrailerBraked property. - * - */ - public void setMaximumMassTrailerBraked(int value) { - this.maximumMassTrailerBraked = value; - } - - /** - * Gets the value of the maximumMassSelfBraked property. - * - */ - public int getMaximumMassSelfBraked() { - return maximumMassSelfBraked; - } - - /** - * Sets the value of the maximumMassSelfBraked property. - * - */ - public void setMaximumMassSelfBraked(int value) { - this.maximumMassSelfBraked = value; - } - - /** - * Gets the value of the maximumMassAxleBraked property. - * - */ - public int getMaximumMassAxleBraked() { - return maximumMassAxleBraked; - } - - /** - * Sets the value of the maximumMassAxleBraked property. - * - */ - public void setMaximumMassAxleBraked(int value) { - this.maximumMassAxleBraked = value; - } - - /** - * Gets the value of the dateFirstIssuing property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateFirstIssuing() { - return dateFirstIssuing; - } - - /** - * Sets the value of the dateFirstIssuing property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateFirstIssuing(String value) { - this.dateFirstIssuing = value; - } - - /** - * Gets the value of the dateFirstAdmission property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateFirstAdmission() { - return dateFirstAdmission; - } - - /** - * Sets the value of the dateFirstAdmission property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateFirstAdmission(String value) { - this.dateFirstAdmission = value; - } - - /** - * Gets the value of the dateLatestNameRegistration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateLatestNameRegistration() { - return dateLatestNameRegistration; - } - - /** - * Sets the value of the dateLatestNameRegistration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateLatestNameRegistration(String value) { - this.dateLatestNameRegistration = value; - } - - /** - * Gets the value of the apkDueDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getApkDueDate() { - return apkDueDate; - } - - /** - * Sets the value of the apkDueDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setApkDueDate(String value) { - this.apkDueDate = value; - } - - /** - * Gets the value of the co2Emission property. - * - */ - public int getCo2Emission() { - return co2Emission; - } - - /** - * Sets the value of the co2Emission property. - * - */ - public void setCo2Emission(int value) { - this.co2Emission = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeData.java deleted file mode 100644 index e665b3a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeData.java +++ /dev/null @@ -1,1040 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CarVWEBasicTypeData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEBasicTypeData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="brand_rdw" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="brand_atl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="model_rdw" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="model_atl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="short_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="colors" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="fuel_types" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="cylinders" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="cylinder_capacity" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="seats" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="standing_room" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="unladen_mass" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="gross_vehicle_mass" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="maximum_mass_payload" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="date_first_issuing" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="date_first_admission" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="date_latest_name_registration" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="apk_due_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="bpm" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="bpm_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="power" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="g3_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="co2_emission" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="emission_particles" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="energy_label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="emission_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="interior_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="interior_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="doors" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="tax_write_off" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="parallel_import" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="license_plate_signal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="gear" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="brand_approval" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="top_speed" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="types" type="{http://www.webservices.nl/soap/}CarVWEVersionPriceReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEBasicTypeData", propOrder = { - -}) -public class CarVWEBasicTypeData { - - protected String category; - @XmlElement(name = "brand_rdw") - protected String brandRdw; - @XmlElement(name = "brand_atl") - protected String brandAtl; - @XmlElement(name = "model_rdw") - protected String modelRdw; - @XmlElement(name = "model_atl") - protected String modelAtl; - @XmlElement(name = "short_type") - protected String shortType; - @XmlElement(required = true) - protected StringArray colors; - @XmlElement(name = "fuel_types", required = true) - protected StringArray fuelTypes; - protected Integer cylinders; - @XmlElement(name = "cylinder_capacity") - protected Integer cylinderCapacity; - protected Integer seats; - @XmlElement(name = "standing_room") - protected Integer standingRoom; - @XmlElement(name = "unladen_mass") - protected Integer unladenMass; - @XmlElement(name = "gross_vehicle_mass") - protected Integer grossVehicleMass; - @XmlElement(name = "maximum_mass_payload") - protected Integer maximumMassPayload; - @XmlElement(name = "date_first_issuing") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFirstIssuing; - @XmlElement(name = "date_first_admission") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFirstAdmission; - @XmlElement(name = "date_latest_name_registration") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateLatestNameRegistration; - @XmlElement(name = "apk_due_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar apkDueDate; - protected Integer bpm; - @XmlElement(name = "bpm_currency") - protected String bpmCurrency; - protected Integer power; - @XmlElement(name = "g3_indication") - protected Boolean g3Indication; - @XmlElement(name = "co2_emission") - protected Integer co2Emission; - @XmlElement(name = "emission_particles") - protected String emissionParticles; - @XmlElement(name = "energy_label") - protected String energyLabel; - @XmlElement(name = "emission_code") - protected String emissionCode; - @XmlElement(name = "interior_code") - protected String interiorCode; - @XmlElement(name = "interior_description") - protected String interiorDescription; - protected Integer doors; - @XmlElement(name = "tax_write_off") - protected String taxWriteOff; - @XmlElement(name = "parallel_import") - protected Boolean parallelImport; - @XmlElement(name = "license_plate_signal") - protected String licensePlateSignal; - protected String gear; - @XmlElement(name = "brand_approval") - protected String brandApproval; - @XmlElement(name = "top_speed") - protected Integer topSpeed; - @XmlElement(required = true) - protected CarVWEVersionPriceReferenceArray types; - - /** - * Gets the value of the category property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCategory() { - return category; - } - - /** - * Sets the value of the category property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCategory(String value) { - this.category = value; - } - - /** - * Gets the value of the brandRdw property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrandRdw() { - return brandRdw; - } - - /** - * Sets the value of the brandRdw property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrandRdw(String value) { - this.brandRdw = value; - } - - /** - * Gets the value of the brandAtl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrandAtl() { - return brandAtl; - } - - /** - * Sets the value of the brandAtl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrandAtl(String value) { - this.brandAtl = value; - } - - /** - * Gets the value of the modelRdw property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModelRdw() { - return modelRdw; - } - - /** - * Sets the value of the modelRdw property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModelRdw(String value) { - this.modelRdw = value; - } - - /** - * Gets the value of the modelAtl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModelAtl() { - return modelAtl; - } - - /** - * Sets the value of the modelAtl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModelAtl(String value) { - this.modelAtl = value; - } - - /** - * Gets the value of the shortType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getShortType() { - return shortType; - } - - /** - * Sets the value of the shortType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setShortType(String value) { - this.shortType = value; - } - - /** - * Gets the value of the colors property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getColors() { - return colors; - } - - /** - * Sets the value of the colors property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setColors(StringArray value) { - this.colors = value; - } - - /** - * Gets the value of the fuelTypes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getFuelTypes() { - return fuelTypes; - } - - /** - * Sets the value of the fuelTypes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setFuelTypes(StringArray value) { - this.fuelTypes = value; - } - - /** - * Gets the value of the cylinders property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCylinders() { - return cylinders; - } - - /** - * Sets the value of the cylinders property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCylinders(Integer value) { - this.cylinders = value; - } - - /** - * Gets the value of the cylinderCapacity property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCylinderCapacity() { - return cylinderCapacity; - } - - /** - * Sets the value of the cylinderCapacity property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCylinderCapacity(Integer value) { - this.cylinderCapacity = value; - } - - /** - * Gets the value of the seats property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getSeats() { - return seats; - } - - /** - * Sets the value of the seats property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setSeats(Integer value) { - this.seats = value; - } - - /** - * Gets the value of the standingRoom property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getStandingRoom() { - return standingRoom; - } - - /** - * Sets the value of the standingRoom property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setStandingRoom(Integer value) { - this.standingRoom = value; - } - - /** - * Gets the value of the unladenMass property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getUnladenMass() { - return unladenMass; - } - - /** - * Sets the value of the unladenMass property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setUnladenMass(Integer value) { - this.unladenMass = value; - } - - /** - * Gets the value of the grossVehicleMass property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGrossVehicleMass() { - return grossVehicleMass; - } - - /** - * Sets the value of the grossVehicleMass property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGrossVehicleMass(Integer value) { - this.grossVehicleMass = value; - } - - /** - * Gets the value of the maximumMassPayload property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaximumMassPayload() { - return maximumMassPayload; - } - - /** - * Sets the value of the maximumMassPayload property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaximumMassPayload(Integer value) { - this.maximumMassPayload = value; - } - - /** - * Gets the value of the dateFirstIssuing property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFirstIssuing() { - return dateFirstIssuing; - } - - /** - * Sets the value of the dateFirstIssuing property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFirstIssuing(XMLGregorianCalendar value) { - this.dateFirstIssuing = value; - } - - /** - * Gets the value of the dateFirstAdmission property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFirstAdmission() { - return dateFirstAdmission; - } - - /** - * Sets the value of the dateFirstAdmission property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFirstAdmission(XMLGregorianCalendar value) { - this.dateFirstAdmission = value; - } - - /** - * Gets the value of the dateLatestNameRegistration property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateLatestNameRegistration() { - return dateLatestNameRegistration; - } - - /** - * Sets the value of the dateLatestNameRegistration property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateLatestNameRegistration(XMLGregorianCalendar value) { - this.dateLatestNameRegistration = value; - } - - /** - * Gets the value of the apkDueDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getApkDueDate() { - return apkDueDate; - } - - /** - * Sets the value of the apkDueDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setApkDueDate(XMLGregorianCalendar value) { - this.apkDueDate = value; - } - - /** - * Gets the value of the bpm property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getBpm() { - return bpm; - } - - /** - * Sets the value of the bpm property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setBpm(Integer value) { - this.bpm = value; - } - - /** - * Gets the value of the bpmCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBpmCurrency() { - return bpmCurrency; - } - - /** - * Sets the value of the bpmCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBpmCurrency(String value) { - this.bpmCurrency = value; - } - - /** - * Gets the value of the power property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPower() { - return power; - } - - /** - * Sets the value of the power property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPower(Integer value) { - this.power = value; - } - - /** - * Gets the value of the g3Indication property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isG3Indication() { - return g3Indication; - } - - /** - * Sets the value of the g3Indication property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setG3Indication(Boolean value) { - this.g3Indication = value; - } - - /** - * Gets the value of the co2Emission property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCo2Emission() { - return co2Emission; - } - - /** - * Sets the value of the co2Emission property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCo2Emission(Integer value) { - this.co2Emission = value; - } - - /** - * Gets the value of the emissionParticles property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmissionParticles() { - return emissionParticles; - } - - /** - * Sets the value of the emissionParticles property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmissionParticles(String value) { - this.emissionParticles = value; - } - - /** - * Gets the value of the energyLabel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnergyLabel() { - return energyLabel; - } - - /** - * Sets the value of the energyLabel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnergyLabel(String value) { - this.energyLabel = value; - } - - /** - * Gets the value of the emissionCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmissionCode() { - return emissionCode; - } - - /** - * Sets the value of the emissionCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmissionCode(String value) { - this.emissionCode = value; - } - - /** - * Gets the value of the interiorCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInteriorCode() { - return interiorCode; - } - - /** - * Sets the value of the interiorCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInteriorCode(String value) { - this.interiorCode = value; - } - - /** - * Gets the value of the interiorDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInteriorDescription() { - return interiorDescription; - } - - /** - * Sets the value of the interiorDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInteriorDescription(String value) { - this.interiorDescription = value; - } - - /** - * Gets the value of the doors property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDoors() { - return doors; - } - - /** - * Sets the value of the doors property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDoors(Integer value) { - this.doors = value; - } - - /** - * Gets the value of the taxWriteOff property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTaxWriteOff() { - return taxWriteOff; - } - - /** - * Sets the value of the taxWriteOff property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTaxWriteOff(String value) { - this.taxWriteOff = value; - } - - /** - * Gets the value of the parallelImport property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isParallelImport() { - return parallelImport; - } - - /** - * Sets the value of the parallelImport property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setParallelImport(Boolean value) { - this.parallelImport = value; - } - - /** - * Gets the value of the licensePlateSignal property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlateSignal() { - return licensePlateSignal; - } - - /** - * Sets the value of the licensePlateSignal property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlateSignal(String value) { - this.licensePlateSignal = value; - } - - /** - * Gets the value of the gear property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGear() { - return gear; - } - - /** - * Sets the value of the gear property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGear(String value) { - this.gear = value; - } - - /** - * Gets the value of the brandApproval property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrandApproval() { - return brandApproval; - } - - /** - * Sets the value of the brandApproval property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrandApproval(String value) { - this.brandApproval = value; - } - - /** - * Gets the value of the topSpeed property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTopSpeed() { - return topSpeed; - } - - /** - * Sets the value of the topSpeed property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTopSpeed(Integer value) { - this.topSpeed = value; - } - - /** - * Gets the value of the types property. - * - * @return - * possible object is - * {@link CarVWEVersionPriceReferenceArray } - * - */ - public CarVWEVersionPriceReferenceArray getTypes() { - return types; - } - - /** - * Sets the value of the types property. - * - * @param value - * allowed object is - * {@link CarVWEVersionPriceReferenceArray } - * - */ - public void setTypes(CarVWEVersionPriceReferenceArray value) { - this.types = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeDataRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeDataRequestType.java deleted file mode 100644 index 3d8ec7a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeDataRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEBasicTypeDataRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEBasicTypeDataRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEBasicTypeDataRequestType", propOrder = { - -}) -public class CarVWEBasicTypeDataRequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeDataResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeDataResponseType.java deleted file mode 100644 index 1bc334b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBasicTypeDataResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEBasicTypeDataResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEBasicTypeDataResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEBasicTypeData"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEBasicTypeDataResponseType", propOrder = { - -}) -public class CarVWEBasicTypeDataResponseType { - - @XmlElement(required = true) - protected CarVWEBasicTypeData out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarVWEBasicTypeData } - * - */ - public CarVWEBasicTypeData getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarVWEBasicTypeData } - * - */ - public void setOut(CarVWEBasicTypeData value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrand.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrand.java deleted file mode 100644 index ebcc772..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrand.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEBrand complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEBrand">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="brand_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="brand_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEBrand", propOrder = { - -}) -public class CarVWEBrand { - - @XmlElement(name = "brand_id") - protected int brandId; - @XmlElement(name = "brand_name", required = true) - protected String brandName; - - /** - * Gets the value of the brandId property. - * - */ - public int getBrandId() { - return brandId; - } - - /** - * Sets the value of the brandId property. - * - */ - public void setBrandId(int value) { - this.brandId = value; - } - - /** - * Gets the value of the brandName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrandName() { - return brandName; - } - - /** - * Sets the value of the brandName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrandName(String value) { - this.brandName = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrandArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrandArray.java deleted file mode 100644 index 11b7042..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrandArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEBrandArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEBrandArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CarVWEBrand" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEBrandArray", propOrder = { - "item" -}) -public class CarVWEBrandArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CarVWEBrand } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrandPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrandPagedResult.java deleted file mode 100644 index 41db85c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEBrandPagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEBrandPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEBrandPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}CarVWEBrandArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEBrandPagedResult", propOrder = { - -}) -public class CarVWEBrandPagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected CarVWEBrandArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link CarVWEBrandArray } - * - */ - public CarVWEBrandArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link CarVWEBrandArray } - * - */ - public void setResults(CarVWEBrandArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListBrandsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListBrandsRequestType.java deleted file mode 100644 index 1203ce0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListBrandsRequestType.java +++ /dev/null @@ -1,98 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEListBrandsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEListBrandsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="production_year" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="kind_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEListBrandsRequestType", propOrder = { - -}) -public class CarVWEListBrandsRequestType { - - @XmlElement(name = "production_year") - protected int productionYear; - @XmlElement(name = "kind_id") - protected int kindId; - protected int page; - - /** - * Gets the value of the productionYear property. - * - */ - public int getProductionYear() { - return productionYear; - } - - /** - * Sets the value of the productionYear property. - * - */ - public void setProductionYear(int value) { - this.productionYear = value; - } - - /** - * Gets the value of the kindId property. - * - */ - public int getKindId() { - return kindId; - } - - /** - * Sets the value of the kindId property. - * - */ - public void setKindId(int value) { - this.kindId = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListBrandsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListBrandsResponseType.java deleted file mode 100644 index c715f5f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListBrandsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEListBrandsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEListBrandsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEBrandPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEListBrandsResponseType", propOrder = { - -}) -public class CarVWEListBrandsResponseType { - - @XmlElement(required = true) - protected CarVWEBrandPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarVWEBrandPagedResult } - * - */ - public CarVWEBrandPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarVWEBrandPagedResult } - * - */ - public void setOut(CarVWEBrandPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListModelsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListModelsRequestType.java deleted file mode 100644 index 1143cce..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListModelsRequestType.java +++ /dev/null @@ -1,117 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEListModelsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEListModelsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="production_year" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="kind_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="brand_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEListModelsRequestType", propOrder = { - -}) -public class CarVWEListModelsRequestType { - - @XmlElement(name = "production_year") - protected int productionYear; - @XmlElement(name = "kind_id") - protected int kindId; - @XmlElement(name = "brand_id") - protected int brandId; - protected int page; - - /** - * Gets the value of the productionYear property. - * - */ - public int getProductionYear() { - return productionYear; - } - - /** - * Sets the value of the productionYear property. - * - */ - public void setProductionYear(int value) { - this.productionYear = value; - } - - /** - * Gets the value of the kindId property. - * - */ - public int getKindId() { - return kindId; - } - - /** - * Sets the value of the kindId property. - * - */ - public void setKindId(int value) { - this.kindId = value; - } - - /** - * Gets the value of the brandId property. - * - */ - public int getBrandId() { - return brandId; - } - - /** - * Sets the value of the brandId property. - * - */ - public void setBrandId(int value) { - this.brandId = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListModelsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListModelsResponseType.java deleted file mode 100644 index 7ecbc4c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListModelsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEListModelsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEListModelsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEModelPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEListModelsResponseType", propOrder = { - -}) -public class CarVWEListModelsResponseType { - - @XmlElement(required = true) - protected CarVWEModelPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarVWEModelPagedResult } - * - */ - public CarVWEModelPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarVWEModelPagedResult } - * - */ - public void setOut(CarVWEModelPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListVersionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListVersionsRequestType.java deleted file mode 100644 index 25720b7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListVersionsRequestType.java +++ /dev/null @@ -1,211 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEListVersionsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEListVersionsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="production_year" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="kind_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="brand_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="model_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="fuel_type_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="body_style_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="doors" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="gear_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEListVersionsRequestType", propOrder = { - -}) -public class CarVWEListVersionsRequestType { - - @XmlElement(name = "production_year") - protected int productionYear; - @XmlElement(name = "kind_id") - protected int kindId; - @XmlElement(name = "brand_id") - protected int brandId; - @XmlElement(name = "model_id") - protected int modelId; - @XmlElement(name = "fuel_type_id") - protected int fuelTypeId; - @XmlElement(name = "body_style_id") - protected int bodyStyleId; - protected int doors; - @XmlElement(name = "gear_id") - protected int gearId; - protected int page; - - /** - * Gets the value of the productionYear property. - * - */ - public int getProductionYear() { - return productionYear; - } - - /** - * Sets the value of the productionYear property. - * - */ - public void setProductionYear(int value) { - this.productionYear = value; - } - - /** - * Gets the value of the kindId property. - * - */ - public int getKindId() { - return kindId; - } - - /** - * Sets the value of the kindId property. - * - */ - public void setKindId(int value) { - this.kindId = value; - } - - /** - * Gets the value of the brandId property. - * - */ - public int getBrandId() { - return brandId; - } - - /** - * Sets the value of the brandId property. - * - */ - public void setBrandId(int value) { - this.brandId = value; - } - - /** - * Gets the value of the modelId property. - * - */ - public int getModelId() { - return modelId; - } - - /** - * Sets the value of the modelId property. - * - */ - public void setModelId(int value) { - this.modelId = value; - } - - /** - * Gets the value of the fuelTypeId property. - * - */ - public int getFuelTypeId() { - return fuelTypeId; - } - - /** - * Sets the value of the fuelTypeId property. - * - */ - public void setFuelTypeId(int value) { - this.fuelTypeId = value; - } - - /** - * Gets the value of the bodyStyleId property. - * - */ - public int getBodyStyleId() { - return bodyStyleId; - } - - /** - * Sets the value of the bodyStyleId property. - * - */ - public void setBodyStyleId(int value) { - this.bodyStyleId = value; - } - - /** - * Gets the value of the doors property. - * - */ - public int getDoors() { - return doors; - } - - /** - * Sets the value of the doors property. - * - */ - public void setDoors(int value) { - this.doors = value; - } - - /** - * Gets the value of the gearId property. - * - */ - public int getGearId() { - return gearId; - } - - /** - * Sets the value of the gearId property. - * - */ - public void setGearId(int value) { - this.gearId = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListVersionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListVersionsResponseType.java deleted file mode 100644 index c20cb7e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEListVersionsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEListVersionsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEListVersionsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEVersionPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEListVersionsResponseType", propOrder = { - -}) -public class CarVWEListVersionsResponseType { - - @XmlElement(required = true) - protected CarVWEVersionPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarVWEVersionPagedResult } - * - */ - public CarVWEVersionPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarVWEVersionPagedResult } - * - */ - public void setOut(CarVWEVersionPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheck.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheck.java deleted file mode 100644 index 0715ee1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheck.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEMeldcodeCheck complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEMeldcodeCheck">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correct" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEMeldcodeCheck", propOrder = { - -}) -public class CarVWEMeldcodeCheck { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - protected boolean correct; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - - /** - * Gets the value of the correct property. - * - */ - public boolean isCorrect() { - return correct; - } - - /** - * Sets the value of the correct property. - * - */ - public void setCorrect(boolean value) { - this.correct = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheckRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheckRequestType.java deleted file mode 100644 index 913640d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheckRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEMeldcodeCheckRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEMeldcodeCheckRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEMeldcodeCheckRequestType", propOrder = { - -}) -public class CarVWEMeldcodeCheckRequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - @XmlElement(required = true) - protected String code; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheckResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheckResponseType.java deleted file mode 100644 index a59f78c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEMeldcodeCheckResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEMeldcodeCheckResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEMeldcodeCheckResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEMeldcodeCheck"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEMeldcodeCheckResponseType", propOrder = { - -}) -public class CarVWEMeldcodeCheckResponseType { - - @XmlElement(required = true) - protected CarVWEMeldcodeCheck out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarVWEMeldcodeCheck } - * - */ - public CarVWEMeldcodeCheck getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarVWEMeldcodeCheck } - * - */ - public void setOut(CarVWEMeldcodeCheck value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModel.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModel.java deleted file mode 100644 index 7eb2075..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModel.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEModel complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEModel">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="model_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="model_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEModel", propOrder = { - -}) -public class CarVWEModel { - - @XmlElement(name = "model_id") - protected int modelId; - @XmlElement(name = "model_name", required = true) - protected String modelName; - - /** - * Gets the value of the modelId property. - * - */ - public int getModelId() { - return modelId; - } - - /** - * Sets the value of the modelId property. - * - */ - public void setModelId(int value) { - this.modelId = value; - } - - /** - * Gets the value of the modelName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModelName() { - return modelName; - } - - /** - * Sets the value of the modelName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModelName(String value) { - this.modelName = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModelArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModelArray.java deleted file mode 100644 index 69fd05c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModelArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEModelArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEModelArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CarVWEModel" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEModelArray", propOrder = { - "item" -}) -public class CarVWEModelArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CarVWEModel } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModelPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModelPagedResult.java deleted file mode 100644 index 7115132..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEModelPagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEModelPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEModelPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}CarVWEModelArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEModelPagedResult", propOrder = { - -}) -public class CarVWEModelPagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected CarVWEModelArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link CarVWEModelArray } - * - */ - public CarVWEModelArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link CarVWEModelArray } - * - */ - public void setResults(CarVWEModelArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOption.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOption.java deleted file mode 100644 index f35044a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOption.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEOption complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEOption">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="option_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="description_short" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEOption", propOrder = { - -}) -public class CarVWEOption { - - @XmlElement(name = "option_id") - protected int optionId; - @XmlElement(name = "description_short", required = true) - protected String descriptionShort; - @XmlElement(required = true) - protected String description; - protected Integer price; - - /** - * Gets the value of the optionId property. - * - */ - public int getOptionId() { - return optionId; - } - - /** - * Sets the value of the optionId property. - * - */ - public void setOptionId(int value) { - this.optionId = value; - } - - /** - * Gets the value of the descriptionShort property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescriptionShort() { - return descriptionShort; - } - - /** - * Sets the value of the descriptionShort property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescriptionShort(String value) { - this.descriptionShort = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the price property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPrice() { - return price; - } - - /** - * Sets the value of the price property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPrice(Integer value) { - this.price = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionArray.java deleted file mode 100644 index 64cd8d7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEOptionArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEOptionArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CarVWEOption" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEOptionArray", propOrder = { - "item" -}) -public class CarVWEOptionArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CarVWEOption } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionPackage.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionPackage.java deleted file mode 100644 index cc01fff..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionPackage.java +++ /dev/null @@ -1,133 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEOptionPackage complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEOptionPackage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="package_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="price" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="options" type="{http://www.webservices.nl/soap/}CarVWEOptionArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEOptionPackage", propOrder = { - -}) -public class CarVWEOptionPackage { - - @XmlElement(name = "package_id") - protected int packageId; - protected int price; - @XmlElement(required = true) - protected String description; - @XmlElement(required = true) - protected CarVWEOptionArray options; - - /** - * Gets the value of the packageId property. - * - */ - public int getPackageId() { - return packageId; - } - - /** - * Sets the value of the packageId property. - * - */ - public void setPackageId(int value) { - this.packageId = value; - } - - /** - * Gets the value of the price property. - * - */ - public int getPrice() { - return price; - } - - /** - * Sets the value of the price property. - * - */ - public void setPrice(int value) { - this.price = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the options property. - * - * @return - * possible object is - * {@link CarVWEOptionArray } - * - */ - public CarVWEOptionArray getOptions() { - return options; - } - - /** - * Sets the value of the options property. - * - * @param value - * allowed object is - * {@link CarVWEOptionArray } - * - */ - public void setOptions(CarVWEOptionArray value) { - this.options = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionPackageArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionPackageArray.java deleted file mode 100644 index 216328a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionPackageArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEOptionPackageArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEOptionPackageArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CarVWEOptionPackage" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEOptionPackageArray", propOrder = { - "item" -}) -public class CarVWEOptionPackageArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CarVWEOptionPackage } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptions.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptions.java deleted file mode 100644 index 90f4210..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptions.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEOptions complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEOptions">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="options_standard" type="{http://www.webservices.nl/soap/}CarVWEOptionsStandard" minOccurs="0"/>
- *         <element name="options_manufacture" type="{http://www.webservices.nl/soap/}CarVWEOptionsManufacture" minOccurs="0"/>
- *         <element name="options_package" type="{http://www.webservices.nl/soap/}CarVWEOptionsPackage" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEOptions", propOrder = { - -}) -public class CarVWEOptions { - - @XmlElement(name = "options_standard") - protected CarVWEOptionsStandard optionsStandard; - @XmlElement(name = "options_manufacture") - protected CarVWEOptionsManufacture optionsManufacture; - @XmlElement(name = "options_package") - protected CarVWEOptionsPackage optionsPackage; - - /** - * Gets the value of the optionsStandard property. - * - * @return - * possible object is - * {@link CarVWEOptionsStandard } - * - */ - public CarVWEOptionsStandard getOptionsStandard() { - return optionsStandard; - } - - /** - * Sets the value of the optionsStandard property. - * - * @param value - * allowed object is - * {@link CarVWEOptionsStandard } - * - */ - public void setOptionsStandard(CarVWEOptionsStandard value) { - this.optionsStandard = value; - } - - /** - * Gets the value of the optionsManufacture property. - * - * @return - * possible object is - * {@link CarVWEOptionsManufacture } - * - */ - public CarVWEOptionsManufacture getOptionsManufacture() { - return optionsManufacture; - } - - /** - * Sets the value of the optionsManufacture property. - * - * @param value - * allowed object is - * {@link CarVWEOptionsManufacture } - * - */ - public void setOptionsManufacture(CarVWEOptionsManufacture value) { - this.optionsManufacture = value; - } - - /** - * Gets the value of the optionsPackage property. - * - * @return - * possible object is - * {@link CarVWEOptionsPackage } - * - */ - public CarVWEOptionsPackage getOptionsPackage() { - return optionsPackage; - } - - /** - * Sets the value of the optionsPackage property. - * - * @param value - * allowed object is - * {@link CarVWEOptionsPackage } - * - */ - public void setOptionsPackage(CarVWEOptionsPackage value) { - this.optionsPackage = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsManufacture.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsManufacture.java deleted file mode 100644 index 30ae326..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsManufacture.java +++ /dev/null @@ -1,115 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEOptionsManufacture complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEOptionsManufacture">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="options" type="{http://www.webservices.nl/soap/}CarVWEOptionArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEOptionsManufacture", propOrder = { - -}) -public class CarVWEOptionsManufacture { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - @XmlElement(name = "atl_code") - protected int atlCode; - @XmlElement(required = true) - protected CarVWEOptionArray options; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - - /** - * Gets the value of the atlCode property. - * - */ - public int getAtlCode() { - return atlCode; - } - - /** - * Sets the value of the atlCode property. - * - */ - public void setAtlCode(int value) { - this.atlCode = value; - } - - /** - * Gets the value of the options property. - * - * @return - * possible object is - * {@link CarVWEOptionArray } - * - */ - public CarVWEOptionArray getOptions() { - return options; - } - - /** - * Sets the value of the options property. - * - * @param value - * allowed object is - * {@link CarVWEOptionArray } - * - */ - public void setOptions(CarVWEOptionArray value) { - this.options = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsPackage.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsPackage.java deleted file mode 100644 index bfaa31f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsPackage.java +++ /dev/null @@ -1,115 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEOptionsPackage complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEOptionsPackage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="packages" type="{http://www.webservices.nl/soap/}CarVWEOptionPackageArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEOptionsPackage", propOrder = { - -}) -public class CarVWEOptionsPackage { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - @XmlElement(name = "atl_code") - protected int atlCode; - @XmlElement(required = true) - protected CarVWEOptionPackageArray packages; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - - /** - * Gets the value of the atlCode property. - * - */ - public int getAtlCode() { - return atlCode; - } - - /** - * Sets the value of the atlCode property. - * - */ - public void setAtlCode(int value) { - this.atlCode = value; - } - - /** - * Gets the value of the packages property. - * - * @return - * possible object is - * {@link CarVWEOptionPackageArray } - * - */ - public CarVWEOptionPackageArray getPackages() { - return packages; - } - - /** - * Sets the value of the packages property. - * - * @param value - * allowed object is - * {@link CarVWEOptionPackageArray } - * - */ - public void setPackages(CarVWEOptionPackageArray value) { - this.packages = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsRequestType.java deleted file mode 100644 index 7bce1e8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsRequestType.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEOptionsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEOptionsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEOptionsRequestType", propOrder = { - -}) -public class CarVWEOptionsRequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - @XmlElement(name = "atl_code") - protected int atlCode; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - - /** - * Gets the value of the atlCode property. - * - */ - public int getAtlCode() { - return atlCode; - } - - /** - * Sets the value of the atlCode property. - * - */ - public void setAtlCode(int value) { - this.atlCode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsResponseType.java deleted file mode 100644 index f87fba3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEOptionsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEOptionsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEOptions"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEOptionsResponseType", propOrder = { - -}) -public class CarVWEOptionsResponseType { - - @XmlElement(required = true) - protected CarVWEOptions out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarVWEOptions } - * - */ - public CarVWEOptions getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarVWEOptions } - * - */ - public void setOut(CarVWEOptions value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsStandard.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsStandard.java deleted file mode 100644 index a92d33b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEOptionsStandard.java +++ /dev/null @@ -1,115 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEOptionsStandard complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEOptionsStandard">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="options" type="{http://www.webservices.nl/soap/}CarVWEOptionArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEOptionsStandard", propOrder = { - -}) -public class CarVWEOptionsStandard { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - @XmlElement(name = "atl_code") - protected int atlCode; - @XmlElement(required = true) - protected CarVWEOptionArray options; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - - /** - * Gets the value of the atlCode property. - * - */ - public int getAtlCode() { - return atlCode; - } - - /** - * Sets the value of the atlCode property. - * - */ - public void setAtlCode(int value) { - this.atlCode = value; - } - - /** - * Gets the value of the options property. - * - * @return - * possible object is - * {@link CarVWEOptionArray } - * - */ - public CarVWEOptionArray getOptions() { - return options; - } - - /** - * Sets the value of the options property. - * - * @param value - * allowed object is - * {@link CarVWEOptionArray } - * - */ - public void setOptions(CarVWEOptionArray value) { - this.options = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhoto.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhoto.java deleted file mode 100644 index 6b3eebc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhoto.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEPhoto complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEPhoto">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="image" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="side" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="size" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEPhoto", propOrder = { - -}) -public class CarVWEPhoto { - - @XmlElement(required = true) - protected byte[] image; - @XmlElement(required = true) - protected String side; - @XmlElement(required = true) - protected String size; - - /** - * Gets the value of the image property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getImage() { - return image; - } - - /** - * Sets the value of the image property. - * - * @param value - * allowed object is - * byte[] - */ - public void setImage(byte[] value) { - this.image = value; - } - - /** - * Gets the value of the side property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSide() { - return side; - } - - /** - * Sets the value of the side property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSide(String value) { - this.side = value; - } - - /** - * Gets the value of the size property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSize() { - return size; - } - - /** - * Sets the value of the size property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSize(String value) { - this.size = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotoArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotoArray.java deleted file mode 100644 index 53c4afa..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotoArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEPhotoArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEPhotoArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CarVWEPhoto" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEPhotoArray", propOrder = { - "item" -}) -public class CarVWEPhotoArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CarVWEPhoto } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotosRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotosRequestType.java deleted file mode 100644 index 62ecb8d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotosRequestType.java +++ /dev/null @@ -1,61 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEPhotosRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEPhotosRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEPhotosRequestType", propOrder = { - -}) -public class CarVWEPhotosRequestType { - - @XmlElement(name = "atl_code") - protected int atlCode; - - /** - * Gets the value of the atlCode property. - * - */ - public int getAtlCode() { - return atlCode; - } - - /** - * Sets the value of the atlCode property. - * - */ - public void setAtlCode(int value) { - this.atlCode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotosResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotosResponseType.java deleted file mode 100644 index 98ed2db..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPhotosResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEPhotosResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEPhotosResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEPhotoArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEPhotosResponseType", propOrder = { - -}) -public class CarVWEPhotosResponseType { - - @XmlElement(required = true) - protected CarVWEPhotoArray out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarVWEPhotoArray } - * - */ - public CarVWEPhotoArray getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarVWEPhotoArray } - * - */ - public void setOut(CarVWEPhotoArray value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPrices.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPrices.java deleted file mode 100644 index 99d760f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEPrices.java +++ /dev/null @@ -1,342 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CarVWEPrices complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEPrices">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="current_price_retail" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="current_price_exchange" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="current_price_trade" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="date_price_list" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="catalog_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="btw_new_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="bpm_new_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="net_catalog_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="recalculated_catalog_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="recalculated_btw_new_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="recalculated_net_catalog_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEPrices", propOrder = { - -}) -public class CarVWEPrices { - - @XmlElement(name = "current_price_retail") - protected Integer currentPriceRetail; - @XmlElement(name = "current_price_exchange") - protected Integer currentPriceExchange; - @XmlElement(name = "current_price_trade") - protected Integer currentPriceTrade; - @XmlElement(name = "date_price_list") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar datePriceList; - @XmlElement(name = "catalog_price") - protected Integer catalogPrice; - @XmlElement(name = "btw_new_price") - protected Integer btwNewPrice; - @XmlElement(name = "bpm_new_price") - protected Integer bpmNewPrice; - @XmlElement(name = "net_catalog_price") - protected Integer netCatalogPrice; - @XmlElement(name = "recalculated_catalog_price") - protected Integer recalculatedCatalogPrice; - @XmlElement(name = "recalculated_btw_new_price") - protected Integer recalculatedBtwNewPrice; - @XmlElement(name = "recalculated_net_catalog_price") - protected Integer recalculatedNetCatalogPrice; - - /** - * Gets the value of the currentPriceRetail property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCurrentPriceRetail() { - return currentPriceRetail; - } - - /** - * Sets the value of the currentPriceRetail property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCurrentPriceRetail(Integer value) { - this.currentPriceRetail = value; - } - - /** - * Gets the value of the currentPriceExchange property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCurrentPriceExchange() { - return currentPriceExchange; - } - - /** - * Sets the value of the currentPriceExchange property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCurrentPriceExchange(Integer value) { - this.currentPriceExchange = value; - } - - /** - * Gets the value of the currentPriceTrade property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCurrentPriceTrade() { - return currentPriceTrade; - } - - /** - * Sets the value of the currentPriceTrade property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCurrentPriceTrade(Integer value) { - this.currentPriceTrade = value; - } - - /** - * Gets the value of the datePriceList property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDatePriceList() { - return datePriceList; - } - - /** - * Sets the value of the datePriceList property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDatePriceList(XMLGregorianCalendar value) { - this.datePriceList = value; - } - - /** - * Gets the value of the catalogPrice property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCatalogPrice() { - return catalogPrice; - } - - /** - * Sets the value of the catalogPrice property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCatalogPrice(Integer value) { - this.catalogPrice = value; - } - - /** - * Gets the value of the btwNewPrice property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getBtwNewPrice() { - return btwNewPrice; - } - - /** - * Sets the value of the btwNewPrice property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setBtwNewPrice(Integer value) { - this.btwNewPrice = value; - } - - /** - * Gets the value of the bpmNewPrice property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getBpmNewPrice() { - return bpmNewPrice; - } - - /** - * Sets the value of the bpmNewPrice property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setBpmNewPrice(Integer value) { - this.bpmNewPrice = value; - } - - /** - * Gets the value of the netCatalogPrice property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getNetCatalogPrice() { - return netCatalogPrice; - } - - /** - * Sets the value of the netCatalogPrice property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setNetCatalogPrice(Integer value) { - this.netCatalogPrice = value; - } - - /** - * Gets the value of the recalculatedCatalogPrice property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRecalculatedCatalogPrice() { - return recalculatedCatalogPrice; - } - - /** - * Sets the value of the recalculatedCatalogPrice property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRecalculatedCatalogPrice(Integer value) { - this.recalculatedCatalogPrice = value; - } - - /** - * Gets the value of the recalculatedBtwNewPrice property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRecalculatedBtwNewPrice() { - return recalculatedBtwNewPrice; - } - - /** - * Sets the value of the recalculatedBtwNewPrice property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRecalculatedBtwNewPrice(Integer value) { - this.recalculatedBtwNewPrice = value; - } - - /** - * Gets the value of the recalculatedNetCatalogPrice property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRecalculatedNetCatalogPrice() { - return recalculatedNetCatalogPrice; - } - - /** - * Sets the value of the recalculatedNetCatalogPrice property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRecalculatedNetCatalogPrice(Integer value) { - this.recalculatedNetCatalogPrice = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersion.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersion.java deleted file mode 100644 index ef3f966..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersion.java +++ /dev/null @@ -1,320 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CarVWEVersion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEVersion">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="version_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="fuel_type_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="fuel_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="body_style_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="body_style" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="doors" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="power" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="gear_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="gear" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="valid_from" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="valid_until" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEVersion", propOrder = { - -}) -public class CarVWEVersion { - - @XmlElement(name = "atl_code") - protected int atlCode; - @XmlElement(name = "version_name", required = true) - protected String versionName; - @XmlElement(name = "fuel_type_id") - protected int fuelTypeId; - @XmlElement(name = "fuel_type", required = true) - protected String fuelType; - @XmlElement(name = "body_style_id") - protected int bodyStyleId; - @XmlElement(name = "body_style", required = true) - protected String bodyStyle; - protected int doors; - protected int power; - @XmlElement(name = "gear_id") - protected int gearId; - @XmlElement(required = true) - protected String gear; - @XmlElement(name = "valid_from", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar validFrom; - @XmlElement(name = "valid_until") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar validUntil; - - /** - * Gets the value of the atlCode property. - * - */ - public int getAtlCode() { - return atlCode; - } - - /** - * Sets the value of the atlCode property. - * - */ - public void setAtlCode(int value) { - this.atlCode = value; - } - - /** - * Gets the value of the versionName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersionName() { - return versionName; - } - - /** - * Sets the value of the versionName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersionName(String value) { - this.versionName = value; - } - - /** - * Gets the value of the fuelTypeId property. - * - */ - public int getFuelTypeId() { - return fuelTypeId; - } - - /** - * Sets the value of the fuelTypeId property. - * - */ - public void setFuelTypeId(int value) { - this.fuelTypeId = value; - } - - /** - * Gets the value of the fuelType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFuelType() { - return fuelType; - } - - /** - * Sets the value of the fuelType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFuelType(String value) { - this.fuelType = value; - } - - /** - * Gets the value of the bodyStyleId property. - * - */ - public int getBodyStyleId() { - return bodyStyleId; - } - - /** - * Sets the value of the bodyStyleId property. - * - */ - public void setBodyStyleId(int value) { - this.bodyStyleId = value; - } - - /** - * Gets the value of the bodyStyle property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBodyStyle() { - return bodyStyle; - } - - /** - * Sets the value of the bodyStyle property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBodyStyle(String value) { - this.bodyStyle = value; - } - - /** - * Gets the value of the doors property. - * - */ - public int getDoors() { - return doors; - } - - /** - * Sets the value of the doors property. - * - */ - public void setDoors(int value) { - this.doors = value; - } - - /** - * Gets the value of the power property. - * - */ - public int getPower() { - return power; - } - - /** - * Sets the value of the power property. - * - */ - public void setPower(int value) { - this.power = value; - } - - /** - * Gets the value of the gearId property. - * - */ - public int getGearId() { - return gearId; - } - - /** - * Sets the value of the gearId property. - * - */ - public void setGearId(int value) { - this.gearId = value; - } - - /** - * Gets the value of the gear property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGear() { - return gear; - } - - /** - * Sets the value of the gear property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGear(String value) { - this.gear = value; - } - - /** - * Gets the value of the validFrom property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getValidFrom() { - return validFrom; - } - - /** - * Sets the value of the validFrom property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setValidFrom(XMLGregorianCalendar value) { - this.validFrom = value; - } - - /** - * Gets the value of the validUntil property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getValidUntil() { - return validUntil; - } - - /** - * Sets the value of the validUntil property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setValidUntil(XMLGregorianCalendar value) { - this.validUntil = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionArray.java deleted file mode 100644 index 4d45e09..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEVersionArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEVersionArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CarVWEVersion" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEVersionArray", propOrder = { - "item" -}) -public class CarVWEVersionArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CarVWEVersion } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPagedResult.java deleted file mode 100644 index e2a727a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEVersionPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEVersionPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}CarVWEVersionArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEVersionPagedResult", propOrder = { - -}) -public class CarVWEVersionPagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected CarVWEVersionArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link CarVWEVersionArray } - * - */ - public CarVWEVersionArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link CarVWEVersionArray } - * - */ - public void setResults(CarVWEVersionArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPrice.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPrice.java deleted file mode 100644 index 3eb3bf8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPrice.java +++ /dev/null @@ -1,575 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEVersionPrice complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEVersionPrice">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="brand_atl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="model_atl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="short_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="fuel_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="cylinder_capacity" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="seats" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="power" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="energy_label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="emission_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="doors" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="gear" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="top_speed" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="folder_weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="train_weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="layout" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="design" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="acceleration" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="sportivity" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="version" type="{http://www.webservices.nl/soap/}CarVWEVersionPriceReference"/>
- *         <element name="prices" type="{http://www.webservices.nl/soap/}CarVWEPrices"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEVersionPrice", propOrder = { - -}) -public class CarVWEVersionPrice { - - @XmlElement(name = "brand_atl") - protected String brandAtl; - @XmlElement(name = "model_atl") - protected String modelAtl; - @XmlElement(name = "short_type") - protected String shortType; - @XmlElement(name = "fuel_type") - protected String fuelType; - @XmlElement(name = "cylinder_capacity") - protected Integer cylinderCapacity; - protected Integer seats; - protected Integer power; - @XmlElement(name = "energy_label") - protected String energyLabel; - @XmlElement(name = "emission_code") - protected String emissionCode; - protected Integer doors; - protected String gear; - @XmlElement(name = "top_speed") - protected Integer topSpeed; - @XmlElement(name = "folder_weight") - protected Integer folderWeight; - @XmlElement(name = "train_weight") - protected Integer trainWeight; - protected String layout; - protected String design; - protected BigDecimal acceleration; - protected Float sportivity; - @XmlElement(required = true) - protected CarVWEVersionPriceReference version; - @XmlElement(required = true) - protected CarVWEPrices prices; - - /** - * Gets the value of the brandAtl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrandAtl() { - return brandAtl; - } - - /** - * Sets the value of the brandAtl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrandAtl(String value) { - this.brandAtl = value; - } - - /** - * Gets the value of the modelAtl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModelAtl() { - return modelAtl; - } - - /** - * Sets the value of the modelAtl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModelAtl(String value) { - this.modelAtl = value; - } - - /** - * Gets the value of the shortType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getShortType() { - return shortType; - } - - /** - * Sets the value of the shortType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setShortType(String value) { - this.shortType = value; - } - - /** - * Gets the value of the fuelType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFuelType() { - return fuelType; - } - - /** - * Sets the value of the fuelType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFuelType(String value) { - this.fuelType = value; - } - - /** - * Gets the value of the cylinderCapacity property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCylinderCapacity() { - return cylinderCapacity; - } - - /** - * Sets the value of the cylinderCapacity property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCylinderCapacity(Integer value) { - this.cylinderCapacity = value; - } - - /** - * Gets the value of the seats property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getSeats() { - return seats; - } - - /** - * Sets the value of the seats property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setSeats(Integer value) { - this.seats = value; - } - - /** - * Gets the value of the power property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPower() { - return power; - } - - /** - * Sets the value of the power property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPower(Integer value) { - this.power = value; - } - - /** - * Gets the value of the energyLabel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnergyLabel() { - return energyLabel; - } - - /** - * Sets the value of the energyLabel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnergyLabel(String value) { - this.energyLabel = value; - } - - /** - * Gets the value of the emissionCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmissionCode() { - return emissionCode; - } - - /** - * Sets the value of the emissionCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmissionCode(String value) { - this.emissionCode = value; - } - - /** - * Gets the value of the doors property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDoors() { - return doors; - } - - /** - * Sets the value of the doors property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDoors(Integer value) { - this.doors = value; - } - - /** - * Gets the value of the gear property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGear() { - return gear; - } - - /** - * Sets the value of the gear property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGear(String value) { - this.gear = value; - } - - /** - * Gets the value of the topSpeed property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTopSpeed() { - return topSpeed; - } - - /** - * Sets the value of the topSpeed property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTopSpeed(Integer value) { - this.topSpeed = value; - } - - /** - * Gets the value of the folderWeight property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getFolderWeight() { - return folderWeight; - } - - /** - * Sets the value of the folderWeight property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setFolderWeight(Integer value) { - this.folderWeight = value; - } - - /** - * Gets the value of the trainWeight property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTrainWeight() { - return trainWeight; - } - - /** - * Sets the value of the trainWeight property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTrainWeight(Integer value) { - this.trainWeight = value; - } - - /** - * Gets the value of the layout property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLayout() { - return layout; - } - - /** - * Sets the value of the layout property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLayout(String value) { - this.layout = value; - } - - /** - * Gets the value of the design property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDesign() { - return design; - } - - /** - * Sets the value of the design property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDesign(String value) { - this.design = value; - } - - /** - * Gets the value of the acceleration property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getAcceleration() { - return acceleration; - } - - /** - * Sets the value of the acceleration property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setAcceleration(BigDecimal value) { - this.acceleration = value; - } - - /** - * Gets the value of the sportivity property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getSportivity() { - return sportivity; - } - - /** - * Sets the value of the sportivity property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setSportivity(Float value) { - this.sportivity = value; - } - - /** - * Gets the value of the version property. - * - * @return - * possible object is - * {@link CarVWEVersionPriceReference } - * - */ - public CarVWEVersionPriceReference getVersion() { - return version; - } - - /** - * Sets the value of the version property. - * - * @param value - * allowed object is - * {@link CarVWEVersionPriceReference } - * - */ - public void setVersion(CarVWEVersionPriceReference value) { - this.version = value; - } - - /** - * Gets the value of the prices property. - * - * @return - * possible object is - * {@link CarVWEPrices } - * - */ - public CarVWEPrices getPrices() { - return prices; - } - - /** - * Sets the value of the prices property. - * - * @param value - * allowed object is - * {@link CarVWEPrices } - * - */ - public void setPrices(CarVWEPrices value) { - this.prices = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceReference.java deleted file mode 100644 index 1e1d7bd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceReference.java +++ /dev/null @@ -1,107 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEVersionPriceReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEVersionPriceReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="order_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="model_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEVersionPriceReference", propOrder = { - -}) -public class CarVWEVersionPriceReference { - - @XmlElement(name = "order_number") - protected int orderNumber; - @XmlElement(name = "atl_code") - protected int atlCode; - @XmlElement(name = "model_name", required = true) - protected String modelName; - - /** - * Gets the value of the orderNumber property. - * - */ - public int getOrderNumber() { - return orderNumber; - } - - /** - * Sets the value of the orderNumber property. - * - */ - public void setOrderNumber(int value) { - this.orderNumber = value; - } - - /** - * Gets the value of the atlCode property. - * - */ - public int getAtlCode() { - return atlCode; - } - - /** - * Sets the value of the atlCode property. - * - */ - public void setAtlCode(int value) { - this.atlCode = value; - } - - /** - * Gets the value of the modelName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModelName() { - return modelName; - } - - /** - * Sets the value of the modelName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModelName(String value) { - this.modelName = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceReferenceArray.java deleted file mode 100644 index 7643469..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEVersionPriceReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEVersionPriceReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CarVWEVersionPriceReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEVersionPriceReferenceArray", propOrder = { - "item" -}) -public class CarVWEVersionPriceReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CarVWEVersionPriceReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceRequestType.java deleted file mode 100644 index 483c782..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceRequestType.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEVersionPriceRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEVersionPriceRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEVersionPriceRequestType", propOrder = { - -}) -public class CarVWEVersionPriceRequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - @XmlElement(name = "atl_code") - protected int atlCode; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - - /** - * Gets the value of the atlCode property. - * - */ - public int getAtlCode() { - return atlCode; - } - - /** - * Sets the value of the atlCode property. - * - */ - public void setAtlCode(int value) { - this.atlCode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceResponseType.java deleted file mode 100644 index f0c0a26..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionPriceResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEVersionPriceResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEVersionPriceResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEVersionPrice"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEVersionPriceResponseType", propOrder = { - -}) -public class CarVWEVersionPriceResponseType { - - @XmlElement(required = true) - protected CarVWEVersionPrice out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarVWEVersionPrice } - * - */ - public CarVWEVersionPrice getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarVWEVersionPrice } - * - */ - public void setOut(CarVWEVersionPrice value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearData.java deleted file mode 100644 index 6d39f00..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearData.java +++ /dev/null @@ -1,603 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CarVWEVersionYearData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CarVWEVersionYearData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="brand_atl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="model_atl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="version_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="short_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="fuel_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="cylinder_capacity" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="seats" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="power" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="energy_label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="emission_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="doors" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="gear" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="top_speed" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="folder_weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="train_weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="layout" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="body_style" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="acceleration" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="sportivity" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="prices" type="{http://www.webservices.nl/soap/}CarVWEPrices"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CarVWEVersionYearData", propOrder = { - -}) -public class CarVWEVersionYearData { - - @XmlElement(name = "atl_code") - protected Integer atlCode; - @XmlElement(name = "brand_atl") - protected String brandAtl; - @XmlElement(name = "model_atl") - protected String modelAtl; - @XmlElement(name = "version_name") - protected String versionName; - @XmlElement(name = "short_type") - protected String shortType; - @XmlElement(name = "fuel_type") - protected String fuelType; - @XmlElement(name = "cylinder_capacity") - protected Integer cylinderCapacity; - protected Integer seats; - protected Integer power; - @XmlElement(name = "energy_label") - protected String energyLabel; - @XmlElement(name = "emission_code") - protected String emissionCode; - protected Integer doors; - protected String gear; - @XmlElement(name = "top_speed") - protected Integer topSpeed; - @XmlElement(name = "folder_weight") - protected Integer folderWeight; - @XmlElement(name = "train_weight") - protected Integer trainWeight; - protected String layout; - @XmlElement(name = "body_style") - protected String bodyStyle; - protected BigDecimal acceleration; - protected Float sportivity; - @XmlElement(required = true) - protected CarVWEPrices prices; - - /** - * Gets the value of the atlCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAtlCode() { - return atlCode; - } - - /** - * Sets the value of the atlCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAtlCode(Integer value) { - this.atlCode = value; - } - - /** - * Gets the value of the brandAtl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrandAtl() { - return brandAtl; - } - - /** - * Sets the value of the brandAtl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrandAtl(String value) { - this.brandAtl = value; - } - - /** - * Gets the value of the modelAtl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModelAtl() { - return modelAtl; - } - - /** - * Sets the value of the modelAtl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModelAtl(String value) { - this.modelAtl = value; - } - - /** - * Gets the value of the versionName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersionName() { - return versionName; - } - - /** - * Sets the value of the versionName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersionName(String value) { - this.versionName = value; - } - - /** - * Gets the value of the shortType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getShortType() { - return shortType; - } - - /** - * Sets the value of the shortType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setShortType(String value) { - this.shortType = value; - } - - /** - * Gets the value of the fuelType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFuelType() { - return fuelType; - } - - /** - * Sets the value of the fuelType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFuelType(String value) { - this.fuelType = value; - } - - /** - * Gets the value of the cylinderCapacity property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCylinderCapacity() { - return cylinderCapacity; - } - - /** - * Sets the value of the cylinderCapacity property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCylinderCapacity(Integer value) { - this.cylinderCapacity = value; - } - - /** - * Gets the value of the seats property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getSeats() { - return seats; - } - - /** - * Sets the value of the seats property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setSeats(Integer value) { - this.seats = value; - } - - /** - * Gets the value of the power property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPower() { - return power; - } - - /** - * Sets the value of the power property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPower(Integer value) { - this.power = value; - } - - /** - * Gets the value of the energyLabel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnergyLabel() { - return energyLabel; - } - - /** - * Sets the value of the energyLabel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnergyLabel(String value) { - this.energyLabel = value; - } - - /** - * Gets the value of the emissionCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmissionCode() { - return emissionCode; - } - - /** - * Sets the value of the emissionCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmissionCode(String value) { - this.emissionCode = value; - } - - /** - * Gets the value of the doors property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDoors() { - return doors; - } - - /** - * Sets the value of the doors property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDoors(Integer value) { - this.doors = value; - } - - /** - * Gets the value of the gear property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGear() { - return gear; - } - - /** - * Sets the value of the gear property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGear(String value) { - this.gear = value; - } - - /** - * Gets the value of the topSpeed property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTopSpeed() { - return topSpeed; - } - - /** - * Sets the value of the topSpeed property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTopSpeed(Integer value) { - this.topSpeed = value; - } - - /** - * Gets the value of the folderWeight property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getFolderWeight() { - return folderWeight; - } - - /** - * Sets the value of the folderWeight property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setFolderWeight(Integer value) { - this.folderWeight = value; - } - - /** - * Gets the value of the trainWeight property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTrainWeight() { - return trainWeight; - } - - /** - * Sets the value of the trainWeight property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTrainWeight(Integer value) { - this.trainWeight = value; - } - - /** - * Gets the value of the layout property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLayout() { - return layout; - } - - /** - * Sets the value of the layout property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLayout(String value) { - this.layout = value; - } - - /** - * Gets the value of the bodyStyle property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBodyStyle() { - return bodyStyle; - } - - /** - * Sets the value of the bodyStyle property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBodyStyle(String value) { - this.bodyStyle = value; - } - - /** - * Gets the value of the acceleration property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getAcceleration() { - return acceleration; - } - - /** - * Sets the value of the acceleration property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setAcceleration(BigDecimal value) { - this.acceleration = value; - } - - /** - * Gets the value of the sportivity property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getSportivity() { - return sportivity; - } - - /** - * Sets the value of the sportivity property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setSportivity(Float value) { - this.sportivity = value; - } - - /** - * Gets the value of the prices property. - * - * @return - * possible object is - * {@link CarVWEPrices } - * - */ - public CarVWEPrices getPrices() { - return prices; - } - - /** - * Sets the value of the prices property. - * - * @param value - * allowed object is - * {@link CarVWEPrices } - * - */ - public void setPrices(CarVWEPrices value) { - this.prices = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearDataRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearDataRequestType.java deleted file mode 100644 index 3cb63d0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearDataRequestType.java +++ /dev/null @@ -1,80 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEVersionYearDataRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEVersionYearDataRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="production_year" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="atl_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEVersionYearDataRequestType", propOrder = { - -}) -public class CarVWEVersionYearDataRequestType { - - @XmlElement(name = "production_year") - protected int productionYear; - @XmlElement(name = "atl_code") - protected int atlCode; - - /** - * Gets the value of the productionYear property. - * - */ - public int getProductionYear() { - return productionYear; - } - - /** - * Sets the value of the productionYear property. - * - */ - public void setProductionYear(int value) { - this.productionYear = value; - } - - /** - * Gets the value of the atlCode property. - * - */ - public int getAtlCode() { - return atlCode; - } - - /** - * Sets the value of the atlCode property. - * - */ - public void setAtlCode(int value) { - this.atlCode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearDataResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearDataResponseType.java deleted file mode 100644 index 31d5ac3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CarVWEVersionYearDataResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for carVWEVersionYearDataResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="carVWEVersionYearDataResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CarVWEVersionYearData"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "carVWEVersionYearDataResponseType", propOrder = { - -}) -public class CarVWEVersionYearDataResponseType { - - @XmlElement(required = true) - protected CarVWEVersionYearData out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CarVWEVersionYearData } - * - */ - public CarVWEVersionYearData getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CarVWEVersionYearData } - * - */ - public void setOut(CarVWEVersionYearData value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/City.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/City.java deleted file mode 100644 index 482fa76..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/City.java +++ /dev/null @@ -1,159 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for City complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="City">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="plaatsid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="plaatsnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="plaatsnaam_ptt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="plaatsnaam_extract" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeenteid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "City", propOrder = { - -}) -public class City { - - protected int plaatsid; - @XmlElement(required = true) - protected String plaatsnaam; - @XmlElement(name = "plaatsnaam_ptt", required = true) - protected String plaatsnaamPtt; - @XmlElement(name = "plaatsnaam_extract", required = true) - protected String plaatsnaamExtract; - protected int gemeenteid; - - /** - * Gets the value of the plaatsid property. - * - */ - public int getPlaatsid() { - return plaatsid; - } - - /** - * Sets the value of the plaatsid property. - * - */ - public void setPlaatsid(int value) { - this.plaatsid = value; - } - - /** - * Gets the value of the plaatsnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaatsnaam() { - return plaatsnaam; - } - - /** - * Sets the value of the plaatsnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaatsnaam(String value) { - this.plaatsnaam = value; - } - - /** - * Gets the value of the plaatsnaamPtt property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaatsnaamPtt() { - return plaatsnaamPtt; - } - - /** - * Sets the value of the plaatsnaamPtt property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaatsnaamPtt(String value) { - this.plaatsnaamPtt = value; - } - - /** - * Gets the value of the plaatsnaamExtract property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaatsnaamExtract() { - return plaatsnaamExtract; - } - - /** - * Sets the value of the plaatsnaamExtract property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaatsnaamExtract(String value) { - this.plaatsnaamExtract = value; - } - - /** - * Gets the value of the gemeenteid property. - * - */ - public int getGemeenteid() { - return gemeenteid; - } - - /** - * Sets the value of the gemeenteid property. - * - */ - public void setGemeenteid(int value) { - this.gemeenteid = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityArray.java deleted file mode 100644 index f58a1ed..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CityArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CityArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}City" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CityArray", propOrder = { - "item" -}) -public class CityArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link City } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityPagedResult.java deleted file mode 100644 index 31f001a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityPagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CityPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CityPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}CityArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CityPagedResult", propOrder = { - -}) -public class CityPagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected CityArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link CityArray } - * - */ - public CityArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link CityArray } - * - */ - public void setResults(CityArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2.java deleted file mode 100644 index 2595d63..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2.java +++ /dev/null @@ -1,276 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CityV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CityV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="plaatsid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="plaatsnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="plaatsnaam_ptt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="plaatsnaam_extract" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeenteid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="cebucocode" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="provinciecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="provincienaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CityV2", propOrder = { - -}) -public class CityV2 { - - protected int plaatsid; - @XmlElement(required = true) - protected String plaatsnaam; - @XmlElement(name = "plaatsnaam_ptt", required = true) - protected String plaatsnaamPtt; - @XmlElement(name = "plaatsnaam_extract", required = true) - protected String plaatsnaamExtract; - protected int gemeenteid; - @XmlElement(required = true) - protected String gemeentenaam; - protected int gemeentecode; - protected int cebucocode; - @XmlElement(required = true) - protected String provinciecode; - @XmlElement(required = true) - protected String provincienaam; - - /** - * Gets the value of the plaatsid property. - * - */ - public int getPlaatsid() { - return plaatsid; - } - - /** - * Sets the value of the plaatsid property. - * - */ - public void setPlaatsid(int value) { - this.plaatsid = value; - } - - /** - * Gets the value of the plaatsnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaatsnaam() { - return plaatsnaam; - } - - /** - * Sets the value of the plaatsnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaatsnaam(String value) { - this.plaatsnaam = value; - } - - /** - * Gets the value of the plaatsnaamPtt property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaatsnaamPtt() { - return plaatsnaamPtt; - } - - /** - * Sets the value of the plaatsnaamPtt property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaatsnaamPtt(String value) { - this.plaatsnaamPtt = value; - } - - /** - * Gets the value of the plaatsnaamExtract property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaatsnaamExtract() { - return plaatsnaamExtract; - } - - /** - * Sets the value of the plaatsnaamExtract property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaatsnaamExtract(String value) { - this.plaatsnaamExtract = value; - } - - /** - * Gets the value of the gemeenteid property. - * - */ - public int getGemeenteid() { - return gemeenteid; - } - - /** - * Sets the value of the gemeenteid property. - * - */ - public void setGemeenteid(int value) { - this.gemeenteid = value; - } - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the gemeentecode property. - * - */ - public int getGemeentecode() { - return gemeentecode; - } - - /** - * Sets the value of the gemeentecode property. - * - */ - public void setGemeentecode(int value) { - this.gemeentecode = value; - } - - /** - * Gets the value of the cebucocode property. - * - */ - public int getCebucocode() { - return cebucocode; - } - - /** - * Sets the value of the cebucocode property. - * - */ - public void setCebucocode(int value) { - this.cebucocode = value; - } - - /** - * Gets the value of the provinciecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvinciecode() { - return provinciecode; - } - - /** - * Sets the value of the provinciecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvinciecode(String value) { - this.provinciecode = value; - } - - /** - * Gets the value of the provincienaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvincienaam() { - return provincienaam; - } - - /** - * Sets the value of the provincienaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvincienaam(String value) { - this.provincienaam = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2Array.java deleted file mode 100644 index 5946ad0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CityV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CityV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CityV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CityV2Array", propOrder = { - "item" -}) -public class CityV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CityV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2PagedResult.java deleted file mode 100644 index 7c6ddcb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CityV2PagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CityV2PagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CityV2PagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}CityV2Array"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CityV2PagedResult", propOrder = { - -}) -public class CityV2PagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected CityV2Array results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link CityV2Array } - * - */ - public CityV2Array getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link CityV2Array } - * - */ - public void setResults(CityV2Array value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceAddressReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceAddressReference.java deleted file mode 100644 index 6760714..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceAddressReference.java +++ /dev/null @@ -1,174 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ComplianceAddressReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceAddressReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address_lines" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="postal_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="county" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceAddressReference", propOrder = { - -}) -public class ComplianceAddressReference { - - @XmlElement(name = "address_lines") - protected StringArray addressLines; - @XmlElement(name = "postal_code") - protected String postalCode; - protected String city; - protected String county; - protected String country; - - /** - * Gets the value of the addressLines property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getAddressLines() { - return addressLines; - } - - /** - * Sets the value of the addressLines property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setAddressLines(StringArray value) { - this.addressLines = value; - } - - /** - * Gets the value of the postalCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostalCode() { - return postalCode; - } - - /** - * Sets the value of the postalCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostalCode(String value) { - this.postalCode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the county property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCounty() { - return county; - } - - /** - * Sets the value of the county property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCounty(String value) { - this.county = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceAddressReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceAddressReferenceArray.java deleted file mode 100644 index 8ad85db..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceAddressReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ComplianceAddressReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceAddressReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}ComplianceAddressReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceAddressReferenceArray", propOrder = { - "item" -}) -public class ComplianceAddressReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ComplianceAddressReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusiness.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusiness.java deleted file mode 100644 index 59e1d3f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusiness.java +++ /dev/null @@ -1,394 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ComplianceBusiness complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceBusiness">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="compliance_business_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="business_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="website_url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="sanctions" type="{http://www.webservices.nl/soap/}ComplianceSanctionReferenceArray"/>
- *         <element name="flags" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="aliases" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="addresses" type="{http://www.webservices.nl/soap/}ComplianceAddressReferenceArray"/>
- *         <element name="related_businesses" type="{http://www.webservices.nl/soap/}ComplianceBusinessReferenceArray"/>
- *         <element name="related_persons" type="{http://www.webservices.nl/soap/}CompliancePersonReferenceArray"/>
- *         <element name="notes" type="{http://www.webservices.nl/soap/}ComplianceNoteReferenceArray"/>
- *         <element name="documents" type="{http://www.webservices.nl/soap/}ComplianceDocumentReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceBusiness", propOrder = { - -}) -public class ComplianceBusiness { - - @XmlElement(name = "compliance_business_id", required = true) - protected BigInteger complianceBusinessId; - @XmlElement(name = "business_name", required = true) - protected String businessName; - @XmlElement(name = "website_url") - protected String websiteUrl; - @XmlElement(name = "telephone_number") - protected String telephoneNumber; - @XmlElement(name = "fax_number") - protected String faxNumber; - @XmlElement(required = true) - protected ComplianceSanctionReferenceArray sanctions; - @XmlElement(required = true) - protected StringArray flags; - @XmlElement(required = true) - protected StringArray aliases; - @XmlElement(required = true) - protected ComplianceAddressReferenceArray addresses; - @XmlElement(name = "related_businesses", required = true) - protected ComplianceBusinessReferenceArray relatedBusinesses; - @XmlElement(name = "related_persons", required = true) - protected CompliancePersonReferenceArray relatedPersons; - @XmlElement(required = true) - protected ComplianceNoteReferenceArray notes; - @XmlElement(required = true) - protected ComplianceDocumentReferenceArray documents; - - /** - * Gets the value of the complianceBusinessId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getComplianceBusinessId() { - return complianceBusinessId; - } - - /** - * Sets the value of the complianceBusinessId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setComplianceBusinessId(BigInteger value) { - this.complianceBusinessId = value; - } - - /** - * Gets the value of the businessName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBusinessName() { - return businessName; - } - - /** - * Sets the value of the businessName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBusinessName(String value) { - this.businessName = value; - } - - /** - * Gets the value of the websiteUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWebsiteUrl() { - return websiteUrl; - } - - /** - * Sets the value of the websiteUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWebsiteUrl(String value) { - this.websiteUrl = value; - } - - /** - * Gets the value of the telephoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNumber() { - return telephoneNumber; - } - - /** - * Sets the value of the telephoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNumber(String value) { - this.telephoneNumber = value; - } - - /** - * Gets the value of the faxNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFaxNumber() { - return faxNumber; - } - - /** - * Sets the value of the faxNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFaxNumber(String value) { - this.faxNumber = value; - } - - /** - * Gets the value of the sanctions property. - * - * @return - * possible object is - * {@link ComplianceSanctionReferenceArray } - * - */ - public ComplianceSanctionReferenceArray getSanctions() { - return sanctions; - } - - /** - * Sets the value of the sanctions property. - * - * @param value - * allowed object is - * {@link ComplianceSanctionReferenceArray } - * - */ - public void setSanctions(ComplianceSanctionReferenceArray value) { - this.sanctions = value; - } - - /** - * Gets the value of the flags property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getFlags() { - return flags; - } - - /** - * Sets the value of the flags property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setFlags(StringArray value) { - this.flags = value; - } - - /** - * Gets the value of the aliases property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getAliases() { - return aliases; - } - - /** - * Sets the value of the aliases property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setAliases(StringArray value) { - this.aliases = value; - } - - /** - * Gets the value of the addresses property. - * - * @return - * possible object is - * {@link ComplianceAddressReferenceArray } - * - */ - public ComplianceAddressReferenceArray getAddresses() { - return addresses; - } - - /** - * Sets the value of the addresses property. - * - * @param value - * allowed object is - * {@link ComplianceAddressReferenceArray } - * - */ - public void setAddresses(ComplianceAddressReferenceArray value) { - this.addresses = value; - } - - /** - * Gets the value of the relatedBusinesses property. - * - * @return - * possible object is - * {@link ComplianceBusinessReferenceArray } - * - */ - public ComplianceBusinessReferenceArray getRelatedBusinesses() { - return relatedBusinesses; - } - - /** - * Sets the value of the relatedBusinesses property. - * - * @param value - * allowed object is - * {@link ComplianceBusinessReferenceArray } - * - */ - public void setRelatedBusinesses(ComplianceBusinessReferenceArray value) { - this.relatedBusinesses = value; - } - - /** - * Gets the value of the relatedPersons property. - * - * @return - * possible object is - * {@link CompliancePersonReferenceArray } - * - */ - public CompliancePersonReferenceArray getRelatedPersons() { - return relatedPersons; - } - - /** - * Sets the value of the relatedPersons property. - * - * @param value - * allowed object is - * {@link CompliancePersonReferenceArray } - * - */ - public void setRelatedPersons(CompliancePersonReferenceArray value) { - this.relatedPersons = value; - } - - /** - * Gets the value of the notes property. - * - * @return - * possible object is - * {@link ComplianceNoteReferenceArray } - * - */ - public ComplianceNoteReferenceArray getNotes() { - return notes; - } - - /** - * Sets the value of the notes property. - * - * @param value - * allowed object is - * {@link ComplianceNoteReferenceArray } - * - */ - public void setNotes(ComplianceNoteReferenceArray value) { - this.notes = value; - } - - /** - * Gets the value of the documents property. - * - * @return - * possible object is - * {@link ComplianceDocumentReferenceArray } - * - */ - public ComplianceDocumentReferenceArray getDocuments() { - return documents; - } - - /** - * Sets the value of the documents property. - * - * @param value - * allowed object is - * {@link ComplianceDocumentReferenceArray } - * - */ - public void setDocuments(ComplianceDocumentReferenceArray value) { - this.documents = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessReference.java deleted file mode 100644 index 69d2141..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessReference.java +++ /dev/null @@ -1,124 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ComplianceBusinessReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceBusinessReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="compliance_business_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="relation_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceBusinessReference", propOrder = { - -}) -public class ComplianceBusinessReference { - - @XmlElement(name = "compliance_business_id", required = true) - protected BigInteger complianceBusinessId; - @XmlElement(required = true) - protected String name; - @XmlElement(name = "relation_description") - protected String relationDescription; - - /** - * Gets the value of the complianceBusinessId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getComplianceBusinessId() { - return complianceBusinessId; - } - - /** - * Sets the value of the complianceBusinessId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setComplianceBusinessId(BigInteger value) { - this.complianceBusinessId = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the relationDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRelationDescription() { - return relationDescription; - } - - /** - * Sets the value of the relationDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRelationDescription(String value) { - this.relationDescription = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessReferenceArray.java deleted file mode 100644 index a81851e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ComplianceBusinessReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceBusinessReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}ComplianceBusinessReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceBusinessReferenceArray", propOrder = { - "item" -}) -public class ComplianceBusinessReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ComplianceBusinessReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReference.java deleted file mode 100644 index 7495ba3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReference.java +++ /dev/null @@ -1,177 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ComplianceBusinessSearchReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceBusinessSearchReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="match_score" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="compliance_business_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="flags" type="{http://www.webservices.nl/soap/}stringArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceBusinessSearchReference", propOrder = { - -}) -public class ComplianceBusinessSearchReference { - - @XmlElement(name = "match_score", required = true) - protected BigInteger matchScore; - @XmlElement(name = "compliance_business_id", required = true) - protected BigInteger complianceBusinessId; - @XmlElement(required = true) - protected String name; - protected String country; - @XmlElement(required = true) - protected StringArray flags; - - /** - * Gets the value of the matchScore property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getMatchScore() { - return matchScore; - } - - /** - * Sets the value of the matchScore property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setMatchScore(BigInteger value) { - this.matchScore = value; - } - - /** - * Gets the value of the complianceBusinessId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getComplianceBusinessId() { - return complianceBusinessId; - } - - /** - * Sets the value of the complianceBusinessId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setComplianceBusinessId(BigInteger value) { - this.complianceBusinessId = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the flags property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getFlags() { - return flags; - } - - /** - * Sets the value of the flags property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setFlags(StringArray value) { - this.flags = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReferenceArray.java deleted file mode 100644 index 5afcf46..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ComplianceBusinessSearchReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceBusinessSearchReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}ComplianceBusinessSearchReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceBusinessSearchReferenceArray", propOrder = { - "item" -}) -public class ComplianceBusinessSearchReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ComplianceBusinessSearchReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReferencePagedResult.java deleted file mode 100644 index 24f8b19..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceBusinessSearchReferencePagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ComplianceBusinessSearchReferencePagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceBusinessSearchReferencePagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}ComplianceBusinessSearchReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceBusinessSearchReferencePagedResult", propOrder = { - -}) -public class ComplianceBusinessSearchReferencePagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected ComplianceBusinessSearchReferenceArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link ComplianceBusinessSearchReferenceArray } - * - */ - public ComplianceBusinessSearchReferenceArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link ComplianceBusinessSearchReferenceArray } - * - */ - public void setResults(ComplianceBusinessSearchReferenceArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDate.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDate.java deleted file mode 100644 index 0891551..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDate.java +++ /dev/null @@ -1,111 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ComplianceDate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceDate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceDate", propOrder = { - -}) -public class ComplianceDate { - - protected int year; - protected Integer month; - protected Integer day; - - /** - * Gets the value of the year property. - * - */ - public int getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - */ - public void setYear(int value) { - this.year = value; - } - - /** - * Gets the value of the month property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMonth() { - return month; - } - - /** - * Sets the value of the month property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMonth(Integer value) { - this.month = value; - } - - /** - * Gets the value of the day property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDay() { - return day; - } - - /** - * Sets the value of the day property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDay(Integer value) { - this.day = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDocumentReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDocumentReference.java deleted file mode 100644 index f85d634..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDocumentReference.java +++ /dev/null @@ -1,153 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for ComplianceDocumentReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceDocumentReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="original_url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="cached_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_collected" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="categories" type="{http://www.webservices.nl/soap/}stringArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceDocumentReference", propOrder = { - -}) -public class ComplianceDocumentReference { - - @XmlElement(name = "original_url") - protected String originalUrl; - @XmlElement(name = "cached_url", required = true) - protected String cachedUrl; - @XmlElement(name = "date_collected") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateCollected; - @XmlElement(required = true) - protected StringArray categories; - - /** - * Gets the value of the originalUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOriginalUrl() { - return originalUrl; - } - - /** - * Sets the value of the originalUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOriginalUrl(String value) { - this.originalUrl = value; - } - - /** - * Gets the value of the cachedUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCachedUrl() { - return cachedUrl; - } - - /** - * Sets the value of the cachedUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCachedUrl(String value) { - this.cachedUrl = value; - } - - /** - * Gets the value of the dateCollected property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateCollected() { - return dateCollected; - } - - /** - * Sets the value of the dateCollected property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateCollected(XMLGregorianCalendar value) { - this.dateCollected = value; - } - - /** - * Gets the value of the categories property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getCategories() { - return categories; - } - - /** - * Sets the value of the categories property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setCategories(StringArray value) { - this.categories = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDocumentReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDocumentReferenceArray.java deleted file mode 100644 index cfef167..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceDocumentReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ComplianceDocumentReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceDocumentReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}ComplianceDocumentReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceDocumentReferenceArray", propOrder = { - "item" -}) -public class ComplianceDocumentReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ComplianceDocumentReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetBusinessRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetBusinessRequestType.java deleted file mode 100644 index 29ea04e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetBusinessRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for complianceGetBusinessRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="complianceGetBusinessRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="compliance_business_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "complianceGetBusinessRequestType", propOrder = { - -}) -public class ComplianceGetBusinessRequestType { - - @XmlElement(name = "compliance_business_id", required = true) - protected String complianceBusinessId; - - /** - * Gets the value of the complianceBusinessId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getComplianceBusinessId() { - return complianceBusinessId; - } - - /** - * Sets the value of the complianceBusinessId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setComplianceBusinessId(String value) { - this.complianceBusinessId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetBusinessResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetBusinessResponseType.java deleted file mode 100644 index 4485076..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetBusinessResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for complianceGetBusinessResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="complianceGetBusinessResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}ComplianceBusiness"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "complianceGetBusinessResponseType", propOrder = { - -}) -public class ComplianceGetBusinessResponseType { - - @XmlElement(required = true) - protected ComplianceBusiness out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link ComplianceBusiness } - * - */ - public ComplianceBusiness getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link ComplianceBusiness } - * - */ - public void setOut(ComplianceBusiness value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetPersonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetPersonRequestType.java deleted file mode 100644 index a931e0d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetPersonRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for complianceGetPersonRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="complianceGetPersonRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="compliance_person_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "complianceGetPersonRequestType", propOrder = { - -}) -public class ComplianceGetPersonRequestType { - - @XmlElement(name = "compliance_person_id", required = true) - protected String compliancePersonId; - - /** - * Gets the value of the compliancePersonId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompliancePersonId() { - return compliancePersonId; - } - - /** - * Sets the value of the compliancePersonId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompliancePersonId(String value) { - this.compliancePersonId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetPersonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetPersonResponseType.java deleted file mode 100644 index 9ee4649..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceGetPersonResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for complianceGetPersonResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="complianceGetPersonResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CompliancePerson"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "complianceGetPersonResponseType", propOrder = { - -}) -public class ComplianceGetPersonResponseType { - - @XmlElement(required = true) - protected CompliancePerson out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CompliancePerson } - * - */ - public CompliancePerson getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CompliancePerson } - * - */ - public void setOut(CompliancePerson value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceNoteReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceNoteReference.java deleted file mode 100644 index f754055..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceNoteReference.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ComplianceNoteReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceNoteReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceNoteReference", propOrder = { - -}) -public class ComplianceNoteReference { - - protected String source; - @XmlElement(required = true) - protected String text; - - /** - * Gets the value of the source property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSource() { - return source; - } - - /** - * Sets the value of the source property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSource(String value) { - this.source = value; - } - - /** - * Gets the value of the text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getText() { - return text; - } - - /** - * Sets the value of the text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setText(String value) { - this.text = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceNoteReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceNoteReferenceArray.java deleted file mode 100644 index 566adac..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceNoteReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ComplianceNoteReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceNoteReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}ComplianceNoteReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceNoteReferenceArray", propOrder = { - "item" -}) -public class ComplianceNoteReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ComplianceNoteReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePerson.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePerson.java deleted file mode 100644 index 0fb90c5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePerson.java +++ /dev/null @@ -1,691 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CompliancePerson complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CompliancePerson">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="compliance_person_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="pep_level" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="middle_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="date_of_death" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="deceased" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="nationality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="image_url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="mobile_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="sanctions" type="{http://www.webservices.nl/soap/}ComplianceSanctionReferenceArray"/>
- *         <element name="flags" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="aliases" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="addresses" type="{http://www.webservices.nl/soap/}ComplianceAddressReferenceArray"/>
- *         <element name="roles" type="{http://www.webservices.nl/soap/}ComplianceRoleReferenceArray"/>
- *         <element name="related_businesses" type="{http://www.webservices.nl/soap/}ComplianceBusinessReferenceArray"/>
- *         <element name="related_persons" type="{http://www.webservices.nl/soap/}CompliancePersonReferenceArray"/>
- *         <element name="notes" type="{http://www.webservices.nl/soap/}ComplianceNoteReferenceArray"/>
- *         <element name="documents" type="{http://www.webservices.nl/soap/}ComplianceDocumentReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CompliancePerson", propOrder = { - -}) -public class CompliancePerson { - - @XmlElement(name = "compliance_person_id", required = true) - protected BigInteger compliancePersonId; - @XmlElement(name = "pep_level") - protected BigInteger pepLevel; - @XmlElement(name = "first_name") - protected String firstName; - @XmlElement(name = "middle_name") - protected String middleName; - @XmlElement(name = "last_name", required = true) - protected String lastName; - protected String gender; - @XmlElement(name = "date_of_birth") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateOfBirth; - @XmlElement(name = "date_of_death") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateOfDeath; - protected Boolean deceased; - protected String nationality; - @XmlElement(name = "image_url") - protected String imageUrl; - @XmlElement(name = "telephone_number") - protected String telephoneNumber; - @XmlElement(name = "fax_number") - protected String faxNumber; - @XmlElement(name = "mobile_number") - protected String mobileNumber; - protected String email; - @XmlElement(required = true) - protected ComplianceSanctionReferenceArray sanctions; - @XmlElement(required = true) - protected StringArray flags; - @XmlElement(required = true) - protected StringArray aliases; - @XmlElement(required = true) - protected ComplianceAddressReferenceArray addresses; - @XmlElement(required = true) - protected ComplianceRoleReferenceArray roles; - @XmlElement(name = "related_businesses", required = true) - protected ComplianceBusinessReferenceArray relatedBusinesses; - @XmlElement(name = "related_persons", required = true) - protected CompliancePersonReferenceArray relatedPersons; - @XmlElement(required = true) - protected ComplianceNoteReferenceArray notes; - @XmlElement(required = true) - protected ComplianceDocumentReferenceArray documents; - - /** - * Gets the value of the compliancePersonId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getCompliancePersonId() { - return compliancePersonId; - } - - /** - * Sets the value of the compliancePersonId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setCompliancePersonId(BigInteger value) { - this.compliancePersonId = value; - } - - /** - * Gets the value of the pepLevel property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getPepLevel() { - return pepLevel; - } - - /** - * Sets the value of the pepLevel property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setPepLevel(BigInteger value) { - this.pepLevel = value; - } - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the middleName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMiddleName() { - return middleName; - } - - /** - * Sets the value of the middleName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMiddleName(String value) { - this.middleName = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the gender property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGender() { - return gender; - } - - /** - * Sets the value of the gender property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGender(String value) { - this.gender = value; - } - - /** - * Gets the value of the dateOfBirth property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfBirth() { - return dateOfBirth; - } - - /** - * Sets the value of the dateOfBirth property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfBirth(XMLGregorianCalendar value) { - this.dateOfBirth = value; - } - - /** - * Gets the value of the dateOfDeath property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfDeath() { - return dateOfDeath; - } - - /** - * Sets the value of the dateOfDeath property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfDeath(XMLGregorianCalendar value) { - this.dateOfDeath = value; - } - - /** - * Gets the value of the deceased property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isDeceased() { - return deceased; - } - - /** - * Sets the value of the deceased property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setDeceased(Boolean value) { - this.deceased = value; - } - - /** - * Gets the value of the nationality property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNationality() { - return nationality; - } - - /** - * Sets the value of the nationality property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNationality(String value) { - this.nationality = value; - } - - /** - * Gets the value of the imageUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getImageUrl() { - return imageUrl; - } - - /** - * Sets the value of the imageUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setImageUrl(String value) { - this.imageUrl = value; - } - - /** - * Gets the value of the telephoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNumber() { - return telephoneNumber; - } - - /** - * Sets the value of the telephoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNumber(String value) { - this.telephoneNumber = value; - } - - /** - * Gets the value of the faxNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFaxNumber() { - return faxNumber; - } - - /** - * Sets the value of the faxNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFaxNumber(String value) { - this.faxNumber = value; - } - - /** - * Gets the value of the mobileNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMobileNumber() { - return mobileNumber; - } - - /** - * Sets the value of the mobileNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMobileNumber(String value) { - this.mobileNumber = value; - } - - /** - * Gets the value of the email property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmail() { - return email; - } - - /** - * Sets the value of the email property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmail(String value) { - this.email = value; - } - - /** - * Gets the value of the sanctions property. - * - * @return - * possible object is - * {@link ComplianceSanctionReferenceArray } - * - */ - public ComplianceSanctionReferenceArray getSanctions() { - return sanctions; - } - - /** - * Sets the value of the sanctions property. - * - * @param value - * allowed object is - * {@link ComplianceSanctionReferenceArray } - * - */ - public void setSanctions(ComplianceSanctionReferenceArray value) { - this.sanctions = value; - } - - /** - * Gets the value of the flags property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getFlags() { - return flags; - } - - /** - * Sets the value of the flags property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setFlags(StringArray value) { - this.flags = value; - } - - /** - * Gets the value of the aliases property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getAliases() { - return aliases; - } - - /** - * Sets the value of the aliases property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setAliases(StringArray value) { - this.aliases = value; - } - - /** - * Gets the value of the addresses property. - * - * @return - * possible object is - * {@link ComplianceAddressReferenceArray } - * - */ - public ComplianceAddressReferenceArray getAddresses() { - return addresses; - } - - /** - * Sets the value of the addresses property. - * - * @param value - * allowed object is - * {@link ComplianceAddressReferenceArray } - * - */ - public void setAddresses(ComplianceAddressReferenceArray value) { - this.addresses = value; - } - - /** - * Gets the value of the roles property. - * - * @return - * possible object is - * {@link ComplianceRoleReferenceArray } - * - */ - public ComplianceRoleReferenceArray getRoles() { - return roles; - } - - /** - * Sets the value of the roles property. - * - * @param value - * allowed object is - * {@link ComplianceRoleReferenceArray } - * - */ - public void setRoles(ComplianceRoleReferenceArray value) { - this.roles = value; - } - - /** - * Gets the value of the relatedBusinesses property. - * - * @return - * possible object is - * {@link ComplianceBusinessReferenceArray } - * - */ - public ComplianceBusinessReferenceArray getRelatedBusinesses() { - return relatedBusinesses; - } - - /** - * Sets the value of the relatedBusinesses property. - * - * @param value - * allowed object is - * {@link ComplianceBusinessReferenceArray } - * - */ - public void setRelatedBusinesses(ComplianceBusinessReferenceArray value) { - this.relatedBusinesses = value; - } - - /** - * Gets the value of the relatedPersons property. - * - * @return - * possible object is - * {@link CompliancePersonReferenceArray } - * - */ - public CompliancePersonReferenceArray getRelatedPersons() { - return relatedPersons; - } - - /** - * Sets the value of the relatedPersons property. - * - * @param value - * allowed object is - * {@link CompliancePersonReferenceArray } - * - */ - public void setRelatedPersons(CompliancePersonReferenceArray value) { - this.relatedPersons = value; - } - - /** - * Gets the value of the notes property. - * - * @return - * possible object is - * {@link ComplianceNoteReferenceArray } - * - */ - public ComplianceNoteReferenceArray getNotes() { - return notes; - } - - /** - * Sets the value of the notes property. - * - * @param value - * allowed object is - * {@link ComplianceNoteReferenceArray } - * - */ - public void setNotes(ComplianceNoteReferenceArray value) { - this.notes = value; - } - - /** - * Gets the value of the documents property. - * - * @return - * possible object is - * {@link ComplianceDocumentReferenceArray } - * - */ - public ComplianceDocumentReferenceArray getDocuments() { - return documents; - } - - /** - * Sets the value of the documents property. - * - * @param value - * allowed object is - * {@link ComplianceDocumentReferenceArray } - * - */ - public void setDocuments(ComplianceDocumentReferenceArray value) { - this.documents = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonReference.java deleted file mode 100644 index 65772ca..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonReference.java +++ /dev/null @@ -1,181 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CompliancePersonReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CompliancePersonReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="compliance_person_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="relation_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CompliancePersonReference", propOrder = { - -}) -public class CompliancePersonReference { - - @XmlElement(name = "compliance_person_id", required = true) - protected BigInteger compliancePersonId; - @XmlElement(name = "first_name") - protected String firstName; - @XmlElement(name = "last_name", required = true) - protected String lastName; - @XmlElement(name = "date_of_birth") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateOfBirth; - @XmlElement(name = "relation_description") - protected String relationDescription; - - /** - * Gets the value of the compliancePersonId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getCompliancePersonId() { - return compliancePersonId; - } - - /** - * Sets the value of the compliancePersonId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setCompliancePersonId(BigInteger value) { - this.compliancePersonId = value; - } - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the dateOfBirth property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfBirth() { - return dateOfBirth; - } - - /** - * Sets the value of the dateOfBirth property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfBirth(XMLGregorianCalendar value) { - this.dateOfBirth = value; - } - - /** - * Gets the value of the relationDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRelationDescription() { - return relationDescription; - } - - /** - * Sets the value of the relationDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRelationDescription(String value) { - this.relationDescription = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonReferenceArray.java deleted file mode 100644 index aea14d8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CompliancePersonReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CompliancePersonReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CompliancePersonReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CompliancePersonReferenceArray", propOrder = { - "item" -}) -public class CompliancePersonReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CompliancePersonReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReference.java deleted file mode 100644 index 763ba4a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReference.java +++ /dev/null @@ -1,234 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CompliancePersonSearchReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CompliancePersonSearchReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="match_score" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="compliance_person_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="nationality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="flags" type="{http://www.webservices.nl/soap/}stringArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CompliancePersonSearchReference", propOrder = { - -}) -public class CompliancePersonSearchReference { - - @XmlElement(name = "match_score", required = true) - protected BigInteger matchScore; - @XmlElement(name = "compliance_person_id", required = true) - protected BigInteger compliancePersonId; - @XmlElement(name = "first_name") - protected String firstName; - @XmlElement(name = "last_name", required = true) - protected String lastName; - @XmlElement(name = "date_of_birth") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateOfBirth; - protected String nationality; - @XmlElement(required = true) - protected StringArray flags; - - /** - * Gets the value of the matchScore property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getMatchScore() { - return matchScore; - } - - /** - * Sets the value of the matchScore property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setMatchScore(BigInteger value) { - this.matchScore = value; - } - - /** - * Gets the value of the compliancePersonId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getCompliancePersonId() { - return compliancePersonId; - } - - /** - * Sets the value of the compliancePersonId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setCompliancePersonId(BigInteger value) { - this.compliancePersonId = value; - } - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the dateOfBirth property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfBirth() { - return dateOfBirth; - } - - /** - * Sets the value of the dateOfBirth property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfBirth(XMLGregorianCalendar value) { - this.dateOfBirth = value; - } - - /** - * Gets the value of the nationality property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNationality() { - return nationality; - } - - /** - * Sets the value of the nationality property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNationality(String value) { - this.nationality = value; - } - - /** - * Gets the value of the flags property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getFlags() { - return flags; - } - - /** - * Sets the value of the flags property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setFlags(StringArray value) { - this.flags = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReferenceArray.java deleted file mode 100644 index b773064..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CompliancePersonSearchReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CompliancePersonSearchReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CompliancePersonSearchReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CompliancePersonSearchReferenceArray", propOrder = { - "item" -}) -public class CompliancePersonSearchReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CompliancePersonSearchReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReferencePagedResult.java deleted file mode 100644 index 0f10b54..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CompliancePersonSearchReferencePagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CompliancePersonSearchReferencePagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CompliancePersonSearchReferencePagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}CompliancePersonSearchReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CompliancePersonSearchReferencePagedResult", propOrder = { - -}) -public class CompliancePersonSearchReferencePagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected CompliancePersonSearchReferenceArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link CompliancePersonSearchReferenceArray } - * - */ - public CompliancePersonSearchReferenceArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link CompliancePersonSearchReferenceArray } - * - */ - public void setResults(CompliancePersonSearchReferenceArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceRoleReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceRoleReference.java deleted file mode 100644 index a22c93d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceRoleReference.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ComplianceRoleReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceRoleReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="role" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="start_date" type="{http://www.webservices.nl/soap/}ComplianceDate" minOccurs="0"/>
- *         <element name="end_date" type="{http://www.webservices.nl/soap/}ComplianceDate" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceRoleReference", propOrder = { - -}) -public class ComplianceRoleReference { - - @XmlElement(required = true) - protected String role; - protected String country; - @XmlElement(name = "start_date") - protected ComplianceDate startDate; - @XmlElement(name = "end_date") - protected ComplianceDate endDate; - - /** - * Gets the value of the role property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRole() { - return role; - } - - /** - * Sets the value of the role property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRole(String value) { - this.role = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link ComplianceDate } - * - */ - public ComplianceDate getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link ComplianceDate } - * - */ - public void setStartDate(ComplianceDate value) { - this.startDate = value; - } - - /** - * Gets the value of the endDate property. - * - * @return - * possible object is - * {@link ComplianceDate } - * - */ - public ComplianceDate getEndDate() { - return endDate; - } - - /** - * Sets the value of the endDate property. - * - * @param value - * allowed object is - * {@link ComplianceDate } - * - */ - public void setEndDate(ComplianceDate value) { - this.endDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceRoleReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceRoleReferenceArray.java deleted file mode 100644 index 8fc1a48..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceRoleReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ComplianceRoleReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceRoleReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}ComplianceRoleReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceRoleReferenceArray", propOrder = { - "item" -}) -public class ComplianceRoleReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ComplianceRoleReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSanctionReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSanctionReference.java deleted file mode 100644 index fee7806..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSanctionReference.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ComplianceSanctionReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceSanctionReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="organisation" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceSanctionReference", propOrder = { - -}) -public class ComplianceSanctionReference { - - @XmlElement(required = true) - protected String organisation; - protected boolean active; - - /** - * Gets the value of the organisation property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrganisation() { - return organisation; - } - - /** - * Sets the value of the organisation property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrganisation(String value) { - this.organisation = value; - } - - /** - * Gets the value of the active property. - * - */ - public boolean isActive() { - return active; - } - - /** - * Sets the value of the active property. - * - */ - public void setActive(boolean value) { - this.active = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSanctionReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSanctionReferenceArray.java deleted file mode 100644 index 434e81f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSanctionReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ComplianceSanctionReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ComplianceSanctionReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}ComplianceSanctionReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ComplianceSanctionReferenceArray", propOrder = { - "item" -}) -public class ComplianceSanctionReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ComplianceSanctionReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchBusinessesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchBusinessesRequestType.java deleted file mode 100644 index 751dff9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchBusinessesRequestType.java +++ /dev/null @@ -1,241 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for complianceSearchBusinessesRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="complianceSearchBusinessesRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="business_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="postal_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="county" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "complianceSearchBusinessesRequestType", propOrder = { - -}) -public class ComplianceSearchBusinessesRequestType { - - @XmlElement(name = "business_name", required = true) - protected String businessName; - @XmlElement(required = true) - protected String street; - @XmlElement(name = "house_number") - protected int houseNumber; - @XmlElement(name = "postal_code", required = true) - protected String postalCode; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String county; - @XmlElement(required = true) - protected String country; - protected int page; - - /** - * Gets the value of the businessName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBusinessName() { - return businessName; - } - - /** - * Sets the value of the businessName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBusinessName(String value) { - this.businessName = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNumber property. - * - */ - public int getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - */ - public void setHouseNumber(int value) { - this.houseNumber = value; - } - - /** - * Gets the value of the postalCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostalCode() { - return postalCode; - } - - /** - * Sets the value of the postalCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostalCode(String value) { - this.postalCode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the county property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCounty() { - return county; - } - - /** - * Sets the value of the county property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCounty(String value) { - this.county = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchBusinessesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchBusinessesResponseType.java deleted file mode 100644 index 7ed0745..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchBusinessesResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for complianceSearchBusinessesResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="complianceSearchBusinessesResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}ComplianceBusinessSearchReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "complianceSearchBusinessesResponseType", propOrder = { - -}) -public class ComplianceSearchBusinessesResponseType { - - @XmlElement(required = true) - protected ComplianceBusinessSearchReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link ComplianceBusinessSearchReferencePagedResult } - * - */ - public ComplianceBusinessSearchReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link ComplianceBusinessSearchReferencePagedResult } - * - */ - public void setOut(ComplianceBusinessSearchReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchPersonsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchPersonsRequestType.java deleted file mode 100644 index 2c0852d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchPersonsRequestType.java +++ /dev/null @@ -1,144 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for complianceSearchPersonsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="complianceSearchPersonsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "complianceSearchPersonsRequestType", propOrder = { - -}) -public class ComplianceSearchPersonsRequestType { - - @XmlElement(name = "first_name", required = true) - protected String firstName; - @XmlElement(name = "last_name", required = true) - protected String lastName; - @XmlElement(name = "date_of_birth", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateOfBirth; - protected int page; - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the dateOfBirth property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfBirth() { - return dateOfBirth; - } - - /** - * Sets the value of the dateOfBirth property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfBirth(XMLGregorianCalendar value) { - this.dateOfBirth = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchPersonsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchPersonsResponseType.java deleted file mode 100644 index 9da1edc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ComplianceSearchPersonsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for complianceSearchPersonsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="complianceSearchPersonsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CompliancePersonSearchReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "complianceSearchPersonsResponseType", propOrder = { - -}) -public class ComplianceSearchPersonsResponseType { - - @XmlElement(required = true) - protected CompliancePersonSearchReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CompliancePersonSearchReferencePagedResult } - * - */ - public CompliancePersonSearchReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CompliancePersonSearchReferencePagedResult } - * - */ - public void setOut(CompliancePersonSearchReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreateTestUserRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreateTestUserRequestType.java deleted file mode 100644 index 6d79bcf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreateTestUserRequestType.java +++ /dev/null @@ -1,177 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for createTestUserRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="createTestUserRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="application" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="companyname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "createTestUserRequestType", propOrder = { - -}) -public class CreateTestUserRequestType { - - @XmlElement(required = true) - protected String application; - @XmlElement(required = true) - protected String email; - @XmlElement(required = true) - protected String companyname; - @XmlElement(required = true) - protected String contactname; - @XmlElement(required = true) - protected String telephone; - - /** - * Gets the value of the application property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getApplication() { - return application; - } - - /** - * Sets the value of the application property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setApplication(String value) { - this.application = value; - } - - /** - * Gets the value of the email property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmail() { - return email; - } - - /** - * Sets the value of the email property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmail(String value) { - this.email = value; - } - - /** - * Gets the value of the companyname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyname() { - return companyname; - } - - /** - * Sets the value of the companyname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyname(String value) { - this.companyname = value; - } - - /** - * Gets the value of the contactname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactname() { - return contactname; - } - - /** - * Sets the value of the contactname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactname(String value) { - this.contactname = value; - } - - /** - * Gets the value of the telephone property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephone() { - return telephone; - } - - /** - * Sets the value of the telephone property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephone(String value) { - this.telephone = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreateTestUserResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreateTestUserResponseType.java deleted file mode 100644 index c979efb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreateTestUserResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for createTestUserResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="createTestUserResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="user_credentials" type="{http://www.webservices.nl/soap/}UserCredentials"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "createTestUserResponseType", propOrder = { - -}) -public class CreateTestUserResponseType { - - @XmlElement(name = "user_credentials", required = true) - protected UserCredentials userCredentials; - - /** - * Gets the value of the userCredentials property. - * - * @return - * possible object is - * {@link UserCredentials } - * - */ - public UserCredentials getUserCredentials() { - return userCredentials; - } - - /** - * Sets the value of the userCredentials property. - * - * @param value - * allowed object is - * {@link UserCredentials } - * - */ - public void setUserCredentials(UserCredentials value) { - this.userCredentials = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdditionalInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdditionalInformation.java deleted file mode 100644 index ac27dc4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdditionalInformation.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeAdditionalInformation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeAdditionalInformation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nl" type="{http://www.webservices.nl/soap/}CreditsafeNlAdditionalInformation" minOccurs="0"/>
- *         <element name="be" type="{http://www.webservices.nl/soap/}CreditsafeBeAdditionalInformation" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeAdditionalInformation", propOrder = { - -}) -public class CreditsafeAdditionalInformation { - - protected CreditsafeNlAdditionalInformation nl; - protected CreditsafeBeAdditionalInformation be; - - /** - * Gets the value of the nl property. - * - * @return - * possible object is - * {@link CreditsafeNlAdditionalInformation } - * - */ - public CreditsafeNlAdditionalInformation getNl() { - return nl; - } - - /** - * Sets the value of the nl property. - * - * @param value - * allowed object is - * {@link CreditsafeNlAdditionalInformation } - * - */ - public void setNl(CreditsafeNlAdditionalInformation value) { - this.nl = value; - } - - /** - * Gets the value of the be property. - * - * @return - * possible object is - * {@link CreditsafeBeAdditionalInformation } - * - */ - public CreditsafeBeAdditionalInformation getBe() { - return be; - } - - /** - * Sets the value of the be property. - * - * @param value - * allowed object is - * {@link CreditsafeBeAdditionalInformation } - * - */ - public void setBe(CreditsafeBeAdditionalInformation value) { - this.be = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAddressV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAddressV2.java deleted file mode 100644 index 88117e7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAddressV2.java +++ /dev/null @@ -1,227 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeAddressV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeAddressV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="full_address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="postal_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeAddressV2", propOrder = { - -}) -public class CreditsafeAddressV2 { - - protected String city; - protected String country; - @XmlElement(name = "full_address") - protected String fullAddress; - @XmlElement(name = "house_number") - protected String houseNumber; - @XmlElement(name = "postal_code") - protected String postalCode; - protected String street; - protected String telephone; - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the fullAddress property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFullAddress() { - return fullAddress; - } - - /** - * Sets the value of the fullAddress property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFullAddress(String value) { - this.fullAddress = value; - } - - /** - * Gets the value of the houseNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNumber(String value) { - this.houseNumber = value; - } - - /** - * Gets the value of the postalCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostalCode() { - return postalCode; - } - - /** - * Sets the value of the postalCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostalCode(String value) { - this.postalCode = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the telephone property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephone() { - return telephone; - } - - /** - * Sets the value of the telephone property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephone(String value) { - this.telephone = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAddressV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAddressV2Array.java deleted file mode 100644 index 55dcdc8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAddressV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeAddressV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeAddressV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeAddressV2Array", propOrder = { - "item" -}) -public class CreditsafeAddressV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeAddressV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdvisor.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdvisor.java deleted file mode 100644 index 2b30afe..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdvisor.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeAdvisor complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeAdvisor">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="auditor_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="solicitor_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeAdvisor", propOrder = { - -}) -public class CreditsafeAdvisor { - - @XmlElement(name = "auditor_name") - protected String auditorName; - @XmlElement(name = "solicitor_name") - protected String solicitorName; - - /** - * Gets the value of the auditorName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAuditorName() { - return auditorName; - } - - /** - * Sets the value of the auditorName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAuditorName(String value) { - this.auditorName = value; - } - - /** - * Gets the value of the solicitorName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSolicitorName() { - return solicitorName; - } - - /** - * Sets the value of the solicitorName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSolicitorName(String value) { - this.solicitorName = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdvisorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdvisorArray.java deleted file mode 100644 index 8b39651..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeAdvisorArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeAdvisorArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeAdvisorArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeAdvisor" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeAdvisorArray", propOrder = { - "item" -}) -public class CreditsafeAdvisorArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeAdvisor } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBalanceSheet.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBalanceSheet.java deleted file mode 100644 index cb4c57c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBalanceSheet.java +++ /dev/null @@ -1,1359 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeBalanceSheet complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBalanceSheet">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="year_end_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
- *         <element name="number_of_weeks" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="consolidated_accounts" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="land_and_buildings" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="plant_and_machinery" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="other_tangible_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="total_tangible_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="goodwill" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="other_intangible_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="total_intangible_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="investments" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="loans_to_group" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="other_loans" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="miscellaneous_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="total_other_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="total_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="raw_materials" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="work_in_progress" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="finished_goods" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="other_inventories" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="total_inventories" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="trade_receivables" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="group_receivables" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="receivables_due_after1year" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="miscellaneous_receivables" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="total_receivables" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="cash" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="other_current_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="total_current_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="total_assets" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="trade_payables" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="bank_liabilities" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="other_loans_or_finance" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="group_payables" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="miscellaneous_liabilities" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="total_current_liabilities" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="trade_payables_due_after1year" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="bank_liabilities_due_after1year" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="other_loans_or_finance_due_after1year" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="group_payables_due_after1year" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="miscellaneous_liabilities_due_after1year" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="total_long_term_liabilities" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="total_liabilities" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="called_up_share_capital" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="share_premium" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="revenue_reserves" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="other_reserves" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="total_shareholders_equity" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBalanceSheet", propOrder = { - -}) -public class CreditsafeBalanceSheet { - - @XmlElement(name = "year_end_date", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar yearEndDate; - @XmlElement(name = "number_of_weeks") - @XmlSchemaType(name = "unsignedInt") - protected long numberOfWeeks; - @XmlElement(required = true) - protected String currency; - @XmlElement(name = "consolidated_accounts") - protected Boolean consolidatedAccounts; - @XmlElement(name = "land_and_buildings") - protected BigDecimal landAndBuildings; - @XmlElement(name = "plant_and_machinery") - protected BigDecimal plantAndMachinery; - @XmlElement(name = "other_tangible_assets") - protected BigDecimal otherTangibleAssets; - @XmlElement(name = "total_tangible_assets") - protected BigDecimal totalTangibleAssets; - protected BigDecimal goodwill; - @XmlElement(name = "other_intangible_assets") - protected BigDecimal otherIntangibleAssets; - @XmlElement(name = "total_intangible_assets") - protected BigDecimal totalIntangibleAssets; - protected BigDecimal investments; - @XmlElement(name = "loans_to_group") - protected BigDecimal loansToGroup; - @XmlElement(name = "other_loans") - protected BigDecimal otherLoans; - @XmlElement(name = "miscellaneous_fixed_assets") - protected BigDecimal miscellaneousFixedAssets; - @XmlElement(name = "total_other_fixed_assets") - protected BigDecimal totalOtherFixedAssets; - @XmlElement(name = "total_fixed_assets") - protected BigDecimal totalFixedAssets; - @XmlElement(name = "raw_materials") - protected BigDecimal rawMaterials; - @XmlElement(name = "work_in_progress") - protected BigDecimal workInProgress; - @XmlElement(name = "finished_goods") - protected BigDecimal finishedGoods; - @XmlElement(name = "other_inventories") - protected BigDecimal otherInventories; - @XmlElement(name = "total_inventories") - protected BigDecimal totalInventories; - @XmlElement(name = "trade_receivables") - protected BigDecimal tradeReceivables; - @XmlElement(name = "group_receivables") - protected BigDecimal groupReceivables; - @XmlElement(name = "receivables_due_after1year") - protected BigDecimal receivablesDueAfter1Year; - @XmlElement(name = "miscellaneous_receivables") - protected BigDecimal miscellaneousReceivables; - @XmlElement(name = "total_receivables") - protected BigDecimal totalReceivables; - protected BigDecimal cash; - @XmlElement(name = "other_current_assets") - protected BigDecimal otherCurrentAssets; - @XmlElement(name = "total_current_assets") - protected BigDecimal totalCurrentAssets; - @XmlElement(name = "total_assets") - protected BigDecimal totalAssets; - @XmlElement(name = "trade_payables") - protected BigDecimal tradePayables; - @XmlElement(name = "bank_liabilities") - protected BigDecimal bankLiabilities; - @XmlElement(name = "other_loans_or_finance") - protected BigDecimal otherLoansOrFinance; - @XmlElement(name = "group_payables") - protected BigDecimal groupPayables; - @XmlElement(name = "miscellaneous_liabilities") - protected BigDecimal miscellaneousLiabilities; - @XmlElement(name = "total_current_liabilities") - protected BigDecimal totalCurrentLiabilities; - @XmlElement(name = "trade_payables_due_after1year") - protected BigDecimal tradePayablesDueAfter1Year; - @XmlElement(name = "bank_liabilities_due_after1year") - protected BigDecimal bankLiabilitiesDueAfter1Year; - @XmlElement(name = "other_loans_or_finance_due_after1year") - protected BigDecimal otherLoansOrFinanceDueAfter1Year; - @XmlElement(name = "group_payables_due_after1year") - protected BigDecimal groupPayablesDueAfter1Year; - @XmlElement(name = "miscellaneous_liabilities_due_after1year") - protected BigDecimal miscellaneousLiabilitiesDueAfter1Year; - @XmlElement(name = "total_long_term_liabilities") - protected BigDecimal totalLongTermLiabilities; - @XmlElement(name = "total_liabilities") - protected BigDecimal totalLiabilities; - @XmlElement(name = "called_up_share_capital") - protected BigDecimal calledUpShareCapital; - @XmlElement(name = "share_premium") - protected BigDecimal sharePremium; - @XmlElement(name = "revenue_reserves") - protected BigDecimal revenueReserves; - @XmlElement(name = "other_reserves") - protected BigDecimal otherReserves; - @XmlElement(name = "total_shareholders_equity") - protected BigDecimal totalShareholdersEquity; - - /** - * Gets the value of the yearEndDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getYearEndDate() { - return yearEndDate; - } - - /** - * Sets the value of the yearEndDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setYearEndDate(XMLGregorianCalendar value) { - this.yearEndDate = value; - } - - /** - * Gets the value of the numberOfWeeks property. - * - */ - public long getNumberOfWeeks() { - return numberOfWeeks; - } - - /** - * Sets the value of the numberOfWeeks property. - * - */ - public void setNumberOfWeeks(long value) { - this.numberOfWeeks = value; - } - - /** - * Gets the value of the currency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCurrency() { - return currency; - } - - /** - * Sets the value of the currency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCurrency(String value) { - this.currency = value; - } - - /** - * Gets the value of the consolidatedAccounts property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isConsolidatedAccounts() { - return consolidatedAccounts; - } - - /** - * Sets the value of the consolidatedAccounts property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setConsolidatedAccounts(Boolean value) { - this.consolidatedAccounts = value; - } - - /** - * Gets the value of the landAndBuildings property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLandAndBuildings() { - return landAndBuildings; - } - - /** - * Sets the value of the landAndBuildings property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLandAndBuildings(BigDecimal value) { - this.landAndBuildings = value; - } - - /** - * Gets the value of the plantAndMachinery property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPlantAndMachinery() { - return plantAndMachinery; - } - - /** - * Sets the value of the plantAndMachinery property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPlantAndMachinery(BigDecimal value) { - this.plantAndMachinery = value; - } - - /** - * Gets the value of the otherTangibleAssets property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getOtherTangibleAssets() { - return otherTangibleAssets; - } - - /** - * Sets the value of the otherTangibleAssets property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setOtherTangibleAssets(BigDecimal value) { - this.otherTangibleAssets = value; - } - - /** - * Gets the value of the totalTangibleAssets property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTotalTangibleAssets() { - return totalTangibleAssets; - } - - /** - * Sets the value of the totalTangibleAssets property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTotalTangibleAssets(BigDecimal value) { - this.totalTangibleAssets = value; - } - - /** - * Gets the value of the goodwill property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getGoodwill() { - return goodwill; - } - - /** - * Sets the value of the goodwill property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setGoodwill(BigDecimal value) { - this.goodwill = value; - } - - /** - * Gets the value of the otherIntangibleAssets property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getOtherIntangibleAssets() { - return otherIntangibleAssets; - } - - /** - * Sets the value of the otherIntangibleAssets property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setOtherIntangibleAssets(BigDecimal value) { - this.otherIntangibleAssets = value; - } - - /** - * Gets the value of the totalIntangibleAssets property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTotalIntangibleAssets() { - return totalIntangibleAssets; - } - - /** - * Sets the value of the totalIntangibleAssets property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTotalIntangibleAssets(BigDecimal value) { - this.totalIntangibleAssets = value; - } - - /** - * Gets the value of the investments property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getInvestments() { - return investments; - } - - /** - * Sets the value of the investments property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setInvestments(BigDecimal value) { - this.investments = value; - } - - /** - * Gets the value of the loansToGroup property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLoansToGroup() { - return loansToGroup; - } - - /** - * Sets the value of the loansToGroup property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLoansToGroup(BigDecimal value) { - this.loansToGroup = value; - } - - /** - * Gets the value of the otherLoans property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getOtherLoans() { - return otherLoans; - } - - /** - * Sets the value of the otherLoans property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setOtherLoans(BigDecimal value) { - this.otherLoans = value; - } - - /** - * Gets the value of the miscellaneousFixedAssets property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getMiscellaneousFixedAssets() { - return miscellaneousFixedAssets; - } - - /** - * Sets the value of the miscellaneousFixedAssets property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setMiscellaneousFixedAssets(BigDecimal value) { - this.miscellaneousFixedAssets = value; - } - - /** - * Gets the value of the totalOtherFixedAssets property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTotalOtherFixedAssets() { - return totalOtherFixedAssets; - } - - /** - * Sets the value of the totalOtherFixedAssets property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTotalOtherFixedAssets(BigDecimal value) { - this.totalOtherFixedAssets = value; - } - - /** - * Gets the value of the totalFixedAssets property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTotalFixedAssets() { - return totalFixedAssets; - } - - /** - * Sets the value of the totalFixedAssets property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTotalFixedAssets(BigDecimal value) { - this.totalFixedAssets = value; - } - - /** - * Gets the value of the rawMaterials property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getRawMaterials() { - return rawMaterials; - } - - /** - * Sets the value of the rawMaterials property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setRawMaterials(BigDecimal value) { - this.rawMaterials = value; - } - - /** - * Gets the value of the workInProgress property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWorkInProgress() { - return workInProgress; - } - - /** - * Sets the value of the workInProgress property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWorkInProgress(BigDecimal value) { - this.workInProgress = value; - } - - /** - * Gets the value of the finishedGoods property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getFinishedGoods() { - return finishedGoods; - } - - /** - * Sets the value of the finishedGoods property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setFinishedGoods(BigDecimal value) { - this.finishedGoods = value; - } - - /** - * Gets the value of the otherInventories property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getOtherInventories() { - return otherInventories; - } - - /** - * Sets the value of the otherInventories property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setOtherInventories(BigDecimal value) { - this.otherInventories = value; - } - - /** - * Gets the value of the totalInventories property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTotalInventories() { - return totalInventories; - } - - /** - * Sets the value of the totalInventories property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTotalInventories(BigDecimal value) { - this.totalInventories = value; - } - - /** - * Gets the value of the tradeReceivables property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTradeReceivables() { - return tradeReceivables; - } - - /** - * Sets the value of the tradeReceivables property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTradeReceivables(BigDecimal value) { - this.tradeReceivables = value; - } - - /** - * Gets the value of the groupReceivables property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getGroupReceivables() { - return groupReceivables; - } - - /** - * Sets the value of the groupReceivables property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setGroupReceivables(BigDecimal value) { - this.groupReceivables = value; - } - - /** - * Gets the value of the receivablesDueAfter1Year property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getReceivablesDueAfter1Year() { - return receivablesDueAfter1Year; - } - - /** - * Sets the value of the receivablesDueAfter1Year property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setReceivablesDueAfter1Year(BigDecimal value) { - this.receivablesDueAfter1Year = value; - } - - /** - * Gets the value of the miscellaneousReceivables property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getMiscellaneousReceivables() { - return miscellaneousReceivables; - } - - /** - * Sets the value of the miscellaneousReceivables property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setMiscellaneousReceivables(BigDecimal value) { - this.miscellaneousReceivables = value; - } - - /** - * Gets the value of the totalReceivables property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTotalReceivables() { - return totalReceivables; - } - - /** - * Sets the value of the totalReceivables property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTotalReceivables(BigDecimal value) { - this.totalReceivables = value; - } - - /** - * Gets the value of the cash property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getCash() { - return cash; - } - - /** - * Sets the value of the cash property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setCash(BigDecimal value) { - this.cash = value; - } - - /** - * Gets the value of the otherCurrentAssets property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getOtherCurrentAssets() { - return otherCurrentAssets; - } - - /** - * Sets the value of the otherCurrentAssets property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setOtherCurrentAssets(BigDecimal value) { - this.otherCurrentAssets = value; - } - - /** - * Gets the value of the totalCurrentAssets property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTotalCurrentAssets() { - return totalCurrentAssets; - } - - /** - * Sets the value of the totalCurrentAssets property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTotalCurrentAssets(BigDecimal value) { - this.totalCurrentAssets = value; - } - - /** - * Gets the value of the totalAssets property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTotalAssets() { - return totalAssets; - } - - /** - * Sets the value of the totalAssets property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTotalAssets(BigDecimal value) { - this.totalAssets = value; - } - - /** - * Gets the value of the tradePayables property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTradePayables() { - return tradePayables; - } - - /** - * Sets the value of the tradePayables property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTradePayables(BigDecimal value) { - this.tradePayables = value; - } - - /** - * Gets the value of the bankLiabilities property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getBankLiabilities() { - return bankLiabilities; - } - - /** - * Sets the value of the bankLiabilities property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setBankLiabilities(BigDecimal value) { - this.bankLiabilities = value; - } - - /** - * Gets the value of the otherLoansOrFinance property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getOtherLoansOrFinance() { - return otherLoansOrFinance; - } - - /** - * Sets the value of the otherLoansOrFinance property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setOtherLoansOrFinance(BigDecimal value) { - this.otherLoansOrFinance = value; - } - - /** - * Gets the value of the groupPayables property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getGroupPayables() { - return groupPayables; - } - - /** - * Sets the value of the groupPayables property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setGroupPayables(BigDecimal value) { - this.groupPayables = value; - } - - /** - * Gets the value of the miscellaneousLiabilities property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getMiscellaneousLiabilities() { - return miscellaneousLiabilities; - } - - /** - * Sets the value of the miscellaneousLiabilities property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setMiscellaneousLiabilities(BigDecimal value) { - this.miscellaneousLiabilities = value; - } - - /** - * Gets the value of the totalCurrentLiabilities property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTotalCurrentLiabilities() { - return totalCurrentLiabilities; - } - - /** - * Sets the value of the totalCurrentLiabilities property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTotalCurrentLiabilities(BigDecimal value) { - this.totalCurrentLiabilities = value; - } - - /** - * Gets the value of the tradePayablesDueAfter1Year property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTradePayablesDueAfter1Year() { - return tradePayablesDueAfter1Year; - } - - /** - * Sets the value of the tradePayablesDueAfter1Year property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTradePayablesDueAfter1Year(BigDecimal value) { - this.tradePayablesDueAfter1Year = value; - } - - /** - * Gets the value of the bankLiabilitiesDueAfter1Year property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getBankLiabilitiesDueAfter1Year() { - return bankLiabilitiesDueAfter1Year; - } - - /** - * Sets the value of the bankLiabilitiesDueAfter1Year property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setBankLiabilitiesDueAfter1Year(BigDecimal value) { - this.bankLiabilitiesDueAfter1Year = value; - } - - /** - * Gets the value of the otherLoansOrFinanceDueAfter1Year property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getOtherLoansOrFinanceDueAfter1Year() { - return otherLoansOrFinanceDueAfter1Year; - } - - /** - * Sets the value of the otherLoansOrFinanceDueAfter1Year property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setOtherLoansOrFinanceDueAfter1Year(BigDecimal value) { - this.otherLoansOrFinanceDueAfter1Year = value; - } - - /** - * Gets the value of the groupPayablesDueAfter1Year property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getGroupPayablesDueAfter1Year() { - return groupPayablesDueAfter1Year; - } - - /** - * Sets the value of the groupPayablesDueAfter1Year property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setGroupPayablesDueAfter1Year(BigDecimal value) { - this.groupPayablesDueAfter1Year = value; - } - - /** - * Gets the value of the miscellaneousLiabilitiesDueAfter1Year property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getMiscellaneousLiabilitiesDueAfter1Year() { - return miscellaneousLiabilitiesDueAfter1Year; - } - - /** - * Sets the value of the miscellaneousLiabilitiesDueAfter1Year property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setMiscellaneousLiabilitiesDueAfter1Year(BigDecimal value) { - this.miscellaneousLiabilitiesDueAfter1Year = value; - } - - /** - * Gets the value of the totalLongTermLiabilities property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTotalLongTermLiabilities() { - return totalLongTermLiabilities; - } - - /** - * Sets the value of the totalLongTermLiabilities property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTotalLongTermLiabilities(BigDecimal value) { - this.totalLongTermLiabilities = value; - } - - /** - * Gets the value of the totalLiabilities property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTotalLiabilities() { - return totalLiabilities; - } - - /** - * Sets the value of the totalLiabilities property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTotalLiabilities(BigDecimal value) { - this.totalLiabilities = value; - } - - /** - * Gets the value of the calledUpShareCapital property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getCalledUpShareCapital() { - return calledUpShareCapital; - } - - /** - * Sets the value of the calledUpShareCapital property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setCalledUpShareCapital(BigDecimal value) { - this.calledUpShareCapital = value; - } - - /** - * Gets the value of the sharePremium property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSharePremium() { - return sharePremium; - } - - /** - * Sets the value of the sharePremium property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSharePremium(BigDecimal value) { - this.sharePremium = value; - } - - /** - * Gets the value of the revenueReserves property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getRevenueReserves() { - return revenueReserves; - } - - /** - * Sets the value of the revenueReserves property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setRevenueReserves(BigDecimal value) { - this.revenueReserves = value; - } - - /** - * Gets the value of the otherReserves property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getOtherReserves() { - return otherReserves; - } - - /** - * Sets the value of the otherReserves property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setOtherReserves(BigDecimal value) { - this.otherReserves = value; - } - - /** - * Gets the value of the totalShareholdersEquity property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTotalShareholdersEquity() { - return totalShareholdersEquity; - } - - /** - * Sets the value of the totalShareholdersEquity property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTotalShareholdersEquity(BigDecimal value) { - this.totalShareholdersEquity = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBanker.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBanker.java deleted file mode 100644 index 5e7c499..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBanker.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeBanker complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBanker">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="bank_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBanker", propOrder = { - -}) -public class CreditsafeBanker { - - @XmlElement(required = true) - protected String name; - protected String address; - @XmlElement(name = "bank_code") - protected String bankCode; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the bankCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBankCode() { - return bankCode; - } - - /** - * Sets the value of the bankCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBankCode(String value) { - this.bankCode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBankerArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBankerArray.java deleted file mode 100644 index 4e655e6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBankerArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeBankerArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBankerArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeBanker" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBankerArray", propOrder = { - "item" -}) -public class CreditsafeBankerArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeBanker } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeAdditionalInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeAdditionalInformation.java deleted file mode 100644 index 8583754..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeAdditionalInformation.java +++ /dev/null @@ -1,229 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeBeAdditionalInformation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBeAdditionalInformation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="negative_information" type="{http://www.webservices.nl/soap/}CreditsafeBeNegativeInformation" minOccurs="0"/>
- *         <element name="misc" type="{http://www.webservices.nl/soap/}CreditsafeBeMisc" minOccurs="0"/>
- *         <element name="industry_quartile_analysis" type="{http://www.webservices.nl/soap/}CreditsafeIndustryQuartilyAnalysis" minOccurs="0"/>
- *         <element name="payment_expectations_summary" type="{http://www.webservices.nl/soap/}CreditsafeBePaymentExpectationsSummary" minOccurs="0"/>
- *         <element name="industry_comparison" type="{http://www.webservices.nl/soap/}CreditsafeBeIndustryComparison" minOccurs="0"/>
- *         <element name="registered_contractors" type="{http://www.webservices.nl/soap/}CreditsafeBeRegisteredContractorArray" minOccurs="0"/>
- *         <element name="events" type="{http://www.webservices.nl/soap/}CreditsafeBeEventArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBeAdditionalInformation", propOrder = { - -}) -public class CreditsafeBeAdditionalInformation { - - @XmlElement(name = "negative_information") - protected CreditsafeBeNegativeInformation negativeInformation; - protected CreditsafeBeMisc misc; - @XmlElement(name = "industry_quartile_analysis") - protected CreditsafeIndustryQuartilyAnalysis industryQuartileAnalysis; - @XmlElement(name = "payment_expectations_summary") - protected CreditsafeBePaymentExpectationsSummary paymentExpectationsSummary; - @XmlElement(name = "industry_comparison") - protected CreditsafeBeIndustryComparison industryComparison; - @XmlElement(name = "registered_contractors") - protected CreditsafeBeRegisteredContractorArray registeredContractors; - protected CreditsafeBeEventArray events; - - /** - * Gets the value of the negativeInformation property. - * - * @return - * possible object is - * {@link CreditsafeBeNegativeInformation } - * - */ - public CreditsafeBeNegativeInformation getNegativeInformation() { - return negativeInformation; - } - - /** - * Sets the value of the negativeInformation property. - * - * @param value - * allowed object is - * {@link CreditsafeBeNegativeInformation } - * - */ - public void setNegativeInformation(CreditsafeBeNegativeInformation value) { - this.negativeInformation = value; - } - - /** - * Gets the value of the misc property. - * - * @return - * possible object is - * {@link CreditsafeBeMisc } - * - */ - public CreditsafeBeMisc getMisc() { - return misc; - } - - /** - * Sets the value of the misc property. - * - * @param value - * allowed object is - * {@link CreditsafeBeMisc } - * - */ - public void setMisc(CreditsafeBeMisc value) { - this.misc = value; - } - - /** - * Gets the value of the industryQuartileAnalysis property. - * - * @return - * possible object is - * {@link CreditsafeIndustryQuartilyAnalysis } - * - */ - public CreditsafeIndustryQuartilyAnalysis getIndustryQuartileAnalysis() { - return industryQuartileAnalysis; - } - - /** - * Sets the value of the industryQuartileAnalysis property. - * - * @param value - * allowed object is - * {@link CreditsafeIndustryQuartilyAnalysis } - * - */ - public void setIndustryQuartileAnalysis(CreditsafeIndustryQuartilyAnalysis value) { - this.industryQuartileAnalysis = value; - } - - /** - * Gets the value of the paymentExpectationsSummary property. - * - * @return - * possible object is - * {@link CreditsafeBePaymentExpectationsSummary } - * - */ - public CreditsafeBePaymentExpectationsSummary getPaymentExpectationsSummary() { - return paymentExpectationsSummary; - } - - /** - * Sets the value of the paymentExpectationsSummary property. - * - * @param value - * allowed object is - * {@link CreditsafeBePaymentExpectationsSummary } - * - */ - public void setPaymentExpectationsSummary(CreditsafeBePaymentExpectationsSummary value) { - this.paymentExpectationsSummary = value; - } - - /** - * Gets the value of the industryComparison property. - * - * @return - * possible object is - * {@link CreditsafeBeIndustryComparison } - * - */ - public CreditsafeBeIndustryComparison getIndustryComparison() { - return industryComparison; - } - - /** - * Sets the value of the industryComparison property. - * - * @param value - * allowed object is - * {@link CreditsafeBeIndustryComparison } - * - */ - public void setIndustryComparison(CreditsafeBeIndustryComparison value) { - this.industryComparison = value; - } - - /** - * Gets the value of the registeredContractors property. - * - * @return - * possible object is - * {@link CreditsafeBeRegisteredContractorArray } - * - */ - public CreditsafeBeRegisteredContractorArray getRegisteredContractors() { - return registeredContractors; - } - - /** - * Sets the value of the registeredContractors property. - * - * @param value - * allowed object is - * {@link CreditsafeBeRegisteredContractorArray } - * - */ - public void setRegisteredContractors(CreditsafeBeRegisteredContractorArray value) { - this.registeredContractors = value; - } - - /** - * Gets the value of the events property. - * - * @return - * possible object is - * {@link CreditsafeBeEventArray } - * - */ - public CreditsafeBeEventArray getEvents() { - return events; - } - - /** - * Sets the value of the events property. - * - * @param value - * allowed object is - * {@link CreditsafeBeEventArray } - * - */ - public void setEvents(CreditsafeBeEventArray value) { - this.events = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeBankruptcyEvent.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeBankruptcyEvent.java deleted file mode 100644 index 1103083..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeBankruptcyEvent.java +++ /dev/null @@ -1,478 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeBeBankruptcyEvent complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBeBankruptcyEvent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bankruptcy_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="street_of_registered_office" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="city_of_registered_office" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="postcode_of_registered_office" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="nace_bel_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="nace_bel_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="commercial_court" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="source_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_of_decreee_of_bankruptcy" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="closing_date_of_summons" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="name_of_trustee" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="street_of_trustee" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="city_of_trustee" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="postcode_of_trustee" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBeBankruptcyEvent", propOrder = { - -}) -public class CreditsafeBeBankruptcyEvent { - - @XmlElement(name = "bankruptcy_type") - protected String bankruptcyType; - @XmlElement(name = "company_name") - protected String companyName; - @XmlElement(name = "street_of_registered_office") - protected String streetOfRegisteredOffice; - @XmlElement(name = "city_of_registered_office") - protected String cityOfRegisteredOffice; - @XmlElement(name = "postcode_of_registered_office") - protected String postcodeOfRegisteredOffice; - @XmlElement(name = "nace_bel_code") - protected String naceBelCode; - @XmlElement(name = "nace_bel_description") - protected String naceBelDescription; - @XmlElement(name = "commercial_court") - protected String commercialCourt; - @XmlElement(name = "source_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar sourceDate; - protected String source; - @XmlElement(name = "date_of_decreee_of_bankruptcy") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateOfDecreeeOfBankruptcy; - @XmlElement(name = "closing_date_of_summons") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar closingDateOfSummons; - @XmlElement(name = "name_of_trustee") - protected String nameOfTrustee; - @XmlElement(name = "street_of_trustee") - protected String streetOfTrustee; - @XmlElement(name = "city_of_trustee") - protected String cityOfTrustee; - @XmlElement(name = "postcode_of_trustee") - protected String postcodeOfTrustee; - - /** - * Gets the value of the bankruptcyType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBankruptcyType() { - return bankruptcyType; - } - - /** - * Sets the value of the bankruptcyType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBankruptcyType(String value) { - this.bankruptcyType = value; - } - - /** - * Gets the value of the companyName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyName() { - return companyName; - } - - /** - * Sets the value of the companyName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyName(String value) { - this.companyName = value; - } - - /** - * Gets the value of the streetOfRegisteredOffice property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetOfRegisteredOffice() { - return streetOfRegisteredOffice; - } - - /** - * Sets the value of the streetOfRegisteredOffice property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetOfRegisteredOffice(String value) { - this.streetOfRegisteredOffice = value; - } - - /** - * Gets the value of the cityOfRegisteredOffice property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCityOfRegisteredOffice() { - return cityOfRegisteredOffice; - } - - /** - * Sets the value of the cityOfRegisteredOffice property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCityOfRegisteredOffice(String value) { - this.cityOfRegisteredOffice = value; - } - - /** - * Gets the value of the postcodeOfRegisteredOffice property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcodeOfRegisteredOffice() { - return postcodeOfRegisteredOffice; - } - - /** - * Sets the value of the postcodeOfRegisteredOffice property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcodeOfRegisteredOffice(String value) { - this.postcodeOfRegisteredOffice = value; - } - - /** - * Gets the value of the naceBelCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNaceBelCode() { - return naceBelCode; - } - - /** - * Sets the value of the naceBelCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNaceBelCode(String value) { - this.naceBelCode = value; - } - - /** - * Gets the value of the naceBelDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNaceBelDescription() { - return naceBelDescription; - } - - /** - * Sets the value of the naceBelDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNaceBelDescription(String value) { - this.naceBelDescription = value; - } - - /** - * Gets the value of the commercialCourt property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCommercialCourt() { - return commercialCourt; - } - - /** - * Sets the value of the commercialCourt property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCommercialCourt(String value) { - this.commercialCourt = value; - } - - /** - * Gets the value of the sourceDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSourceDate() { - return sourceDate; - } - - /** - * Sets the value of the sourceDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSourceDate(XMLGregorianCalendar value) { - this.sourceDate = value; - } - - /** - * Gets the value of the source property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSource() { - return source; - } - - /** - * Sets the value of the source property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSource(String value) { - this.source = value; - } - - /** - * Gets the value of the dateOfDecreeeOfBankruptcy property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfDecreeeOfBankruptcy() { - return dateOfDecreeeOfBankruptcy; - } - - /** - * Sets the value of the dateOfDecreeeOfBankruptcy property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfDecreeeOfBankruptcy(XMLGregorianCalendar value) { - this.dateOfDecreeeOfBankruptcy = value; - } - - /** - * Gets the value of the closingDateOfSummons property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getClosingDateOfSummons() { - return closingDateOfSummons; - } - - /** - * Sets the value of the closingDateOfSummons property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setClosingDateOfSummons(XMLGregorianCalendar value) { - this.closingDateOfSummons = value; - } - - /** - * Gets the value of the nameOfTrustee property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNameOfTrustee() { - return nameOfTrustee; - } - - /** - * Sets the value of the nameOfTrustee property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNameOfTrustee(String value) { - this.nameOfTrustee = value; - } - - /** - * Gets the value of the streetOfTrustee property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetOfTrustee() { - return streetOfTrustee; - } - - /** - * Sets the value of the streetOfTrustee property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetOfTrustee(String value) { - this.streetOfTrustee = value; - } - - /** - * Gets the value of the cityOfTrustee property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCityOfTrustee() { - return cityOfTrustee; - } - - /** - * Sets the value of the cityOfTrustee property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCityOfTrustee(String value) { - this.cityOfTrustee = value; - } - - /** - * Gets the value of the postcodeOfTrustee property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcodeOfTrustee() { - return postcodeOfTrustee; - } - - /** - * Sets the value of the postcodeOfTrustee property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcodeOfTrustee(String value) { - this.postcodeOfTrustee = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeBankruptcyEventArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeBankruptcyEventArray.java deleted file mode 100644 index 1efb272..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeBankruptcyEventArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeBeBankruptcyEventArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBeBankruptcyEventArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeBeBankruptcyEvent" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBeBankruptcyEventArray", propOrder = { - "item" -}) -public class CreditsafeBeBankruptcyEventArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeBeBankruptcyEvent } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeEvent.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeEvent.java deleted file mode 100644 index e5f5f3c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeEvent.java +++ /dev/null @@ -1,97 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeBeEvent complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBeEvent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="serial_number" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBeEvent", propOrder = { - -}) -public class CreditsafeBeEvent { - - @XmlElement(name = "serial_number") - @XmlSchemaType(name = "unsignedInt") - protected Long serialNumber; - protected String description; - - /** - * Gets the value of the serialNumber property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getSerialNumber() { - return serialNumber; - } - - /** - * Sets the value of the serialNumber property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setSerialNumber(Long value) { - this.serialNumber = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeEventArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeEventArray.java deleted file mode 100644 index 1eba2ee..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeEventArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeBeEventArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBeEventArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeBeEvent" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBeEventArray", propOrder = { - "item" -}) -public class CreditsafeBeEventArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeBeEvent } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeIndustryComparison.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeIndustryComparison.java deleted file mode 100644 index 32541ca..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeIndustryComparison.java +++ /dev/null @@ -1,180 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeBeIndustryComparison complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBeIndustryComparison">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="activity_code" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- *         <element name="activity_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="industry_average_payment_expectation_days" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="industry_average_day_sales_outstanding" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="industry_average_credit_rating" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBeIndustryComparison", propOrder = { - -}) -public class CreditsafeBeIndustryComparison { - - @XmlElement(name = "activity_code") - @XmlSchemaType(name = "unsignedInt") - protected Long activityCode; - @XmlElement(name = "activity_description") - protected String activityDescription; - @XmlElement(name = "industry_average_payment_expectation_days") - protected BigDecimal industryAveragePaymentExpectationDays; - @XmlElement(name = "industry_average_day_sales_outstanding") - protected BigDecimal industryAverageDaySalesOutstanding; - @XmlElement(name = "industry_average_credit_rating") - protected BigDecimal industryAverageCreditRating; - - /** - * Gets the value of the activityCode property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getActivityCode() { - return activityCode; - } - - /** - * Sets the value of the activityCode property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setActivityCode(Long value) { - this.activityCode = value; - } - - /** - * Gets the value of the activityDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getActivityDescription() { - return activityDescription; - } - - /** - * Sets the value of the activityDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setActivityDescription(String value) { - this.activityDescription = value; - } - - /** - * Gets the value of the industryAveragePaymentExpectationDays property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getIndustryAveragePaymentExpectationDays() { - return industryAveragePaymentExpectationDays; - } - - /** - * Sets the value of the industryAveragePaymentExpectationDays property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setIndustryAveragePaymentExpectationDays(BigDecimal value) { - this.industryAveragePaymentExpectationDays = value; - } - - /** - * Gets the value of the industryAverageDaySalesOutstanding property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getIndustryAverageDaySalesOutstanding() { - return industryAverageDaySalesOutstanding; - } - - /** - * Sets the value of the industryAverageDaySalesOutstanding property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setIndustryAverageDaySalesOutstanding(BigDecimal value) { - this.industryAverageDaySalesOutstanding = value; - } - - /** - * Gets the value of the industryAverageCreditRating property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getIndustryAverageCreditRating() { - return industryAverageCreditRating; - } - - /** - * Sets the value of the industryAverageCreditRating property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setIndustryAverageCreditRating(BigDecimal value) { - this.industryAverageCreditRating = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeMisc.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeMisc.java deleted file mode 100644 index d9e3697..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeMisc.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeBeMisc complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBeMisc">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBeMisc", propOrder = { - -}) -public class CreditsafeBeMisc { - - @XmlElement(name = "fax_number") - protected String faxNumber; - - /** - * Gets the value of the faxNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFaxNumber() { - return faxNumber; - } - - /** - * Sets the value of the faxNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFaxNumber(String value) { - this.faxNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNSSODetail.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNSSODetail.java deleted file mode 100644 index a541feb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNSSODetail.java +++ /dev/null @@ -1,180 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeBeNSSODetail complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBeNSSODetail">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="business_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name_of_defendant" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_of_defendant" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_of_summons" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="labour_court" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBeNSSODetail", propOrder = { - -}) -public class CreditsafeBeNSSODetail { - - @XmlElement(name = "business_number") - protected String businessNumber; - @XmlElement(name = "name_of_defendant") - protected String nameOfDefendant; - @XmlElement(name = "legal_form_of_defendant") - protected String legalFormOfDefendant; - @XmlElement(name = "date_of_summons") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateOfSummons; - @XmlElement(name = "labour_court") - protected String labourCourt; - - /** - * Gets the value of the businessNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBusinessNumber() { - return businessNumber; - } - - /** - * Sets the value of the businessNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBusinessNumber(String value) { - this.businessNumber = value; - } - - /** - * Gets the value of the nameOfDefendant property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNameOfDefendant() { - return nameOfDefendant; - } - - /** - * Sets the value of the nameOfDefendant property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNameOfDefendant(String value) { - this.nameOfDefendant = value; - } - - /** - * Gets the value of the legalFormOfDefendant property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormOfDefendant() { - return legalFormOfDefendant; - } - - /** - * Sets the value of the legalFormOfDefendant property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormOfDefendant(String value) { - this.legalFormOfDefendant = value; - } - - /** - * Gets the value of the dateOfSummons property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfSummons() { - return dateOfSummons; - } - - /** - * Sets the value of the dateOfSummons property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfSummons(XMLGregorianCalendar value) { - this.dateOfSummons = value; - } - - /** - * Gets the value of the labourCourt property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLabourCourt() { - return labourCourt; - } - - /** - * Sets the value of the labourCourt property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLabourCourt(String value) { - this.labourCourt = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNSSODetailArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNSSODetailArray.java deleted file mode 100644 index 78e6115..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNSSODetailArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeBeNSSODetailArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBeNSSODetailArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeBeNSSODetail" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBeNSSODetailArray", propOrder = { - "item" -}) -public class CreditsafeBeNSSODetailArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeBeNSSODetail } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNegativeInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNegativeInformation.java deleted file mode 100644 index 18eb29a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeNegativeInformation.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeBeNegativeInformation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBeNegativeInformation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nsso_details" type="{http://www.webservices.nl/soap/}CreditsafeBeNSSODetailArray" minOccurs="0"/>
- *         <element name="protested_bills" type="{http://www.webservices.nl/soap/}CreditsafeBeProtestedBillArray" minOccurs="0"/>
- *         <element name="bankruptcy_events" type="{http://www.webservices.nl/soap/}CreditsafeBeBankruptcyEventArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBeNegativeInformation", propOrder = { - -}) -public class CreditsafeBeNegativeInformation { - - @XmlElement(name = "nsso_details") - protected CreditsafeBeNSSODetailArray nssoDetails; - @XmlElement(name = "protested_bills") - protected CreditsafeBeProtestedBillArray protestedBills; - @XmlElement(name = "bankruptcy_events") - protected CreditsafeBeBankruptcyEventArray bankruptcyEvents; - - /** - * Gets the value of the nssoDetails property. - * - * @return - * possible object is - * {@link CreditsafeBeNSSODetailArray } - * - */ - public CreditsafeBeNSSODetailArray getNssoDetails() { - return nssoDetails; - } - - /** - * Sets the value of the nssoDetails property. - * - * @param value - * allowed object is - * {@link CreditsafeBeNSSODetailArray } - * - */ - public void setNssoDetails(CreditsafeBeNSSODetailArray value) { - this.nssoDetails = value; - } - - /** - * Gets the value of the protestedBills property. - * - * @return - * possible object is - * {@link CreditsafeBeProtestedBillArray } - * - */ - public CreditsafeBeProtestedBillArray getProtestedBills() { - return protestedBills; - } - - /** - * Sets the value of the protestedBills property. - * - * @param value - * allowed object is - * {@link CreditsafeBeProtestedBillArray } - * - */ - public void setProtestedBills(CreditsafeBeProtestedBillArray value) { - this.protestedBills = value; - } - - /** - * Gets the value of the bankruptcyEvents property. - * - * @return - * possible object is - * {@link CreditsafeBeBankruptcyEventArray } - * - */ - public CreditsafeBeBankruptcyEventArray getBankruptcyEvents() { - return bankruptcyEvents; - } - - /** - * Sets the value of the bankruptcyEvents property. - * - * @param value - * allowed object is - * {@link CreditsafeBeBankruptcyEventArray } - * - */ - public void setBankruptcyEvents(CreditsafeBeBankruptcyEventArray value) { - this.bankruptcyEvents = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBePaymentExpectationsSummary.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBePaymentExpectationsSummary.java deleted file mode 100644 index 772ebe7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBePaymentExpectationsSummary.java +++ /dev/null @@ -1,97 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeBePaymentExpectationsSummary complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBePaymentExpectationsSummary">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="payment_expectation_days" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="day_sales_outstanding" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBePaymentExpectationsSummary", propOrder = { - -}) -public class CreditsafeBePaymentExpectationsSummary { - - @XmlElement(name = "payment_expectation_days") - protected BigDecimal paymentExpectationDays; - @XmlElement(name = "day_sales_outstanding") - protected BigDecimal daySalesOutstanding; - - /** - * Gets the value of the paymentExpectationDays property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPaymentExpectationDays() { - return paymentExpectationDays; - } - - /** - * Sets the value of the paymentExpectationDays property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPaymentExpectationDays(BigDecimal value) { - this.paymentExpectationDays = value; - } - - /** - * Gets the value of the daySalesOutstanding property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getDaySalesOutstanding() { - return daySalesOutstanding; - } - - /** - * Sets the value of the daySalesOutstanding property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setDaySalesOutstanding(BigDecimal value) { - this.daySalesOutstanding = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeProtestedBill.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeProtestedBill.java deleted file mode 100644 index 0a05b23..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeProtestedBill.java +++ /dev/null @@ -1,262 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeBeProtestedBill complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBeProtestedBill">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="drawee_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="drawee_address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="bill_amount" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="bill_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="maturity_of_bill_in_months" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="payment_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="name_of_drawer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="city_of_drawer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBeProtestedBill", propOrder = { - -}) -public class CreditsafeBeProtestedBill { - - @XmlElement(name = "drawee_name") - protected String draweeName; - @XmlElement(name = "drawee_address") - protected String draweeAddress; - @XmlElement(name = "bill_amount") - protected BigDecimal billAmount; - @XmlElement(name = "bill_currency") - protected String billCurrency; - @XmlElement(name = "maturity_of_bill_in_months") - protected BigDecimal maturityOfBillInMonths; - @XmlElement(name = "payment_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar paymentDate; - @XmlElement(name = "name_of_drawer") - protected String nameOfDrawer; - @XmlElement(name = "city_of_drawer") - protected String cityOfDrawer; - - /** - * Gets the value of the draweeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDraweeName() { - return draweeName; - } - - /** - * Sets the value of the draweeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDraweeName(String value) { - this.draweeName = value; - } - - /** - * Gets the value of the draweeAddress property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDraweeAddress() { - return draweeAddress; - } - - /** - * Sets the value of the draweeAddress property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDraweeAddress(String value) { - this.draweeAddress = value; - } - - /** - * Gets the value of the billAmount property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getBillAmount() { - return billAmount; - } - - /** - * Sets the value of the billAmount property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setBillAmount(BigDecimal value) { - this.billAmount = value; - } - - /** - * Gets the value of the billCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBillCurrency() { - return billCurrency; - } - - /** - * Sets the value of the billCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBillCurrency(String value) { - this.billCurrency = value; - } - - /** - * Gets the value of the maturityOfBillInMonths property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getMaturityOfBillInMonths() { - return maturityOfBillInMonths; - } - - /** - * Sets the value of the maturityOfBillInMonths property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setMaturityOfBillInMonths(BigDecimal value) { - this.maturityOfBillInMonths = value; - } - - /** - * Gets the value of the paymentDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPaymentDate() { - return paymentDate; - } - - /** - * Sets the value of the paymentDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPaymentDate(XMLGregorianCalendar value) { - this.paymentDate = value; - } - - /** - * Gets the value of the nameOfDrawer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNameOfDrawer() { - return nameOfDrawer; - } - - /** - * Sets the value of the nameOfDrawer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNameOfDrawer(String value) { - this.nameOfDrawer = value; - } - - /** - * Gets the value of the cityOfDrawer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCityOfDrawer() { - return cityOfDrawer; - } - - /** - * Sets the value of the cityOfDrawer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCityOfDrawer(String value) { - this.cityOfDrawer = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeProtestedBillArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeProtestedBillArray.java deleted file mode 100644 index c958597..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeProtestedBillArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeBeProtestedBillArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBeProtestedBillArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeBeProtestedBill" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBeProtestedBillArray", propOrder = { - "item" -}) -public class CreditsafeBeProtestedBillArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeBeProtestedBill } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeRegisteredContractor.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeRegisteredContractor.java deleted file mode 100644 index 0e46716..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeRegisteredContractor.java +++ /dev/null @@ -1,127 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeBeRegisteredContractor complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBeRegisteredContractor">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="registration_number" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- *         <element name="contractor_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="striking_off_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBeRegisteredContractor", propOrder = { - -}) -public class CreditsafeBeRegisteredContractor { - - @XmlElement(name = "registration_number") - @XmlSchemaType(name = "unsignedInt") - protected Long registrationNumber; - @XmlElement(name = "contractor_description") - protected String contractorDescription; - @XmlElement(name = "striking_off_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar strikingOffDate; - - /** - * Gets the value of the registrationNumber property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getRegistrationNumber() { - return registrationNumber; - } - - /** - * Sets the value of the registrationNumber property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setRegistrationNumber(Long value) { - this.registrationNumber = value; - } - - /** - * Gets the value of the contractorDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContractorDescription() { - return contractorDescription; - } - - /** - * Sets the value of the contractorDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContractorDescription(String value) { - this.contractorDescription = value; - } - - /** - * Gets the value of the strikingOffDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStrikingOffDate() { - return strikingOffDate; - } - - /** - * Sets the value of the strikingOffDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStrikingOffDate(XMLGregorianCalendar value) { - this.strikingOffDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeRegisteredContractorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeRegisteredContractorArray.java deleted file mode 100644 index e185c48..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeBeRegisteredContractorArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeBeRegisteredContractorArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeBeRegisteredContractorArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeBeRegisteredContractor" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeBeRegisteredContractorArray", propOrder = { - "item" -}) -public class CreditsafeBeRegisteredContractorArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeBeRegisteredContractor } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeChangedString.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeChangedString.java deleted file mode 100644 index 98087f3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeChangedString.java +++ /dev/null @@ -1,99 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeChangedString complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeChangedString">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_changed" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeChangedString", propOrder = { - -}) -public class CreditsafeChangedString { - - @XmlElement(required = true) - protected String value; - @XmlElement(name = "date_changed") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateChanged; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - - /** - * Gets the value of the dateChanged property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateChanged() { - return dateChanged; - } - - /** - * Sets the value of the dateChanged property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateChanged(XMLGregorianCalendar value) { - this.dateChanged = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeChangedStringArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeChangedStringArray.java deleted file mode 100644 index 915e6c3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeChangedStringArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeChangedStringArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeChangedStringArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeChangedString" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeChangedStringArray", propOrder = { - "item" -}) -public class CreditsafeChangedStringArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeChangedString } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompany.java deleted file mode 100644 index 39f8d4a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompany.java +++ /dev/null @@ -1,328 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompany complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompany">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="office_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="available_report_types" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="available_languages" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="online_reports" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompany", propOrder = { - -}) -public class CreditsafeCompany { - - @XmlElement(required = true) - protected String name; - @XmlElement(name = "registration_number") - protected String registrationNumber; - protected String type; - protected String status; - @XmlElement(name = "office_type") - protected String officeType; - protected String address; - @XmlElement(name = "available_report_types", required = true) - protected StringArray availableReportTypes; - @XmlElement(name = "available_languages", required = true) - protected StringArray availableLanguages; - @XmlElement(required = true) - protected String id; - @XmlElement(required = true) - protected String country; - @XmlElement(name = "online_reports") - protected boolean onlineReports; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the registrationNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistrationNumber() { - return registrationNumber; - } - - /** - * Sets the value of the registrationNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistrationNumber(String value) { - this.registrationNumber = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the officeType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOfficeType() { - return officeType; - } - - /** - * Sets the value of the officeType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOfficeType(String value) { - this.officeType = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the availableReportTypes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getAvailableReportTypes() { - return availableReportTypes; - } - - /** - * Sets the value of the availableReportTypes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setAvailableReportTypes(StringArray value) { - this.availableReportTypes = value; - } - - /** - * Gets the value of the availableLanguages property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getAvailableLanguages() { - return availableLanguages; - } - - /** - * Sets the value of the availableLanguages property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setAvailableLanguages(StringArray value) { - this.availableLanguages = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the onlineReports property. - * - */ - public boolean isOnlineReports() { - return onlineReports; - } - - /** - * Sets the value of the onlineReports property. - * - */ - public void setOnlineReports(boolean value) { - this.onlineReports = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivity.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivity.java deleted file mode 100644 index 59e615f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivity.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyActivity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyActivity">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="activity_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="activity_description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyActivity", propOrder = { - -}) -public class CreditsafeCompanyActivity { - - @XmlElement(name = "activity_code", required = true) - protected String activityCode; - @XmlElement(name = "activity_description", required = true) - protected String activityDescription; - - /** - * Gets the value of the activityCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getActivityCode() { - return activityCode; - } - - /** - * Sets the value of the activityCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setActivityCode(String value) { - this.activityCode = value; - } - - /** - * Gets the value of the activityDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getActivityDescription() { - return activityDescription; - } - - /** - * Sets the value of the activityDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setActivityDescription(String value) { - this.activityDescription = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityArray.java deleted file mode 100644 index 28f34a8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyActivityArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyActivityArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivity" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyActivityArray", propOrder = { - "item" -}) -public class CreditsafeCompanyActivityArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyActivity } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityClassificationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityClassificationV2.java deleted file mode 100644 index 37d42cc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityClassificationV2.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyActivityClassificationV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyActivityClassificationV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="activities" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivityV2Array" minOccurs="0"/>
- *         <element name="classification" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyActivityClassificationV2", propOrder = { - -}) -public class CreditsafeCompanyActivityClassificationV2 { - - protected CreditsafeCompanyActivityV2Array activities; - protected String classification; - - /** - * Gets the value of the activities property. - * - * @return - * possible object is - * {@link CreditsafeCompanyActivityV2Array } - * - */ - public CreditsafeCompanyActivityV2Array getActivities() { - return activities; - } - - /** - * Sets the value of the activities property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyActivityV2Array } - * - */ - public void setActivities(CreditsafeCompanyActivityV2Array value) { - this.activities = value; - } - - /** - * Gets the value of the classification property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClassification() { - return classification; - } - - /** - * Sets the value of the classification property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClassification(String value) { - this.classification = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityClassificationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityClassificationV2Array.java deleted file mode 100644 index 27844ab..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityClassificationV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyActivityClassificationV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyActivityClassificationV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivityClassificationV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyActivityClassificationV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyActivityClassificationV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyActivityClassificationV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityV2.java deleted file mode 100644 index 016989c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityV2.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyActivityV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyActivityV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="classification" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="activity_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="activity_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyActivityV2", propOrder = { - -}) -public class CreditsafeCompanyActivityV2 { - - protected String classification; - @XmlElement(name = "activity_code") - protected String activityCode; - @XmlElement(name = "activity_description") - protected String activityDescription; - - /** - * Gets the value of the classification property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClassification() { - return classification; - } - - /** - * Sets the value of the classification property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClassification(String value) { - this.classification = value; - } - - /** - * Gets the value of the activityCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getActivityCode() { - return activityCode; - } - - /** - * Sets the value of the activityCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setActivityCode(String value) { - this.activityCode = value; - } - - /** - * Gets the value of the activityDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getActivityDescription() { - return activityDescription; - } - - /** - * Sets the value of the activityDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setActivityDescription(String value) { - this.activityDescription = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityV2Array.java deleted file mode 100644 index 599e80b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyActivityV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyActivityV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyActivityV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivityV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyActivityV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyActivityV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyActivityV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationCommentV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationCommentV2.java deleted file mode 100644 index d6447b5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationCommentV2.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationCommentV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationCommentV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="sentiment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationCommentV2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationCommentV2 { - - protected String text; - protected String sentiment; - - /** - * Gets the value of the text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getText() { - return text; - } - - /** - * Sets the value of the text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setText(String value) { - this.text = value; - } - - /** - * Gets the value of the sentiment property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSentiment() { - return sentiment; - } - - /** - * Sets the value of the sentiment property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSentiment(String value) { - this.sentiment = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationCommentV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationCommentV2Array.java deleted file mode 100644 index 674a02b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationCommentV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationCommentV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationCommentV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationCommentV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationCommentV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationCommentV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationCommentV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2.java deleted file mode 100644 index 980e7c7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2.java +++ /dev/null @@ -1,202 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="miscellaneous" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDEMiscellaneousV2" minOccurs="0"/>
- *         <element name="image_accounts" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDEImageAccountV2" minOccurs="0"/>
- *         <element name="beneficiary_owners" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDEOwnerV2" minOccurs="0"/>
- *         <element name="turnover_ranges" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDETurnoverRangeV2" minOccurs="0"/>
- *         <element name="comments" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationCommentV2Array" minOccurs="0"/>
- *         <element name="historical_events" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationHistoricalEventV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 { - - protected CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 miscellaneous; - @XmlElement(name = "image_accounts") - protected CreditsafeCompanyAdditionalInformationDEImageAccountV2 imageAccounts; - @XmlElement(name = "beneficiary_owners") - protected CreditsafeCompanyAdditionalInformationDEOwnerV2 beneficiaryOwners; - @XmlElement(name = "turnover_ranges") - protected CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 turnoverRanges; - protected CreditsafeCompanyAdditionalInformationCommentV2Array comments; - @XmlElement(name = "historical_events") - protected CreditsafeCompanyAdditionalInformationHistoricalEventV2Array historicalEvents; - - /** - * Gets the value of the miscellaneous property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 } - * - */ - public CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 getMiscellaneous() { - return miscellaneous; - } - - /** - * Sets the value of the miscellaneous property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 } - * - */ - public void setMiscellaneous(CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 value) { - this.miscellaneous = value; - } - - /** - * Gets the value of the imageAccounts property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationDEImageAccountV2 } - * - */ - public CreditsafeCompanyAdditionalInformationDEImageAccountV2 getImageAccounts() { - return imageAccounts; - } - - /** - * Sets the value of the imageAccounts property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationDEImageAccountV2 } - * - */ - public void setImageAccounts(CreditsafeCompanyAdditionalInformationDEImageAccountV2 value) { - this.imageAccounts = value; - } - - /** - * Gets the value of the beneficiaryOwners property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationDEOwnerV2 } - * - */ - public CreditsafeCompanyAdditionalInformationDEOwnerV2 getBeneficiaryOwners() { - return beneficiaryOwners; - } - - /** - * Sets the value of the beneficiaryOwners property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationDEOwnerV2 } - * - */ - public void setBeneficiaryOwners(CreditsafeCompanyAdditionalInformationDEOwnerV2 value) { - this.beneficiaryOwners = value; - } - - /** - * Gets the value of the turnoverRanges property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 } - * - */ - public CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 getTurnoverRanges() { - return turnoverRanges; - } - - /** - * Sets the value of the turnoverRanges property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 } - * - */ - public void setTurnoverRanges(CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 value) { - this.turnoverRanges = value; - } - - /** - * Gets the value of the comments property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationCommentV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationCommentV2Array getComments() { - return comments; - } - - /** - * Sets the value of the comments property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationCommentV2Array } - * - */ - public void setComments(CreditsafeCompanyAdditionalInformationCommentV2Array value) { - this.comments = value; - } - - /** - * Gets the value of the historicalEvents property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationHistoricalEventV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationHistoricalEventV2Array getHistoricalEvents() { - return historicalEvents; - } - - /** - * Sets the value of the historicalEvents property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationHistoricalEventV2Array } - * - */ - public void setHistoricalEvents(CreditsafeCompanyAdditionalInformationHistoricalEventV2Array value) { - this.historicalEvents = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array.java deleted file mode 100644 index 7e21764..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEImageAccountV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEImageAccountV2.java deleted file mode 100644 index 0cd9dfc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEImageAccountV2.java +++ /dev/null @@ -1,209 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationDEImageAccountV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationDEImageAccountV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="serial_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="start_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="end_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="published_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="document_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="financials_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationDEImageAccountV2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationDEImageAccountV2 { - - @XmlElement(name = "serial_number") - protected String serialNumber; - @XmlElement(name = "start_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar startDate; - @XmlElement(name = "end_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar endDate; - @XmlElement(name = "published_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar publishedDate; - @XmlElement(name = "document_type") - protected String documentType; - @XmlElement(name = "financials_type") - protected String financialsType; - - /** - * Gets the value of the serialNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSerialNumber() { - return serialNumber; - } - - /** - * Sets the value of the serialNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSerialNumber(String value) { - this.serialNumber = value; - } - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStartDate(XMLGregorianCalendar value) { - this.startDate = value; - } - - /** - * Gets the value of the endDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEndDate() { - return endDate; - } - - /** - * Sets the value of the endDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEndDate(XMLGregorianCalendar value) { - this.endDate = value; - } - - /** - * Gets the value of the publishedDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPublishedDate() { - return publishedDate; - } - - /** - * Sets the value of the publishedDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPublishedDate(XMLGregorianCalendar value) { - this.publishedDate = value; - } - - /** - * Gets the value of the documentType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocumentType() { - return documentType; - } - - /** - * Sets the value of the documentType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocumentType(String value) { - this.documentType = value; - } - - /** - * Gets the value of the financialsType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinancialsType() { - return financialsType; - } - - /** - * Sets the value of the financialsType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinancialsType(String value) { - this.financialsType = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEImageAccountV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEImageAccountV2Array.java deleted file mode 100644 index 0dde767..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEImageAccountV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationDEImageAccountV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationDEImageAccountV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDEImageAccountV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationDEImageAccountV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationDEImageAccountV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationDEImageAccountV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEMiscellaneousV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEMiscellaneousV2.java deleted file mode 100644 index cb6ebab..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEMiscellaneousV2.java +++ /dev/null @@ -1,393 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationDEMiscellaneousV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="turnover_range" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="commercial_register_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="commercial_register_zip" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="financials_quality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="current_rating" type="{http://www.webservices.nl/soap/}CreditsafeValueV2" minOccurs="0"/>
- *         <element name="previous_rating" type="{http://www.webservices.nl/soap/}CreditsafeValueV2" minOccurs="0"/>
- *         <element name="premise_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="small_office" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="company_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="negative_rating" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="complementary_company" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="business_purpose" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationDEMiscellaneousV2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 { - - @XmlElement(name = "turnover_range") - protected String turnoverRange; - @XmlElement(name = "commercial_register_city") - protected String commercialRegisterCity; - @XmlElement(name = "commercial_register_zip") - protected String commercialRegisterZip; - @XmlElement(name = "financials_quality") - protected String financialsQuality; - @XmlElement(name = "current_rating") - protected CreditsafeValueV2 currentRating; - @XmlElement(name = "previous_rating") - protected CreditsafeValueV2 previousRating; - @XmlElement(name = "premise_type") - protected String premiseType; - @XmlElement(name = "small_office") - protected String smallOffice; - @XmlElement(name = "fax_number") - protected String faxNumber; - @XmlElement(name = "company_type") - protected String companyType; - @XmlElement(name = "negative_rating") - protected String negativeRating; - @XmlElement(name = "complementary_company") - protected String complementaryCompany; - @XmlElement(name = "business_purpose") - protected String businessPurpose; - - /** - * Gets the value of the turnoverRange property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTurnoverRange() { - return turnoverRange; - } - - /** - * Sets the value of the turnoverRange property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTurnoverRange(String value) { - this.turnoverRange = value; - } - - /** - * Gets the value of the commercialRegisterCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCommercialRegisterCity() { - return commercialRegisterCity; - } - - /** - * Sets the value of the commercialRegisterCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCommercialRegisterCity(String value) { - this.commercialRegisterCity = value; - } - - /** - * Gets the value of the commercialRegisterZip property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCommercialRegisterZip() { - return commercialRegisterZip; - } - - /** - * Sets the value of the commercialRegisterZip property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCommercialRegisterZip(String value) { - this.commercialRegisterZip = value; - } - - /** - * Gets the value of the financialsQuality property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinancialsQuality() { - return financialsQuality; - } - - /** - * Sets the value of the financialsQuality property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinancialsQuality(String value) { - this.financialsQuality = value; - } - - /** - * Gets the value of the currentRating property. - * - * @return - * possible object is - * {@link CreditsafeValueV2 } - * - */ - public CreditsafeValueV2 getCurrentRating() { - return currentRating; - } - - /** - * Sets the value of the currentRating property. - * - * @param value - * allowed object is - * {@link CreditsafeValueV2 } - * - */ - public void setCurrentRating(CreditsafeValueV2 value) { - this.currentRating = value; - } - - /** - * Gets the value of the previousRating property. - * - * @return - * possible object is - * {@link CreditsafeValueV2 } - * - */ - public CreditsafeValueV2 getPreviousRating() { - return previousRating; - } - - /** - * Sets the value of the previousRating property. - * - * @param value - * allowed object is - * {@link CreditsafeValueV2 } - * - */ - public void setPreviousRating(CreditsafeValueV2 value) { - this.previousRating = value; - } - - /** - * Gets the value of the premiseType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPremiseType() { - return premiseType; - } - - /** - * Sets the value of the premiseType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPremiseType(String value) { - this.premiseType = value; - } - - /** - * Gets the value of the smallOffice property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSmallOffice() { - return smallOffice; - } - - /** - * Sets the value of the smallOffice property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSmallOffice(String value) { - this.smallOffice = value; - } - - /** - * Gets the value of the faxNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFaxNumber() { - return faxNumber; - } - - /** - * Sets the value of the faxNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFaxNumber(String value) { - this.faxNumber = value; - } - - /** - * Gets the value of the companyType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyType() { - return companyType; - } - - /** - * Sets the value of the companyType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyType(String value) { - this.companyType = value; - } - - /** - * Gets the value of the negativeRating property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNegativeRating() { - return negativeRating; - } - - /** - * Sets the value of the negativeRating property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNegativeRating(String value) { - this.negativeRating = value; - } - - /** - * Gets the value of the complementaryCompany property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getComplementaryCompany() { - return complementaryCompany; - } - - /** - * Sets the value of the complementaryCompany property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setComplementaryCompany(String value) { - this.complementaryCompany = value; - } - - /** - * Gets the value of the businessPurpose property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBusinessPurpose() { - return businessPurpose; - } - - /** - * Sets the value of the businessPurpose property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBusinessPurpose(String value) { - this.businessPurpose = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array.java deleted file mode 100644 index 0300608..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDEMiscellaneousV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEOwnerV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEOwnerV2.java deleted file mode 100644 index d4e89c8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEOwnerV2.java +++ /dev/null @@ -1,174 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationDEOwnerV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationDEOwnerV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="postal_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="share_percent" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationDEOwnerV2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationDEOwnerV2 { - - protected String name; - protected String city; - @XmlElement(name = "postal_code") - protected String postalCode; - protected String country; - @XmlElement(name = "share_percent") - protected String sharePercent; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the postalCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostalCode() { - return postalCode; - } - - /** - * Sets the value of the postalCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostalCode(String value) { - this.postalCode = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the sharePercent property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSharePercent() { - return sharePercent; - } - - /** - * Sets the value of the sharePercent property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSharePercent(String value) { - this.sharePercent = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEOwnerV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEOwnerV2Array.java deleted file mode 100644 index e569661..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDEOwnerV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationDEOwnerV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationDEOwnerV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDEOwnerV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationDEOwnerV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationDEOwnerV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationDEOwnerV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDETurnoverRangeV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDETurnoverRangeV2.java deleted file mode 100644 index 7c9709f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDETurnoverRangeV2.java +++ /dev/null @@ -1,94 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationDETurnoverRangeV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="range" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationDETurnoverRangeV2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 { - - protected BigInteger year; - protected String range; - - /** - * Gets the value of the year property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setYear(BigInteger value) { - this.year = value; - } - - /** - * Gets the value of the range property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRange() { - return range; - } - - /** - * Sets the value of the range property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRange(String value) { - this.range = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array.java deleted file mode 100644 index 070c3cc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDETurnoverRangeV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationHistoricalEventV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationHistoricalEventV2.java deleted file mode 100644 index e5698dd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationHistoricalEventV2.java +++ /dev/null @@ -1,151 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationHistoricalEventV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationHistoricalEventV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="previous_value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="current_value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationHistoricalEventV2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationHistoricalEventV2 { - - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar date; - protected String description; - @XmlElement(name = "previous_value") - protected String previousValue; - @XmlElement(name = "current_value") - protected String currentValue; - - /** - * Gets the value of the date property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Sets the value of the date property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the previousValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPreviousValue() { - return previousValue; - } - - /** - * Sets the value of the previousValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPreviousValue(String value) { - this.previousValue = value; - } - - /** - * Gets the value of the currentValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCurrentValue() { - return currentValue; - } - - /** - * Sets the value of the currentValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCurrentValue(String value) { - this.currentValue = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationHistoricalEventV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationHistoricalEventV2Array.java deleted file mode 100644 index d392156..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationHistoricalEventV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationHistoricalEventV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationHistoricalEventV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationHistoricalEventV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationHistoricalEventV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationHistoricalEventV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationHistoricalEventV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2.java deleted file mode 100644 index aad581c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2.java +++ /dev/null @@ -1,283 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="payment_expectations_summary" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2" minOccurs="0"/>
- *         <element name="miscellaneous" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLMiscellaneousV2" minOccurs="0"/>
- *         <element name="industy_comparison" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2" minOccurs="0"/>
- *         <element name="industry_quartile_analysis" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2" minOccurs="0"/>
- *         <element name="financial_items" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array" minOccurs="0"/>
- *         <element name="kvk_filings" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array" minOccurs="0"/>
- *         <element name="letters_of_liablility_information403" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array" minOccurs="0"/>
- *         <element name="comments" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationCommentV2Array" minOccurs="0"/>
- *         <element name="historical_events" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationHistoricalEventV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 { - - @XmlElement(name = "payment_expectations_summary") - protected CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 paymentExpectationsSummary; - protected CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 miscellaneous; - @XmlElement(name = "industy_comparison") - protected CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 industyComparison; - @XmlElement(name = "industry_quartile_analysis") - protected CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 industryQuartileAnalysis; - @XmlElement(name = "financial_items") - protected CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array financialItems; - @XmlElement(name = "kvk_filings") - protected CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array kvkFilings; - @XmlElement(name = "letters_of_liablility_information403") - protected CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array lettersOfLiablilityInformation403; - protected CreditsafeCompanyAdditionalInformationCommentV2Array comments; - @XmlElement(name = "historical_events") - protected CreditsafeCompanyAdditionalInformationHistoricalEventV2Array historicalEvents; - - /** - * Gets the value of the paymentExpectationsSummary property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 } - * - */ - public CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 getPaymentExpectationsSummary() { - return paymentExpectationsSummary; - } - - /** - * Sets the value of the paymentExpectationsSummary property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 } - * - */ - public void setPaymentExpectationsSummary(CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 value) { - this.paymentExpectationsSummary = value; - } - - /** - * Gets the value of the miscellaneous property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 } - * - */ - public CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 getMiscellaneous() { - return miscellaneous; - } - - /** - * Sets the value of the miscellaneous property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 } - * - */ - public void setMiscellaneous(CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 value) { - this.miscellaneous = value; - } - - /** - * Gets the value of the industyComparison property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 } - * - */ - public CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 getIndustyComparison() { - return industyComparison; - } - - /** - * Sets the value of the industyComparison property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 } - * - */ - public void setIndustyComparison(CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 value) { - this.industyComparison = value; - } - - /** - * Gets the value of the industryQuartileAnalysis property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 } - * - */ - public CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 getIndustryQuartileAnalysis() { - return industryQuartileAnalysis; - } - - /** - * Sets the value of the industryQuartileAnalysis property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 } - * - */ - public void setIndustryQuartileAnalysis(CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 value) { - this.industryQuartileAnalysis = value; - } - - /** - * Gets the value of the financialItems property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array getFinancialItems() { - return financialItems; - } - - /** - * Sets the value of the financialItems property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array } - * - */ - public void setFinancialItems(CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array value) { - this.financialItems = value; - } - - /** - * Gets the value of the kvkFilings property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array getKvkFilings() { - return kvkFilings; - } - - /** - * Sets the value of the kvkFilings property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array } - * - */ - public void setKvkFilings(CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array value) { - this.kvkFilings = value; - } - - /** - * Gets the value of the lettersOfLiablilityInformation403 property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array } - * - */ - public CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array getLettersOfLiablilityInformation403() { - return lettersOfLiablilityInformation403; - } - - /** - * Sets the value of the lettersOfLiablilityInformation403 property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array } - * - */ - public void setLettersOfLiablilityInformation403(CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array value) { - this.lettersOfLiablilityInformation403 = value; - } - - /** - * Gets the value of the comments property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationCommentV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationCommentV2Array getComments() { - return comments; - } - - /** - * Sets the value of the comments property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationCommentV2Array } - * - */ - public void setComments(CreditsafeCompanyAdditionalInformationCommentV2Array value) { - this.comments = value; - } - - /** - * Gets the value of the historicalEvents property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationHistoricalEventV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationHistoricalEventV2Array getHistoricalEvents() { - return historicalEvents; - } - - /** - * Sets the value of the historicalEvents property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationHistoricalEventV2Array } - * - */ - public void setHistoricalEvents(CreditsafeCompanyAdditionalInformationHistoricalEventV2Array value) { - this.historicalEvents = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array.java deleted file mode 100644 index 2a7e410..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLFinancialItemV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLFinancialItemV2.java deleted file mode 100644 index 723f6aa..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLFinancialItemV2.java +++ /dev/null @@ -1,125 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLFinancialItemV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLFinancialItemV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="date_year_end" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="judgement" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="consolidated_subsidiaries" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLFinancialItemV2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationNLFinancialItemV2 { - - @XmlElement(name = "date_year_end") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateYearEnd; - protected String judgement; - @XmlElement(name = "consolidated_subsidiaries") - protected String consolidatedSubsidiaries; - - /** - * Gets the value of the dateYearEnd property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateYearEnd() { - return dateYearEnd; - } - - /** - * Sets the value of the dateYearEnd property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateYearEnd(XMLGregorianCalendar value) { - this.dateYearEnd = value; - } - - /** - * Gets the value of the judgement property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getJudgement() { - return judgement; - } - - /** - * Sets the value of the judgement property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setJudgement(String value) { - this.judgement = value; - } - - /** - * Gets the value of the consolidatedSubsidiaries property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getConsolidatedSubsidiaries() { - return consolidatedSubsidiaries; - } - - /** - * Sets the value of the consolidatedSubsidiaries property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setConsolidatedSubsidiaries(String value) { - this.consolidatedSubsidiaries = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array.java deleted file mode 100644 index eee5cc0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLFinancialItemV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationNLFinancialItemV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2.java deleted file mode 100644 index 95d6aa8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="industry_average_credit_rating" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="industry_average_credit_limit" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 { - - @XmlElement(name = "industry_average_credit_rating") - protected Float industryAverageCreditRating; - @XmlElement(name = "industry_average_credit_limit") - protected Float industryAverageCreditLimit; - - /** - * Gets the value of the industryAverageCreditRating property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getIndustryAverageCreditRating() { - return industryAverageCreditRating; - } - - /** - * Sets the value of the industryAverageCreditRating property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setIndustryAverageCreditRating(Float value) { - this.industryAverageCreditRating = value; - } - - /** - * Gets the value of the industryAverageCreditLimit property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getIndustryAverageCreditLimit() { - return industryAverageCreditLimit; - } - - /** - * Sets the value of the industryAverageCreditLimit property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setIndustryAverageCreditLimit(Float value) { - this.industryAverageCreditLimit = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array.java deleted file mode 100644 index 3dbabfe..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2.java deleted file mode 100644 index 0fb71de..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2.java +++ /dev/null @@ -1,119 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="lower" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="median" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="upper" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 { - - protected Float lower; - protected Float median; - protected Float upper; - - /** - * Gets the value of the lower property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getLower() { - return lower; - } - - /** - * Sets the value of the lower property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setLower(Float value) { - this.lower = value; - } - - /** - * Gets the value of the median property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getMedian() { - return median; - } - - /** - * Sets the value of the median property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setMedian(Float value) { - this.median = value; - } - - /** - * Gets the value of the upper property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getUpper() { - return upper; - } - - /** - * Sets the value of the upper property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setUpper(Float value) { - this.upper = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array.java deleted file mode 100644 index 45a27f2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2.java deleted file mode 100644 index 2b05fe3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="payment_expectation_days" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2" minOccurs="0"/>
- *         <element name="day_sales_outstanding" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 { - - @XmlElement(name = "payment_expectation_days") - protected CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 paymentExpectationDays; - @XmlElement(name = "day_sales_outstanding") - protected CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 daySalesOutstanding; - - /** - * Gets the value of the paymentExpectationDays property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 } - * - */ - public CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 getPaymentExpectationDays() { - return paymentExpectationDays; - } - - /** - * Sets the value of the paymentExpectationDays property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 } - * - */ - public void setPaymentExpectationDays(CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 value) { - this.paymentExpectationDays = value; - } - - /** - * Gets the value of the daySalesOutstanding property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 } - * - */ - public CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 getDaySalesOutstanding() { - return daySalesOutstanding; - } - - /** - * Sets the value of the daySalesOutstanding property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 } - * - */ - public void setDaySalesOutstanding(CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 value) { - this.daySalesOutstanding = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array.java deleted file mode 100644 index 9e8661d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLKvkFilingV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLKvkFilingV2.java deleted file mode 100644 index f8cbf56..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLKvkFilingV2.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLKvkFilingV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLKvkFilingV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="event" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLKvkFilingV2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationNLKvkFilingV2 { - - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar date; - protected String event; - - /** - * Gets the value of the date property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Sets the value of the date property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the event property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEvent() { - return event; - } - - /** - * Sets the value of the event property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEvent(String value) { - this.event = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array.java deleted file mode 100644 index d180e7a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLKvkFilingV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationNLKvkFilingV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2.java deleted file mode 100644 index 1544de1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2.java +++ /dev/null @@ -1,602 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="financial_year" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="company_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_submitted" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letter_of_liability1_start_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letter_of_liability1_submitted_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letter_of_liability1_removal_submitted" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letter_of_liability1_removal_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letter_of_liability2_start_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letter_of_liability2_submitted_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letter_of_liability2_removal_submitted" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letter_of_liability2_removal_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letter_of_liability1_start_date_parent2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letter_of_liability1_submitted_date_parent2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letter_of_liability1_removal_submitted_parent2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letter_of_liability1_removal_date_parent2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letter_of_liability2_start_date_parent2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letter_of_liability2_submitted_date_parent2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letter_of_liability2_removal_submitted_parent2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letter_of_liability2_removal_date_parent2" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2 { - - @XmlElement(name = "financial_year") - protected BigInteger financialYear; - @XmlElement(name = "company_name") - protected String companyName; - @XmlElement(name = "company_number") - protected String companyNumber; - @XmlElement(name = "date_submitted") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateSubmitted; - @XmlElement(name = "letter_of_liability1_start_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar letterOfLiability1StartDate; - @XmlElement(name = "letter_of_liability1_submitted_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar letterOfLiability1SubmittedDate; - @XmlElement(name = "letter_of_liability1_removal_submitted") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar letterOfLiability1RemovalSubmitted; - @XmlElement(name = "letter_of_liability1_removal_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar letterOfLiability1RemovalDate; - @XmlElement(name = "letter_of_liability2_start_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar letterOfLiability2StartDate; - @XmlElement(name = "letter_of_liability2_submitted_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar letterOfLiability2SubmittedDate; - @XmlElement(name = "letter_of_liability2_removal_submitted") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar letterOfLiability2RemovalSubmitted; - @XmlElement(name = "letter_of_liability2_removal_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar letterOfLiability2RemovalDate; - @XmlElement(name = "letter_of_liability1_start_date_parent2") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar letterOfLiability1StartDateParent2; - @XmlElement(name = "letter_of_liability1_submitted_date_parent2") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar letterOfLiability1SubmittedDateParent2; - @XmlElement(name = "letter_of_liability1_removal_submitted_parent2") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar letterOfLiability1RemovalSubmittedParent2; - @XmlElement(name = "letter_of_liability1_removal_date_parent2") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar letterOfLiability1RemovalDateParent2; - @XmlElement(name = "letter_of_liability2_start_date_parent2") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar letterOfLiability2StartDateParent2; - @XmlElement(name = "letter_of_liability2_submitted_date_parent2") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar letterOfLiability2SubmittedDateParent2; - @XmlElement(name = "letter_of_liability2_removal_submitted_parent2") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar letterOfLiability2RemovalSubmittedParent2; - @XmlElement(name = "letter_of_liability2_removal_date_parent2") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar letterOfLiability2RemovalDateParent2; - - /** - * Gets the value of the financialYear property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getFinancialYear() { - return financialYear; - } - - /** - * Sets the value of the financialYear property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setFinancialYear(BigInteger value) { - this.financialYear = value; - } - - /** - * Gets the value of the companyName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyName() { - return companyName; - } - - /** - * Sets the value of the companyName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyName(String value) { - this.companyName = value; - } - - /** - * Gets the value of the companyNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyNumber() { - return companyNumber; - } - - /** - * Sets the value of the companyNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyNumber(String value) { - this.companyNumber = value; - } - - /** - * Gets the value of the dateSubmitted property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateSubmitted() { - return dateSubmitted; - } - - /** - * Sets the value of the dateSubmitted property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateSubmitted(XMLGregorianCalendar value) { - this.dateSubmitted = value; - } - - /** - * Gets the value of the letterOfLiability1StartDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLetterOfLiability1StartDate() { - return letterOfLiability1StartDate; - } - - /** - * Sets the value of the letterOfLiability1StartDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLetterOfLiability1StartDate(XMLGregorianCalendar value) { - this.letterOfLiability1StartDate = value; - } - - /** - * Gets the value of the letterOfLiability1SubmittedDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLetterOfLiability1SubmittedDate() { - return letterOfLiability1SubmittedDate; - } - - /** - * Sets the value of the letterOfLiability1SubmittedDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLetterOfLiability1SubmittedDate(XMLGregorianCalendar value) { - this.letterOfLiability1SubmittedDate = value; - } - - /** - * Gets the value of the letterOfLiability1RemovalSubmitted property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLetterOfLiability1RemovalSubmitted() { - return letterOfLiability1RemovalSubmitted; - } - - /** - * Sets the value of the letterOfLiability1RemovalSubmitted property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLetterOfLiability1RemovalSubmitted(XMLGregorianCalendar value) { - this.letterOfLiability1RemovalSubmitted = value; - } - - /** - * Gets the value of the letterOfLiability1RemovalDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLetterOfLiability1RemovalDate() { - return letterOfLiability1RemovalDate; - } - - /** - * Sets the value of the letterOfLiability1RemovalDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLetterOfLiability1RemovalDate(XMLGregorianCalendar value) { - this.letterOfLiability1RemovalDate = value; - } - - /** - * Gets the value of the letterOfLiability2StartDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLetterOfLiability2StartDate() { - return letterOfLiability2StartDate; - } - - /** - * Sets the value of the letterOfLiability2StartDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLetterOfLiability2StartDate(XMLGregorianCalendar value) { - this.letterOfLiability2StartDate = value; - } - - /** - * Gets the value of the letterOfLiability2SubmittedDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLetterOfLiability2SubmittedDate() { - return letterOfLiability2SubmittedDate; - } - - /** - * Sets the value of the letterOfLiability2SubmittedDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLetterOfLiability2SubmittedDate(XMLGregorianCalendar value) { - this.letterOfLiability2SubmittedDate = value; - } - - /** - * Gets the value of the letterOfLiability2RemovalSubmitted property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLetterOfLiability2RemovalSubmitted() { - return letterOfLiability2RemovalSubmitted; - } - - /** - * Sets the value of the letterOfLiability2RemovalSubmitted property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLetterOfLiability2RemovalSubmitted(XMLGregorianCalendar value) { - this.letterOfLiability2RemovalSubmitted = value; - } - - /** - * Gets the value of the letterOfLiability2RemovalDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLetterOfLiability2RemovalDate() { - return letterOfLiability2RemovalDate; - } - - /** - * Sets the value of the letterOfLiability2RemovalDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLetterOfLiability2RemovalDate(XMLGregorianCalendar value) { - this.letterOfLiability2RemovalDate = value; - } - - /** - * Gets the value of the letterOfLiability1StartDateParent2 property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLetterOfLiability1StartDateParent2() { - return letterOfLiability1StartDateParent2; - } - - /** - * Sets the value of the letterOfLiability1StartDateParent2 property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLetterOfLiability1StartDateParent2(XMLGregorianCalendar value) { - this.letterOfLiability1StartDateParent2 = value; - } - - /** - * Gets the value of the letterOfLiability1SubmittedDateParent2 property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLetterOfLiability1SubmittedDateParent2() { - return letterOfLiability1SubmittedDateParent2; - } - - /** - * Sets the value of the letterOfLiability1SubmittedDateParent2 property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLetterOfLiability1SubmittedDateParent2(XMLGregorianCalendar value) { - this.letterOfLiability1SubmittedDateParent2 = value; - } - - /** - * Gets the value of the letterOfLiability1RemovalSubmittedParent2 property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLetterOfLiability1RemovalSubmittedParent2() { - return letterOfLiability1RemovalSubmittedParent2; - } - - /** - * Sets the value of the letterOfLiability1RemovalSubmittedParent2 property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLetterOfLiability1RemovalSubmittedParent2(XMLGregorianCalendar value) { - this.letterOfLiability1RemovalSubmittedParent2 = value; - } - - /** - * Gets the value of the letterOfLiability1RemovalDateParent2 property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLetterOfLiability1RemovalDateParent2() { - return letterOfLiability1RemovalDateParent2; - } - - /** - * Sets the value of the letterOfLiability1RemovalDateParent2 property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLetterOfLiability1RemovalDateParent2(XMLGregorianCalendar value) { - this.letterOfLiability1RemovalDateParent2 = value; - } - - /** - * Gets the value of the letterOfLiability2StartDateParent2 property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLetterOfLiability2StartDateParent2() { - return letterOfLiability2StartDateParent2; - } - - /** - * Sets the value of the letterOfLiability2StartDateParent2 property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLetterOfLiability2StartDateParent2(XMLGregorianCalendar value) { - this.letterOfLiability2StartDateParent2 = value; - } - - /** - * Gets the value of the letterOfLiability2SubmittedDateParent2 property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLetterOfLiability2SubmittedDateParent2() { - return letterOfLiability2SubmittedDateParent2; - } - - /** - * Sets the value of the letterOfLiability2SubmittedDateParent2 property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLetterOfLiability2SubmittedDateParent2(XMLGregorianCalendar value) { - this.letterOfLiability2SubmittedDateParent2 = value; - } - - /** - * Gets the value of the letterOfLiability2RemovalSubmittedParent2 property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLetterOfLiability2RemovalSubmittedParent2() { - return letterOfLiability2RemovalSubmittedParent2; - } - - /** - * Sets the value of the letterOfLiability2RemovalSubmittedParent2 property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLetterOfLiability2RemovalSubmittedParent2(XMLGregorianCalendar value) { - this.letterOfLiability2RemovalSubmittedParent2 = value; - } - - /** - * Gets the value of the letterOfLiability2RemovalDateParent2 property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLetterOfLiability2RemovalDateParent2() { - return letterOfLiability2RemovalDateParent2; - } - - /** - * Sets the value of the letterOfLiability2RemovalDateParent2 property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLetterOfLiability2RemovalDateParent2(XMLGregorianCalendar value) { - this.letterOfLiability2RemovalDateParent2 = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array.java deleted file mode 100644 index ef0b83a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLMiscellaneousV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLMiscellaneousV2.java deleted file mode 100644 index 65dc24a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLMiscellaneousV2.java +++ /dev/null @@ -1,234 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLMiscellaneousV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="date_of_legal_form" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="date_of_cessation_trading" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="exporter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="importer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="branch_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="negative_rating" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLMiscellaneousV2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 { - - @XmlElement(name = "date_of_legal_form") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateOfLegalForm; - @XmlElement(name = "date_of_cessation_trading") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateOfCessationTrading; - protected String exporter; - protected String importer; - @XmlElement(name = "rsin_number") - protected String rsinNumber; - @XmlElement(name = "branch_number") - protected String branchNumber; - @XmlElement(name = "negative_rating") - protected BigInteger negativeRating; - - /** - * Gets the value of the dateOfLegalForm property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfLegalForm() { - return dateOfLegalForm; - } - - /** - * Sets the value of the dateOfLegalForm property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfLegalForm(XMLGregorianCalendar value) { - this.dateOfLegalForm = value; - } - - /** - * Gets the value of the dateOfCessationTrading property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfCessationTrading() { - return dateOfCessationTrading; - } - - /** - * Sets the value of the dateOfCessationTrading property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfCessationTrading(XMLGregorianCalendar value) { - this.dateOfCessationTrading = value; - } - - /** - * Gets the value of the exporter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getExporter() { - return exporter; - } - - /** - * Sets the value of the exporter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setExporter(String value) { - this.exporter = value; - } - - /** - * Gets the value of the importer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getImporter() { - return importer; - } - - /** - * Sets the value of the importer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setImporter(String value) { - this.importer = value; - } - - /** - * Gets the value of the rsinNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsinNumber() { - return rsinNumber; - } - - /** - * Sets the value of the rsinNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsinNumber(String value) { - this.rsinNumber = value; - } - - /** - * Gets the value of the branchNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBranchNumber() { - return branchNumber; - } - - /** - * Sets the value of the branchNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBranchNumber(String value) { - this.branchNumber = value; - } - - /** - * Gets the value of the negativeRating property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getNegativeRating() { - return negativeRating; - } - - /** - * Sets the value of the negativeRating property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setNegativeRating(BigInteger value) { - this.negativeRating = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array.java deleted file mode 100644 index d880d09..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLMiscellaneousV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2.java deleted file mode 100644 index a047922..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2.java +++ /dev/null @@ -1,178 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="suspension_of_payments_mora" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="payment_expectation_days" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="day_sales_outstanding" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="industry_average_payment_expectation_days" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="industry_average_day_sales_outstanding" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 { - - @XmlElement(name = "suspension_of_payments_mora") - protected String suspensionOfPaymentsMora; - @XmlElement(name = "payment_expectation_days") - protected BigInteger paymentExpectationDays; - @XmlElement(name = "day_sales_outstanding") - protected BigInteger daySalesOutstanding; - @XmlElement(name = "industry_average_payment_expectation_days") - protected BigInteger industryAveragePaymentExpectationDays; - @XmlElement(name = "industry_average_day_sales_outstanding") - protected BigInteger industryAverageDaySalesOutstanding; - - /** - * Gets the value of the suspensionOfPaymentsMora property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSuspensionOfPaymentsMora() { - return suspensionOfPaymentsMora; - } - - /** - * Sets the value of the suspensionOfPaymentsMora property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSuspensionOfPaymentsMora(String value) { - this.suspensionOfPaymentsMora = value; - } - - /** - * Gets the value of the paymentExpectationDays property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getPaymentExpectationDays() { - return paymentExpectationDays; - } - - /** - * Sets the value of the paymentExpectationDays property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setPaymentExpectationDays(BigInteger value) { - this.paymentExpectationDays = value; - } - - /** - * Gets the value of the daySalesOutstanding property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getDaySalesOutstanding() { - return daySalesOutstanding; - } - - /** - * Sets the value of the daySalesOutstanding property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setDaySalesOutstanding(BigInteger value) { - this.daySalesOutstanding = value; - } - - /** - * Gets the value of the industryAveragePaymentExpectationDays property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getIndustryAveragePaymentExpectationDays() { - return industryAveragePaymentExpectationDays; - } - - /** - * Sets the value of the industryAveragePaymentExpectationDays property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setIndustryAveragePaymentExpectationDays(BigInteger value) { - this.industryAveragePaymentExpectationDays = value; - } - - /** - * Gets the value of the industryAverageDaySalesOutstanding property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getIndustryAverageDaySalesOutstanding() { - return industryAverageDaySalesOutstanding; - } - - /** - * Sets the value of the industryAverageDaySalesOutstanding property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setIndustryAverageDaySalesOutstanding(BigInteger value) { - this.industryAverageDaySalesOutstanding = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array.java deleted file mode 100644 index 19e0a7b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationV2.java deleted file mode 100644 index d2f7e03..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationV2.java +++ /dev/null @@ -1,119 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="de" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2" minOccurs="0"/>
- *         <element name="nl" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2" minOccurs="0"/>
- *         <element name="generic" type="{http://www.webservices.nl/soap/}CreditsafeCompanyKeyValueV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationV2", propOrder = { - -}) -public class CreditsafeCompanyAdditionalInformationV2 { - - protected CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 de; - protected CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 nl; - protected CreditsafeCompanyKeyValueV2Array generic; - - /** - * Gets the value of the de property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 } - * - */ - public CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 getDe() { - return de; - } - - /** - * Sets the value of the de property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 } - * - */ - public void setDe(CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 value) { - this.de = value; - } - - /** - * Gets the value of the nl property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 } - * - */ - public CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 getNl() { - return nl; - } - - /** - * Sets the value of the nl property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 } - * - */ - public void setNl(CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 value) { - this.nl = value; - } - - /** - * Gets the value of the generic property. - * - * @return - * possible object is - * {@link CreditsafeCompanyKeyValueV2Array } - * - */ - public CreditsafeCompanyKeyValueV2Array getGeneric() { - return generic; - } - - /** - * Sets the value of the generic property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyKeyValueV2Array } - * - */ - public void setGeneric(CreditsafeCompanyKeyValueV2Array value) { - this.generic = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationV2Array.java deleted file mode 100644 index cd12888..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdditionalInformationV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdditionalInformationV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdditionalInformationV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdditionalInformationV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdditionalInformationV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdditionalInformationV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdvisorV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdvisorV2.java deleted file mode 100644 index 32ee101..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdvisorV2.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdvisorV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdvisorV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="auditor_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="solicitor_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdvisorV2", propOrder = { - -}) -public class CreditsafeCompanyAdvisorV2 { - - @XmlElement(name = "auditor_name") - protected String auditorName; - @XmlElement(name = "solicitor_name") - protected String solicitorName; - - /** - * Gets the value of the auditorName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAuditorName() { - return auditorName; - } - - /** - * Sets the value of the auditorName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAuditorName(String value) { - this.auditorName = value; - } - - /** - * Gets the value of the solicitorName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSolicitorName() { - return solicitorName; - } - - /** - * Sets the value of the solicitorName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSolicitorName(String value) { - this.solicitorName = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdvisorV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdvisorV2Array.java deleted file mode 100644 index 1837db0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyAdvisorV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyAdvisorV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyAdvisorV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdvisorV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyAdvisorV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyAdvisorV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyAdvisorV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyArray.java deleted file mode 100644 index f2cf555..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompany" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyArray", propOrder = { - "item" -}) -public class CreditsafeCompanyArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompany } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBalanceSheetV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBalanceSheetV2.java deleted file mode 100644 index 8cdf0b9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBalanceSheetV2.java +++ /dev/null @@ -1,1281 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyBalanceSheetV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyBalanceSheetV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bank_liabilities" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="bank_liabilities_due_after1year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="called_up_share_capital" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="cash" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="consolidated_accounts" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="finished_goods" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="goodwill" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="group_payables" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="group_payables_due_after1year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="group_receivables" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="investments" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="land_and_buildings" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="loans_to_group" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="miscellaneous_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="miscellaneous_liabilities" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="miscellaneous_liabilities_due_after1_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="miscellaneous_receivables" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="other_current_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="other_intangible_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="other_inventories" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="other_loans" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="other_loans_or_finance" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="other_loans_or_finance_due_after1_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="other_reserves" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="other_tangible_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="plant_and_machinery" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="raw_materials" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="receivables_due_after1year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="revenue_reserves" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="share_premium" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_current_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_current_liabilities" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_intangible_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_inventories" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_liabilities" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_long_term_liabilities" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_other_fixed_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_receivables" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_shareholders_equity" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_tangible_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="trade_payables" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="trade_payables_due_after1year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="trade_receivables" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="work_in_progress" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyBalanceSheetV2", propOrder = { - -}) -public class CreditsafeCompanyBalanceSheetV2 { - - @XmlElement(name = "bank_liabilities") - protected Integer bankLiabilities; - @XmlElement(name = "bank_liabilities_due_after1year") - protected Integer bankLiabilitiesDueAfter1Year; - @XmlElement(name = "called_up_share_capital") - protected Integer calledUpShareCapital; - protected Integer cash; - @XmlElement(name = "consolidated_accounts") - protected Integer consolidatedAccounts; - @XmlElement(name = "finished_goods") - protected Integer finishedGoods; - protected Integer goodwill; - @XmlElement(name = "group_payables") - protected Integer groupPayables; - @XmlElement(name = "group_payables_due_after1year") - protected Integer groupPayablesDueAfter1Year; - @XmlElement(name = "group_receivables") - protected Integer groupReceivables; - protected Integer investments; - @XmlElement(name = "land_and_buildings") - protected Integer landAndBuildings; - @XmlElement(name = "loans_to_group") - protected Integer loansToGroup; - @XmlElement(name = "miscellaneous_fixed_assets") - protected Integer miscellaneousFixedAssets; - @XmlElement(name = "miscellaneous_liabilities") - protected Integer miscellaneousLiabilities; - @XmlElement(name = "miscellaneous_liabilities_due_after1_year") - protected Integer miscellaneousLiabilitiesDueAfter1Year; - @XmlElement(name = "miscellaneous_receivables") - protected Integer miscellaneousReceivables; - @XmlElement(name = "other_current_assets") - protected Integer otherCurrentAssets; - @XmlElement(name = "other_intangible_assets") - protected Integer otherIntangibleAssets; - @XmlElement(name = "other_inventories") - protected Integer otherInventories; - @XmlElement(name = "other_loans") - protected Integer otherLoans; - @XmlElement(name = "other_loans_or_finance") - protected Integer otherLoansOrFinance; - @XmlElement(name = "other_loans_or_finance_due_after1_year") - protected Integer otherLoansOrFinanceDueAfter1Year; - @XmlElement(name = "other_reserves") - protected Integer otherReserves; - @XmlElement(name = "other_tangible_assets") - protected Integer otherTangibleAssets; - @XmlElement(name = "plant_and_machinery") - protected Integer plantAndMachinery; - @XmlElement(name = "raw_materials") - protected Integer rawMaterials; - @XmlElement(name = "receivables_due_after1year") - protected Integer receivablesDueAfter1Year; - @XmlElement(name = "revenue_reserves") - protected Integer revenueReserves; - @XmlElement(name = "share_premium") - protected Integer sharePremium; - @XmlElement(name = "total_assets") - protected Integer totalAssets; - @XmlElement(name = "total_current_assets") - protected Integer totalCurrentAssets; - @XmlElement(name = "total_current_liabilities") - protected Integer totalCurrentLiabilities; - @XmlElement(name = "total_fixed_assets") - protected Integer totalFixedAssets; - @XmlElement(name = "total_intangible_assets") - protected Integer totalIntangibleAssets; - @XmlElement(name = "total_inventories") - protected Integer totalInventories; - @XmlElement(name = "total_liabilities") - protected Integer totalLiabilities; - @XmlElement(name = "total_long_term_liabilities") - protected Integer totalLongTermLiabilities; - @XmlElement(name = "total_other_fixed_assets") - protected Integer totalOtherFixedAssets; - @XmlElement(name = "total_receivables") - protected Integer totalReceivables; - @XmlElement(name = "total_shareholders_equity") - protected Integer totalShareholdersEquity; - @XmlElement(name = "total_tangible_assets") - protected Integer totalTangibleAssets; - @XmlElement(name = "trade_payables") - protected Integer tradePayables; - @XmlElement(name = "trade_payables_due_after1year") - protected Integer tradePayablesDueAfter1Year; - @XmlElement(name = "trade_receivables") - protected Integer tradeReceivables; - @XmlElement(name = "work_in_progress") - protected Integer workInProgress; - - /** - * Gets the value of the bankLiabilities property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getBankLiabilities() { - return bankLiabilities; - } - - /** - * Sets the value of the bankLiabilities property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setBankLiabilities(Integer value) { - this.bankLiabilities = value; - } - - /** - * Gets the value of the bankLiabilitiesDueAfter1Year property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getBankLiabilitiesDueAfter1Year() { - return bankLiabilitiesDueAfter1Year; - } - - /** - * Sets the value of the bankLiabilitiesDueAfter1Year property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setBankLiabilitiesDueAfter1Year(Integer value) { - this.bankLiabilitiesDueAfter1Year = value; - } - - /** - * Gets the value of the calledUpShareCapital property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCalledUpShareCapital() { - return calledUpShareCapital; - } - - /** - * Sets the value of the calledUpShareCapital property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCalledUpShareCapital(Integer value) { - this.calledUpShareCapital = value; - } - - /** - * Gets the value of the cash property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCash() { - return cash; - } - - /** - * Sets the value of the cash property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCash(Integer value) { - this.cash = value; - } - - /** - * Gets the value of the consolidatedAccounts property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getConsolidatedAccounts() { - return consolidatedAccounts; - } - - /** - * Sets the value of the consolidatedAccounts property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setConsolidatedAccounts(Integer value) { - this.consolidatedAccounts = value; - } - - /** - * Gets the value of the finishedGoods property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getFinishedGoods() { - return finishedGoods; - } - - /** - * Sets the value of the finishedGoods property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setFinishedGoods(Integer value) { - this.finishedGoods = value; - } - - /** - * Gets the value of the goodwill property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGoodwill() { - return goodwill; - } - - /** - * Sets the value of the goodwill property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGoodwill(Integer value) { - this.goodwill = value; - } - - /** - * Gets the value of the groupPayables property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGroupPayables() { - return groupPayables; - } - - /** - * Sets the value of the groupPayables property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGroupPayables(Integer value) { - this.groupPayables = value; - } - - /** - * Gets the value of the groupPayablesDueAfter1Year property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGroupPayablesDueAfter1Year() { - return groupPayablesDueAfter1Year; - } - - /** - * Sets the value of the groupPayablesDueAfter1Year property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGroupPayablesDueAfter1Year(Integer value) { - this.groupPayablesDueAfter1Year = value; - } - - /** - * Gets the value of the groupReceivables property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGroupReceivables() { - return groupReceivables; - } - - /** - * Sets the value of the groupReceivables property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGroupReceivables(Integer value) { - this.groupReceivables = value; - } - - /** - * Gets the value of the investments property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getInvestments() { - return investments; - } - - /** - * Sets the value of the investments property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setInvestments(Integer value) { - this.investments = value; - } - - /** - * Gets the value of the landAndBuildings property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLandAndBuildings() { - return landAndBuildings; - } - - /** - * Sets the value of the landAndBuildings property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLandAndBuildings(Integer value) { - this.landAndBuildings = value; - } - - /** - * Gets the value of the loansToGroup property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLoansToGroup() { - return loansToGroup; - } - - /** - * Sets the value of the loansToGroup property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLoansToGroup(Integer value) { - this.loansToGroup = value; - } - - /** - * Gets the value of the miscellaneousFixedAssets property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMiscellaneousFixedAssets() { - return miscellaneousFixedAssets; - } - - /** - * Sets the value of the miscellaneousFixedAssets property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMiscellaneousFixedAssets(Integer value) { - this.miscellaneousFixedAssets = value; - } - - /** - * Gets the value of the miscellaneousLiabilities property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMiscellaneousLiabilities() { - return miscellaneousLiabilities; - } - - /** - * Sets the value of the miscellaneousLiabilities property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMiscellaneousLiabilities(Integer value) { - this.miscellaneousLiabilities = value; - } - - /** - * Gets the value of the miscellaneousLiabilitiesDueAfter1Year property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMiscellaneousLiabilitiesDueAfter1Year() { - return miscellaneousLiabilitiesDueAfter1Year; - } - - /** - * Sets the value of the miscellaneousLiabilitiesDueAfter1Year property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMiscellaneousLiabilitiesDueAfter1Year(Integer value) { - this.miscellaneousLiabilitiesDueAfter1Year = value; - } - - /** - * Gets the value of the miscellaneousReceivables property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMiscellaneousReceivables() { - return miscellaneousReceivables; - } - - /** - * Sets the value of the miscellaneousReceivables property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMiscellaneousReceivables(Integer value) { - this.miscellaneousReceivables = value; - } - - /** - * Gets the value of the otherCurrentAssets property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOtherCurrentAssets() { - return otherCurrentAssets; - } - - /** - * Sets the value of the otherCurrentAssets property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOtherCurrentAssets(Integer value) { - this.otherCurrentAssets = value; - } - - /** - * Gets the value of the otherIntangibleAssets property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOtherIntangibleAssets() { - return otherIntangibleAssets; - } - - /** - * Sets the value of the otherIntangibleAssets property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOtherIntangibleAssets(Integer value) { - this.otherIntangibleAssets = value; - } - - /** - * Gets the value of the otherInventories property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOtherInventories() { - return otherInventories; - } - - /** - * Sets the value of the otherInventories property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOtherInventories(Integer value) { - this.otherInventories = value; - } - - /** - * Gets the value of the otherLoans property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOtherLoans() { - return otherLoans; - } - - /** - * Sets the value of the otherLoans property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOtherLoans(Integer value) { - this.otherLoans = value; - } - - /** - * Gets the value of the otherLoansOrFinance property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOtherLoansOrFinance() { - return otherLoansOrFinance; - } - - /** - * Sets the value of the otherLoansOrFinance property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOtherLoansOrFinance(Integer value) { - this.otherLoansOrFinance = value; - } - - /** - * Gets the value of the otherLoansOrFinanceDueAfter1Year property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOtherLoansOrFinanceDueAfter1Year() { - return otherLoansOrFinanceDueAfter1Year; - } - - /** - * Sets the value of the otherLoansOrFinanceDueAfter1Year property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOtherLoansOrFinanceDueAfter1Year(Integer value) { - this.otherLoansOrFinanceDueAfter1Year = value; - } - - /** - * Gets the value of the otherReserves property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOtherReserves() { - return otherReserves; - } - - /** - * Sets the value of the otherReserves property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOtherReserves(Integer value) { - this.otherReserves = value; - } - - /** - * Gets the value of the otherTangibleAssets property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOtherTangibleAssets() { - return otherTangibleAssets; - } - - /** - * Sets the value of the otherTangibleAssets property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOtherTangibleAssets(Integer value) { - this.otherTangibleAssets = value; - } - - /** - * Gets the value of the plantAndMachinery property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPlantAndMachinery() { - return plantAndMachinery; - } - - /** - * Sets the value of the plantAndMachinery property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPlantAndMachinery(Integer value) { - this.plantAndMachinery = value; - } - - /** - * Gets the value of the rawMaterials property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRawMaterials() { - return rawMaterials; - } - - /** - * Sets the value of the rawMaterials property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRawMaterials(Integer value) { - this.rawMaterials = value; - } - - /** - * Gets the value of the receivablesDueAfter1Year property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getReceivablesDueAfter1Year() { - return receivablesDueAfter1Year; - } - - /** - * Sets the value of the receivablesDueAfter1Year property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setReceivablesDueAfter1Year(Integer value) { - this.receivablesDueAfter1Year = value; - } - - /** - * Gets the value of the revenueReserves property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRevenueReserves() { - return revenueReserves; - } - - /** - * Sets the value of the revenueReserves property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRevenueReserves(Integer value) { - this.revenueReserves = value; - } - - /** - * Gets the value of the sharePremium property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getSharePremium() { - return sharePremium; - } - - /** - * Sets the value of the sharePremium property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setSharePremium(Integer value) { - this.sharePremium = value; - } - - /** - * Gets the value of the totalAssets property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalAssets() { - return totalAssets; - } - - /** - * Sets the value of the totalAssets property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalAssets(Integer value) { - this.totalAssets = value; - } - - /** - * Gets the value of the totalCurrentAssets property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalCurrentAssets() { - return totalCurrentAssets; - } - - /** - * Sets the value of the totalCurrentAssets property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalCurrentAssets(Integer value) { - this.totalCurrentAssets = value; - } - - /** - * Gets the value of the totalCurrentLiabilities property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalCurrentLiabilities() { - return totalCurrentLiabilities; - } - - /** - * Sets the value of the totalCurrentLiabilities property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalCurrentLiabilities(Integer value) { - this.totalCurrentLiabilities = value; - } - - /** - * Gets the value of the totalFixedAssets property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalFixedAssets() { - return totalFixedAssets; - } - - /** - * Sets the value of the totalFixedAssets property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalFixedAssets(Integer value) { - this.totalFixedAssets = value; - } - - /** - * Gets the value of the totalIntangibleAssets property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalIntangibleAssets() { - return totalIntangibleAssets; - } - - /** - * Sets the value of the totalIntangibleAssets property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalIntangibleAssets(Integer value) { - this.totalIntangibleAssets = value; - } - - /** - * Gets the value of the totalInventories property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalInventories() { - return totalInventories; - } - - /** - * Sets the value of the totalInventories property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalInventories(Integer value) { - this.totalInventories = value; - } - - /** - * Gets the value of the totalLiabilities property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalLiabilities() { - return totalLiabilities; - } - - /** - * Sets the value of the totalLiabilities property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalLiabilities(Integer value) { - this.totalLiabilities = value; - } - - /** - * Gets the value of the totalLongTermLiabilities property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalLongTermLiabilities() { - return totalLongTermLiabilities; - } - - /** - * Sets the value of the totalLongTermLiabilities property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalLongTermLiabilities(Integer value) { - this.totalLongTermLiabilities = value; - } - - /** - * Gets the value of the totalOtherFixedAssets property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalOtherFixedAssets() { - return totalOtherFixedAssets; - } - - /** - * Sets the value of the totalOtherFixedAssets property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalOtherFixedAssets(Integer value) { - this.totalOtherFixedAssets = value; - } - - /** - * Gets the value of the totalReceivables property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalReceivables() { - return totalReceivables; - } - - /** - * Sets the value of the totalReceivables property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalReceivables(Integer value) { - this.totalReceivables = value; - } - - /** - * Gets the value of the totalShareholdersEquity property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalShareholdersEquity() { - return totalShareholdersEquity; - } - - /** - * Sets the value of the totalShareholdersEquity property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalShareholdersEquity(Integer value) { - this.totalShareholdersEquity = value; - } - - /** - * Gets the value of the totalTangibleAssets property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalTangibleAssets() { - return totalTangibleAssets; - } - - /** - * Sets the value of the totalTangibleAssets property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalTangibleAssets(Integer value) { - this.totalTangibleAssets = value; - } - - /** - * Gets the value of the tradePayables property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTradePayables() { - return tradePayables; - } - - /** - * Sets the value of the tradePayables property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTradePayables(Integer value) { - this.tradePayables = value; - } - - /** - * Gets the value of the tradePayablesDueAfter1Year property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTradePayablesDueAfter1Year() { - return tradePayablesDueAfter1Year; - } - - /** - * Sets the value of the tradePayablesDueAfter1Year property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTradePayablesDueAfter1Year(Integer value) { - this.tradePayablesDueAfter1Year = value; - } - - /** - * Gets the value of the tradeReceivables property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTradeReceivables() { - return tradeReceivables; - } - - /** - * Sets the value of the tradeReceivables property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTradeReceivables(Integer value) { - this.tradeReceivables = value; - } - - /** - * Gets the value of the workInProgress property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getWorkInProgress() { - return workInProgress; - } - - /** - * Sets the value of the workInProgress property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setWorkInProgress(Integer value) { - this.workInProgress = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBalanceSheetV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBalanceSheetV2Array.java deleted file mode 100644 index 75247f7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBalanceSheetV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyBalanceSheetV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyBalanceSheetV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyBalanceSheetV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyBalanceSheetV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyBalanceSheetV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyBalanceSheetV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBankerV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBankerV2.java deleted file mode 100644 index e352515..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBankerV2.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyBankerV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyBankerV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" minOccurs="0"/>
- *         <element name="bank_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyBankerV2", propOrder = { - -}) -public class CreditsafeCompanyBankerV2 { - - protected CreditsafeAddressV2 address; - @XmlElement(name = "bank_code") - protected String bankCode; - protected String name; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link CreditsafeAddressV2 } - * - */ - public CreditsafeAddressV2 getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link CreditsafeAddressV2 } - * - */ - public void setAddress(CreditsafeAddressV2 value) { - this.address = value; - } - - /** - * Gets the value of the bankCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBankCode() { - return bankCode; - } - - /** - * Sets the value of the bankCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBankCode(String value) { - this.bankCode = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBankerV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBankerV2Array.java deleted file mode 100644 index e59c348..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBankerV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyBankerV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyBankerV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyBankerV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyBankerV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyBankerV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyBankerV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBasicInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBasicInformationV2.java deleted file mode 100644 index f131f12..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBasicInformationV2.java +++ /dev/null @@ -1,342 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeCompanyBasicInformationV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyBasicInformationV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_status" type="{http://www.webservices.nl/soap/}CreditsafeCompanyStatusV2" minOccurs="0"/>
- *         <element name="contact_address" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" minOccurs="0"/>
- *         <element name="legal_form" type="{http://www.webservices.nl/soap/}CreditsafeDescriptionV2" minOccurs="0"/>
- *         <element name="principal_activity" type="{http://www.webservices.nl/soap/}CreditsafeDescriptionV2" minOccurs="0"/>
- *         <element name="business_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="company_registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="dateof_company_registration" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="dateof_starting_operations" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="registered_company_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="vat_registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyBasicInformationV2", propOrder = { - -}) -public class CreditsafeCompanyBasicInformationV2 { - - @XmlElement(name = "company_status") - protected CreditsafeCompanyStatusV2 companyStatus; - @XmlElement(name = "contact_address") - protected CreditsafeAddressV2 contactAddress; - @XmlElement(name = "legal_form") - protected CreditsafeDescriptionV2 legalForm; - @XmlElement(name = "principal_activity") - protected CreditsafeDescriptionV2 principalActivity; - @XmlElement(name = "business_name") - protected String businessName; - @XmlElement(name = "company_registration_number") - protected String companyRegistrationNumber; - protected String country; - @XmlElement(name = "dateof_company_registration") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateofCompanyRegistration; - @XmlElement(name = "dateof_starting_operations") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateofStartingOperations; - @XmlElement(name = "registered_company_name") - protected String registeredCompanyName; - @XmlElement(name = "vat_registration_number") - protected String vatRegistrationNumber; - - /** - * Gets the value of the companyStatus property. - * - * @return - * possible object is - * {@link CreditsafeCompanyStatusV2 } - * - */ - public CreditsafeCompanyStatusV2 getCompanyStatus() { - return companyStatus; - } - - /** - * Sets the value of the companyStatus property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyStatusV2 } - * - */ - public void setCompanyStatus(CreditsafeCompanyStatusV2 value) { - this.companyStatus = value; - } - - /** - * Gets the value of the contactAddress property. - * - * @return - * possible object is - * {@link CreditsafeAddressV2 } - * - */ - public CreditsafeAddressV2 getContactAddress() { - return contactAddress; - } - - /** - * Sets the value of the contactAddress property. - * - * @param value - * allowed object is - * {@link CreditsafeAddressV2 } - * - */ - public void setContactAddress(CreditsafeAddressV2 value) { - this.contactAddress = value; - } - - /** - * Gets the value of the legalForm property. - * - * @return - * possible object is - * {@link CreditsafeDescriptionV2 } - * - */ - public CreditsafeDescriptionV2 getLegalForm() { - return legalForm; - } - - /** - * Sets the value of the legalForm property. - * - * @param value - * allowed object is - * {@link CreditsafeDescriptionV2 } - * - */ - public void setLegalForm(CreditsafeDescriptionV2 value) { - this.legalForm = value; - } - - /** - * Gets the value of the principalActivity property. - * - * @return - * possible object is - * {@link CreditsafeDescriptionV2 } - * - */ - public CreditsafeDescriptionV2 getPrincipalActivity() { - return principalActivity; - } - - /** - * Sets the value of the principalActivity property. - * - * @param value - * allowed object is - * {@link CreditsafeDescriptionV2 } - * - */ - public void setPrincipalActivity(CreditsafeDescriptionV2 value) { - this.principalActivity = value; - } - - /** - * Gets the value of the businessName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBusinessName() { - return businessName; - } - - /** - * Sets the value of the businessName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBusinessName(String value) { - this.businessName = value; - } - - /** - * Gets the value of the companyRegistrationNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyRegistrationNumber() { - return companyRegistrationNumber; - } - - /** - * Sets the value of the companyRegistrationNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyRegistrationNumber(String value) { - this.companyRegistrationNumber = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the dateofCompanyRegistration property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateofCompanyRegistration() { - return dateofCompanyRegistration; - } - - /** - * Sets the value of the dateofCompanyRegistration property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateofCompanyRegistration(XMLGregorianCalendar value) { - this.dateofCompanyRegistration = value; - } - - /** - * Gets the value of the dateofStartingOperations property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateofStartingOperations() { - return dateofStartingOperations; - } - - /** - * Sets the value of the dateofStartingOperations property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateofStartingOperations(XMLGregorianCalendar value) { - this.dateofStartingOperations = value; - } - - /** - * Gets the value of the registeredCompanyName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegisteredCompanyName() { - return registeredCompanyName; - } - - /** - * Sets the value of the registeredCompanyName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegisteredCompanyName(String value) { - this.registeredCompanyName = value; - } - - /** - * Gets the value of the vatRegistrationNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVatRegistrationNumber() { - return vatRegistrationNumber; - } - - /** - * Sets the value of the vatRegistrationNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVatRegistrationNumber(String value) { - this.vatRegistrationNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBasicInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBasicInformationV2Array.java deleted file mode 100644 index 56c09ce..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyBasicInformationV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyBasicInformationV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyBasicInformationV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyBasicInformationV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyBasicInformationV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyBasicInformationV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyBasicInformationV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCompanyV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCompanyV2.java deleted file mode 100644 index cd89295..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCompanyV2.java +++ /dev/null @@ -1,391 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeCompanyCompanyV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyCompanyV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" minOccurs="0"/>
- *         <element name="creditsafe_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_last_account" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="date_last_change" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="vat_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="office_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyCompanyV2", propOrder = { - -}) -public class CreditsafeCompanyCompanyV2 { - - protected CreditsafeAddressV2 address; - @XmlElement(name = "creditsafe_number") - protected String creditsafeNumber; - @XmlElement(name = "date_last_account") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateLastAccount; - @XmlElement(name = "date_last_change") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateLastChange; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - @XmlElement(name = "vat_numbers") - protected StringArray vatNumbers; - protected String country; - @XmlElement(name = "registration_number") - protected String registrationNumber; - protected String name; - protected String id; - protected String type; - protected String status; - @XmlElement(name = "office_type") - protected String officeType; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link CreditsafeAddressV2 } - * - */ - public CreditsafeAddressV2 getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link CreditsafeAddressV2 } - * - */ - public void setAddress(CreditsafeAddressV2 value) { - this.address = value; - } - - /** - * Gets the value of the creditsafeNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreditsafeNumber() { - return creditsafeNumber; - } - - /** - * Sets the value of the creditsafeNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreditsafeNumber(String value) { - this.creditsafeNumber = value; - } - - /** - * Gets the value of the dateLastAccount property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateLastAccount() { - return dateLastAccount; - } - - /** - * Sets the value of the dateLastAccount property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateLastAccount(XMLGregorianCalendar value) { - this.dateLastAccount = value; - } - - /** - * Gets the value of the dateLastChange property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateLastChange() { - return dateLastChange; - } - - /** - * Sets the value of the dateLastChange property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateLastChange(XMLGregorianCalendar value) { - this.dateLastChange = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - - /** - * Gets the value of the vatNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getVatNumbers() { - return vatNumbers; - } - - /** - * Sets the value of the vatNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setVatNumbers(StringArray value) { - this.vatNumbers = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the registrationNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistrationNumber() { - return registrationNumber; - } - - /** - * Sets the value of the registrationNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistrationNumber(String value) { - this.registrationNumber = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the officeType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOfficeType() { - return officeType; - } - - /** - * Sets the value of the officeType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOfficeType(String value) { - this.officeType = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCompanyV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCompanyV2Array.java deleted file mode 100644 index e72c9ef..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCompanyV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyCompanyV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyCompanyV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCompanyV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyCompanyV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyCompanyV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyCompanyV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyContactInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyContactInformationV2.java deleted file mode 100644 index d87516c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyContactInformationV2.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyContactInformationV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyContactInformationV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="main_address" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" minOccurs="0"/>
- *         <element name="other_addresses" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyContactInformationV2", propOrder = { - -}) -public class CreditsafeCompanyContactInformationV2 { - - @XmlElement(name = "main_address") - protected CreditsafeAddressV2 mainAddress; - @XmlElement(name = "other_addresses") - protected CreditsafeAddressV2Array otherAddresses; - - /** - * Gets the value of the mainAddress property. - * - * @return - * possible object is - * {@link CreditsafeAddressV2 } - * - */ - public CreditsafeAddressV2 getMainAddress() { - return mainAddress; - } - - /** - * Sets the value of the mainAddress property. - * - * @param value - * allowed object is - * {@link CreditsafeAddressV2 } - * - */ - public void setMainAddress(CreditsafeAddressV2 value) { - this.mainAddress = value; - } - - /** - * Gets the value of the otherAddresses property. - * - * @return - * possible object is - * {@link CreditsafeAddressV2Array } - * - */ - public CreditsafeAddressV2Array getOtherAddresses() { - return otherAddresses; - } - - /** - * Sets the value of the otherAddresses property. - * - * @param value - * allowed object is - * {@link CreditsafeAddressV2Array } - * - */ - public void setOtherAddresses(CreditsafeAddressV2Array value) { - this.otherAddresses = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyContactInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyContactInformationV2Array.java deleted file mode 100644 index 6d5cc21..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyContactInformationV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyContactInformationV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyContactInformationV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyContactInformationV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyContactInformationV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyContactInformationV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyContactInformationV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditRatingV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditRatingV2.java deleted file mode 100644 index 09d1933..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditRatingV2.java +++ /dev/null @@ -1,177 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyCreditRatingV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyCreditRatingV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="common_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="common_value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="credit_limit" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="provider_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="provider_value" type="{http://www.webservices.nl/soap/}CreditsafeValueV2" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyCreditRatingV2", propOrder = { - -}) -public class CreditsafeCompanyCreditRatingV2 { - - @XmlElement(name = "common_description") - protected String commonDescription; - @XmlElement(name = "common_value") - protected String commonValue; - @XmlElement(name = "credit_limit") - protected String creditLimit; - @XmlElement(name = "provider_description") - protected String providerDescription; - @XmlElement(name = "provider_value") - protected CreditsafeValueV2 providerValue; - - /** - * Gets the value of the commonDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCommonDescription() { - return commonDescription; - } - - /** - * Sets the value of the commonDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCommonDescription(String value) { - this.commonDescription = value; - } - - /** - * Gets the value of the commonValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCommonValue() { - return commonValue; - } - - /** - * Sets the value of the commonValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCommonValue(String value) { - this.commonValue = value; - } - - /** - * Gets the value of the creditLimit property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreditLimit() { - return creditLimit; - } - - /** - * Sets the value of the creditLimit property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreditLimit(String value) { - this.creditLimit = value; - } - - /** - * Gets the value of the providerDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProviderDescription() { - return providerDescription; - } - - /** - * Sets the value of the providerDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProviderDescription(String value) { - this.providerDescription = value; - } - - /** - * Gets the value of the providerValue property. - * - * @return - * possible object is - * {@link CreditsafeValueV2 } - * - */ - public CreditsafeValueV2 getProviderValue() { - return providerValue; - } - - /** - * Sets the value of the providerValue property. - * - * @param value - * allowed object is - * {@link CreditsafeValueV2 } - * - */ - public void setProviderValue(CreditsafeValueV2 value) { - this.providerValue = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditRatingV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditRatingV2Array.java deleted file mode 100644 index bf292ca..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditRatingV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyCreditRatingV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyCreditRatingV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCreditRatingV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyCreditRatingV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyCreditRatingV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyCreditRatingV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditScoreV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditScoreV2.java deleted file mode 100644 index 544eb34..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditScoreV2.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyCreditScoreV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyCreditScoreV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="current_credit_rating" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCreditRatingV2" minOccurs="0"/>
- *         <element name="previous_credit_rating" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCreditRatingV2" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyCreditScoreV2", propOrder = { - -}) -public class CreditsafeCompanyCreditScoreV2 { - - @XmlElement(name = "current_credit_rating") - protected CreditsafeCompanyCreditRatingV2 currentCreditRating; - @XmlElement(name = "previous_credit_rating") - protected CreditsafeCompanyCreditRatingV2 previousCreditRating; - - /** - * Gets the value of the currentCreditRating property. - * - * @return - * possible object is - * {@link CreditsafeCompanyCreditRatingV2 } - * - */ - public CreditsafeCompanyCreditRatingV2 getCurrentCreditRating() { - return currentCreditRating; - } - - /** - * Sets the value of the currentCreditRating property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyCreditRatingV2 } - * - */ - public void setCurrentCreditRating(CreditsafeCompanyCreditRatingV2 value) { - this.currentCreditRating = value; - } - - /** - * Gets the value of the previousCreditRating property. - * - * @return - * possible object is - * {@link CreditsafeCompanyCreditRatingV2 } - * - */ - public CreditsafeCompanyCreditRatingV2 getPreviousCreditRating() { - return previousCreditRating; - } - - /** - * Sets the value of the previousCreditRating property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyCreditRatingV2 } - * - */ - public void setPreviousCreditRating(CreditsafeCompanyCreditRatingV2 value) { - this.previousCreditRating = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditScoreV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditScoreV2Array.java deleted file mode 100644 index 65486a2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyCreditScoreV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyCreditScoreV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyCreditScoreV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCreditScoreV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyCreditScoreV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyCreditScoreV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyCreditScoreV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyEmployeeInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyEmployeeInformationV2.java deleted file mode 100644 index 00f80b3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyEmployeeInformationV2.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyEmployeeInformationV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyEmployeeInformationV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="number_of_employees" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyEmployeeInformationV2", propOrder = { - -}) -public class CreditsafeCompanyEmployeeInformationV2 { - - @XmlElement(name = "number_of_employees") - protected BigInteger numberOfEmployees; - protected BigInteger year; - - /** - * Gets the value of the numberOfEmployees property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getNumberOfEmployees() { - return numberOfEmployees; - } - - /** - * Sets the value of the numberOfEmployees property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setNumberOfEmployees(BigInteger value) { - this.numberOfEmployees = value; - } - - /** - * Gets the value of the year property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setYear(BigInteger value) { - this.year = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyEmployeeInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyEmployeeInformationV2Array.java deleted file mode 100644 index 5bb524b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyEmployeeInformationV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyEmployeeInformationV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyEmployeeInformationV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyEmployeeInformationV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyEmployeeInformationV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyEmployeeInformationV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyEmployeeInformationV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyFinancialStatementV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyFinancialStatementV2.java deleted file mode 100644 index 390b9ad..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyFinancialStatementV2.java +++ /dev/null @@ -1,286 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeCompanyFinancialStatementV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyFinancialStatementV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="balance_sheet" type="{http://www.webservices.nl/soap/}CreditsafeCompanyBalanceSheetV2" minOccurs="0"/>
- *         <element name="consolidated_accounts" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="number_of_weeks" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="other_financials" type="{http://www.webservices.nl/soap/}CreditsafeCompanyOtherFinancialsV2" minOccurs="0"/>
- *         <element name="profit_and_loss" type="{http://www.webservices.nl/soap/}CreditsafeCompanyProfitAndLossV2" minOccurs="0"/>
- *         <element name="ratios" type="{http://www.webservices.nl/soap/}CreditsafeCompanyRatiosV2" minOccurs="0"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="year_end_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyFinancialStatementV2", propOrder = { - -}) -public class CreditsafeCompanyFinancialStatementV2 { - - @XmlElement(name = "balance_sheet") - protected CreditsafeCompanyBalanceSheetV2 balanceSheet; - @XmlElement(name = "consolidated_accounts") - protected Boolean consolidatedAccounts; - protected String currency; - @XmlElement(name = "number_of_weeks") - protected BigInteger numberOfWeeks; - @XmlElement(name = "other_financials") - protected CreditsafeCompanyOtherFinancialsV2 otherFinancials; - @XmlElement(name = "profit_and_loss") - protected CreditsafeCompanyProfitAndLossV2 profitAndLoss; - protected CreditsafeCompanyRatiosV2 ratios; - protected String type; - @XmlElement(name = "year_end_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar yearEndDate; - - /** - * Gets the value of the balanceSheet property. - * - * @return - * possible object is - * {@link CreditsafeCompanyBalanceSheetV2 } - * - */ - public CreditsafeCompanyBalanceSheetV2 getBalanceSheet() { - return balanceSheet; - } - - /** - * Sets the value of the balanceSheet property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyBalanceSheetV2 } - * - */ - public void setBalanceSheet(CreditsafeCompanyBalanceSheetV2 value) { - this.balanceSheet = value; - } - - /** - * Gets the value of the consolidatedAccounts property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isConsolidatedAccounts() { - return consolidatedAccounts; - } - - /** - * Sets the value of the consolidatedAccounts property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setConsolidatedAccounts(Boolean value) { - this.consolidatedAccounts = value; - } - - /** - * Gets the value of the currency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCurrency() { - return currency; - } - - /** - * Sets the value of the currency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCurrency(String value) { - this.currency = value; - } - - /** - * Gets the value of the numberOfWeeks property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getNumberOfWeeks() { - return numberOfWeeks; - } - - /** - * Sets the value of the numberOfWeeks property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setNumberOfWeeks(BigInteger value) { - this.numberOfWeeks = value; - } - - /** - * Gets the value of the otherFinancials property. - * - * @return - * possible object is - * {@link CreditsafeCompanyOtherFinancialsV2 } - * - */ - public CreditsafeCompanyOtherFinancialsV2 getOtherFinancials() { - return otherFinancials; - } - - /** - * Sets the value of the otherFinancials property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyOtherFinancialsV2 } - * - */ - public void setOtherFinancials(CreditsafeCompanyOtherFinancialsV2 value) { - this.otherFinancials = value; - } - - /** - * Gets the value of the profitAndLoss property. - * - * @return - * possible object is - * {@link CreditsafeCompanyProfitAndLossV2 } - * - */ - public CreditsafeCompanyProfitAndLossV2 getProfitAndLoss() { - return profitAndLoss; - } - - /** - * Sets the value of the profitAndLoss property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyProfitAndLossV2 } - * - */ - public void setProfitAndLoss(CreditsafeCompanyProfitAndLossV2 value) { - this.profitAndLoss = value; - } - - /** - * Gets the value of the ratios property. - * - * @return - * possible object is - * {@link CreditsafeCompanyRatiosV2 } - * - */ - public CreditsafeCompanyRatiosV2 getRatios() { - return ratios; - } - - /** - * Sets the value of the ratios property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyRatiosV2 } - * - */ - public void setRatios(CreditsafeCompanyRatiosV2 value) { - this.ratios = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the yearEndDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getYearEndDate() { - return yearEndDate; - } - - /** - * Sets the value of the yearEndDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setYearEndDate(XMLGregorianCalendar value) { - this.yearEndDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyFinancialStatementV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyFinancialStatementV2Array.java deleted file mode 100644 index d437564..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyFinancialStatementV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyFinancialStatementV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyFinancialStatementV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyFinancialStatementV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyFinancialStatementV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyFinancialStatementV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyFinancialStatementV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyGroupStructureV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyGroupStructureV2.java deleted file mode 100644 index 231d6ed..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyGroupStructureV2.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyGroupStructureV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyGroupStructureV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="ultimate_parent" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCompanyV2" minOccurs="0"/>
- *         <element name="immediate_parent" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCompanyV2" minOccurs="0"/>
- *         <element name="subsidiary_companies" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCompanyV2Array" minOccurs="0"/>
- *         <element name="affiliated_companies" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCompanyV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyGroupStructureV2", propOrder = { - -}) -public class CreditsafeCompanyGroupStructureV2 { - - @XmlElement(name = "ultimate_parent") - protected CreditsafeCompanyCompanyV2 ultimateParent; - @XmlElement(name = "immediate_parent") - protected CreditsafeCompanyCompanyV2 immediateParent; - @XmlElement(name = "subsidiary_companies") - protected CreditsafeCompanyCompanyV2Array subsidiaryCompanies; - @XmlElement(name = "affiliated_companies") - protected CreditsafeCompanyCompanyV2Array affiliatedCompanies; - - /** - * Gets the value of the ultimateParent property. - * - * @return - * possible object is - * {@link CreditsafeCompanyCompanyV2 } - * - */ - public CreditsafeCompanyCompanyV2 getUltimateParent() { - return ultimateParent; - } - - /** - * Sets the value of the ultimateParent property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyCompanyV2 } - * - */ - public void setUltimateParent(CreditsafeCompanyCompanyV2 value) { - this.ultimateParent = value; - } - - /** - * Gets the value of the immediateParent property. - * - * @return - * possible object is - * {@link CreditsafeCompanyCompanyV2 } - * - */ - public CreditsafeCompanyCompanyV2 getImmediateParent() { - return immediateParent; - } - - /** - * Sets the value of the immediateParent property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyCompanyV2 } - * - */ - public void setImmediateParent(CreditsafeCompanyCompanyV2 value) { - this.immediateParent = value; - } - - /** - * Gets the value of the subsidiaryCompanies property. - * - * @return - * possible object is - * {@link CreditsafeCompanyCompanyV2Array } - * - */ - public CreditsafeCompanyCompanyV2Array getSubsidiaryCompanies() { - return subsidiaryCompanies; - } - - /** - * Sets the value of the subsidiaryCompanies property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyCompanyV2Array } - * - */ - public void setSubsidiaryCompanies(CreditsafeCompanyCompanyV2Array value) { - this.subsidiaryCompanies = value; - } - - /** - * Gets the value of the affiliatedCompanies property. - * - * @return - * possible object is - * {@link CreditsafeCompanyCompanyV2Array } - * - */ - public CreditsafeCompanyCompanyV2Array getAffiliatedCompanies() { - return affiliatedCompanies; - } - - /** - * Sets the value of the affiliatedCompanies property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyCompanyV2Array } - * - */ - public void setAffiliatedCompanies(CreditsafeCompanyCompanyV2Array value) { - this.affiliatedCompanies = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyGroupStructureV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyGroupStructureV2Array.java deleted file mode 100644 index fa0d442..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyGroupStructureV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyGroupStructureV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyGroupStructureV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyGroupStructureV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyGroupStructureV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyGroupStructureV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyGroupStructureV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyIdentificationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyIdentificationV2.java deleted file mode 100644 index 4191859..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyIdentificationV2.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyIdentificationV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyIdentificationV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="basic_information" type="{http://www.webservices.nl/soap/}CreditsafeCompanyBasicInformationV2" minOccurs="0"/>
- *         <element name="activity_classifications" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivityClassificationV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyIdentificationV2", propOrder = { - -}) -public class CreditsafeCompanyIdentificationV2 { - - @XmlElement(name = "basic_information") - protected CreditsafeCompanyBasicInformationV2 basicInformation; - @XmlElement(name = "activity_classifications") - protected CreditsafeCompanyActivityClassificationV2Array activityClassifications; - - /** - * Gets the value of the basicInformation property. - * - * @return - * possible object is - * {@link CreditsafeCompanyBasicInformationV2 } - * - */ - public CreditsafeCompanyBasicInformationV2 getBasicInformation() { - return basicInformation; - } - - /** - * Sets the value of the basicInformation property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyBasicInformationV2 } - * - */ - public void setBasicInformation(CreditsafeCompanyBasicInformationV2 value) { - this.basicInformation = value; - } - - /** - * Gets the value of the activityClassifications property. - * - * @return - * possible object is - * {@link CreditsafeCompanyActivityClassificationV2Array } - * - */ - public CreditsafeCompanyActivityClassificationV2Array getActivityClassifications() { - return activityClassifications; - } - - /** - * Sets the value of the activityClassifications property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyActivityClassificationV2Array } - * - */ - public void setActivityClassifications(CreditsafeCompanyActivityClassificationV2Array value) { - this.activityClassifications = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyIdentificationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyIdentificationV2Array.java deleted file mode 100644 index 50f5d2c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyIdentificationV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyIdentificationV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyIdentificationV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyIdentificationV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyIdentificationV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyIdentificationV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyIdentificationV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyKeyValueV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyKeyValueV2.java deleted file mode 100644 index 49a62d8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyKeyValueV2.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyKeyValueV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyKeyValueV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyKeyValueV2", propOrder = { - -}) -public class CreditsafeCompanyKeyValueV2 { - - protected String key; - protected String value; - - /** - * Gets the value of the key property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKey() { - return key; - } - - /** - * Sets the value of the key property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKey(String value) { - this.key = value; - } - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyKeyValueV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyKeyValueV2Array.java deleted file mode 100644 index 5d24854..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyKeyValueV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyKeyValueV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyKeyValueV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyKeyValueV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyKeyValueV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyKeyValueV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyKeyValueV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyListEntry.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyListEntry.java deleted file mode 100644 index 8a24527..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyListEntry.java +++ /dev/null @@ -1,148 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyListEntry complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyListEntry">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyListEntry", propOrder = { - -}) -public class CreditsafeCompanyListEntry { - - protected String country; - @XmlElement(name = "company_name", required = true) - protected String companyName; - @XmlElement(name = "company_id") - protected String companyId; - protected String number; - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the companyName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyName() { - return companyName; - } - - /** - * Sets the value of the companyName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyName(String value) { - this.companyName = value; - } - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - - /** - * Gets the value of the number property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNumber() { - return number; - } - - /** - * Sets the value of the number property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNumber(String value) { - this.number = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyListEntryArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyListEntryArray.java deleted file mode 100644 index 145ac0b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyListEntryArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyListEntryArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyListEntryArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyListEntry" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyListEntryArray", propOrder = { - "item" -}) -public class CreditsafeCompanyListEntryArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyListEntry } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEBankruptcyV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEBankruptcyV2.java deleted file mode 100644 index 5668c30..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEBankruptcyV2.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationDEBankruptcyV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationDEBankruptcyV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="has_bankruptcy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationDEBankruptcyV2", propOrder = { - -}) -public class CreditsafeCompanyNegativeInformationDEBankruptcyV2 { - - @XmlElement(name = "has_bankruptcy") - protected String hasBankruptcy; - - /** - * Gets the value of the hasBankruptcy property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHasBankruptcy() { - return hasBankruptcy; - } - - /** - * Sets the value of the hasBankruptcy property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHasBankruptcy(String value) { - this.hasBankruptcy = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEBankruptcyV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEBankruptcyV2Array.java deleted file mode 100644 index ef96039..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEBankruptcyV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationDEBankruptcyV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationDEBankruptcyV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEBankruptcyV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationDEBankruptcyV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyNegativeInformationDEBankruptcyV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyNegativeInformationDEBankruptcyV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEDirectorEventV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEDirectorEventV2.java deleted file mode 100644 index 3a13bd2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEDirectorEventV2.java +++ /dev/null @@ -1,174 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationDEDirectorEventV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationDEDirectorEventV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationDEDirectorEventV2", propOrder = { - -}) -public class CreditsafeCompanyNegativeInformationDEDirectorEventV2 { - - protected String name; - protected String type; - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar date; - protected String description; - protected String code; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the date property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Sets the value of the date property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEDirectorEventV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEDirectorEventV2Array.java deleted file mode 100644 index 3427c78..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEDirectorEventV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationDEDirectorEventV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationDEDirectorEventV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEDirectorEventV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationDEDirectorEventV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyNegativeInformationDEDirectorEventV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyNegativeInformationDEDirectorEventV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyEventV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyEventV2.java deleted file mode 100644 index 128e92d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyEventV2.java +++ /dev/null @@ -1,99 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationDEInsolvencyEventV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationDEInsolvencyEventV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="reference_number_court" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="created_at" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationDEInsolvencyEventV2", propOrder = { - -}) -public class CreditsafeCompanyNegativeInformationDEInsolvencyEventV2 { - - @XmlElement(name = "reference_number_court") - protected String referenceNumberCourt; - @XmlElement(name = "created_at") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar createdAt; - - /** - * Gets the value of the referenceNumberCourt property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReferenceNumberCourt() { - return referenceNumberCourt; - } - - /** - * Sets the value of the referenceNumberCourt property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReferenceNumberCourt(String value) { - this.referenceNumberCourt = value; - } - - /** - * Gets the value of the createdAt property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getCreatedAt() { - return createdAt; - } - - /** - * Sets the value of the createdAt property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setCreatedAt(XMLGregorianCalendar value) { - this.createdAt = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array.java deleted file mode 100644 index 191299f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEInsolvencyEventV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyNegativeInformationDEInsolvencyEventV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2.java deleted file mode 100644 index 5acb2d4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="insolvency_events" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array" minOccurs="0"/>
- *         <element name="dateof_insolvency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trustee" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDETrusteeV2" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2", propOrder = { - -}) -public class CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 { - - @XmlElement(name = "insolvency_events") - protected CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array insolvencyEvents; - @XmlElement(name = "dateof_insolvency") - protected String dateofInsolvency; - protected CreditsafeCompanyNegativeInformationDETrusteeV2 trustee; - - /** - * Gets the value of the insolvencyEvents property. - * - * @return - * possible object is - * {@link CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array } - * - */ - public CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array getInsolvencyEvents() { - return insolvencyEvents; - } - - /** - * Sets the value of the insolvencyEvents property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array } - * - */ - public void setInsolvencyEvents(CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array value) { - this.insolvencyEvents = value; - } - - /** - * Gets the value of the dateofInsolvency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateofInsolvency() { - return dateofInsolvency; - } - - /** - * Sets the value of the dateofInsolvency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateofInsolvency(String value) { - this.dateofInsolvency = value; - } - - /** - * Gets the value of the trustee property. - * - * @return - * possible object is - * {@link CreditsafeCompanyNegativeInformationDETrusteeV2 } - * - */ - public CreditsafeCompanyNegativeInformationDETrusteeV2 getTrustee() { - return trustee; - } - - /** - * Sets the value of the trustee property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyNegativeInformationDETrusteeV2 } - * - */ - public void setTrustee(CreditsafeCompanyNegativeInformationDETrusteeV2 value) { - this.trustee = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array.java deleted file mode 100644 index 95177af..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDETrusteeV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDETrusteeV2.java deleted file mode 100644 index 2180ee2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDETrusteeV2.java +++ /dev/null @@ -1,281 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationDETrusteeV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationDETrusteeV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="email_address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationDETrusteeV2", propOrder = { - -}) -public class CreditsafeCompanyNegativeInformationDETrusteeV2 { - - protected String name; - protected String title; - @XmlElement(name = "first_name") - protected String firstName; - @XmlElement(name = "last_name") - protected String lastName; - protected String code; - protected String city; - @XmlElement(name = "telephone_number") - protected String telephoneNumber; - @XmlElement(name = "fax_number") - protected String faxNumber; - @XmlElement(name = "email_address") - protected String emailAddress; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the title property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTitle() { - return title; - } - - /** - * Sets the value of the title property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTitle(String value) { - this.title = value; - } - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the telephoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNumber() { - return telephoneNumber; - } - - /** - * Sets the value of the telephoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNumber(String value) { - this.telephoneNumber = value; - } - - /** - * Gets the value of the faxNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFaxNumber() { - return faxNumber; - } - - /** - * Sets the value of the faxNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFaxNumber(String value) { - this.faxNumber = value; - } - - /** - * Gets the value of the emailAddress property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmailAddress() { - return emailAddress; - } - - /** - * Sets the value of the emailAddress property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmailAddress(String value) { - this.emailAddress = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDETrusteeV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDETrusteeV2Array.java deleted file mode 100644 index 012ee6f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDETrusteeV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationDETrusteeV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationDETrusteeV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDETrusteeV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationDETrusteeV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyNegativeInformationDETrusteeV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyNegativeInformationDETrusteeV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEV2.java deleted file mode 100644 index 3f0aff8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEV2.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationDEV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationDEV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bankruptcy" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEBankruptcyV2" minOccurs="0"/>
- *         <element name="insolvency_information" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2" minOccurs="0"/>
- *         <element name="director_events" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEDirectorEventV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationDEV2", propOrder = { - -}) -public class CreditsafeCompanyNegativeInformationDEV2 { - - protected CreditsafeCompanyNegativeInformationDEBankruptcyV2 bankruptcy; - @XmlElement(name = "insolvency_information") - protected CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 insolvencyInformation; - @XmlElement(name = "director_events") - protected CreditsafeCompanyNegativeInformationDEDirectorEventV2Array directorEvents; - - /** - * Gets the value of the bankruptcy property. - * - * @return - * possible object is - * {@link CreditsafeCompanyNegativeInformationDEBankruptcyV2 } - * - */ - public CreditsafeCompanyNegativeInformationDEBankruptcyV2 getBankruptcy() { - return bankruptcy; - } - - /** - * Sets the value of the bankruptcy property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyNegativeInformationDEBankruptcyV2 } - * - */ - public void setBankruptcy(CreditsafeCompanyNegativeInformationDEBankruptcyV2 value) { - this.bankruptcy = value; - } - - /** - * Gets the value of the insolvencyInformation property. - * - * @return - * possible object is - * {@link CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 } - * - */ - public CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 getInsolvencyInformation() { - return insolvencyInformation; - } - - /** - * Sets the value of the insolvencyInformation property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 } - * - */ - public void setInsolvencyInformation(CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 value) { - this.insolvencyInformation = value; - } - - /** - * Gets the value of the directorEvents property. - * - * @return - * possible object is - * {@link CreditsafeCompanyNegativeInformationDEDirectorEventV2Array } - * - */ - public CreditsafeCompanyNegativeInformationDEDirectorEventV2Array getDirectorEvents() { - return directorEvents; - } - - /** - * Sets the value of the directorEvents property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyNegativeInformationDEDirectorEventV2Array } - * - */ - public void setDirectorEvents(CreditsafeCompanyNegativeInformationDEDirectorEventV2Array value) { - this.directorEvents = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEV2Array.java deleted file mode 100644 index 525618b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationDEV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationDEV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationDEV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationDEV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyNegativeInformationDEV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyNegativeInformationDEV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLCourtItemV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLCourtItemV2.java deleted file mode 100644 index 29fe7d4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLCourtItemV2.java +++ /dev/null @@ -1,125 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationNLCourtItemV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationNLCourtItemV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="court_action" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_of_bankruptcy" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationNLCourtItemV2", propOrder = { - -}) -public class CreditsafeCompanyNegativeInformationNLCourtItemV2 { - - @XmlElement(name = "court_action") - protected String courtAction; - @XmlElement(name = "date_of_bankruptcy") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateOfBankruptcy; - protected String address; - - /** - * Gets the value of the courtAction property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCourtAction() { - return courtAction; - } - - /** - * Sets the value of the courtAction property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCourtAction(String value) { - this.courtAction = value; - } - - /** - * Gets the value of the dateOfBankruptcy property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfBankruptcy() { - return dateOfBankruptcy; - } - - /** - * Sets the value of the dateOfBankruptcy property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfBankruptcy(XMLGregorianCalendar value) { - this.dateOfBankruptcy = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLCourtItemV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLCourtItemV2Array.java deleted file mode 100644 index b34f39a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLCourtItemV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationNLCourtItemV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationNLCourtItemV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationNLCourtItemV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationNLCourtItemV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyNegativeInformationNLCourtItemV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyNegativeInformationNLCourtItemV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLV2.java deleted file mode 100644 index 16f9bac..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLV2.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationNLV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationNLV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="court_items" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationNLCourtItemV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationNLV2", propOrder = { - -}) -public class CreditsafeCompanyNegativeInformationNLV2 { - - @XmlElement(name = "court_items") - protected CreditsafeCompanyNegativeInformationNLCourtItemV2Array courtItems; - - /** - * Gets the value of the courtItems property. - * - * @return - * possible object is - * {@link CreditsafeCompanyNegativeInformationNLCourtItemV2Array } - * - */ - public CreditsafeCompanyNegativeInformationNLCourtItemV2Array getCourtItems() { - return courtItems; - } - - /** - * Sets the value of the courtItems property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyNegativeInformationNLCourtItemV2Array } - * - */ - public void setCourtItems(CreditsafeCompanyNegativeInformationNLCourtItemV2Array value) { - this.courtItems = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLV2Array.java deleted file mode 100644 index 282cb63..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationNLV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationNLV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationNLV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationNLV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationNLV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyNegativeInformationNLV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyNegativeInformationNLV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationV2.java deleted file mode 100644 index 1c2d648..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationV2.java +++ /dev/null @@ -1,119 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nl" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationNLV2" minOccurs="0"/>
- *         <element name="de" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationDEV2" minOccurs="0"/>
- *         <element name="generic" type="{http://www.webservices.nl/soap/}CreditsafeCompanyKeyValueV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationV2", propOrder = { - -}) -public class CreditsafeCompanyNegativeInformationV2 { - - protected CreditsafeCompanyNegativeInformationNLV2 nl; - protected CreditsafeCompanyNegativeInformationDEV2 de; - protected CreditsafeCompanyKeyValueV2Array generic; - - /** - * Gets the value of the nl property. - * - * @return - * possible object is - * {@link CreditsafeCompanyNegativeInformationNLV2 } - * - */ - public CreditsafeCompanyNegativeInformationNLV2 getNl() { - return nl; - } - - /** - * Sets the value of the nl property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyNegativeInformationNLV2 } - * - */ - public void setNl(CreditsafeCompanyNegativeInformationNLV2 value) { - this.nl = value; - } - - /** - * Gets the value of the de property. - * - * @return - * possible object is - * {@link CreditsafeCompanyNegativeInformationDEV2 } - * - */ - public CreditsafeCompanyNegativeInformationDEV2 getDe() { - return de; - } - - /** - * Sets the value of the de property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyNegativeInformationDEV2 } - * - */ - public void setDe(CreditsafeCompanyNegativeInformationDEV2 value) { - this.de = value; - } - - /** - * Gets the value of the generic property. - * - * @return - * possible object is - * {@link CreditsafeCompanyKeyValueV2Array } - * - */ - public CreditsafeCompanyKeyValueV2Array getGeneric() { - return generic; - } - - /** - * Sets the value of the generic property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyKeyValueV2Array } - * - */ - public void setGeneric(CreditsafeCompanyKeyValueV2Array value) { - this.generic = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationV2Array.java deleted file mode 100644 index 2ec295b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyNegativeInformationV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyNegativeInformationV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyNegativeInformationV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyNegativeInformationV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyNegativeInformationV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyNegativeInformationV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherFinancialsV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherFinancialsV2.java deleted file mode 100644 index f59461a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherFinancialsV2.java +++ /dev/null @@ -1,97 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyOtherFinancialsV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyOtherFinancialsV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="net_worth" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="working_capital" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyOtherFinancialsV2", propOrder = { - -}) -public class CreditsafeCompanyOtherFinancialsV2 { - - @XmlElement(name = "net_worth") - protected BigInteger netWorth; - @XmlElement(name = "working_capital") - protected BigInteger workingCapital; - - /** - * Gets the value of the netWorth property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getNetWorth() { - return netWorth; - } - - /** - * Sets the value of the netWorth property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setNetWorth(BigInteger value) { - this.netWorth = value; - } - - /** - * Gets the value of the workingCapital property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getWorkingCapital() { - return workingCapital; - } - - /** - * Sets the value of the workingCapital property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setWorkingCapital(BigInteger value) { - this.workingCapital = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherFinancialsV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherFinancialsV2Array.java deleted file mode 100644 index 9ffcbb6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherFinancialsV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyOtherFinancialsV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyOtherFinancialsV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyOtherFinancialsV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyOtherFinancialsV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyOtherFinancialsV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyOtherFinancialsV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherInformationV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherInformationV2.java deleted file mode 100644 index c012f9b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherInformationV2.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyOtherInformationV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyOtherInformationV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bankers" type="{http://www.webservices.nl/soap/}CreditsafeCompanyBankerV2Array" minOccurs="0"/>
- *         <element name="advisors" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdvisorV2Array" minOccurs="0"/>
- *         <element name="employees_information" type="{http://www.webservices.nl/soap/}CreditsafeCompanyEmployeeInformationV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyOtherInformationV2", propOrder = { - -}) -public class CreditsafeCompanyOtherInformationV2 { - - protected CreditsafeCompanyBankerV2Array bankers; - protected CreditsafeCompanyAdvisorV2Array advisors; - @XmlElement(name = "employees_information") - protected CreditsafeCompanyEmployeeInformationV2Array employeesInformation; - - /** - * Gets the value of the bankers property. - * - * @return - * possible object is - * {@link CreditsafeCompanyBankerV2Array } - * - */ - public CreditsafeCompanyBankerV2Array getBankers() { - return bankers; - } - - /** - * Sets the value of the bankers property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyBankerV2Array } - * - */ - public void setBankers(CreditsafeCompanyBankerV2Array value) { - this.bankers = value; - } - - /** - * Gets the value of the advisors property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdvisorV2Array } - * - */ - public CreditsafeCompanyAdvisorV2Array getAdvisors() { - return advisors; - } - - /** - * Sets the value of the advisors property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdvisorV2Array } - * - */ - public void setAdvisors(CreditsafeCompanyAdvisorV2Array value) { - this.advisors = value; - } - - /** - * Gets the value of the employeesInformation property. - * - * @return - * possible object is - * {@link CreditsafeCompanyEmployeeInformationV2Array } - * - */ - public CreditsafeCompanyEmployeeInformationV2Array getEmployeesInformation() { - return employeesInformation; - } - - /** - * Sets the value of the employeesInformation property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyEmployeeInformationV2Array } - * - */ - public void setEmployeesInformation(CreditsafeCompanyEmployeeInformationV2Array value) { - this.employeesInformation = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherInformationV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherInformationV2Array.java deleted file mode 100644 index a7b3201..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyOtherInformationV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyOtherInformationV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyOtherInformationV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyOtherInformationV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyOtherInformationV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyOtherInformationV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyOtherInformationV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPagedResult.java deleted file mode 100644 index 8021de4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}CreditsafeCompanyArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyPagedResult", propOrder = { - -}) -public class CreditsafeCompanyPagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected CreditsafeCompanyArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link CreditsafeCompanyArray } - * - */ - public CreditsafeCompanyArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyArray } - * - */ - public void setResults(CreditsafeCompanyArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPaymentDataV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPaymentDataV2.java deleted file mode 100644 index 499c3c1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPaymentDataV2.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyPaymentDataV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyPaymentDataV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="generic" type="{http://www.webservices.nl/soap/}CreditsafeCompanyKeyValueV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyPaymentDataV2", propOrder = { - -}) -public class CreditsafeCompanyPaymentDataV2 { - - protected CreditsafeCompanyKeyValueV2Array generic; - - /** - * Gets the value of the generic property. - * - * @return - * possible object is - * {@link CreditsafeCompanyKeyValueV2Array } - * - */ - public CreditsafeCompanyKeyValueV2Array getGeneric() { - return generic; - } - - /** - * Sets the value of the generic property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyKeyValueV2Array } - * - */ - public void setGeneric(CreditsafeCompanyKeyValueV2Array value) { - this.generic = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPaymentDataV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPaymentDataV2Array.java deleted file mode 100644 index 39107c4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyPaymentDataV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyPaymentDataV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyPaymentDataV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyPaymentDataV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyPaymentDataV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyPaymentDataV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyPaymentDataV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyProfitAndLossV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyProfitAndLossV2.java deleted file mode 100644 index 8b12dbd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyProfitAndLossV2.java +++ /dev/null @@ -1,416 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyProfitAndLossV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyProfitAndLossV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="depreciation" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="dividends" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="financial_expenses" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="financial_income" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="operating_costs" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="operating_profit" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="other_appropriations" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="pension_costs" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="profit_after_tax" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="profit_before_tax" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="retained_profit" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="revenue" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="tax" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="wages_and_salaries" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyProfitAndLossV2", propOrder = { - -}) -public class CreditsafeCompanyProfitAndLossV2 { - - protected Integer depreciation; - protected Integer dividends; - @XmlElement(name = "financial_expenses") - protected Integer financialExpenses; - @XmlElement(name = "financial_income") - protected Integer financialIncome; - @XmlElement(name = "operating_costs") - protected Integer operatingCosts; - @XmlElement(name = "operating_profit") - protected Integer operatingProfit; - @XmlElement(name = "other_appropriations") - protected Integer otherAppropriations; - @XmlElement(name = "pension_costs") - protected Integer pensionCosts; - @XmlElement(name = "profit_after_tax") - protected Integer profitAfterTax; - @XmlElement(name = "profit_before_tax") - protected Integer profitBeforeTax; - @XmlElement(name = "retained_profit") - protected Integer retainedProfit; - protected Integer revenue; - protected Integer tax; - @XmlElement(name = "wages_and_salaries") - protected Integer wagesAndSalaries; - - /** - * Gets the value of the depreciation property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDepreciation() { - return depreciation; - } - - /** - * Sets the value of the depreciation property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDepreciation(Integer value) { - this.depreciation = value; - } - - /** - * Gets the value of the dividends property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDividends() { - return dividends; - } - - /** - * Sets the value of the dividends property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDividends(Integer value) { - this.dividends = value; - } - - /** - * Gets the value of the financialExpenses property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getFinancialExpenses() { - return financialExpenses; - } - - /** - * Sets the value of the financialExpenses property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setFinancialExpenses(Integer value) { - this.financialExpenses = value; - } - - /** - * Gets the value of the financialIncome property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getFinancialIncome() { - return financialIncome; - } - - /** - * Sets the value of the financialIncome property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setFinancialIncome(Integer value) { - this.financialIncome = value; - } - - /** - * Gets the value of the operatingCosts property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOperatingCosts() { - return operatingCosts; - } - - /** - * Sets the value of the operatingCosts property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOperatingCosts(Integer value) { - this.operatingCosts = value; - } - - /** - * Gets the value of the operatingProfit property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOperatingProfit() { - return operatingProfit; - } - - /** - * Sets the value of the operatingProfit property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOperatingProfit(Integer value) { - this.operatingProfit = value; - } - - /** - * Gets the value of the otherAppropriations property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOtherAppropriations() { - return otherAppropriations; - } - - /** - * Sets the value of the otherAppropriations property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOtherAppropriations(Integer value) { - this.otherAppropriations = value; - } - - /** - * Gets the value of the pensionCosts property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPensionCosts() { - return pensionCosts; - } - - /** - * Sets the value of the pensionCosts property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPensionCosts(Integer value) { - this.pensionCosts = value; - } - - /** - * Gets the value of the profitAfterTax property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getProfitAfterTax() { - return profitAfterTax; - } - - /** - * Sets the value of the profitAfterTax property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setProfitAfterTax(Integer value) { - this.profitAfterTax = value; - } - - /** - * Gets the value of the profitBeforeTax property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getProfitBeforeTax() { - return profitBeforeTax; - } - - /** - * Sets the value of the profitBeforeTax property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setProfitBeforeTax(Integer value) { - this.profitBeforeTax = value; - } - - /** - * Gets the value of the retainedProfit property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRetainedProfit() { - return retainedProfit; - } - - /** - * Sets the value of the retainedProfit property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRetainedProfit(Integer value) { - this.retainedProfit = value; - } - - /** - * Gets the value of the revenue property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRevenue() { - return revenue; - } - - /** - * Sets the value of the revenue property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRevenue(Integer value) { - this.revenue = value; - } - - /** - * Gets the value of the tax property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTax() { - return tax; - } - - /** - * Sets the value of the tax property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTax(Integer value) { - this.tax = value; - } - - /** - * Gets the value of the wagesAndSalaries property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getWagesAndSalaries() { - return wagesAndSalaries; - } - - /** - * Sets the value of the wagesAndSalaries property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setWagesAndSalaries(Integer value) { - this.wagesAndSalaries = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyProfitAndLossV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyProfitAndLossV2Array.java deleted file mode 100644 index db13a45..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyProfitAndLossV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyProfitAndLossV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyProfitAndLossV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyProfitAndLossV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyProfitAndLossV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyProfitAndLossV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyProfitAndLossV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyRatiosV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyRatiosV2.java deleted file mode 100644 index ad02fd4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyRatiosV2.java +++ /dev/null @@ -1,419 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyRatiosV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyRatiosV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="creditor_days" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="current_debt_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="current_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="debtor_days" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="equity_in_percentage" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="gearing" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="liquidity_ratio_or_acid_test" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="pre_tax_profit_margin" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="return_on_capital_employed" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="return_on_net_assets_employed" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="return_on_total_assets_employed" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="sales_or_net_working_capital" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="stock_turnover_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="total_debt_ratio" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyRatiosV2", propOrder = { - -}) -public class CreditsafeCompanyRatiosV2 { - - @XmlElement(name = "creditor_days") - protected Float creditorDays; - @XmlElement(name = "current_debt_ratio") - protected Float currentDebtRatio; - @XmlElement(name = "current_ratio") - protected Float currentRatio; - @XmlElement(name = "debtor_days") - protected Float debtorDays; - @XmlElement(name = "equity_in_percentage") - protected Float equityInPercentage; - protected Float gearing; - @XmlElement(name = "liquidity_ratio_or_acid_test") - protected Float liquidityRatioOrAcidTest; - @XmlElement(name = "pre_tax_profit_margin") - protected Float preTaxProfitMargin; - @XmlElement(name = "return_on_capital_employed") - protected Float returnOnCapitalEmployed; - @XmlElement(name = "return_on_net_assets_employed") - protected Float returnOnNetAssetsEmployed; - @XmlElement(name = "return_on_total_assets_employed") - protected Float returnOnTotalAssetsEmployed; - @XmlElement(name = "sales_or_net_working_capital") - protected Float salesOrNetWorkingCapital; - @XmlElement(name = "stock_turnover_ratio") - protected Float stockTurnoverRatio; - @XmlElement(name = "total_debt_ratio") - protected Float totalDebtRatio; - - /** - * Gets the value of the creditorDays property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getCreditorDays() { - return creditorDays; - } - - /** - * Sets the value of the creditorDays property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setCreditorDays(Float value) { - this.creditorDays = value; - } - - /** - * Gets the value of the currentDebtRatio property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getCurrentDebtRatio() { - return currentDebtRatio; - } - - /** - * Sets the value of the currentDebtRatio property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setCurrentDebtRatio(Float value) { - this.currentDebtRatio = value; - } - - /** - * Gets the value of the currentRatio property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getCurrentRatio() { - return currentRatio; - } - - /** - * Sets the value of the currentRatio property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setCurrentRatio(Float value) { - this.currentRatio = value; - } - - /** - * Gets the value of the debtorDays property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getDebtorDays() { - return debtorDays; - } - - /** - * Sets the value of the debtorDays property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setDebtorDays(Float value) { - this.debtorDays = value; - } - - /** - * Gets the value of the equityInPercentage property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getEquityInPercentage() { - return equityInPercentage; - } - - /** - * Sets the value of the equityInPercentage property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setEquityInPercentage(Float value) { - this.equityInPercentage = value; - } - - /** - * Gets the value of the gearing property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getGearing() { - return gearing; - } - - /** - * Sets the value of the gearing property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setGearing(Float value) { - this.gearing = value; - } - - /** - * Gets the value of the liquidityRatioOrAcidTest property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getLiquidityRatioOrAcidTest() { - return liquidityRatioOrAcidTest; - } - - /** - * Sets the value of the liquidityRatioOrAcidTest property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setLiquidityRatioOrAcidTest(Float value) { - this.liquidityRatioOrAcidTest = value; - } - - /** - * Gets the value of the preTaxProfitMargin property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getPreTaxProfitMargin() { - return preTaxProfitMargin; - } - - /** - * Sets the value of the preTaxProfitMargin property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setPreTaxProfitMargin(Float value) { - this.preTaxProfitMargin = value; - } - - /** - * Gets the value of the returnOnCapitalEmployed property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getReturnOnCapitalEmployed() { - return returnOnCapitalEmployed; - } - - /** - * Sets the value of the returnOnCapitalEmployed property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setReturnOnCapitalEmployed(Float value) { - this.returnOnCapitalEmployed = value; - } - - /** - * Gets the value of the returnOnNetAssetsEmployed property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getReturnOnNetAssetsEmployed() { - return returnOnNetAssetsEmployed; - } - - /** - * Sets the value of the returnOnNetAssetsEmployed property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setReturnOnNetAssetsEmployed(Float value) { - this.returnOnNetAssetsEmployed = value; - } - - /** - * Gets the value of the returnOnTotalAssetsEmployed property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getReturnOnTotalAssetsEmployed() { - return returnOnTotalAssetsEmployed; - } - - /** - * Sets the value of the returnOnTotalAssetsEmployed property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setReturnOnTotalAssetsEmployed(Float value) { - this.returnOnTotalAssetsEmployed = value; - } - - /** - * Gets the value of the salesOrNetWorkingCapital property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getSalesOrNetWorkingCapital() { - return salesOrNetWorkingCapital; - } - - /** - * Sets the value of the salesOrNetWorkingCapital property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setSalesOrNetWorkingCapital(Float value) { - this.salesOrNetWorkingCapital = value; - } - - /** - * Gets the value of the stockTurnoverRatio property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getStockTurnoverRatio() { - return stockTurnoverRatio; - } - - /** - * Sets the value of the stockTurnoverRatio property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setStockTurnoverRatio(Float value) { - this.stockTurnoverRatio = value; - } - - /** - * Gets the value of the totalDebtRatio property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getTotalDebtRatio() { - return totalDebtRatio; - } - - /** - * Sets the value of the totalDebtRatio property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setTotalDebtRatio(Float value) { - this.totalDebtRatio = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyRatiosV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyRatiosV2Array.java deleted file mode 100644 index e8cce8f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyRatiosV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyRatiosV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyRatiosV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyRatiosV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyRatiosV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyRatiosV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyRatiosV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFull.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFull.java deleted file mode 100644 index ef05a27..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFull.java +++ /dev/null @@ -1,420 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyReportFull complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyReportFull">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="order_number" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
- *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="company_summary" type="{http://www.webservices.nl/soap/}CreditsafeLtdCompanySummary"/>
- *         <element name="company_identification" type="{http://www.webservices.nl/soap/}CreditsafeLtdCompanyIdentification"/>
- *         <element name="credit_score" type="{http://www.webservices.nl/soap/}CreditsafeLtdCreditScore"/>
- *         <element name="contact_information" type="{http://www.webservices.nl/soap/}CreditsafeLtdContactInformation"/>
- *         <element name="share_capital_structure" type="{http://www.webservices.nl/soap/}CreditsafeLtdShareCapitalStructure"/>
- *         <element name="directors" type="{http://www.webservices.nl/soap/}CreditsafeLtdDirectors"/>
- *         <element name="other_information" type="{http://www.webservices.nl/soap/}CreditsafeLtdOtherInformation"/>
- *         <element name="group_structure" type="{http://www.webservices.nl/soap/}CreditsafeLtdGroupStructure" minOccurs="0"/>
- *         <element name="financial_statements" type="{http://www.webservices.nl/soap/}CreditsafeLtdFinancialStatementArray" minOccurs="0"/>
- *         <element name="additional_information" type="{http://www.webservices.nl/soap/}CreditsafeAdditionalInformation" minOccurs="0"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyReportFull", propOrder = { - -}) -public class CreditsafeCompanyReportFull { - - @XmlElement(name = "company_id", required = true) - protected String companyId; - @XmlElement(name = "order_number", required = true) - @XmlSchemaType(name = "unsignedLong") - protected BigInteger orderNumber; - @XmlElement(required = true) - protected String language; - @XmlElement(name = "company_summary", required = true) - protected CreditsafeLtdCompanySummary companySummary; - @XmlElement(name = "company_identification", required = true) - protected CreditsafeLtdCompanyIdentification companyIdentification; - @XmlElement(name = "credit_score", required = true) - protected CreditsafeLtdCreditScore creditScore; - @XmlElement(name = "contact_information", required = true) - protected CreditsafeLtdContactInformation contactInformation; - @XmlElement(name = "share_capital_structure", required = true) - protected CreditsafeLtdShareCapitalStructure shareCapitalStructure; - @XmlElement(required = true) - protected CreditsafeLtdDirectors directors; - @XmlElement(name = "other_information", required = true) - protected CreditsafeLtdOtherInformation otherInformation; - @XmlElement(name = "group_structure") - protected CreditsafeLtdGroupStructure groupStructure; - @XmlElement(name = "financial_statements") - protected CreditsafeLtdFinancialStatementArray financialStatements; - @XmlElement(name = "additional_information") - protected CreditsafeAdditionalInformation additionalInformation; - protected byte[] document; - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - - /** - * Gets the value of the orderNumber property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getOrderNumber() { - return orderNumber; - } - - /** - * Sets the value of the orderNumber property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setOrderNumber(BigInteger value) { - this.orderNumber = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the companySummary property. - * - * @return - * possible object is - * {@link CreditsafeLtdCompanySummary } - * - */ - public CreditsafeLtdCompanySummary getCompanySummary() { - return companySummary; - } - - /** - * Sets the value of the companySummary property. - * - * @param value - * allowed object is - * {@link CreditsafeLtdCompanySummary } - * - */ - public void setCompanySummary(CreditsafeLtdCompanySummary value) { - this.companySummary = value; - } - - /** - * Gets the value of the companyIdentification property. - * - * @return - * possible object is - * {@link CreditsafeLtdCompanyIdentification } - * - */ - public CreditsafeLtdCompanyIdentification getCompanyIdentification() { - return companyIdentification; - } - - /** - * Sets the value of the companyIdentification property. - * - * @param value - * allowed object is - * {@link CreditsafeLtdCompanyIdentification } - * - */ - public void setCompanyIdentification(CreditsafeLtdCompanyIdentification value) { - this.companyIdentification = value; - } - - /** - * Gets the value of the creditScore property. - * - * @return - * possible object is - * {@link CreditsafeLtdCreditScore } - * - */ - public CreditsafeLtdCreditScore getCreditScore() { - return creditScore; - } - - /** - * Sets the value of the creditScore property. - * - * @param value - * allowed object is - * {@link CreditsafeLtdCreditScore } - * - */ - public void setCreditScore(CreditsafeLtdCreditScore value) { - this.creditScore = value; - } - - /** - * Gets the value of the contactInformation property. - * - * @return - * possible object is - * {@link CreditsafeLtdContactInformation } - * - */ - public CreditsafeLtdContactInformation getContactInformation() { - return contactInformation; - } - - /** - * Sets the value of the contactInformation property. - * - * @param value - * allowed object is - * {@link CreditsafeLtdContactInformation } - * - */ - public void setContactInformation(CreditsafeLtdContactInformation value) { - this.contactInformation = value; - } - - /** - * Gets the value of the shareCapitalStructure property. - * - * @return - * possible object is - * {@link CreditsafeLtdShareCapitalStructure } - * - */ - public CreditsafeLtdShareCapitalStructure getShareCapitalStructure() { - return shareCapitalStructure; - } - - /** - * Sets the value of the shareCapitalStructure property. - * - * @param value - * allowed object is - * {@link CreditsafeLtdShareCapitalStructure } - * - */ - public void setShareCapitalStructure(CreditsafeLtdShareCapitalStructure value) { - this.shareCapitalStructure = value; - } - - /** - * Gets the value of the directors property. - * - * @return - * possible object is - * {@link CreditsafeLtdDirectors } - * - */ - public CreditsafeLtdDirectors getDirectors() { - return directors; - } - - /** - * Sets the value of the directors property. - * - * @param value - * allowed object is - * {@link CreditsafeLtdDirectors } - * - */ - public void setDirectors(CreditsafeLtdDirectors value) { - this.directors = value; - } - - /** - * Gets the value of the otherInformation property. - * - * @return - * possible object is - * {@link CreditsafeLtdOtherInformation } - * - */ - public CreditsafeLtdOtherInformation getOtherInformation() { - return otherInformation; - } - - /** - * Sets the value of the otherInformation property. - * - * @param value - * allowed object is - * {@link CreditsafeLtdOtherInformation } - * - */ - public void setOtherInformation(CreditsafeLtdOtherInformation value) { - this.otherInformation = value; - } - - /** - * Gets the value of the groupStructure property. - * - * @return - * possible object is - * {@link CreditsafeLtdGroupStructure } - * - */ - public CreditsafeLtdGroupStructure getGroupStructure() { - return groupStructure; - } - - /** - * Sets the value of the groupStructure property. - * - * @param value - * allowed object is - * {@link CreditsafeLtdGroupStructure } - * - */ - public void setGroupStructure(CreditsafeLtdGroupStructure value) { - this.groupStructure = value; - } - - /** - * Gets the value of the financialStatements property. - * - * @return - * possible object is - * {@link CreditsafeLtdFinancialStatementArray } - * - */ - public CreditsafeLtdFinancialStatementArray getFinancialStatements() { - return financialStatements; - } - - /** - * Sets the value of the financialStatements property. - * - * @param value - * allowed object is - * {@link CreditsafeLtdFinancialStatementArray } - * - */ - public void setFinancialStatements(CreditsafeLtdFinancialStatementArray value) { - this.financialStatements = value; - } - - /** - * Gets the value of the additionalInformation property. - * - * @return - * possible object is - * {@link CreditsafeAdditionalInformation } - * - */ - public CreditsafeAdditionalInformation getAdditionalInformation() { - return additionalInformation; - } - - /** - * Sets the value of the additionalInformation property. - * - * @param value - * allowed object is - * {@link CreditsafeAdditionalInformation } - * - */ - public void setAdditionalInformation(CreditsafeAdditionalInformation value) { - this.additionalInformation = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFullV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFullV2.java deleted file mode 100644 index 89e4d36..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFullV2.java +++ /dev/null @@ -1,472 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyReportFullV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyReportFullV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="additional_information" type="{http://www.webservices.nl/soap/}CreditsafeCompanyAdditionalInformationV2" minOccurs="0"/>
- *         <element name="company_identification" type="{http://www.webservices.nl/soap/}CreditsafeCompanyIdentificationV2" minOccurs="0"/>
- *         <element name="company_summary" type="{http://www.webservices.nl/soap/}CreditsafeCompanySummaryV2" minOccurs="0"/>
- *         <element name="contact_information" type="{http://www.webservices.nl/soap/}CreditsafeCompanyContactInformationV2" minOccurs="0"/>
- *         <element name="credit_score" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCreditScoreV2" minOccurs="0"/>
- *         <element name="directors" type="{http://www.webservices.nl/soap/}CreditsafePersonDirectorsV2" minOccurs="0"/>
- *         <element name="financial_statements" type="{http://www.webservices.nl/soap/}CreditsafeCompanyFinancialStatementV2Array" minOccurs="0"/>
- *         <element name="group_structure" type="{http://www.webservices.nl/soap/}CreditsafeCompanyGroupStructureV2" minOccurs="0"/>
- *         <element name="local_financial_statements" type="{http://www.webservices.nl/soap/}CreditsafeCompanyFinancialStatementV2Array" minOccurs="0"/>
- *         <element name="negative_information" type="{http://www.webservices.nl/soap/}CreditsafeCompanyNegativeInformationV2" minOccurs="0"/>
- *         <element name="order_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="other_information" type="{http://www.webservices.nl/soap/}CreditsafeCompanyOtherInformationV2" minOccurs="0"/>
- *         <element name="share_capital_structure" type="{http://www.webservices.nl/soap/}CreditsafeCompanyShareCapitalStructureV2" minOccurs="0"/>
- *         <element name="payment_data" type="{http://www.webservices.nl/soap/}CreditsafeCompanyPaymentDataV2" minOccurs="0"/>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyReportFullV2", propOrder = { - -}) -public class CreditsafeCompanyReportFullV2 { - - @XmlElement(name = "additional_information") - protected CreditsafeCompanyAdditionalInformationV2 additionalInformation; - @XmlElement(name = "company_identification") - protected CreditsafeCompanyIdentificationV2 companyIdentification; - @XmlElement(name = "company_summary") - protected CreditsafeCompanySummaryV2 companySummary; - @XmlElement(name = "contact_information") - protected CreditsafeCompanyContactInformationV2 contactInformation; - @XmlElement(name = "credit_score") - protected CreditsafeCompanyCreditScoreV2 creditScore; - protected CreditsafePersonDirectorsV2 directors; - @XmlElement(name = "financial_statements") - protected CreditsafeCompanyFinancialStatementV2Array financialStatements; - @XmlElement(name = "group_structure") - protected CreditsafeCompanyGroupStructureV2 groupStructure; - @XmlElement(name = "local_financial_statements") - protected CreditsafeCompanyFinancialStatementV2Array localFinancialStatements; - @XmlElement(name = "negative_information") - protected CreditsafeCompanyNegativeInformationV2 negativeInformation; - @XmlElement(name = "order_number") - protected String orderNumber; - @XmlElement(name = "other_information") - protected CreditsafeCompanyOtherInformationV2 otherInformation; - @XmlElement(name = "share_capital_structure") - protected CreditsafeCompanyShareCapitalStructureV2 shareCapitalStructure; - @XmlElement(name = "payment_data") - protected CreditsafeCompanyPaymentDataV2 paymentData; - @XmlElement(name = "company_id") - protected String companyId; - protected String language; - - /** - * Gets the value of the additionalInformation property. - * - * @return - * possible object is - * {@link CreditsafeCompanyAdditionalInformationV2 } - * - */ - public CreditsafeCompanyAdditionalInformationV2 getAdditionalInformation() { - return additionalInformation; - } - - /** - * Sets the value of the additionalInformation property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyAdditionalInformationV2 } - * - */ - public void setAdditionalInformation(CreditsafeCompanyAdditionalInformationV2 value) { - this.additionalInformation = value; - } - - /** - * Gets the value of the companyIdentification property. - * - * @return - * possible object is - * {@link CreditsafeCompanyIdentificationV2 } - * - */ - public CreditsafeCompanyIdentificationV2 getCompanyIdentification() { - return companyIdentification; - } - - /** - * Sets the value of the companyIdentification property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyIdentificationV2 } - * - */ - public void setCompanyIdentification(CreditsafeCompanyIdentificationV2 value) { - this.companyIdentification = value; - } - - /** - * Gets the value of the companySummary property. - * - * @return - * possible object is - * {@link CreditsafeCompanySummaryV2 } - * - */ - public CreditsafeCompanySummaryV2 getCompanySummary() { - return companySummary; - } - - /** - * Sets the value of the companySummary property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanySummaryV2 } - * - */ - public void setCompanySummary(CreditsafeCompanySummaryV2 value) { - this.companySummary = value; - } - - /** - * Gets the value of the contactInformation property. - * - * @return - * possible object is - * {@link CreditsafeCompanyContactInformationV2 } - * - */ - public CreditsafeCompanyContactInformationV2 getContactInformation() { - return contactInformation; - } - - /** - * Sets the value of the contactInformation property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyContactInformationV2 } - * - */ - public void setContactInformation(CreditsafeCompanyContactInformationV2 value) { - this.contactInformation = value; - } - - /** - * Gets the value of the creditScore property. - * - * @return - * possible object is - * {@link CreditsafeCompanyCreditScoreV2 } - * - */ - public CreditsafeCompanyCreditScoreV2 getCreditScore() { - return creditScore; - } - - /** - * Sets the value of the creditScore property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyCreditScoreV2 } - * - */ - public void setCreditScore(CreditsafeCompanyCreditScoreV2 value) { - this.creditScore = value; - } - - /** - * Gets the value of the directors property. - * - * @return - * possible object is - * {@link CreditsafePersonDirectorsV2 } - * - */ - public CreditsafePersonDirectorsV2 getDirectors() { - return directors; - } - - /** - * Sets the value of the directors property. - * - * @param value - * allowed object is - * {@link CreditsafePersonDirectorsV2 } - * - */ - public void setDirectors(CreditsafePersonDirectorsV2 value) { - this.directors = value; - } - - /** - * Gets the value of the financialStatements property. - * - * @return - * possible object is - * {@link CreditsafeCompanyFinancialStatementV2Array } - * - */ - public CreditsafeCompanyFinancialStatementV2Array getFinancialStatements() { - return financialStatements; - } - - /** - * Sets the value of the financialStatements property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyFinancialStatementV2Array } - * - */ - public void setFinancialStatements(CreditsafeCompanyFinancialStatementV2Array value) { - this.financialStatements = value; - } - - /** - * Gets the value of the groupStructure property. - * - * @return - * possible object is - * {@link CreditsafeCompanyGroupStructureV2 } - * - */ - public CreditsafeCompanyGroupStructureV2 getGroupStructure() { - return groupStructure; - } - - /** - * Sets the value of the groupStructure property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyGroupStructureV2 } - * - */ - public void setGroupStructure(CreditsafeCompanyGroupStructureV2 value) { - this.groupStructure = value; - } - - /** - * Gets the value of the localFinancialStatements property. - * - * @return - * possible object is - * {@link CreditsafeCompanyFinancialStatementV2Array } - * - */ - public CreditsafeCompanyFinancialStatementV2Array getLocalFinancialStatements() { - return localFinancialStatements; - } - - /** - * Sets the value of the localFinancialStatements property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyFinancialStatementV2Array } - * - */ - public void setLocalFinancialStatements(CreditsafeCompanyFinancialStatementV2Array value) { - this.localFinancialStatements = value; - } - - /** - * Gets the value of the negativeInformation property. - * - * @return - * possible object is - * {@link CreditsafeCompanyNegativeInformationV2 } - * - */ - public CreditsafeCompanyNegativeInformationV2 getNegativeInformation() { - return negativeInformation; - } - - /** - * Sets the value of the negativeInformation property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyNegativeInformationV2 } - * - */ - public void setNegativeInformation(CreditsafeCompanyNegativeInformationV2 value) { - this.negativeInformation = value; - } - - /** - * Gets the value of the orderNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrderNumber() { - return orderNumber; - } - - /** - * Sets the value of the orderNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrderNumber(String value) { - this.orderNumber = value; - } - - /** - * Gets the value of the otherInformation property. - * - * @return - * possible object is - * {@link CreditsafeCompanyOtherInformationV2 } - * - */ - public CreditsafeCompanyOtherInformationV2 getOtherInformation() { - return otherInformation; - } - - /** - * Sets the value of the otherInformation property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyOtherInformationV2 } - * - */ - public void setOtherInformation(CreditsafeCompanyOtherInformationV2 value) { - this.otherInformation = value; - } - - /** - * Gets the value of the shareCapitalStructure property. - * - * @return - * possible object is - * {@link CreditsafeCompanyShareCapitalStructureV2 } - * - */ - public CreditsafeCompanyShareCapitalStructureV2 getShareCapitalStructure() { - return shareCapitalStructure; - } - - /** - * Sets the value of the shareCapitalStructure property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyShareCapitalStructureV2 } - * - */ - public void setShareCapitalStructure(CreditsafeCompanyShareCapitalStructureV2 value) { - this.shareCapitalStructure = value; - } - - /** - * Gets the value of the paymentData property. - * - * @return - * possible object is - * {@link CreditsafeCompanyPaymentDataV2 } - * - */ - public CreditsafeCompanyPaymentDataV2 getPaymentData() { - return paymentData; - } - - /** - * Sets the value of the paymentData property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyPaymentDataV2 } - * - */ - public void setPaymentData(CreditsafeCompanyPaymentDataV2 value) { - this.paymentData = value; - } - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFullV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFullV2Array.java deleted file mode 100644 index cd8527a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyReportFullV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyReportFullV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyReportFullV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyReportFullV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyReportFullV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyReportFullV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyReportFullV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareCapitalStructureV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareCapitalStructureV2.java deleted file mode 100644 index 7d96c59..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareCapitalStructureV2.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyShareCapitalStructureV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyShareCapitalStructureV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="issued_share_capital" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="nominal_share_capital" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="share_holders" type="{http://www.webservices.nl/soap/}CreditsafeCompanyShareHolderV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyShareCapitalStructureV2", propOrder = { - -}) -public class CreditsafeCompanyShareCapitalStructureV2 { - - @XmlElement(name = "issued_share_capital") - protected String issuedShareCapital; - @XmlElement(name = "nominal_share_capital") - protected String nominalShareCapital; - @XmlElement(name = "share_holders") - protected CreditsafeCompanyShareHolderV2Array shareHolders; - - /** - * Gets the value of the issuedShareCapital property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIssuedShareCapital() { - return issuedShareCapital; - } - - /** - * Sets the value of the issuedShareCapital property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIssuedShareCapital(String value) { - this.issuedShareCapital = value; - } - - /** - * Gets the value of the nominalShareCapital property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNominalShareCapital() { - return nominalShareCapital; - } - - /** - * Sets the value of the nominalShareCapital property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNominalShareCapital(String value) { - this.nominalShareCapital = value; - } - - /** - * Gets the value of the shareHolders property. - * - * @return - * possible object is - * {@link CreditsafeCompanyShareHolderV2Array } - * - */ - public CreditsafeCompanyShareHolderV2Array getShareHolders() { - return shareHolders; - } - - /** - * Sets the value of the shareHolders property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyShareHolderV2Array } - * - */ - public void setShareHolders(CreditsafeCompanyShareHolderV2Array value) { - this.shareHolders = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareCapitalStructureV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareCapitalStructureV2Array.java deleted file mode 100644 index 4dde396..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareCapitalStructureV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyShareCapitalStructureV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyShareCapitalStructureV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyShareCapitalStructureV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyShareCapitalStructureV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyShareCapitalStructureV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyShareCapitalStructureV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareHolderV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareHolderV2.java deleted file mode 100644 index 60eac71..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareHolderV2.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyShareHolderV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyShareHolderV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" minOccurs="0"/>
- *         <element name="share_percent" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyShareHolderV2", propOrder = { - -}) -public class CreditsafeCompanyShareHolderV2 { - - protected CreditsafeAddressV2 address; - @XmlElement(name = "share_percent") - protected BigInteger sharePercent; - protected String name; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link CreditsafeAddressV2 } - * - */ - public CreditsafeAddressV2 getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link CreditsafeAddressV2 } - * - */ - public void setAddress(CreditsafeAddressV2 value) { - this.address = value; - } - - /** - * Gets the value of the sharePercent property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getSharePercent() { - return sharePercent; - } - - /** - * Sets the value of the sharePercent property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setSharePercent(BigInteger value) { - this.sharePercent = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareHolderV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareHolderV2Array.java deleted file mode 100644 index 65a4cf8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyShareHolderV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyShareHolderV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyShareHolderV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyShareHolderV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyShareHolderV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyShareHolderV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyShareHolderV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyStatusV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyStatusV2.java deleted file mode 100644 index 6064a5e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyStatusV2.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyStatusV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyStatusV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyStatusV2", propOrder = { - -}) -public class CreditsafeCompanyStatusV2 { - - protected String description; - protected String status; - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyStatusV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyStatusV2Array.java deleted file mode 100644 index 269c306..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyStatusV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyStatusV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyStatusV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyStatusV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyStatusV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyStatusV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyStatusV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanySummaryV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanySummaryV2.java deleted file mode 100644 index 3b3c861..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanySummaryV2.java +++ /dev/null @@ -1,283 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanySummaryV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanySummaryV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_status" type="{http://www.webservices.nl/soap/}CreditsafeCompanyStatusV2" minOccurs="0"/>
- *         <element name="credit_rating" type="{http://www.webservices.nl/soap/}CreditsafeCompanyCreditRatingV2" minOccurs="0"/>
- *         <element name="latest_shareholders_equity_figure" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="latest_turnover_figure" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="main_activity" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivityV2" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="company_registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="business_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanySummaryV2", propOrder = { - -}) -public class CreditsafeCompanySummaryV2 { - - @XmlElement(name = "company_status") - protected CreditsafeCompanyStatusV2 companyStatus; - @XmlElement(name = "credit_rating") - protected CreditsafeCompanyCreditRatingV2 creditRating; - @XmlElement(name = "latest_shareholders_equity_figure") - protected Integer latestShareholdersEquityFigure; - @XmlElement(name = "latest_turnover_figure") - protected Integer latestTurnoverFigure; - @XmlElement(name = "main_activity") - protected CreditsafeCompanyActivityV2 mainActivity; - protected String country; - protected String number; - @XmlElement(name = "company_registration_number") - protected String companyRegistrationNumber; - @XmlElement(name = "business_name") - protected String businessName; - - /** - * Gets the value of the companyStatus property. - * - * @return - * possible object is - * {@link CreditsafeCompanyStatusV2 } - * - */ - public CreditsafeCompanyStatusV2 getCompanyStatus() { - return companyStatus; - } - - /** - * Sets the value of the companyStatus property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyStatusV2 } - * - */ - public void setCompanyStatus(CreditsafeCompanyStatusV2 value) { - this.companyStatus = value; - } - - /** - * Gets the value of the creditRating property. - * - * @return - * possible object is - * {@link CreditsafeCompanyCreditRatingV2 } - * - */ - public CreditsafeCompanyCreditRatingV2 getCreditRating() { - return creditRating; - } - - /** - * Sets the value of the creditRating property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyCreditRatingV2 } - * - */ - public void setCreditRating(CreditsafeCompanyCreditRatingV2 value) { - this.creditRating = value; - } - - /** - * Gets the value of the latestShareholdersEquityFigure property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLatestShareholdersEquityFigure() { - return latestShareholdersEquityFigure; - } - - /** - * Sets the value of the latestShareholdersEquityFigure property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLatestShareholdersEquityFigure(Integer value) { - this.latestShareholdersEquityFigure = value; - } - - /** - * Gets the value of the latestTurnoverFigure property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLatestTurnoverFigure() { - return latestTurnoverFigure; - } - - /** - * Sets the value of the latestTurnoverFigure property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLatestTurnoverFigure(Integer value) { - this.latestTurnoverFigure = value; - } - - /** - * Gets the value of the mainActivity property. - * - * @return - * possible object is - * {@link CreditsafeCompanyActivityV2 } - * - */ - public CreditsafeCompanyActivityV2 getMainActivity() { - return mainActivity; - } - - /** - * Sets the value of the mainActivity property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyActivityV2 } - * - */ - public void setMainActivity(CreditsafeCompanyActivityV2 value) { - this.mainActivity = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the number property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNumber() { - return number; - } - - /** - * Sets the value of the number property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNumber(String value) { - this.number = value; - } - - /** - * Gets the value of the companyRegistrationNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyRegistrationNumber() { - return companyRegistrationNumber; - } - - /** - * Sets the value of the companyRegistrationNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyRegistrationNumber(String value) { - this.companyRegistrationNumber = value; - } - - /** - * Gets the value of the businessName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBusinessName() { - return businessName; - } - - /** - * Sets the value of the businessName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBusinessName(String value) { - this.businessName = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanySummaryV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanySummaryV2Array.java deleted file mode 100644 index 7a5d399..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanySummaryV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanySummaryV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanySummaryV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanySummaryV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanySummaryV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanySummaryV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanySummaryV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdate.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdate.java deleted file mode 100644 index fdd5ff6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdate.java +++ /dev/null @@ -1,126 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeCompanyUpdate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyUpdate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="changes" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="date_last_update" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyUpdate", propOrder = { - -}) -public class CreditsafeCompanyUpdate { - - @XmlElement(name = "company_id", required = true) - protected String companyId; - @XmlElement(required = true) - protected StringArray changes; - @XmlElement(name = "date_last_update", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateLastUpdate; - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - - /** - * Gets the value of the changes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getChanges() { - return changes; - } - - /** - * Sets the value of the changes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setChanges(StringArray value) { - this.changes = value; - } - - /** - * Gets the value of the dateLastUpdate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateLastUpdate() { - return dateLastUpdate; - } - - /** - * Sets the value of the dateLastUpdate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateLastUpdate(XMLGregorianCalendar value) { - this.dateLastUpdate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdateArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdateArray.java deleted file mode 100644 index 5a3808e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdateArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyUpdateArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyUpdateArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyUpdate" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyUpdateArray", propOrder = { - "item" -}) -public class CreditsafeCompanyUpdateArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyUpdate } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdatePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdatePagedResult.java deleted file mode 100644 index c4bc1c9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyUpdatePagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyUpdatePagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyUpdatePagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}CreditsafeCompanyUpdateArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyUpdatePagedResult", propOrder = { - -}) -public class CreditsafeCompanyUpdatePagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected CreditsafeCompanyUpdateArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link CreditsafeCompanyUpdateArray } - * - */ - public CreditsafeCompanyUpdateArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyUpdateArray } - * - */ - public void setResults(CreditsafeCompanyUpdateArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyV2.java deleted file mode 100644 index 90315ce..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyV2.java +++ /dev/null @@ -1,391 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeCompanyV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" minOccurs="0"/>
- *         <element name="creditsafe_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_last_account" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="date_last_change" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="vat_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="office_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyV2", propOrder = { - -}) -public class CreditsafeCompanyV2 { - - protected CreditsafeAddressV2 address; - @XmlElement(name = "creditsafe_number") - protected String creditsafeNumber; - @XmlElement(name = "date_last_account") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateLastAccount; - @XmlElement(name = "date_last_change") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateLastChange; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - @XmlElement(name = "vat_numbers") - protected StringArray vatNumbers; - protected String country; - @XmlElement(name = "registration_number") - protected String registrationNumber; - protected String name; - protected String id; - protected String type; - protected String status; - @XmlElement(name = "office_type") - protected String officeType; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link CreditsafeAddressV2 } - * - */ - public CreditsafeAddressV2 getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link CreditsafeAddressV2 } - * - */ - public void setAddress(CreditsafeAddressV2 value) { - this.address = value; - } - - /** - * Gets the value of the creditsafeNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreditsafeNumber() { - return creditsafeNumber; - } - - /** - * Sets the value of the creditsafeNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreditsafeNumber(String value) { - this.creditsafeNumber = value; - } - - /** - * Gets the value of the dateLastAccount property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateLastAccount() { - return dateLastAccount; - } - - /** - * Sets the value of the dateLastAccount property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateLastAccount(XMLGregorianCalendar value) { - this.dateLastAccount = value; - } - - /** - * Gets the value of the dateLastChange property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateLastChange() { - return dateLastChange; - } - - /** - * Sets the value of the dateLastChange property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateLastChange(XMLGregorianCalendar value) { - this.dateLastChange = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - - /** - * Gets the value of the vatNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getVatNumbers() { - return vatNumbers; - } - - /** - * Sets the value of the vatNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setVatNumbers(StringArray value) { - this.vatNumbers = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the registrationNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistrationNumber() { - return registrationNumber; - } - - /** - * Sets the value of the registrationNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistrationNumber(String value) { - this.registrationNumber = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the officeType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOfficeType() { - return officeType; - } - - /** - * Sets the value of the officeType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOfficeType(String value) { - this.officeType = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyV2Array.java deleted file mode 100644 index e56374a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeCompanyV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeCompanyV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeCompanyV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeCompanyV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeCompanyV2Array", propOrder = { - "item" -}) -public class CreditsafeCompanyV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeCompanyV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDescriptionV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDescriptionV2.java deleted file mode 100644 index 7531400..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDescriptionV2.java +++ /dev/null @@ -1,119 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeDescriptionV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeDescriptionV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeDescriptionV2", propOrder = { - -}) -public class CreditsafeDescriptionV2 { - - protected String code; - protected String description; - protected String value; - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDescriptionV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDescriptionV2Array.java deleted file mode 100644 index 1663847..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDescriptionV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeDescriptionV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeDescriptionV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeDescriptionV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeDescriptionV2Array", propOrder = { - "item" -}) -public class CreditsafeDescriptionV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeDescriptionV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDirector.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDirector.java deleted file mode 100644 index 0475cec..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDirector.java +++ /dev/null @@ -1,205 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeDirector complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeDirector">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="appointment_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="position" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeDirector", propOrder = { - -}) -public class CreditsafeDirector { - - @XmlElement(required = true) - protected String name; - protected String address; - protected String gender; - @XmlElement(name = "appointment_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar appointmentDate; - @XmlElement(name = "date_of_birth") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateOfBirth; - protected String position; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the gender property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGender() { - return gender; - } - - /** - * Sets the value of the gender property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGender(String value) { - this.gender = value; - } - - /** - * Gets the value of the appointmentDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getAppointmentDate() { - return appointmentDate; - } - - /** - * Sets the value of the appointmentDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setAppointmentDate(XMLGregorianCalendar value) { - this.appointmentDate = value; - } - - /** - * Gets the value of the dateOfBirth property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfBirth() { - return dateOfBirth; - } - - /** - * Sets the value of the dateOfBirth property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfBirth(XMLGregorianCalendar value) { - this.dateOfBirth = value; - } - - /** - * Gets the value of the position property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPosition() { - return position; - } - - /** - * Sets the value of the position property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPosition(String value) { - this.position = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDirectorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDirectorArray.java deleted file mode 100644 index 2860a35..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeDirectorArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeDirectorArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeDirectorArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeDirector" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeDirectorArray", propOrder = { - "item" -}) -public class CreditsafeDirectorArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeDirector } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeEmployeeInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeEmployeeInformation.java deleted file mode 100644 index 342904e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeEmployeeInformation.java +++ /dev/null @@ -1,97 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeEmployeeInformation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeEmployeeInformation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
- *         <element name="number_of_employees" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeEmployeeInformation", propOrder = { - -}) -public class CreditsafeEmployeeInformation { - - @XmlSchemaType(name = "unsignedShort") - protected Integer year; - @XmlElement(name = "number_of_employees", required = true) - protected String numberOfEmployees; - - /** - * Gets the value of the year property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setYear(Integer value) { - this.year = value; - } - - /** - * Gets the value of the numberOfEmployees property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNumberOfEmployees() { - return numberOfEmployees; - } - - /** - * Sets the value of the numberOfEmployees property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNumberOfEmployees(String value) { - this.numberOfEmployees = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeEmployeeInformationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeEmployeeInformationArray.java deleted file mode 100644 index 433c46d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeEmployeeInformationArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeEmployeeInformationArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeEmployeeInformationArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeEmployeeInformation" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeEmployeeInformationArray", propOrder = { - "item" -}) -public class CreditsafeEmployeeInformationArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeEmployeeInformation } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeFinancialRatios.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeFinancialRatios.java deleted file mode 100644 index b325821..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeFinancialRatios.java +++ /dev/null @@ -1,420 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeFinancialRatios complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeFinancialRatios">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="pre_tax_profit_margin" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="return_on_capital_employed" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="return_on_total_assets_employed" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="return_on_net_assets_employed" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="sales_or_net_working_capital" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="stock_turnover_ratio" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="debtor_days" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="creditor_days" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="current_ratio" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="liquidity_ratio_or_acid_test" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="current_debt_ratio" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="gearing" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="equity_in_percentage" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="total_debt_ratio" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeFinancialRatios", propOrder = { - -}) -public class CreditsafeFinancialRatios { - - @XmlElement(name = "pre_tax_profit_margin") - protected BigDecimal preTaxProfitMargin; - @XmlElement(name = "return_on_capital_employed") - protected BigDecimal returnOnCapitalEmployed; - @XmlElement(name = "return_on_total_assets_employed") - protected BigDecimal returnOnTotalAssetsEmployed; - @XmlElement(name = "return_on_net_assets_employed") - protected BigDecimal returnOnNetAssetsEmployed; - @XmlElement(name = "sales_or_net_working_capital") - protected BigDecimal salesOrNetWorkingCapital; - @XmlElement(name = "stock_turnover_ratio") - protected BigDecimal stockTurnoverRatio; - @XmlElement(name = "debtor_days") - protected BigDecimal debtorDays; - @XmlElement(name = "creditor_days") - protected BigDecimal creditorDays; - @XmlElement(name = "current_ratio") - protected BigDecimal currentRatio; - @XmlElement(name = "liquidity_ratio_or_acid_test") - protected BigDecimal liquidityRatioOrAcidTest; - @XmlElement(name = "current_debt_ratio") - protected BigDecimal currentDebtRatio; - protected BigDecimal gearing; - @XmlElement(name = "equity_in_percentage") - protected BigDecimal equityInPercentage; - @XmlElement(name = "total_debt_ratio") - protected BigDecimal totalDebtRatio; - - /** - * Gets the value of the preTaxProfitMargin property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPreTaxProfitMargin() { - return preTaxProfitMargin; - } - - /** - * Sets the value of the preTaxProfitMargin property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPreTaxProfitMargin(BigDecimal value) { - this.preTaxProfitMargin = value; - } - - /** - * Gets the value of the returnOnCapitalEmployed property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getReturnOnCapitalEmployed() { - return returnOnCapitalEmployed; - } - - /** - * Sets the value of the returnOnCapitalEmployed property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setReturnOnCapitalEmployed(BigDecimal value) { - this.returnOnCapitalEmployed = value; - } - - /** - * Gets the value of the returnOnTotalAssetsEmployed property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getReturnOnTotalAssetsEmployed() { - return returnOnTotalAssetsEmployed; - } - - /** - * Sets the value of the returnOnTotalAssetsEmployed property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setReturnOnTotalAssetsEmployed(BigDecimal value) { - this.returnOnTotalAssetsEmployed = value; - } - - /** - * Gets the value of the returnOnNetAssetsEmployed property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getReturnOnNetAssetsEmployed() { - return returnOnNetAssetsEmployed; - } - - /** - * Sets the value of the returnOnNetAssetsEmployed property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setReturnOnNetAssetsEmployed(BigDecimal value) { - this.returnOnNetAssetsEmployed = value; - } - - /** - * Gets the value of the salesOrNetWorkingCapital property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSalesOrNetWorkingCapital() { - return salesOrNetWorkingCapital; - } - - /** - * Sets the value of the salesOrNetWorkingCapital property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSalesOrNetWorkingCapital(BigDecimal value) { - this.salesOrNetWorkingCapital = value; - } - - /** - * Gets the value of the stockTurnoverRatio property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getStockTurnoverRatio() { - return stockTurnoverRatio; - } - - /** - * Sets the value of the stockTurnoverRatio property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setStockTurnoverRatio(BigDecimal value) { - this.stockTurnoverRatio = value; - } - - /** - * Gets the value of the debtorDays property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getDebtorDays() { - return debtorDays; - } - - /** - * Sets the value of the debtorDays property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setDebtorDays(BigDecimal value) { - this.debtorDays = value; - } - - /** - * Gets the value of the creditorDays property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getCreditorDays() { - return creditorDays; - } - - /** - * Sets the value of the creditorDays property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setCreditorDays(BigDecimal value) { - this.creditorDays = value; - } - - /** - * Gets the value of the currentRatio property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getCurrentRatio() { - return currentRatio; - } - - /** - * Sets the value of the currentRatio property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setCurrentRatio(BigDecimal value) { - this.currentRatio = value; - } - - /** - * Gets the value of the liquidityRatioOrAcidTest property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLiquidityRatioOrAcidTest() { - return liquidityRatioOrAcidTest; - } - - /** - * Sets the value of the liquidityRatioOrAcidTest property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLiquidityRatioOrAcidTest(BigDecimal value) { - this.liquidityRatioOrAcidTest = value; - } - - /** - * Gets the value of the currentDebtRatio property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getCurrentDebtRatio() { - return currentDebtRatio; - } - - /** - * Sets the value of the currentDebtRatio property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setCurrentDebtRatio(BigDecimal value) { - this.currentDebtRatio = value; - } - - /** - * Gets the value of the gearing property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getGearing() { - return gearing; - } - - /** - * Sets the value of the gearing property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setGearing(BigDecimal value) { - this.gearing = value; - } - - /** - * Gets the value of the equityInPercentage property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getEquityInPercentage() { - return equityInPercentage; - } - - /** - * Sets the value of the equityInPercentage property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setEquityInPercentage(BigDecimal value) { - this.equityInPercentage = value; - } - - /** - * Gets the value of the totalDebtRatio property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTotalDebtRatio() { - return totalDebtRatio; - } - - /** - * Sets the value of the totalDebtRatio property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTotalDebtRatio(BigDecimal value) { - this.totalDebtRatio = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullRequestType.java deleted file mode 100644 index d65437d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullRequestType.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for creditsafeGetReportFullRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="creditsafeGetReportFullRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "creditsafeGetReportFullRequestType", propOrder = { - -}) -public class CreditsafeGetReportFullRequestType { - - @XmlElement(name = "company_id", required = true) - protected String companyId; - @XmlElement(required = true) - protected String language; - @XmlElement(required = true) - protected String document; - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocument(String value) { - this.document = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullResponseType.java deleted file mode 100644 index 8806ec0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for creditsafeGetReportFullResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="creditsafeGetReportFullResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CreditsafeCompanyReportFull"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "creditsafeGetReportFullResponseType", propOrder = { - -}) -public class CreditsafeGetReportFullResponseType { - - @XmlElement(required = true) - protected CreditsafeCompanyReportFull out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CreditsafeCompanyReportFull } - * - */ - public CreditsafeCompanyReportFull getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyReportFull } - * - */ - public void setOut(CreditsafeCompanyReportFull value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullV2RequestType.java deleted file mode 100644 index a5c11a3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullV2RequestType.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for creditsafeGetReportFullV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="creditsafeGetReportFullV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="reason" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "creditsafeGetReportFullV2RequestType", propOrder = { - -}) -public class CreditsafeGetReportFullV2RequestType { - - @XmlElement(name = "company_id", required = true) - protected String companyId; - @XmlElement(required = true) - protected String language; - @XmlElement(required = true) - protected String reason; - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the reason property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReason() { - return reason; - } - - /** - * Sets the value of the reason property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReason(String value) { - this.reason = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullV2ResponseType.java deleted file mode 100644 index 1aee90a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeGetReportFullV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for creditsafeGetReportFullV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="creditsafeGetReportFullV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CreditsafeCompanyReportFullV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "creditsafeGetReportFullV2ResponseType", propOrder = { - -}) -public class CreditsafeGetReportFullV2ResponseType { - - @XmlElement(required = true) - protected CreditsafeCompanyReportFullV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CreditsafeCompanyReportFullV2 } - * - */ - public CreditsafeCompanyReportFullV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyReportFullV2 } - * - */ - public void setOut(CreditsafeCompanyReportFullV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeIndustryQuartilyAnalysis.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeIndustryQuartilyAnalysis.java deleted file mode 100644 index a96ee72..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeIndustryQuartilyAnalysis.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeIndustryQuartilyAnalysis complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeIndustryQuartilyAnalysis">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="payment_expectation_days" type="{http://www.webservices.nl/soap/}CreditsafeQuartiles" minOccurs="0"/>
- *         <element name="day_sales_outstanding" type="{http://www.webservices.nl/soap/}CreditsafeQuartiles" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeIndustryQuartilyAnalysis", propOrder = { - -}) -public class CreditsafeIndustryQuartilyAnalysis { - - @XmlElement(name = "payment_expectation_days") - protected CreditsafeQuartiles paymentExpectationDays; - @XmlElement(name = "day_sales_outstanding") - protected CreditsafeQuartiles daySalesOutstanding; - - /** - * Gets the value of the paymentExpectationDays property. - * - * @return - * possible object is - * {@link CreditsafeQuartiles } - * - */ - public CreditsafeQuartiles getPaymentExpectationDays() { - return paymentExpectationDays; - } - - /** - * Sets the value of the paymentExpectationDays property. - * - * @param value - * allowed object is - * {@link CreditsafeQuartiles } - * - */ - public void setPaymentExpectationDays(CreditsafeQuartiles value) { - this.paymentExpectationDays = value; - } - - /** - * Gets the value of the daySalesOutstanding property. - * - * @return - * possible object is - * {@link CreditsafeQuartiles } - * - */ - public CreditsafeQuartiles getDaySalesOutstanding() { - return daySalesOutstanding; - } - - /** - * Sets the value of the daySalesOutstanding property. - * - * @param value - * allowed object is - * {@link CreditsafeQuartiles } - * - */ - public void setDaySalesOutstanding(CreditsafeQuartiles value) { - this.daySalesOutstanding = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanyBasicInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanyBasicInformation.java deleted file mode 100644 index 060c480..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanyBasicInformation.java +++ /dev/null @@ -1,479 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeLtdCompanyBasicInformation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeLtdCompanyBasicInformation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="business_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="registered_company_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="company_registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="vat_registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="vat_registration_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="dateof_company_registration" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="dateof_starting_operations" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="commercial_court" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="typeof_ownership" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="company_status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="report_currency" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="principal_activity" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivity" minOccurs="0"/>
- *         <element name="contact_address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_telephone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeLtdCompanyBasicInformation", propOrder = { - -}) -public class CreditsafeLtdCompanyBasicInformation { - - @XmlElement(name = "business_name", required = true) - protected String businessName; - @XmlElement(name = "registered_company_name", required = true) - protected String registeredCompanyName; - @XmlElement(name = "company_registration_number") - protected String companyRegistrationNumber; - @XmlElement(required = true) - protected String country; - @XmlElement(name = "vat_registration_number") - protected String vatRegistrationNumber; - @XmlElement(name = "vat_registration_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar vatRegistrationDate; - @XmlElement(name = "dateof_company_registration") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateofCompanyRegistration; - @XmlElement(name = "dateof_starting_operations") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateofStartingOperations; - @XmlElement(name = "commercial_court") - protected String commercialCourt; - @XmlElement(name = "legal_form") - protected String legalForm; - @XmlElement(name = "typeof_ownership") - protected String typeofOwnership; - @XmlElement(name = "company_status") - protected String companyStatus; - @XmlElement(name = "report_currency", required = true) - protected String reportCurrency; - @XmlElement(name = "principal_activity") - protected CreditsafeCompanyActivity principalActivity; - @XmlElement(name = "contact_address", required = true) - protected String contactAddress; - @XmlElement(name = "contact_telephone_number") - protected String contactTelephoneNumber; - - /** - * Gets the value of the businessName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBusinessName() { - return businessName; - } - - /** - * Sets the value of the businessName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBusinessName(String value) { - this.businessName = value; - } - - /** - * Gets the value of the registeredCompanyName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegisteredCompanyName() { - return registeredCompanyName; - } - - /** - * Sets the value of the registeredCompanyName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegisteredCompanyName(String value) { - this.registeredCompanyName = value; - } - - /** - * Gets the value of the companyRegistrationNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyRegistrationNumber() { - return companyRegistrationNumber; - } - - /** - * Sets the value of the companyRegistrationNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyRegistrationNumber(String value) { - this.companyRegistrationNumber = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the vatRegistrationNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVatRegistrationNumber() { - return vatRegistrationNumber; - } - - /** - * Sets the value of the vatRegistrationNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVatRegistrationNumber(String value) { - this.vatRegistrationNumber = value; - } - - /** - * Gets the value of the vatRegistrationDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVatRegistrationDate() { - return vatRegistrationDate; - } - - /** - * Sets the value of the vatRegistrationDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVatRegistrationDate(XMLGregorianCalendar value) { - this.vatRegistrationDate = value; - } - - /** - * Gets the value of the dateofCompanyRegistration property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateofCompanyRegistration() { - return dateofCompanyRegistration; - } - - /** - * Sets the value of the dateofCompanyRegistration property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateofCompanyRegistration(XMLGregorianCalendar value) { - this.dateofCompanyRegistration = value; - } - - /** - * Gets the value of the dateofStartingOperations property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateofStartingOperations() { - return dateofStartingOperations; - } - - /** - * Sets the value of the dateofStartingOperations property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateofStartingOperations(XMLGregorianCalendar value) { - this.dateofStartingOperations = value; - } - - /** - * Gets the value of the commercialCourt property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCommercialCourt() { - return commercialCourt; - } - - /** - * Sets the value of the commercialCourt property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCommercialCourt(String value) { - this.commercialCourt = value; - } - - /** - * Gets the value of the legalForm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalForm() { - return legalForm; - } - - /** - * Sets the value of the legalForm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalForm(String value) { - this.legalForm = value; - } - - /** - * Gets the value of the typeofOwnership property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypeofOwnership() { - return typeofOwnership; - } - - /** - * Sets the value of the typeofOwnership property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypeofOwnership(String value) { - this.typeofOwnership = value; - } - - /** - * Gets the value of the companyStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyStatus() { - return companyStatus; - } - - /** - * Sets the value of the companyStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyStatus(String value) { - this.companyStatus = value; - } - - /** - * Gets the value of the reportCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReportCurrency() { - return reportCurrency; - } - - /** - * Sets the value of the reportCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReportCurrency(String value) { - this.reportCurrency = value; - } - - /** - * Gets the value of the principalActivity property. - * - * @return - * possible object is - * {@link CreditsafeCompanyActivity } - * - */ - public CreditsafeCompanyActivity getPrincipalActivity() { - return principalActivity; - } - - /** - * Sets the value of the principalActivity property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyActivity } - * - */ - public void setPrincipalActivity(CreditsafeCompanyActivity value) { - this.principalActivity = value; - } - - /** - * Gets the value of the contactAddress property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactAddress() { - return contactAddress; - } - - /** - * Sets the value of the contactAddress property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactAddress(String value) { - this.contactAddress = value; - } - - /** - * Gets the value of the contactTelephoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactTelephoneNumber() { - return contactTelephoneNumber; - } - - /** - * Sets the value of the contactTelephoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactTelephoneNumber(String value) { - this.contactTelephoneNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanyIdentification.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanyIdentification.java deleted file mode 100644 index 9818d28..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanyIdentification.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeLtdCompanyIdentification complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeLtdCompanyIdentification">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="basic_information" type="{http://www.webservices.nl/soap/}CreditsafeLtdCompanyBasicInformation"/>
- *         <element name="activities" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivityArray" minOccurs="0"/>
- *         <element name="previous_names" type="{http://www.webservices.nl/soap/}CreditsafeChangedStringArray" minOccurs="0"/>
- *         <element name="previous_legal_forms" type="{http://www.webservices.nl/soap/}CreditsafeChangedStringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeLtdCompanyIdentification", propOrder = { - -}) -public class CreditsafeLtdCompanyIdentification { - - @XmlElement(name = "basic_information", required = true) - protected CreditsafeLtdCompanyBasicInformation basicInformation; - protected CreditsafeCompanyActivityArray activities; - @XmlElement(name = "previous_names") - protected CreditsafeChangedStringArray previousNames; - @XmlElement(name = "previous_legal_forms") - protected CreditsafeChangedStringArray previousLegalForms; - - /** - * Gets the value of the basicInformation property. - * - * @return - * possible object is - * {@link CreditsafeLtdCompanyBasicInformation } - * - */ - public CreditsafeLtdCompanyBasicInformation getBasicInformation() { - return basicInformation; - } - - /** - * Sets the value of the basicInformation property. - * - * @param value - * allowed object is - * {@link CreditsafeLtdCompanyBasicInformation } - * - */ - public void setBasicInformation(CreditsafeLtdCompanyBasicInformation value) { - this.basicInformation = value; - } - - /** - * Gets the value of the activities property. - * - * @return - * possible object is - * {@link CreditsafeCompanyActivityArray } - * - */ - public CreditsafeCompanyActivityArray getActivities() { - return activities; - } - - /** - * Sets the value of the activities property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyActivityArray } - * - */ - public void setActivities(CreditsafeCompanyActivityArray value) { - this.activities = value; - } - - /** - * Gets the value of the previousNames property. - * - * @return - * possible object is - * {@link CreditsafeChangedStringArray } - * - */ - public CreditsafeChangedStringArray getPreviousNames() { - return previousNames; - } - - /** - * Sets the value of the previousNames property. - * - * @param value - * allowed object is - * {@link CreditsafeChangedStringArray } - * - */ - public void setPreviousNames(CreditsafeChangedStringArray value) { - this.previousNames = value; - } - - /** - * Gets the value of the previousLegalForms property. - * - * @return - * possible object is - * {@link CreditsafeChangedStringArray } - * - */ - public CreditsafeChangedStringArray getPreviousLegalForms() { - return previousLegalForms; - } - - /** - * Sets the value of the previousLegalForms property. - * - * @param value - * allowed object is - * {@link CreditsafeChangedStringArray } - * - */ - public void setPreviousLegalForms(CreditsafeChangedStringArray value) { - this.previousLegalForms = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanySummary.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanySummary.java deleted file mode 100644 index 2962b04..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCompanySummary.java +++ /dev/null @@ -1,339 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeLtdCompanySummary complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeLtdCompanySummary">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="business_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="company_registration_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="main_activity" type="{http://www.webservices.nl/soap/}CreditsafeCompanyActivity" minOccurs="0"/>
- *         <element name="company_status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="latest_turnover_figure" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="latest_shareholders_equity_figure" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="credit_rating" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="credit_limit" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="rating_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeLtdCompanySummary", propOrder = { - -}) -public class CreditsafeLtdCompanySummary { - - @XmlElement(name = "business_name", required = true) - protected String businessName; - @XmlElement(required = true) - protected String country; - protected String number; - @XmlElement(name = "company_registration_number") - protected String companyRegistrationNumber; - @XmlElement(name = "main_activity") - protected CreditsafeCompanyActivity mainActivity; - @XmlElement(name = "company_status") - protected String companyStatus; - @XmlElement(name = "latest_turnover_figure") - protected BigDecimal latestTurnoverFigure; - @XmlElement(name = "latest_shareholders_equity_figure") - protected BigDecimal latestShareholdersEquityFigure; - @XmlElement(name = "credit_rating", required = true) - protected String creditRating; - @XmlElement(name = "credit_limit", required = true) - protected String creditLimit; - @XmlElement(name = "rating_description") - protected String ratingDescription; - - /** - * Gets the value of the businessName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBusinessName() { - return businessName; - } - - /** - * Sets the value of the businessName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBusinessName(String value) { - this.businessName = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the number property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNumber() { - return number; - } - - /** - * Sets the value of the number property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNumber(String value) { - this.number = value; - } - - /** - * Gets the value of the companyRegistrationNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyRegistrationNumber() { - return companyRegistrationNumber; - } - - /** - * Sets the value of the companyRegistrationNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyRegistrationNumber(String value) { - this.companyRegistrationNumber = value; - } - - /** - * Gets the value of the mainActivity property. - * - * @return - * possible object is - * {@link CreditsafeCompanyActivity } - * - */ - public CreditsafeCompanyActivity getMainActivity() { - return mainActivity; - } - - /** - * Sets the value of the mainActivity property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyActivity } - * - */ - public void setMainActivity(CreditsafeCompanyActivity value) { - this.mainActivity = value; - } - - /** - * Gets the value of the companyStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyStatus() { - return companyStatus; - } - - /** - * Sets the value of the companyStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyStatus(String value) { - this.companyStatus = value; - } - - /** - * Gets the value of the latestTurnoverFigure property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLatestTurnoverFigure() { - return latestTurnoverFigure; - } - - /** - * Sets the value of the latestTurnoverFigure property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLatestTurnoverFigure(BigDecimal value) { - this.latestTurnoverFigure = value; - } - - /** - * Gets the value of the latestShareholdersEquityFigure property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLatestShareholdersEquityFigure() { - return latestShareholdersEquityFigure; - } - - /** - * Sets the value of the latestShareholdersEquityFigure property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLatestShareholdersEquityFigure(BigDecimal value) { - this.latestShareholdersEquityFigure = value; - } - - /** - * Gets the value of the creditRating property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreditRating() { - return creditRating; - } - - /** - * Sets the value of the creditRating property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreditRating(String value) { - this.creditRating = value; - } - - /** - * Gets the value of the creditLimit property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreditLimit() { - return creditLimit; - } - - /** - * Sets the value of the creditLimit property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreditLimit(String value) { - this.creditLimit = value; - } - - /** - * Gets the value of the ratingDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRatingDescription() { - return ratingDescription; - } - - /** - * Sets the value of the ratingDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRatingDescription(String value) { - this.ratingDescription = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdContactInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdContactInformation.java deleted file mode 100644 index e1f7bb6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdContactInformation.java +++ /dev/null @@ -1,176 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeLtdContactInformation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeLtdContactInformation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="main_address" type="{http://www.webservices.nl/soap/}CreditsafeStreetAddressWithTelephone"/>
- *         <element name="other_addresses" type="{http://www.webservices.nl/soap/}CreditsafeStreetAddressWithTelephoneArray" minOccurs="0"/>
- *         <element name="previous_addresses" type="{http://www.webservices.nl/soap/}CreditsafeStreetAddressArray" minOccurs="0"/>
- *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="websites" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeLtdContactInformation", propOrder = { - -}) -public class CreditsafeLtdContactInformation { - - @XmlElement(name = "main_address", required = true) - protected CreditsafeStreetAddressWithTelephone mainAddress; - @XmlElement(name = "other_addresses") - protected CreditsafeStreetAddressWithTelephoneArray otherAddresses; - @XmlElement(name = "previous_addresses") - protected CreditsafeStreetAddressArray previousAddresses; - @XmlElement(name = "email_addresses") - protected StringArray emailAddresses; - protected StringArray websites; - - /** - * Gets the value of the mainAddress property. - * - * @return - * possible object is - * {@link CreditsafeStreetAddressWithTelephone } - * - */ - public CreditsafeStreetAddressWithTelephone getMainAddress() { - return mainAddress; - } - - /** - * Sets the value of the mainAddress property. - * - * @param value - * allowed object is - * {@link CreditsafeStreetAddressWithTelephone } - * - */ - public void setMainAddress(CreditsafeStreetAddressWithTelephone value) { - this.mainAddress = value; - } - - /** - * Gets the value of the otherAddresses property. - * - * @return - * possible object is - * {@link CreditsafeStreetAddressWithTelephoneArray } - * - */ - public CreditsafeStreetAddressWithTelephoneArray getOtherAddresses() { - return otherAddresses; - } - - /** - * Sets the value of the otherAddresses property. - * - * @param value - * allowed object is - * {@link CreditsafeStreetAddressWithTelephoneArray } - * - */ - public void setOtherAddresses(CreditsafeStreetAddressWithTelephoneArray value) { - this.otherAddresses = value; - } - - /** - * Gets the value of the previousAddresses property. - * - * @return - * possible object is - * {@link CreditsafeStreetAddressArray } - * - */ - public CreditsafeStreetAddressArray getPreviousAddresses() { - return previousAddresses; - } - - /** - * Sets the value of the previousAddresses property. - * - * @param value - * allowed object is - * {@link CreditsafeStreetAddressArray } - * - */ - public void setPreviousAddresses(CreditsafeStreetAddressArray value) { - this.previousAddresses = value; - } - - /** - * Gets the value of the emailAddresses property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getEmailAddresses() { - return emailAddresses; - } - - /** - * Sets the value of the emailAddresses property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setEmailAddresses(StringArray value) { - this.emailAddresses = value; - } - - /** - * Gets the value of the websites property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getWebsites() { - return websites; - } - - /** - * Sets the value of the websites property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setWebsites(StringArray value) { - this.websites = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCreditScore.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCreditScore.java deleted file mode 100644 index 64ad467..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdCreditScore.java +++ /dev/null @@ -1,262 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeLtdCreditScore complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeLtdCreditScore">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="current_credit_rating" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="current_rating_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="current_credit_limit" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="current_contract_limit" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="previous_credit_limit" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="previous_credit_rating" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="previous_rating_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_of_latest_rating_change" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeLtdCreditScore", propOrder = { - -}) -public class CreditsafeLtdCreditScore { - - @XmlElement(name = "current_credit_rating", required = true) - protected String currentCreditRating; - @XmlElement(name = "current_rating_description") - protected String currentRatingDescription; - @XmlElement(name = "current_credit_limit", required = true) - protected String currentCreditLimit; - @XmlElement(name = "current_contract_limit") - protected BigDecimal currentContractLimit; - @XmlElement(name = "previous_credit_limit") - protected String previousCreditLimit; - @XmlElement(name = "previous_credit_rating") - protected String previousCreditRating; - @XmlElement(name = "previous_rating_description") - protected String previousRatingDescription; - @XmlElement(name = "date_of_latest_rating_change") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateOfLatestRatingChange; - - /** - * Gets the value of the currentCreditRating property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCurrentCreditRating() { - return currentCreditRating; - } - - /** - * Sets the value of the currentCreditRating property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCurrentCreditRating(String value) { - this.currentCreditRating = value; - } - - /** - * Gets the value of the currentRatingDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCurrentRatingDescription() { - return currentRatingDescription; - } - - /** - * Sets the value of the currentRatingDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCurrentRatingDescription(String value) { - this.currentRatingDescription = value; - } - - /** - * Gets the value of the currentCreditLimit property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCurrentCreditLimit() { - return currentCreditLimit; - } - - /** - * Sets the value of the currentCreditLimit property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCurrentCreditLimit(String value) { - this.currentCreditLimit = value; - } - - /** - * Gets the value of the currentContractLimit property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getCurrentContractLimit() { - return currentContractLimit; - } - - /** - * Sets the value of the currentContractLimit property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setCurrentContractLimit(BigDecimal value) { - this.currentContractLimit = value; - } - - /** - * Gets the value of the previousCreditLimit property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPreviousCreditLimit() { - return previousCreditLimit; - } - - /** - * Sets the value of the previousCreditLimit property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPreviousCreditLimit(String value) { - this.previousCreditLimit = value; - } - - /** - * Gets the value of the previousCreditRating property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPreviousCreditRating() { - return previousCreditRating; - } - - /** - * Sets the value of the previousCreditRating property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPreviousCreditRating(String value) { - this.previousCreditRating = value; - } - - /** - * Gets the value of the previousRatingDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPreviousRatingDescription() { - return previousRatingDescription; - } - - /** - * Sets the value of the previousRatingDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPreviousRatingDescription(String value) { - this.previousRatingDescription = value; - } - - /** - * Gets the value of the dateOfLatestRatingChange property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfLatestRatingChange() { - return dateOfLatestRatingChange; - } - - /** - * Sets the value of the dateOfLatestRatingChange property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfLatestRatingChange(XMLGregorianCalendar value) { - this.dateOfLatestRatingChange = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdDirectors.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdDirectors.java deleted file mode 100644 index a13d9ed..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdDirectors.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeLtdDirectors complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeLtdDirectors">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="current_directors" type="{http://www.webservices.nl/soap/}CreditsafeDirectorArray" minOccurs="0"/>
- *         <element name="previous_directors" type="{http://www.webservices.nl/soap/}CreditsafePreviousDirectorArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeLtdDirectors", propOrder = { - -}) -public class CreditsafeLtdDirectors { - - @XmlElement(name = "current_directors") - protected CreditsafeDirectorArray currentDirectors; - @XmlElement(name = "previous_directors") - protected CreditsafePreviousDirectorArray previousDirectors; - - /** - * Gets the value of the currentDirectors property. - * - * @return - * possible object is - * {@link CreditsafeDirectorArray } - * - */ - public CreditsafeDirectorArray getCurrentDirectors() { - return currentDirectors; - } - - /** - * Sets the value of the currentDirectors property. - * - * @param value - * allowed object is - * {@link CreditsafeDirectorArray } - * - */ - public void setCurrentDirectors(CreditsafeDirectorArray value) { - this.currentDirectors = value; - } - - /** - * Gets the value of the previousDirectors property. - * - * @return - * possible object is - * {@link CreditsafePreviousDirectorArray } - * - */ - public CreditsafePreviousDirectorArray getPreviousDirectors() { - return previousDirectors; - } - - /** - * Sets the value of the previousDirectors property. - * - * @param value - * allowed object is - * {@link CreditsafePreviousDirectorArray } - * - */ - public void setPreviousDirectors(CreditsafePreviousDirectorArray value) { - this.previousDirectors = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdFinancialStatement.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdFinancialStatement.java deleted file mode 100644 index 0f74d73..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdFinancialStatement.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeLtdFinancialStatement complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeLtdFinancialStatement">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="profit_and_loss" type="{http://www.webservices.nl/soap/}CreditsafeProfitAndLossFigures" minOccurs="0"/>
- *         <element name="balance_sheet" type="{http://www.webservices.nl/soap/}CreditsafeBalanceSheet" minOccurs="0"/>
- *         <element name="other_financials" type="{http://www.webservices.nl/soap/}CreditsafeOtherFinancials" minOccurs="0"/>
- *         <element name="ratios" type="{http://www.webservices.nl/soap/}CreditsafeFinancialRatios" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeLtdFinancialStatement", propOrder = { - -}) -public class CreditsafeLtdFinancialStatement { - - @XmlElement(name = "profit_and_loss") - protected CreditsafeProfitAndLossFigures profitAndLoss; - @XmlElement(name = "balance_sheet") - protected CreditsafeBalanceSheet balanceSheet; - @XmlElement(name = "other_financials") - protected CreditsafeOtherFinancials otherFinancials; - protected CreditsafeFinancialRatios ratios; - - /** - * Gets the value of the profitAndLoss property. - * - * @return - * possible object is - * {@link CreditsafeProfitAndLossFigures } - * - */ - public CreditsafeProfitAndLossFigures getProfitAndLoss() { - return profitAndLoss; - } - - /** - * Sets the value of the profitAndLoss property. - * - * @param value - * allowed object is - * {@link CreditsafeProfitAndLossFigures } - * - */ - public void setProfitAndLoss(CreditsafeProfitAndLossFigures value) { - this.profitAndLoss = value; - } - - /** - * Gets the value of the balanceSheet property. - * - * @return - * possible object is - * {@link CreditsafeBalanceSheet } - * - */ - public CreditsafeBalanceSheet getBalanceSheet() { - return balanceSheet; - } - - /** - * Sets the value of the balanceSheet property. - * - * @param value - * allowed object is - * {@link CreditsafeBalanceSheet } - * - */ - public void setBalanceSheet(CreditsafeBalanceSheet value) { - this.balanceSheet = value; - } - - /** - * Gets the value of the otherFinancials property. - * - * @return - * possible object is - * {@link CreditsafeOtherFinancials } - * - */ - public CreditsafeOtherFinancials getOtherFinancials() { - return otherFinancials; - } - - /** - * Sets the value of the otherFinancials property. - * - * @param value - * allowed object is - * {@link CreditsafeOtherFinancials } - * - */ - public void setOtherFinancials(CreditsafeOtherFinancials value) { - this.otherFinancials = value; - } - - /** - * Gets the value of the ratios property. - * - * @return - * possible object is - * {@link CreditsafeFinancialRatios } - * - */ - public CreditsafeFinancialRatios getRatios() { - return ratios; - } - - /** - * Sets the value of the ratios property. - * - * @param value - * allowed object is - * {@link CreditsafeFinancialRatios } - * - */ - public void setRatios(CreditsafeFinancialRatios value) { - this.ratios = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdFinancialStatementArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdFinancialStatementArray.java deleted file mode 100644 index cb7343d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdFinancialStatementArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeLtdFinancialStatementArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeLtdFinancialStatementArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeLtdFinancialStatement" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeLtdFinancialStatementArray", propOrder = { - "item" -}) -public class CreditsafeLtdFinancialStatementArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeLtdFinancialStatement } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdGroupStructure.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdGroupStructure.java deleted file mode 100644 index fcd66e4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdGroupStructure.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeLtdGroupStructure complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeLtdGroupStructure">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="ultimate_parent" type="{http://www.webservices.nl/soap/}CreditsafeCompanyListEntry" minOccurs="0"/>
- *         <element name="immediate_parent" type="{http://www.webservices.nl/soap/}CreditsafeCompanyListEntry" minOccurs="0"/>
- *         <element name="subsidiary_companies" type="{http://www.webservices.nl/soap/}CreditsafeCompanyListEntryArray" minOccurs="0"/>
- *         <element name="affiliated_companies" type="{http://www.webservices.nl/soap/}CreditsafeCompanyListEntryArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeLtdGroupStructure", propOrder = { - -}) -public class CreditsafeLtdGroupStructure { - - @XmlElement(name = "ultimate_parent") - protected CreditsafeCompanyListEntry ultimateParent; - @XmlElement(name = "immediate_parent") - protected CreditsafeCompanyListEntry immediateParent; - @XmlElement(name = "subsidiary_companies") - protected CreditsafeCompanyListEntryArray subsidiaryCompanies; - @XmlElement(name = "affiliated_companies") - protected CreditsafeCompanyListEntryArray affiliatedCompanies; - - /** - * Gets the value of the ultimateParent property. - * - * @return - * possible object is - * {@link CreditsafeCompanyListEntry } - * - */ - public CreditsafeCompanyListEntry getUltimateParent() { - return ultimateParent; - } - - /** - * Sets the value of the ultimateParent property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyListEntry } - * - */ - public void setUltimateParent(CreditsafeCompanyListEntry value) { - this.ultimateParent = value; - } - - /** - * Gets the value of the immediateParent property. - * - * @return - * possible object is - * {@link CreditsafeCompanyListEntry } - * - */ - public CreditsafeCompanyListEntry getImmediateParent() { - return immediateParent; - } - - /** - * Sets the value of the immediateParent property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyListEntry } - * - */ - public void setImmediateParent(CreditsafeCompanyListEntry value) { - this.immediateParent = value; - } - - /** - * Gets the value of the subsidiaryCompanies property. - * - * @return - * possible object is - * {@link CreditsafeCompanyListEntryArray } - * - */ - public CreditsafeCompanyListEntryArray getSubsidiaryCompanies() { - return subsidiaryCompanies; - } - - /** - * Sets the value of the subsidiaryCompanies property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyListEntryArray } - * - */ - public void setSubsidiaryCompanies(CreditsafeCompanyListEntryArray value) { - this.subsidiaryCompanies = value; - } - - /** - * Gets the value of the affiliatedCompanies property. - * - * @return - * possible object is - * {@link CreditsafeCompanyListEntryArray } - * - */ - public CreditsafeCompanyListEntryArray getAffiliatedCompanies() { - return affiliatedCompanies; - } - - /** - * Sets the value of the affiliatedCompanies property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyListEntryArray } - * - */ - public void setAffiliatedCompanies(CreditsafeCompanyListEntryArray value) { - this.affiliatedCompanies = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdOtherInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdOtherInformation.java deleted file mode 100644 index 60e45a8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdOtherInformation.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeLtdOtherInformation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeLtdOtherInformation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bankers" type="{http://www.webservices.nl/soap/}CreditsafeBankerArray" minOccurs="0"/>
- *         <element name="advisors" type="{http://www.webservices.nl/soap/}CreditsafeAdvisorArray" minOccurs="0"/>
- *         <element name="employees_information" type="{http://www.webservices.nl/soap/}CreditsafeEmployeeInformationArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeLtdOtherInformation", propOrder = { - -}) -public class CreditsafeLtdOtherInformation { - - protected CreditsafeBankerArray bankers; - protected CreditsafeAdvisorArray advisors; - @XmlElement(name = "employees_information") - protected CreditsafeEmployeeInformationArray employeesInformation; - - /** - * Gets the value of the bankers property. - * - * @return - * possible object is - * {@link CreditsafeBankerArray } - * - */ - public CreditsafeBankerArray getBankers() { - return bankers; - } - - /** - * Sets the value of the bankers property. - * - * @param value - * allowed object is - * {@link CreditsafeBankerArray } - * - */ - public void setBankers(CreditsafeBankerArray value) { - this.bankers = value; - } - - /** - * Gets the value of the advisors property. - * - * @return - * possible object is - * {@link CreditsafeAdvisorArray } - * - */ - public CreditsafeAdvisorArray getAdvisors() { - return advisors; - } - - /** - * Sets the value of the advisors property. - * - * @param value - * allowed object is - * {@link CreditsafeAdvisorArray } - * - */ - public void setAdvisors(CreditsafeAdvisorArray value) { - this.advisors = value; - } - - /** - * Gets the value of the employeesInformation property. - * - * @return - * possible object is - * {@link CreditsafeEmployeeInformationArray } - * - */ - public CreditsafeEmployeeInformationArray getEmployeesInformation() { - return employeesInformation; - } - - /** - * Sets the value of the employeesInformation property. - * - * @param value - * allowed object is - * {@link CreditsafeEmployeeInformationArray } - * - */ - public void setEmployeesInformation(CreditsafeEmployeeInformationArray value) { - this.employeesInformation = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdShareCapitalStructure.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdShareCapitalStructure.java deleted file mode 100644 index adb52d7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeLtdShareCapitalStructure.java +++ /dev/null @@ -1,124 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeLtdShareCapitalStructure complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeLtdShareCapitalStructure">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nominal_share_capital" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="issued_share_capital" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="share_holders" type="{http://www.webservices.nl/soap/}CreditsafeShareHolderArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeLtdShareCapitalStructure", propOrder = { - -}) -public class CreditsafeLtdShareCapitalStructure { - - @XmlElement(name = "nominal_share_capital") - protected BigDecimal nominalShareCapital; - @XmlElement(name = "issued_share_capital") - protected BigDecimal issuedShareCapital; - @XmlElement(name = "share_holders") - protected CreditsafeShareHolderArray shareHolders; - - /** - * Gets the value of the nominalShareCapital property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getNominalShareCapital() { - return nominalShareCapital; - } - - /** - * Sets the value of the nominalShareCapital property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setNominalShareCapital(BigDecimal value) { - this.nominalShareCapital = value; - } - - /** - * Gets the value of the issuedShareCapital property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getIssuedShareCapital() { - return issuedShareCapital; - } - - /** - * Sets the value of the issuedShareCapital property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setIssuedShareCapital(BigDecimal value) { - this.issuedShareCapital = value; - } - - /** - * Gets the value of the shareHolders property. - * - * @return - * possible object is - * {@link CreditsafeShareHolderArray } - * - */ - public CreditsafeShareHolderArray getShareHolders() { - return shareHolders; - } - - /** - * Sets the value of the shareHolders property. - * - * @param value - * allowed object is - * {@link CreditsafeShareHolderArray } - * - */ - public void setShareHolders(CreditsafeShareHolderArray value) { - this.shareHolders = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorAddCompanyRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorAddCompanyRequestType.java deleted file mode 100644 index f80c7c3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorAddCompanyRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for creditsafeMonitorAddCompanyRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="creditsafeMonitorAddCompanyRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "creditsafeMonitorAddCompanyRequestType", propOrder = { - -}) -public class CreditsafeMonitorAddCompanyRequestType { - - @XmlElement(name = "company_id", required = true) - protected String companyId; - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorAddCompanyResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorAddCompanyResponseType.java deleted file mode 100644 index 916ddf0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorAddCompanyResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for creditsafeMonitorAddCompanyResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="creditsafeMonitorAddCompanyResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "creditsafeMonitorAddCompanyResponseType") -public class CreditsafeMonitorAddCompanyResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorGetUpdatedCompaniesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorGetUpdatedCompaniesRequestType.java deleted file mode 100644 index b775a5a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorGetUpdatedCompaniesRequestType.java +++ /dev/null @@ -1,90 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for creditsafeMonitorGetUpdatedCompaniesRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="creditsafeMonitorGetUpdatedCompaniesRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "creditsafeMonitorGetUpdatedCompaniesRequestType", propOrder = { - -}) -public class CreditsafeMonitorGetUpdatedCompaniesRequestType { - - @XmlElement(name = "changed_since", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar changedSince; - protected int page; - - /** - * Gets the value of the changedSince property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getChangedSince() { - return changedSince; - } - - /** - * Sets the value of the changedSince property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setChangedSince(XMLGregorianCalendar value) { - this.changedSince = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorGetUpdatedCompaniesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorGetUpdatedCompaniesResponseType.java deleted file mode 100644 index 169f13e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorGetUpdatedCompaniesResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for creditsafeMonitorGetUpdatedCompaniesResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="creditsafeMonitorGetUpdatedCompaniesResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CreditsafeCompanyUpdatePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "creditsafeMonitorGetUpdatedCompaniesResponseType", propOrder = { - -}) -public class CreditsafeMonitorGetUpdatedCompaniesResponseType { - - @XmlElement(required = true) - protected CreditsafeCompanyUpdatePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CreditsafeCompanyUpdatePagedResult } - * - */ - public CreditsafeCompanyUpdatePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyUpdatePagedResult } - * - */ - public void setOut(CreditsafeCompanyUpdatePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorRemoveCompanyRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorRemoveCompanyRequestType.java deleted file mode 100644 index 74cdfe1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorRemoveCompanyRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for creditsafeMonitorRemoveCompanyRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="creditsafeMonitorRemoveCompanyRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "creditsafeMonitorRemoveCompanyRequestType", propOrder = { - -}) -public class CreditsafeMonitorRemoveCompanyRequestType { - - @XmlElement(name = "company_id", required = true) - protected String companyId; - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorRemoveCompanyResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorRemoveCompanyResponseType.java deleted file mode 100644 index 470791d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeMonitorRemoveCompanyResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for creditsafeMonitorRemoveCompanyResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="creditsafeMonitorRemoveCompanyResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "creditsafeMonitorRemoveCompanyResponseType") -public class CreditsafeMonitorRemoveCompanyResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlAdditionalInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlAdditionalInformation.java deleted file mode 100644 index addb688..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlAdditionalInformation.java +++ /dev/null @@ -1,176 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeNlAdditionalInformation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeNlAdditionalInformation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="negative_information" type="{http://www.webservices.nl/soap/}CreditsafeNlNegativeInformation" minOccurs="0"/>
- *         <element name="misc" type="{http://www.webservices.nl/soap/}CreditsafeNlMisc" minOccurs="0"/>
- *         <element name="industry_quartile_analysis" type="{http://www.webservices.nl/soap/}CreditsafeIndustryQuartilyAnalysis" minOccurs="0"/>
- *         <element name="payment_expectations_summary" type="{http://www.webservices.nl/soap/}CreditsafeNlPaymentExpectationsSummary" minOccurs="0"/>
- *         <element name="letters_of_liability_information_403" type="{http://www.webservices.nl/soap/}CreditsafeNlLettersOfLiabilityInformation403" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeNlAdditionalInformation", propOrder = { - -}) -public class CreditsafeNlAdditionalInformation { - - @XmlElement(name = "negative_information") - protected CreditsafeNlNegativeInformation negativeInformation; - protected CreditsafeNlMisc misc; - @XmlElement(name = "industry_quartile_analysis") - protected CreditsafeIndustryQuartilyAnalysis industryQuartileAnalysis; - @XmlElement(name = "payment_expectations_summary") - protected CreditsafeNlPaymentExpectationsSummary paymentExpectationsSummary; - @XmlElement(name = "letters_of_liability_information_403") - protected CreditsafeNlLettersOfLiabilityInformation403 lettersOfLiabilityInformation403; - - /** - * Gets the value of the negativeInformation property. - * - * @return - * possible object is - * {@link CreditsafeNlNegativeInformation } - * - */ - public CreditsafeNlNegativeInformation getNegativeInformation() { - return negativeInformation; - } - - /** - * Sets the value of the negativeInformation property. - * - * @param value - * allowed object is - * {@link CreditsafeNlNegativeInformation } - * - */ - public void setNegativeInformation(CreditsafeNlNegativeInformation value) { - this.negativeInformation = value; - } - - /** - * Gets the value of the misc property. - * - * @return - * possible object is - * {@link CreditsafeNlMisc } - * - */ - public CreditsafeNlMisc getMisc() { - return misc; - } - - /** - * Sets the value of the misc property. - * - * @param value - * allowed object is - * {@link CreditsafeNlMisc } - * - */ - public void setMisc(CreditsafeNlMisc value) { - this.misc = value; - } - - /** - * Gets the value of the industryQuartileAnalysis property. - * - * @return - * possible object is - * {@link CreditsafeIndustryQuartilyAnalysis } - * - */ - public CreditsafeIndustryQuartilyAnalysis getIndustryQuartileAnalysis() { - return industryQuartileAnalysis; - } - - /** - * Sets the value of the industryQuartileAnalysis property. - * - * @param value - * allowed object is - * {@link CreditsafeIndustryQuartilyAnalysis } - * - */ - public void setIndustryQuartileAnalysis(CreditsafeIndustryQuartilyAnalysis value) { - this.industryQuartileAnalysis = value; - } - - /** - * Gets the value of the paymentExpectationsSummary property. - * - * @return - * possible object is - * {@link CreditsafeNlPaymentExpectationsSummary } - * - */ - public CreditsafeNlPaymentExpectationsSummary getPaymentExpectationsSummary() { - return paymentExpectationsSummary; - } - - /** - * Sets the value of the paymentExpectationsSummary property. - * - * @param value - * allowed object is - * {@link CreditsafeNlPaymentExpectationsSummary } - * - */ - public void setPaymentExpectationsSummary(CreditsafeNlPaymentExpectationsSummary value) { - this.paymentExpectationsSummary = value; - } - - /** - * Gets the value of the lettersOfLiabilityInformation403 property. - * - * @return - * possible object is - * {@link CreditsafeNlLettersOfLiabilityInformation403 } - * - */ - public CreditsafeNlLettersOfLiabilityInformation403 getLettersOfLiabilityInformation403() { - return lettersOfLiabilityInformation403; - } - - /** - * Sets the value of the lettersOfLiabilityInformation403 property. - * - * @param value - * allowed object is - * {@link CreditsafeNlLettersOfLiabilityInformation403 } - * - */ - public void setLettersOfLiabilityInformation403(CreditsafeNlLettersOfLiabilityInformation403 value) { - this.lettersOfLiabilityInformation403 = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtData.java deleted file mode 100644 index c9cfc8c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtData.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeNlCourtData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeNlCourtData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="facts" type="{http://www.webservices.nl/soap/}CreditsafeNlCourtDataFacts" minOccurs="0"/>
- *         <element name="receiver_details" type="{http://www.webservices.nl/soap/}CreditsafeNlCourtDataReceiver" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeNlCourtData", propOrder = { - -}) -public class CreditsafeNlCourtData { - - protected CreditsafeNlCourtDataFacts facts; - @XmlElement(name = "receiver_details") - protected CreditsafeNlCourtDataReceiver receiverDetails; - - /** - * Gets the value of the facts property. - * - * @return - * possible object is - * {@link CreditsafeNlCourtDataFacts } - * - */ - public CreditsafeNlCourtDataFacts getFacts() { - return facts; - } - - /** - * Sets the value of the facts property. - * - * @param value - * allowed object is - * {@link CreditsafeNlCourtDataFacts } - * - */ - public void setFacts(CreditsafeNlCourtDataFacts value) { - this.facts = value; - } - - /** - * Gets the value of the receiverDetails property. - * - * @return - * possible object is - * {@link CreditsafeNlCourtDataReceiver } - * - */ - public CreditsafeNlCourtDataReceiver getReceiverDetails() { - return receiverDetails; - } - - /** - * Sets the value of the receiverDetails property. - * - * @param value - * allowed object is - * {@link CreditsafeNlCourtDataReceiver } - * - */ - public void setReceiverDetails(CreditsafeNlCourtDataReceiver value) { - this.receiverDetails = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtDataFacts.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtDataFacts.java deleted file mode 100644 index 237d021..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtDataFacts.java +++ /dev/null @@ -1,125 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeNlCourtDataFacts complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeNlCourtDataFacts">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="court_action" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="date_of_bankruptcy" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="details" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeNlCourtDataFacts", propOrder = { - -}) -public class CreditsafeNlCourtDataFacts { - - @XmlElement(name = "court_action") - protected Boolean courtAction; - @XmlElement(name = "date_of_bankruptcy") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateOfBankruptcy; - protected String details; - - /** - * Gets the value of the courtAction property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isCourtAction() { - return courtAction; - } - - /** - * Sets the value of the courtAction property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setCourtAction(Boolean value) { - this.courtAction = value; - } - - /** - * Gets the value of the dateOfBankruptcy property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfBankruptcy() { - return dateOfBankruptcy; - } - - /** - * Sets the value of the dateOfBankruptcy property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfBankruptcy(XMLGregorianCalendar value) { - this.dateOfBankruptcy = value; - } - - /** - * Gets the value of the details property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDetails() { - return details; - } - - /** - * Sets the value of the details property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDetails(String value) { - this.details = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtDataReceiver.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtDataReceiver.java deleted file mode 100644 index 877c8e5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlCourtDataReceiver.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeNlCourtDataReceiver complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeNlCourtDataReceiver">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeNlCourtDataReceiver", propOrder = { - -}) -public class CreditsafeNlCourtDataReceiver { - - protected String name; - protected String address; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiability.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiability.java deleted file mode 100644 index d1e17c1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiability.java +++ /dev/null @@ -1,156 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeNlLettersOfLiability complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeNlLettersOfLiability">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="start_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="submitted_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="removal_submitted_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="removal_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeNlLettersOfLiability", propOrder = { - -}) -public class CreditsafeNlLettersOfLiability { - - @XmlElement(name = "start_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar startDate; - @XmlElement(name = "submitted_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar submittedDate; - @XmlElement(name = "removal_submitted_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar removalSubmittedDate; - @XmlElement(name = "removal_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar removalDate; - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStartDate(XMLGregorianCalendar value) { - this.startDate = value; - } - - /** - * Gets the value of the submittedDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSubmittedDate() { - return submittedDate; - } - - /** - * Sets the value of the submittedDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSubmittedDate(XMLGregorianCalendar value) { - this.submittedDate = value; - } - - /** - * Gets the value of the removalSubmittedDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getRemovalSubmittedDate() { - return removalSubmittedDate; - } - - /** - * Sets the value of the removalSubmittedDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setRemovalSubmittedDate(XMLGregorianCalendar value) { - this.removalSubmittedDate = value; - } - - /** - * Gets the value of the removalDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getRemovalDate() { - return removalDate; - } - - /** - * Sets the value of the removalDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setRemovalDate(XMLGregorianCalendar value) { - this.removalDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiabilityArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiabilityArray.java deleted file mode 100644 index 9540488..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiabilityArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeNlLettersOfLiabilityArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeNlLettersOfLiabilityArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeNlLettersOfLiability" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeNlLettersOfLiabilityArray", propOrder = { - "item" -}) -public class CreditsafeNlLettersOfLiabilityArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeNlLettersOfLiability } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiabilityInformation403.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiabilityInformation403.java deleted file mode 100644 index 4ce99a8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlLettersOfLiabilityInformation403.java +++ /dev/null @@ -1,209 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeNlLettersOfLiabilityInformation403 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeNlLettersOfLiabilityInformation403">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="financial_year" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="company_number" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" minOccurs="0"/>
- *         <element name="date_submitted" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="letters_of_liability" type="{http://www.webservices.nl/soap/}CreditsafeNlLettersOfLiabilityArray" minOccurs="0"/>
- *         <element name="letters_of_liability_2nd_parent" type="{http://www.webservices.nl/soap/}CreditsafeNlLettersOfLiabilityArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeNlLettersOfLiabilityInformation403", propOrder = { - -}) -public class CreditsafeNlLettersOfLiabilityInformation403 { - - @XmlElement(name = "financial_year") - @XmlSchemaType(name = "unsignedInt") - protected Long financialYear; - @XmlElement(name = "company_name") - protected String companyName; - @XmlElement(name = "company_number") - @XmlSchemaType(name = "unsignedInt") - protected Long companyNumber; - @XmlElement(name = "date_submitted") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateSubmitted; - @XmlElement(name = "letters_of_liability") - protected CreditsafeNlLettersOfLiabilityArray lettersOfLiability; - @XmlElement(name = "letters_of_liability_2nd_parent") - protected CreditsafeNlLettersOfLiabilityArray lettersOfLiability2NdParent; - - /** - * Gets the value of the financialYear property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getFinancialYear() { - return financialYear; - } - - /** - * Sets the value of the financialYear property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setFinancialYear(Long value) { - this.financialYear = value; - } - - /** - * Gets the value of the companyName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyName() { - return companyName; - } - - /** - * Sets the value of the companyName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyName(String value) { - this.companyName = value; - } - - /** - * Gets the value of the companyNumber property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getCompanyNumber() { - return companyNumber; - } - - /** - * Sets the value of the companyNumber property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setCompanyNumber(Long value) { - this.companyNumber = value; - } - - /** - * Gets the value of the dateSubmitted property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateSubmitted() { - return dateSubmitted; - } - - /** - * Sets the value of the dateSubmitted property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateSubmitted(XMLGregorianCalendar value) { - this.dateSubmitted = value; - } - - /** - * Gets the value of the lettersOfLiability property. - * - * @return - * possible object is - * {@link CreditsafeNlLettersOfLiabilityArray } - * - */ - public CreditsafeNlLettersOfLiabilityArray getLettersOfLiability() { - return lettersOfLiability; - } - - /** - * Sets the value of the lettersOfLiability property. - * - * @param value - * allowed object is - * {@link CreditsafeNlLettersOfLiabilityArray } - * - */ - public void setLettersOfLiability(CreditsafeNlLettersOfLiabilityArray value) { - this.lettersOfLiability = value; - } - - /** - * Gets the value of the lettersOfLiability2NdParent property. - * - * @return - * possible object is - * {@link CreditsafeNlLettersOfLiabilityArray } - * - */ - public CreditsafeNlLettersOfLiabilityArray getLettersOfLiability2NdParent() { - return lettersOfLiability2NdParent; - } - - /** - * Sets the value of the lettersOfLiability2NdParent property. - * - * @param value - * allowed object is - * {@link CreditsafeNlLettersOfLiabilityArray } - * - */ - public void setLettersOfLiability2NdParent(CreditsafeNlLettersOfLiabilityArray value) { - this.lettersOfLiability2NdParent = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlMisc.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlMisc.java deleted file mode 100644 index 675601a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlMisc.java +++ /dev/null @@ -1,124 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeNlMisc complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeNlMisc">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="ceased_trading_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="exporter" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="importer" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeNlMisc", propOrder = { - -}) -public class CreditsafeNlMisc { - - @XmlElement(name = "ceased_trading_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar ceasedTradingDate; - protected Boolean exporter; - protected Boolean importer; - - /** - * Gets the value of the ceasedTradingDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getCeasedTradingDate() { - return ceasedTradingDate; - } - - /** - * Sets the value of the ceasedTradingDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setCeasedTradingDate(XMLGregorianCalendar value) { - this.ceasedTradingDate = value; - } - - /** - * Gets the value of the exporter property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isExporter() { - return exporter; - } - - /** - * Sets the value of the exporter property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setExporter(Boolean value) { - this.exporter = value; - } - - /** - * Gets the value of the importer property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isImporter() { - return importer; - } - - /** - * Sets the value of the importer property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setImporter(Boolean value) { - this.importer = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlNegativeInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlNegativeInformation.java deleted file mode 100644 index 2b63052..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlNegativeInformation.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeNlNegativeInformation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeNlNegativeInformation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="court_data" type="{http://www.webservices.nl/soap/}CreditsafeNlCourtData" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeNlNegativeInformation", propOrder = { - -}) -public class CreditsafeNlNegativeInformation { - - @XmlElement(name = "court_data") - protected CreditsafeNlCourtData courtData; - - /** - * Gets the value of the courtData property. - * - * @return - * possible object is - * {@link CreditsafeNlCourtData } - * - */ - public CreditsafeNlCourtData getCourtData() { - return courtData; - } - - /** - * Sets the value of the courtData property. - * - * @param value - * allowed object is - * {@link CreditsafeNlCourtData } - * - */ - public void setCourtData(CreditsafeNlCourtData value) { - this.courtData = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlPaymentExpectationsSummary.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlPaymentExpectationsSummary.java deleted file mode 100644 index a8e500a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeNlPaymentExpectationsSummary.java +++ /dev/null @@ -1,178 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeNlPaymentExpectationsSummary complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeNlPaymentExpectationsSummary">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="suspension_of_payments_mora" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="payment_expectation_days" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="day_sales_outstanding" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="industry_average_payment_expectation_days" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="industry_average_day_sales_outstanding" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeNlPaymentExpectationsSummary", propOrder = { - -}) -public class CreditsafeNlPaymentExpectationsSummary { - - @XmlElement(name = "suspension_of_payments_mora") - protected Boolean suspensionOfPaymentsMora; - @XmlElement(name = "payment_expectation_days") - protected BigDecimal paymentExpectationDays; - @XmlElement(name = "day_sales_outstanding") - protected BigDecimal daySalesOutstanding; - @XmlElement(name = "industry_average_payment_expectation_days") - protected BigDecimal industryAveragePaymentExpectationDays; - @XmlElement(name = "industry_average_day_sales_outstanding") - protected BigDecimal industryAverageDaySalesOutstanding; - - /** - * Gets the value of the suspensionOfPaymentsMora property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isSuspensionOfPaymentsMora() { - return suspensionOfPaymentsMora; - } - - /** - * Sets the value of the suspensionOfPaymentsMora property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setSuspensionOfPaymentsMora(Boolean value) { - this.suspensionOfPaymentsMora = value; - } - - /** - * Gets the value of the paymentExpectationDays property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPaymentExpectationDays() { - return paymentExpectationDays; - } - - /** - * Sets the value of the paymentExpectationDays property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPaymentExpectationDays(BigDecimal value) { - this.paymentExpectationDays = value; - } - - /** - * Gets the value of the daySalesOutstanding property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getDaySalesOutstanding() { - return daySalesOutstanding; - } - - /** - * Sets the value of the daySalesOutstanding property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setDaySalesOutstanding(BigDecimal value) { - this.daySalesOutstanding = value; - } - - /** - * Gets the value of the industryAveragePaymentExpectationDays property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getIndustryAveragePaymentExpectationDays() { - return industryAveragePaymentExpectationDays; - } - - /** - * Sets the value of the industryAveragePaymentExpectationDays property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setIndustryAveragePaymentExpectationDays(BigDecimal value) { - this.industryAveragePaymentExpectationDays = value; - } - - /** - * Gets the value of the industryAverageDaySalesOutstanding property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getIndustryAverageDaySalesOutstanding() { - return industryAverageDaySalesOutstanding; - } - - /** - * Sets the value of the industryAverageDaySalesOutstanding property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setIndustryAverageDaySalesOutstanding(BigDecimal value) { - this.industryAverageDaySalesOutstanding = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeOtherFinancials.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeOtherFinancials.java deleted file mode 100644 index 706b47e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeOtherFinancials.java +++ /dev/null @@ -1,124 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeOtherFinancials complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeOtherFinancials">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="contingent_liabilities" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="working_capital" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="net_worth" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeOtherFinancials", propOrder = { - -}) -public class CreditsafeOtherFinancials { - - @XmlElement(name = "contingent_liabilities") - protected String contingentLiabilities; - @XmlElement(name = "working_capital") - protected BigDecimal workingCapital; - @XmlElement(name = "net_worth") - protected BigDecimal netWorth; - - /** - * Gets the value of the contingentLiabilities property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContingentLiabilities() { - return contingentLiabilities; - } - - /** - * Sets the value of the contingentLiabilities property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContingentLiabilities(String value) { - this.contingentLiabilities = value; - } - - /** - * Gets the value of the workingCapital property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWorkingCapital() { - return workingCapital; - } - - /** - * Sets the value of the workingCapital property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWorkingCapital(BigDecimal value) { - this.workingCapital = value; - } - - /** - * Gets the value of the netWorth property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getNetWorth() { - return netWorth; - } - - /** - * Sets the value of the netWorth property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setNetWorth(BigDecimal value) { - this.netWorth = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorV2.java deleted file mode 100644 index 65ff4e0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorV2.java +++ /dev/null @@ -1,229 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafePersonDirectorV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafePersonDirectorV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" minOccurs="0"/>
- *         <element name="director_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="positions" type="{http://www.webservices.nl/soap/}CreditsafePersonPositionV2Array" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafePersonDirectorV2", propOrder = { - -}) -public class CreditsafePersonDirectorV2 { - - protected CreditsafeAddressV2 address; - @XmlElement(name = "director_type") - protected String directorType; - protected String id; - protected CreditsafePersonPositionV2Array positions; - protected String name; - @XmlElement(name = "date_of_birth") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateOfBirth; - protected String gender; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link CreditsafeAddressV2 } - * - */ - public CreditsafeAddressV2 getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link CreditsafeAddressV2 } - * - */ - public void setAddress(CreditsafeAddressV2 value) { - this.address = value; - } - - /** - * Gets the value of the directorType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDirectorType() { - return directorType; - } - - /** - * Sets the value of the directorType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDirectorType(String value) { - this.directorType = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the positions property. - * - * @return - * possible object is - * {@link CreditsafePersonPositionV2Array } - * - */ - public CreditsafePersonPositionV2Array getPositions() { - return positions; - } - - /** - * Sets the value of the positions property. - * - * @param value - * allowed object is - * {@link CreditsafePersonPositionV2Array } - * - */ - public void setPositions(CreditsafePersonPositionV2Array value) { - this.positions = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the dateOfBirth property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfBirth() { - return dateOfBirth; - } - - /** - * Sets the value of the dateOfBirth property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfBirth(XMLGregorianCalendar value) { - this.dateOfBirth = value; - } - - /** - * Gets the value of the gender property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGender() { - return gender; - } - - /** - * Sets the value of the gender property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGender(String value) { - this.gender = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorV2Array.java deleted file mode 100644 index 98eb27d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafePersonDirectorV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafePersonDirectorV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafePersonDirectorV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafePersonDirectorV2Array", propOrder = { - "item" -}) -public class CreditsafePersonDirectorV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafePersonDirectorV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorsV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorsV2.java deleted file mode 100644 index d694063..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorsV2.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafePersonDirectorsV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafePersonDirectorsV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="current_directors" type="{http://www.webservices.nl/soap/}CreditsafePersonDirectorV2Array" minOccurs="0"/>
- *         <element name="previous_directors" type="{http://www.webservices.nl/soap/}CreditsafePersonPreviousDirectorV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafePersonDirectorsV2", propOrder = { - -}) -public class CreditsafePersonDirectorsV2 { - - @XmlElement(name = "current_directors") - protected CreditsafePersonDirectorV2Array currentDirectors; - @XmlElement(name = "previous_directors") - protected CreditsafePersonPreviousDirectorV2Array previousDirectors; - - /** - * Gets the value of the currentDirectors property. - * - * @return - * possible object is - * {@link CreditsafePersonDirectorV2Array } - * - */ - public CreditsafePersonDirectorV2Array getCurrentDirectors() { - return currentDirectors; - } - - /** - * Sets the value of the currentDirectors property. - * - * @param value - * allowed object is - * {@link CreditsafePersonDirectorV2Array } - * - */ - public void setCurrentDirectors(CreditsafePersonDirectorV2Array value) { - this.currentDirectors = value; - } - - /** - * Gets the value of the previousDirectors property. - * - * @return - * possible object is - * {@link CreditsafePersonPreviousDirectorV2Array } - * - */ - public CreditsafePersonPreviousDirectorV2Array getPreviousDirectors() { - return previousDirectors; - } - - /** - * Sets the value of the previousDirectors property. - * - * @param value - * allowed object is - * {@link CreditsafePersonPreviousDirectorV2Array } - * - */ - public void setPreviousDirectors(CreditsafePersonPreviousDirectorV2Array value) { - this.previousDirectors = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorsV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorsV2Array.java deleted file mode 100644 index 9eca6a8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonDirectorsV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafePersonDirectorsV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafePersonDirectorsV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafePersonDirectorsV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafePersonDirectorsV2Array", propOrder = { - "item" -}) -public class CreditsafePersonDirectorsV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafePersonDirectorsV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPositionV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPositionV2.java deleted file mode 100644 index 3379967..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPositionV2.java +++ /dev/null @@ -1,98 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafePersonPositionV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafePersonPositionV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_appointed" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafePersonPositionV2", propOrder = { - -}) -public class CreditsafePersonPositionV2 { - - protected String name; - @XmlElement(name = "date_appointed") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateAppointed; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the dateAppointed property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateAppointed() { - return dateAppointed; - } - - /** - * Sets the value of the dateAppointed property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateAppointed(XMLGregorianCalendar value) { - this.dateAppointed = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPositionV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPositionV2Array.java deleted file mode 100644 index 347c05e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPositionV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafePersonPositionV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafePersonPositionV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafePersonPositionV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafePersonPositionV2Array", propOrder = { - "item" -}) -public class CreditsafePersonPositionV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafePersonPositionV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPreviousDirectorV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPreviousDirectorV2.java deleted file mode 100644 index 6b83126..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPreviousDirectorV2.java +++ /dev/null @@ -1,257 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafePersonPreviousDirectorV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafePersonPreviousDirectorV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="resignation_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="address" type="{http://www.webservices.nl/soap/}CreditsafeAddressV2" minOccurs="0"/>
- *         <element name="director_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="positions" type="{http://www.webservices.nl/soap/}CreditsafePersonPositionV2Array" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafePersonPreviousDirectorV2", propOrder = { - -}) -public class CreditsafePersonPreviousDirectorV2 { - - @XmlElement(name = "resignation_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar resignationDate; - protected CreditsafeAddressV2 address; - @XmlElement(name = "director_type") - protected String directorType; - protected String id; - protected CreditsafePersonPositionV2Array positions; - protected String name; - @XmlElement(name = "date_of_birth") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar dateOfBirth; - protected String gender; - - /** - * Gets the value of the resignationDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getResignationDate() { - return resignationDate; - } - - /** - * Sets the value of the resignationDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setResignationDate(XMLGregorianCalendar value) { - this.resignationDate = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link CreditsafeAddressV2 } - * - */ - public CreditsafeAddressV2 getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link CreditsafeAddressV2 } - * - */ - public void setAddress(CreditsafeAddressV2 value) { - this.address = value; - } - - /** - * Gets the value of the directorType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDirectorType() { - return directorType; - } - - /** - * Sets the value of the directorType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDirectorType(String value) { - this.directorType = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the positions property. - * - * @return - * possible object is - * {@link CreditsafePersonPositionV2Array } - * - */ - public CreditsafePersonPositionV2Array getPositions() { - return positions; - } - - /** - * Sets the value of the positions property. - * - * @param value - * allowed object is - * {@link CreditsafePersonPositionV2Array } - * - */ - public void setPositions(CreditsafePersonPositionV2Array value) { - this.positions = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the dateOfBirth property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfBirth() { - return dateOfBirth; - } - - /** - * Sets the value of the dateOfBirth property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfBirth(XMLGregorianCalendar value) { - this.dateOfBirth = value; - } - - /** - * Gets the value of the gender property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGender() { - return gender; - } - - /** - * Sets the value of the gender property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGender(String value) { - this.gender = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPreviousDirectorV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPreviousDirectorV2Array.java deleted file mode 100644 index a3b8dda..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePersonPreviousDirectorV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafePersonPreviousDirectorV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafePersonPreviousDirectorV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafePersonPreviousDirectorV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafePersonPreviousDirectorV2Array", propOrder = { - "item" -}) -public class CreditsafePersonPreviousDirectorV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafePersonPreviousDirectorV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePreviousDirector.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePreviousDirector.java deleted file mode 100644 index 0e48664..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePreviousDirector.java +++ /dev/null @@ -1,99 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafePreviousDirector complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafePreviousDirector">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="director" type="{http://www.webservices.nl/soap/}CreditsafeDirector"/>
- *         <element name="resignation_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafePreviousDirector", propOrder = { - -}) -public class CreditsafePreviousDirector { - - @XmlElement(required = true) - protected CreditsafeDirector director; - @XmlElement(name = "resignation_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar resignationDate; - - /** - * Gets the value of the director property. - * - * @return - * possible object is - * {@link CreditsafeDirector } - * - */ - public CreditsafeDirector getDirector() { - return director; - } - - /** - * Sets the value of the director property. - * - * @param value - * allowed object is - * {@link CreditsafeDirector } - * - */ - public void setDirector(CreditsafeDirector value) { - this.director = value; - } - - /** - * Gets the value of the resignationDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getResignationDate() { - return resignationDate; - } - - /** - * Sets the value of the resignationDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setResignationDate(XMLGregorianCalendar value) { - this.resignationDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePreviousDirectorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePreviousDirectorArray.java deleted file mode 100644 index b5b061d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafePreviousDirectorArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafePreviousDirectorArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafePreviousDirectorArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafePreviousDirector" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafePreviousDirectorArray", propOrder = { - "item" -}) -public class CreditsafePreviousDirectorArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafePreviousDirector } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeProfitAndLossFigures.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeProfitAndLossFigures.java deleted file mode 100644 index 7a5561c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeProfitAndLossFigures.java +++ /dev/null @@ -1,628 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for CreditsafeProfitAndLossFigures complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeProfitAndLossFigures">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="year_end_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
- *         <element name="number_of_weeks" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
- *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="consolidated_accounts" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="revenue" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="operating_costs" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="operating_profit" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="wages_and_salaries" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="pension_costs" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="depreciation" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="amortisation" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="financial_income" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="financial_expenses" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="extraordinary_income" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="extraordinary_costs" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="profit_before_tax" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="tax" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="profit_after_tax" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="dividends" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="minority_interests" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="other_appropriations" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="retained_profit" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeProfitAndLossFigures", propOrder = { - -}) -public class CreditsafeProfitAndLossFigures { - - @XmlElement(name = "year_end_date", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar yearEndDate; - @XmlElement(name = "number_of_weeks") - @XmlSchemaType(name = "unsignedInt") - protected long numberOfWeeks; - @XmlElement(required = true) - protected String currency; - @XmlElement(name = "consolidated_accounts") - protected Boolean consolidatedAccounts; - protected BigDecimal revenue; - @XmlElement(name = "operating_costs") - protected BigDecimal operatingCosts; - @XmlElement(name = "operating_profit") - protected BigDecimal operatingProfit; - @XmlElement(name = "wages_and_salaries") - protected BigDecimal wagesAndSalaries; - @XmlElement(name = "pension_costs") - protected BigDecimal pensionCosts; - protected BigDecimal depreciation; - protected BigDecimal amortisation; - @XmlElement(name = "financial_income") - protected BigDecimal financialIncome; - @XmlElement(name = "financial_expenses") - protected BigDecimal financialExpenses; - @XmlElement(name = "extraordinary_income") - protected BigDecimal extraordinaryIncome; - @XmlElement(name = "extraordinary_costs") - protected BigDecimal extraordinaryCosts; - @XmlElement(name = "profit_before_tax") - protected BigDecimal profitBeforeTax; - protected BigDecimal tax; - @XmlElement(name = "profit_after_tax") - protected BigDecimal profitAfterTax; - protected BigDecimal dividends; - @XmlElement(name = "minority_interests") - protected BigDecimal minorityInterests; - @XmlElement(name = "other_appropriations") - protected BigDecimal otherAppropriations; - @XmlElement(name = "retained_profit") - protected BigDecimal retainedProfit; - - /** - * Gets the value of the yearEndDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getYearEndDate() { - return yearEndDate; - } - - /** - * Sets the value of the yearEndDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setYearEndDate(XMLGregorianCalendar value) { - this.yearEndDate = value; - } - - /** - * Gets the value of the numberOfWeeks property. - * - */ - public long getNumberOfWeeks() { - return numberOfWeeks; - } - - /** - * Sets the value of the numberOfWeeks property. - * - */ - public void setNumberOfWeeks(long value) { - this.numberOfWeeks = value; - } - - /** - * Gets the value of the currency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCurrency() { - return currency; - } - - /** - * Sets the value of the currency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCurrency(String value) { - this.currency = value; - } - - /** - * Gets the value of the consolidatedAccounts property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isConsolidatedAccounts() { - return consolidatedAccounts; - } - - /** - * Sets the value of the consolidatedAccounts property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setConsolidatedAccounts(Boolean value) { - this.consolidatedAccounts = value; - } - - /** - * Gets the value of the revenue property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getRevenue() { - return revenue; - } - - /** - * Sets the value of the revenue property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setRevenue(BigDecimal value) { - this.revenue = value; - } - - /** - * Gets the value of the operatingCosts property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getOperatingCosts() { - return operatingCosts; - } - - /** - * Sets the value of the operatingCosts property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setOperatingCosts(BigDecimal value) { - this.operatingCosts = value; - } - - /** - * Gets the value of the operatingProfit property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getOperatingProfit() { - return operatingProfit; - } - - /** - * Sets the value of the operatingProfit property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setOperatingProfit(BigDecimal value) { - this.operatingProfit = value; - } - - /** - * Gets the value of the wagesAndSalaries property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getWagesAndSalaries() { - return wagesAndSalaries; - } - - /** - * Sets the value of the wagesAndSalaries property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setWagesAndSalaries(BigDecimal value) { - this.wagesAndSalaries = value; - } - - /** - * Gets the value of the pensionCosts property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPensionCosts() { - return pensionCosts; - } - - /** - * Sets the value of the pensionCosts property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPensionCosts(BigDecimal value) { - this.pensionCosts = value; - } - - /** - * Gets the value of the depreciation property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getDepreciation() { - return depreciation; - } - - /** - * Sets the value of the depreciation property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setDepreciation(BigDecimal value) { - this.depreciation = value; - } - - /** - * Gets the value of the amortisation property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getAmortisation() { - return amortisation; - } - - /** - * Sets the value of the amortisation property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setAmortisation(BigDecimal value) { - this.amortisation = value; - } - - /** - * Gets the value of the financialIncome property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getFinancialIncome() { - return financialIncome; - } - - /** - * Sets the value of the financialIncome property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setFinancialIncome(BigDecimal value) { - this.financialIncome = value; - } - - /** - * Gets the value of the financialExpenses property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getFinancialExpenses() { - return financialExpenses; - } - - /** - * Sets the value of the financialExpenses property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setFinancialExpenses(BigDecimal value) { - this.financialExpenses = value; - } - - /** - * Gets the value of the extraordinaryIncome property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getExtraordinaryIncome() { - return extraordinaryIncome; - } - - /** - * Sets the value of the extraordinaryIncome property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setExtraordinaryIncome(BigDecimal value) { - this.extraordinaryIncome = value; - } - - /** - * Gets the value of the extraordinaryCosts property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getExtraordinaryCosts() { - return extraordinaryCosts; - } - - /** - * Sets the value of the extraordinaryCosts property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setExtraordinaryCosts(BigDecimal value) { - this.extraordinaryCosts = value; - } - - /** - * Gets the value of the profitBeforeTax property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProfitBeforeTax() { - return profitBeforeTax; - } - - /** - * Sets the value of the profitBeforeTax property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProfitBeforeTax(BigDecimal value) { - this.profitBeforeTax = value; - } - - /** - * Gets the value of the tax property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getTax() { - return tax; - } - - /** - * Sets the value of the tax property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setTax(BigDecimal value) { - this.tax = value; - } - - /** - * Gets the value of the profitAfterTax property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getProfitAfterTax() { - return profitAfterTax; - } - - /** - * Sets the value of the profitAfterTax property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setProfitAfterTax(BigDecimal value) { - this.profitAfterTax = value; - } - - /** - * Gets the value of the dividends property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getDividends() { - return dividends; - } - - /** - * Sets the value of the dividends property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setDividends(BigDecimal value) { - this.dividends = value; - } - - /** - * Gets the value of the minorityInterests property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getMinorityInterests() { - return minorityInterests; - } - - /** - * Sets the value of the minorityInterests property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setMinorityInterests(BigDecimal value) { - this.minorityInterests = value; - } - - /** - * Gets the value of the otherAppropriations property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getOtherAppropriations() { - return otherAppropriations; - } - - /** - * Sets the value of the otherAppropriations property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setOtherAppropriations(BigDecimal value) { - this.otherAppropriations = value; - } - - /** - * Gets the value of the retainedProfit property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getRetainedProfit() { - return retainedProfit; - } - - /** - * Sets the value of the retainedProfit property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setRetainedProfit(BigDecimal value) { - this.retainedProfit = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeQuartiles.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeQuartiles.java deleted file mode 100644 index 6b22af0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeQuartiles.java +++ /dev/null @@ -1,120 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeQuartiles complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeQuartiles">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="lower" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="median" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="upper" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeQuartiles", propOrder = { - -}) -public class CreditsafeQuartiles { - - protected BigDecimal lower; - protected BigDecimal median; - protected BigDecimal upper; - - /** - * Gets the value of the lower property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getLower() { - return lower; - } - - /** - * Sets the value of the lower property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setLower(BigDecimal value) { - this.lower = value; - } - - /** - * Gets the value of the median property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getMedian() { - return median; - } - - /** - * Sets the value of the median property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setMedian(BigDecimal value) { - this.median = value; - } - - /** - * Gets the value of the upper property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getUpper() { - return upper; - } - - /** - * Sets the value of the upper property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setUpper(BigDecimal value) { - this.upper = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteria.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteria.java deleted file mode 100644 index 1da0f5d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteria.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeSearchCriteria complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeSearchCriteria">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="countries" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="languages" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="combinations" type="{http://www.webservices.nl/soap/}CreditsafeSearchCriteriaCombinationArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeSearchCriteria", propOrder = { - -}) -public class CreditsafeSearchCriteria { - - @XmlElement(required = true) - protected StringArray countries; - @XmlElement(required = true) - protected StringArray languages; - @XmlElement(required = true) - protected CreditsafeSearchCriteriaCombinationArray combinations; - - /** - * Gets the value of the countries property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getCountries() { - return countries; - } - - /** - * Sets the value of the countries property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setCountries(StringArray value) { - this.countries = value; - } - - /** - * Gets the value of the languages property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getLanguages() { - return languages; - } - - /** - * Sets the value of the languages property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setLanguages(StringArray value) { - this.languages = value; - } - - /** - * Gets the value of the combinations property. - * - * @return - * possible object is - * {@link CreditsafeSearchCriteriaCombinationArray } - * - */ - public CreditsafeSearchCriteriaCombinationArray getCombinations() { - return combinations; - } - - /** - * Sets the value of the combinations property. - * - * @param value - * allowed object is - * {@link CreditsafeSearchCriteriaCombinationArray } - * - */ - public void setCombinations(CreditsafeSearchCriteriaCombinationArray value) { - this.combinations = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaCombination.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaCombination.java deleted file mode 100644 index 7c111c0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaCombination.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeSearchCriteriaCombination complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeSearchCriteriaCombination">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="params" type="{http://www.webservices.nl/soap/}CreditsafeSearchCriteriaParamArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeSearchCriteriaCombination", propOrder = { - -}) -public class CreditsafeSearchCriteriaCombination { - - @XmlElement(required = true) - protected CreditsafeSearchCriteriaParamArray params; - - /** - * Gets the value of the params property. - * - * @return - * possible object is - * {@link CreditsafeSearchCriteriaParamArray } - * - */ - public CreditsafeSearchCriteriaParamArray getParams() { - return params; - } - - /** - * Sets the value of the params property. - * - * @param value - * allowed object is - * {@link CreditsafeSearchCriteriaParamArray } - * - */ - public void setParams(CreditsafeSearchCriteriaParamArray value) { - this.params = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaCombinationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaCombinationArray.java deleted file mode 100644 index 523dc50..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaCombinationArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeSearchCriteriaCombinationArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeSearchCriteriaCombinationArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeSearchCriteriaCombination" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeSearchCriteriaCombinationArray", propOrder = { - "item" -}) -public class CreditsafeSearchCriteriaCombinationArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeSearchCriteriaCombination } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaParam.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaParam.java deleted file mode 100644 index e22ebe3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaParam.java +++ /dev/null @@ -1,197 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeSearchCriteriaParam complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeSearchCriteriaParam">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="min_length" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="max_length" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="validation_regexp" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="allowed_values" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="is_required" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeSearchCriteriaParam", propOrder = { - -}) -public class CreditsafeSearchCriteriaParam { - - @XmlElement(required = true) - protected String name; - @XmlElement(name = "min_length") - protected BigInteger minLength; - @XmlElement(name = "max_length") - protected BigInteger maxLength; - @XmlElement(name = "validation_regexp") - protected String validationRegexp; - @XmlElement(name = "allowed_values") - protected StringArray allowedValues; - @XmlElement(name = "is_required") - protected boolean isRequired; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the minLength property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getMinLength() { - return minLength; - } - - /** - * Sets the value of the minLength property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setMinLength(BigInteger value) { - this.minLength = value; - } - - /** - * Gets the value of the maxLength property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getMaxLength() { - return maxLength; - } - - /** - * Sets the value of the maxLength property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setMaxLength(BigInteger value) { - this.maxLength = value; - } - - /** - * Gets the value of the validationRegexp property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValidationRegexp() { - return validationRegexp; - } - - /** - * Sets the value of the validationRegexp property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValidationRegexp(String value) { - this.validationRegexp = value; - } - - /** - * Gets the value of the allowedValues property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getAllowedValues() { - return allowedValues; - } - - /** - * Sets the value of the allowedValues property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setAllowedValues(StringArray value) { - this.allowedValues = value; - } - - /** - * Gets the value of the isRequired property. - * - */ - public boolean isIsRequired() { - return isRequired; - } - - /** - * Sets the value of the isRequired property. - * - */ - public void setIsRequired(boolean value) { - this.isRequired = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaParamArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaParamArray.java deleted file mode 100644 index aa1c289..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaParamArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeSearchCriteriaParamArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeSearchCriteriaParamArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeSearchCriteriaParam" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeSearchCriteriaParamArray", propOrder = { - "item" -}) -public class CreditsafeSearchCriteriaParamArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeSearchCriteriaParam } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaRequestType.java deleted file mode 100644 index 3f0b39a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for creditsafeSearchCriteriaRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="creditsafeSearchCriteriaRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="countries" type="{http://www.webservices.nl/soap/}stringArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "creditsafeSearchCriteriaRequestType", propOrder = { - -}) -public class CreditsafeSearchCriteriaRequestType { - - @XmlElement(required = true) - protected StringArray countries; - - /** - * Gets the value of the countries property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getCountries() { - return countries; - } - - /** - * Sets the value of the countries property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setCountries(StringArray value) { - this.countries = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaResponseType.java deleted file mode 100644 index 7749475..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchCriteriaResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for creditsafeSearchCriteriaResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="creditsafeSearchCriteriaResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CreditsafeSearchCriteria"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "creditsafeSearchCriteriaResponseType", propOrder = { - -}) -public class CreditsafeSearchCriteriaResponseType { - - @XmlElement(required = true) - protected CreditsafeSearchCriteria out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CreditsafeSearchCriteria } - * - */ - public CreditsafeSearchCriteria getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CreditsafeSearchCriteria } - * - */ - public void setOut(CreditsafeSearchCriteria value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchRequestType.java deleted file mode 100644 index 13fada7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchRequestType.java +++ /dev/null @@ -1,465 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for creditsafeSearchRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="creditsafeSearchRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="registration_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="office_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name_match_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="address_match_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postal_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "creditsafeSearchRequestType", propOrder = { - -}) -public class CreditsafeSearchRequestType { - - @XmlElement(required = true) - protected String country; - @XmlElement(required = true) - protected String id; - @XmlElement(name = "registration_number", required = true) - protected String registrationNumber; - @XmlElement(required = true) - protected String status; - @XmlElement(name = "office_type", required = true) - protected String officeType; - @XmlElement(required = true) - protected String name; - @XmlElement(name = "name_match_type", required = true) - protected String nameMatchType; - @XmlElement(required = true) - protected String address; - @XmlElement(name = "address_match_type", required = true) - protected String addressMatchType; - @XmlElement(required = true) - protected String street; - @XmlElement(name = "house_number", required = true) - protected String houseNumber; - @XmlElement(required = true) - protected String city; - @XmlElement(name = "postal_code", required = true) - protected String postalCode; - @XmlElement(required = true) - protected String province; - @XmlElement(name = "phone_number", required = true) - protected String phoneNumber; - protected int page; - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the registrationNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistrationNumber() { - return registrationNumber; - } - - /** - * Sets the value of the registrationNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistrationNumber(String value) { - this.registrationNumber = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the officeType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOfficeType() { - return officeType; - } - - /** - * Sets the value of the officeType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOfficeType(String value) { - this.officeType = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the nameMatchType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNameMatchType() { - return nameMatchType; - } - - /** - * Sets the value of the nameMatchType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNameMatchType(String value) { - this.nameMatchType = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the addressMatchType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddressMatchType() { - return addressMatchType; - } - - /** - * Sets the value of the addressMatchType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddressMatchType(String value) { - this.addressMatchType = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNumber(String value) { - this.houseNumber = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the postalCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostalCode() { - return postalCode; - } - - /** - * Sets the value of the postalCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostalCode(String value) { - this.postalCode = value; - } - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the phoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPhoneNumber() { - return phoneNumber; - } - - /** - * Sets the value of the phoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPhoneNumber(String value) { - this.phoneNumber = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchResponseType.java deleted file mode 100644 index 1de978d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for creditsafeSearchResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="creditsafeSearchResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CreditsafeCompanyPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "creditsafeSearchResponseType", propOrder = { - -}) -public class CreditsafeSearchResponseType { - - @XmlElement(required = true) - protected CreditsafeCompanyPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CreditsafeCompanyPagedResult } - * - */ - public CreditsafeCompanyPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyPagedResult } - * - */ - public void setOut(CreditsafeCompanyPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchResultV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchResultV2.java deleted file mode 100644 index b6c09f5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchResultV2.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeSearchResultV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeSearchResultV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="companies" type="{http://www.webservices.nl/soap/}CreditsafeCompanyV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeSearchResultV2", propOrder = { - -}) -public class CreditsafeSearchResultV2 { - - protected CreditsafeCompanyV2Array companies; - - /** - * Gets the value of the companies property. - * - * @return - * possible object is - * {@link CreditsafeCompanyV2Array } - * - */ - public CreditsafeCompanyV2Array getCompanies() { - return companies; - } - - /** - * Sets the value of the companies property. - * - * @param value - * allowed object is - * {@link CreditsafeCompanyV2Array } - * - */ - public void setCompanies(CreditsafeCompanyV2Array value) { - this.companies = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchV2RequestType.java deleted file mode 100644 index 5a5a22d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchV2RequestType.java +++ /dev/null @@ -1,339 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for creditsafeSearchV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="creditsafeSearchV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="countries" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="registration_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="registration_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postal_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "creditsafeSearchV2RequestType", propOrder = { - -}) -public class CreditsafeSearchV2RequestType { - - @XmlElement(required = true) - protected StringArray countries; - @XmlElement(required = true) - protected String id; - @XmlElement(required = true) - protected String status; - @XmlElement(name = "registration_number", required = true) - protected String registrationNumber; - @XmlElement(name = "registration_type", required = true) - protected String registrationType; - @XmlElement(name = "vat_number", required = true) - protected String vatNumber; - @XmlElement(required = true) - protected String province; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String street; - @XmlElement(name = "postal_code", required = true) - protected String postalCode; - @XmlElement(required = true) - protected String name; - - /** - * Gets the value of the countries property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getCountries() { - return countries; - } - - /** - * Sets the value of the countries property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setCountries(StringArray value) { - this.countries = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the registrationNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistrationNumber() { - return registrationNumber; - } - - /** - * Sets the value of the registrationNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistrationNumber(String value) { - this.registrationNumber = value; - } - - /** - * Gets the value of the registrationType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistrationType() { - return registrationType; - } - - /** - * Sets the value of the registrationType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistrationType(String value) { - this.registrationType = value; - } - - /** - * Gets the value of the vatNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVatNumber() { - return vatNumber; - } - - /** - * Sets the value of the vatNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVatNumber(String value) { - this.vatNumber = value; - } - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the postalCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostalCode() { - return postalCode; - } - - /** - * Sets the value of the postalCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostalCode(String value) { - this.postalCode = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchV2ResponseType.java deleted file mode 100644 index 1f560df..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeSearchV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for creditsafeSearchV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="creditsafeSearchV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}CreditsafeSearchResultV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "creditsafeSearchV2ResponseType", propOrder = { - -}) -public class CreditsafeSearchV2ResponseType { - - @XmlElement(required = true) - protected CreditsafeSearchResultV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link CreditsafeSearchResultV2 } - * - */ - public CreditsafeSearchResultV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link CreditsafeSearchResultV2 } - * - */ - public void setOut(CreditsafeSearchResultV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeShareHolder.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeShareHolder.java deleted file mode 100644 index c53919c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeShareHolder.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeShareHolder complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeShareHolder">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="share_percent" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeShareHolder", propOrder = { - -}) -public class CreditsafeShareHolder { - - @XmlElement(required = true) - protected String name; - protected String address; - @XmlElement(name = "share_percent") - protected Double sharePercent; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the sharePercent property. - * - * @return - * possible object is - * {@link Double } - * - */ - public Double getSharePercent() { - return sharePercent; - } - - /** - * Sets the value of the sharePercent property. - * - * @param value - * allowed object is - * {@link Double } - * - */ - public void setSharePercent(Double value) { - this.sharePercent = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeShareHolderArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeShareHolderArray.java deleted file mode 100644 index 584dea6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeShareHolderArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeShareHolderArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeShareHolderArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeShareHolder" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeShareHolderArray", propOrder = { - "item" -}) -public class CreditsafeShareHolderArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeShareHolder } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddress.java deleted file mode 100644 index 4f20102..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddress.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeStreetAddress complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeStreetAddress">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeStreetAddress", propOrder = { - -}) -public class CreditsafeStreetAddress { - - @XmlElement(required = true) - protected String address; - protected String country; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressArray.java deleted file mode 100644 index 91b1cc3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeStreetAddressArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeStreetAddressArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeStreetAddress" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeStreetAddressArray", propOrder = { - "item" -}) -public class CreditsafeStreetAddressArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeStreetAddress } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressWithTelephone.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressWithTelephone.java deleted file mode 100644 index 02682fe..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressWithTelephone.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeStreetAddressWithTelephone complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeStreetAddressWithTelephone">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeStreetAddressWithTelephone", propOrder = { - -}) -public class CreditsafeStreetAddressWithTelephone { - - @XmlElement(required = true) - protected String address; - protected String country; - protected String telephone; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the telephone property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephone() { - return telephone; - } - - /** - * Sets the value of the telephone property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephone(String value) { - this.telephone = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressWithTelephoneArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressWithTelephoneArray.java deleted file mode 100644 index 2451cf7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeStreetAddressWithTelephoneArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeStreetAddressWithTelephoneArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeStreetAddressWithTelephoneArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeStreetAddressWithTelephone" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeStreetAddressWithTelephoneArray", propOrder = { - "item" -}) -public class CreditsafeStreetAddressWithTelephoneArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeStreetAddressWithTelephone } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeValueV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeValueV2.java deleted file mode 100644 index b45028c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeValueV2.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeValueV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeValueV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="max_value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="min_value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeValueV2", propOrder = { - -}) -public class CreditsafeValueV2 { - - @XmlElement(name = "max_value") - protected String maxValue; - @XmlElement(name = "min_value") - protected String minValue; - protected String value; - - /** - * Gets the value of the maxValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMaxValue() { - return maxValue; - } - - /** - * Sets the value of the maxValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMaxValue(String value) { - this.maxValue = value; - } - - /** - * Gets the value of the minValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMinValue() { - return minValue; - } - - /** - * Sets the value of the minValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMinValue(String value) { - this.minValue = value; - } - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeValueV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeValueV2Array.java deleted file mode 100644 index b8cc8b9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/CreditsafeValueV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CreditsafeValueV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CreditsafeValueV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}CreditsafeValueV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CreditsafeValueV2Array", propOrder = { - "item" -}) -public class CreditsafeValueV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CreditsafeValueV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBAddress.java deleted file mode 100644 index 42195dc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBAddress.java +++ /dev/null @@ -1,276 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBAddress complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBAddress">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="region_short" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="region_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country_dnb" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="country_iso" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBAddress", propOrder = { - -}) -public class DNBAddress { - - @XmlElement(required = true) - protected String address; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String city; - protected String region; - @XmlElement(name = "region_short") - protected String regionShort; - @XmlElement(name = "region_code") - protected Integer regionCode; - @XmlElement(required = true) - protected String country; - @XmlElement(name = "country_dnb") - protected int countryDnb; - @XmlElement(name = "country_iso", required = true) - protected String countryIso; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the region property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegion() { - return region; - } - - /** - * Sets the value of the region property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegion(String value) { - this.region = value; - } - - /** - * Gets the value of the regionShort property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegionShort() { - return regionShort; - } - - /** - * Sets the value of the regionShort property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegionShort(String value) { - this.regionShort = value; - } - - /** - * Gets the value of the regionCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRegionCode() { - return regionCode; - } - - /** - * Sets the value of the regionCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRegionCode(Integer value) { - this.regionCode = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the countryDnb property. - * - */ - public int getCountryDnb() { - return countryDnb; - } - - /** - * Sets the value of the countryDnb property. - * - */ - public void setCountryDnb(int value) { - this.countryDnb = value; - } - - /** - * Gets the value of the countryIso property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryIso() { - return countryIso; - } - - /** - * Sets the value of the countryIso property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryIso(String value) { - this.countryIso = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReference.java deleted file mode 100644 index e906ec6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReference.java +++ /dev/null @@ -1,296 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBBusinessReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBBusinessReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dnb_key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="main_branch_indication" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="confidence_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBBusinessReference", propOrder = { - -}) -public class DNBBusinessReference { - - @XmlElement(name = "dnb_key", required = true) - protected String dnbKey; - @XmlElement(name = "trade_name", required = true) - protected String tradeName; - @XmlElement(required = true) - protected String address; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String city; - @XmlElement(name = "phone_number", required = true) - protected String phoneNumber; - @XmlElement(required = true) - protected String country; - @XmlElement(name = "main_branch_indication") - protected boolean mainBranchIndication; - @XmlElement(name = "confidence_code") - protected int confidenceCode; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - - /** - * Gets the value of the dnbKey property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDnbKey() { - return dnbKey; - } - - /** - * Sets the value of the dnbKey property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDnbKey(String value) { - this.dnbKey = value; - } - - /** - * Gets the value of the tradeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName() { - return tradeName; - } - - /** - * Sets the value of the tradeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName(String value) { - this.tradeName = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the phoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPhoneNumber() { - return phoneNumber; - } - - /** - * Sets the value of the phoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPhoneNumber(String value) { - this.phoneNumber = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the mainBranchIndication property. - * - */ - public boolean isMainBranchIndication() { - return mainBranchIndication; - } - - /** - * Sets the value of the mainBranchIndication property. - * - */ - public void setMainBranchIndication(boolean value) { - this.mainBranchIndication = value; - } - - /** - * Gets the value of the confidenceCode property. - * - */ - public int getConfidenceCode() { - return confidenceCode; - } - - /** - * Sets the value of the confidenceCode property. - * - */ - public void setConfidenceCode(int value) { - this.confidenceCode = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceArray.java deleted file mode 100644 index a74fca7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBBusinessReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBBusinessReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DNBBusinessReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBBusinessReferenceArray", propOrder = { - "item" -}) -public class DNBBusinessReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DNBBusinessReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferencePagedResult.java deleted file mode 100644 index 865b716..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferencePagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBBusinessReferencePagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBBusinessReferencePagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}DNBBusinessReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBBusinessReferencePagedResult", propOrder = { - -}) -public class DNBBusinessReferencePagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected DNBBusinessReferenceArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link DNBBusinessReferenceArray } - * - */ - public DNBBusinessReferenceArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link DNBBusinessReferenceArray } - * - */ - public void setResults(DNBBusinessReferenceArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2.java deleted file mode 100644 index 5daa0f9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2.java +++ /dev/null @@ -1,314 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBBusinessReferenceV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBBusinessReferenceV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dnb_key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="country_iso2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="main_branch_indication" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="confidence_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBBusinessReferenceV2", propOrder = { - -}) -public class DNBBusinessReferenceV2 { - - @XmlElement(name = "dnb_key", required = true) - protected String dnbKey; - @XmlElement(name = "trade_name", required = true) - protected String tradeName; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - @XmlElement(required = true) - protected String address; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String city; - @XmlElement(name = "phone_number", required = true) - protected String phoneNumber; - protected int country; - @XmlElement(name = "country_iso2", required = true) - protected String countryIso2; - @XmlElement(name = "main_branch_indication") - protected boolean mainBranchIndication; - @XmlElement(name = "confidence_code") - protected int confidenceCode; - - /** - * Gets the value of the dnbKey property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDnbKey() { - return dnbKey; - } - - /** - * Sets the value of the dnbKey property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDnbKey(String value) { - this.dnbKey = value; - } - - /** - * Gets the value of the tradeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName() { - return tradeName; - } - - /** - * Sets the value of the tradeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName(String value) { - this.tradeName = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the phoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPhoneNumber() { - return phoneNumber; - } - - /** - * Sets the value of the phoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPhoneNumber(String value) { - this.phoneNumber = value; - } - - /** - * Gets the value of the country property. - * - */ - public int getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - */ - public void setCountry(int value) { - this.country = value; - } - - /** - * Gets the value of the countryIso2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryIso2() { - return countryIso2; - } - - /** - * Sets the value of the countryIso2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryIso2(String value) { - this.countryIso2 = value; - } - - /** - * Gets the value of the mainBranchIndication property. - * - */ - public boolean isMainBranchIndication() { - return mainBranchIndication; - } - - /** - * Sets the value of the mainBranchIndication property. - * - */ - public void setMainBranchIndication(boolean value) { - this.mainBranchIndication = value; - } - - /** - * Gets the value of the confidenceCode property. - * - */ - public int getConfidenceCode() { - return confidenceCode; - } - - /** - * Sets the value of the confidenceCode property. - * - */ - public void setConfidenceCode(int value) { - this.confidenceCode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2Array.java deleted file mode 100644 index bda285f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBBusinessReferenceV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBBusinessReferenceV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DNBBusinessReferenceV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBBusinessReferenceV2Array", propOrder = { - "item" -}) -public class DNBBusinessReferenceV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DNBBusinessReferenceV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2PagedResult.java deleted file mode 100644 index a44e9dd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessReferenceV2PagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBBusinessReferenceV2PagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBBusinessReferenceV2PagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}DNBBusinessReferenceV2Array"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBBusinessReferenceV2PagedResult", propOrder = { - -}) -public class DNBBusinessReferenceV2PagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected DNBBusinessReferenceV2Array results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link DNBBusinessReferenceV2Array } - * - */ - public DNBBusinessReferenceV2Array getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link DNBBusinessReferenceV2Array } - * - */ - public void setResults(DNBBusinessReferenceV2Array value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessVerification.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessVerification.java deleted file mode 100644 index 8c76c26..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBBusinessVerification.java +++ /dev/null @@ -1,688 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBBusinessVerification complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBBusinessVerification">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="duns" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="dnb_key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="enquiry_duns" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="business_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="business_number_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="business_number_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="address" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="subregion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country_calling_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="main_branch_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="out_of_business" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="incorporation_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="start_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="sic_activity_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sic_activity_description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sic_version" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBBusinessVerification", propOrder = { - -}) -public class DNBBusinessVerification { - - @XmlElement(required = true) - protected String duns; - @XmlElement(name = "dnb_key", required = true) - protected String dnbKey; - @XmlElement(name = "enquiry_duns", required = true) - protected String enquiryDuns; - @XmlElement(name = "business_number") - protected String businessNumber; - @XmlElement(name = "business_number_type") - protected String businessNumberType; - @XmlElement(name = "business_number_description") - protected String businessNumberDescription; - @XmlElement(name = "trade_name", required = true) - protected String tradeName; - @XmlElement(required = true) - protected StringArray address; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String city; - protected String region; - protected String subregion; - @XmlElement(name = "country_calling_code", required = true) - protected String countryCallingCode; - @XmlElement(name = "phone_number") - protected String phoneNumber; - @XmlElement(name = "fax_number") - protected String faxNumber; - @XmlElement(required = true) - protected String country; - @XmlElement(name = "main_branch_indication") - protected Boolean mainBranchIndication; - @XmlElement(name = "out_of_business") - protected Boolean outOfBusiness; - @XmlElement(name = "incorporation_year") - protected Integer incorporationYear; - @XmlElement(name = "start_year") - protected Integer startYear; - @XmlElement(name = "sic_activity_code", required = true) - protected String sicActivityCode; - @XmlElement(name = "sic_activity_description", required = true) - protected String sicActivityDescription; - @XmlElement(name = "sic_version", required = true) - protected String sicVersion; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - - /** - * Gets the value of the duns property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDuns() { - return duns; - } - - /** - * Sets the value of the duns property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDuns(String value) { - this.duns = value; - } - - /** - * Gets the value of the dnbKey property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDnbKey() { - return dnbKey; - } - - /** - * Sets the value of the dnbKey property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDnbKey(String value) { - this.dnbKey = value; - } - - /** - * Gets the value of the enquiryDuns property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnquiryDuns() { - return enquiryDuns; - } - - /** - * Sets the value of the enquiryDuns property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnquiryDuns(String value) { - this.enquiryDuns = value; - } - - /** - * Gets the value of the businessNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBusinessNumber() { - return businessNumber; - } - - /** - * Sets the value of the businessNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBusinessNumber(String value) { - this.businessNumber = value; - } - - /** - * Gets the value of the businessNumberType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBusinessNumberType() { - return businessNumberType; - } - - /** - * Sets the value of the businessNumberType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBusinessNumberType(String value) { - this.businessNumberType = value; - } - - /** - * Gets the value of the businessNumberDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBusinessNumberDescription() { - return businessNumberDescription; - } - - /** - * Sets the value of the businessNumberDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBusinessNumberDescription(String value) { - this.businessNumberDescription = value; - } - - /** - * Gets the value of the tradeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName() { - return tradeName; - } - - /** - * Sets the value of the tradeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName(String value) { - this.tradeName = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setAddress(StringArray value) { - this.address = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the region property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegion() { - return region; - } - - /** - * Sets the value of the region property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegion(String value) { - this.region = value; - } - - /** - * Gets the value of the subregion property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubregion() { - return subregion; - } - - /** - * Sets the value of the subregion property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubregion(String value) { - this.subregion = value; - } - - /** - * Gets the value of the countryCallingCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryCallingCode() { - return countryCallingCode; - } - - /** - * Sets the value of the countryCallingCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryCallingCode(String value) { - this.countryCallingCode = value; - } - - /** - * Gets the value of the phoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPhoneNumber() { - return phoneNumber; - } - - /** - * Sets the value of the phoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPhoneNumber(String value) { - this.phoneNumber = value; - } - - /** - * Gets the value of the faxNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFaxNumber() { - return faxNumber; - } - - /** - * Sets the value of the faxNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFaxNumber(String value) { - this.faxNumber = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the mainBranchIndication property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isMainBranchIndication() { - return mainBranchIndication; - } - - /** - * Sets the value of the mainBranchIndication property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setMainBranchIndication(Boolean value) { - this.mainBranchIndication = value; - } - - /** - * Gets the value of the outOfBusiness property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isOutOfBusiness() { - return outOfBusiness; - } - - /** - * Sets the value of the outOfBusiness property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setOutOfBusiness(Boolean value) { - this.outOfBusiness = value; - } - - /** - * Gets the value of the incorporationYear property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getIncorporationYear() { - return incorporationYear; - } - - /** - * Sets the value of the incorporationYear property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setIncorporationYear(Integer value) { - this.incorporationYear = value; - } - - /** - * Gets the value of the startYear property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getStartYear() { - return startYear; - } - - /** - * Sets the value of the startYear property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setStartYear(Integer value) { - this.startYear = value; - } - - /** - * Gets the value of the sicActivityCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSicActivityCode() { - return sicActivityCode; - } - - /** - * Sets the value of the sicActivityCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSicActivityCode(String value) { - this.sicActivityCode = value; - } - - /** - * Gets the value of the sicActivityDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSicActivityDescription() { - return sicActivityDescription; - } - - /** - * Sets the value of the sicActivityDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSicActivityDescription(String value) { - this.sicActivityDescription = value; - } - - /** - * Gets the value of the sicVersion property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSicVersion() { - return sicVersion; - } - - /** - * Sets the value of the sicVersion property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSicVersion(String value) { - this.sicVersion = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBCommentary.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBCommentary.java deleted file mode 100644 index adeab43..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBCommentary.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBCommentary complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBCommentary">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBCommentary", propOrder = { - -}) -public class DNBCommentary { - - @XmlElement(required = true) - protected String code; - protected String description; - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBCommentaryArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBCommentaryArray.java deleted file mode 100644 index 76cf371..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBCommentaryArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBCommentaryArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBCommentaryArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DNBCommentary" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBCommentaryArray", propOrder = { - "item" -}) -public class DNBCommentaryArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DNBCommentary } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBEmployeeCount.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBEmployeeCount.java deleted file mode 100644 index 6a336f2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBEmployeeCount.java +++ /dev/null @@ -1,175 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBEmployeeCount complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBEmployeeCount">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="employees" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="employees_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="estimated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="subsidiaries_included" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="qualification_indicator" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBEmployeeCount", propOrder = { - -}) -public class DNBEmployeeCount { - - protected Integer employees; - @XmlElement(name = "employees_text") - protected String employeesText; - protected Boolean estimated; - @XmlElement(name = "subsidiaries_included") - protected Boolean subsidiariesIncluded; - @XmlElement(name = "qualification_indicator") - protected String qualificationIndicator; - - /** - * Gets the value of the employees property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEmployees() { - return employees; - } - - /** - * Sets the value of the employees property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEmployees(Integer value) { - this.employees = value; - } - - /** - * Gets the value of the employeesText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmployeesText() { - return employeesText; - } - - /** - * Sets the value of the employeesText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmployeesText(String value) { - this.employeesText = value; - } - - /** - * Gets the value of the estimated property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isEstimated() { - return estimated; - } - - /** - * Sets the value of the estimated property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setEstimated(Boolean value) { - this.estimated = value; - } - - /** - * Gets the value of the subsidiariesIncluded property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isSubsidiariesIncluded() { - return subsidiariesIncluded; - } - - /** - * Sets the value of the subsidiariesIncluded property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setSubsidiariesIncluded(Boolean value) { - this.subsidiariesIncluded = value; - } - - /** - * Gets the value of the qualificationIndicator property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getQualificationIndicator() { - return qualificationIndicator; - } - - /** - * Sets the value of the qualificationIndicator property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setQualificationIndicator(String value) { - this.qualificationIndicator = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBEnterpriseManagement.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBEnterpriseManagement.java deleted file mode 100644 index 17dfac1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBEnterpriseManagement.java +++ /dev/null @@ -1,1363 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBEnterpriseManagement complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBEnterpriseManagement">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="quickcheck" type="{http://www.webservices.nl/soap/}DNBQuickCheck"/>
- *         <element name="main_branch_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="indate_indicator" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="registration_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="import_indicator" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="export_indicator" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="location_ownership" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="claims_indicator" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="paydex_score_earlier" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="average_high_credit" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="high_credit" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_payments" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="headquarters" type="{http://www.webservices.nl/soap/}DNBRelatedBusiness" minOccurs="0"/>
- *         <element name="parent" type="{http://www.webservices.nl/soap/}DNBRelatedBusiness" minOccurs="0"/>
- *         <element name="domestic_ultimate" type="{http://www.webservices.nl/soap/}DNBRelatedBusiness" minOccurs="0"/>
- *         <element name="global_ultimate" type="{http://www.webservices.nl/soap/}DNBRelatedBusiness" minOccurs="0"/>
- *         <element name="is_subsidiary_location" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="location_status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="accounts_audited" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="statement_consolidated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="figures_estimated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="figures_forecast" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="year_period" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="figures_final" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="opening_statement" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="figures_proforma" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="trial_balance" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="figures_signed" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="figures_restated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="figures_unbalanced" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="figures_qualified" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="accounts_receivable" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="liquid_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="inventory" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_current_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="accounts_payable" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_current_liabilities" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total_liabilities" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="net_income" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="quick_ratio" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="current_ratio" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="previous_net_worth" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="previous_sales" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="previous_statement_date" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="line_of_business" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="failure_score" type="{http://www.webservices.nl/soap/}DNBScoreGroupArray"/>
- *         <element name="credit_score" type="{http://www.webservices.nl/soap/}DNBScoreGroupArray"/>
- *         <element name="global_failure_score" type="{http://www.webservices.nl/soap/}DNBScoreGroupArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBEnterpriseManagement", propOrder = { - -}) -public class DNBEnterpriseManagement { - - @XmlElement(required = true) - protected DNBQuickCheck quickcheck; - @XmlElement(name = "main_branch_indication") - protected Boolean mainBranchIndication; - @XmlElement(name = "indate_indicator") - protected Boolean indateIndicator; - @XmlElement(name = "registration_type") - protected String registrationType; - @XmlElement(name = "import_indicator") - protected Boolean importIndicator; - @XmlElement(name = "export_indicator") - protected Boolean exportIndicator; - @XmlElement(name = "location_ownership") - protected String locationOwnership; - @XmlElement(name = "claims_indicator") - protected Boolean claimsIndicator; - @XmlElement(name = "paydex_score_earlier") - protected Integer paydexScoreEarlier; - @XmlElement(name = "average_high_credit") - protected Integer averageHighCredit; - @XmlElement(name = "high_credit") - protected Integer highCredit; - @XmlElement(name = "total_payments") - protected Integer totalPayments; - protected DNBRelatedBusiness headquarters; - protected DNBRelatedBusiness parent; - @XmlElement(name = "domestic_ultimate") - protected DNBRelatedBusiness domesticUltimate; - @XmlElement(name = "global_ultimate") - protected DNBRelatedBusiness globalUltimate; - @XmlElement(name = "is_subsidiary_location") - protected Boolean isSubsidiaryLocation; - @XmlElement(name = "location_status") - protected String locationStatus; - @XmlElement(name = "accounts_audited") - protected Boolean accountsAudited; - @XmlElement(name = "statement_consolidated") - protected Boolean statementConsolidated; - @XmlElement(name = "figures_estimated") - protected Boolean figuresEstimated; - @XmlElement(name = "figures_forecast") - protected Boolean figuresForecast; - @XmlElement(name = "year_period") - protected Boolean yearPeriod; - @XmlElement(name = "figures_final") - protected Boolean figuresFinal; - @XmlElement(name = "opening_statement") - protected Boolean openingStatement; - @XmlElement(name = "figures_proforma") - protected Boolean figuresProforma; - @XmlElement(name = "trial_balance") - protected Boolean trialBalance; - @XmlElement(name = "figures_signed") - protected Boolean figuresSigned; - @XmlElement(name = "figures_restated") - protected Boolean figuresRestated; - @XmlElement(name = "figures_unbalanced") - protected Boolean figuresUnbalanced; - @XmlElement(name = "figures_qualified") - protected Boolean figuresQualified; - @XmlElement(name = "accounts_receivable") - protected Integer accountsReceivable; - @XmlElement(name = "liquid_assets") - protected Integer liquidAssets; - protected Integer inventory; - @XmlElement(name = "total_current_assets") - protected Integer totalCurrentAssets; - @XmlElement(name = "total_assets") - protected Integer totalAssets; - @XmlElement(name = "accounts_payable") - protected Integer accountsPayable; - @XmlElement(name = "total_current_liabilities") - protected Integer totalCurrentLiabilities; - @XmlElement(name = "total_liabilities") - protected Integer totalLiabilities; - @XmlElement(name = "net_income") - protected Integer netIncome; - @XmlElement(name = "quick_ratio") - protected BigDecimal quickRatio; - @XmlElement(name = "current_ratio") - protected BigDecimal currentRatio; - @XmlElement(name = "previous_net_worth") - protected Integer previousNetWorth; - @XmlElement(name = "previous_sales") - protected Integer previousSales; - @XmlElement(name = "previous_statement_date") - protected String previousStatementDate; - @XmlElement(name = "line_of_business") - protected String lineOfBusiness; - @XmlElement(name = "failure_score", required = true) - protected DNBScoreGroupArray failureScore; - @XmlElement(name = "credit_score", required = true) - protected DNBScoreGroupArray creditScore; - @XmlElement(name = "global_failure_score", required = true) - protected DNBScoreGroupArray globalFailureScore; - - /** - * Gets the value of the quickcheck property. - * - * @return - * possible object is - * {@link DNBQuickCheck } - * - */ - public DNBQuickCheck getQuickcheck() { - return quickcheck; - } - - /** - * Sets the value of the quickcheck property. - * - * @param value - * allowed object is - * {@link DNBQuickCheck } - * - */ - public void setQuickcheck(DNBQuickCheck value) { - this.quickcheck = value; - } - - /** - * Gets the value of the mainBranchIndication property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isMainBranchIndication() { - return mainBranchIndication; - } - - /** - * Sets the value of the mainBranchIndication property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setMainBranchIndication(Boolean value) { - this.mainBranchIndication = value; - } - - /** - * Gets the value of the indateIndicator property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndateIndicator() { - return indateIndicator; - } - - /** - * Sets the value of the indateIndicator property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndateIndicator(Boolean value) { - this.indateIndicator = value; - } - - /** - * Gets the value of the registrationType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistrationType() { - return registrationType; - } - - /** - * Sets the value of the registrationType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistrationType(String value) { - this.registrationType = value; - } - - /** - * Gets the value of the importIndicator property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isImportIndicator() { - return importIndicator; - } - - /** - * Sets the value of the importIndicator property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setImportIndicator(Boolean value) { - this.importIndicator = value; - } - - /** - * Gets the value of the exportIndicator property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isExportIndicator() { - return exportIndicator; - } - - /** - * Sets the value of the exportIndicator property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setExportIndicator(Boolean value) { - this.exportIndicator = value; - } - - /** - * Gets the value of the locationOwnership property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocationOwnership() { - return locationOwnership; - } - - /** - * Sets the value of the locationOwnership property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocationOwnership(String value) { - this.locationOwnership = value; - } - - /** - * Gets the value of the claimsIndicator property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isClaimsIndicator() { - return claimsIndicator; - } - - /** - * Sets the value of the claimsIndicator property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setClaimsIndicator(Boolean value) { - this.claimsIndicator = value; - } - - /** - * Gets the value of the paydexScoreEarlier property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPaydexScoreEarlier() { - return paydexScoreEarlier; - } - - /** - * Sets the value of the paydexScoreEarlier property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPaydexScoreEarlier(Integer value) { - this.paydexScoreEarlier = value; - } - - /** - * Gets the value of the averageHighCredit property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAverageHighCredit() { - return averageHighCredit; - } - - /** - * Sets the value of the averageHighCredit property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAverageHighCredit(Integer value) { - this.averageHighCredit = value; - } - - /** - * Gets the value of the highCredit property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHighCredit() { - return highCredit; - } - - /** - * Sets the value of the highCredit property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHighCredit(Integer value) { - this.highCredit = value; - } - - /** - * Gets the value of the totalPayments property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalPayments() { - return totalPayments; - } - - /** - * Sets the value of the totalPayments property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalPayments(Integer value) { - this.totalPayments = value; - } - - /** - * Gets the value of the headquarters property. - * - * @return - * possible object is - * {@link DNBRelatedBusiness } - * - */ - public DNBRelatedBusiness getHeadquarters() { - return headquarters; - } - - /** - * Sets the value of the headquarters property. - * - * @param value - * allowed object is - * {@link DNBRelatedBusiness } - * - */ - public void setHeadquarters(DNBRelatedBusiness value) { - this.headquarters = value; - } - - /** - * Gets the value of the parent property. - * - * @return - * possible object is - * {@link DNBRelatedBusiness } - * - */ - public DNBRelatedBusiness getParent() { - return parent; - } - - /** - * Sets the value of the parent property. - * - * @param value - * allowed object is - * {@link DNBRelatedBusiness } - * - */ - public void setParent(DNBRelatedBusiness value) { - this.parent = value; - } - - /** - * Gets the value of the domesticUltimate property. - * - * @return - * possible object is - * {@link DNBRelatedBusiness } - * - */ - public DNBRelatedBusiness getDomesticUltimate() { - return domesticUltimate; - } - - /** - * Sets the value of the domesticUltimate property. - * - * @param value - * allowed object is - * {@link DNBRelatedBusiness } - * - */ - public void setDomesticUltimate(DNBRelatedBusiness value) { - this.domesticUltimate = value; - } - - /** - * Gets the value of the globalUltimate property. - * - * @return - * possible object is - * {@link DNBRelatedBusiness } - * - */ - public DNBRelatedBusiness getGlobalUltimate() { - return globalUltimate; - } - - /** - * Sets the value of the globalUltimate property. - * - * @param value - * allowed object is - * {@link DNBRelatedBusiness } - * - */ - public void setGlobalUltimate(DNBRelatedBusiness value) { - this.globalUltimate = value; - } - - /** - * Gets the value of the isSubsidiaryLocation property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIsSubsidiaryLocation() { - return isSubsidiaryLocation; - } - - /** - * Sets the value of the isSubsidiaryLocation property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIsSubsidiaryLocation(Boolean value) { - this.isSubsidiaryLocation = value; - } - - /** - * Gets the value of the locationStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocationStatus() { - return locationStatus; - } - - /** - * Sets the value of the locationStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocationStatus(String value) { - this.locationStatus = value; - } - - /** - * Gets the value of the accountsAudited property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isAccountsAudited() { - return accountsAudited; - } - - /** - * Sets the value of the accountsAudited property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAccountsAudited(Boolean value) { - this.accountsAudited = value; - } - - /** - * Gets the value of the statementConsolidated property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isStatementConsolidated() { - return statementConsolidated; - } - - /** - * Sets the value of the statementConsolidated property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setStatementConsolidated(Boolean value) { - this.statementConsolidated = value; - } - - /** - * Gets the value of the figuresEstimated property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isFiguresEstimated() { - return figuresEstimated; - } - - /** - * Sets the value of the figuresEstimated property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setFiguresEstimated(Boolean value) { - this.figuresEstimated = value; - } - - /** - * Gets the value of the figuresForecast property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isFiguresForecast() { - return figuresForecast; - } - - /** - * Sets the value of the figuresForecast property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setFiguresForecast(Boolean value) { - this.figuresForecast = value; - } - - /** - * Gets the value of the yearPeriod property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isYearPeriod() { - return yearPeriod; - } - - /** - * Sets the value of the yearPeriod property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setYearPeriod(Boolean value) { - this.yearPeriod = value; - } - - /** - * Gets the value of the figuresFinal property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isFiguresFinal() { - return figuresFinal; - } - - /** - * Sets the value of the figuresFinal property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setFiguresFinal(Boolean value) { - this.figuresFinal = value; - } - - /** - * Gets the value of the openingStatement property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isOpeningStatement() { - return openingStatement; - } - - /** - * Sets the value of the openingStatement property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setOpeningStatement(Boolean value) { - this.openingStatement = value; - } - - /** - * Gets the value of the figuresProforma property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isFiguresProforma() { - return figuresProforma; - } - - /** - * Sets the value of the figuresProforma property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setFiguresProforma(Boolean value) { - this.figuresProforma = value; - } - - /** - * Gets the value of the trialBalance property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isTrialBalance() { - return trialBalance; - } - - /** - * Sets the value of the trialBalance property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setTrialBalance(Boolean value) { - this.trialBalance = value; - } - - /** - * Gets the value of the figuresSigned property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isFiguresSigned() { - return figuresSigned; - } - - /** - * Sets the value of the figuresSigned property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setFiguresSigned(Boolean value) { - this.figuresSigned = value; - } - - /** - * Gets the value of the figuresRestated property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isFiguresRestated() { - return figuresRestated; - } - - /** - * Sets the value of the figuresRestated property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setFiguresRestated(Boolean value) { - this.figuresRestated = value; - } - - /** - * Gets the value of the figuresUnbalanced property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isFiguresUnbalanced() { - return figuresUnbalanced; - } - - /** - * Sets the value of the figuresUnbalanced property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setFiguresUnbalanced(Boolean value) { - this.figuresUnbalanced = value; - } - - /** - * Gets the value of the figuresQualified property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isFiguresQualified() { - return figuresQualified; - } - - /** - * Sets the value of the figuresQualified property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setFiguresQualified(Boolean value) { - this.figuresQualified = value; - } - - /** - * Gets the value of the accountsReceivable property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAccountsReceivable() { - return accountsReceivable; - } - - /** - * Sets the value of the accountsReceivable property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAccountsReceivable(Integer value) { - this.accountsReceivable = value; - } - - /** - * Gets the value of the liquidAssets property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLiquidAssets() { - return liquidAssets; - } - - /** - * Sets the value of the liquidAssets property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLiquidAssets(Integer value) { - this.liquidAssets = value; - } - - /** - * Gets the value of the inventory property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getInventory() { - return inventory; - } - - /** - * Sets the value of the inventory property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setInventory(Integer value) { - this.inventory = value; - } - - /** - * Gets the value of the totalCurrentAssets property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalCurrentAssets() { - return totalCurrentAssets; - } - - /** - * Sets the value of the totalCurrentAssets property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalCurrentAssets(Integer value) { - this.totalCurrentAssets = value; - } - - /** - * Gets the value of the totalAssets property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalAssets() { - return totalAssets; - } - - /** - * Sets the value of the totalAssets property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalAssets(Integer value) { - this.totalAssets = value; - } - - /** - * Gets the value of the accountsPayable property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAccountsPayable() { - return accountsPayable; - } - - /** - * Sets the value of the accountsPayable property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAccountsPayable(Integer value) { - this.accountsPayable = value; - } - - /** - * Gets the value of the totalCurrentLiabilities property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalCurrentLiabilities() { - return totalCurrentLiabilities; - } - - /** - * Sets the value of the totalCurrentLiabilities property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalCurrentLiabilities(Integer value) { - this.totalCurrentLiabilities = value; - } - - /** - * Gets the value of the totalLiabilities property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotalLiabilities() { - return totalLiabilities; - } - - /** - * Sets the value of the totalLiabilities property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotalLiabilities(Integer value) { - this.totalLiabilities = value; - } - - /** - * Gets the value of the netIncome property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getNetIncome() { - return netIncome; - } - - /** - * Sets the value of the netIncome property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setNetIncome(Integer value) { - this.netIncome = value; - } - - /** - * Gets the value of the quickRatio property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getQuickRatio() { - return quickRatio; - } - - /** - * Sets the value of the quickRatio property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setQuickRatio(BigDecimal value) { - this.quickRatio = value; - } - - /** - * Gets the value of the currentRatio property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getCurrentRatio() { - return currentRatio; - } - - /** - * Sets the value of the currentRatio property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setCurrentRatio(BigDecimal value) { - this.currentRatio = value; - } - - /** - * Gets the value of the previousNetWorth property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPreviousNetWorth() { - return previousNetWorth; - } - - /** - * Sets the value of the previousNetWorth property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPreviousNetWorth(Integer value) { - this.previousNetWorth = value; - } - - /** - * Gets the value of the previousSales property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPreviousSales() { - return previousSales; - } - - /** - * Sets the value of the previousSales property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPreviousSales(Integer value) { - this.previousSales = value; - } - - /** - * Gets the value of the previousStatementDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPreviousStatementDate() { - return previousStatementDate; - } - - /** - * Sets the value of the previousStatementDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPreviousStatementDate(String value) { - this.previousStatementDate = value; - } - - /** - * Gets the value of the lineOfBusiness property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLineOfBusiness() { - return lineOfBusiness; - } - - /** - * Sets the value of the lineOfBusiness property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLineOfBusiness(String value) { - this.lineOfBusiness = value; - } - - /** - * Gets the value of the failureScore property. - * - * @return - * possible object is - * {@link DNBScoreGroupArray } - * - */ - public DNBScoreGroupArray getFailureScore() { - return failureScore; - } - - /** - * Sets the value of the failureScore property. - * - * @param value - * allowed object is - * {@link DNBScoreGroupArray } - * - */ - public void setFailureScore(DNBScoreGroupArray value) { - this.failureScore = value; - } - - /** - * Gets the value of the creditScore property. - * - * @return - * possible object is - * {@link DNBScoreGroupArray } - * - */ - public DNBScoreGroupArray getCreditScore() { - return creditScore; - } - - /** - * Sets the value of the creditScore property. - * - * @param value - * allowed object is - * {@link DNBScoreGroupArray } - * - */ - public void setCreditScore(DNBScoreGroupArray value) { - this.creditScore = value; - } - - /** - * Gets the value of the globalFailureScore property. - * - * @return - * possible object is - * {@link DNBScoreGroupArray } - * - */ - public DNBScoreGroupArray getGlobalFailureScore() { - return globalFailureScore; - } - - /** - * Sets the value of the globalFailureScore property. - * - * @param value - * allowed object is - * {@link DNBScoreGroupArray } - * - */ - public void setGlobalFailureScore(DNBScoreGroupArray value) { - this.globalFailureScore = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketing.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketing.java deleted file mode 100644 index 92da322..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketing.java +++ /dev/null @@ -1,358 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBMarketing complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBMarketing">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="duns" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="business_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="business_number_type" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="primary_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="former_duns" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="former_primary_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DNBAddress"/>
- *         <element name="country_calling_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="marketability_indication" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBMarketing", propOrder = { - -}) -public class DNBMarketing { - - @XmlElement(required = true) - protected String duns; - @XmlElement(name = "business_number") - protected String businessNumber; - @XmlElement(name = "business_number_type") - protected Integer businessNumberType; - @XmlElement(name = "primary_name") - protected String primaryName; - @XmlElement(name = "trade_name") - protected String tradeName; - @XmlElement(name = "former_duns") - protected String formerDuns; - @XmlElement(name = "former_primary_name") - protected String formerPrimaryName; - @XmlElement(name = "establishment_address", required = true) - protected DNBAddress establishmentAddress; - @XmlElement(name = "country_calling_code") - protected String countryCallingCode; - @XmlElement(name = "phone_number") - protected String phoneNumber; - @XmlElement(name = "fax_number") - protected String faxNumber; - @XmlElement(name = "marketability_indication") - protected boolean marketabilityIndication; - - /** - * Gets the value of the duns property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDuns() { - return duns; - } - - /** - * Sets the value of the duns property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDuns(String value) { - this.duns = value; - } - - /** - * Gets the value of the businessNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBusinessNumber() { - return businessNumber; - } - - /** - * Sets the value of the businessNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBusinessNumber(String value) { - this.businessNumber = value; - } - - /** - * Gets the value of the businessNumberType property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getBusinessNumberType() { - return businessNumberType; - } - - /** - * Sets the value of the businessNumberType property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setBusinessNumberType(Integer value) { - this.businessNumberType = value; - } - - /** - * Gets the value of the primaryName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimaryName() { - return primaryName; - } - - /** - * Sets the value of the primaryName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimaryName(String value) { - this.primaryName = value; - } - - /** - * Gets the value of the tradeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName() { - return tradeName; - } - - /** - * Sets the value of the tradeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName(String value) { - this.tradeName = value; - } - - /** - * Gets the value of the formerDuns property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormerDuns() { - return formerDuns; - } - - /** - * Sets the value of the formerDuns property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormerDuns(String value) { - this.formerDuns = value; - } - - /** - * Gets the value of the formerPrimaryName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormerPrimaryName() { - return formerPrimaryName; - } - - /** - * Sets the value of the formerPrimaryName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormerPrimaryName(String value) { - this.formerPrimaryName = value; - } - - /** - * Gets the value of the establishmentAddress property. - * - * @return - * possible object is - * {@link DNBAddress } - * - */ - public DNBAddress getEstablishmentAddress() { - return establishmentAddress; - } - - /** - * Sets the value of the establishmentAddress property. - * - * @param value - * allowed object is - * {@link DNBAddress } - * - */ - public void setEstablishmentAddress(DNBAddress value) { - this.establishmentAddress = value; - } - - /** - * Gets the value of the countryCallingCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryCallingCode() { - return countryCallingCode; - } - - /** - * Sets the value of the countryCallingCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryCallingCode(String value) { - this.countryCallingCode = value; - } - - /** - * Gets the value of the phoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPhoneNumber() { - return phoneNumber; - } - - /** - * Sets the value of the phoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPhoneNumber(String value) { - this.phoneNumber = value; - } - - /** - * Gets the value of the faxNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFaxNumber() { - return faxNumber; - } - - /** - * Sets the value of the faxNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFaxNumber(String value) { - this.faxNumber = value; - } - - /** - * Gets the value of the marketabilityIndication property. - * - */ - public boolean isMarketabilityIndication() { - return marketabilityIndication; - } - - /** - * Sets the value of the marketabilityIndication property. - * - */ - public void setMarketabilityIndication(boolean value) { - this.marketabilityIndication = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlus.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlus.java deleted file mode 100644 index d0a5f92..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlus.java +++ /dev/null @@ -1,958 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBMarketingPlus complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBMarketingPlus">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DNBAddress" minOccurs="0"/>
- *         <element name="correspondence_deliverability_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="establishment_deliverability_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="location_status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="is_subsidiary_location" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="legal_form" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="line_of_business" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="sic_activity_codes" type="{http://www.webservices.nl/soap/}DNBSICCodeArray" minOccurs="0"/>
- *         <element name="sic8_activity_codes" type="{http://www.webservices.nl/soap/}DNBSICCodeArray" minOccurs="0"/>
- *         <element name="local_activity_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="local_activity_code_type" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="start_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="ceo_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ceo_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="executive_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="statement_date" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="annual_sales" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="annual_sales_us" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="annual_sales_indication" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="net_worth" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="net_worth_us" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="net_income" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="net_income_us" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="import_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="export_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="agent_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="employees" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="employees_indication" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="employees_total" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="employees_total_indication" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="employees_total_includes_principals" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="report_date" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="out_of_business" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBMarketingPlus", propOrder = { - -}) -public class DNBMarketingPlus { - - @XmlElement(name = "correspondence_address") - protected DNBAddress correspondenceAddress; - @XmlElement(name = "correspondence_deliverability_indication") - protected Boolean correspondenceDeliverabilityIndication; - @XmlElement(name = "establishment_deliverability_indication") - protected Boolean establishmentDeliverabilityIndication; - @XmlElement(name = "location_status") - protected String locationStatus; - @XmlElement(name = "is_subsidiary_location") - protected Boolean isSubsidiaryLocation; - @XmlElement(name = "legal_form") - protected Integer legalForm; - @XmlElement(name = "line_of_business") - protected String lineOfBusiness; - @XmlElement(name = "sic_activity_codes") - protected DNBSICCodeArray sicActivityCodes; - @XmlElement(name = "sic8_activity_codes") - protected DNBSICCodeArray sic8ActivityCodes; - @XmlElement(name = "local_activity_code") - protected String localActivityCode; - @XmlElement(name = "local_activity_code_type") - protected Integer localActivityCodeType; - @XmlElement(name = "start_year") - protected Integer startYear; - @XmlElement(name = "ceo_name") - protected String ceoName; - @XmlElement(name = "ceo_title") - protected String ceoTitle; - @XmlElement(name = "executive_names") - protected StringArray executiveNames; - @XmlElement(name = "statement_date") - protected String statementDate; - protected String currency; - @XmlElement(name = "annual_sales") - protected Long annualSales; - @XmlElement(name = "annual_sales_us") - protected Long annualSalesUs; - @XmlElement(name = "annual_sales_indication") - protected Integer annualSalesIndication; - @XmlElement(name = "net_worth") - protected Long netWorth; - @XmlElement(name = "net_worth_us") - protected Long netWorthUs; - @XmlElement(name = "net_income") - protected Long netIncome; - @XmlElement(name = "net_income_us") - protected Long netIncomeUs; - @XmlElement(name = "import_indication") - protected Boolean importIndication; - @XmlElement(name = "export_indication") - protected Boolean exportIndication; - @XmlElement(name = "agent_indication") - protected Boolean agentIndication; - protected Integer employees; - @XmlElement(name = "employees_indication") - protected Integer employeesIndication; - @XmlElement(name = "employees_total") - protected Integer employeesTotal; - @XmlElement(name = "employees_total_indication") - protected Integer employeesTotalIndication; - @XmlElement(name = "employees_total_includes_principals") - protected Boolean employeesTotalIncludesPrincipals; - @XmlElement(name = "report_date") - protected String reportDate; - @XmlElement(name = "out_of_business") - protected Boolean outOfBusiness; - - /** - * Gets the value of the correspondenceAddress property. - * - * @return - * possible object is - * {@link DNBAddress } - * - */ - public DNBAddress getCorrespondenceAddress() { - return correspondenceAddress; - } - - /** - * Sets the value of the correspondenceAddress property. - * - * @param value - * allowed object is - * {@link DNBAddress } - * - */ - public void setCorrespondenceAddress(DNBAddress value) { - this.correspondenceAddress = value; - } - - /** - * Gets the value of the correspondenceDeliverabilityIndication property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isCorrespondenceDeliverabilityIndication() { - return correspondenceDeliverabilityIndication; - } - - /** - * Sets the value of the correspondenceDeliverabilityIndication property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setCorrespondenceDeliverabilityIndication(Boolean value) { - this.correspondenceDeliverabilityIndication = value; - } - - /** - * Gets the value of the establishmentDeliverabilityIndication property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isEstablishmentDeliverabilityIndication() { - return establishmentDeliverabilityIndication; - } - - /** - * Sets the value of the establishmentDeliverabilityIndication property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setEstablishmentDeliverabilityIndication(Boolean value) { - this.establishmentDeliverabilityIndication = value; - } - - /** - * Gets the value of the locationStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocationStatus() { - return locationStatus; - } - - /** - * Sets the value of the locationStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocationStatus(String value) { - this.locationStatus = value; - } - - /** - * Gets the value of the isSubsidiaryLocation property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIsSubsidiaryLocation() { - return isSubsidiaryLocation; - } - - /** - * Sets the value of the isSubsidiaryLocation property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIsSubsidiaryLocation(Boolean value) { - this.isSubsidiaryLocation = value; - } - - /** - * Gets the value of the legalForm property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLegalForm() { - return legalForm; - } - - /** - * Sets the value of the legalForm property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLegalForm(Integer value) { - this.legalForm = value; - } - - /** - * Gets the value of the lineOfBusiness property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLineOfBusiness() { - return lineOfBusiness; - } - - /** - * Sets the value of the lineOfBusiness property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLineOfBusiness(String value) { - this.lineOfBusiness = value; - } - - /** - * Gets the value of the sicActivityCodes property. - * - * @return - * possible object is - * {@link DNBSICCodeArray } - * - */ - public DNBSICCodeArray getSicActivityCodes() { - return sicActivityCodes; - } - - /** - * Sets the value of the sicActivityCodes property. - * - * @param value - * allowed object is - * {@link DNBSICCodeArray } - * - */ - public void setSicActivityCodes(DNBSICCodeArray value) { - this.sicActivityCodes = value; - } - - /** - * Gets the value of the sic8ActivityCodes property. - * - * @return - * possible object is - * {@link DNBSICCodeArray } - * - */ - public DNBSICCodeArray getSic8ActivityCodes() { - return sic8ActivityCodes; - } - - /** - * Sets the value of the sic8ActivityCodes property. - * - * @param value - * allowed object is - * {@link DNBSICCodeArray } - * - */ - public void setSic8ActivityCodes(DNBSICCodeArray value) { - this.sic8ActivityCodes = value; - } - - /** - * Gets the value of the localActivityCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocalActivityCode() { - return localActivityCode; - } - - /** - * Sets the value of the localActivityCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocalActivityCode(String value) { - this.localActivityCode = value; - } - - /** - * Gets the value of the localActivityCodeType property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLocalActivityCodeType() { - return localActivityCodeType; - } - - /** - * Sets the value of the localActivityCodeType property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLocalActivityCodeType(Integer value) { - this.localActivityCodeType = value; - } - - /** - * Gets the value of the startYear property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getStartYear() { - return startYear; - } - - /** - * Sets the value of the startYear property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setStartYear(Integer value) { - this.startYear = value; - } - - /** - * Gets the value of the ceoName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCeoName() { - return ceoName; - } - - /** - * Sets the value of the ceoName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCeoName(String value) { - this.ceoName = value; - } - - /** - * Gets the value of the ceoTitle property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCeoTitle() { - return ceoTitle; - } - - /** - * Sets the value of the ceoTitle property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCeoTitle(String value) { - this.ceoTitle = value; - } - - /** - * Gets the value of the executiveNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getExecutiveNames() { - return executiveNames; - } - - /** - * Sets the value of the executiveNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setExecutiveNames(StringArray value) { - this.executiveNames = value; - } - - /** - * Gets the value of the statementDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatementDate() { - return statementDate; - } - - /** - * Sets the value of the statementDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatementDate(String value) { - this.statementDate = value; - } - - /** - * Gets the value of the currency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCurrency() { - return currency; - } - - /** - * Sets the value of the currency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCurrency(String value) { - this.currency = value; - } - - /** - * Gets the value of the annualSales property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getAnnualSales() { - return annualSales; - } - - /** - * Sets the value of the annualSales property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setAnnualSales(Long value) { - this.annualSales = value; - } - - /** - * Gets the value of the annualSalesUs property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getAnnualSalesUs() { - return annualSalesUs; - } - - /** - * Sets the value of the annualSalesUs property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setAnnualSalesUs(Long value) { - this.annualSalesUs = value; - } - - /** - * Gets the value of the annualSalesIndication property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAnnualSalesIndication() { - return annualSalesIndication; - } - - /** - * Sets the value of the annualSalesIndication property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAnnualSalesIndication(Integer value) { - this.annualSalesIndication = value; - } - - /** - * Gets the value of the netWorth property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getNetWorth() { - return netWorth; - } - - /** - * Sets the value of the netWorth property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setNetWorth(Long value) { - this.netWorth = value; - } - - /** - * Gets the value of the netWorthUs property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getNetWorthUs() { - return netWorthUs; - } - - /** - * Sets the value of the netWorthUs property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setNetWorthUs(Long value) { - this.netWorthUs = value; - } - - /** - * Gets the value of the netIncome property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getNetIncome() { - return netIncome; - } - - /** - * Sets the value of the netIncome property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setNetIncome(Long value) { - this.netIncome = value; - } - - /** - * Gets the value of the netIncomeUs property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getNetIncomeUs() { - return netIncomeUs; - } - - /** - * Sets the value of the netIncomeUs property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setNetIncomeUs(Long value) { - this.netIncomeUs = value; - } - - /** - * Gets the value of the importIndication property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isImportIndication() { - return importIndication; - } - - /** - * Sets the value of the importIndication property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setImportIndication(Boolean value) { - this.importIndication = value; - } - - /** - * Gets the value of the exportIndication property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isExportIndication() { - return exportIndication; - } - - /** - * Sets the value of the exportIndication property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setExportIndication(Boolean value) { - this.exportIndication = value; - } - - /** - * Gets the value of the agentIndication property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isAgentIndication() { - return agentIndication; - } - - /** - * Sets the value of the agentIndication property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAgentIndication(Boolean value) { - this.agentIndication = value; - } - - /** - * Gets the value of the employees property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEmployees() { - return employees; - } - - /** - * Sets the value of the employees property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEmployees(Integer value) { - this.employees = value; - } - - /** - * Gets the value of the employeesIndication property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEmployeesIndication() { - return employeesIndication; - } - - /** - * Sets the value of the employeesIndication property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEmployeesIndication(Integer value) { - this.employeesIndication = value; - } - - /** - * Gets the value of the employeesTotal property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEmployeesTotal() { - return employeesTotal; - } - - /** - * Sets the value of the employeesTotal property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEmployeesTotal(Integer value) { - this.employeesTotal = value; - } - - /** - * Gets the value of the employeesTotalIndication property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEmployeesTotalIndication() { - return employeesTotalIndication; - } - - /** - * Sets the value of the employeesTotalIndication property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEmployeesTotalIndication(Integer value) { - this.employeesTotalIndication = value; - } - - /** - * Gets the value of the employeesTotalIncludesPrincipals property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isEmployeesTotalIncludesPrincipals() { - return employeesTotalIncludesPrincipals; - } - - /** - * Sets the value of the employeesTotalIncludesPrincipals property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setEmployeesTotalIncludesPrincipals(Boolean value) { - this.employeesTotalIncludesPrincipals = value; - } - - /** - * Gets the value of the reportDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReportDate() { - return reportDate; - } - - /** - * Sets the value of the reportDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReportDate(String value) { - this.reportDate = value; - } - - /** - * Gets the value of the outOfBusiness property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isOutOfBusiness() { - return outOfBusiness; - } - - /** - * Sets the value of the outOfBusiness property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setOutOfBusiness(Boolean value) { - this.outOfBusiness = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusLinkage.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusLinkage.java deleted file mode 100644 index 54c4505..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusLinkage.java +++ /dev/null @@ -1,366 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBMarketingPlusLinkage complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBMarketingPlusLinkage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="domestic_ultimate_duns" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="domestic_ultimate_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="domestic_ultimate_address" type="{http://www.webservices.nl/soap/}DNBAddress"/>
- *         <element name="global_ultimate_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="global_ultimate_duns" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="global_ultimate_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="global_ultimate_address" type="{http://www.webservices.nl/soap/}DNBAddress"/>
- *         <element name="headquarters_duns" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="headquarters_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="headquarters_address" type="{http://www.webservices.nl/soap/}DNBAddress"/>
- *         <element name="family_member_count" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="linkage_report_date" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBMarketingPlusLinkage", propOrder = { - -}) -public class DNBMarketingPlusLinkage { - - @XmlElement(name = "domestic_ultimate_duns") - protected String domesticUltimateDuns; - @XmlElement(name = "domestic_ultimate_name") - protected String domesticUltimateName; - @XmlElement(name = "domestic_ultimate_address", required = true) - protected DNBAddress domesticUltimateAddress; - @XmlElement(name = "global_ultimate_indication") - protected Boolean globalUltimateIndication; - @XmlElement(name = "global_ultimate_duns") - protected String globalUltimateDuns; - @XmlElement(name = "global_ultimate_name") - protected String globalUltimateName; - @XmlElement(name = "global_ultimate_address", required = true) - protected DNBAddress globalUltimateAddress; - @XmlElement(name = "headquarters_duns") - protected String headquartersDuns; - @XmlElement(name = "headquarters_name") - protected String headquartersName; - @XmlElement(name = "headquarters_address", required = true) - protected DNBAddress headquartersAddress; - @XmlElement(name = "family_member_count") - protected Integer familyMemberCount; - @XmlElement(name = "linkage_report_date") - protected String linkageReportDate; - - /** - * Gets the value of the domesticUltimateDuns property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomesticUltimateDuns() { - return domesticUltimateDuns; - } - - /** - * Sets the value of the domesticUltimateDuns property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomesticUltimateDuns(String value) { - this.domesticUltimateDuns = value; - } - - /** - * Gets the value of the domesticUltimateName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomesticUltimateName() { - return domesticUltimateName; - } - - /** - * Sets the value of the domesticUltimateName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomesticUltimateName(String value) { - this.domesticUltimateName = value; - } - - /** - * Gets the value of the domesticUltimateAddress property. - * - * @return - * possible object is - * {@link DNBAddress } - * - */ - public DNBAddress getDomesticUltimateAddress() { - return domesticUltimateAddress; - } - - /** - * Sets the value of the domesticUltimateAddress property. - * - * @param value - * allowed object is - * {@link DNBAddress } - * - */ - public void setDomesticUltimateAddress(DNBAddress value) { - this.domesticUltimateAddress = value; - } - - /** - * Gets the value of the globalUltimateIndication property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isGlobalUltimateIndication() { - return globalUltimateIndication; - } - - /** - * Sets the value of the globalUltimateIndication property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setGlobalUltimateIndication(Boolean value) { - this.globalUltimateIndication = value; - } - - /** - * Gets the value of the globalUltimateDuns property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGlobalUltimateDuns() { - return globalUltimateDuns; - } - - /** - * Sets the value of the globalUltimateDuns property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGlobalUltimateDuns(String value) { - this.globalUltimateDuns = value; - } - - /** - * Gets the value of the globalUltimateName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGlobalUltimateName() { - return globalUltimateName; - } - - /** - * Sets the value of the globalUltimateName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGlobalUltimateName(String value) { - this.globalUltimateName = value; - } - - /** - * Gets the value of the globalUltimateAddress property. - * - * @return - * possible object is - * {@link DNBAddress } - * - */ - public DNBAddress getGlobalUltimateAddress() { - return globalUltimateAddress; - } - - /** - * Sets the value of the globalUltimateAddress property. - * - * @param value - * allowed object is - * {@link DNBAddress } - * - */ - public void setGlobalUltimateAddress(DNBAddress value) { - this.globalUltimateAddress = value; - } - - /** - * Gets the value of the headquartersDuns property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHeadquartersDuns() { - return headquartersDuns; - } - - /** - * Sets the value of the headquartersDuns property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHeadquartersDuns(String value) { - this.headquartersDuns = value; - } - - /** - * Gets the value of the headquartersName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHeadquartersName() { - return headquartersName; - } - - /** - * Sets the value of the headquartersName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHeadquartersName(String value) { - this.headquartersName = value; - } - - /** - * Gets the value of the headquartersAddress property. - * - * @return - * possible object is - * {@link DNBAddress } - * - */ - public DNBAddress getHeadquartersAddress() { - return headquartersAddress; - } - - /** - * Sets the value of the headquartersAddress property. - * - * @param value - * allowed object is - * {@link DNBAddress } - * - */ - public void setHeadquartersAddress(DNBAddress value) { - this.headquartersAddress = value; - } - - /** - * Gets the value of the familyMemberCount property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getFamilyMemberCount() { - return familyMemberCount; - } - - /** - * Sets the value of the familyMemberCount property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setFamilyMemberCount(Integer value) { - this.familyMemberCount = value; - } - - /** - * Gets the value of the linkageReportDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLinkageReportDate() { - return linkageReportDate; - } - - /** - * Sets the value of the linkageReportDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLinkageReportDate(String value) { - this.linkageReportDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusLinkageResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusLinkageResult.java deleted file mode 100644 index f53800b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusLinkageResult.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBMarketingPlusLinkageResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBMarketingPlusLinkageResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="marketing" type="{http://www.webservices.nl/soap/}DNBMarketing"/>
- *         <element name="marketing_plus" type="{http://www.webservices.nl/soap/}DNBMarketingPlus"/>
- *         <element name="marketing_plus_linkage" type="{http://www.webservices.nl/soap/}DNBMarketingPlusLinkage"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBMarketingPlusLinkageResult", propOrder = { - -}) -public class DNBMarketingPlusLinkageResult { - - @XmlElement(required = true) - protected DNBMarketing marketing; - @XmlElement(name = "marketing_plus", required = true) - protected DNBMarketingPlus marketingPlus; - @XmlElement(name = "marketing_plus_linkage", required = true) - protected DNBMarketingPlusLinkage marketingPlusLinkage; - - /** - * Gets the value of the marketing property. - * - * @return - * possible object is - * {@link DNBMarketing } - * - */ - public DNBMarketing getMarketing() { - return marketing; - } - - /** - * Sets the value of the marketing property. - * - * @param value - * allowed object is - * {@link DNBMarketing } - * - */ - public void setMarketing(DNBMarketing value) { - this.marketing = value; - } - - /** - * Gets the value of the marketingPlus property. - * - * @return - * possible object is - * {@link DNBMarketingPlus } - * - */ - public DNBMarketingPlus getMarketingPlus() { - return marketingPlus; - } - - /** - * Sets the value of the marketingPlus property. - * - * @param value - * allowed object is - * {@link DNBMarketingPlus } - * - */ - public void setMarketingPlus(DNBMarketingPlus value) { - this.marketingPlus = value; - } - - /** - * Gets the value of the marketingPlusLinkage property. - * - * @return - * possible object is - * {@link DNBMarketingPlusLinkage } - * - */ - public DNBMarketingPlusLinkage getMarketingPlusLinkage() { - return marketingPlusLinkage; - } - - /** - * Sets the value of the marketingPlusLinkage property. - * - * @param value - * allowed object is - * {@link DNBMarketingPlusLinkage } - * - */ - public void setMarketingPlusLinkage(DNBMarketingPlusLinkage value) { - this.marketingPlusLinkage = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusResult.java deleted file mode 100644 index 7244f6f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMarketingPlusResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBMarketingPlusResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBMarketingPlusResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="marketing" type="{http://www.webservices.nl/soap/}DNBMarketing"/>
- *         <element name="marketing_plus" type="{http://www.webservices.nl/soap/}DNBMarketingPlus"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBMarketingPlusResult", propOrder = { - -}) -public class DNBMarketingPlusResult { - - @XmlElement(required = true) - protected DNBMarketing marketing; - @XmlElement(name = "marketing_plus", required = true) - protected DNBMarketingPlus marketingPlus; - - /** - * Gets the value of the marketing property. - * - * @return - * possible object is - * {@link DNBMarketing } - * - */ - public DNBMarketing getMarketing() { - return marketing; - } - - /** - * Sets the value of the marketing property. - * - * @param value - * allowed object is - * {@link DNBMarketing } - * - */ - public void setMarketing(DNBMarketing value) { - this.marketing = value; - } - - /** - * Gets the value of the marketingPlus property. - * - * @return - * possible object is - * {@link DNBMarketingPlus } - * - */ - public DNBMarketingPlus getMarketingPlus() { - return marketingPlus; - } - - /** - * Sets the value of the marketingPlus property. - * - * @param value - * allowed object is - * {@link DNBMarketingPlus } - * - */ - public void setMarketingPlus(DNBMarketingPlus value) { - this.marketingPlus = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMonetaryAmount.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMonetaryAmount.java deleted file mode 100644 index 161482b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBMonetaryAmount.java +++ /dev/null @@ -1,173 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBMonetaryAmount complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBMonetaryAmount">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="value_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="estimated" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="consolidated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBMonetaryAmount", propOrder = { - -}) -public class DNBMonetaryAmount { - - protected Integer value; - @XmlElement(name = "value_text") - protected String valueText; - protected Integer estimated; - protected Boolean consolidated; - protected String currency; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setValue(Integer value) { - this.value = value; - } - - /** - * Gets the value of the valueText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValueText() { - return valueText; - } - - /** - * Sets the value of the valueText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValueText(String value) { - this.valueText = value; - } - - /** - * Gets the value of the estimated property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEstimated() { - return estimated; - } - - /** - * Sets the value of the estimated property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEstimated(Integer value) { - this.estimated = value; - } - - /** - * Gets the value of the consolidated property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isConsolidated() { - return consolidated; - } - - /** - * Sets the value of the consolidated property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setConsolidated(Boolean value) { - this.consolidated = value; - } - - /** - * Gets the value of the currency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCurrency() { - return currency; - } - - /** - * Sets the value of the currency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCurrency(String value) { - this.currency = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBQuickCheck.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBQuickCheck.java deleted file mode 100644 index 8f392f3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBQuickCheck.java +++ /dev/null @@ -1,1712 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBQuickCheck complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBQuickCheck">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="duns" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="dnb_key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="enquiry_duns" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="business_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="business_number_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="business_number_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="address" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="subregion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country_calling_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ceo_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ceo_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="principal_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="principal_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="statement_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="debtor_inpossession" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="criminal_proceedings" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="suit_judgement" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="financial_embarrassment" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="financial_legal_events" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="operational_events" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="other_events" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="disaster" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="secured_filings" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="out_of_business" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="history_indicator" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="history_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="income_statement_date" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="income_statement_date_start" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="income_statement_date_end" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="financial_statement_date" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="incorporation_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="start_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="current_control_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="local_activity_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="local_activity_code_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="local_activity_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="sic_activity_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sic_activity_description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sic_version" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_form" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_form_description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="paydex_norm" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="paydex_score" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="dnb_rating" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="maximum_credit" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="maximum_credit_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="intangible_assets" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="net_worth" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="tangible_net_worth" type="{http://www.webservices.nl/soap/}DNBMonetaryAmount" minOccurs="0"/>
- *         <element name="sales" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="annual_sales" type="{http://www.webservices.nl/soap/}DNBMonetaryAmount" minOccurs="0"/>
- *         <element name="employees_primary" type="{http://www.webservices.nl/soap/}DNBEmployeeCount" minOccurs="0"/>
- *         <element name="employees_total" type="{http://www.webservices.nl/soap/}DNBEmployeeCount" minOccurs="0"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBQuickCheck", propOrder = { - -}) -public class DNBQuickCheck { - - @XmlElement(required = true) - protected String duns; - @XmlElement(name = "dnb_key", required = true) - protected String dnbKey; - @XmlElement(name = "enquiry_duns", required = true) - protected String enquiryDuns; - @XmlElement(name = "business_number") - protected String businessNumber; - @XmlElement(name = "business_number_type") - protected String businessNumberType; - @XmlElement(name = "business_number_description") - protected String businessNumberDescription; - @XmlElement(name = "trade_name", required = true) - protected String tradeName; - @XmlElement(required = true) - protected StringArray address; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String city; - protected String region; - protected String subregion; - @XmlElement(name = "country_calling_code", required = true) - protected String countryCallingCode; - @XmlElement(name = "phone_number") - protected String phoneNumber; - @XmlElement(name = "fax_number") - protected String faxNumber; - @XmlElement(required = true) - protected String country; - @XmlElement(name = "ceo_name") - protected String ceoName; - @XmlElement(name = "ceo_title") - protected String ceoTitle; - @XmlElement(name = "principal_name") - protected String principalName; - @XmlElement(name = "principal_title") - protected String principalTitle; - @XmlElement(required = true) - protected String currency; - @XmlElement(name = "statement_currency") - protected String statementCurrency; - @XmlElement(name = "debtor_inpossession") - protected Boolean debtorInpossession; - @XmlElement(name = "criminal_proceedings") - protected Boolean criminalProceedings; - @XmlElement(name = "suit_judgement") - protected Boolean suitJudgement; - @XmlElement(name = "financial_embarrassment") - protected Boolean financialEmbarrassment; - @XmlElement(name = "financial_legal_events") - protected Boolean financialLegalEvents; - @XmlElement(name = "operational_events") - protected Boolean operationalEvents; - @XmlElement(name = "other_events") - protected Boolean otherEvents; - protected Boolean disaster; - @XmlElement(name = "secured_filings") - protected Boolean securedFilings; - @XmlElement(name = "out_of_business") - protected Boolean outOfBusiness; - @XmlElement(name = "history_indicator") - protected String historyIndicator; - @XmlElement(name = "history_description") - protected String historyDescription; - @XmlElement(name = "income_statement_date") - protected String incomeStatementDate; - @XmlElement(name = "income_statement_date_start") - protected String incomeStatementDateStart; - @XmlElement(name = "income_statement_date_end") - protected String incomeStatementDateEnd; - @XmlElement(name = "financial_statement_date") - protected String financialStatementDate; - @XmlElement(name = "incorporation_year") - protected Integer incorporationYear; - @XmlElement(name = "start_year") - protected Integer startYear; - @XmlElement(name = "current_control_year") - protected Integer currentControlYear; - @XmlElement(name = "local_activity_code") - protected String localActivityCode; - @XmlElement(name = "local_activity_code_type") - protected String localActivityCodeType; - @XmlElement(name = "local_activity_description") - protected String localActivityDescription; - @XmlElement(name = "sic_activity_code", required = true) - protected String sicActivityCode; - @XmlElement(name = "sic_activity_description", required = true) - protected String sicActivityDescription; - @XmlElement(name = "sic_version", required = true) - protected String sicVersion; - @XmlElement(name = "legal_form", required = true) - protected String legalForm; - @XmlElement(name = "legal_form_description", required = true) - protected String legalFormDescription; - @XmlElement(name = "paydex_norm") - protected Integer paydexNorm; - @XmlElement(name = "paydex_score") - protected Integer paydexScore; - @XmlElement(name = "dnb_rating", required = true) - protected String dnbRating; - @XmlElement(name = "maximum_credit") - protected Integer maximumCredit; - @XmlElement(name = "maximum_credit_currency") - protected String maximumCreditCurrency; - @XmlElement(name = "intangible_assets") - protected Integer intangibleAssets; - @XmlElement(name = "net_worth") - protected Integer netWorth; - @XmlElement(name = "tangible_net_worth") - protected DNBMonetaryAmount tangibleNetWorth; - protected Integer sales; - @XmlElement(name = "annual_sales") - protected DNBMonetaryAmount annualSales; - @XmlElement(name = "employees_primary") - protected DNBEmployeeCount employeesPrimary; - @XmlElement(name = "employees_total") - protected DNBEmployeeCount employeesTotal; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - - /** - * Gets the value of the duns property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDuns() { - return duns; - } - - /** - * Sets the value of the duns property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDuns(String value) { - this.duns = value; - } - - /** - * Gets the value of the dnbKey property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDnbKey() { - return dnbKey; - } - - /** - * Sets the value of the dnbKey property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDnbKey(String value) { - this.dnbKey = value; - } - - /** - * Gets the value of the enquiryDuns property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnquiryDuns() { - return enquiryDuns; - } - - /** - * Sets the value of the enquiryDuns property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnquiryDuns(String value) { - this.enquiryDuns = value; - } - - /** - * Gets the value of the businessNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBusinessNumber() { - return businessNumber; - } - - /** - * Sets the value of the businessNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBusinessNumber(String value) { - this.businessNumber = value; - } - - /** - * Gets the value of the businessNumberType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBusinessNumberType() { - return businessNumberType; - } - - /** - * Sets the value of the businessNumberType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBusinessNumberType(String value) { - this.businessNumberType = value; - } - - /** - * Gets the value of the businessNumberDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBusinessNumberDescription() { - return businessNumberDescription; - } - - /** - * Sets the value of the businessNumberDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBusinessNumberDescription(String value) { - this.businessNumberDescription = value; - } - - /** - * Gets the value of the tradeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName() { - return tradeName; - } - - /** - * Sets the value of the tradeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName(String value) { - this.tradeName = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setAddress(StringArray value) { - this.address = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the region property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegion() { - return region; - } - - /** - * Sets the value of the region property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegion(String value) { - this.region = value; - } - - /** - * Gets the value of the subregion property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubregion() { - return subregion; - } - - /** - * Sets the value of the subregion property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubregion(String value) { - this.subregion = value; - } - - /** - * Gets the value of the countryCallingCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryCallingCode() { - return countryCallingCode; - } - - /** - * Sets the value of the countryCallingCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryCallingCode(String value) { - this.countryCallingCode = value; - } - - /** - * Gets the value of the phoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPhoneNumber() { - return phoneNumber; - } - - /** - * Sets the value of the phoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPhoneNumber(String value) { - this.phoneNumber = value; - } - - /** - * Gets the value of the faxNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFaxNumber() { - return faxNumber; - } - - /** - * Sets the value of the faxNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFaxNumber(String value) { - this.faxNumber = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the ceoName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCeoName() { - return ceoName; - } - - /** - * Sets the value of the ceoName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCeoName(String value) { - this.ceoName = value; - } - - /** - * Gets the value of the ceoTitle property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCeoTitle() { - return ceoTitle; - } - - /** - * Sets the value of the ceoTitle property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCeoTitle(String value) { - this.ceoTitle = value; - } - - /** - * Gets the value of the principalName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrincipalName() { - return principalName; - } - - /** - * Sets the value of the principalName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrincipalName(String value) { - this.principalName = value; - } - - /** - * Gets the value of the principalTitle property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrincipalTitle() { - return principalTitle; - } - - /** - * Sets the value of the principalTitle property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrincipalTitle(String value) { - this.principalTitle = value; - } - - /** - * Gets the value of the currency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCurrency() { - return currency; - } - - /** - * Sets the value of the currency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCurrency(String value) { - this.currency = value; - } - - /** - * Gets the value of the statementCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatementCurrency() { - return statementCurrency; - } - - /** - * Sets the value of the statementCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatementCurrency(String value) { - this.statementCurrency = value; - } - - /** - * Gets the value of the debtorInpossession property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isDebtorInpossession() { - return debtorInpossession; - } - - /** - * Sets the value of the debtorInpossession property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setDebtorInpossession(Boolean value) { - this.debtorInpossession = value; - } - - /** - * Gets the value of the criminalProceedings property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isCriminalProceedings() { - return criminalProceedings; - } - - /** - * Sets the value of the criminalProceedings property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setCriminalProceedings(Boolean value) { - this.criminalProceedings = value; - } - - /** - * Gets the value of the suitJudgement property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isSuitJudgement() { - return suitJudgement; - } - - /** - * Sets the value of the suitJudgement property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setSuitJudgement(Boolean value) { - this.suitJudgement = value; - } - - /** - * Gets the value of the financialEmbarrassment property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isFinancialEmbarrassment() { - return financialEmbarrassment; - } - - /** - * Sets the value of the financialEmbarrassment property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setFinancialEmbarrassment(Boolean value) { - this.financialEmbarrassment = value; - } - - /** - * Gets the value of the financialLegalEvents property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isFinancialLegalEvents() { - return financialLegalEvents; - } - - /** - * Sets the value of the financialLegalEvents property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setFinancialLegalEvents(Boolean value) { - this.financialLegalEvents = value; - } - - /** - * Gets the value of the operationalEvents property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isOperationalEvents() { - return operationalEvents; - } - - /** - * Sets the value of the operationalEvents property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setOperationalEvents(Boolean value) { - this.operationalEvents = value; - } - - /** - * Gets the value of the otherEvents property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isOtherEvents() { - return otherEvents; - } - - /** - * Sets the value of the otherEvents property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setOtherEvents(Boolean value) { - this.otherEvents = value; - } - - /** - * Gets the value of the disaster property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isDisaster() { - return disaster; - } - - /** - * Sets the value of the disaster property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setDisaster(Boolean value) { - this.disaster = value; - } - - /** - * Gets the value of the securedFilings property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isSecuredFilings() { - return securedFilings; - } - - /** - * Sets the value of the securedFilings property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setSecuredFilings(Boolean value) { - this.securedFilings = value; - } - - /** - * Gets the value of the outOfBusiness property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isOutOfBusiness() { - return outOfBusiness; - } - - /** - * Sets the value of the outOfBusiness property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setOutOfBusiness(Boolean value) { - this.outOfBusiness = value; - } - - /** - * Gets the value of the historyIndicator property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHistoryIndicator() { - return historyIndicator; - } - - /** - * Sets the value of the historyIndicator property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHistoryIndicator(String value) { - this.historyIndicator = value; - } - - /** - * Gets the value of the historyDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHistoryDescription() { - return historyDescription; - } - - /** - * Sets the value of the historyDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHistoryDescription(String value) { - this.historyDescription = value; - } - - /** - * Gets the value of the incomeStatementDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIncomeStatementDate() { - return incomeStatementDate; - } - - /** - * Sets the value of the incomeStatementDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIncomeStatementDate(String value) { - this.incomeStatementDate = value; - } - - /** - * Gets the value of the incomeStatementDateStart property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIncomeStatementDateStart() { - return incomeStatementDateStart; - } - - /** - * Sets the value of the incomeStatementDateStart property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIncomeStatementDateStart(String value) { - this.incomeStatementDateStart = value; - } - - /** - * Gets the value of the incomeStatementDateEnd property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIncomeStatementDateEnd() { - return incomeStatementDateEnd; - } - - /** - * Sets the value of the incomeStatementDateEnd property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIncomeStatementDateEnd(String value) { - this.incomeStatementDateEnd = value; - } - - /** - * Gets the value of the financialStatementDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinancialStatementDate() { - return financialStatementDate; - } - - /** - * Sets the value of the financialStatementDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinancialStatementDate(String value) { - this.financialStatementDate = value; - } - - /** - * Gets the value of the incorporationYear property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getIncorporationYear() { - return incorporationYear; - } - - /** - * Sets the value of the incorporationYear property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setIncorporationYear(Integer value) { - this.incorporationYear = value; - } - - /** - * Gets the value of the startYear property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getStartYear() { - return startYear; - } - - /** - * Sets the value of the startYear property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setStartYear(Integer value) { - this.startYear = value; - } - - /** - * Gets the value of the currentControlYear property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCurrentControlYear() { - return currentControlYear; - } - - /** - * Sets the value of the currentControlYear property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCurrentControlYear(Integer value) { - this.currentControlYear = value; - } - - /** - * Gets the value of the localActivityCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocalActivityCode() { - return localActivityCode; - } - - /** - * Sets the value of the localActivityCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocalActivityCode(String value) { - this.localActivityCode = value; - } - - /** - * Gets the value of the localActivityCodeType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocalActivityCodeType() { - return localActivityCodeType; - } - - /** - * Sets the value of the localActivityCodeType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocalActivityCodeType(String value) { - this.localActivityCodeType = value; - } - - /** - * Gets the value of the localActivityDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocalActivityDescription() { - return localActivityDescription; - } - - /** - * Sets the value of the localActivityDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocalActivityDescription(String value) { - this.localActivityDescription = value; - } - - /** - * Gets the value of the sicActivityCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSicActivityCode() { - return sicActivityCode; - } - - /** - * Sets the value of the sicActivityCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSicActivityCode(String value) { - this.sicActivityCode = value; - } - - /** - * Gets the value of the sicActivityDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSicActivityDescription() { - return sicActivityDescription; - } - - /** - * Sets the value of the sicActivityDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSicActivityDescription(String value) { - this.sicActivityDescription = value; - } - - /** - * Gets the value of the sicVersion property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSicVersion() { - return sicVersion; - } - - /** - * Sets the value of the sicVersion property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSicVersion(String value) { - this.sicVersion = value; - } - - /** - * Gets the value of the legalForm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalForm() { - return legalForm; - } - - /** - * Sets the value of the legalForm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalForm(String value) { - this.legalForm = value; - } - - /** - * Gets the value of the legalFormDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormDescription() { - return legalFormDescription; - } - - /** - * Sets the value of the legalFormDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormDescription(String value) { - this.legalFormDescription = value; - } - - /** - * Gets the value of the paydexNorm property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPaydexNorm() { - return paydexNorm; - } - - /** - * Sets the value of the paydexNorm property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPaydexNorm(Integer value) { - this.paydexNorm = value; - } - - /** - * Gets the value of the paydexScore property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPaydexScore() { - return paydexScore; - } - - /** - * Sets the value of the paydexScore property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPaydexScore(Integer value) { - this.paydexScore = value; - } - - /** - * Gets the value of the dnbRating property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDnbRating() { - return dnbRating; - } - - /** - * Sets the value of the dnbRating property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDnbRating(String value) { - this.dnbRating = value; - } - - /** - * Gets the value of the maximumCredit property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaximumCredit() { - return maximumCredit; - } - - /** - * Sets the value of the maximumCredit property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaximumCredit(Integer value) { - this.maximumCredit = value; - } - - /** - * Gets the value of the maximumCreditCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMaximumCreditCurrency() { - return maximumCreditCurrency; - } - - /** - * Sets the value of the maximumCreditCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMaximumCreditCurrency(String value) { - this.maximumCreditCurrency = value; - } - - /** - * Gets the value of the intangibleAssets property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getIntangibleAssets() { - return intangibleAssets; - } - - /** - * Sets the value of the intangibleAssets property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setIntangibleAssets(Integer value) { - this.intangibleAssets = value; - } - - /** - * Gets the value of the netWorth property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getNetWorth() { - return netWorth; - } - - /** - * Sets the value of the netWorth property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setNetWorth(Integer value) { - this.netWorth = value; - } - - /** - * Gets the value of the tangibleNetWorth property. - * - * @return - * possible object is - * {@link DNBMonetaryAmount } - * - */ - public DNBMonetaryAmount getTangibleNetWorth() { - return tangibleNetWorth; - } - - /** - * Sets the value of the tangibleNetWorth property. - * - * @param value - * allowed object is - * {@link DNBMonetaryAmount } - * - */ - public void setTangibleNetWorth(DNBMonetaryAmount value) { - this.tangibleNetWorth = value; - } - - /** - * Gets the value of the sales property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getSales() { - return sales; - } - - /** - * Sets the value of the sales property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setSales(Integer value) { - this.sales = value; - } - - /** - * Gets the value of the annualSales property. - * - * @return - * possible object is - * {@link DNBMonetaryAmount } - * - */ - public DNBMonetaryAmount getAnnualSales() { - return annualSales; - } - - /** - * Sets the value of the annualSales property. - * - * @param value - * allowed object is - * {@link DNBMonetaryAmount } - * - */ - public void setAnnualSales(DNBMonetaryAmount value) { - this.annualSales = value; - } - - /** - * Gets the value of the employeesPrimary property. - * - * @return - * possible object is - * {@link DNBEmployeeCount } - * - */ - public DNBEmployeeCount getEmployeesPrimary() { - return employeesPrimary; - } - - /** - * Sets the value of the employeesPrimary property. - * - * @param value - * allowed object is - * {@link DNBEmployeeCount } - * - */ - public void setEmployeesPrimary(DNBEmployeeCount value) { - this.employeesPrimary = value; - } - - /** - * Gets the value of the employeesTotal property. - * - * @return - * possible object is - * {@link DNBEmployeeCount } - * - */ - public DNBEmployeeCount getEmployeesTotal() { - return employeesTotal; - } - - /** - * Sets the value of the employeesTotal property. - * - * @param value - * allowed object is - * {@link DNBEmployeeCount } - * - */ - public void setEmployeesTotal(DNBEmployeeCount value) { - this.employeesTotal = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBRelatedBusiness.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBRelatedBusiness.java deleted file mode 100644 index 8be89b6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBRelatedBusiness.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBRelatedBusiness complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBRelatedBusiness">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="duns" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="dnb_key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBRelatedBusiness", propOrder = { - -}) -public class DNBRelatedBusiness { - - @XmlElement(required = true) - protected String duns; - @XmlElement(name = "dnb_key", required = true) - protected String dnbKey; - @XmlElement(name = "trade_name", required = true) - protected String tradeName; - @XmlElement(required = true) - protected String country; - - /** - * Gets the value of the duns property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDuns() { - return duns; - } - - /** - * Sets the value of the duns property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDuns(String value) { - this.duns = value; - } - - /** - * Gets the value of the dnbKey property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDnbKey() { - return dnbKey; - } - - /** - * Sets the value of the dnbKey property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDnbKey(String value) { - this.dnbKey = value; - } - - /** - * Gets the value of the tradeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName() { - return tradeName; - } - - /** - * Sets the value of the tradeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName(String value) { - this.tradeName = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBSICCode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBSICCode.java deleted file mode 100644 index f196588..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBSICCode.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBSICCode complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBSICCode">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBSICCode", propOrder = { - -}) -public class DNBSICCode { - - @XmlElement(required = true) - protected String code; - @XmlElement(required = true) - protected String description; - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBSICCodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBSICCodeArray.java deleted file mode 100644 index 4ef29c9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBSICCodeArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBSICCodeArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBSICCodeArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DNBSICCode" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBSICCodeArray", propOrder = { - "item" -}) -public class DNBSICCodeArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DNBSICCode } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBScoreGroup.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBScoreGroup.java deleted file mode 100644 index a47e09b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBScoreGroup.java +++ /dev/null @@ -1,365 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBScoreGroup complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBScoreGroup">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="score" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="score_commentaries" type="{http://www.webservices.nl/soap/}DNBCommentaryArray"/>
- *         <element name="score_class" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="national_percentile" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="score_override_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="incidence_of_default" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="score_date" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="industry_norm" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="industry_incidence_of_default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="industry_percentile" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="unnormalized_score" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="algorithm_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBScoreGroup", propOrder = { - -}) -public class DNBScoreGroup { - - protected Integer score; - @XmlElement(name = "score_commentaries", required = true) - protected DNBCommentaryArray scoreCommentaries; - @XmlElement(name = "score_class") - protected Boolean scoreClass; - @XmlElement(name = "national_percentile") - protected Integer nationalPercentile; - @XmlElement(name = "score_override_code") - protected String scoreOverrideCode; - @XmlElement(name = "incidence_of_default") - protected Integer incidenceOfDefault; - @XmlElement(name = "score_date") - protected String scoreDate; - @XmlElement(name = "industry_norm") - protected String industryNorm; - @XmlElement(name = "industry_incidence_of_default") - protected String industryIncidenceOfDefault; - @XmlElement(name = "industry_percentile") - protected Integer industryPercentile; - @XmlElement(name = "unnormalized_score") - protected String unnormalizedScore; - @XmlElement(name = "algorithm_id") - protected String algorithmId; - - /** - * Gets the value of the score property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getScore() { - return score; - } - - /** - * Sets the value of the score property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setScore(Integer value) { - this.score = value; - } - - /** - * Gets the value of the scoreCommentaries property. - * - * @return - * possible object is - * {@link DNBCommentaryArray } - * - */ - public DNBCommentaryArray getScoreCommentaries() { - return scoreCommentaries; - } - - /** - * Sets the value of the scoreCommentaries property. - * - * @param value - * allowed object is - * {@link DNBCommentaryArray } - * - */ - public void setScoreCommentaries(DNBCommentaryArray value) { - this.scoreCommentaries = value; - } - - /** - * Gets the value of the scoreClass property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isScoreClass() { - return scoreClass; - } - - /** - * Sets the value of the scoreClass property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setScoreClass(Boolean value) { - this.scoreClass = value; - } - - /** - * Gets the value of the nationalPercentile property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getNationalPercentile() { - return nationalPercentile; - } - - /** - * Sets the value of the nationalPercentile property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setNationalPercentile(Integer value) { - this.nationalPercentile = value; - } - - /** - * Gets the value of the scoreOverrideCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getScoreOverrideCode() { - return scoreOverrideCode; - } - - /** - * Sets the value of the scoreOverrideCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setScoreOverrideCode(String value) { - this.scoreOverrideCode = value; - } - - /** - * Gets the value of the incidenceOfDefault property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getIncidenceOfDefault() { - return incidenceOfDefault; - } - - /** - * Sets the value of the incidenceOfDefault property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setIncidenceOfDefault(Integer value) { - this.incidenceOfDefault = value; - } - - /** - * Gets the value of the scoreDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getScoreDate() { - return scoreDate; - } - - /** - * Sets the value of the scoreDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setScoreDate(String value) { - this.scoreDate = value; - } - - /** - * Gets the value of the industryNorm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndustryNorm() { - return industryNorm; - } - - /** - * Sets the value of the industryNorm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndustryNorm(String value) { - this.industryNorm = value; - } - - /** - * Gets the value of the industryIncidenceOfDefault property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndustryIncidenceOfDefault() { - return industryIncidenceOfDefault; - } - - /** - * Sets the value of the industryIncidenceOfDefault property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndustryIncidenceOfDefault(String value) { - this.industryIncidenceOfDefault = value; - } - - /** - * Gets the value of the industryPercentile property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getIndustryPercentile() { - return industryPercentile; - } - - /** - * Sets the value of the industryPercentile property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setIndustryPercentile(Integer value) { - this.industryPercentile = value; - } - - /** - * Gets the value of the unnormalizedScore property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUnnormalizedScore() { - return unnormalizedScore; - } - - /** - * Sets the value of the unnormalizedScore property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUnnormalizedScore(String value) { - this.unnormalizedScore = value; - } - - /** - * Gets the value of the algorithmId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlgorithmId() { - return algorithmId; - } - - /** - * Sets the value of the algorithmId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlgorithmId(String value) { - this.algorithmId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBScoreGroupArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBScoreGroupArray.java deleted file mode 100644 index a940a0b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DNBScoreGroupArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DNBScoreGroupArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNBScoreGroupArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DNBScoreGroup" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNBScoreGroupArray", propOrder = { - "item" -}) -public class DNBScoreGroupArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DNBScoreGroup } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/District.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/District.java deleted file mode 100644 index b9b759b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/District.java +++ /dev/null @@ -1,132 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for District complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="District">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeenteid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="provinciecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "District", propOrder = { - -}) -public class District { - - protected int gemeenteid; - @XmlElement(required = true) - protected String gemeentenaam; - protected int gemeentecode; - @XmlElement(required = true) - protected String provinciecode; - - /** - * Gets the value of the gemeenteid property. - * - */ - public int getGemeenteid() { - return gemeenteid; - } - - /** - * Sets the value of the gemeenteid property. - * - */ - public void setGemeenteid(int value) { - this.gemeenteid = value; - } - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the gemeentecode property. - * - */ - public int getGemeentecode() { - return gemeentecode; - } - - /** - * Sets the value of the gemeentecode property. - * - */ - public void setGemeentecode(int value) { - this.gemeentecode = value; - } - - /** - * Gets the value of the provinciecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvinciecode() { - return provinciecode; - } - - /** - * Sets the value of the provinciecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvinciecode(String value) { - this.provinciecode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DistrictArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DistrictArray.java deleted file mode 100644 index 031e7c2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DistrictArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DistrictArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DistrictArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}District" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DistrictArray", propOrder = { - "item" -}) -public class DistrictArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link District } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DistrictPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DistrictPagedResult.java deleted file mode 100644 index 901289a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DistrictPagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DistrictPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DistrictPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}DistrictArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DistrictPagedResult", propOrder = { - -}) -public class DistrictPagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected DistrictArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link DistrictArray } - * - */ - public DistrictArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link DistrictArray } - * - */ - public void setResults(DistrictArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbBusinessVerificationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbBusinessVerificationRequestType.java deleted file mode 100644 index befef79..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbBusinessVerificationRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbBusinessVerificationRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbBusinessVerificationRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbBusinessVerificationRequestType", propOrder = { - -}) -public class DnbBusinessVerificationRequestType { - - @XmlElement(name = "company_id", required = true) - protected String companyId; - @XmlElement(name = "company_id_type", required = true) - protected String companyIdType; - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - - /** - * Gets the value of the companyIdType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyIdType() { - return companyIdType; - } - - /** - * Sets the value of the companyIdType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyIdType(String value) { - this.companyIdType = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbBusinessVerificationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbBusinessVerificationResponseType.java deleted file mode 100644 index 96fafea..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbBusinessVerificationResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbBusinessVerificationResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbBusinessVerificationResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DNBBusinessVerification"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbBusinessVerificationResponseType", propOrder = { - -}) -public class DnbBusinessVerificationResponseType { - - @XmlElement(required = true) - protected DNBBusinessVerification out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DNBBusinessVerification } - * - */ - public DNBBusinessVerification getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DNBBusinessVerification } - * - */ - public void setOut(DNBBusinessVerification value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbEnterpriseManagementRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbEnterpriseManagementRequestType.java deleted file mode 100644 index 962bc0c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbEnterpriseManagementRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbEnterpriseManagementRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbEnterpriseManagementRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbEnterpriseManagementRequestType", propOrder = { - -}) -public class DnbEnterpriseManagementRequestType { - - @XmlElement(name = "company_id", required = true) - protected String companyId; - @XmlElement(name = "company_id_type", required = true) - protected String companyIdType; - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - - /** - * Gets the value of the companyIdType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyIdType() { - return companyIdType; - } - - /** - * Sets the value of the companyIdType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyIdType(String value) { - this.companyIdType = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbEnterpriseManagementResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbEnterpriseManagementResponseType.java deleted file mode 100644 index fe2181b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbEnterpriseManagementResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbEnterpriseManagementResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbEnterpriseManagementResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DNBEnterpriseManagement"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbEnterpriseManagementResponseType", propOrder = { - -}) -public class DnbEnterpriseManagementResponseType { - - @XmlElement(required = true) - protected DNBEnterpriseManagement out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DNBEnterpriseManagement } - * - */ - public DNBEnterpriseManagement getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DNBEnterpriseManagement } - * - */ - public void setOut(DNBEnterpriseManagement value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbGetReferenceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbGetReferenceRequestType.java deleted file mode 100644 index bfa3313..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbGetReferenceRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbGetReferenceRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbGetReferenceRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbGetReferenceRequestType", propOrder = { - -}) -public class DnbGetReferenceRequestType { - - @XmlElement(name = "company_id", required = true) - protected String companyId; - @XmlElement(name = "company_id_type", required = true) - protected String companyIdType; - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - - /** - * Gets the value of the companyIdType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyIdType() { - return companyIdType; - } - - /** - * Sets the value of the companyIdType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyIdType(String value) { - this.companyIdType = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbGetReferenceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbGetReferenceResponseType.java deleted file mode 100644 index 517442c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbGetReferenceResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbGetReferenceResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbGetReferenceResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DNBBusinessReference"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbGetReferenceResponseType", propOrder = { - -}) -public class DnbGetReferenceResponseType { - - @XmlElement(required = true) - protected DNBBusinessReference out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DNBBusinessReference } - * - */ - public DNBBusinessReference getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DNBBusinessReference } - * - */ - public void setOut(DNBBusinessReference value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbQuickCheckRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbQuickCheckRequestType.java deleted file mode 100644 index 999ea1e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbQuickCheckRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbQuickCheckRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbQuickCheckRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbQuickCheckRequestType", propOrder = { - -}) -public class DnbQuickCheckRequestType { - - @XmlElement(name = "company_id", required = true) - protected String companyId; - @XmlElement(name = "company_id_type", required = true) - protected String companyIdType; - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - - /** - * Gets the value of the companyIdType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyIdType() { - return companyIdType; - } - - /** - * Sets the value of the companyIdType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyIdType(String value) { - this.companyIdType = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbQuickCheckResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbQuickCheckResponseType.java deleted file mode 100644 index bcf42f9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbQuickCheckResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbQuickCheckResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbQuickCheckResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DNBQuickCheck"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbQuickCheckResponseType", propOrder = { - -}) -public class DnbQuickCheckResponseType { - - @XmlElement(required = true) - protected DNBQuickCheck out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DNBQuickCheck } - * - */ - public DNBQuickCheck getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DNBQuickCheck } - * - */ - public void setOut(DNBQuickCheck value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceRequestType.java deleted file mode 100644 index bce8cf4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceRequestType.java +++ /dev/null @@ -1,249 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbSearchReferenceRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbSearchReferenceRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="housenoaddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="cityname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbSearchReferenceRequestType", propOrder = { - -}) -public class DnbSearchReferenceRequestType { - - @XmlElement(required = true) - protected String name; - @XmlElement(required = true) - protected String streetname; - @XmlElement(required = true) - protected String houseno; - @XmlElement(required = true) - protected String housenoaddition; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String cityname; - @XmlElement(required = true) - protected String country; - protected int page; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the streetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetname() { - return streetname; - } - - /** - * Sets the value of the streetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetname(String value) { - this.streetname = value; - } - - /** - * Gets the value of the houseno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseno() { - return houseno; - } - - /** - * Sets the value of the houseno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseno(String value) { - this.houseno = value; - } - - /** - * Gets the value of the housenoaddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHousenoaddition() { - return housenoaddition; - } - - /** - * Sets the value of the housenoaddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHousenoaddition(String value) { - this.housenoaddition = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the cityname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCityname() { - return cityname; - } - - /** - * Sets the value of the cityname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCityname(String value) { - this.cityname = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceResponseType.java deleted file mode 100644 index fab3fe0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbSearchReferenceResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbSearchReferenceResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DNBBusinessReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbSearchReferenceResponseType", propOrder = { - -}) -public class DnbSearchReferenceResponseType { - - @XmlElement(required = true) - protected DNBBusinessReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DNBBusinessReferencePagedResult } - * - */ - public DNBBusinessReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DNBBusinessReferencePagedResult } - * - */ - public void setOut(DNBBusinessReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceV2RequestType.java deleted file mode 100644 index ff3640e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceV2RequestType.java +++ /dev/null @@ -1,276 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbSearchReferenceV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbSearchReferenceV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="housenoaddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="cityname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="region" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbSearchReferenceV2RequestType", propOrder = { - -}) -public class DnbSearchReferenceV2RequestType { - - @XmlElement(required = true) - protected String name; - @XmlElement(required = true) - protected String streetname; - @XmlElement(required = true) - protected String houseno; - @XmlElement(required = true) - protected String housenoaddition; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String cityname; - @XmlElement(required = true) - protected String region; - @XmlElement(required = true) - protected String country; - protected int page; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the streetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetname() { - return streetname; - } - - /** - * Sets the value of the streetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetname(String value) { - this.streetname = value; - } - - /** - * Gets the value of the houseno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseno() { - return houseno; - } - - /** - * Sets the value of the houseno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseno(String value) { - this.houseno = value; - } - - /** - * Gets the value of the housenoaddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHousenoaddition() { - return housenoaddition; - } - - /** - * Sets the value of the housenoaddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHousenoaddition(String value) { - this.housenoaddition = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the cityname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCityname() { - return cityname; - } - - /** - * Sets the value of the cityname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCityname(String value) { - this.cityname = value; - } - - /** - * Gets the value of the region property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegion() { - return region; - } - - /** - * Sets the value of the region property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegion(String value) { - this.region = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceV2ResponseType.java deleted file mode 100644 index 52e4175..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbSearchReferenceV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbSearchReferenceV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbSearchReferenceV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DNBBusinessReferenceV2PagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbSearchReferenceV2ResponseType", propOrder = { - -}) -public class DnbSearchReferenceV2ResponseType { - - @XmlElement(required = true) - protected DNBBusinessReferenceV2PagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DNBBusinessReferenceV2PagedResult } - * - */ - public DNBBusinessReferenceV2PagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DNBBusinessReferenceV2PagedResult } - * - */ - public void setOut(DNBBusinessReferenceV2PagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusLinkageRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusLinkageRequestType.java deleted file mode 100644 index 9e4652c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusLinkageRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbWorldbaseMarketingPlusLinkageRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbWorldbaseMarketingPlusLinkageRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbWorldbaseMarketingPlusLinkageRequestType", propOrder = { - -}) -public class DnbWorldbaseMarketingPlusLinkageRequestType { - - @XmlElement(name = "company_id", required = true) - protected String companyId; - @XmlElement(name = "company_id_type", required = true) - protected String companyIdType; - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - - /** - * Gets the value of the companyIdType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyIdType() { - return companyIdType; - } - - /** - * Sets the value of the companyIdType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyIdType(String value) { - this.companyIdType = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusLinkageResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusLinkageResponseType.java deleted file mode 100644 index 7ead634..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusLinkageResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbWorldbaseMarketingPlusLinkageResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbWorldbaseMarketingPlusLinkageResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DNBMarketingPlusLinkageResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbWorldbaseMarketingPlusLinkageResponseType", propOrder = { - -}) -public class DnbWorldbaseMarketingPlusLinkageResponseType { - - @XmlElement(required = true) - protected DNBMarketingPlusLinkageResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DNBMarketingPlusLinkageResult } - * - */ - public DNBMarketingPlusLinkageResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DNBMarketingPlusLinkageResult } - * - */ - public void setOut(DNBMarketingPlusLinkageResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusRequestType.java deleted file mode 100644 index a019401..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbWorldbaseMarketingPlusRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbWorldbaseMarketingPlusRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbWorldbaseMarketingPlusRequestType", propOrder = { - -}) -public class DnbWorldbaseMarketingPlusRequestType { - - @XmlElement(name = "company_id", required = true) - protected String companyId; - @XmlElement(name = "company_id_type", required = true) - protected String companyIdType; - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - - /** - * Gets the value of the companyIdType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyIdType() { - return companyIdType; - } - - /** - * Sets the value of the companyIdType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyIdType(String value) { - this.companyIdType = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusResponseType.java deleted file mode 100644 index d3315e0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingPlusResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbWorldbaseMarketingPlusResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbWorldbaseMarketingPlusResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DNBMarketingPlusResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbWorldbaseMarketingPlusResponseType", propOrder = { - -}) -public class DnbWorldbaseMarketingPlusResponseType { - - @XmlElement(required = true) - protected DNBMarketingPlusResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DNBMarketingPlusResult } - * - */ - public DNBMarketingPlusResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DNBMarketingPlusResult } - * - */ - public void setOut(DNBMarketingPlusResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingRequestType.java deleted file mode 100644 index 9c9a804..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbWorldbaseMarketingRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbWorldbaseMarketingRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbWorldbaseMarketingRequestType", propOrder = { - -}) -public class DnbWorldbaseMarketingRequestType { - - @XmlElement(name = "company_id", required = true) - protected String companyId; - @XmlElement(name = "company_id_type", required = true) - protected String companyIdType; - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - - /** - * Gets the value of the companyIdType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyIdType() { - return companyIdType; - } - - /** - * Sets the value of the companyIdType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyIdType(String value) { - this.companyIdType = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingResponseType.java deleted file mode 100644 index 69b853f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DnbWorldbaseMarketingResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dnbWorldbaseMarketingResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dnbWorldbaseMarketingResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DNBMarketing"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dnbWorldbaseMarketingResponseType", propOrder = { - -}) -public class DnbWorldbaseMarketingResponseType { - - @XmlElement(required = true) - protected DNBMarketing out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DNBMarketing } - * - */ - public DNBMarketing getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DNBMarketing } - * - */ - public void setOut(DNBMarketing value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DocumentOverzicht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DocumentOverzicht.java deleted file mode 100644 index a902118..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DocumentOverzicht.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DocumentOverzicht complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DocumentOverzicht">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="onroerende_zaken" type="{http://www.webservices.nl/soap/}OverzichtOnroerendeZaakArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DocumentOverzicht", propOrder = { - -}) -public class DocumentOverzicht { - - @XmlElement(name = "onroerende_zaken", required = true) - protected OverzichtOnroerendeZaakArray onroerendeZaken; - - /** - * Gets the value of the onroerendeZaken property. - * - * @return - * possible object is - * {@link OverzichtOnroerendeZaakArray } - * - */ - public OverzichtOnroerendeZaakArray getOnroerendeZaken() { - return onroerendeZaken; - } - - /** - * Sets the value of the onroerendeZaken property. - * - * @param value - * allowed object is - * {@link OverzichtOnroerendeZaakArray } - * - */ - public void setOnroerendeZaken(OverzichtOnroerendeZaakArray value) { - this.onroerendeZaken = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfo.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfo.java deleted file mode 100644 index f33d5ee..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfo.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DriveInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DriveInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="fastest" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="shortest" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DriveInfo", propOrder = { - -}) -public class DriveInfo { - - protected int fastest; - protected int shortest; - - /** - * Gets the value of the fastest property. - * - */ - public int getFastest() { - return fastest; - } - - /** - * Sets the value of the fastest property. - * - */ - public void setFastest(int value) { - this.fastest = value; - } - - /** - * Gets the value of the shortest property. - * - */ - public int getShortest() { - return shortest; - } - - /** - * Sets the value of the shortest property. - * - */ - public void setShortest(int value) { - this.shortest = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoDistanceLookupRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoDistanceLookupRequestType.java deleted file mode 100644 index c984ef7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoDistanceLookupRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for driveInfoDistanceLookupRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="driveInfoDistanceLookupRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nbcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="nbcodeto" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "driveInfoDistanceLookupRequestType", propOrder = { - -}) -public class DriveInfoDistanceLookupRequestType { - - @XmlElement(required = true) - protected String nbcodefrom; - @XmlElement(required = true) - protected String nbcodeto; - - /** - * Gets the value of the nbcodefrom property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcodefrom() { - return nbcodefrom; - } - - /** - * Sets the value of the nbcodefrom property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcodefrom(String value) { - this.nbcodefrom = value; - } - - /** - * Gets the value of the nbcodeto property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcodeto() { - return nbcodeto; - } - - /** - * Sets the value of the nbcodeto property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcodeto(String value) { - this.nbcodeto = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoDistanceLookupResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoDistanceLookupResponseType.java deleted file mode 100644 index 9b21695..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoDistanceLookupResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for driveInfoDistanceLookupResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="driveInfoDistanceLookupResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DriveInfo"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "driveInfoDistanceLookupResponseType", propOrder = { - -}) -public class DriveInfoDistanceLookupResponseType { - - @XmlElement(required = true) - protected DriveInfo out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DriveInfo } - * - */ - public DriveInfo getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DriveInfo } - * - */ - public void setOut(DriveInfo value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoTimeLookupRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoTimeLookupRequestType.java deleted file mode 100644 index 606a767..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoTimeLookupRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for driveInfoTimeLookupRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="driveInfoTimeLookupRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nbcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="nbcodeto" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "driveInfoTimeLookupRequestType", propOrder = { - -}) -public class DriveInfoTimeLookupRequestType { - - @XmlElement(required = true) - protected String nbcodefrom; - @XmlElement(required = true) - protected String nbcodeto; - - /** - * Gets the value of the nbcodefrom property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcodefrom() { - return nbcodefrom; - } - - /** - * Sets the value of the nbcodefrom property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcodefrom(String value) { - this.nbcodefrom = value; - } - - /** - * Gets the value of the nbcodeto property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcodeto() { - return nbcodeto; - } - - /** - * Sets the value of the nbcodeto property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcodeto(String value) { - this.nbcodeto = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoTimeLookupResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoTimeLookupResponseType.java deleted file mode 100644 index 7cc9047..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DriveInfoTimeLookupResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for driveInfoTimeLookupResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="driveInfoTimeLookupResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DriveInfo"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "driveInfoTimeLookupResponseType", propOrder = { - -}) -public class DriveInfoTimeLookupResponseType { - - @XmlElement(required = true) - protected DriveInfo out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DriveInfo } - * - */ - public DriveInfo getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DriveInfo } - * - */ - public void setOut(DriveInfo value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressPostcodeRange.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressPostcodeRange.java deleted file mode 100644 index 4a16c4c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressPostcodeRange.java +++ /dev/null @@ -1,361 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchAddressPostcodeRange complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchAddressPostcodeRange">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="house_number_from" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="house_number_to" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="neighborhood_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="letter_combination" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="range_indication" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street_name_nen" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="municipality" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="municipality_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="cebuco_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="province_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchAddressPostcodeRange", propOrder = { - -}) -public class DutchAddressPostcodeRange { - - @XmlElement(name = "house_number_from") - protected int houseNumberFrom; - @XmlElement(name = "house_number_to") - protected int houseNumberTo; - @XmlElement(name = "neighborhood_code", required = true) - protected String neighborhoodCode; - @XmlElement(name = "letter_combination", required = true) - protected String letterCombination; - @XmlElement(name = "range_indication", required = true) - protected String rangeIndication; - @XmlElement(name = "street_name", required = true) - protected String streetName; - @XmlElement(name = "street_name_nen", required = true) - protected String streetNameNen; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String municipality; - @XmlElement(name = "municipality_code") - protected int municipalityCode; - @XmlElement(name = "cebuco_code") - protected int cebucoCode; - @XmlElement(required = true) - protected String province; - @XmlElement(name = "province_code", required = true) - protected String provinceCode; - - /** - * Gets the value of the houseNumberFrom property. - * - */ - public int getHouseNumberFrom() { - return houseNumberFrom; - } - - /** - * Sets the value of the houseNumberFrom property. - * - */ - public void setHouseNumberFrom(int value) { - this.houseNumberFrom = value; - } - - /** - * Gets the value of the houseNumberTo property. - * - */ - public int getHouseNumberTo() { - return houseNumberTo; - } - - /** - * Sets the value of the houseNumberTo property. - * - */ - public void setHouseNumberTo(int value) { - this.houseNumberTo = value; - } - - /** - * Gets the value of the neighborhoodCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNeighborhoodCode() { - return neighborhoodCode; - } - - /** - * Sets the value of the neighborhoodCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNeighborhoodCode(String value) { - this.neighborhoodCode = value; - } - - /** - * Gets the value of the letterCombination property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLetterCombination() { - return letterCombination; - } - - /** - * Sets the value of the letterCombination property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLetterCombination(String value) { - this.letterCombination = value; - } - - /** - * Gets the value of the rangeIndication property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRangeIndication() { - return rangeIndication; - } - - /** - * Sets the value of the rangeIndication property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRangeIndication(String value) { - this.rangeIndication = value; - } - - /** - * Gets the value of the streetName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetName() { - return streetName; - } - - /** - * Sets the value of the streetName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetName(String value) { - this.streetName = value; - } - - /** - * Gets the value of the streetNameNen property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetNameNen() { - return streetNameNen; - } - - /** - * Sets the value of the streetNameNen property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetNameNen(String value) { - this.streetNameNen = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the municipality property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMunicipality() { - return municipality; - } - - /** - * Sets the value of the municipality property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMunicipality(String value) { - this.municipality = value; - } - - /** - * Gets the value of the municipalityCode property. - * - */ - public int getMunicipalityCode() { - return municipalityCode; - } - - /** - * Sets the value of the municipalityCode property. - * - */ - public void setMunicipalityCode(int value) { - this.municipalityCode = value; - } - - /** - * Gets the value of the cebucoCode property. - * - */ - public int getCebucoCode() { - return cebucoCode; - } - - /** - * Sets the value of the cebucoCode property. - * - */ - public void setCebucoCode(int value) { - this.cebucoCode = value; - } - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the provinceCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvinceCode() { - return provinceCode; - } - - /** - * Sets the value of the provinceCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvinceCode(String value) { - this.provinceCode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressRangePostcodeSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressRangePostcodeSearchRequestType.java deleted file mode 100644 index 753ec8f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressRangePostcodeSearchRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchAddressRangePostcodeSearchRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchAddressRangePostcodeSearchRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchAddressRangePostcodeSearchRequestType", propOrder = { - -}) -public class DutchAddressRangePostcodeSearchRequestType { - - @XmlElement(required = true) - protected String address; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressRangePostcodeSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressRangePostcodeSearchResponseType.java deleted file mode 100644 index 76114a1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchAddressRangePostcodeSearchResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchAddressRangePostcodeSearchResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchAddressRangePostcodeSearchResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchAddressPostcodeRange"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchAddressRangePostcodeSearchResponseType", propOrder = { - -}) -public class DutchAddressRangePostcodeSearchResponseType { - - @XmlElement(required = true) - protected DutchAddressPostcodeRange out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchAddressPostcodeRange } - * - */ - public DutchAddressPostcodeRange getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchAddressPostcodeRange } - * - */ - public void setOut(DutchAddressPostcodeRange value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPosition.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPosition.java deleted file mode 100644 index a8a9e8c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPosition.java +++ /dev/null @@ -1,261 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessAdditionalPosition complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessAdditionalPosition">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="start_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="end_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="end_date_source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="role" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="function" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="authorization_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="historical_authorizations" type="{http://www.webservices.nl/soap/}DutchBusinessPositionAuthorizationArray"/>
- *         <element name="company" type="{http://www.webservices.nl/soap/}DutchBusinessPositionCompany"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessAdditionalPosition", propOrder = { - -}) -public class DutchBusinessAdditionalPosition { - - @XmlElement(name = "start_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar startDate; - @XmlElement(name = "end_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar endDate; - @XmlElement(name = "end_date_source") - protected String endDateSource; - @XmlElement(required = true) - protected String role; - protected String function; - @XmlElement(name = "authorization_description") - protected String authorizationDescription; - @XmlElement(name = "historical_authorizations", required = true) - protected DutchBusinessPositionAuthorizationArray historicalAuthorizations; - @XmlElement(required = true) - protected DutchBusinessPositionCompany company; - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStartDate(XMLGregorianCalendar value) { - this.startDate = value; - } - - /** - * Gets the value of the endDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEndDate() { - return endDate; - } - - /** - * Sets the value of the endDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEndDate(XMLGregorianCalendar value) { - this.endDate = value; - } - - /** - * Gets the value of the endDateSource property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEndDateSource() { - return endDateSource; - } - - /** - * Sets the value of the endDateSource property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEndDateSource(String value) { - this.endDateSource = value; - } - - /** - * Gets the value of the role property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRole() { - return role; - } - - /** - * Sets the value of the role property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRole(String value) { - this.role = value; - } - - /** - * Gets the value of the function property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunction() { - return function; - } - - /** - * Sets the value of the function property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunction(String value) { - this.function = value; - } - - /** - * Gets the value of the authorizationDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAuthorizationDescription() { - return authorizationDescription; - } - - /** - * Sets the value of the authorizationDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAuthorizationDescription(String value) { - this.authorizationDescription = value; - } - - /** - * Gets the value of the historicalAuthorizations property. - * - * @return - * possible object is - * {@link DutchBusinessPositionAuthorizationArray } - * - */ - public DutchBusinessPositionAuthorizationArray getHistoricalAuthorizations() { - return historicalAuthorizations; - } - - /** - * Sets the value of the historicalAuthorizations property. - * - * @param value - * allowed object is - * {@link DutchBusinessPositionAuthorizationArray } - * - */ - public void setHistoricalAuthorizations(DutchBusinessPositionAuthorizationArray value) { - this.historicalAuthorizations = value; - } - - /** - * Gets the value of the company property. - * - * @return - * possible object is - * {@link DutchBusinessPositionCompany } - * - */ - public DutchBusinessPositionCompany getCompany() { - return company; - } - - /** - * Sets the value of the company property. - * - * @param value - * allowed object is - * {@link DutchBusinessPositionCompany } - * - */ - public void setCompany(DutchBusinessPositionCompany value) { - this.company = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPositionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPositionArray.java deleted file mode 100644 index 902db9e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPositionArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessAdditionalPositionArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessAdditionalPositionArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessAdditionalPosition" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessAdditionalPositionArray", propOrder = { - "item" -}) -public class DutchBusinessAdditionalPositionArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessAdditionalPosition } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPositionFunctionary.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPositionFunctionary.java deleted file mode 100644 index 83da357..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAdditionalPositionFunctionary.java +++ /dev/null @@ -1,261 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessAdditionalPositionFunctionary complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessAdditionalPositionFunctionary">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="full_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_deceased" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="place_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessAdditionalPositionFunctionary", propOrder = { - -}) -public class DutchBusinessAdditionalPositionFunctionary { - - @XmlElement(name = "full_name", required = true) - protected String fullName; - @XmlElement(name = "first_name") - protected String firstName; - protected String initials; - @XmlElement(name = "last_name", required = true) - protected String lastName; - @XmlElement(name = "date_deceased") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateDeceased; - @XmlElement(name = "date_of_birth") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateOfBirth; - @XmlElement(name = "place_of_birth") - protected String placeOfBirth; - @XmlElement(name = "country_of_birth") - protected String countryOfBirth; - - /** - * Gets the value of the fullName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFullName() { - return fullName; - } - - /** - * Sets the value of the fullName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFullName(String value) { - this.fullName = value; - } - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the initials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInitials() { - return initials; - } - - /** - * Sets the value of the initials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInitials(String value) { - this.initials = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the dateDeceased property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateDeceased() { - return dateDeceased; - } - - /** - * Sets the value of the dateDeceased property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateDeceased(XMLGregorianCalendar value) { - this.dateDeceased = value; - } - - /** - * Gets the value of the dateOfBirth property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfBirth() { - return dateOfBirth; - } - - /** - * Sets the value of the dateOfBirth property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfBirth(XMLGregorianCalendar value) { - this.dateOfBirth = value; - } - - /** - * Gets the value of the placeOfBirth property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaceOfBirth() { - return placeOfBirth; - } - - /** - * Sets the value of the placeOfBirth property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaceOfBirth(String value) { - this.placeOfBirth = value; - } - - /** - * Gets the value of the countryOfBirth property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryOfBirth() { - return countryOfBirth; - } - - /** - * Sets the value of the countryOfBirth property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryOfBirth(String value) { - this.countryOfBirth = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAddressV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAddressV2.java deleted file mode 100644 index 6ec9d1a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAddressV2.java +++ /dev/null @@ -1,200 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessAddressV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessAddressV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessAddressV2", propOrder = { - -}) -public class DutchBusinessAddressV2 { - - protected String postcode; - protected String city; - protected String street; - @XmlElement(name = "house_number") - protected Integer houseNumber; - @XmlElement(name = "house_number_addition") - protected String houseNumberAddition; - protected String country; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNumber property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHouseNumber(Integer value) { - this.houseNumber = value; - } - - /** - * Gets the value of the houseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNumberAddition() { - return houseNumberAddition; - } - - /** - * Sets the value of the houseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNumberAddition(String value) { - this.houseNumberAddition = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAddressV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAddressV3.java deleted file mode 100644 index a9fc122..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAddressV3.java +++ /dev/null @@ -1,226 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessAddressV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessAddressV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessAddressV3", propOrder = { - -}) -public class DutchBusinessAddressV3 { - - protected String address; - protected String postcode; - protected String city; - protected String street; - @XmlElement(name = "house_number") - protected Integer houseNumber; - @XmlElement(name = "house_number_addition") - protected String houseNumberAddition; - protected String country; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNumber property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHouseNumber(Integer value) { - this.houseNumber = value; - } - - /** - * Gets the value of the houseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNumberAddition() { - return houseNumberAddition; - } - - /** - * Sets the value of the houseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNumberAddition(String value) { - this.houseNumberAddition = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAnnualFinancialStatement.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAnnualFinancialStatement.java deleted file mode 100644 index b3d9686..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAnnualFinancialStatement.java +++ /dev/null @@ -1,139 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessAnnualFinancialStatement complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessAnnualFinancialStatement">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessAnnualFinancialStatement", propOrder = { - -}) -public class DutchBusinessAnnualFinancialStatement { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - protected int year; - @XmlElement(required = true) - protected String type; - @XmlElement(required = true) - protected byte[] document; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the year property. - * - */ - public int getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - */ - public void setYear(int value) { - this.year = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAnnualFinancialStatementSummary.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAnnualFinancialStatementSummary.java deleted file mode 100644 index c9b708a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessAnnualFinancialStatementSummary.java +++ /dev/null @@ -1,145 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessAnnualFinancialStatementSummary complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessAnnualFinancialStatementSummary">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="turnover" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV2" minOccurs="0"/>
- *         <element name="profit" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV2" minOccurs="0"/>
- *         <element name="assets" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV2" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessAnnualFinancialStatementSummary", propOrder = { - -}) -public class DutchBusinessAnnualFinancialStatementSummary { - - protected Integer year; - protected DutchBusinessMoneyV2 turnover; - protected DutchBusinessMoneyV2 profit; - protected DutchBusinessMoneyV2 assets; - - /** - * Gets the value of the year property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setYear(Integer value) { - this.year = value; - } - - /** - * Gets the value of the turnover property. - * - * @return - * possible object is - * {@link DutchBusinessMoneyV2 } - * - */ - public DutchBusinessMoneyV2 getTurnover() { - return turnover; - } - - /** - * Sets the value of the turnover property. - * - * @param value - * allowed object is - * {@link DutchBusinessMoneyV2 } - * - */ - public void setTurnover(DutchBusinessMoneyV2 value) { - this.turnover = value; - } - - /** - * Gets the value of the profit property. - * - * @return - * possible object is - * {@link DutchBusinessMoneyV2 } - * - */ - public DutchBusinessMoneyV2 getProfit() { - return profit; - } - - /** - * Sets the value of the profit property. - * - * @param value - * allowed object is - * {@link DutchBusinessMoneyV2 } - * - */ - public void setProfit(DutchBusinessMoneyV2 value) { - this.profit = value; - } - - /** - * Gets the value of the assets property. - * - * @return - * possible object is - * {@link DutchBusinessMoneyV2 } - * - */ - public DutchBusinessMoneyV2 getAssets() { - return assets; - } - - /** - * Sets the value of the assets property. - * - * @param value - * allowed object is - * {@link DutchBusinessMoneyV2 } - * - */ - public void setAssets(DutchBusinessMoneyV2 value) { - this.assets = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessChangeSet.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessChangeSet.java deleted file mode 100644 index ab135c1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessChangeSet.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessChangeSet complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessChangeSet">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="period" type="{http://www.webservices.nl/soap/}DutchBusinessPeriod"/>
- *         <element name="changes" type="{http://www.webservices.nl/soap/}stringArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessChangeSet", propOrder = { - -}) -public class DutchBusinessChangeSet { - - @XmlElement(required = true) - protected DutchBusinessPeriod period; - @XmlElement(required = true) - protected StringArray changes; - - /** - * Gets the value of the period property. - * - * @return - * possible object is - * {@link DutchBusinessPeriod } - * - */ - public DutchBusinessPeriod getPeriod() { - return period; - } - - /** - * Sets the value of the period property. - * - * @param value - * allowed object is - * {@link DutchBusinessPeriod } - * - */ - public void setPeriod(DutchBusinessPeriod value) { - this.period = value; - } - - /** - * Gets the value of the changes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getChanges() { - return changes; - } - - /** - * Sets the value of the changes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setChanges(StringArray value) { - this.changes = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDate.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDate.java deleted file mode 100644 index 2801989..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDate.java +++ /dev/null @@ -1,115 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessDate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessDate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="Year" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="Month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="Day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessDate", propOrder = { - -}) -public class DutchBusinessDate { - - @XmlElement(name = "Year") - protected int year; - @XmlElement(name = "Month") - protected Integer month; - @XmlElement(name = "Day") - protected Integer day; - - /** - * Gets the value of the year property. - * - */ - public int getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - */ - public void setYear(int value) { - this.year = value; - } - - /** - * Gets the value of the month property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMonth() { - return month; - } - - /** - * Sets the value of the month property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMonth(Integer value) { - this.month = value; - } - - /** - * Gets the value of the day property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDay() { - return day; - } - - /** - * Sets the value of the day property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDay(Integer value) { - this.day = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDateV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDateV2.java deleted file mode 100644 index aad3e09..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDateV2.java +++ /dev/null @@ -1,119 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessDateV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessDateV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessDateV2", propOrder = { - -}) -public class DutchBusinessDateV2 { - - protected Integer year; - protected Integer month; - protected Integer day; - - /** - * Gets the value of the year property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setYear(Integer value) { - this.year = value; - } - - /** - * Gets the value of the month property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMonth() { - return month; - } - - /** - * Sets the value of the month property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMonth(Integer value) { - this.month = value; - } - - /** - * Gets the value of the day property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDay() { - return day; - } - - /** - * Sets the value of the day property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDay(Integer value) { - this.day = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDateV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDateV3.java deleted file mode 100644 index fbef70f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDateV3.java +++ /dev/null @@ -1,119 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessDateV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessDateV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessDateV3", propOrder = { - -}) -public class DutchBusinessDateV3 { - - protected Integer year; - protected Integer month; - protected Integer day; - - /** - * Gets the value of the year property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setYear(Integer value) { - this.year = value; - } - - /** - * Gets the value of the month property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMonth() { - return month; - } - - /** - * Sets the value of the month property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMonth(Integer value) { - this.month = value; - } - - /** - * Gets the value of the day property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDay() { - return day; - } - - /** - * Sets the value of the day property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDay(Integer value) { - this.day = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossier.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossier.java deleted file mode 100644 index 78cc8ef..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossier.java +++ /dev/null @@ -1,1573 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessDossier complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessDossier">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="update_info" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateReference"/>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="main_establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="indication_main_establishment" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="chamber_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_form_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="indication_organisation_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_name_45" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_name_full" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="establishment_postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="establishment_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="correspondence_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mobile_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="domain_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_title1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_title2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_initials" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_surname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_gender" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="primary_sbi_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="secondary_sbi_code1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="secondary_sbi_code2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="primary_sbi_code_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="secondary_sbi_code1_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="secondary_sbi_code2_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="class_personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="personnel_fulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="class_personnel_fulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="personnel_reference_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="indication_import" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="indication_export" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="indication_economically_active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indication_non_mailing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indication_bankruptcy" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indication_dip" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="authorized_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="authorized_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="paid_up_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="paid_up_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="issued_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="issued_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="continuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="establishment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessDossier", propOrder = { - -}) -public class DutchBusinessDossier { - - @XmlElement(name = "update_info", required = true) - protected DutchBusinessUpdateReference updateInfo; - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(name = "main_establishment_number") - protected String mainEstablishmentNumber; - @XmlElement(name = "indication_main_establishment") - protected boolean indicationMainEstablishment; - @XmlElement(name = "rsin_number") - protected String rsinNumber; - @XmlElement(name = "chamber_number", required = true) - protected String chamberNumber; - @XmlElement(name = "legal_form_code", required = true) - protected String legalFormCode; - @XmlElement(name = "legal_form_text", required = true) - protected String legalFormText; - @XmlElement(name = "indication_organisation_code", required = true) - protected String indicationOrganisationCode; - @XmlElement(name = "legal_name", required = true) - protected String legalName; - @XmlElement(name = "trade_name_45", required = true) - protected String tradeName45; - @XmlElement(name = "trade_name_full", required = true) - protected String tradeNameFull; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - @XmlElement(name = "establishment_postcode", required = true) - protected String establishmentPostcode; - @XmlElement(name = "establishment_city", required = true) - protected String establishmentCity; - @XmlElement(name = "establishment_street", required = true) - protected String establishmentStreet; - @XmlElement(name = "establishment_house_number") - protected int establishmentHouseNumber; - @XmlElement(name = "establishment_house_number_addition", required = true) - protected String establishmentHouseNumberAddition; - @XmlElement(name = "correspondence_postcode", required = true) - protected String correspondencePostcode; - @XmlElement(name = "correspondence_city", required = true) - protected String correspondenceCity; - @XmlElement(name = "correspondence_street", required = true) - protected String correspondenceStreet; - @XmlElement(name = "correspondence_house_number") - protected int correspondenceHouseNumber; - @XmlElement(name = "correspondence_house_number_addition", required = true) - protected String correspondenceHouseNumberAddition; - @XmlElement(name = "correspondence_country", required = true) - protected String correspondenceCountry; - @XmlElement(name = "telephone_number", required = true) - protected String telephoneNumber; - @XmlElement(name = "mobile_number", required = true) - protected String mobileNumber; - @XmlElement(name = "domain_name", required = true) - protected String domainName; - @XmlElement(name = "contact_title1", required = true) - protected String contactTitle1; - @XmlElement(name = "contact_title2", required = true) - protected String contactTitle2; - @XmlElement(name = "contact_initials", required = true) - protected String contactInitials; - @XmlElement(name = "contact_prefix", required = true) - protected String contactPrefix; - @XmlElement(name = "contact_surname", required = true) - protected String contactSurname; - @XmlElement(name = "contact_gender", required = true) - protected String contactGender; - @XmlElement(name = "primary_sbi_code", required = true) - protected String primarySbiCode; - @XmlElement(name = "secondary_sbi_code1", required = true) - protected String secondarySbiCode1; - @XmlElement(name = "secondary_sbi_code2", required = true) - protected String secondarySbiCode2; - @XmlElement(name = "primary_sbi_code_text", required = true) - protected String primarySbiCodeText; - @XmlElement(name = "secondary_sbi_code1_text", required = true) - protected String secondarySbiCode1Text; - @XmlElement(name = "secondary_sbi_code2_text", required = true) - protected String secondarySbiCode2Text; - protected int personnel; - @XmlElement(name = "class_personnel") - protected int classPersonnel; - @XmlElement(name = "personnel_fulltime") - protected int personnelFulltime; - @XmlElement(name = "class_personnel_fulltime") - protected int classPersonnelFulltime; - @XmlElement(name = "personnel_reference_date") - protected DutchBusinessDate personnelReferenceDate; - @XmlElement(name = "indication_import") - protected Boolean indicationImport; - @XmlElement(name = "indication_export") - protected Boolean indicationExport; - @XmlElement(name = "indication_economically_active") - protected boolean indicationEconomicallyActive; - @XmlElement(name = "indication_non_mailing") - protected boolean indicationNonMailing; - @XmlElement(name = "indication_bankruptcy") - protected boolean indicationBankruptcy; - @XmlElement(name = "indication_dip") - protected boolean indicationDip; - @XmlElement(name = "authorized_share_capital") - protected Long authorizedShareCapital; - @XmlElement(name = "authorized_share_capital_currency") - protected String authorizedShareCapitalCurrency; - @XmlElement(name = "paid_up_share_capital") - protected Long paidUpShareCapital; - @XmlElement(name = "paid_up_share_capital_currency") - protected String paidUpShareCapitalCurrency; - @XmlElement(name = "issued_share_capital") - protected Long issuedShareCapital; - @XmlElement(name = "issued_share_capital_currency") - protected String issuedShareCapitalCurrency; - @XmlElement(name = "founding_date") - protected DutchBusinessDate foundingDate; - @XmlElement(name = "continuation_date") - protected DutchBusinessDate continuationDate; - @XmlElement(name = "establishment_date") - protected DutchBusinessDate establishmentDate; - - /** - * Gets the value of the updateInfo property. - * - * @return - * possible object is - * {@link DutchBusinessUpdateReference } - * - */ - public DutchBusinessUpdateReference getUpdateInfo() { - return updateInfo; - } - - /** - * Sets the value of the updateInfo property. - * - * @param value - * allowed object is - * {@link DutchBusinessUpdateReference } - * - */ - public void setUpdateInfo(DutchBusinessUpdateReference value) { - this.updateInfo = value; - } - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the mainEstablishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMainEstablishmentNumber() { - return mainEstablishmentNumber; - } - - /** - * Sets the value of the mainEstablishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMainEstablishmentNumber(String value) { - this.mainEstablishmentNumber = value; - } - - /** - * Gets the value of the indicationMainEstablishment property. - * - */ - public boolean isIndicationMainEstablishment() { - return indicationMainEstablishment; - } - - /** - * Sets the value of the indicationMainEstablishment property. - * - */ - public void setIndicationMainEstablishment(boolean value) { - this.indicationMainEstablishment = value; - } - - /** - * Gets the value of the rsinNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsinNumber() { - return rsinNumber; - } - - /** - * Sets the value of the rsinNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsinNumber(String value) { - this.rsinNumber = value; - } - - /** - * Gets the value of the chamberNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getChamberNumber() { - return chamberNumber; - } - - /** - * Sets the value of the chamberNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChamberNumber(String value) { - this.chamberNumber = value; - } - - /** - * Gets the value of the legalFormCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormCode() { - return legalFormCode; - } - - /** - * Sets the value of the legalFormCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormCode(String value) { - this.legalFormCode = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the indicationOrganisationCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndicationOrganisationCode() { - return indicationOrganisationCode; - } - - /** - * Sets the value of the indicationOrganisationCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndicationOrganisationCode(String value) { - this.indicationOrganisationCode = value; - } - - /** - * Gets the value of the legalName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalName() { - return legalName; - } - - /** - * Sets the value of the legalName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalName(String value) { - this.legalName = value; - } - - /** - * Gets the value of the tradeName45 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName45() { - return tradeName45; - } - - /** - * Sets the value of the tradeName45 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName45(String value) { - this.tradeName45 = value; - } - - /** - * Gets the value of the tradeNameFull property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeNameFull() { - return tradeNameFull; - } - - /** - * Sets the value of the tradeNameFull property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeNameFull(String value) { - this.tradeNameFull = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - - /** - * Gets the value of the establishmentPostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentPostcode() { - return establishmentPostcode; - } - - /** - * Sets the value of the establishmentPostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentPostcode(String value) { - this.establishmentPostcode = value; - } - - /** - * Gets the value of the establishmentCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCity() { - return establishmentCity; - } - - /** - * Sets the value of the establishmentCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCity(String value) { - this.establishmentCity = value; - } - - /** - * Gets the value of the establishmentStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentStreet() { - return establishmentStreet; - } - - /** - * Sets the value of the establishmentStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentStreet(String value) { - this.establishmentStreet = value; - } - - /** - * Gets the value of the establishmentHouseNumber property. - * - */ - public int getEstablishmentHouseNumber() { - return establishmentHouseNumber; - } - - /** - * Sets the value of the establishmentHouseNumber property. - * - */ - public void setEstablishmentHouseNumber(int value) { - this.establishmentHouseNumber = value; - } - - /** - * Gets the value of the establishmentHouseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentHouseNumberAddition() { - return establishmentHouseNumberAddition; - } - - /** - * Sets the value of the establishmentHouseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentHouseNumberAddition(String value) { - this.establishmentHouseNumberAddition = value; - } - - /** - * Gets the value of the correspondencePostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondencePostcode() { - return correspondencePostcode; - } - - /** - * Sets the value of the correspondencePostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondencePostcode(String value) { - this.correspondencePostcode = value; - } - - /** - * Gets the value of the correspondenceCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCity() { - return correspondenceCity; - } - - /** - * Sets the value of the correspondenceCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCity(String value) { - this.correspondenceCity = value; - } - - /** - * Gets the value of the correspondenceStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceStreet() { - return correspondenceStreet; - } - - /** - * Sets the value of the correspondenceStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceStreet(String value) { - this.correspondenceStreet = value; - } - - /** - * Gets the value of the correspondenceHouseNumber property. - * - */ - public int getCorrespondenceHouseNumber() { - return correspondenceHouseNumber; - } - - /** - * Sets the value of the correspondenceHouseNumber property. - * - */ - public void setCorrespondenceHouseNumber(int value) { - this.correspondenceHouseNumber = value; - } - - /** - * Gets the value of the correspondenceHouseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceHouseNumberAddition() { - return correspondenceHouseNumberAddition; - } - - /** - * Sets the value of the correspondenceHouseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceHouseNumberAddition(String value) { - this.correspondenceHouseNumberAddition = value; - } - - /** - * Gets the value of the correspondenceCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCountry() { - return correspondenceCountry; - } - - /** - * Sets the value of the correspondenceCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCountry(String value) { - this.correspondenceCountry = value; - } - - /** - * Gets the value of the telephoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNumber() { - return telephoneNumber; - } - - /** - * Sets the value of the telephoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNumber(String value) { - this.telephoneNumber = value; - } - - /** - * Gets the value of the mobileNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMobileNumber() { - return mobileNumber; - } - - /** - * Sets the value of the mobileNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMobileNumber(String value) { - this.mobileNumber = value; - } - - /** - * Gets the value of the domainName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomainName() { - return domainName; - } - - /** - * Sets the value of the domainName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomainName(String value) { - this.domainName = value; - } - - /** - * Gets the value of the contactTitle1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactTitle1() { - return contactTitle1; - } - - /** - * Sets the value of the contactTitle1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactTitle1(String value) { - this.contactTitle1 = value; - } - - /** - * Gets the value of the contactTitle2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactTitle2() { - return contactTitle2; - } - - /** - * Sets the value of the contactTitle2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactTitle2(String value) { - this.contactTitle2 = value; - } - - /** - * Gets the value of the contactInitials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactInitials() { - return contactInitials; - } - - /** - * Sets the value of the contactInitials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactInitials(String value) { - this.contactInitials = value; - } - - /** - * Gets the value of the contactPrefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactPrefix() { - return contactPrefix; - } - - /** - * Sets the value of the contactPrefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactPrefix(String value) { - this.contactPrefix = value; - } - - /** - * Gets the value of the contactSurname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactSurname() { - return contactSurname; - } - - /** - * Sets the value of the contactSurname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactSurname(String value) { - this.contactSurname = value; - } - - /** - * Gets the value of the contactGender property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactGender() { - return contactGender; - } - - /** - * Sets the value of the contactGender property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactGender(String value) { - this.contactGender = value; - } - - /** - * Gets the value of the primarySbiCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimarySbiCode() { - return primarySbiCode; - } - - /** - * Sets the value of the primarySbiCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimarySbiCode(String value) { - this.primarySbiCode = value; - } - - /** - * Gets the value of the secondarySbiCode1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySbiCode1() { - return secondarySbiCode1; - } - - /** - * Sets the value of the secondarySbiCode1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySbiCode1(String value) { - this.secondarySbiCode1 = value; - } - - /** - * Gets the value of the secondarySbiCode2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySbiCode2() { - return secondarySbiCode2; - } - - /** - * Sets the value of the secondarySbiCode2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySbiCode2(String value) { - this.secondarySbiCode2 = value; - } - - /** - * Gets the value of the primarySbiCodeText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimarySbiCodeText() { - return primarySbiCodeText; - } - - /** - * Sets the value of the primarySbiCodeText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimarySbiCodeText(String value) { - this.primarySbiCodeText = value; - } - - /** - * Gets the value of the secondarySbiCode1Text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySbiCode1Text() { - return secondarySbiCode1Text; - } - - /** - * Sets the value of the secondarySbiCode1Text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySbiCode1Text(String value) { - this.secondarySbiCode1Text = value; - } - - /** - * Gets the value of the secondarySbiCode2Text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySbiCode2Text() { - return secondarySbiCode2Text; - } - - /** - * Sets the value of the secondarySbiCode2Text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySbiCode2Text(String value) { - this.secondarySbiCode2Text = value; - } - - /** - * Gets the value of the personnel property. - * - */ - public int getPersonnel() { - return personnel; - } - - /** - * Sets the value of the personnel property. - * - */ - public void setPersonnel(int value) { - this.personnel = value; - } - - /** - * Gets the value of the classPersonnel property. - * - */ - public int getClassPersonnel() { - return classPersonnel; - } - - /** - * Sets the value of the classPersonnel property. - * - */ - public void setClassPersonnel(int value) { - this.classPersonnel = value; - } - - /** - * Gets the value of the personnelFulltime property. - * - */ - public int getPersonnelFulltime() { - return personnelFulltime; - } - - /** - * Sets the value of the personnelFulltime property. - * - */ - public void setPersonnelFulltime(int value) { - this.personnelFulltime = value; - } - - /** - * Gets the value of the classPersonnelFulltime property. - * - */ - public int getClassPersonnelFulltime() { - return classPersonnelFulltime; - } - - /** - * Sets the value of the classPersonnelFulltime property. - * - */ - public void setClassPersonnelFulltime(int value) { - this.classPersonnelFulltime = value; - } - - /** - * Gets the value of the personnelReferenceDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getPersonnelReferenceDate() { - return personnelReferenceDate; - } - - /** - * Sets the value of the personnelReferenceDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setPersonnelReferenceDate(DutchBusinessDate value) { - this.personnelReferenceDate = value; - } - - /** - * Gets the value of the indicationImport property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicationImport() { - return indicationImport; - } - - /** - * Sets the value of the indicationImport property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicationImport(Boolean value) { - this.indicationImport = value; - } - - /** - * Gets the value of the indicationExport property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicationExport() { - return indicationExport; - } - - /** - * Sets the value of the indicationExport property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicationExport(Boolean value) { - this.indicationExport = value; - } - - /** - * Gets the value of the indicationEconomicallyActive property. - * - */ - public boolean isIndicationEconomicallyActive() { - return indicationEconomicallyActive; - } - - /** - * Sets the value of the indicationEconomicallyActive property. - * - */ - public void setIndicationEconomicallyActive(boolean value) { - this.indicationEconomicallyActive = value; - } - - /** - * Gets the value of the indicationNonMailing property. - * - */ - public boolean isIndicationNonMailing() { - return indicationNonMailing; - } - - /** - * Sets the value of the indicationNonMailing property. - * - */ - public void setIndicationNonMailing(boolean value) { - this.indicationNonMailing = value; - } - - /** - * Gets the value of the indicationBankruptcy property. - * - */ - public boolean isIndicationBankruptcy() { - return indicationBankruptcy; - } - - /** - * Sets the value of the indicationBankruptcy property. - * - */ - public void setIndicationBankruptcy(boolean value) { - this.indicationBankruptcy = value; - } - - /** - * Gets the value of the indicationDip property. - * - */ - public boolean isIndicationDip() { - return indicationDip; - } - - /** - * Sets the value of the indicationDip property. - * - */ - public void setIndicationDip(boolean value) { - this.indicationDip = value; - } - - /** - * Gets the value of the authorizedShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getAuthorizedShareCapital() { - return authorizedShareCapital; - } - - /** - * Sets the value of the authorizedShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setAuthorizedShareCapital(Long value) { - this.authorizedShareCapital = value; - } - - /** - * Gets the value of the authorizedShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAuthorizedShareCapitalCurrency() { - return authorizedShareCapitalCurrency; - } - - /** - * Sets the value of the authorizedShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAuthorizedShareCapitalCurrency(String value) { - this.authorizedShareCapitalCurrency = value; - } - - /** - * Gets the value of the paidUpShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getPaidUpShareCapital() { - return paidUpShareCapital; - } - - /** - * Sets the value of the paidUpShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setPaidUpShareCapital(Long value) { - this.paidUpShareCapital = value; - } - - /** - * Gets the value of the paidUpShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPaidUpShareCapitalCurrency() { - return paidUpShareCapitalCurrency; - } - - /** - * Sets the value of the paidUpShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPaidUpShareCapitalCurrency(String value) { - this.paidUpShareCapitalCurrency = value; - } - - /** - * Gets the value of the issuedShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getIssuedShareCapital() { - return issuedShareCapital; - } - - /** - * Sets the value of the issuedShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setIssuedShareCapital(Long value) { - this.issuedShareCapital = value; - } - - /** - * Gets the value of the issuedShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIssuedShareCapitalCurrency() { - return issuedShareCapitalCurrency; - } - - /** - * Sets the value of the issuedShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIssuedShareCapitalCurrency(String value) { - this.issuedShareCapitalCurrency = value; - } - - /** - * Gets the value of the foundingDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getFoundingDate() { - return foundingDate; - } - - /** - * Sets the value of the foundingDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setFoundingDate(DutchBusinessDate value) { - this.foundingDate = value; - } - - /** - * Gets the value of the continuationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getContinuationDate() { - return continuationDate; - } - - /** - * Sets the value of the continuationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setContinuationDate(DutchBusinessDate value) { - this.continuationDate = value; - } - - /** - * Gets the value of the establishmentDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getEstablishmentDate() { - return establishmentDate; - } - - /** - * Sets the value of the establishmentDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setEstablishmentDate(DutchBusinessDate value) { - this.establishmentDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierHistory.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierHistory.java deleted file mode 100644 index de66090..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierHistory.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessDossierHistory complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessDossierHistory">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="references" type="{http://www.webservices.nl/soap/}DutchBusinessDossierReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessDossierHistory", propOrder = { - -}) -public class DutchBusinessDossierHistory { - - @XmlElement(required = true) - protected DutchBusinessDossierReferenceArray references; - - /** - * Gets the value of the references property. - * - * @return - * possible object is - * {@link DutchBusinessDossierReferenceArray } - * - */ - public DutchBusinessDossierReferenceArray getReferences() { - return references; - } - - /** - * Sets the value of the references property. - * - * @param value - * allowed object is - * {@link DutchBusinessDossierReferenceArray } - * - */ - public void setReferences(DutchBusinessDossierReferenceArray value) { - this.references = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierReference.java deleted file mode 100644 index de53cd1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierReference.java +++ /dev/null @@ -1,99 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessDossierReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessDossierReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="update_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="change_set" type="{http://www.webservices.nl/soap/}DutchBusinessChangeSet"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessDossierReference", propOrder = { - -}) -public class DutchBusinessDossierReference { - - @XmlElement(name = "update_date", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar updateDate; - @XmlElement(name = "change_set", required = true) - protected DutchBusinessChangeSet changeSet; - - /** - * Gets the value of the updateDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getUpdateDate() { - return updateDate; - } - - /** - * Sets the value of the updateDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setUpdateDate(XMLGregorianCalendar value) { - this.updateDate = value; - } - - /** - * Gets the value of the changeSet property. - * - * @return - * possible object is - * {@link DutchBusinessChangeSet } - * - */ - public DutchBusinessChangeSet getChangeSet() { - return changeSet; - } - - /** - * Sets the value of the changeSet property. - * - * @param value - * allowed object is - * {@link DutchBusinessChangeSet } - * - */ - public void setChangeSet(DutchBusinessChangeSet value) { - this.changeSet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierReferenceArray.java deleted file mode 100644 index b5b32fd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessDossierReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessDossierReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessDossierReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessDossierReferenceArray", propOrder = { - "item" -}) -public class DutchBusinessDossierReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessDossierReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierV2.java deleted file mode 100644 index c790f33..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierV2.java +++ /dev/null @@ -1,1745 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessDossierV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessDossierV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="update_info" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateReference"/>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="main_establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="indication_main_establishment" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="chamber_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_form_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="indication_organisation_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_name_45" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_name_full" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="establishment_postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="establishment_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="correspondence_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mobile_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="domain_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_title1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_title2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_initials" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_surname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_gender" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="primary_sbi_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="secondary_sbi_code1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="secondary_sbi_code2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="primary_sbi_code_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="secondary_sbi_code1_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="secondary_sbi_code2_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="class_personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="personnel_fulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="class_personnel_fulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="personnel_reference_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="personnel_ci" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="class_personnel_ci" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="personnel_ci_reference_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="indication_import" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="indication_export" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="indication_economically_active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indication_non_mailing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indication_bankruptcy" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indication_dip" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="authorized_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="authorized_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="paid_up_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="paid_up_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="issued_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="issued_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="discontinuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="continuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="establishment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="annual_financial_statement_summary" type="{http://www.webservices.nl/soap/}DutchBusinessAnnualFinancialStatementSummary" minOccurs="0"/>
- *         <element name="structure" type="{http://www.webservices.nl/soap/}DutchBusinessStructure" minOccurs="0"/>
- *         <element name="sbi_collection" type="{http://www.webservices.nl/soap/}DutchBusinessSBICollection" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessDossierV2", propOrder = { - -}) -public class DutchBusinessDossierV2 { - - @XmlElement(name = "update_info", required = true) - protected DutchBusinessUpdateReference updateInfo; - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(name = "main_establishment_number") - protected String mainEstablishmentNumber; - @XmlElement(name = "indication_main_establishment") - protected boolean indicationMainEstablishment; - @XmlElement(name = "rsin_number") - protected String rsinNumber; - @XmlElement(name = "chamber_number", required = true) - protected String chamberNumber; - @XmlElement(name = "legal_form_code", required = true) - protected String legalFormCode; - @XmlElement(name = "legal_form_text", required = true) - protected String legalFormText; - @XmlElement(name = "indication_organisation_code", required = true) - protected String indicationOrganisationCode; - @XmlElement(name = "legal_name", required = true) - protected String legalName; - @XmlElement(name = "trade_name_45", required = true) - protected String tradeName45; - @XmlElement(name = "trade_name_full", required = true) - protected String tradeNameFull; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - @XmlElement(name = "establishment_postcode", required = true) - protected String establishmentPostcode; - @XmlElement(name = "establishment_city", required = true) - protected String establishmentCity; - @XmlElement(name = "establishment_street", required = true) - protected String establishmentStreet; - @XmlElement(name = "establishment_house_number") - protected int establishmentHouseNumber; - @XmlElement(name = "establishment_house_number_addition", required = true) - protected String establishmentHouseNumberAddition; - @XmlElement(name = "correspondence_postcode", required = true) - protected String correspondencePostcode; - @XmlElement(name = "correspondence_city", required = true) - protected String correspondenceCity; - @XmlElement(name = "correspondence_street", required = true) - protected String correspondenceStreet; - @XmlElement(name = "correspondence_house_number") - protected int correspondenceHouseNumber; - @XmlElement(name = "correspondence_house_number_addition", required = true) - protected String correspondenceHouseNumberAddition; - @XmlElement(name = "correspondence_country", required = true) - protected String correspondenceCountry; - @XmlElement(name = "telephone_number", required = true) - protected String telephoneNumber; - @XmlElement(name = "mobile_number", required = true) - protected String mobileNumber; - @XmlElement(name = "domain_name", required = true) - protected String domainName; - @XmlElement(name = "contact_title1", required = true) - protected String contactTitle1; - @XmlElement(name = "contact_title2", required = true) - protected String contactTitle2; - @XmlElement(name = "contact_initials", required = true) - protected String contactInitials; - @XmlElement(name = "contact_prefix", required = true) - protected String contactPrefix; - @XmlElement(name = "contact_surname", required = true) - protected String contactSurname; - @XmlElement(name = "contact_gender", required = true) - protected String contactGender; - @XmlElement(name = "primary_sbi_code", required = true) - protected String primarySbiCode; - @XmlElement(name = "secondary_sbi_code1", required = true) - protected String secondarySbiCode1; - @XmlElement(name = "secondary_sbi_code2", required = true) - protected String secondarySbiCode2; - @XmlElement(name = "primary_sbi_code_text", required = true) - protected String primarySbiCodeText; - @XmlElement(name = "secondary_sbi_code1_text", required = true) - protected String secondarySbiCode1Text; - @XmlElement(name = "secondary_sbi_code2_text", required = true) - protected String secondarySbiCode2Text; - protected int personnel; - @XmlElement(name = "class_personnel") - protected int classPersonnel; - @XmlElement(name = "personnel_fulltime") - protected int personnelFulltime; - @XmlElement(name = "class_personnel_fulltime") - protected int classPersonnelFulltime; - @XmlElement(name = "personnel_reference_date") - protected DutchBusinessDateV2 personnelReferenceDate; - @XmlElement(name = "personnel_ci") - protected int personnelCi; - @XmlElement(name = "class_personnel_ci") - protected int classPersonnelCi; - @XmlElement(name = "personnel_ci_reference_date") - protected DutchBusinessDateV2 personnelCiReferenceDate; - @XmlElement(name = "indication_import") - protected Boolean indicationImport; - @XmlElement(name = "indication_export") - protected Boolean indicationExport; - @XmlElement(name = "indication_economically_active") - protected boolean indicationEconomicallyActive; - @XmlElement(name = "indication_non_mailing") - protected boolean indicationNonMailing; - @XmlElement(name = "indication_bankruptcy") - protected boolean indicationBankruptcy; - @XmlElement(name = "indication_dip") - protected boolean indicationDip; - @XmlElement(name = "authorized_share_capital") - protected Long authorizedShareCapital; - @XmlElement(name = "authorized_share_capital_currency") - protected String authorizedShareCapitalCurrency; - @XmlElement(name = "paid_up_share_capital") - protected Long paidUpShareCapital; - @XmlElement(name = "paid_up_share_capital_currency") - protected String paidUpShareCapitalCurrency; - @XmlElement(name = "issued_share_capital") - protected Long issuedShareCapital; - @XmlElement(name = "issued_share_capital_currency") - protected String issuedShareCapitalCurrency; - @XmlElement(name = "founding_date") - protected DutchBusinessDateV2 foundingDate; - @XmlElement(name = "discontinuation_date") - protected DutchBusinessDateV2 discontinuationDate; - @XmlElement(name = "continuation_date") - protected DutchBusinessDateV2 continuationDate; - @XmlElement(name = "establishment_date") - protected DutchBusinessDateV2 establishmentDate; - @XmlElement(name = "annual_financial_statement_summary") - protected DutchBusinessAnnualFinancialStatementSummary annualFinancialStatementSummary; - protected DutchBusinessStructure structure; - @XmlElement(name = "sbi_collection") - protected DutchBusinessSBICollection sbiCollection; - - /** - * Gets the value of the updateInfo property. - * - * @return - * possible object is - * {@link DutchBusinessUpdateReference } - * - */ - public DutchBusinessUpdateReference getUpdateInfo() { - return updateInfo; - } - - /** - * Sets the value of the updateInfo property. - * - * @param value - * allowed object is - * {@link DutchBusinessUpdateReference } - * - */ - public void setUpdateInfo(DutchBusinessUpdateReference value) { - this.updateInfo = value; - } - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the mainEstablishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMainEstablishmentNumber() { - return mainEstablishmentNumber; - } - - /** - * Sets the value of the mainEstablishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMainEstablishmentNumber(String value) { - this.mainEstablishmentNumber = value; - } - - /** - * Gets the value of the indicationMainEstablishment property. - * - */ - public boolean isIndicationMainEstablishment() { - return indicationMainEstablishment; - } - - /** - * Sets the value of the indicationMainEstablishment property. - * - */ - public void setIndicationMainEstablishment(boolean value) { - this.indicationMainEstablishment = value; - } - - /** - * Gets the value of the rsinNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsinNumber() { - return rsinNumber; - } - - /** - * Sets the value of the rsinNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsinNumber(String value) { - this.rsinNumber = value; - } - - /** - * Gets the value of the chamberNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getChamberNumber() { - return chamberNumber; - } - - /** - * Sets the value of the chamberNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChamberNumber(String value) { - this.chamberNumber = value; - } - - /** - * Gets the value of the legalFormCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormCode() { - return legalFormCode; - } - - /** - * Sets the value of the legalFormCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormCode(String value) { - this.legalFormCode = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the indicationOrganisationCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndicationOrganisationCode() { - return indicationOrganisationCode; - } - - /** - * Sets the value of the indicationOrganisationCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndicationOrganisationCode(String value) { - this.indicationOrganisationCode = value; - } - - /** - * Gets the value of the legalName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalName() { - return legalName; - } - - /** - * Sets the value of the legalName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalName(String value) { - this.legalName = value; - } - - /** - * Gets the value of the tradeName45 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName45() { - return tradeName45; - } - - /** - * Sets the value of the tradeName45 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName45(String value) { - this.tradeName45 = value; - } - - /** - * Gets the value of the tradeNameFull property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeNameFull() { - return tradeNameFull; - } - - /** - * Sets the value of the tradeNameFull property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeNameFull(String value) { - this.tradeNameFull = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - - /** - * Gets the value of the establishmentPostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentPostcode() { - return establishmentPostcode; - } - - /** - * Sets the value of the establishmentPostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentPostcode(String value) { - this.establishmentPostcode = value; - } - - /** - * Gets the value of the establishmentCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCity() { - return establishmentCity; - } - - /** - * Sets the value of the establishmentCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCity(String value) { - this.establishmentCity = value; - } - - /** - * Gets the value of the establishmentStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentStreet() { - return establishmentStreet; - } - - /** - * Sets the value of the establishmentStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentStreet(String value) { - this.establishmentStreet = value; - } - - /** - * Gets the value of the establishmentHouseNumber property. - * - */ - public int getEstablishmentHouseNumber() { - return establishmentHouseNumber; - } - - /** - * Sets the value of the establishmentHouseNumber property. - * - */ - public void setEstablishmentHouseNumber(int value) { - this.establishmentHouseNumber = value; - } - - /** - * Gets the value of the establishmentHouseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentHouseNumberAddition() { - return establishmentHouseNumberAddition; - } - - /** - * Sets the value of the establishmentHouseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentHouseNumberAddition(String value) { - this.establishmentHouseNumberAddition = value; - } - - /** - * Gets the value of the correspondencePostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondencePostcode() { - return correspondencePostcode; - } - - /** - * Sets the value of the correspondencePostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondencePostcode(String value) { - this.correspondencePostcode = value; - } - - /** - * Gets the value of the correspondenceCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCity() { - return correspondenceCity; - } - - /** - * Sets the value of the correspondenceCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCity(String value) { - this.correspondenceCity = value; - } - - /** - * Gets the value of the correspondenceStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceStreet() { - return correspondenceStreet; - } - - /** - * Sets the value of the correspondenceStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceStreet(String value) { - this.correspondenceStreet = value; - } - - /** - * Gets the value of the correspondenceHouseNumber property. - * - */ - public int getCorrespondenceHouseNumber() { - return correspondenceHouseNumber; - } - - /** - * Sets the value of the correspondenceHouseNumber property. - * - */ - public void setCorrespondenceHouseNumber(int value) { - this.correspondenceHouseNumber = value; - } - - /** - * Gets the value of the correspondenceHouseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceHouseNumberAddition() { - return correspondenceHouseNumberAddition; - } - - /** - * Sets the value of the correspondenceHouseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceHouseNumberAddition(String value) { - this.correspondenceHouseNumberAddition = value; - } - - /** - * Gets the value of the correspondenceCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCountry() { - return correspondenceCountry; - } - - /** - * Sets the value of the correspondenceCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCountry(String value) { - this.correspondenceCountry = value; - } - - /** - * Gets the value of the telephoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNumber() { - return telephoneNumber; - } - - /** - * Sets the value of the telephoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNumber(String value) { - this.telephoneNumber = value; - } - - /** - * Gets the value of the mobileNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMobileNumber() { - return mobileNumber; - } - - /** - * Sets the value of the mobileNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMobileNumber(String value) { - this.mobileNumber = value; - } - - /** - * Gets the value of the domainName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomainName() { - return domainName; - } - - /** - * Sets the value of the domainName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomainName(String value) { - this.domainName = value; - } - - /** - * Gets the value of the contactTitle1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactTitle1() { - return contactTitle1; - } - - /** - * Sets the value of the contactTitle1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactTitle1(String value) { - this.contactTitle1 = value; - } - - /** - * Gets the value of the contactTitle2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactTitle2() { - return contactTitle2; - } - - /** - * Sets the value of the contactTitle2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactTitle2(String value) { - this.contactTitle2 = value; - } - - /** - * Gets the value of the contactInitials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactInitials() { - return contactInitials; - } - - /** - * Sets the value of the contactInitials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactInitials(String value) { - this.contactInitials = value; - } - - /** - * Gets the value of the contactPrefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactPrefix() { - return contactPrefix; - } - - /** - * Sets the value of the contactPrefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactPrefix(String value) { - this.contactPrefix = value; - } - - /** - * Gets the value of the contactSurname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactSurname() { - return contactSurname; - } - - /** - * Sets the value of the contactSurname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactSurname(String value) { - this.contactSurname = value; - } - - /** - * Gets the value of the contactGender property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactGender() { - return contactGender; - } - - /** - * Sets the value of the contactGender property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactGender(String value) { - this.contactGender = value; - } - - /** - * Gets the value of the primarySbiCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimarySbiCode() { - return primarySbiCode; - } - - /** - * Sets the value of the primarySbiCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimarySbiCode(String value) { - this.primarySbiCode = value; - } - - /** - * Gets the value of the secondarySbiCode1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySbiCode1() { - return secondarySbiCode1; - } - - /** - * Sets the value of the secondarySbiCode1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySbiCode1(String value) { - this.secondarySbiCode1 = value; - } - - /** - * Gets the value of the secondarySbiCode2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySbiCode2() { - return secondarySbiCode2; - } - - /** - * Sets the value of the secondarySbiCode2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySbiCode2(String value) { - this.secondarySbiCode2 = value; - } - - /** - * Gets the value of the primarySbiCodeText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimarySbiCodeText() { - return primarySbiCodeText; - } - - /** - * Sets the value of the primarySbiCodeText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimarySbiCodeText(String value) { - this.primarySbiCodeText = value; - } - - /** - * Gets the value of the secondarySbiCode1Text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySbiCode1Text() { - return secondarySbiCode1Text; - } - - /** - * Sets the value of the secondarySbiCode1Text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySbiCode1Text(String value) { - this.secondarySbiCode1Text = value; - } - - /** - * Gets the value of the secondarySbiCode2Text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySbiCode2Text() { - return secondarySbiCode2Text; - } - - /** - * Sets the value of the secondarySbiCode2Text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySbiCode2Text(String value) { - this.secondarySbiCode2Text = value; - } - - /** - * Gets the value of the personnel property. - * - */ - public int getPersonnel() { - return personnel; - } - - /** - * Sets the value of the personnel property. - * - */ - public void setPersonnel(int value) { - this.personnel = value; - } - - /** - * Gets the value of the classPersonnel property. - * - */ - public int getClassPersonnel() { - return classPersonnel; - } - - /** - * Sets the value of the classPersonnel property. - * - */ - public void setClassPersonnel(int value) { - this.classPersonnel = value; - } - - /** - * Gets the value of the personnelFulltime property. - * - */ - public int getPersonnelFulltime() { - return personnelFulltime; - } - - /** - * Sets the value of the personnelFulltime property. - * - */ - public void setPersonnelFulltime(int value) { - this.personnelFulltime = value; - } - - /** - * Gets the value of the classPersonnelFulltime property. - * - */ - public int getClassPersonnelFulltime() { - return classPersonnelFulltime; - } - - /** - * Sets the value of the classPersonnelFulltime property. - * - */ - public void setClassPersonnelFulltime(int value) { - this.classPersonnelFulltime = value; - } - - /** - * Gets the value of the personnelReferenceDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getPersonnelReferenceDate() { - return personnelReferenceDate; - } - - /** - * Sets the value of the personnelReferenceDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setPersonnelReferenceDate(DutchBusinessDateV2 value) { - this.personnelReferenceDate = value; - } - - /** - * Gets the value of the personnelCi property. - * - */ - public int getPersonnelCi() { - return personnelCi; - } - - /** - * Sets the value of the personnelCi property. - * - */ - public void setPersonnelCi(int value) { - this.personnelCi = value; - } - - /** - * Gets the value of the classPersonnelCi property. - * - */ - public int getClassPersonnelCi() { - return classPersonnelCi; - } - - /** - * Sets the value of the classPersonnelCi property. - * - */ - public void setClassPersonnelCi(int value) { - this.classPersonnelCi = value; - } - - /** - * Gets the value of the personnelCiReferenceDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getPersonnelCiReferenceDate() { - return personnelCiReferenceDate; - } - - /** - * Sets the value of the personnelCiReferenceDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setPersonnelCiReferenceDate(DutchBusinessDateV2 value) { - this.personnelCiReferenceDate = value; - } - - /** - * Gets the value of the indicationImport property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicationImport() { - return indicationImport; - } - - /** - * Sets the value of the indicationImport property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicationImport(Boolean value) { - this.indicationImport = value; - } - - /** - * Gets the value of the indicationExport property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicationExport() { - return indicationExport; - } - - /** - * Sets the value of the indicationExport property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicationExport(Boolean value) { - this.indicationExport = value; - } - - /** - * Gets the value of the indicationEconomicallyActive property. - * - */ - public boolean isIndicationEconomicallyActive() { - return indicationEconomicallyActive; - } - - /** - * Sets the value of the indicationEconomicallyActive property. - * - */ - public void setIndicationEconomicallyActive(boolean value) { - this.indicationEconomicallyActive = value; - } - - /** - * Gets the value of the indicationNonMailing property. - * - */ - public boolean isIndicationNonMailing() { - return indicationNonMailing; - } - - /** - * Sets the value of the indicationNonMailing property. - * - */ - public void setIndicationNonMailing(boolean value) { - this.indicationNonMailing = value; - } - - /** - * Gets the value of the indicationBankruptcy property. - * - */ - public boolean isIndicationBankruptcy() { - return indicationBankruptcy; - } - - /** - * Sets the value of the indicationBankruptcy property. - * - */ - public void setIndicationBankruptcy(boolean value) { - this.indicationBankruptcy = value; - } - - /** - * Gets the value of the indicationDip property. - * - */ - public boolean isIndicationDip() { - return indicationDip; - } - - /** - * Sets the value of the indicationDip property. - * - */ - public void setIndicationDip(boolean value) { - this.indicationDip = value; - } - - /** - * Gets the value of the authorizedShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getAuthorizedShareCapital() { - return authorizedShareCapital; - } - - /** - * Sets the value of the authorizedShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setAuthorizedShareCapital(Long value) { - this.authorizedShareCapital = value; - } - - /** - * Gets the value of the authorizedShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAuthorizedShareCapitalCurrency() { - return authorizedShareCapitalCurrency; - } - - /** - * Sets the value of the authorizedShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAuthorizedShareCapitalCurrency(String value) { - this.authorizedShareCapitalCurrency = value; - } - - /** - * Gets the value of the paidUpShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getPaidUpShareCapital() { - return paidUpShareCapital; - } - - /** - * Sets the value of the paidUpShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setPaidUpShareCapital(Long value) { - this.paidUpShareCapital = value; - } - - /** - * Gets the value of the paidUpShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPaidUpShareCapitalCurrency() { - return paidUpShareCapitalCurrency; - } - - /** - * Sets the value of the paidUpShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPaidUpShareCapitalCurrency(String value) { - this.paidUpShareCapitalCurrency = value; - } - - /** - * Gets the value of the issuedShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getIssuedShareCapital() { - return issuedShareCapital; - } - - /** - * Sets the value of the issuedShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setIssuedShareCapital(Long value) { - this.issuedShareCapital = value; - } - - /** - * Gets the value of the issuedShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIssuedShareCapitalCurrency() { - return issuedShareCapitalCurrency; - } - - /** - * Sets the value of the issuedShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIssuedShareCapitalCurrency(String value) { - this.issuedShareCapitalCurrency = value; - } - - /** - * Gets the value of the foundingDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getFoundingDate() { - return foundingDate; - } - - /** - * Sets the value of the foundingDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setFoundingDate(DutchBusinessDateV2 value) { - this.foundingDate = value; - } - - /** - * Gets the value of the discontinuationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getDiscontinuationDate() { - return discontinuationDate; - } - - /** - * Sets the value of the discontinuationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setDiscontinuationDate(DutchBusinessDateV2 value) { - this.discontinuationDate = value; - } - - /** - * Gets the value of the continuationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getContinuationDate() { - return continuationDate; - } - - /** - * Sets the value of the continuationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setContinuationDate(DutchBusinessDateV2 value) { - this.continuationDate = value; - } - - /** - * Gets the value of the establishmentDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getEstablishmentDate() { - return establishmentDate; - } - - /** - * Sets the value of the establishmentDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setEstablishmentDate(DutchBusinessDateV2 value) { - this.establishmentDate = value; - } - - /** - * Gets the value of the annualFinancialStatementSummary property. - * - * @return - * possible object is - * {@link DutchBusinessAnnualFinancialStatementSummary } - * - */ - public DutchBusinessAnnualFinancialStatementSummary getAnnualFinancialStatementSummary() { - return annualFinancialStatementSummary; - } - - /** - * Sets the value of the annualFinancialStatementSummary property. - * - * @param value - * allowed object is - * {@link DutchBusinessAnnualFinancialStatementSummary } - * - */ - public void setAnnualFinancialStatementSummary(DutchBusinessAnnualFinancialStatementSummary value) { - this.annualFinancialStatementSummary = value; - } - - /** - * Gets the value of the structure property. - * - * @return - * possible object is - * {@link DutchBusinessStructure } - * - */ - public DutchBusinessStructure getStructure() { - return structure; - } - - /** - * Sets the value of the structure property. - * - * @param value - * allowed object is - * {@link DutchBusinessStructure } - * - */ - public void setStructure(DutchBusinessStructure value) { - this.structure = value; - } - - /** - * Gets the value of the sbiCollection property. - * - * @return - * possible object is - * {@link DutchBusinessSBICollection } - * - */ - public DutchBusinessSBICollection getSbiCollection() { - return sbiCollection; - } - - /** - * Sets the value of the sbiCollection property. - * - * @param value - * allowed object is - * {@link DutchBusinessSBICollection } - * - */ - public void setSbiCollection(DutchBusinessSBICollection value) { - this.sbiCollection = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierV3.java deleted file mode 100644 index 902e92d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessDossierV3.java +++ /dev/null @@ -1,1544 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessDossierV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessDossierV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="update_info" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateReference"/>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="main_establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="indication_main_establishment" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="chamber_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_form_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="indication_organisation_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_name_45" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_name_full" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessFormattedAddress" minOccurs="0"/>
- *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessFormattedAddress" minOccurs="0"/>
- *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mobile_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="domain_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_title1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_title2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_initials" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_surname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_gender" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="primary_sbi_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="secondary_sbi_code1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="secondary_sbi_code2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="primary_sbi_code_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="secondary_sbi_code1_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="secondary_sbi_code2_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="class_personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="personnel_fulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="class_personnel_fulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="personnel_reference_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="personnel_ci" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="class_personnel_ci" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="personnel_ci_reference_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="indication_import" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="indication_export" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="indication_economically_active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indication_non_mailing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indication_bankruptcy" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indication_dip" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="insolvencies" type="{http://www.webservices.nl/soap/}DutchBusinessInsolvencyArray" minOccurs="0"/>
- *         <element name="authorized_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="authorized_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="paid_up_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="paid_up_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="issued_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="issued_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="discontinuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="continuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="establishment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="annual_financial_statement_summary" type="{http://www.webservices.nl/soap/}DutchBusinessAnnualFinancialStatementSummary" minOccurs="0"/>
- *         <element name="structure" type="{http://www.webservices.nl/soap/}DutchBusinessStructure" minOccurs="0"/>
- *         <element name="sbi_collection" type="{http://www.webservices.nl/soap/}DutchBusinessSBICollection" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessDossierV3", propOrder = { - -}) -public class DutchBusinessDossierV3 { - - @XmlElement(name = "update_info", required = true) - protected DutchBusinessUpdateReference updateInfo; - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(name = "main_establishment_number") - protected String mainEstablishmentNumber; - @XmlElement(name = "indication_main_establishment") - protected boolean indicationMainEstablishment; - @XmlElement(name = "rsin_number") - protected String rsinNumber; - @XmlElement(name = "chamber_number", required = true) - protected String chamberNumber; - @XmlElement(name = "legal_form_code", required = true) - protected String legalFormCode; - @XmlElement(name = "legal_form_text", required = true) - protected String legalFormText; - @XmlElement(name = "indication_organisation_code", required = true) - protected String indicationOrganisationCode; - @XmlElement(name = "legal_name", required = true) - protected String legalName; - @XmlElement(name = "trade_name_45", required = true) - protected String tradeName45; - @XmlElement(name = "trade_name_full", required = true) - protected String tradeNameFull; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - @XmlElement(name = "establishment_address") - protected DutchBusinessFormattedAddress establishmentAddress; - @XmlElement(name = "correspondence_address") - protected DutchBusinessFormattedAddress correspondenceAddress; - @XmlElement(name = "telephone_number", required = true) - protected String telephoneNumber; - @XmlElement(name = "mobile_number", required = true) - protected String mobileNumber; - @XmlElement(name = "domain_name", required = true) - protected String domainName; - @XmlElement(name = "contact_title1", required = true) - protected String contactTitle1; - @XmlElement(name = "contact_title2", required = true) - protected String contactTitle2; - @XmlElement(name = "contact_initials", required = true) - protected String contactInitials; - @XmlElement(name = "contact_prefix", required = true) - protected String contactPrefix; - @XmlElement(name = "contact_surname", required = true) - protected String contactSurname; - @XmlElement(name = "contact_gender", required = true) - protected String contactGender; - @XmlElement(name = "primary_sbi_code", required = true) - protected String primarySbiCode; - @XmlElement(name = "secondary_sbi_code1", required = true) - protected String secondarySbiCode1; - @XmlElement(name = "secondary_sbi_code2", required = true) - protected String secondarySbiCode2; - @XmlElement(name = "primary_sbi_code_text", required = true) - protected String primarySbiCodeText; - @XmlElement(name = "secondary_sbi_code1_text", required = true) - protected String secondarySbiCode1Text; - @XmlElement(name = "secondary_sbi_code2_text", required = true) - protected String secondarySbiCode2Text; - protected int personnel; - @XmlElement(name = "class_personnel") - protected int classPersonnel; - @XmlElement(name = "personnel_fulltime") - protected int personnelFulltime; - @XmlElement(name = "class_personnel_fulltime") - protected int classPersonnelFulltime; - @XmlElement(name = "personnel_reference_date") - protected DutchBusinessDateV3 personnelReferenceDate; - @XmlElement(name = "personnel_ci") - protected int personnelCi; - @XmlElement(name = "class_personnel_ci") - protected int classPersonnelCi; - @XmlElement(name = "personnel_ci_reference_date") - protected DutchBusinessDateV3 personnelCiReferenceDate; - @XmlElement(name = "indication_import") - protected Boolean indicationImport; - @XmlElement(name = "indication_export") - protected Boolean indicationExport; - @XmlElement(name = "indication_economically_active") - protected boolean indicationEconomicallyActive; - @XmlElement(name = "indication_non_mailing") - protected boolean indicationNonMailing; - @XmlElement(name = "indication_bankruptcy") - protected boolean indicationBankruptcy; - @XmlElement(name = "indication_dip") - protected boolean indicationDip; - protected DutchBusinessInsolvencyArray insolvencies; - @XmlElement(name = "authorized_share_capital") - protected Long authorizedShareCapital; - @XmlElement(name = "authorized_share_capital_currency") - protected String authorizedShareCapitalCurrency; - @XmlElement(name = "paid_up_share_capital") - protected Long paidUpShareCapital; - @XmlElement(name = "paid_up_share_capital_currency") - protected String paidUpShareCapitalCurrency; - @XmlElement(name = "issued_share_capital") - protected Long issuedShareCapital; - @XmlElement(name = "issued_share_capital_currency") - protected String issuedShareCapitalCurrency; - @XmlElement(name = "founding_date") - protected DutchBusinessDateV3 foundingDate; - @XmlElement(name = "discontinuation_date") - protected DutchBusinessDateV3 discontinuationDate; - @XmlElement(name = "continuation_date") - protected DutchBusinessDateV3 continuationDate; - @XmlElement(name = "establishment_date") - protected DutchBusinessDateV3 establishmentDate; - @XmlElement(name = "annual_financial_statement_summary") - protected DutchBusinessAnnualFinancialStatementSummary annualFinancialStatementSummary; - protected DutchBusinessStructure structure; - @XmlElement(name = "sbi_collection") - protected DutchBusinessSBICollection sbiCollection; - - /** - * Gets the value of the updateInfo property. - * - * @return - * possible object is - * {@link DutchBusinessUpdateReference } - * - */ - public DutchBusinessUpdateReference getUpdateInfo() { - return updateInfo; - } - - /** - * Sets the value of the updateInfo property. - * - * @param value - * allowed object is - * {@link DutchBusinessUpdateReference } - * - */ - public void setUpdateInfo(DutchBusinessUpdateReference value) { - this.updateInfo = value; - } - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the mainEstablishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMainEstablishmentNumber() { - return mainEstablishmentNumber; - } - - /** - * Sets the value of the mainEstablishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMainEstablishmentNumber(String value) { - this.mainEstablishmentNumber = value; - } - - /** - * Gets the value of the indicationMainEstablishment property. - * - */ - public boolean isIndicationMainEstablishment() { - return indicationMainEstablishment; - } - - /** - * Sets the value of the indicationMainEstablishment property. - * - */ - public void setIndicationMainEstablishment(boolean value) { - this.indicationMainEstablishment = value; - } - - /** - * Gets the value of the rsinNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsinNumber() { - return rsinNumber; - } - - /** - * Sets the value of the rsinNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsinNumber(String value) { - this.rsinNumber = value; - } - - /** - * Gets the value of the chamberNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getChamberNumber() { - return chamberNumber; - } - - /** - * Sets the value of the chamberNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChamberNumber(String value) { - this.chamberNumber = value; - } - - /** - * Gets the value of the legalFormCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormCode() { - return legalFormCode; - } - - /** - * Sets the value of the legalFormCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormCode(String value) { - this.legalFormCode = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the indicationOrganisationCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndicationOrganisationCode() { - return indicationOrganisationCode; - } - - /** - * Sets the value of the indicationOrganisationCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndicationOrganisationCode(String value) { - this.indicationOrganisationCode = value; - } - - /** - * Gets the value of the legalName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalName() { - return legalName; - } - - /** - * Sets the value of the legalName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalName(String value) { - this.legalName = value; - } - - /** - * Gets the value of the tradeName45 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName45() { - return tradeName45; - } - - /** - * Sets the value of the tradeName45 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName45(String value) { - this.tradeName45 = value; - } - - /** - * Gets the value of the tradeNameFull property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeNameFull() { - return tradeNameFull; - } - - /** - * Sets the value of the tradeNameFull property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeNameFull(String value) { - this.tradeNameFull = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - - /** - * Gets the value of the establishmentAddress property. - * - * @return - * possible object is - * {@link DutchBusinessFormattedAddress } - * - */ - public DutchBusinessFormattedAddress getEstablishmentAddress() { - return establishmentAddress; - } - - /** - * Sets the value of the establishmentAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessFormattedAddress } - * - */ - public void setEstablishmentAddress(DutchBusinessFormattedAddress value) { - this.establishmentAddress = value; - } - - /** - * Gets the value of the correspondenceAddress property. - * - * @return - * possible object is - * {@link DutchBusinessFormattedAddress } - * - */ - public DutchBusinessFormattedAddress getCorrespondenceAddress() { - return correspondenceAddress; - } - - /** - * Sets the value of the correspondenceAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessFormattedAddress } - * - */ - public void setCorrespondenceAddress(DutchBusinessFormattedAddress value) { - this.correspondenceAddress = value; - } - - /** - * Gets the value of the telephoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNumber() { - return telephoneNumber; - } - - /** - * Sets the value of the telephoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNumber(String value) { - this.telephoneNumber = value; - } - - /** - * Gets the value of the mobileNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMobileNumber() { - return mobileNumber; - } - - /** - * Sets the value of the mobileNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMobileNumber(String value) { - this.mobileNumber = value; - } - - /** - * Gets the value of the domainName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomainName() { - return domainName; - } - - /** - * Sets the value of the domainName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomainName(String value) { - this.domainName = value; - } - - /** - * Gets the value of the contactTitle1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactTitle1() { - return contactTitle1; - } - - /** - * Sets the value of the contactTitle1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactTitle1(String value) { - this.contactTitle1 = value; - } - - /** - * Gets the value of the contactTitle2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactTitle2() { - return contactTitle2; - } - - /** - * Sets the value of the contactTitle2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactTitle2(String value) { - this.contactTitle2 = value; - } - - /** - * Gets the value of the contactInitials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactInitials() { - return contactInitials; - } - - /** - * Sets the value of the contactInitials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactInitials(String value) { - this.contactInitials = value; - } - - /** - * Gets the value of the contactPrefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactPrefix() { - return contactPrefix; - } - - /** - * Sets the value of the contactPrefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactPrefix(String value) { - this.contactPrefix = value; - } - - /** - * Gets the value of the contactSurname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactSurname() { - return contactSurname; - } - - /** - * Sets the value of the contactSurname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactSurname(String value) { - this.contactSurname = value; - } - - /** - * Gets the value of the contactGender property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactGender() { - return contactGender; - } - - /** - * Sets the value of the contactGender property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactGender(String value) { - this.contactGender = value; - } - - /** - * Gets the value of the primarySbiCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimarySbiCode() { - return primarySbiCode; - } - - /** - * Sets the value of the primarySbiCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimarySbiCode(String value) { - this.primarySbiCode = value; - } - - /** - * Gets the value of the secondarySbiCode1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySbiCode1() { - return secondarySbiCode1; - } - - /** - * Sets the value of the secondarySbiCode1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySbiCode1(String value) { - this.secondarySbiCode1 = value; - } - - /** - * Gets the value of the secondarySbiCode2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySbiCode2() { - return secondarySbiCode2; - } - - /** - * Sets the value of the secondarySbiCode2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySbiCode2(String value) { - this.secondarySbiCode2 = value; - } - - /** - * Gets the value of the primarySbiCodeText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimarySbiCodeText() { - return primarySbiCodeText; - } - - /** - * Sets the value of the primarySbiCodeText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimarySbiCodeText(String value) { - this.primarySbiCodeText = value; - } - - /** - * Gets the value of the secondarySbiCode1Text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySbiCode1Text() { - return secondarySbiCode1Text; - } - - /** - * Sets the value of the secondarySbiCode1Text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySbiCode1Text(String value) { - this.secondarySbiCode1Text = value; - } - - /** - * Gets the value of the secondarySbiCode2Text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySbiCode2Text() { - return secondarySbiCode2Text; - } - - /** - * Sets the value of the secondarySbiCode2Text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySbiCode2Text(String value) { - this.secondarySbiCode2Text = value; - } - - /** - * Gets the value of the personnel property. - * - */ - public int getPersonnel() { - return personnel; - } - - /** - * Sets the value of the personnel property. - * - */ - public void setPersonnel(int value) { - this.personnel = value; - } - - /** - * Gets the value of the classPersonnel property. - * - */ - public int getClassPersonnel() { - return classPersonnel; - } - - /** - * Sets the value of the classPersonnel property. - * - */ - public void setClassPersonnel(int value) { - this.classPersonnel = value; - } - - /** - * Gets the value of the personnelFulltime property. - * - */ - public int getPersonnelFulltime() { - return personnelFulltime; - } - - /** - * Sets the value of the personnelFulltime property. - * - */ - public void setPersonnelFulltime(int value) { - this.personnelFulltime = value; - } - - /** - * Gets the value of the classPersonnelFulltime property. - * - */ - public int getClassPersonnelFulltime() { - return classPersonnelFulltime; - } - - /** - * Sets the value of the classPersonnelFulltime property. - * - */ - public void setClassPersonnelFulltime(int value) { - this.classPersonnelFulltime = value; - } - - /** - * Gets the value of the personnelReferenceDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getPersonnelReferenceDate() { - return personnelReferenceDate; - } - - /** - * Sets the value of the personnelReferenceDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setPersonnelReferenceDate(DutchBusinessDateV3 value) { - this.personnelReferenceDate = value; - } - - /** - * Gets the value of the personnelCi property. - * - */ - public int getPersonnelCi() { - return personnelCi; - } - - /** - * Sets the value of the personnelCi property. - * - */ - public void setPersonnelCi(int value) { - this.personnelCi = value; - } - - /** - * Gets the value of the classPersonnelCi property. - * - */ - public int getClassPersonnelCi() { - return classPersonnelCi; - } - - /** - * Sets the value of the classPersonnelCi property. - * - */ - public void setClassPersonnelCi(int value) { - this.classPersonnelCi = value; - } - - /** - * Gets the value of the personnelCiReferenceDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getPersonnelCiReferenceDate() { - return personnelCiReferenceDate; - } - - /** - * Sets the value of the personnelCiReferenceDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setPersonnelCiReferenceDate(DutchBusinessDateV3 value) { - this.personnelCiReferenceDate = value; - } - - /** - * Gets the value of the indicationImport property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicationImport() { - return indicationImport; - } - - /** - * Sets the value of the indicationImport property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicationImport(Boolean value) { - this.indicationImport = value; - } - - /** - * Gets the value of the indicationExport property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicationExport() { - return indicationExport; - } - - /** - * Sets the value of the indicationExport property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicationExport(Boolean value) { - this.indicationExport = value; - } - - /** - * Gets the value of the indicationEconomicallyActive property. - * - */ - public boolean isIndicationEconomicallyActive() { - return indicationEconomicallyActive; - } - - /** - * Sets the value of the indicationEconomicallyActive property. - * - */ - public void setIndicationEconomicallyActive(boolean value) { - this.indicationEconomicallyActive = value; - } - - /** - * Gets the value of the indicationNonMailing property. - * - */ - public boolean isIndicationNonMailing() { - return indicationNonMailing; - } - - /** - * Sets the value of the indicationNonMailing property. - * - */ - public void setIndicationNonMailing(boolean value) { - this.indicationNonMailing = value; - } - - /** - * Gets the value of the indicationBankruptcy property. - * - */ - public boolean isIndicationBankruptcy() { - return indicationBankruptcy; - } - - /** - * Sets the value of the indicationBankruptcy property. - * - */ - public void setIndicationBankruptcy(boolean value) { - this.indicationBankruptcy = value; - } - - /** - * Gets the value of the indicationDip property. - * - */ - public boolean isIndicationDip() { - return indicationDip; - } - - /** - * Sets the value of the indicationDip property. - * - */ - public void setIndicationDip(boolean value) { - this.indicationDip = value; - } - - /** - * Gets the value of the insolvencies property. - * - * @return - * possible object is - * {@link DutchBusinessInsolvencyArray } - * - */ - public DutchBusinessInsolvencyArray getInsolvencies() { - return insolvencies; - } - - /** - * Sets the value of the insolvencies property. - * - * @param value - * allowed object is - * {@link DutchBusinessInsolvencyArray } - * - */ - public void setInsolvencies(DutchBusinessInsolvencyArray value) { - this.insolvencies = value; - } - - /** - * Gets the value of the authorizedShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getAuthorizedShareCapital() { - return authorizedShareCapital; - } - - /** - * Sets the value of the authorizedShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setAuthorizedShareCapital(Long value) { - this.authorizedShareCapital = value; - } - - /** - * Gets the value of the authorizedShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAuthorizedShareCapitalCurrency() { - return authorizedShareCapitalCurrency; - } - - /** - * Sets the value of the authorizedShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAuthorizedShareCapitalCurrency(String value) { - this.authorizedShareCapitalCurrency = value; - } - - /** - * Gets the value of the paidUpShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getPaidUpShareCapital() { - return paidUpShareCapital; - } - - /** - * Sets the value of the paidUpShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setPaidUpShareCapital(Long value) { - this.paidUpShareCapital = value; - } - - /** - * Gets the value of the paidUpShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPaidUpShareCapitalCurrency() { - return paidUpShareCapitalCurrency; - } - - /** - * Sets the value of the paidUpShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPaidUpShareCapitalCurrency(String value) { - this.paidUpShareCapitalCurrency = value; - } - - /** - * Gets the value of the issuedShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getIssuedShareCapital() { - return issuedShareCapital; - } - - /** - * Sets the value of the issuedShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setIssuedShareCapital(Long value) { - this.issuedShareCapital = value; - } - - /** - * Gets the value of the issuedShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIssuedShareCapitalCurrency() { - return issuedShareCapitalCurrency; - } - - /** - * Sets the value of the issuedShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIssuedShareCapitalCurrency(String value) { - this.issuedShareCapitalCurrency = value; - } - - /** - * Gets the value of the foundingDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getFoundingDate() { - return foundingDate; - } - - /** - * Sets the value of the foundingDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setFoundingDate(DutchBusinessDateV3 value) { - this.foundingDate = value; - } - - /** - * Gets the value of the discontinuationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getDiscontinuationDate() { - return discontinuationDate; - } - - /** - * Sets the value of the discontinuationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setDiscontinuationDate(DutchBusinessDateV3 value) { - this.discontinuationDate = value; - } - - /** - * Gets the value of the continuationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getContinuationDate() { - return continuationDate; - } - - /** - * Sets the value of the continuationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setContinuationDate(DutchBusinessDateV3 value) { - this.continuationDate = value; - } - - /** - * Gets the value of the establishmentDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getEstablishmentDate() { - return establishmentDate; - } - - /** - * Sets the value of the establishmentDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setEstablishmentDate(DutchBusinessDateV3 value) { - this.establishmentDate = value; - } - - /** - * Gets the value of the annualFinancialStatementSummary property. - * - * @return - * possible object is - * {@link DutchBusinessAnnualFinancialStatementSummary } - * - */ - public DutchBusinessAnnualFinancialStatementSummary getAnnualFinancialStatementSummary() { - return annualFinancialStatementSummary; - } - - /** - * Sets the value of the annualFinancialStatementSummary property. - * - * @param value - * allowed object is - * {@link DutchBusinessAnnualFinancialStatementSummary } - * - */ - public void setAnnualFinancialStatementSummary(DutchBusinessAnnualFinancialStatementSummary value) { - this.annualFinancialStatementSummary = value; - } - - /** - * Gets the value of the structure property. - * - * @return - * possible object is - * {@link DutchBusinessStructure } - * - */ - public DutchBusinessStructure getStructure() { - return structure; - } - - /** - * Sets the value of the structure property. - * - * @param value - * allowed object is - * {@link DutchBusinessStructure } - * - */ - public void setStructure(DutchBusinessStructure value) { - this.structure = value; - } - - /** - * Gets the value of the sbiCollection property. - * - * @return - * possible object is - * {@link DutchBusinessSBICollection } - * - */ - public DutchBusinessSBICollection getSbiCollection() { - return sbiCollection; - } - - /** - * Sets the value of the sbiCollection property. - * - * @param value - * allowed object is - * {@link DutchBusinessSBICollection } - * - */ - public void setSbiCollection(DutchBusinessSBICollection value) { - this.sbiCollection = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterprise.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterprise.java deleted file mode 100644 index cc8f0e0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterprise.java +++ /dev/null @@ -1,900 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessEnterprise complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessEnterprise">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="sbi_codes_text" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="establishment_postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="establishment_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="correspondence_postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="correspondence_house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="correspondence_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="correspondence_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="fax_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="domain_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="establishment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="incorporation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="discontinuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="personnel" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessEnterprise", propOrder = { - -}) -public class DutchBusinessEnterprise { - - @XmlElement(name = "rsin_number") - protected String rsinNumber; - protected String name; - protected String registration; - protected String status; - @XmlElement(name = "legal_form_text") - protected String legalFormText; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - protected String activity; - protected String description; - @XmlElement(name = "sbi_codes") - protected StringArray sbiCodes; - @XmlElement(name = "sbi_codes_text") - protected StringArray sbiCodesText; - @XmlElement(name = "establishment_postcode") - protected String establishmentPostcode; - @XmlElement(name = "establishment_city") - protected String establishmentCity; - @XmlElement(name = "establishment_street") - protected String establishmentStreet; - @XmlElement(name = "establishment_house_number") - protected Integer establishmentHouseNumber; - @XmlElement(name = "establishment_house_number_addition") - protected String establishmentHouseNumberAddition; - @XmlElement(name = "establishment_country") - protected String establishmentCountry; - @XmlElement(name = "correspondence_postcode") - protected String correspondencePostcode; - @XmlElement(name = "correspondence_city") - protected String correspondenceCity; - @XmlElement(name = "correspondence_street") - protected String correspondenceStreet; - @XmlElement(name = "correspondence_house_number") - protected Integer correspondenceHouseNumber; - @XmlElement(name = "correspondence_house_number_addition") - protected String correspondenceHouseNumberAddition; - @XmlElement(name = "correspondence_country") - protected String correspondenceCountry; - @XmlElement(name = "telephone_numbers") - protected StringArray telephoneNumbers; - @XmlElement(name = "fax_numbers") - protected StringArray faxNumbers; - @XmlElement(name = "email_addresses") - protected StringArray emailAddresses; - @XmlElement(name = "domain_names") - protected StringArray domainNames; - @XmlElement(name = "establishment_date") - protected DutchBusinessDate establishmentDate; - @XmlElement(name = "incorporation_date") - protected DutchBusinessDate incorporationDate; - @XmlElement(name = "founding_date") - protected DutchBusinessDate foundingDate; - @XmlElement(name = "discontinuation_date") - protected DutchBusinessDate discontinuationDate; - @XmlElement(name = "date_since") - protected DutchBusinessDate dateSince; - protected Integer personnel; - - /** - * Gets the value of the rsinNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsinNumber() { - return rsinNumber; - } - - /** - * Sets the value of the rsinNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsinNumber(String value) { - this.rsinNumber = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the registration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistration() { - return registration; - } - - /** - * Sets the value of the registration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistration(String value) { - this.registration = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - - /** - * Gets the value of the activity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getActivity() { - return activity; - } - - /** - * Sets the value of the activity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setActivity(String value) { - this.activity = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the sbiCodes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getSbiCodes() { - return sbiCodes; - } - - /** - * Sets the value of the sbiCodes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setSbiCodes(StringArray value) { - this.sbiCodes = value; - } - - /** - * Gets the value of the sbiCodesText property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getSbiCodesText() { - return sbiCodesText; - } - - /** - * Sets the value of the sbiCodesText property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setSbiCodesText(StringArray value) { - this.sbiCodesText = value; - } - - /** - * Gets the value of the establishmentPostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentPostcode() { - return establishmentPostcode; - } - - /** - * Sets the value of the establishmentPostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentPostcode(String value) { - this.establishmentPostcode = value; - } - - /** - * Gets the value of the establishmentCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCity() { - return establishmentCity; - } - - /** - * Sets the value of the establishmentCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCity(String value) { - this.establishmentCity = value; - } - - /** - * Gets the value of the establishmentStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentStreet() { - return establishmentStreet; - } - - /** - * Sets the value of the establishmentStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentStreet(String value) { - this.establishmentStreet = value; - } - - /** - * Gets the value of the establishmentHouseNumber property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEstablishmentHouseNumber() { - return establishmentHouseNumber; - } - - /** - * Sets the value of the establishmentHouseNumber property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEstablishmentHouseNumber(Integer value) { - this.establishmentHouseNumber = value; - } - - /** - * Gets the value of the establishmentHouseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentHouseNumberAddition() { - return establishmentHouseNumberAddition; - } - - /** - * Sets the value of the establishmentHouseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentHouseNumberAddition(String value) { - this.establishmentHouseNumberAddition = value; - } - - /** - * Gets the value of the establishmentCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCountry() { - return establishmentCountry; - } - - /** - * Sets the value of the establishmentCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCountry(String value) { - this.establishmentCountry = value; - } - - /** - * Gets the value of the correspondencePostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondencePostcode() { - return correspondencePostcode; - } - - /** - * Sets the value of the correspondencePostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondencePostcode(String value) { - this.correspondencePostcode = value; - } - - /** - * Gets the value of the correspondenceCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCity() { - return correspondenceCity; - } - - /** - * Sets the value of the correspondenceCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCity(String value) { - this.correspondenceCity = value; - } - - /** - * Gets the value of the correspondenceStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceStreet() { - return correspondenceStreet; - } - - /** - * Sets the value of the correspondenceStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceStreet(String value) { - this.correspondenceStreet = value; - } - - /** - * Gets the value of the correspondenceHouseNumber property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCorrespondenceHouseNumber() { - return correspondenceHouseNumber; - } - - /** - * Sets the value of the correspondenceHouseNumber property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCorrespondenceHouseNumber(Integer value) { - this.correspondenceHouseNumber = value; - } - - /** - * Gets the value of the correspondenceHouseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceHouseNumberAddition() { - return correspondenceHouseNumberAddition; - } - - /** - * Sets the value of the correspondenceHouseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceHouseNumberAddition(String value) { - this.correspondenceHouseNumberAddition = value; - } - - /** - * Gets the value of the correspondenceCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCountry() { - return correspondenceCountry; - } - - /** - * Sets the value of the correspondenceCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCountry(String value) { - this.correspondenceCountry = value; - } - - /** - * Gets the value of the telephoneNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTelephoneNumbers() { - return telephoneNumbers; - } - - /** - * Sets the value of the telephoneNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTelephoneNumbers(StringArray value) { - this.telephoneNumbers = value; - } - - /** - * Gets the value of the faxNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getFaxNumbers() { - return faxNumbers; - } - - /** - * Sets the value of the faxNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setFaxNumbers(StringArray value) { - this.faxNumbers = value; - } - - /** - * Gets the value of the emailAddresses property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getEmailAddresses() { - return emailAddresses; - } - - /** - * Sets the value of the emailAddresses property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setEmailAddresses(StringArray value) { - this.emailAddresses = value; - } - - /** - * Gets the value of the domainNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getDomainNames() { - return domainNames; - } - - /** - * Sets the value of the domainNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setDomainNames(StringArray value) { - this.domainNames = value; - } - - /** - * Gets the value of the establishmentDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getEstablishmentDate() { - return establishmentDate; - } - - /** - * Sets the value of the establishmentDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setEstablishmentDate(DutchBusinessDate value) { - this.establishmentDate = value; - } - - /** - * Gets the value of the incorporationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getIncorporationDate() { - return incorporationDate; - } - - /** - * Sets the value of the incorporationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setIncorporationDate(DutchBusinessDate value) { - this.incorporationDate = value; - } - - /** - * Gets the value of the foundingDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getFoundingDate() { - return foundingDate; - } - - /** - * Sets the value of the foundingDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setFoundingDate(DutchBusinessDate value) { - this.foundingDate = value; - } - - /** - * Gets the value of the discontinuationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getDiscontinuationDate() { - return discontinuationDate; - } - - /** - * Sets the value of the discontinuationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setDiscontinuationDate(DutchBusinessDate value) { - this.discontinuationDate = value; - } - - /** - * Gets the value of the dateSince property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getDateSince() { - return dateSince; - } - - /** - * Sets the value of the dateSince property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setDateSince(DutchBusinessDate value) { - this.dateSince = value; - } - - /** - * Gets the value of the personnel property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPersonnel() { - return personnel; - } - - /** - * Sets the value of the personnel property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPersonnel(Integer value) { - this.personnel = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterpriseV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterpriseV2.java deleted file mode 100644 index 4f0246c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterpriseV2.java +++ /dev/null @@ -1,387 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessEnterpriseV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessEnterpriseV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="incorporation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="discontinuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="personnel" type="{http://www.webservices.nl/soap/}DutchBusinessPersonnelInfoV2" minOccurs="0"/>
- *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}DutchBusinessSbiCodeV2Array" minOccurs="0"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessEnterpriseV2", propOrder = { - -}) -public class DutchBusinessEnterpriseV2 { - - protected String name; - protected String registration; - @XmlElement(name = "legal_form_text") - protected String legalFormText; - protected String activity; - protected String description; - @XmlElement(name = "incorporation_date") - protected DutchBusinessDateV2 incorporationDate; - @XmlElement(name = "founding_date") - protected DutchBusinessDateV2 foundingDate; - @XmlElement(name = "discontinuation_date") - protected DutchBusinessDateV2 discontinuationDate; - @XmlElement(name = "date_since") - protected DutchBusinessDateV2 dateSince; - protected DutchBusinessPersonnelInfoV2 personnel; - protected StringArray remarks; - @XmlElement(name = "sbi_codes") - protected DutchBusinessSbiCodeV2Array sbiCodes; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the registration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistration() { - return registration; - } - - /** - * Sets the value of the registration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistration(String value) { - this.registration = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the activity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getActivity() { - return activity; - } - - /** - * Sets the value of the activity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setActivity(String value) { - this.activity = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the incorporationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getIncorporationDate() { - return incorporationDate; - } - - /** - * Sets the value of the incorporationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setIncorporationDate(DutchBusinessDateV2 value) { - this.incorporationDate = value; - } - - /** - * Gets the value of the foundingDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getFoundingDate() { - return foundingDate; - } - - /** - * Sets the value of the foundingDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setFoundingDate(DutchBusinessDateV2 value) { - this.foundingDate = value; - } - - /** - * Gets the value of the discontinuationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getDiscontinuationDate() { - return discontinuationDate; - } - - /** - * Sets the value of the discontinuationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setDiscontinuationDate(DutchBusinessDateV2 value) { - this.discontinuationDate = value; - } - - /** - * Gets the value of the dateSince property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getDateSince() { - return dateSince; - } - - /** - * Sets the value of the dateSince property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setDateSince(DutchBusinessDateV2 value) { - this.dateSince = value; - } - - /** - * Gets the value of the personnel property. - * - * @return - * possible object is - * {@link DutchBusinessPersonnelInfoV2 } - * - */ - public DutchBusinessPersonnelInfoV2 getPersonnel() { - return personnel; - } - - /** - * Sets the value of the personnel property. - * - * @param value - * allowed object is - * {@link DutchBusinessPersonnelInfoV2 } - * - */ - public void setPersonnel(DutchBusinessPersonnelInfoV2 value) { - this.personnel = value; - } - - /** - * Gets the value of the remarks property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getRemarks() { - return remarks; - } - - /** - * Sets the value of the remarks property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setRemarks(StringArray value) { - this.remarks = value; - } - - /** - * Gets the value of the sbiCodes property. - * - * @return - * possible object is - * {@link DutchBusinessSbiCodeV2Array } - * - */ - public DutchBusinessSbiCodeV2Array getSbiCodes() { - return sbiCodes; - } - - /** - * Sets the value of the sbiCodes property. - * - * @param value - * allowed object is - * {@link DutchBusinessSbiCodeV2Array } - * - */ - public void setSbiCodes(DutchBusinessSbiCodeV2Array value) { - this.sbiCodes = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterpriseV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterpriseV3.java deleted file mode 100644 index de57a8e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEnterpriseV3.java +++ /dev/null @@ -1,387 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessEnterpriseV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessEnterpriseV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="incorporation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="discontinuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="personnel" type="{http://www.webservices.nl/soap/}DutchBusinessPersonnelInfoV3" minOccurs="0"/>
- *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}DutchBusinessSbiCodeV3Array" minOccurs="0"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessEnterpriseV3", propOrder = { - -}) -public class DutchBusinessEnterpriseV3 { - - protected String name; - protected String registration; - @XmlElement(name = "legal_form_text") - protected String legalFormText; - protected String activity; - protected String description; - @XmlElement(name = "incorporation_date") - protected DutchBusinessDateV3 incorporationDate; - @XmlElement(name = "founding_date") - protected DutchBusinessDateV3 foundingDate; - @XmlElement(name = "discontinuation_date") - protected DutchBusinessDateV3 discontinuationDate; - @XmlElement(name = "date_since") - protected DutchBusinessDateV3 dateSince; - protected DutchBusinessPersonnelInfoV3 personnel; - protected StringArray remarks; - @XmlElement(name = "sbi_codes") - protected DutchBusinessSbiCodeV3Array sbiCodes; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the registration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistration() { - return registration; - } - - /** - * Sets the value of the registration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistration(String value) { - this.registration = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the activity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getActivity() { - return activity; - } - - /** - * Sets the value of the activity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setActivity(String value) { - this.activity = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the incorporationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getIncorporationDate() { - return incorporationDate; - } - - /** - * Sets the value of the incorporationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setIncorporationDate(DutchBusinessDateV3 value) { - this.incorporationDate = value; - } - - /** - * Gets the value of the foundingDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getFoundingDate() { - return foundingDate; - } - - /** - * Sets the value of the foundingDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setFoundingDate(DutchBusinessDateV3 value) { - this.foundingDate = value; - } - - /** - * Gets the value of the discontinuationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getDiscontinuationDate() { - return discontinuationDate; - } - - /** - * Sets the value of the discontinuationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setDiscontinuationDate(DutchBusinessDateV3 value) { - this.discontinuationDate = value; - } - - /** - * Gets the value of the dateSince property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getDateSince() { - return dateSince; - } - - /** - * Sets the value of the dateSince property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setDateSince(DutchBusinessDateV3 value) { - this.dateSince = value; - } - - /** - * Gets the value of the personnel property. - * - * @return - * possible object is - * {@link DutchBusinessPersonnelInfoV3 } - * - */ - public DutchBusinessPersonnelInfoV3 getPersonnel() { - return personnel; - } - - /** - * Sets the value of the personnel property. - * - * @param value - * allowed object is - * {@link DutchBusinessPersonnelInfoV3 } - * - */ - public void setPersonnel(DutchBusinessPersonnelInfoV3 value) { - this.personnel = value; - } - - /** - * Gets the value of the remarks property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getRemarks() { - return remarks; - } - - /** - * Sets the value of the remarks property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setRemarks(StringArray value) { - this.remarks = value; - } - - /** - * Gets the value of the sbiCodes property. - * - * @return - * possible object is - * {@link DutchBusinessSbiCodeV3Array } - * - */ - public DutchBusinessSbiCodeV3Array getSbiCodes() { - return sbiCodes; - } - - /** - * Sets the value of the sbiCodes property. - * - * @param value - * allowed object is - * {@link DutchBusinessSbiCodeV3Array } - * - */ - public void setSbiCodes(DutchBusinessSbiCodeV3Array value) { - this.sbiCodes = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishment.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishment.java deleted file mode 100644 index 9a79461..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishment.java +++ /dev/null @@ -1,956 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessEstablishment complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessEstablishment">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="main_establishment" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="sbi_codes_text" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="establishment_postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="establishment_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="correspondence_postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="correspondence_house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="correspondence_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="correspondence_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="curator_postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="curator_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="curator_street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="curator_house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="curator_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="curator_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="fax_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="domain_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="establishment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="personnel" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessEstablishment", propOrder = { - -}) -public class DutchBusinessEstablishment { - - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(name = "main_establishment") - protected Boolean mainEstablishment; - protected String status; - @XmlElement(name = "legal_form_text") - protected String legalFormText; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - protected String activity; - protected String description; - @XmlElement(name = "sbi_codes") - protected StringArray sbiCodes; - @XmlElement(name = "sbi_codes_text") - protected StringArray sbiCodesText; - @XmlElement(name = "establishment_postcode") - protected String establishmentPostcode; - @XmlElement(name = "establishment_city") - protected String establishmentCity; - @XmlElement(name = "establishment_street") - protected String establishmentStreet; - @XmlElement(name = "establishment_house_number") - protected Integer establishmentHouseNumber; - @XmlElement(name = "establishment_house_number_addition") - protected String establishmentHouseNumberAddition; - @XmlElement(name = "establishment_country") - protected String establishmentCountry; - @XmlElement(name = "correspondence_postcode") - protected String correspondencePostcode; - @XmlElement(name = "correspondence_city") - protected String correspondenceCity; - @XmlElement(name = "correspondence_street") - protected String correspondenceStreet; - @XmlElement(name = "correspondence_house_number") - protected Integer correspondenceHouseNumber; - @XmlElement(name = "correspondence_house_number_addition") - protected String correspondenceHouseNumberAddition; - @XmlElement(name = "correspondence_country") - protected String correspondenceCountry; - @XmlElement(name = "curator_postcode") - protected String curatorPostcode; - @XmlElement(name = "curator_city") - protected String curatorCity; - @XmlElement(name = "curator_street") - protected String curatorStreet; - @XmlElement(name = "curator_house_number") - protected Integer curatorHouseNumber; - @XmlElement(name = "curator_house_number_addition") - protected String curatorHouseNumberAddition; - @XmlElement(name = "curator_country") - protected String curatorCountry; - @XmlElement(name = "telephone_numbers") - protected StringArray telephoneNumbers; - @XmlElement(name = "fax_numbers") - protected StringArray faxNumbers; - @XmlElement(name = "email_addresses") - protected StringArray emailAddresses; - @XmlElement(name = "domain_names") - protected StringArray domainNames; - @XmlElement(name = "establishment_date") - protected DutchBusinessDate establishmentDate; - @XmlElement(name = "date_since") - protected DutchBusinessDate dateSince; - protected Integer personnel; - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the mainEstablishment property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isMainEstablishment() { - return mainEstablishment; - } - - /** - * Sets the value of the mainEstablishment property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setMainEstablishment(Boolean value) { - this.mainEstablishment = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - - /** - * Gets the value of the activity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getActivity() { - return activity; - } - - /** - * Sets the value of the activity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setActivity(String value) { - this.activity = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the sbiCodes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getSbiCodes() { - return sbiCodes; - } - - /** - * Sets the value of the sbiCodes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setSbiCodes(StringArray value) { - this.sbiCodes = value; - } - - /** - * Gets the value of the sbiCodesText property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getSbiCodesText() { - return sbiCodesText; - } - - /** - * Sets the value of the sbiCodesText property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setSbiCodesText(StringArray value) { - this.sbiCodesText = value; - } - - /** - * Gets the value of the establishmentPostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentPostcode() { - return establishmentPostcode; - } - - /** - * Sets the value of the establishmentPostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentPostcode(String value) { - this.establishmentPostcode = value; - } - - /** - * Gets the value of the establishmentCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCity() { - return establishmentCity; - } - - /** - * Sets the value of the establishmentCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCity(String value) { - this.establishmentCity = value; - } - - /** - * Gets the value of the establishmentStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentStreet() { - return establishmentStreet; - } - - /** - * Sets the value of the establishmentStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentStreet(String value) { - this.establishmentStreet = value; - } - - /** - * Gets the value of the establishmentHouseNumber property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEstablishmentHouseNumber() { - return establishmentHouseNumber; - } - - /** - * Sets the value of the establishmentHouseNumber property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEstablishmentHouseNumber(Integer value) { - this.establishmentHouseNumber = value; - } - - /** - * Gets the value of the establishmentHouseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentHouseNumberAddition() { - return establishmentHouseNumberAddition; - } - - /** - * Sets the value of the establishmentHouseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentHouseNumberAddition(String value) { - this.establishmentHouseNumberAddition = value; - } - - /** - * Gets the value of the establishmentCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCountry() { - return establishmentCountry; - } - - /** - * Sets the value of the establishmentCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCountry(String value) { - this.establishmentCountry = value; - } - - /** - * Gets the value of the correspondencePostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondencePostcode() { - return correspondencePostcode; - } - - /** - * Sets the value of the correspondencePostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondencePostcode(String value) { - this.correspondencePostcode = value; - } - - /** - * Gets the value of the correspondenceCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCity() { - return correspondenceCity; - } - - /** - * Sets the value of the correspondenceCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCity(String value) { - this.correspondenceCity = value; - } - - /** - * Gets the value of the correspondenceStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceStreet() { - return correspondenceStreet; - } - - /** - * Sets the value of the correspondenceStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceStreet(String value) { - this.correspondenceStreet = value; - } - - /** - * Gets the value of the correspondenceHouseNumber property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCorrespondenceHouseNumber() { - return correspondenceHouseNumber; - } - - /** - * Sets the value of the correspondenceHouseNumber property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCorrespondenceHouseNumber(Integer value) { - this.correspondenceHouseNumber = value; - } - - /** - * Gets the value of the correspondenceHouseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceHouseNumberAddition() { - return correspondenceHouseNumberAddition; - } - - /** - * Sets the value of the correspondenceHouseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceHouseNumberAddition(String value) { - this.correspondenceHouseNumberAddition = value; - } - - /** - * Gets the value of the correspondenceCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCountry() { - return correspondenceCountry; - } - - /** - * Sets the value of the correspondenceCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCountry(String value) { - this.correspondenceCountry = value; - } - - /** - * Gets the value of the curatorPostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCuratorPostcode() { - return curatorPostcode; - } - - /** - * Sets the value of the curatorPostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCuratorPostcode(String value) { - this.curatorPostcode = value; - } - - /** - * Gets the value of the curatorCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCuratorCity() { - return curatorCity; - } - - /** - * Sets the value of the curatorCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCuratorCity(String value) { - this.curatorCity = value; - } - - /** - * Gets the value of the curatorStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCuratorStreet() { - return curatorStreet; - } - - /** - * Sets the value of the curatorStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCuratorStreet(String value) { - this.curatorStreet = value; - } - - /** - * Gets the value of the curatorHouseNumber property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCuratorHouseNumber() { - return curatorHouseNumber; - } - - /** - * Sets the value of the curatorHouseNumber property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCuratorHouseNumber(Integer value) { - this.curatorHouseNumber = value; - } - - /** - * Gets the value of the curatorHouseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCuratorHouseNumberAddition() { - return curatorHouseNumberAddition; - } - - /** - * Sets the value of the curatorHouseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCuratorHouseNumberAddition(String value) { - this.curatorHouseNumberAddition = value; - } - - /** - * Gets the value of the curatorCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCuratorCountry() { - return curatorCountry; - } - - /** - * Sets the value of the curatorCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCuratorCountry(String value) { - this.curatorCountry = value; - } - - /** - * Gets the value of the telephoneNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTelephoneNumbers() { - return telephoneNumbers; - } - - /** - * Sets the value of the telephoneNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTelephoneNumbers(StringArray value) { - this.telephoneNumbers = value; - } - - /** - * Gets the value of the faxNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getFaxNumbers() { - return faxNumbers; - } - - /** - * Sets the value of the faxNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setFaxNumbers(StringArray value) { - this.faxNumbers = value; - } - - /** - * Gets the value of the emailAddresses property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getEmailAddresses() { - return emailAddresses; - } - - /** - * Sets the value of the emailAddresses property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setEmailAddresses(StringArray value) { - this.emailAddresses = value; - } - - /** - * Gets the value of the domainNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getDomainNames() { - return domainNames; - } - - /** - * Sets the value of the domainNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setDomainNames(StringArray value) { - this.domainNames = value; - } - - /** - * Gets the value of the establishmentDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getEstablishmentDate() { - return establishmentDate; - } - - /** - * Sets the value of the establishmentDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setEstablishmentDate(DutchBusinessDate value) { - this.establishmentDate = value; - } - - /** - * Gets the value of the dateSince property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getDateSince() { - return dateSince; - } - - /** - * Sets the value of the dateSince property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setDateSince(DutchBusinessDate value) { - this.dateSince = value; - } - - /** - * Gets the value of the personnel property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPersonnel() { - return personnel; - } - - /** - * Sets the value of the personnel property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPersonnel(Integer value) { - this.personnel = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentArray.java deleted file mode 100644 index da4141e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessEstablishmentArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessEstablishmentArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishment" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessEstablishmentArray", propOrder = { - "item" -}) -public class DutchBusinessEstablishmentArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessEstablishment } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReference.java deleted file mode 100644 index db57d83..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReference.java +++ /dev/null @@ -1,312 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessEstablishmentReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessEstablishmentReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="match_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="indication_main_establishment" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessEstablishmentReference", propOrder = { - -}) -public class DutchBusinessEstablishmentReference { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(name = "legal_name") - protected String legalName; - @XmlElement(name = "trade_name", required = true) - protected String tradeName; - @XmlElement(name = "match_type") - protected String matchType; - @XmlElement(name = "establishment_city", required = true) - protected String establishmentCity; - @XmlElement(name = "establishment_street", required = true) - protected String establishmentStreet; - @XmlElement(name = "correspondence_city", required = true) - protected String correspondenceCity; - @XmlElement(name = "correspondence_street", required = true) - protected String correspondenceStreet; - @XmlElement(name = "indication_main_establishment") - protected Boolean indicationMainEstablishment; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the legalName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalName() { - return legalName; - } - - /** - * Sets the value of the legalName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalName(String value) { - this.legalName = value; - } - - /** - * Gets the value of the tradeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName() { - return tradeName; - } - - /** - * Sets the value of the tradeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName(String value) { - this.tradeName = value; - } - - /** - * Gets the value of the matchType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMatchType() { - return matchType; - } - - /** - * Sets the value of the matchType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMatchType(String value) { - this.matchType = value; - } - - /** - * Gets the value of the establishmentCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCity() { - return establishmentCity; - } - - /** - * Sets the value of the establishmentCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCity(String value) { - this.establishmentCity = value; - } - - /** - * Gets the value of the establishmentStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentStreet() { - return establishmentStreet; - } - - /** - * Sets the value of the establishmentStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentStreet(String value) { - this.establishmentStreet = value; - } - - /** - * Gets the value of the correspondenceCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCity() { - return correspondenceCity; - } - - /** - * Sets the value of the correspondenceCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCity(String value) { - this.correspondenceCity = value; - } - - /** - * Gets the value of the correspondenceStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceStreet() { - return correspondenceStreet; - } - - /** - * Sets the value of the correspondenceStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceStreet(String value) { - this.correspondenceStreet = value; - } - - /** - * Gets the value of the indicationMainEstablishment property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicationMainEstablishment() { - return indicationMainEstablishment; - } - - /** - * Sets the value of the indicationMainEstablishment property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicationMainEstablishment(Boolean value) { - this.indicationMainEstablishment = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReferenceArray.java deleted file mode 100644 index 7e3b57a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessEstablishmentReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessEstablishmentReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessEstablishmentReferenceArray", propOrder = { - "item" -}) -public class DutchBusinessEstablishmentReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessEstablishmentReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReferencePagedResult.java deleted file mode 100644 index 8a85cb8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentReferencePagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessEstablishmentReferencePagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessEstablishmentReferencePagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessEstablishmentReferencePagedResult", propOrder = { - -}) -public class DutchBusinessEstablishmentReferencePagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected DutchBusinessEstablishmentReferenceArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link DutchBusinessEstablishmentReferenceArray } - * - */ - public DutchBusinessEstablishmentReferenceArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link DutchBusinessEstablishmentReferenceArray } - * - */ - public void setResults(DutchBusinessEstablishmentReferenceArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV2.java deleted file mode 100644 index d198946..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV2.java +++ /dev/null @@ -1,497 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessEstablishmentV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessEstablishmentV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="main_establishment" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="personnel" type="{http://www.webservices.nl/soap/}DutchBusinessPersonnelInfoV2" minOccurs="0"/>
- *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}DutchBusinessSbiCodeV2Array" minOccurs="0"/>
- *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
- *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
- *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="fax_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="domain_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessEstablishmentV2", propOrder = { - -}) -public class DutchBusinessEstablishmentV2 { - - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(name = "main_establishment") - protected Boolean mainEstablishment; - @XmlElement(name = "legal_form_text") - protected String legalFormText; - protected String activity; - protected String description; - @XmlElement(name = "establishment_date") - protected DutchBusinessDateV2 establishmentDate; - @XmlElement(name = "date_since") - protected DutchBusinessDateV2 dateSince; - protected DutchBusinessPersonnelInfoV2 personnel; - protected StringArray remarks; - @XmlElement(name = "sbi_codes") - protected DutchBusinessSbiCodeV2Array sbiCodes; - @XmlElement(name = "establishment_address") - protected DutchBusinessAddressV2 establishmentAddress; - @XmlElement(name = "correspondence_address") - protected DutchBusinessAddressV2 correspondenceAddress; - @XmlElement(name = "telephone_numbers") - protected StringArray telephoneNumbers; - @XmlElement(name = "fax_numbers") - protected StringArray faxNumbers; - @XmlElement(name = "email_addresses") - protected StringArray emailAddresses; - @XmlElement(name = "domain_names") - protected StringArray domainNames; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the mainEstablishment property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isMainEstablishment() { - return mainEstablishment; - } - - /** - * Sets the value of the mainEstablishment property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setMainEstablishment(Boolean value) { - this.mainEstablishment = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the activity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getActivity() { - return activity; - } - - /** - * Sets the value of the activity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setActivity(String value) { - this.activity = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the establishmentDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getEstablishmentDate() { - return establishmentDate; - } - - /** - * Sets the value of the establishmentDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setEstablishmentDate(DutchBusinessDateV2 value) { - this.establishmentDate = value; - } - - /** - * Gets the value of the dateSince property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getDateSince() { - return dateSince; - } - - /** - * Sets the value of the dateSince property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setDateSince(DutchBusinessDateV2 value) { - this.dateSince = value; - } - - /** - * Gets the value of the personnel property. - * - * @return - * possible object is - * {@link DutchBusinessPersonnelInfoV2 } - * - */ - public DutchBusinessPersonnelInfoV2 getPersonnel() { - return personnel; - } - - /** - * Sets the value of the personnel property. - * - * @param value - * allowed object is - * {@link DutchBusinessPersonnelInfoV2 } - * - */ - public void setPersonnel(DutchBusinessPersonnelInfoV2 value) { - this.personnel = value; - } - - /** - * Gets the value of the remarks property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getRemarks() { - return remarks; - } - - /** - * Sets the value of the remarks property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setRemarks(StringArray value) { - this.remarks = value; - } - - /** - * Gets the value of the sbiCodes property. - * - * @return - * possible object is - * {@link DutchBusinessSbiCodeV2Array } - * - */ - public DutchBusinessSbiCodeV2Array getSbiCodes() { - return sbiCodes; - } - - /** - * Sets the value of the sbiCodes property. - * - * @param value - * allowed object is - * {@link DutchBusinessSbiCodeV2Array } - * - */ - public void setSbiCodes(DutchBusinessSbiCodeV2Array value) { - this.sbiCodes = value; - } - - /** - * Gets the value of the establishmentAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV2 } - * - */ - public DutchBusinessAddressV2 getEstablishmentAddress() { - return establishmentAddress; - } - - /** - * Sets the value of the establishmentAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV2 } - * - */ - public void setEstablishmentAddress(DutchBusinessAddressV2 value) { - this.establishmentAddress = value; - } - - /** - * Gets the value of the correspondenceAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV2 } - * - */ - public DutchBusinessAddressV2 getCorrespondenceAddress() { - return correspondenceAddress; - } - - /** - * Sets the value of the correspondenceAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV2 } - * - */ - public void setCorrespondenceAddress(DutchBusinessAddressV2 value) { - this.correspondenceAddress = value; - } - - /** - * Gets the value of the telephoneNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTelephoneNumbers() { - return telephoneNumbers; - } - - /** - * Sets the value of the telephoneNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTelephoneNumbers(StringArray value) { - this.telephoneNumbers = value; - } - - /** - * Gets the value of the faxNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getFaxNumbers() { - return faxNumbers; - } - - /** - * Sets the value of the faxNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setFaxNumbers(StringArray value) { - this.faxNumbers = value; - } - - /** - * Gets the value of the emailAddresses property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getEmailAddresses() { - return emailAddresses; - } - - /** - * Sets the value of the emailAddresses property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setEmailAddresses(StringArray value) { - this.emailAddresses = value; - } - - /** - * Gets the value of the domainNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getDomainNames() { - return domainNames; - } - - /** - * Sets the value of the domainNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setDomainNames(StringArray value) { - this.domainNames = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV2Array.java deleted file mode 100644 index dc58627..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessEstablishmentV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessEstablishmentV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessEstablishmentV2Array", propOrder = { - "item" -}) -public class DutchBusinessEstablishmentV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessEstablishmentV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV3.java deleted file mode 100644 index 189aced..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV3.java +++ /dev/null @@ -1,497 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessEstablishmentV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessEstablishmentV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="main_establishment" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="personnel" type="{http://www.webservices.nl/soap/}DutchBusinessPersonnelInfoV3" minOccurs="0"/>
- *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}DutchBusinessSbiCodeV3Array" minOccurs="0"/>
- *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
- *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
- *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="fax_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="domain_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessEstablishmentV3", propOrder = { - -}) -public class DutchBusinessEstablishmentV3 { - - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(name = "main_establishment") - protected Boolean mainEstablishment; - @XmlElement(name = "legal_form_text") - protected String legalFormText; - protected String activity; - protected String description; - @XmlElement(name = "establishment_date") - protected DutchBusinessDateV3 establishmentDate; - @XmlElement(name = "date_since") - protected DutchBusinessDateV3 dateSince; - protected DutchBusinessPersonnelInfoV3 personnel; - protected StringArray remarks; - @XmlElement(name = "sbi_codes") - protected DutchBusinessSbiCodeV3Array sbiCodes; - @XmlElement(name = "establishment_address") - protected DutchBusinessAddressV3 establishmentAddress; - @XmlElement(name = "correspondence_address") - protected DutchBusinessAddressV3 correspondenceAddress; - @XmlElement(name = "telephone_numbers") - protected StringArray telephoneNumbers; - @XmlElement(name = "fax_numbers") - protected StringArray faxNumbers; - @XmlElement(name = "email_addresses") - protected StringArray emailAddresses; - @XmlElement(name = "domain_names") - protected StringArray domainNames; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the mainEstablishment property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isMainEstablishment() { - return mainEstablishment; - } - - /** - * Sets the value of the mainEstablishment property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setMainEstablishment(Boolean value) { - this.mainEstablishment = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the activity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getActivity() { - return activity; - } - - /** - * Sets the value of the activity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setActivity(String value) { - this.activity = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the establishmentDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getEstablishmentDate() { - return establishmentDate; - } - - /** - * Sets the value of the establishmentDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setEstablishmentDate(DutchBusinessDateV3 value) { - this.establishmentDate = value; - } - - /** - * Gets the value of the dateSince property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getDateSince() { - return dateSince; - } - - /** - * Sets the value of the dateSince property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setDateSince(DutchBusinessDateV3 value) { - this.dateSince = value; - } - - /** - * Gets the value of the personnel property. - * - * @return - * possible object is - * {@link DutchBusinessPersonnelInfoV3 } - * - */ - public DutchBusinessPersonnelInfoV3 getPersonnel() { - return personnel; - } - - /** - * Sets the value of the personnel property. - * - * @param value - * allowed object is - * {@link DutchBusinessPersonnelInfoV3 } - * - */ - public void setPersonnel(DutchBusinessPersonnelInfoV3 value) { - this.personnel = value; - } - - /** - * Gets the value of the remarks property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getRemarks() { - return remarks; - } - - /** - * Sets the value of the remarks property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setRemarks(StringArray value) { - this.remarks = value; - } - - /** - * Gets the value of the sbiCodes property. - * - * @return - * possible object is - * {@link DutchBusinessSbiCodeV3Array } - * - */ - public DutchBusinessSbiCodeV3Array getSbiCodes() { - return sbiCodes; - } - - /** - * Sets the value of the sbiCodes property. - * - * @param value - * allowed object is - * {@link DutchBusinessSbiCodeV3Array } - * - */ - public void setSbiCodes(DutchBusinessSbiCodeV3Array value) { - this.sbiCodes = value; - } - - /** - * Gets the value of the establishmentAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV3 } - * - */ - public DutchBusinessAddressV3 getEstablishmentAddress() { - return establishmentAddress; - } - - /** - * Sets the value of the establishmentAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV3 } - * - */ - public void setEstablishmentAddress(DutchBusinessAddressV3 value) { - this.establishmentAddress = value; - } - - /** - * Gets the value of the correspondenceAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV3 } - * - */ - public DutchBusinessAddressV3 getCorrespondenceAddress() { - return correspondenceAddress; - } - - /** - * Sets the value of the correspondenceAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV3 } - * - */ - public void setCorrespondenceAddress(DutchBusinessAddressV3 value) { - this.correspondenceAddress = value; - } - - /** - * Gets the value of the telephoneNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTelephoneNumbers() { - return telephoneNumbers; - } - - /** - * Sets the value of the telephoneNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTelephoneNumbers(StringArray value) { - this.telephoneNumbers = value; - } - - /** - * Gets the value of the faxNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getFaxNumbers() { - return faxNumbers; - } - - /** - * Sets the value of the faxNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setFaxNumbers(StringArray value) { - this.faxNumbers = value; - } - - /** - * Gets the value of the emailAddresses property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getEmailAddresses() { - return emailAddresses; - } - - /** - * Sets the value of the emailAddresses property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setEmailAddresses(StringArray value) { - this.emailAddresses = value; - } - - /** - * Gets the value of the domainNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getDomainNames() { - return domainNames; - } - - /** - * Sets the value of the domainNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setDomainNames(StringArray value) { - this.domainNames = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV3Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV3Array.java deleted file mode 100644 index 7f1e4d6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessEstablishmentV3Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessEstablishmentV3Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessEstablishmentV3Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentV3" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessEstablishmentV3Array", propOrder = { - "item" -}) -public class DutchBusinessEstablishmentV3Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessEstablishmentV3 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractChangeForecast.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractChangeForecast.java deleted file mode 100644 index b296ec8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractChangeForecast.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessExtractChangeForecast complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessExtractChangeForecast">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="change_set" type="{http://www.webservices.nl/soap/}DutchBusinessExtractChangeSet"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessExtractChangeForecast", propOrder = { - -}) -public class DutchBusinessExtractChangeForecast { - - @XmlElement(name = "change_set", required = true) - protected DutchBusinessExtractChangeSet changeSet; - - /** - * Gets the value of the changeSet property. - * - * @return - * possible object is - * {@link DutchBusinessExtractChangeSet } - * - */ - public DutchBusinessExtractChangeSet getChangeSet() { - return changeSet; - } - - /** - * Sets the value of the changeSet property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractChangeSet } - * - */ - public void setChangeSet(DutchBusinessExtractChangeSet value) { - this.changeSet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractChangeSet.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractChangeSet.java deleted file mode 100644 index b992628..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractChangeSet.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessExtractChangeSet complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessExtractChangeSet">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="period" type="{http://www.webservices.nl/soap/}DutchBusinessPeriod"/>
- *         <element name="changes" type="{http://www.webservices.nl/soap/}stringArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessExtractChangeSet", propOrder = { - -}) -public class DutchBusinessExtractChangeSet { - - @XmlElement(required = true) - protected DutchBusinessPeriod period; - @XmlElement(required = true) - protected StringArray changes; - - /** - * Gets the value of the period property. - * - * @return - * possible object is - * {@link DutchBusinessPeriod } - * - */ - public DutchBusinessPeriod getPeriod() { - return period; - } - - /** - * Sets the value of the period property. - * - * @param value - * allowed object is - * {@link DutchBusinessPeriod } - * - */ - public void setPeriod(DutchBusinessPeriod value) { - this.period = value; - } - - /** - * Gets the value of the changes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getChanges() { - return changes; - } - - /** - * Sets the value of the changes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setChanges(StringArray value) { - this.changes = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDataV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDataV2.java deleted file mode 100644 index 86ae353..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDataV2.java +++ /dev/null @@ -1,256 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessExtractDataV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessExtractDataV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="reference_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="legal_entity" type="{http://www.webservices.nl/soap/}DutchBusinessLegalEntityV2" minOccurs="0"/>
- *         <element name="partnership" type="{http://www.webservices.nl/soap/}DutchBusinessPartnershipV2" minOccurs="0"/>
- *         <element name="enterprise" type="{http://www.webservices.nl/soap/}DutchBusinessEnterpriseV2" minOccurs="0"/>
- *         <element name="establishments" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentV2Array" minOccurs="0"/>
- *         <element name="positions" type="{http://www.webservices.nl/soap/}DutchBusinessPositionV2Array" minOccurs="0"/>
- *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessExtractDataV2", propOrder = { - -}) -public class DutchBusinessExtractDataV2 { - - @XmlElement(name = "dossier_number") - protected String dossierNumber; - @XmlElement(name = "reference_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar referenceDate; - @XmlElement(name = "legal_entity") - protected DutchBusinessLegalEntityV2 legalEntity; - protected DutchBusinessPartnershipV2 partnership; - protected DutchBusinessEnterpriseV2 enterprise; - protected DutchBusinessEstablishmentV2Array establishments; - protected DutchBusinessPositionV2Array positions; - protected StringArray remarks; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the referenceDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getReferenceDate() { - return referenceDate; - } - - /** - * Sets the value of the referenceDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setReferenceDate(XMLGregorianCalendar value) { - this.referenceDate = value; - } - - /** - * Gets the value of the legalEntity property. - * - * @return - * possible object is - * {@link DutchBusinessLegalEntityV2 } - * - */ - public DutchBusinessLegalEntityV2 getLegalEntity() { - return legalEntity; - } - - /** - * Sets the value of the legalEntity property. - * - * @param value - * allowed object is - * {@link DutchBusinessLegalEntityV2 } - * - */ - public void setLegalEntity(DutchBusinessLegalEntityV2 value) { - this.legalEntity = value; - } - - /** - * Gets the value of the partnership property. - * - * @return - * possible object is - * {@link DutchBusinessPartnershipV2 } - * - */ - public DutchBusinessPartnershipV2 getPartnership() { - return partnership; - } - - /** - * Sets the value of the partnership property. - * - * @param value - * allowed object is - * {@link DutchBusinessPartnershipV2 } - * - */ - public void setPartnership(DutchBusinessPartnershipV2 value) { - this.partnership = value; - } - - /** - * Gets the value of the enterprise property. - * - * @return - * possible object is - * {@link DutchBusinessEnterpriseV2 } - * - */ - public DutchBusinessEnterpriseV2 getEnterprise() { - return enterprise; - } - - /** - * Sets the value of the enterprise property. - * - * @param value - * allowed object is - * {@link DutchBusinessEnterpriseV2 } - * - */ - public void setEnterprise(DutchBusinessEnterpriseV2 value) { - this.enterprise = value; - } - - /** - * Gets the value of the establishments property. - * - * @return - * possible object is - * {@link DutchBusinessEstablishmentV2Array } - * - */ - public DutchBusinessEstablishmentV2Array getEstablishments() { - return establishments; - } - - /** - * Sets the value of the establishments property. - * - * @param value - * allowed object is - * {@link DutchBusinessEstablishmentV2Array } - * - */ - public void setEstablishments(DutchBusinessEstablishmentV2Array value) { - this.establishments = value; - } - - /** - * Gets the value of the positions property. - * - * @return - * possible object is - * {@link DutchBusinessPositionV2Array } - * - */ - public DutchBusinessPositionV2Array getPositions() { - return positions; - } - - /** - * Sets the value of the positions property. - * - * @param value - * allowed object is - * {@link DutchBusinessPositionV2Array } - * - */ - public void setPositions(DutchBusinessPositionV2Array value) { - this.positions = value; - } - - /** - * Gets the value of the remarks property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getRemarks() { - return remarks; - } - - /** - * Sets the value of the remarks property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setRemarks(StringArray value) { - this.remarks = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDataV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDataV3.java deleted file mode 100644 index b39fb2f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDataV3.java +++ /dev/null @@ -1,256 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessExtractDataV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessExtractDataV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="reference_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="legal_entity" type="{http://www.webservices.nl/soap/}DutchBusinessLegalEntityV3" minOccurs="0"/>
- *         <element name="partnership" type="{http://www.webservices.nl/soap/}DutchBusinessPartnershipV3" minOccurs="0"/>
- *         <element name="enterprise" type="{http://www.webservices.nl/soap/}DutchBusinessEnterpriseV3" minOccurs="0"/>
- *         <element name="establishments" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentV3Array" minOccurs="0"/>
- *         <element name="positions" type="{http://www.webservices.nl/soap/}DutchBusinessPositionV3Array" minOccurs="0"/>
- *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessExtractDataV3", propOrder = { - -}) -public class DutchBusinessExtractDataV3 { - - @XmlElement(name = "dossier_number") - protected String dossierNumber; - @XmlElement(name = "reference_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar referenceDate; - @XmlElement(name = "legal_entity") - protected DutchBusinessLegalEntityV3 legalEntity; - protected DutchBusinessPartnershipV3 partnership; - protected DutchBusinessEnterpriseV3 enterprise; - protected DutchBusinessEstablishmentV3Array establishments; - protected DutchBusinessPositionV3Array positions; - protected StringArray remarks; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the referenceDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getReferenceDate() { - return referenceDate; - } - - /** - * Sets the value of the referenceDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setReferenceDate(XMLGregorianCalendar value) { - this.referenceDate = value; - } - - /** - * Gets the value of the legalEntity property. - * - * @return - * possible object is - * {@link DutchBusinessLegalEntityV3 } - * - */ - public DutchBusinessLegalEntityV3 getLegalEntity() { - return legalEntity; - } - - /** - * Sets the value of the legalEntity property. - * - * @param value - * allowed object is - * {@link DutchBusinessLegalEntityV3 } - * - */ - public void setLegalEntity(DutchBusinessLegalEntityV3 value) { - this.legalEntity = value; - } - - /** - * Gets the value of the partnership property. - * - * @return - * possible object is - * {@link DutchBusinessPartnershipV3 } - * - */ - public DutchBusinessPartnershipV3 getPartnership() { - return partnership; - } - - /** - * Sets the value of the partnership property. - * - * @param value - * allowed object is - * {@link DutchBusinessPartnershipV3 } - * - */ - public void setPartnership(DutchBusinessPartnershipV3 value) { - this.partnership = value; - } - - /** - * Gets the value of the enterprise property. - * - * @return - * possible object is - * {@link DutchBusinessEnterpriseV3 } - * - */ - public DutchBusinessEnterpriseV3 getEnterprise() { - return enterprise; - } - - /** - * Sets the value of the enterprise property. - * - * @param value - * allowed object is - * {@link DutchBusinessEnterpriseV3 } - * - */ - public void setEnterprise(DutchBusinessEnterpriseV3 value) { - this.enterprise = value; - } - - /** - * Gets the value of the establishments property. - * - * @return - * possible object is - * {@link DutchBusinessEstablishmentV3Array } - * - */ - public DutchBusinessEstablishmentV3Array getEstablishments() { - return establishments; - } - - /** - * Sets the value of the establishments property. - * - * @param value - * allowed object is - * {@link DutchBusinessEstablishmentV3Array } - * - */ - public void setEstablishments(DutchBusinessEstablishmentV3Array value) { - this.establishments = value; - } - - /** - * Gets the value of the positions property. - * - * @return - * possible object is - * {@link DutchBusinessPositionV3Array } - * - */ - public DutchBusinessPositionV3Array getPositions() { - return positions; - } - - /** - * Sets the value of the positions property. - * - * @param value - * allowed object is - * {@link DutchBusinessPositionV3Array } - * - */ - public void setPositions(DutchBusinessPositionV3Array value) { - this.positions = value; - } - - /** - * Gets the value of the remarks property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getRemarks() { - return remarks; - } - - /** - * Sets the value of the remarks property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setRemarks(StringArray value) { - this.remarks = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocument.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocument.java deleted file mode 100644 index 2664427..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocument.java +++ /dev/null @@ -1,97 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessExtractDocument complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessExtractDocument">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="document_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessExtractDocument", propOrder = { - -}) -public class DutchBusinessExtractDocument { - - @XmlElement(required = true) - protected byte[] document; - @XmlElement(name = "document_date", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar documentDate; - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - - /** - * Gets the value of the documentDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDocumentDate() { - return documentDate; - } - - /** - * Sets the value of the documentDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDocumentDate(XMLGregorianCalendar value) { - this.documentDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentData.java deleted file mode 100644 index 77bc09d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentData.java +++ /dev/null @@ -1,307 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessExtractDocumentData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessExtractDocumentData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="document_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
- *         <element name="legal_entity" type="{http://www.webservices.nl/soap/}DutchBusinessLegalEntity" minOccurs="0"/>
- *         <element name="enterprise" type="{http://www.webservices.nl/soap/}DutchBusinessEnterprise" minOccurs="0"/>
- *         <element name="partnership" type="{http://www.webservices.nl/soap/}DutchBusinessPartnershipArray" minOccurs="0"/>
- *         <element name="establishments" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentArray" minOccurs="0"/>
- *         <element name="positions" type="{http://www.webservices.nl/soap/}DutchBusinessPositionArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessExtractDocumentData", propOrder = { - -}) -public class DutchBusinessExtractDocumentData { - - protected byte[] document; - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - protected String status; - @XmlElement(name = "document_date", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar documentDate; - @XmlElement(name = "legal_entity") - protected DutchBusinessLegalEntity legalEntity; - protected DutchBusinessEnterprise enterprise; - protected DutchBusinessPartnershipArray partnership; - protected DutchBusinessEstablishmentArray establishments; - protected DutchBusinessPositionArray positions; - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the documentDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDocumentDate() { - return documentDate; - } - - /** - * Sets the value of the documentDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDocumentDate(XMLGregorianCalendar value) { - this.documentDate = value; - } - - /** - * Gets the value of the legalEntity property. - * - * @return - * possible object is - * {@link DutchBusinessLegalEntity } - * - */ - public DutchBusinessLegalEntity getLegalEntity() { - return legalEntity; - } - - /** - * Sets the value of the legalEntity property. - * - * @param value - * allowed object is - * {@link DutchBusinessLegalEntity } - * - */ - public void setLegalEntity(DutchBusinessLegalEntity value) { - this.legalEntity = value; - } - - /** - * Gets the value of the enterprise property. - * - * @return - * possible object is - * {@link DutchBusinessEnterprise } - * - */ - public DutchBusinessEnterprise getEnterprise() { - return enterprise; - } - - /** - * Sets the value of the enterprise property. - * - * @param value - * allowed object is - * {@link DutchBusinessEnterprise } - * - */ - public void setEnterprise(DutchBusinessEnterprise value) { - this.enterprise = value; - } - - /** - * Gets the value of the partnership property. - * - * @return - * possible object is - * {@link DutchBusinessPartnershipArray } - * - */ - public DutchBusinessPartnershipArray getPartnership() { - return partnership; - } - - /** - * Sets the value of the partnership property. - * - * @param value - * allowed object is - * {@link DutchBusinessPartnershipArray } - * - */ - public void setPartnership(DutchBusinessPartnershipArray value) { - this.partnership = value; - } - - /** - * Gets the value of the establishments property. - * - * @return - * possible object is - * {@link DutchBusinessEstablishmentArray } - * - */ - public DutchBusinessEstablishmentArray getEstablishments() { - return establishments; - } - - /** - * Sets the value of the establishments property. - * - * @param value - * allowed object is - * {@link DutchBusinessEstablishmentArray } - * - */ - public void setEstablishments(DutchBusinessEstablishmentArray value) { - this.establishments = value; - } - - /** - * Gets the value of the positions property. - * - * @return - * possible object is - * {@link DutchBusinessPositionArray } - * - */ - public DutchBusinessPositionArray getPositions() { - return positions; - } - - /** - * Sets the value of the positions property. - * - * @param value - * allowed object is - * {@link DutchBusinessPositionArray } - * - */ - public void setPositions(DutchBusinessPositionArray value) { - this.positions = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentDataV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentDataV2.java deleted file mode 100644 index d062084..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentDataV2.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessExtractDocumentDataV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessExtractDocumentDataV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
- *         <element name="data" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDataV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessExtractDocumentDataV2", propOrder = { - -}) -public class DutchBusinessExtractDocumentDataV2 { - - protected byte[] document; - @XmlElement(required = true) - protected DutchBusinessExtractDataV2 data; - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - - /** - * Gets the value of the data property. - * - * @return - * possible object is - * {@link DutchBusinessExtractDataV2 } - * - */ - public DutchBusinessExtractDataV2 getData() { - return data; - } - - /** - * Sets the value of the data property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractDataV2 } - * - */ - public void setData(DutchBusinessExtractDataV2 value) { - this.data = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentDataV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentDataV3.java deleted file mode 100644 index fb013cd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractDocumentDataV3.java +++ /dev/null @@ -1,117 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessExtractDocumentDataV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessExtractDocumentDataV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
- *         <element name="data" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDataV3"/>
- *         <element name="source" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessExtractDocumentDataV3", propOrder = { - -}) -public class DutchBusinessExtractDocumentDataV3 { - - protected byte[] document; - @XmlElement(required = true) - protected DutchBusinessExtractDataV3 data; - protected byte[] source; - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - - /** - * Gets the value of the data property. - * - * @return - * possible object is - * {@link DutchBusinessExtractDataV3 } - * - */ - public DutchBusinessExtractDataV3 getData() { - return data; - } - - /** - * Sets the value of the data property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractDataV3 } - * - */ - public void setData(DutchBusinessExtractDataV3 value) { - this.data = value; - } - - /** - * Gets the value of the source property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getSource() { - return source; - } - - /** - * Sets the value of the source property. - * - * @param value - * allowed object is - * byte[] - */ - public void setSource(byte[] value) { - this.source = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractHistory.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractHistory.java deleted file mode 100644 index 3b4c71c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractHistory.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessExtractHistory complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessExtractHistory">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="forecast" type="{http://www.webservices.nl/soap/}DutchBusinessExtractChangeForecast"/>
- *         <element name="references" type="{http://www.webservices.nl/soap/}DutchBusinessExtractReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessExtractHistory", propOrder = { - -}) -public class DutchBusinessExtractHistory { - - @XmlElement(required = true) - protected DutchBusinessExtractChangeForecast forecast; - @XmlElement(required = true) - protected DutchBusinessExtractReferenceArray references; - - /** - * Gets the value of the forecast property. - * - * @return - * possible object is - * {@link DutchBusinessExtractChangeForecast } - * - */ - public DutchBusinessExtractChangeForecast getForecast() { - return forecast; - } - - /** - * Sets the value of the forecast property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractChangeForecast } - * - */ - public void setForecast(DutchBusinessExtractChangeForecast value) { - this.forecast = value; - } - - /** - * Gets the value of the references property. - * - * @return - * possible object is - * {@link DutchBusinessExtractReferenceArray } - * - */ - public DutchBusinessExtractReferenceArray getReferences() { - return references; - } - - /** - * Sets the value of the references property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractReferenceArray } - * - */ - public void setReferences(DutchBusinessExtractReferenceArray value) { - this.references = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractReference.java deleted file mode 100644 index cbe7d39..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractReference.java +++ /dev/null @@ -1,126 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessExtractReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessExtractReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="extract_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="document_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
- *         <element name="change_set" type="{http://www.webservices.nl/soap/}DutchBusinessExtractChangeSet"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessExtractReference", propOrder = { - -}) -public class DutchBusinessExtractReference { - - @XmlElement(name = "extract_id", required = true) - protected String extractId; - @XmlElement(name = "document_date", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar documentDate; - @XmlElement(name = "change_set", required = true) - protected DutchBusinessExtractChangeSet changeSet; - - /** - * Gets the value of the extractId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getExtractId() { - return extractId; - } - - /** - * Sets the value of the extractId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setExtractId(String value) { - this.extractId = value; - } - - /** - * Gets the value of the documentDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDocumentDate() { - return documentDate; - } - - /** - * Sets the value of the documentDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDocumentDate(XMLGregorianCalendar value) { - this.documentDate = value; - } - - /** - * Gets the value of the changeSet property. - * - * @return - * possible object is - * {@link DutchBusinessExtractChangeSet } - * - */ - public DutchBusinessExtractChangeSet getChangeSet() { - return changeSet; - } - - /** - * Sets the value of the changeSet property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractChangeSet } - * - */ - public void setChangeSet(DutchBusinessExtractChangeSet value) { - this.changeSet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractReferenceArray.java deleted file mode 100644 index d26ffc5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessExtractReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessExtractReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessExtractReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessExtractReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessExtractReferenceArray", propOrder = { - "item" -}) -public class DutchBusinessExtractReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessExtractReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessFormattedAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessFormattedAddress.java deleted file mode 100644 index b785104..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessFormattedAddress.java +++ /dev/null @@ -1,119 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessFormattedAddress complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessFormattedAddress">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="original" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
- *         <element name="official" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
- *         <element name="formatted" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessFormattedAddress", propOrder = { - -}) -public class DutchBusinessFormattedAddress { - - protected DutchBusinessAddressV3 original; - protected DutchBusinessAddressV3 official; - protected DutchBusinessAddressV3 formatted; - - /** - * Gets the value of the original property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV3 } - * - */ - public DutchBusinessAddressV3 getOriginal() { - return original; - } - - /** - * Sets the value of the original property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV3 } - * - */ - public void setOriginal(DutchBusinessAddressV3 value) { - this.original = value; - } - - /** - * Gets the value of the official property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV3 } - * - */ - public DutchBusinessAddressV3 getOfficial() { - return official; - } - - /** - * Sets the value of the official property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV3 } - * - */ - public void setOfficial(DutchBusinessAddressV3 value) { - this.official = value; - } - - /** - * Gets the value of the formatted property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV3 } - * - */ - public DutchBusinessAddressV3 getFormatted() { - return formatted; - } - - /** - * Sets the value of the formatted property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV3 } - * - */ - public void setFormatted(DutchBusinessAddressV3 value) { - this.formatted = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsRequestType.java deleted file mode 100644 index 1c11a55..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsRequestType.java +++ /dev/null @@ -1,153 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for dutchBusinessGetAdditionalPositionsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetAdditionalPositionsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="birth_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetAdditionalPositionsRequestType", propOrder = { - -}) -public class DutchBusinessGetAdditionalPositionsRequestType { - - @XmlElement(name = "first_name", required = true) - protected String firstName; - @XmlElement(name = "last_name", required = true) - protected String lastName; - @XmlElement(name = "birth_date", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar birthDate; - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the birthDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBirthDate() { - return birthDate; - } - - /** - * Sets the value of the birthDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBirthDate(XMLGregorianCalendar value) { - this.birthDate = value; - } - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsResponseType.java deleted file mode 100644 index e65a395..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetAdditionalPositionsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetAdditionalPositionsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessGetAdditionalPositionsResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetAdditionalPositionsResponseType", propOrder = { - -}) -public class DutchBusinessGetAdditionalPositionsResponseType { - - @XmlElement(required = true) - protected DutchBusinessGetAdditionalPositionsResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessGetAdditionalPositionsResult } - * - */ - public DutchBusinessGetAdditionalPositionsResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessGetAdditionalPositionsResult } - * - */ - public void setOut(DutchBusinessGetAdditionalPositionsResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsResult.java deleted file mode 100644 index c3469d4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAdditionalPositionsResult.java +++ /dev/null @@ -1,177 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessGetAdditionalPositionsResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessGetAdditionalPositionsResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="functionary" type="{http://www.webservices.nl/soap/}DutchBusinessAdditionalPositionFunctionary"/>
- *         <element name="current_positions" type="{http://www.webservices.nl/soap/}DutchBusinessAdditionalPositionArray"/>
- *         <element name="previous_positions" type="{http://www.webservices.nl/soap/}DutchBusinessAdditionalPositionArray"/>
- *         <element name="possible_current_positions" type="{http://www.webservices.nl/soap/}DutchBusinessAdditionalPositionArray"/>
- *         <element name="possible_previous_positions" type="{http://www.webservices.nl/soap/}DutchBusinessAdditionalPositionArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessGetAdditionalPositionsResult", propOrder = { - -}) -public class DutchBusinessGetAdditionalPositionsResult { - - @XmlElement(required = true) - protected DutchBusinessAdditionalPositionFunctionary functionary; - @XmlElement(name = "current_positions", required = true) - protected DutchBusinessAdditionalPositionArray currentPositions; - @XmlElement(name = "previous_positions", required = true) - protected DutchBusinessAdditionalPositionArray previousPositions; - @XmlElement(name = "possible_current_positions", required = true) - protected DutchBusinessAdditionalPositionArray possibleCurrentPositions; - @XmlElement(name = "possible_previous_positions", required = true) - protected DutchBusinessAdditionalPositionArray possiblePreviousPositions; - - /** - * Gets the value of the functionary property. - * - * @return - * possible object is - * {@link DutchBusinessAdditionalPositionFunctionary } - * - */ - public DutchBusinessAdditionalPositionFunctionary getFunctionary() { - return functionary; - } - - /** - * Sets the value of the functionary property. - * - * @param value - * allowed object is - * {@link DutchBusinessAdditionalPositionFunctionary } - * - */ - public void setFunctionary(DutchBusinessAdditionalPositionFunctionary value) { - this.functionary = value; - } - - /** - * Gets the value of the currentPositions property. - * - * @return - * possible object is - * {@link DutchBusinessAdditionalPositionArray } - * - */ - public DutchBusinessAdditionalPositionArray getCurrentPositions() { - return currentPositions; - } - - /** - * Sets the value of the currentPositions property. - * - * @param value - * allowed object is - * {@link DutchBusinessAdditionalPositionArray } - * - */ - public void setCurrentPositions(DutchBusinessAdditionalPositionArray value) { - this.currentPositions = value; - } - - /** - * Gets the value of the previousPositions property. - * - * @return - * possible object is - * {@link DutchBusinessAdditionalPositionArray } - * - */ - public DutchBusinessAdditionalPositionArray getPreviousPositions() { - return previousPositions; - } - - /** - * Sets the value of the previousPositions property. - * - * @param value - * allowed object is - * {@link DutchBusinessAdditionalPositionArray } - * - */ - public void setPreviousPositions(DutchBusinessAdditionalPositionArray value) { - this.previousPositions = value; - } - - /** - * Gets the value of the possibleCurrentPositions property. - * - * @return - * possible object is - * {@link DutchBusinessAdditionalPositionArray } - * - */ - public DutchBusinessAdditionalPositionArray getPossibleCurrentPositions() { - return possibleCurrentPositions; - } - - /** - * Sets the value of the possibleCurrentPositions property. - * - * @param value - * allowed object is - * {@link DutchBusinessAdditionalPositionArray } - * - */ - public void setPossibleCurrentPositions(DutchBusinessAdditionalPositionArray value) { - this.possibleCurrentPositions = value; - } - - /** - * Gets the value of the possiblePreviousPositions property. - * - * @return - * possible object is - * {@link DutchBusinessAdditionalPositionArray } - * - */ - public DutchBusinessAdditionalPositionArray getPossiblePreviousPositions() { - return possiblePreviousPositions; - } - - /** - * Sets the value of the possiblePreviousPositions property. - * - * @param value - * allowed object is - * {@link DutchBusinessAdditionalPositionArray } - * - */ - public void setPossiblePreviousPositions(DutchBusinessAdditionalPositionArray value) { - this.possiblePreviousPositions = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAnnualFinancialStatementRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAnnualFinancialStatementRequestType.java deleted file mode 100644 index 0f8da2c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAnnualFinancialStatementRequestType.java +++ /dev/null @@ -1,114 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetAnnualFinancialStatementRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetAnnualFinancialStatementRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetAnnualFinancialStatementRequestType", propOrder = { - -}) -public class DutchBusinessGetAnnualFinancialStatementRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - protected int year; - @XmlElement(required = true) - protected String type; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the year property. - * - */ - public int getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - */ - public void setYear(int value) { - this.year = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAnnualFinancialStatementResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAnnualFinancialStatementResponseType.java deleted file mode 100644 index bfbca66..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetAnnualFinancialStatementResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetAnnualFinancialStatementResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetAnnualFinancialStatementResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessAnnualFinancialStatement"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetAnnualFinancialStatementResponseType", propOrder = { - -}) -public class DutchBusinessGetAnnualFinancialStatementResponseType { - - @XmlElement(required = true) - protected DutchBusinessAnnualFinancialStatement out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessAnnualFinancialStatement } - * - */ - public DutchBusinessAnnualFinancialStatement getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessAnnualFinancialStatement } - * - */ - public void setOut(DutchBusinessAnnualFinancialStatement value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraph.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraph.java deleted file mode 100644 index 14cd59e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraph.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessGetConcernRelationsDetailsGraph complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessGetConcernRelationsDetailsGraph">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nodes" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsDetailsGraphNodeArray"/>
- *         <element name="links" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsDetailsGraphLinkArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessGetConcernRelationsDetailsGraph", propOrder = { - -}) -public class DutchBusinessGetConcernRelationsDetailsGraph { - - @XmlElement(required = true) - protected DutchBusinessGetConcernRelationsDetailsGraphNodeArray nodes; - @XmlElement(required = true) - protected DutchBusinessGetConcernRelationsDetailsGraphLinkArray links; - - /** - * Gets the value of the nodes property. - * - * @return - * possible object is - * {@link DutchBusinessGetConcernRelationsDetailsGraphNodeArray } - * - */ - public DutchBusinessGetConcernRelationsDetailsGraphNodeArray getNodes() { - return nodes; - } - - /** - * Sets the value of the nodes property. - * - * @param value - * allowed object is - * {@link DutchBusinessGetConcernRelationsDetailsGraphNodeArray } - * - */ - public void setNodes(DutchBusinessGetConcernRelationsDetailsGraphNodeArray value) { - this.nodes = value; - } - - /** - * Gets the value of the links property. - * - * @return - * possible object is - * {@link DutchBusinessGetConcernRelationsDetailsGraphLinkArray } - * - */ - public DutchBusinessGetConcernRelationsDetailsGraphLinkArray getLinks() { - return links; - } - - /** - * Sets the value of the links property. - * - * @param value - * allowed object is - * {@link DutchBusinessGetConcernRelationsDetailsGraphLinkArray } - * - */ - public void setLinks(DutchBusinessGetConcernRelationsDetailsGraphLinkArray value) { - this.links = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphLink.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphLink.java deleted file mode 100644 index 579af6b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphLink.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessGetConcernRelationsDetailsGraphLink complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessGetConcernRelationsDetailsGraphLink">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="source" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="target" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessGetConcernRelationsDetailsGraphLink", propOrder = { - -}) -public class DutchBusinessGetConcernRelationsDetailsGraphLink { - - @XmlElement(required = true) - protected String source; - @XmlElement(required = true) - protected String target; - @XmlElement(required = true) - protected String type; - - /** - * Gets the value of the source property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSource() { - return source; - } - - /** - * Sets the value of the source property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSource(String value) { - this.source = value; - } - - /** - * Gets the value of the target property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTarget() { - return target; - } - - /** - * Sets the value of the target property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTarget(String value) { - this.target = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphLinkArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphLinkArray.java deleted file mode 100644 index 15a6f0c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphLinkArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessGetConcernRelationsDetailsGraphLinkArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessGetConcernRelationsDetailsGraphLinkArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsDetailsGraphLink" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessGetConcernRelationsDetailsGraphLinkArray", propOrder = { - "item" -}) -public class DutchBusinessGetConcernRelationsDetailsGraphLinkArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessGetConcernRelationsDetailsGraphLink } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphNode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphNode.java deleted file mode 100644 index f5e2bf6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphNode.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessGetConcernRelationsDetailsGraphNode complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessGetConcernRelationsDetailsGraphNode">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessGetConcernRelationsDetailsGraphNode", propOrder = { - -}) -public class DutchBusinessGetConcernRelationsDetailsGraphNode { - - @XmlElement(required = true) - protected String id; - @XmlElement(required = true) - protected String name; - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphNodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphNodeArray.java deleted file mode 100644 index 3b2612b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsGraphNodeArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessGetConcernRelationsDetailsGraphNodeArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessGetConcernRelationsDetailsGraphNodeArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsDetailsGraphNode" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessGetConcernRelationsDetailsGraphNodeArray", propOrder = { - "item" -}) -public class DutchBusinessGetConcernRelationsDetailsGraphNodeArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessGetConcernRelationsDetailsGraphNode } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsRequestType.java deleted file mode 100644 index 6801699..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsRequestType.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetConcernRelationsDetailsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetConcernRelationsDetailsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="include_source" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetConcernRelationsDetailsRequestType", propOrder = { - -}) -public class DutchBusinessGetConcernRelationsDetailsRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "include_source") - protected boolean includeSource; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the includeSource property. - * - */ - public boolean isIncludeSource() { - return includeSource; - } - - /** - * Sets the value of the includeSource property. - * - */ - public void setIncludeSource(boolean value) { - this.includeSource = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsResponseType.java deleted file mode 100644 index 39df754..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetConcernRelationsDetailsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetConcernRelationsDetailsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsDetailsResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetConcernRelationsDetailsResponseType", propOrder = { - -}) -public class DutchBusinessGetConcernRelationsDetailsResponseType { - - @XmlElement(required = true) - protected DutchBusinessGetConcernRelationsDetailsResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessGetConcernRelationsDetailsResult } - * - */ - public DutchBusinessGetConcernRelationsDetailsResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessGetConcernRelationsDetailsResult } - * - */ - public void setOut(DutchBusinessGetConcernRelationsDetailsResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsResult.java deleted file mode 100644 index e25a94b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsDetailsResult.java +++ /dev/null @@ -1,145 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessGetConcernRelationsDetailsResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessGetConcernRelationsDetailsResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="graph" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsDetailsGraph"/>
- *         <element name="pdf" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="source" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessGetConcernRelationsDetailsResult", propOrder = { - -}) -public class DutchBusinessGetConcernRelationsDetailsResult { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(required = true) - protected DutchBusinessGetConcernRelationsDetailsGraph graph; - @XmlElement(required = true) - protected byte[] pdf; - protected byte[] source; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the graph property. - * - * @return - * possible object is - * {@link DutchBusinessGetConcernRelationsDetailsGraph } - * - */ - public DutchBusinessGetConcernRelationsDetailsGraph getGraph() { - return graph; - } - - /** - * Sets the value of the graph property. - * - * @param value - * allowed object is - * {@link DutchBusinessGetConcernRelationsDetailsGraph } - * - */ - public void setGraph(DutchBusinessGetConcernRelationsDetailsGraph value) { - this.graph = value; - } - - /** - * Gets the value of the pdf property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getPdf() { - return pdf; - } - - /** - * Sets the value of the pdf property. - * - * @param value - * allowed object is - * byte[] - */ - public void setPdf(byte[] value) { - this.pdf = value; - } - - /** - * Gets the value of the source property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getSource() { - return source; - } - - /** - * Sets the value of the source property. - * - * @param value - * allowed object is - * byte[] - */ - public void setSource(byte[] value) { - this.source = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewReference.java deleted file mode 100644 index 0c91776..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewReference.java +++ /dev/null @@ -1,151 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessGetConcernRelationsOverviewReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessGetConcernRelationsOverviewReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="levels" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="level_of_matched_registration" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="registrations" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessGetConcernRelationsOverviewReference", propOrder = { - -}) -public class DutchBusinessGetConcernRelationsOverviewReference { - - @XmlElement(required = true) - protected String name; - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - protected int levels; - @XmlElement(name = "level_of_matched_registration") - protected int levelOfMatchedRegistration; - protected int registrations; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the levels property. - * - */ - public int getLevels() { - return levels; - } - - /** - * Sets the value of the levels property. - * - */ - public void setLevels(int value) { - this.levels = value; - } - - /** - * Gets the value of the levelOfMatchedRegistration property. - * - */ - public int getLevelOfMatchedRegistration() { - return levelOfMatchedRegistration; - } - - /** - * Sets the value of the levelOfMatchedRegistration property. - * - */ - public void setLevelOfMatchedRegistration(int value) { - this.levelOfMatchedRegistration = value; - } - - /** - * Gets the value of the registrations property. - * - */ - public int getRegistrations() { - return registrations; - } - - /** - * Sets the value of the registrations property. - * - */ - public void setRegistrations(int value) { - this.registrations = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewReferenceArray.java deleted file mode 100644 index 0596adf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessGetConcernRelationsOverviewReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessGetConcernRelationsOverviewReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsOverviewReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessGetConcernRelationsOverviewReferenceArray", propOrder = { - "item" -}) -public class DutchBusinessGetConcernRelationsOverviewReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessGetConcernRelationsOverviewReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewRequestType.java deleted file mode 100644 index 598a97b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetConcernRelationsOverviewRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetConcernRelationsOverviewRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetConcernRelationsOverviewRequestType", propOrder = { - -}) -public class DutchBusinessGetConcernRelationsOverviewRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewResponseType.java deleted file mode 100644 index 23374cd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetConcernRelationsOverviewResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetConcernRelationsOverviewResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsOverviewResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetConcernRelationsOverviewResponseType", propOrder = { - -}) -public class DutchBusinessGetConcernRelationsOverviewResponseType { - - @XmlElement(required = true) - protected DutchBusinessGetConcernRelationsOverviewResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessGetConcernRelationsOverviewResult } - * - */ - public DutchBusinessGetConcernRelationsOverviewResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessGetConcernRelationsOverviewResult } - * - */ - public void setOut(DutchBusinessGetConcernRelationsOverviewResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewResult.java deleted file mode 100644 index 9182f77..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetConcernRelationsOverviewResult.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessGetConcernRelationsOverviewResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessGetConcernRelationsOverviewResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="references" type="{http://www.webservices.nl/soap/}DutchBusinessGetConcernRelationsOverviewReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessGetConcernRelationsOverviewResult", propOrder = { - -}) -public class DutchBusinessGetConcernRelationsOverviewResult { - - @XmlElement(required = true) - protected DutchBusinessGetConcernRelationsOverviewReferenceArray references; - - /** - * Gets the value of the references property. - * - * @return - * possible object is - * {@link DutchBusinessGetConcernRelationsOverviewReferenceArray } - * - */ - public DutchBusinessGetConcernRelationsOverviewReferenceArray getReferences() { - return references; - } - - /** - * Sets the value of the references property. - * - * @param value - * allowed object is - * {@link DutchBusinessGetConcernRelationsOverviewReferenceArray } - * - */ - public void setReferences(DutchBusinessGetConcernRelationsOverviewReferenceArray value) { - this.references = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierHistoryRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierHistoryRequestType.java deleted file mode 100644 index 9626284..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierHistoryRequestType.java +++ /dev/null @@ -1,127 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for dutchBusinessGetDossierHistoryRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetDossierHistoryRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="period_start_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="period_end_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetDossierHistoryRequestType", propOrder = { - -}) -public class DutchBusinessGetDossierHistoryRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "period_start_date", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar periodStartDate; - @XmlElement(name = "period_end_date", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar periodEndDate; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the periodStartDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPeriodStartDate() { - return periodStartDate; - } - - /** - * Sets the value of the periodStartDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPeriodStartDate(XMLGregorianCalendar value) { - this.periodStartDate = value; - } - - /** - * Gets the value of the periodEndDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPeriodEndDate() { - return periodEndDate; - } - - /** - * Sets the value of the periodEndDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPeriodEndDate(XMLGregorianCalendar value) { - this.periodEndDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierHistoryResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierHistoryResponseType.java deleted file mode 100644 index 6c68ff4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierHistoryResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetDossierHistoryResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetDossierHistoryResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessDossierHistory"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetDossierHistoryResponseType", propOrder = { - -}) -public class DutchBusinessGetDossierHistoryResponseType { - - @XmlElement(required = true) - protected DutchBusinessDossierHistory out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessDossierHistory } - * - */ - public DutchBusinessDossierHistory getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessDossierHistory } - * - */ - public void setOut(DutchBusinessDossierHistory value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierRequestType.java deleted file mode 100644 index 537013c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetDossierRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetDossierRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetDossierRequestType", propOrder = { - -}) -public class DutchBusinessGetDossierRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number", required = true) - protected String establishmentNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierResponseType.java deleted file mode 100644 index c48f6cf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetDossierResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetDossierResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessDossier"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetDossierResponseType", propOrder = { - -}) -public class DutchBusinessGetDossierResponseType { - - @XmlElement(required = true) - protected DutchBusinessDossier out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessDossier } - * - */ - public DutchBusinessDossier getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessDossier } - * - */ - public void setOut(DutchBusinessDossier value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV2RequestType.java deleted file mode 100644 index 0a70a51..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV2RequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetDossierV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetDossierV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetDossierV2RequestType", propOrder = { - -}) -public class DutchBusinessGetDossierV2RequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number", required = true) - protected String establishmentNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV2ResponseType.java deleted file mode 100644 index 424d6d5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetDossierV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetDossierV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessDossierV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetDossierV2ResponseType", propOrder = { - -}) -public class DutchBusinessGetDossierV2ResponseType { - - @XmlElement(required = true) - protected DutchBusinessDossierV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessDossierV2 } - * - */ - public DutchBusinessDossierV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessDossierV2 } - * - */ - public void setOut(DutchBusinessDossierV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV3RequestType.java deleted file mode 100644 index c9f161d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV3RequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetDossierV3RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetDossierV3RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetDossierV3RequestType", propOrder = { - -}) -public class DutchBusinessGetDossierV3RequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number", required = true) - protected String establishmentNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV3ResponseType.java deleted file mode 100644 index ba1f45b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetDossierV3ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetDossierV3ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetDossierV3ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessDossierV3"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetDossierV3ResponseType", propOrder = { - -}) -public class DutchBusinessGetDossierV3ResponseType { - - @XmlElement(required = true) - protected DutchBusinessDossierV3 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessDossierV3 } - * - */ - public DutchBusinessDossierV3 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessDossierV3 } - * - */ - public void setOut(DutchBusinessDossierV3 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataRequestType.java deleted file mode 100644 index 937e7f9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataRequestType.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractDocumentDataRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractDocumentDataRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="allow_caching" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractDocumentDataRequestType", propOrder = { - -}) -public class DutchBusinessGetExtractDocumentDataRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "allow_caching") - protected boolean allowCaching; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the allowCaching property. - * - */ - public boolean isAllowCaching() { - return allowCaching; - } - - /** - * Sets the value of the allowCaching property. - * - */ - public void setAllowCaching(boolean value) { - this.allowCaching = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataResponseType.java deleted file mode 100644 index 0ae47ef..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractDocumentDataResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractDocumentDataResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentData"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractDocumentDataResponseType", propOrder = { - -}) -public class DutchBusinessGetExtractDocumentDataResponseType { - - @XmlElement(required = true) - protected DutchBusinessExtractDocumentData out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessExtractDocumentData } - * - */ - public DutchBusinessExtractDocumentData getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractDocumentData } - * - */ - public void setOut(DutchBusinessExtractDocumentData value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV2RequestType.java deleted file mode 100644 index 1387def..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV2RequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractDocumentDataV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractDocumentDataV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractDocumentDataV2RequestType", propOrder = { - -}) -public class DutchBusinessGetExtractDocumentDataV2RequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV2ResponseType.java deleted file mode 100644 index 44c696e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractDocumentDataV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractDocumentDataV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentDataV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractDocumentDataV2ResponseType", propOrder = { - -}) -public class DutchBusinessGetExtractDocumentDataV2ResponseType { - - @XmlElement(required = true) - protected DutchBusinessExtractDocumentDataV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessExtractDocumentDataV2 } - * - */ - public DutchBusinessExtractDocumentDataV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractDocumentDataV2 } - * - */ - public void setOut(DutchBusinessExtractDocumentDataV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV3RequestType.java deleted file mode 100644 index a37a63d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV3RequestType.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractDocumentDataV3RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractDocumentDataV3RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="include_source" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractDocumentDataV3RequestType", propOrder = { - -}) -public class DutchBusinessGetExtractDocumentDataV3RequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "include_source") - protected boolean includeSource; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the includeSource property. - * - */ - public boolean isIncludeSource() { - return includeSource; - } - - /** - * Sets the value of the includeSource property. - * - */ - public void setIncludeSource(boolean value) { - this.includeSource = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV3ResponseType.java deleted file mode 100644 index ed680ad..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentDataV3ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractDocumentDataV3ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractDocumentDataV3ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentDataV3"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractDocumentDataV3ResponseType", propOrder = { - -}) -public class DutchBusinessGetExtractDocumentDataV3ResponseType { - - @XmlElement(required = true) - protected DutchBusinessExtractDocumentDataV3 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessExtractDocumentDataV3 } - * - */ - public DutchBusinessExtractDocumentDataV3 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractDocumentDataV3 } - * - */ - public void setOut(DutchBusinessExtractDocumentDataV3 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentRequestType.java deleted file mode 100644 index 21f601a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentRequestType.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractDocumentRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractDocumentRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="allow_caching" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractDocumentRequestType", propOrder = { - -}) -public class DutchBusinessGetExtractDocumentRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "allow_caching") - protected boolean allowCaching; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the allowCaching property. - * - */ - public boolean isAllowCaching() { - return allowCaching; - } - - /** - * Sets the value of the allowCaching property. - * - */ - public void setAllowCaching(boolean value) { - this.allowCaching = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentResponseType.java deleted file mode 100644 index 0d98790..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractDocumentResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractDocumentResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractDocumentResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocument"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractDocumentResponseType", propOrder = { - -}) -public class DutchBusinessGetExtractDocumentResponseType { - - @XmlElement(required = true) - protected DutchBusinessExtractDocument out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessExtractDocument } - * - */ - public DutchBusinessExtractDocument getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractDocument } - * - */ - public void setOut(DutchBusinessExtractDocument value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryChangedRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryChangedRequestType.java deleted file mode 100644 index 5d9377c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryChangedRequestType.java +++ /dev/null @@ -1,127 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for dutchBusinessGetExtractHistoryChangedRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractHistoryChangedRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="period_start_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="period_end_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractHistoryChangedRequestType", propOrder = { - -}) -public class DutchBusinessGetExtractHistoryChangedRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "period_start_date", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar periodStartDate; - @XmlElement(name = "period_end_date", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar periodEndDate; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the periodStartDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPeriodStartDate() { - return periodStartDate; - } - - /** - * Sets the value of the periodStartDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPeriodStartDate(XMLGregorianCalendar value) { - this.periodStartDate = value; - } - - /** - * Gets the value of the periodEndDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPeriodEndDate() { - return periodEndDate; - } - - /** - * Sets the value of the periodEndDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPeriodEndDate(XMLGregorianCalendar value) { - this.periodEndDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryChangedResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryChangedResponseType.java deleted file mode 100644 index fbbe56f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryChangedResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractHistoryChangedResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractHistoryChangedResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractHistory"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractHistoryChangedResponseType", propOrder = { - -}) -public class DutchBusinessGetExtractHistoryChangedResponseType { - - @XmlElement(required = true) - protected DutchBusinessExtractHistory out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessExtractHistory } - * - */ - public DutchBusinessExtractHistory getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractHistory } - * - */ - public void setOut(DutchBusinessExtractHistory value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataRequestType.java deleted file mode 100644 index 2481206..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractHistoryDocumentDataRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractHistoryDocumentDataRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="extract_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractHistoryDocumentDataRequestType", propOrder = { - -}) -public class DutchBusinessGetExtractHistoryDocumentDataRequestType { - - @XmlElement(name = "extract_id", required = true) - protected String extractId; - - /** - * Gets the value of the extractId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getExtractId() { - return extractId; - } - - /** - * Sets the value of the extractId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setExtractId(String value) { - this.extractId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataResponseType.java deleted file mode 100644 index 2511a1d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractHistoryDocumentDataResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractHistoryDocumentDataResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentData"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractHistoryDocumentDataResponseType", propOrder = { - -}) -public class DutchBusinessGetExtractHistoryDocumentDataResponseType { - - @XmlElement(required = true) - protected DutchBusinessExtractDocumentData out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessExtractDocumentData } - * - */ - public DutchBusinessExtractDocumentData getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractDocumentData } - * - */ - public void setOut(DutchBusinessExtractDocumentData value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV2RequestType.java deleted file mode 100644 index dc9f306..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV2RequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractHistoryDocumentDataV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractHistoryDocumentDataV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="extract_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractHistoryDocumentDataV2RequestType", propOrder = { - -}) -public class DutchBusinessGetExtractHistoryDocumentDataV2RequestType { - - @XmlElement(name = "extract_id", required = true) - protected String extractId; - - /** - * Gets the value of the extractId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getExtractId() { - return extractId; - } - - /** - * Sets the value of the extractId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setExtractId(String value) { - this.extractId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV2ResponseType.java deleted file mode 100644 index 688f807..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractHistoryDocumentDataV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractHistoryDocumentDataV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentDataV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractHistoryDocumentDataV2ResponseType", propOrder = { - -}) -public class DutchBusinessGetExtractHistoryDocumentDataV2ResponseType { - - @XmlElement(required = true) - protected DutchBusinessExtractDocumentDataV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessExtractDocumentDataV2 } - * - */ - public DutchBusinessExtractDocumentDataV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractDocumentDataV2 } - * - */ - public void setOut(DutchBusinessExtractDocumentDataV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType.java deleted file mode 100644 index 6edc45d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType.java +++ /dev/null @@ -1,146 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for dutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="include_source" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="period_start" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="period_end" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType", propOrder = { - -}) -public class DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "include_source") - protected boolean includeSource; - @XmlElement(name = "period_start", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar periodStart; - @XmlElement(name = "period_end", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar periodEnd; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the includeSource property. - * - */ - public boolean isIncludeSource() { - return includeSource; - } - - /** - * Sets the value of the includeSource property. - * - */ - public void setIncludeSource(boolean value) { - this.includeSource = value; - } - - /** - * Gets the value of the periodStart property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPeriodStart() { - return periodStart; - } - - /** - * Sets the value of the periodStart property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPeriodStart(XMLGregorianCalendar value) { - this.periodStart = value; - } - - /** - * Gets the value of the periodEnd property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPeriodEnd() { - return periodEnd; - } - - /** - * Sets the value of the periodEnd property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPeriodEnd(XMLGregorianCalendar value) { - this.periodEnd = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType.java deleted file mode 100644 index 5f47621..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentDataV3"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType", propOrder = { - -}) -public class DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType { - - @XmlElement(required = true) - protected DutchBusinessExtractDocumentDataV3 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessExtractDocumentDataV3 } - * - */ - public DutchBusinessExtractDocumentDataV3 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractDocumentDataV3 } - * - */ - public void setOut(DutchBusinessExtractDocumentDataV3 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3RequestType.java deleted file mode 100644 index 4718abc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3RequestType.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractHistoryDocumentDataV3RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractHistoryDocumentDataV3RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="extract_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="include_source" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractHistoryDocumentDataV3RequestType", propOrder = { - -}) -public class DutchBusinessGetExtractHistoryDocumentDataV3RequestType { - - @XmlElement(name = "extract_id", required = true) - protected String extractId; - @XmlElement(name = "include_source") - protected boolean includeSource; - - /** - * Gets the value of the extractId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getExtractId() { - return extractId; - } - - /** - * Sets the value of the extractId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setExtractId(String value) { - this.extractId = value; - } - - /** - * Gets the value of the includeSource property. - * - */ - public boolean isIncludeSource() { - return includeSource; - } - - /** - * Sets the value of the includeSource property. - * - */ - public void setIncludeSource(boolean value) { - this.includeSource = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ResponseType.java deleted file mode 100644 index b2f1b33..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryDocumentDataV3ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractHistoryDocumentDataV3ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractHistoryDocumentDataV3ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentDataV3"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractHistoryDocumentDataV3ResponseType", propOrder = { - -}) -public class DutchBusinessGetExtractHistoryDocumentDataV3ResponseType { - - @XmlElement(required = true) - protected DutchBusinessExtractDocumentDataV3 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessExtractDocumentDataV3 } - * - */ - public DutchBusinessExtractDocumentDataV3 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractDocumentDataV3 } - * - */ - public void setOut(DutchBusinessExtractDocumentDataV3 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryRequestType.java deleted file mode 100644 index 8d1c583..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryRequestType.java +++ /dev/null @@ -1,127 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for dutchBusinessGetExtractHistoryRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractHistoryRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="period_start_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="period_end_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractHistoryRequestType", propOrder = { - -}) -public class DutchBusinessGetExtractHistoryRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "period_start_date", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar periodStartDate; - @XmlElement(name = "period_end_date", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar periodEndDate; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the periodStartDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPeriodStartDate() { - return periodStartDate; - } - - /** - * Sets the value of the periodStartDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPeriodStartDate(XMLGregorianCalendar value) { - this.periodStartDate = value; - } - - /** - * Gets the value of the periodEndDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPeriodEndDate() { - return periodEndDate; - } - - /** - * Sets the value of the periodEndDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPeriodEndDate(XMLGregorianCalendar value) { - this.periodEndDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryResponseType.java deleted file mode 100644 index 7c8c509..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetExtractHistoryResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetExtractHistoryResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetExtractHistoryResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractHistory"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetExtractHistoryResponseType", propOrder = { - -}) -public class DutchBusinessGetExtractHistoryResponseType { - - @XmlElement(required = true) - protected DutchBusinessExtractHistory out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessExtractHistory } - * - */ - public DutchBusinessExtractHistory getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractHistory } - * - */ - public void setOut(DutchBusinessExtractHistory value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalEntityRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalEntityRequestType.java deleted file mode 100644 index ca460ad..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalEntityRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetLegalEntityRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetLegalEntityRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetLegalEntityRequestType", propOrder = { - -}) -public class DutchBusinessGetLegalEntityRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalEntityResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalEntityResponseType.java deleted file mode 100644 index cc2a4f4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalEntityResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetLegalEntityResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetLegalEntityResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessLegalEntityData"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetLegalEntityResponseType", propOrder = { - -}) -public class DutchBusinessGetLegalEntityResponseType { - - @XmlElement(required = true) - protected DutchBusinessLegalEntityData out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessLegalEntityData } - * - */ - public DutchBusinessLegalEntityData getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessLegalEntityData } - * - */ - public void setOut(DutchBusinessLegalEntityData value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV2RequestType.java deleted file mode 100644 index 06f6319..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV2RequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetLegalExtractDocumentDataV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetLegalExtractDocumentDataV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetLegalExtractDocumentDataV2RequestType", propOrder = { - -}) -public class DutchBusinessGetLegalExtractDocumentDataV2RequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV2ResponseType.java deleted file mode 100644 index e92d121..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetLegalExtractDocumentDataV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetLegalExtractDocumentDataV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentDataV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetLegalExtractDocumentDataV2ResponseType", propOrder = { - -}) -public class DutchBusinessGetLegalExtractDocumentDataV2ResponseType { - - @XmlElement(required = true) - protected DutchBusinessExtractDocumentDataV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessExtractDocumentDataV2 } - * - */ - public DutchBusinessExtractDocumentDataV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractDocumentDataV2 } - * - */ - public void setOut(DutchBusinessExtractDocumentDataV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV3RequestType.java deleted file mode 100644 index 8fcf852..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV3RequestType.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetLegalExtractDocumentDataV3RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetLegalExtractDocumentDataV3RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="include_source" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetLegalExtractDocumentDataV3RequestType", propOrder = { - -}) -public class DutchBusinessGetLegalExtractDocumentDataV3RequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "include_source") - protected boolean includeSource; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the includeSource property. - * - */ - public boolean isIncludeSource() { - return includeSource; - } - - /** - * Sets the value of the includeSource property. - * - */ - public void setIncludeSource(boolean value) { - this.includeSource = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV3ResponseType.java deleted file mode 100644 index f008043..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLegalExtractDocumentDataV3ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetLegalExtractDocumentDataV3ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetLegalExtractDocumentDataV3ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentDataV3"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetLegalExtractDocumentDataV3ResponseType", propOrder = { - -}) -public class DutchBusinessGetLegalExtractDocumentDataV3ResponseType { - - @XmlElement(required = true) - protected DutchBusinessExtractDocumentDataV3 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessExtractDocumentDataV3 } - * - */ - public DutchBusinessExtractDocumentDataV3 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractDocumentDataV3 } - * - */ - public void setOut(DutchBusinessExtractDocumentDataV3 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiRequestType.java deleted file mode 100644 index 1b9ddd0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetLeiRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetLeiRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetLeiRequestType", propOrder = { - -}) -public class DutchBusinessGetLeiRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiResponseType.java deleted file mode 100644 index 061341c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetLeiResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetLeiResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessGetLeiResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetLeiResponseType", propOrder = { - -}) -public class DutchBusinessGetLeiResponseType { - - @XmlElement(required = true) - protected DutchBusinessGetLeiResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessGetLeiResult } - * - */ - public DutchBusinessGetLeiResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessGetLeiResult } - * - */ - public void setOut(DutchBusinessGetLeiResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiResult.java deleted file mode 100644 index 6fd4b92..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetLeiResult.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessGetLeiResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessGetLeiResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="lei_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="business_entity" type="{http://www.webservices.nl/soap/}DutchBusinessLeiBusinessEntity"/>
- *         <element name="registration" type="{http://www.webservices.nl/soap/}DutchBusinessLeiRegistration"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessGetLeiResult", propOrder = { - -}) -public class DutchBusinessGetLeiResult { - - @XmlElement(name = "lei_code", required = true) - protected String leiCode; - @XmlElement(name = "business_entity", required = true) - protected DutchBusinessLeiBusinessEntity businessEntity; - @XmlElement(required = true) - protected DutchBusinessLeiRegistration registration; - - /** - * Gets the value of the leiCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLeiCode() { - return leiCode; - } - - /** - * Sets the value of the leiCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLeiCode(String value) { - this.leiCode = value; - } - - /** - * Gets the value of the businessEntity property. - * - * @return - * possible object is - * {@link DutchBusinessLeiBusinessEntity } - * - */ - public DutchBusinessLeiBusinessEntity getBusinessEntity() { - return businessEntity; - } - - /** - * Sets the value of the businessEntity property. - * - * @param value - * allowed object is - * {@link DutchBusinessLeiBusinessEntity } - * - */ - public void setBusinessEntity(DutchBusinessLeiBusinessEntity value) { - this.businessEntity = value; - } - - /** - * Gets the value of the registration property. - * - * @return - * possible object is - * {@link DutchBusinessLeiRegistration } - * - */ - public DutchBusinessLeiRegistration getRegistration() { - return registration; - } - - /** - * Sets the value of the registration property. - * - * @param value - * allowed object is - * {@link DutchBusinessLeiRegistration } - * - */ - public void setRegistration(DutchBusinessLeiRegistration value) { - this.registration = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetNonMarketingIndicatorRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetNonMarketingIndicatorRequestType.java deleted file mode 100644 index 758bbba..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetNonMarketingIndicatorRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetNonMarketingIndicatorRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetNonMarketingIndicatorRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetNonMarketingIndicatorRequestType", propOrder = { - -}) -public class DutchBusinessGetNonMarketingIndicatorRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number", required = true) - protected String establishmentNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetNonMarketingIndicatorResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetNonMarketingIndicatorResponseType.java deleted file mode 100644 index 7fce407..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetNonMarketingIndicatorResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetNonMarketingIndicatorResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetNonMarketingIndicatorResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessNonMarketingIndicator"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetNonMarketingIndicatorResponseType", propOrder = { - -}) -public class DutchBusinessGetNonMarketingIndicatorResponseType { - - @XmlElement(required = true) - protected DutchBusinessNonMarketingIndicator out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessNonMarketingIndicator } - * - */ - public DutchBusinessNonMarketingIndicator getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessNonMarketingIndicator } - * - */ - public void setOut(DutchBusinessNonMarketingIndicator value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetOrganizationTreeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetOrganizationTreeRequestType.java deleted file mode 100644 index ea3340a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetOrganizationTreeRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetOrganizationTreeRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetOrganizationTreeRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetOrganizationTreeRequestType", propOrder = { - -}) -public class DutchBusinessGetOrganizationTreeRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetOrganizationTreeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetOrganizationTreeResponseType.java deleted file mode 100644 index c5bee4a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetOrganizationTreeResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetOrganizationTreeResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetOrganizationTreeResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessOrganizationTree"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetOrganizationTreeResponseType", propOrder = { - -}) -public class DutchBusinessGetOrganizationTreeResponseType { - - @XmlElement(required = true) - protected DutchBusinessOrganizationTree out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessOrganizationTree } - * - */ - public DutchBusinessOrganizationTree getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessOrganizationTree } - * - */ - public void setOut(DutchBusinessOrganizationTree value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetPositionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetPositionsRequestType.java deleted file mode 100644 index bc85598..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetPositionsRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetPositionsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetPositionsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetPositionsRequestType", propOrder = { - -}) -public class DutchBusinessGetPositionsRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetPositionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetPositionsResponseType.java deleted file mode 100644 index 460efee..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetPositionsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetPositionsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetPositionsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessPositions"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetPositionsResponseType", propOrder = { - -}) -public class DutchBusinessGetPositionsResponseType { - - @XmlElement(required = true) - protected DutchBusinessPositions out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessPositions } - * - */ - public DutchBusinessPositions getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessPositions } - * - */ - public void setOut(DutchBusinessPositions value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIDescriptionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIDescriptionRequestType.java deleted file mode 100644 index 67a5e85..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIDescriptionRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetSBIDescriptionRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetSBIDescriptionRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="sbi_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetSBIDescriptionRequestType", propOrder = { - -}) -public class DutchBusinessGetSBIDescriptionRequestType { - - @XmlElement(name = "sbi_code", required = true) - protected String sbiCode; - @XmlElement(required = true) - protected String language; - - /** - * Gets the value of the sbiCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSbiCode() { - return sbiCode; - } - - /** - * Sets the value of the sbiCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSbiCode(String value) { - this.sbiCode = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIDescriptionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIDescriptionResponseType.java deleted file mode 100644 index cea1b74..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIDescriptionResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetSBIDescriptionResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetSBIDescriptionResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessSBICodeInfo"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetSBIDescriptionResponseType", propOrder = { - -}) -public class DutchBusinessGetSBIDescriptionResponseType { - - @XmlElement(required = true) - protected DutchBusinessSBICodeInfo out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessSBICodeInfo } - * - */ - public DutchBusinessSBICodeInfo getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessSBICodeInfo } - * - */ - public void setOut(DutchBusinessSBICodeInfo value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIRequestType.java deleted file mode 100644 index 30be14e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIRequestType.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetSBIRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetSBIRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetSBIRequestType", propOrder = { - -}) -public class DutchBusinessGetSBIRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number", required = true) - protected String establishmentNumber; - @XmlElement(required = true) - protected String language; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIResponseType.java deleted file mode 100644 index 6d51427..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetSBIResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetSBIResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetSBIResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessSBICollection"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetSBIResponseType", propOrder = { - -}) -public class DutchBusinessGetSBIResponseType { - - @XmlElement(required = true) - protected DutchBusinessSBICollection out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessSBICollection } - * - */ - public DutchBusinessSBICollection getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessSBICollection } - * - */ - public void setOut(DutchBusinessSBICollection value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetVatNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetVatNumberRequestType.java deleted file mode 100644 index 84e2df8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetVatNumberRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetVatNumberRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetVatNumberRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetVatNumberRequestType", propOrder = { - -}) -public class DutchBusinessGetVatNumberRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetVatNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetVatNumberResponseType.java deleted file mode 100644 index 1166194..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessGetVatNumberResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessGetVatNumberResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessGetVatNumberResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessVatNumber"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessGetVatNumberResponseType", propOrder = { - -}) -public class DutchBusinessGetVatNumberResponseType { - - @XmlElement(required = true) - protected DutchBusinessVatNumber out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessVatNumber } - * - */ - public DutchBusinessVatNumber getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessVatNumber } - * - */ - public void setOut(DutchBusinessVatNumber value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessIdentifiers.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessIdentifiers.java deleted file mode 100644 index c9cad61..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessIdentifiers.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessIdentifiers complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessIdentifiers">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="rsi_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessIdentifiers", propOrder = { - -}) -public class DutchBusinessIdentifiers { - - @XmlElement(name = "dossier_number") - protected String dossierNumber; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(name = "rsi_number") - protected String rsiNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the rsiNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsiNumber() { - return rsiNumber; - } - - /** - * Sets the value of the rsiNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsiNumber(String value) { - this.rsiNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvency.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvency.java deleted file mode 100644 index aa2911b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvency.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessInsolvency complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessInsolvency">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="insolvency_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="events" type="{http://www.webservices.nl/soap/}DutchBusinessInsolvencyPublicationArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessInsolvency", propOrder = { - -}) -public class DutchBusinessInsolvency { - - @XmlElement(name = "insolvency_id", required = true) - protected String insolvencyId; - protected DutchBusinessInsolvencyPublicationArray events; - - /** - * Gets the value of the insolvencyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInsolvencyId() { - return insolvencyId; - } - - /** - * Sets the value of the insolvencyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInsolvencyId(String value) { - this.insolvencyId = value; - } - - /** - * Gets the value of the events property. - * - * @return - * possible object is - * {@link DutchBusinessInsolvencyPublicationArray } - * - */ - public DutchBusinessInsolvencyPublicationArray getEvents() { - return events; - } - - /** - * Sets the value of the events property. - * - * @param value - * allowed object is - * {@link DutchBusinessInsolvencyPublicationArray } - * - */ - public void setEvents(DutchBusinessInsolvencyPublicationArray value) { - this.events = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyArray.java deleted file mode 100644 index 80b9f52..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessInsolvencyArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessInsolvencyArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessInsolvency" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessInsolvencyArray", propOrder = { - "item" -}) -public class DutchBusinessInsolvencyArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessInsolvency } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyPublication.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyPublication.java deleted file mode 100644 index f8ca32b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyPublication.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessInsolvencyPublication complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessInsolvencyPublication">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="publication_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessInsolvencyPublication", propOrder = { - -}) -public class DutchBusinessInsolvencyPublication { - - @XmlElement(name = "publication_id") - protected String publicationId; - protected String description; - protected DutchBusinessDateV3 date; - - /** - * Gets the value of the publicationId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPublicationId() { - return publicationId; - } - - /** - * Sets the value of the publicationId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPublicationId(String value) { - this.publicationId = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the date property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getDate() { - return date; - } - - /** - * Sets the value of the date property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setDate(DutchBusinessDateV3 value) { - this.date = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyPublicationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyPublicationArray.java deleted file mode 100644 index 081e19f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessInsolvencyPublicationArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessInsolvencyPublicationArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessInsolvencyPublicationArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessInsolvencyPublication" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessInsolvencyPublicationArray", propOrder = { - "item" -}) -public class DutchBusinessInsolvencyPublicationArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessInsolvencyPublication } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntity.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntity.java deleted file mode 100644 index b77285b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntity.java +++ /dev/null @@ -1,1574 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessLegalEntity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessLegalEntity">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="alternative_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="shortened_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_change" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="foreign_legal_form_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="sbi_codes_text" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="company_arrangement" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="statutory_seat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="discontinuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="dissolution_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="dissolution_reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="removal_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="registration_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="legal_entity_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="liquidation_closure_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="liquidation_reopening_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="deed_incorporation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="deed_last_statutes_amendment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="last_statutes_amendment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="liability" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="merger_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="annual_report_submission" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="authorized_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="authorized_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="issued_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="issued_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="paid_up_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="paid_up_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="establishment_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="correspondence_postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="correspondence_house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="correspondence_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="correspondence_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="duration_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="shares" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="share_holders" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="fax_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="domain_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessLegalEntity", propOrder = { - -}) -public class DutchBusinessLegalEntity { - - @XmlElement(name = "rsin_number") - protected String rsinNumber; - protected String name; - @XmlElement(name = "alternative_name") - protected String alternativeName; - @XmlElement(name = "shortened_name") - protected String shortenedName; - protected String registration; - protected String status; - @XmlElement(name = "legal_form_text") - protected String legalFormText; - @XmlElement(name = "legal_form_change") - protected String legalFormChange; - @XmlElement(name = "foreign_legal_form_description") - protected String foreignLegalFormDescription; - @XmlElement(name = "sbi_codes") - protected StringArray sbiCodes; - @XmlElement(name = "sbi_codes_text") - protected StringArray sbiCodesText; - protected String activity; - @XmlElement(name = "company_arrangement") - protected String companyArrangement; - @XmlElement(name = "legal_name") - protected String legalName; - @XmlElement(name = "statutory_seat") - protected String statutorySeat; - @XmlElement(name = "registration_date") - protected DutchBusinessDate registrationDate; - @XmlElement(name = "founding_date") - protected DutchBusinessDate foundingDate; - @XmlElement(name = "discontinuation_date") - protected DutchBusinessDate discontinuationDate; - @XmlElement(name = "dissolution_date") - protected DutchBusinessDate dissolutionDate; - @XmlElement(name = "dissolution_reason") - protected String dissolutionReason; - @XmlElement(name = "removal_date") - protected DutchBusinessDate removalDate; - @XmlElement(name = "registration_end_date") - protected DutchBusinessDate registrationEndDate; - @XmlElement(name = "legal_entity_end_date") - protected DutchBusinessDate legalEntityEndDate; - @XmlElement(name = "liquidation_closure_date") - protected DutchBusinessDate liquidationClosureDate; - @XmlElement(name = "liquidation_reopening_date") - protected DutchBusinessDate liquidationReopeningDate; - @XmlElement(name = "deed_incorporation_date") - protected DutchBusinessDate deedIncorporationDate; - @XmlElement(name = "deed_last_statutes_amendment_date") - protected DutchBusinessDate deedLastStatutesAmendmentDate; - @XmlElement(name = "last_statutes_amendment_date") - protected DutchBusinessDate lastStatutesAmendmentDate; - protected String liability; - @XmlElement(name = "merger_description") - protected String mergerDescription; - @XmlElement(name = "annual_report_submission") - protected String annualReportSubmission; - @XmlElement(name = "authorized_share_capital") - protected Long authorizedShareCapital; - @XmlElement(name = "authorized_share_capital_currency") - protected String authorizedShareCapitalCurrency; - @XmlElement(name = "issued_share_capital") - protected Long issuedShareCapital; - @XmlElement(name = "issued_share_capital_currency") - protected String issuedShareCapitalCurrency; - @XmlElement(name = "paid_up_share_capital") - protected Long paidUpShareCapital; - @XmlElement(name = "paid_up_share_capital_currency") - protected String paidUpShareCapitalCurrency; - @XmlElement(name = "establishment_postcode") - protected String establishmentPostcode; - @XmlElement(name = "establishment_city") - protected String establishmentCity; - @XmlElement(name = "establishment_street") - protected String establishmentStreet; - @XmlElement(name = "establishment_house_number") - protected Integer establishmentHouseNumber; - @XmlElement(name = "establishment_house_number_addition") - protected String establishmentHouseNumberAddition; - @XmlElement(name = "establishment_country") - protected String establishmentCountry; - @XmlElement(name = "correspondence_postcode") - protected String correspondencePostcode; - @XmlElement(name = "correspondence_city") - protected String correspondenceCity; - @XmlElement(name = "correspondence_street") - protected String correspondenceStreet; - @XmlElement(name = "correspondence_house_number") - protected Integer correspondenceHouseNumber; - @XmlElement(name = "correspondence_house_number_addition") - protected String correspondenceHouseNumberAddition; - @XmlElement(name = "correspondence_country") - protected String correspondenceCountry; - protected String duration; - @XmlElement(name = "duration_end_date") - protected DutchBusinessDate durationEndDate; - protected String shares; - @XmlElement(name = "share_holders") - protected String shareHolders; - @XmlElement(name = "telephone_numbers") - protected StringArray telephoneNumbers; - @XmlElement(name = "fax_numbers") - protected StringArray faxNumbers; - @XmlElement(name = "email_addresses") - protected StringArray emailAddresses; - @XmlElement(name = "domain_names") - protected StringArray domainNames; - - /** - * Gets the value of the rsinNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsinNumber() { - return rsinNumber; - } - - /** - * Sets the value of the rsinNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsinNumber(String value) { - this.rsinNumber = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the alternativeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlternativeName() { - return alternativeName; - } - - /** - * Sets the value of the alternativeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlternativeName(String value) { - this.alternativeName = value; - } - - /** - * Gets the value of the shortenedName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getShortenedName() { - return shortenedName; - } - - /** - * Sets the value of the shortenedName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setShortenedName(String value) { - this.shortenedName = value; - } - - /** - * Gets the value of the registration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistration() { - return registration; - } - - /** - * Sets the value of the registration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistration(String value) { - this.registration = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the legalFormChange property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormChange() { - return legalFormChange; - } - - /** - * Sets the value of the legalFormChange property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormChange(String value) { - this.legalFormChange = value; - } - - /** - * Gets the value of the foreignLegalFormDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getForeignLegalFormDescription() { - return foreignLegalFormDescription; - } - - /** - * Sets the value of the foreignLegalFormDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setForeignLegalFormDescription(String value) { - this.foreignLegalFormDescription = value; - } - - /** - * Gets the value of the sbiCodes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getSbiCodes() { - return sbiCodes; - } - - /** - * Sets the value of the sbiCodes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setSbiCodes(StringArray value) { - this.sbiCodes = value; - } - - /** - * Gets the value of the sbiCodesText property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getSbiCodesText() { - return sbiCodesText; - } - - /** - * Sets the value of the sbiCodesText property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setSbiCodesText(StringArray value) { - this.sbiCodesText = value; - } - - /** - * Gets the value of the activity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getActivity() { - return activity; - } - - /** - * Sets the value of the activity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setActivity(String value) { - this.activity = value; - } - - /** - * Gets the value of the companyArrangement property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyArrangement() { - return companyArrangement; - } - - /** - * Sets the value of the companyArrangement property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyArrangement(String value) { - this.companyArrangement = value; - } - - /** - * Gets the value of the legalName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalName() { - return legalName; - } - - /** - * Sets the value of the legalName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalName(String value) { - this.legalName = value; - } - - /** - * Gets the value of the statutorySeat property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatutorySeat() { - return statutorySeat; - } - - /** - * Sets the value of the statutorySeat property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatutorySeat(String value) { - this.statutorySeat = value; - } - - /** - * Gets the value of the registrationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getRegistrationDate() { - return registrationDate; - } - - /** - * Sets the value of the registrationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setRegistrationDate(DutchBusinessDate value) { - this.registrationDate = value; - } - - /** - * Gets the value of the foundingDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getFoundingDate() { - return foundingDate; - } - - /** - * Sets the value of the foundingDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setFoundingDate(DutchBusinessDate value) { - this.foundingDate = value; - } - - /** - * Gets the value of the discontinuationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getDiscontinuationDate() { - return discontinuationDate; - } - - /** - * Sets the value of the discontinuationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setDiscontinuationDate(DutchBusinessDate value) { - this.discontinuationDate = value; - } - - /** - * Gets the value of the dissolutionDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getDissolutionDate() { - return dissolutionDate; - } - - /** - * Sets the value of the dissolutionDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setDissolutionDate(DutchBusinessDate value) { - this.dissolutionDate = value; - } - - /** - * Gets the value of the dissolutionReason property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDissolutionReason() { - return dissolutionReason; - } - - /** - * Sets the value of the dissolutionReason property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDissolutionReason(String value) { - this.dissolutionReason = value; - } - - /** - * Gets the value of the removalDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getRemovalDate() { - return removalDate; - } - - /** - * Sets the value of the removalDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setRemovalDate(DutchBusinessDate value) { - this.removalDate = value; - } - - /** - * Gets the value of the registrationEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getRegistrationEndDate() { - return registrationEndDate; - } - - /** - * Sets the value of the registrationEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setRegistrationEndDate(DutchBusinessDate value) { - this.registrationEndDate = value; - } - - /** - * Gets the value of the legalEntityEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getLegalEntityEndDate() { - return legalEntityEndDate; - } - - /** - * Sets the value of the legalEntityEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setLegalEntityEndDate(DutchBusinessDate value) { - this.legalEntityEndDate = value; - } - - /** - * Gets the value of the liquidationClosureDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getLiquidationClosureDate() { - return liquidationClosureDate; - } - - /** - * Sets the value of the liquidationClosureDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setLiquidationClosureDate(DutchBusinessDate value) { - this.liquidationClosureDate = value; - } - - /** - * Gets the value of the liquidationReopeningDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getLiquidationReopeningDate() { - return liquidationReopeningDate; - } - - /** - * Sets the value of the liquidationReopeningDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setLiquidationReopeningDate(DutchBusinessDate value) { - this.liquidationReopeningDate = value; - } - - /** - * Gets the value of the deedIncorporationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getDeedIncorporationDate() { - return deedIncorporationDate; - } - - /** - * Sets the value of the deedIncorporationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setDeedIncorporationDate(DutchBusinessDate value) { - this.deedIncorporationDate = value; - } - - /** - * Gets the value of the deedLastStatutesAmendmentDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getDeedLastStatutesAmendmentDate() { - return deedLastStatutesAmendmentDate; - } - - /** - * Sets the value of the deedLastStatutesAmendmentDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setDeedLastStatutesAmendmentDate(DutchBusinessDate value) { - this.deedLastStatutesAmendmentDate = value; - } - - /** - * Gets the value of the lastStatutesAmendmentDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getLastStatutesAmendmentDate() { - return lastStatutesAmendmentDate; - } - - /** - * Sets the value of the lastStatutesAmendmentDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setLastStatutesAmendmentDate(DutchBusinessDate value) { - this.lastStatutesAmendmentDate = value; - } - - /** - * Gets the value of the liability property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLiability() { - return liability; - } - - /** - * Sets the value of the liability property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLiability(String value) { - this.liability = value; - } - - /** - * Gets the value of the mergerDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMergerDescription() { - return mergerDescription; - } - - /** - * Sets the value of the mergerDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMergerDescription(String value) { - this.mergerDescription = value; - } - - /** - * Gets the value of the annualReportSubmission property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAnnualReportSubmission() { - return annualReportSubmission; - } - - /** - * Sets the value of the annualReportSubmission property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAnnualReportSubmission(String value) { - this.annualReportSubmission = value; - } - - /** - * Gets the value of the authorizedShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getAuthorizedShareCapital() { - return authorizedShareCapital; - } - - /** - * Sets the value of the authorizedShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setAuthorizedShareCapital(Long value) { - this.authorizedShareCapital = value; - } - - /** - * Gets the value of the authorizedShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAuthorizedShareCapitalCurrency() { - return authorizedShareCapitalCurrency; - } - - /** - * Sets the value of the authorizedShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAuthorizedShareCapitalCurrency(String value) { - this.authorizedShareCapitalCurrency = value; - } - - /** - * Gets the value of the issuedShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getIssuedShareCapital() { - return issuedShareCapital; - } - - /** - * Sets the value of the issuedShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setIssuedShareCapital(Long value) { - this.issuedShareCapital = value; - } - - /** - * Gets the value of the issuedShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIssuedShareCapitalCurrency() { - return issuedShareCapitalCurrency; - } - - /** - * Sets the value of the issuedShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIssuedShareCapitalCurrency(String value) { - this.issuedShareCapitalCurrency = value; - } - - /** - * Gets the value of the paidUpShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getPaidUpShareCapital() { - return paidUpShareCapital; - } - - /** - * Sets the value of the paidUpShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setPaidUpShareCapital(Long value) { - this.paidUpShareCapital = value; - } - - /** - * Gets the value of the paidUpShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPaidUpShareCapitalCurrency() { - return paidUpShareCapitalCurrency; - } - - /** - * Sets the value of the paidUpShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPaidUpShareCapitalCurrency(String value) { - this.paidUpShareCapitalCurrency = value; - } - - /** - * Gets the value of the establishmentPostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentPostcode() { - return establishmentPostcode; - } - - /** - * Sets the value of the establishmentPostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentPostcode(String value) { - this.establishmentPostcode = value; - } - - /** - * Gets the value of the establishmentCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCity() { - return establishmentCity; - } - - /** - * Sets the value of the establishmentCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCity(String value) { - this.establishmentCity = value; - } - - /** - * Gets the value of the establishmentStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentStreet() { - return establishmentStreet; - } - - /** - * Sets the value of the establishmentStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentStreet(String value) { - this.establishmentStreet = value; - } - - /** - * Gets the value of the establishmentHouseNumber property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEstablishmentHouseNumber() { - return establishmentHouseNumber; - } - - /** - * Sets the value of the establishmentHouseNumber property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEstablishmentHouseNumber(Integer value) { - this.establishmentHouseNumber = value; - } - - /** - * Gets the value of the establishmentHouseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentHouseNumberAddition() { - return establishmentHouseNumberAddition; - } - - /** - * Sets the value of the establishmentHouseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentHouseNumberAddition(String value) { - this.establishmentHouseNumberAddition = value; - } - - /** - * Gets the value of the establishmentCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCountry() { - return establishmentCountry; - } - - /** - * Sets the value of the establishmentCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCountry(String value) { - this.establishmentCountry = value; - } - - /** - * Gets the value of the correspondencePostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondencePostcode() { - return correspondencePostcode; - } - - /** - * Sets the value of the correspondencePostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondencePostcode(String value) { - this.correspondencePostcode = value; - } - - /** - * Gets the value of the correspondenceCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCity() { - return correspondenceCity; - } - - /** - * Sets the value of the correspondenceCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCity(String value) { - this.correspondenceCity = value; - } - - /** - * Gets the value of the correspondenceStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceStreet() { - return correspondenceStreet; - } - - /** - * Sets the value of the correspondenceStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceStreet(String value) { - this.correspondenceStreet = value; - } - - /** - * Gets the value of the correspondenceHouseNumber property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCorrespondenceHouseNumber() { - return correspondenceHouseNumber; - } - - /** - * Sets the value of the correspondenceHouseNumber property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCorrespondenceHouseNumber(Integer value) { - this.correspondenceHouseNumber = value; - } - - /** - * Gets the value of the correspondenceHouseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceHouseNumberAddition() { - return correspondenceHouseNumberAddition; - } - - /** - * Sets the value of the correspondenceHouseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceHouseNumberAddition(String value) { - this.correspondenceHouseNumberAddition = value; - } - - /** - * Gets the value of the correspondenceCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCountry() { - return correspondenceCountry; - } - - /** - * Sets the value of the correspondenceCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCountry(String value) { - this.correspondenceCountry = value; - } - - /** - * Gets the value of the duration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDuration() { - return duration; - } - - /** - * Sets the value of the duration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDuration(String value) { - this.duration = value; - } - - /** - * Gets the value of the durationEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getDurationEndDate() { - return durationEndDate; - } - - /** - * Sets the value of the durationEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setDurationEndDate(DutchBusinessDate value) { - this.durationEndDate = value; - } - - /** - * Gets the value of the shares property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getShares() { - return shares; - } - - /** - * Sets the value of the shares property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setShares(String value) { - this.shares = value; - } - - /** - * Gets the value of the shareHolders property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getShareHolders() { - return shareHolders; - } - - /** - * Sets the value of the shareHolders property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setShareHolders(String value) { - this.shareHolders = value; - } - - /** - * Gets the value of the telephoneNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTelephoneNumbers() { - return telephoneNumbers; - } - - /** - * Sets the value of the telephoneNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTelephoneNumbers(StringArray value) { - this.telephoneNumbers = value; - } - - /** - * Gets the value of the faxNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getFaxNumbers() { - return faxNumbers; - } - - /** - * Sets the value of the faxNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setFaxNumbers(StringArray value) { - this.faxNumbers = value; - } - - /** - * Gets the value of the emailAddresses property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getEmailAddresses() { - return emailAddresses; - } - - /** - * Sets the value of the emailAddresses property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setEmailAddresses(StringArray value) { - this.emailAddresses = value; - } - - /** - * Gets the value of the domainNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getDomainNames() { - return domainNames; - } - - /** - * Sets the value of the domainNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setDomainNames(StringArray value) { - this.domainNames = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityData.java deleted file mode 100644 index f14d398..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityData.java +++ /dev/null @@ -1,126 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessLegalEntityData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessLegalEntityData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="reference_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="legal_entity" type="{http://www.webservices.nl/soap/}DutchBusinessLegalEntityV3"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessLegalEntityData", propOrder = { - -}) -public class DutchBusinessLegalEntityData { - - @XmlElement(name = "dossier_number") - protected String dossierNumber; - @XmlElement(name = "reference_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar referenceDate; - @XmlElement(name = "legal_entity", required = true) - protected DutchBusinessLegalEntityV3 legalEntity; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the referenceDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getReferenceDate() { - return referenceDate; - } - - /** - * Sets the value of the referenceDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setReferenceDate(XMLGregorianCalendar value) { - this.referenceDate = value; - } - - /** - * Gets the value of the legalEntity property. - * - * @return - * possible object is - * {@link DutchBusinessLegalEntityV3 } - * - */ - public DutchBusinessLegalEntityV3 getLegalEntity() { - return legalEntity; - } - - /** - * Sets the value of the legalEntity property. - * - * @param value - * allowed object is - * {@link DutchBusinessLegalEntityV3 } - * - */ - public void setLegalEntity(DutchBusinessLegalEntityV3 value) { - this.legalEntity = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityV2.java deleted file mode 100644 index 49a7b63..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityV2.java +++ /dev/null @@ -1,1196 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessLegalEntityV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessLegalEntityV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="alternative_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="shortened_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_change" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="foreign_legal_form_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="company_arrangement" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="statutory_seat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="discontinuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="dissolution_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="dissolution_reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="removal_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="registration_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="legal_entity_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="liquidation_closure_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="liquidation_reopening_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="deed_incorporation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="deed_last_statutes_amendment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="last_statutes_amendment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="liability" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="merger_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="annual_report_submission" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="authorized_share_capital" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV2" minOccurs="0"/>
- *         <element name="issued_share_capital" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV2" minOccurs="0"/>
- *         <element name="paid_up_share_capital" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV2" minOccurs="0"/>
- *         <element name="duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="duration_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="shares" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="share_holders" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
- *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
- *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="fax_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="domain_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}DutchBusinessSbiCodeV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessLegalEntityV2", propOrder = { - -}) -public class DutchBusinessLegalEntityV2 { - - @XmlElement(name = "rsin_number") - protected String rsinNumber; - protected String name; - @XmlElement(name = "alternative_name") - protected String alternativeName; - @XmlElement(name = "shortened_name") - protected String shortenedName; - protected String registration; - @XmlElement(name = "legal_form_text") - protected String legalFormText; - @XmlElement(name = "legal_form_change") - protected String legalFormChange; - @XmlElement(name = "foreign_legal_form_description") - protected String foreignLegalFormDescription; - protected String activity; - @XmlElement(name = "company_arrangement") - protected String companyArrangement; - @XmlElement(name = "legal_name") - protected String legalName; - @XmlElement(name = "statutory_seat") - protected String statutorySeat; - @XmlElement(name = "registration_date") - protected DutchBusinessDateV2 registrationDate; - @XmlElement(name = "founding_date") - protected DutchBusinessDateV2 foundingDate; - @XmlElement(name = "discontinuation_date") - protected DutchBusinessDateV2 discontinuationDate; - @XmlElement(name = "dissolution_date") - protected DutchBusinessDateV2 dissolutionDate; - @XmlElement(name = "dissolution_reason") - protected String dissolutionReason; - @XmlElement(name = "removal_date") - protected DutchBusinessDateV2 removalDate; - @XmlElement(name = "registration_end_date") - protected DutchBusinessDateV2 registrationEndDate; - @XmlElement(name = "legal_entity_end_date") - protected DutchBusinessDateV2 legalEntityEndDate; - @XmlElement(name = "liquidation_closure_date") - protected DutchBusinessDateV2 liquidationClosureDate; - @XmlElement(name = "liquidation_reopening_date") - protected DutchBusinessDateV2 liquidationReopeningDate; - @XmlElement(name = "deed_incorporation_date") - protected DutchBusinessDateV2 deedIncorporationDate; - @XmlElement(name = "deed_last_statutes_amendment_date") - protected DutchBusinessDateV2 deedLastStatutesAmendmentDate; - @XmlElement(name = "last_statutes_amendment_date") - protected DutchBusinessDateV2 lastStatutesAmendmentDate; - protected String liability; - @XmlElement(name = "merger_description") - protected String mergerDescription; - @XmlElement(name = "annual_report_submission") - protected String annualReportSubmission; - @XmlElement(name = "authorized_share_capital") - protected DutchBusinessMoneyV2 authorizedShareCapital; - @XmlElement(name = "issued_share_capital") - protected DutchBusinessMoneyV2 issuedShareCapital; - @XmlElement(name = "paid_up_share_capital") - protected DutchBusinessMoneyV2 paidUpShareCapital; - protected String duration; - @XmlElement(name = "duration_end_date") - protected DutchBusinessDateV2 durationEndDate; - protected String shares; - @XmlElement(name = "share_holders") - protected String shareHolders; - protected StringArray remarks; - @XmlElement(name = "establishment_address") - protected DutchBusinessAddressV2 establishmentAddress; - @XmlElement(name = "correspondence_address") - protected DutchBusinessAddressV2 correspondenceAddress; - @XmlElement(name = "telephone_numbers") - protected StringArray telephoneNumbers; - @XmlElement(name = "fax_numbers") - protected StringArray faxNumbers; - @XmlElement(name = "email_addresses") - protected StringArray emailAddresses; - @XmlElement(name = "domain_names") - protected StringArray domainNames; - @XmlElement(name = "sbi_codes") - protected DutchBusinessSbiCodeV2Array sbiCodes; - - /** - * Gets the value of the rsinNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsinNumber() { - return rsinNumber; - } - - /** - * Sets the value of the rsinNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsinNumber(String value) { - this.rsinNumber = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the alternativeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlternativeName() { - return alternativeName; - } - - /** - * Sets the value of the alternativeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlternativeName(String value) { - this.alternativeName = value; - } - - /** - * Gets the value of the shortenedName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getShortenedName() { - return shortenedName; - } - - /** - * Sets the value of the shortenedName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setShortenedName(String value) { - this.shortenedName = value; - } - - /** - * Gets the value of the registration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistration() { - return registration; - } - - /** - * Sets the value of the registration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistration(String value) { - this.registration = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the legalFormChange property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormChange() { - return legalFormChange; - } - - /** - * Sets the value of the legalFormChange property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormChange(String value) { - this.legalFormChange = value; - } - - /** - * Gets the value of the foreignLegalFormDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getForeignLegalFormDescription() { - return foreignLegalFormDescription; - } - - /** - * Sets the value of the foreignLegalFormDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setForeignLegalFormDescription(String value) { - this.foreignLegalFormDescription = value; - } - - /** - * Gets the value of the activity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getActivity() { - return activity; - } - - /** - * Sets the value of the activity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setActivity(String value) { - this.activity = value; - } - - /** - * Gets the value of the companyArrangement property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyArrangement() { - return companyArrangement; - } - - /** - * Sets the value of the companyArrangement property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyArrangement(String value) { - this.companyArrangement = value; - } - - /** - * Gets the value of the legalName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalName() { - return legalName; - } - - /** - * Sets the value of the legalName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalName(String value) { - this.legalName = value; - } - - /** - * Gets the value of the statutorySeat property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatutorySeat() { - return statutorySeat; - } - - /** - * Sets the value of the statutorySeat property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatutorySeat(String value) { - this.statutorySeat = value; - } - - /** - * Gets the value of the registrationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getRegistrationDate() { - return registrationDate; - } - - /** - * Sets the value of the registrationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setRegistrationDate(DutchBusinessDateV2 value) { - this.registrationDate = value; - } - - /** - * Gets the value of the foundingDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getFoundingDate() { - return foundingDate; - } - - /** - * Sets the value of the foundingDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setFoundingDate(DutchBusinessDateV2 value) { - this.foundingDate = value; - } - - /** - * Gets the value of the discontinuationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getDiscontinuationDate() { - return discontinuationDate; - } - - /** - * Sets the value of the discontinuationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setDiscontinuationDate(DutchBusinessDateV2 value) { - this.discontinuationDate = value; - } - - /** - * Gets the value of the dissolutionDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getDissolutionDate() { - return dissolutionDate; - } - - /** - * Sets the value of the dissolutionDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setDissolutionDate(DutchBusinessDateV2 value) { - this.dissolutionDate = value; - } - - /** - * Gets the value of the dissolutionReason property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDissolutionReason() { - return dissolutionReason; - } - - /** - * Sets the value of the dissolutionReason property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDissolutionReason(String value) { - this.dissolutionReason = value; - } - - /** - * Gets the value of the removalDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getRemovalDate() { - return removalDate; - } - - /** - * Sets the value of the removalDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setRemovalDate(DutchBusinessDateV2 value) { - this.removalDate = value; - } - - /** - * Gets the value of the registrationEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getRegistrationEndDate() { - return registrationEndDate; - } - - /** - * Sets the value of the registrationEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setRegistrationEndDate(DutchBusinessDateV2 value) { - this.registrationEndDate = value; - } - - /** - * Gets the value of the legalEntityEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getLegalEntityEndDate() { - return legalEntityEndDate; - } - - /** - * Sets the value of the legalEntityEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setLegalEntityEndDate(DutchBusinessDateV2 value) { - this.legalEntityEndDate = value; - } - - /** - * Gets the value of the liquidationClosureDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getLiquidationClosureDate() { - return liquidationClosureDate; - } - - /** - * Sets the value of the liquidationClosureDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setLiquidationClosureDate(DutchBusinessDateV2 value) { - this.liquidationClosureDate = value; - } - - /** - * Gets the value of the liquidationReopeningDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getLiquidationReopeningDate() { - return liquidationReopeningDate; - } - - /** - * Sets the value of the liquidationReopeningDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setLiquidationReopeningDate(DutchBusinessDateV2 value) { - this.liquidationReopeningDate = value; - } - - /** - * Gets the value of the deedIncorporationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getDeedIncorporationDate() { - return deedIncorporationDate; - } - - /** - * Sets the value of the deedIncorporationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setDeedIncorporationDate(DutchBusinessDateV2 value) { - this.deedIncorporationDate = value; - } - - /** - * Gets the value of the deedLastStatutesAmendmentDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getDeedLastStatutesAmendmentDate() { - return deedLastStatutesAmendmentDate; - } - - /** - * Sets the value of the deedLastStatutesAmendmentDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setDeedLastStatutesAmendmentDate(DutchBusinessDateV2 value) { - this.deedLastStatutesAmendmentDate = value; - } - - /** - * Gets the value of the lastStatutesAmendmentDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getLastStatutesAmendmentDate() { - return lastStatutesAmendmentDate; - } - - /** - * Sets the value of the lastStatutesAmendmentDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setLastStatutesAmendmentDate(DutchBusinessDateV2 value) { - this.lastStatutesAmendmentDate = value; - } - - /** - * Gets the value of the liability property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLiability() { - return liability; - } - - /** - * Sets the value of the liability property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLiability(String value) { - this.liability = value; - } - - /** - * Gets the value of the mergerDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMergerDescription() { - return mergerDescription; - } - - /** - * Sets the value of the mergerDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMergerDescription(String value) { - this.mergerDescription = value; - } - - /** - * Gets the value of the annualReportSubmission property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAnnualReportSubmission() { - return annualReportSubmission; - } - - /** - * Sets the value of the annualReportSubmission property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAnnualReportSubmission(String value) { - this.annualReportSubmission = value; - } - - /** - * Gets the value of the authorizedShareCapital property. - * - * @return - * possible object is - * {@link DutchBusinessMoneyV2 } - * - */ - public DutchBusinessMoneyV2 getAuthorizedShareCapital() { - return authorizedShareCapital; - } - - /** - * Sets the value of the authorizedShareCapital property. - * - * @param value - * allowed object is - * {@link DutchBusinessMoneyV2 } - * - */ - public void setAuthorizedShareCapital(DutchBusinessMoneyV2 value) { - this.authorizedShareCapital = value; - } - - /** - * Gets the value of the issuedShareCapital property. - * - * @return - * possible object is - * {@link DutchBusinessMoneyV2 } - * - */ - public DutchBusinessMoneyV2 getIssuedShareCapital() { - return issuedShareCapital; - } - - /** - * Sets the value of the issuedShareCapital property. - * - * @param value - * allowed object is - * {@link DutchBusinessMoneyV2 } - * - */ - public void setIssuedShareCapital(DutchBusinessMoneyV2 value) { - this.issuedShareCapital = value; - } - - /** - * Gets the value of the paidUpShareCapital property. - * - * @return - * possible object is - * {@link DutchBusinessMoneyV2 } - * - */ - public DutchBusinessMoneyV2 getPaidUpShareCapital() { - return paidUpShareCapital; - } - - /** - * Sets the value of the paidUpShareCapital property. - * - * @param value - * allowed object is - * {@link DutchBusinessMoneyV2 } - * - */ - public void setPaidUpShareCapital(DutchBusinessMoneyV2 value) { - this.paidUpShareCapital = value; - } - - /** - * Gets the value of the duration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDuration() { - return duration; - } - - /** - * Sets the value of the duration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDuration(String value) { - this.duration = value; - } - - /** - * Gets the value of the durationEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getDurationEndDate() { - return durationEndDate; - } - - /** - * Sets the value of the durationEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setDurationEndDate(DutchBusinessDateV2 value) { - this.durationEndDate = value; - } - - /** - * Gets the value of the shares property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getShares() { - return shares; - } - - /** - * Sets the value of the shares property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setShares(String value) { - this.shares = value; - } - - /** - * Gets the value of the shareHolders property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getShareHolders() { - return shareHolders; - } - - /** - * Sets the value of the shareHolders property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setShareHolders(String value) { - this.shareHolders = value; - } - - /** - * Gets the value of the remarks property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getRemarks() { - return remarks; - } - - /** - * Sets the value of the remarks property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setRemarks(StringArray value) { - this.remarks = value; - } - - /** - * Gets the value of the establishmentAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV2 } - * - */ - public DutchBusinessAddressV2 getEstablishmentAddress() { - return establishmentAddress; - } - - /** - * Sets the value of the establishmentAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV2 } - * - */ - public void setEstablishmentAddress(DutchBusinessAddressV2 value) { - this.establishmentAddress = value; - } - - /** - * Gets the value of the correspondenceAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV2 } - * - */ - public DutchBusinessAddressV2 getCorrespondenceAddress() { - return correspondenceAddress; - } - - /** - * Sets the value of the correspondenceAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV2 } - * - */ - public void setCorrespondenceAddress(DutchBusinessAddressV2 value) { - this.correspondenceAddress = value; - } - - /** - * Gets the value of the telephoneNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTelephoneNumbers() { - return telephoneNumbers; - } - - /** - * Sets the value of the telephoneNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTelephoneNumbers(StringArray value) { - this.telephoneNumbers = value; - } - - /** - * Gets the value of the faxNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getFaxNumbers() { - return faxNumbers; - } - - /** - * Sets the value of the faxNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setFaxNumbers(StringArray value) { - this.faxNumbers = value; - } - - /** - * Gets the value of the emailAddresses property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getEmailAddresses() { - return emailAddresses; - } - - /** - * Sets the value of the emailAddresses property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setEmailAddresses(StringArray value) { - this.emailAddresses = value; - } - - /** - * Gets the value of the domainNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getDomainNames() { - return domainNames; - } - - /** - * Sets the value of the domainNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setDomainNames(StringArray value) { - this.domainNames = value; - } - - /** - * Gets the value of the sbiCodes property. - * - * @return - * possible object is - * {@link DutchBusinessSbiCodeV2Array } - * - */ - public DutchBusinessSbiCodeV2Array getSbiCodes() { - return sbiCodes; - } - - /** - * Sets the value of the sbiCodes property. - * - * @param value - * allowed object is - * {@link DutchBusinessSbiCodeV2Array } - * - */ - public void setSbiCodes(DutchBusinessSbiCodeV2Array value) { - this.sbiCodes = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityV3.java deleted file mode 100644 index b1b5a30..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLegalEntityV3.java +++ /dev/null @@ -1,1196 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessLegalEntityV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessLegalEntityV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="alternative_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="shortened_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_change" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="foreign_legal_form_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="activity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="company_arrangement" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="statutory_seat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="discontinuation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="dissolution_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="dissolution_reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="removal_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="registration_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="legal_entity_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="liquidation_closure_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="liquidation_reopening_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="deed_incorporation_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="deed_last_statutes_amendment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="last_statutes_amendment_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="liability" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="merger_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="annual_report_submission" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="authorized_share_capital" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV3" minOccurs="0"/>
- *         <element name="issued_share_capital" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV3" minOccurs="0"/>
- *         <element name="paid_up_share_capital" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV3" minOccurs="0"/>
- *         <element name="duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="duration_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="shares" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="share_holders" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
- *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
- *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="fax_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="domain_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}DutchBusinessSbiCodeV3Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessLegalEntityV3", propOrder = { - -}) -public class DutchBusinessLegalEntityV3 { - - @XmlElement(name = "rsin_number") - protected String rsinNumber; - protected String name; - @XmlElement(name = "alternative_name") - protected String alternativeName; - @XmlElement(name = "shortened_name") - protected String shortenedName; - protected String registration; - @XmlElement(name = "legal_form_text") - protected String legalFormText; - @XmlElement(name = "legal_form_change") - protected String legalFormChange; - @XmlElement(name = "foreign_legal_form_description") - protected String foreignLegalFormDescription; - protected String activity; - @XmlElement(name = "company_arrangement") - protected String companyArrangement; - @XmlElement(name = "legal_name") - protected String legalName; - @XmlElement(name = "statutory_seat") - protected String statutorySeat; - @XmlElement(name = "registration_date") - protected DutchBusinessDateV3 registrationDate; - @XmlElement(name = "founding_date") - protected DutchBusinessDateV3 foundingDate; - @XmlElement(name = "discontinuation_date") - protected DutchBusinessDateV3 discontinuationDate; - @XmlElement(name = "dissolution_date") - protected DutchBusinessDateV3 dissolutionDate; - @XmlElement(name = "dissolution_reason") - protected String dissolutionReason; - @XmlElement(name = "removal_date") - protected DutchBusinessDateV3 removalDate; - @XmlElement(name = "registration_end_date") - protected DutchBusinessDateV3 registrationEndDate; - @XmlElement(name = "legal_entity_end_date") - protected DutchBusinessDateV3 legalEntityEndDate; - @XmlElement(name = "liquidation_closure_date") - protected DutchBusinessDateV3 liquidationClosureDate; - @XmlElement(name = "liquidation_reopening_date") - protected DutchBusinessDateV3 liquidationReopeningDate; - @XmlElement(name = "deed_incorporation_date") - protected DutchBusinessDateV3 deedIncorporationDate; - @XmlElement(name = "deed_last_statutes_amendment_date") - protected DutchBusinessDateV3 deedLastStatutesAmendmentDate; - @XmlElement(name = "last_statutes_amendment_date") - protected DutchBusinessDateV3 lastStatutesAmendmentDate; - protected String liability; - @XmlElement(name = "merger_description") - protected String mergerDescription; - @XmlElement(name = "annual_report_submission") - protected String annualReportSubmission; - @XmlElement(name = "authorized_share_capital") - protected DutchBusinessMoneyV3 authorizedShareCapital; - @XmlElement(name = "issued_share_capital") - protected DutchBusinessMoneyV3 issuedShareCapital; - @XmlElement(name = "paid_up_share_capital") - protected DutchBusinessMoneyV3 paidUpShareCapital; - protected String duration; - @XmlElement(name = "duration_end_date") - protected DutchBusinessDateV3 durationEndDate; - protected String shares; - @XmlElement(name = "share_holders") - protected String shareHolders; - protected StringArray remarks; - @XmlElement(name = "establishment_address") - protected DutchBusinessAddressV3 establishmentAddress; - @XmlElement(name = "correspondence_address") - protected DutchBusinessAddressV3 correspondenceAddress; - @XmlElement(name = "telephone_numbers") - protected StringArray telephoneNumbers; - @XmlElement(name = "fax_numbers") - protected StringArray faxNumbers; - @XmlElement(name = "email_addresses") - protected StringArray emailAddresses; - @XmlElement(name = "domain_names") - protected StringArray domainNames; - @XmlElement(name = "sbi_codes") - protected DutchBusinessSbiCodeV3Array sbiCodes; - - /** - * Gets the value of the rsinNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsinNumber() { - return rsinNumber; - } - - /** - * Sets the value of the rsinNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsinNumber(String value) { - this.rsinNumber = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the alternativeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlternativeName() { - return alternativeName; - } - - /** - * Sets the value of the alternativeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlternativeName(String value) { - this.alternativeName = value; - } - - /** - * Gets the value of the shortenedName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getShortenedName() { - return shortenedName; - } - - /** - * Sets the value of the shortenedName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setShortenedName(String value) { - this.shortenedName = value; - } - - /** - * Gets the value of the registration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistration() { - return registration; - } - - /** - * Sets the value of the registration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistration(String value) { - this.registration = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the legalFormChange property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormChange() { - return legalFormChange; - } - - /** - * Sets the value of the legalFormChange property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormChange(String value) { - this.legalFormChange = value; - } - - /** - * Gets the value of the foreignLegalFormDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getForeignLegalFormDescription() { - return foreignLegalFormDescription; - } - - /** - * Sets the value of the foreignLegalFormDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setForeignLegalFormDescription(String value) { - this.foreignLegalFormDescription = value; - } - - /** - * Gets the value of the activity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getActivity() { - return activity; - } - - /** - * Sets the value of the activity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setActivity(String value) { - this.activity = value; - } - - /** - * Gets the value of the companyArrangement property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyArrangement() { - return companyArrangement; - } - - /** - * Sets the value of the companyArrangement property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyArrangement(String value) { - this.companyArrangement = value; - } - - /** - * Gets the value of the legalName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalName() { - return legalName; - } - - /** - * Sets the value of the legalName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalName(String value) { - this.legalName = value; - } - - /** - * Gets the value of the statutorySeat property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatutorySeat() { - return statutorySeat; - } - - /** - * Sets the value of the statutorySeat property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatutorySeat(String value) { - this.statutorySeat = value; - } - - /** - * Gets the value of the registrationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getRegistrationDate() { - return registrationDate; - } - - /** - * Sets the value of the registrationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setRegistrationDate(DutchBusinessDateV3 value) { - this.registrationDate = value; - } - - /** - * Gets the value of the foundingDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getFoundingDate() { - return foundingDate; - } - - /** - * Sets the value of the foundingDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setFoundingDate(DutchBusinessDateV3 value) { - this.foundingDate = value; - } - - /** - * Gets the value of the discontinuationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getDiscontinuationDate() { - return discontinuationDate; - } - - /** - * Sets the value of the discontinuationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setDiscontinuationDate(DutchBusinessDateV3 value) { - this.discontinuationDate = value; - } - - /** - * Gets the value of the dissolutionDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getDissolutionDate() { - return dissolutionDate; - } - - /** - * Sets the value of the dissolutionDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setDissolutionDate(DutchBusinessDateV3 value) { - this.dissolutionDate = value; - } - - /** - * Gets the value of the dissolutionReason property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDissolutionReason() { - return dissolutionReason; - } - - /** - * Sets the value of the dissolutionReason property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDissolutionReason(String value) { - this.dissolutionReason = value; - } - - /** - * Gets the value of the removalDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getRemovalDate() { - return removalDate; - } - - /** - * Sets the value of the removalDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setRemovalDate(DutchBusinessDateV3 value) { - this.removalDate = value; - } - - /** - * Gets the value of the registrationEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getRegistrationEndDate() { - return registrationEndDate; - } - - /** - * Sets the value of the registrationEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setRegistrationEndDate(DutchBusinessDateV3 value) { - this.registrationEndDate = value; - } - - /** - * Gets the value of the legalEntityEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getLegalEntityEndDate() { - return legalEntityEndDate; - } - - /** - * Sets the value of the legalEntityEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setLegalEntityEndDate(DutchBusinessDateV3 value) { - this.legalEntityEndDate = value; - } - - /** - * Gets the value of the liquidationClosureDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getLiquidationClosureDate() { - return liquidationClosureDate; - } - - /** - * Sets the value of the liquidationClosureDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setLiquidationClosureDate(DutchBusinessDateV3 value) { - this.liquidationClosureDate = value; - } - - /** - * Gets the value of the liquidationReopeningDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getLiquidationReopeningDate() { - return liquidationReopeningDate; - } - - /** - * Sets the value of the liquidationReopeningDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setLiquidationReopeningDate(DutchBusinessDateV3 value) { - this.liquidationReopeningDate = value; - } - - /** - * Gets the value of the deedIncorporationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getDeedIncorporationDate() { - return deedIncorporationDate; - } - - /** - * Sets the value of the deedIncorporationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setDeedIncorporationDate(DutchBusinessDateV3 value) { - this.deedIncorporationDate = value; - } - - /** - * Gets the value of the deedLastStatutesAmendmentDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getDeedLastStatutesAmendmentDate() { - return deedLastStatutesAmendmentDate; - } - - /** - * Sets the value of the deedLastStatutesAmendmentDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setDeedLastStatutesAmendmentDate(DutchBusinessDateV3 value) { - this.deedLastStatutesAmendmentDate = value; - } - - /** - * Gets the value of the lastStatutesAmendmentDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getLastStatutesAmendmentDate() { - return lastStatutesAmendmentDate; - } - - /** - * Sets the value of the lastStatutesAmendmentDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setLastStatutesAmendmentDate(DutchBusinessDateV3 value) { - this.lastStatutesAmendmentDate = value; - } - - /** - * Gets the value of the liability property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLiability() { - return liability; - } - - /** - * Sets the value of the liability property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLiability(String value) { - this.liability = value; - } - - /** - * Gets the value of the mergerDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMergerDescription() { - return mergerDescription; - } - - /** - * Sets the value of the mergerDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMergerDescription(String value) { - this.mergerDescription = value; - } - - /** - * Gets the value of the annualReportSubmission property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAnnualReportSubmission() { - return annualReportSubmission; - } - - /** - * Sets the value of the annualReportSubmission property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAnnualReportSubmission(String value) { - this.annualReportSubmission = value; - } - - /** - * Gets the value of the authorizedShareCapital property. - * - * @return - * possible object is - * {@link DutchBusinessMoneyV3 } - * - */ - public DutchBusinessMoneyV3 getAuthorizedShareCapital() { - return authorizedShareCapital; - } - - /** - * Sets the value of the authorizedShareCapital property. - * - * @param value - * allowed object is - * {@link DutchBusinessMoneyV3 } - * - */ - public void setAuthorizedShareCapital(DutchBusinessMoneyV3 value) { - this.authorizedShareCapital = value; - } - - /** - * Gets the value of the issuedShareCapital property. - * - * @return - * possible object is - * {@link DutchBusinessMoneyV3 } - * - */ - public DutchBusinessMoneyV3 getIssuedShareCapital() { - return issuedShareCapital; - } - - /** - * Sets the value of the issuedShareCapital property. - * - * @param value - * allowed object is - * {@link DutchBusinessMoneyV3 } - * - */ - public void setIssuedShareCapital(DutchBusinessMoneyV3 value) { - this.issuedShareCapital = value; - } - - /** - * Gets the value of the paidUpShareCapital property. - * - * @return - * possible object is - * {@link DutchBusinessMoneyV3 } - * - */ - public DutchBusinessMoneyV3 getPaidUpShareCapital() { - return paidUpShareCapital; - } - - /** - * Sets the value of the paidUpShareCapital property. - * - * @param value - * allowed object is - * {@link DutchBusinessMoneyV3 } - * - */ - public void setPaidUpShareCapital(DutchBusinessMoneyV3 value) { - this.paidUpShareCapital = value; - } - - /** - * Gets the value of the duration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDuration() { - return duration; - } - - /** - * Sets the value of the duration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDuration(String value) { - this.duration = value; - } - - /** - * Gets the value of the durationEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getDurationEndDate() { - return durationEndDate; - } - - /** - * Sets the value of the durationEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setDurationEndDate(DutchBusinessDateV3 value) { - this.durationEndDate = value; - } - - /** - * Gets the value of the shares property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getShares() { - return shares; - } - - /** - * Sets the value of the shares property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setShares(String value) { - this.shares = value; - } - - /** - * Gets the value of the shareHolders property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getShareHolders() { - return shareHolders; - } - - /** - * Sets the value of the shareHolders property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setShareHolders(String value) { - this.shareHolders = value; - } - - /** - * Gets the value of the remarks property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getRemarks() { - return remarks; - } - - /** - * Sets the value of the remarks property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setRemarks(StringArray value) { - this.remarks = value; - } - - /** - * Gets the value of the establishmentAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV3 } - * - */ - public DutchBusinessAddressV3 getEstablishmentAddress() { - return establishmentAddress; - } - - /** - * Sets the value of the establishmentAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV3 } - * - */ - public void setEstablishmentAddress(DutchBusinessAddressV3 value) { - this.establishmentAddress = value; - } - - /** - * Gets the value of the correspondenceAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV3 } - * - */ - public DutchBusinessAddressV3 getCorrespondenceAddress() { - return correspondenceAddress; - } - - /** - * Sets the value of the correspondenceAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV3 } - * - */ - public void setCorrespondenceAddress(DutchBusinessAddressV3 value) { - this.correspondenceAddress = value; - } - - /** - * Gets the value of the telephoneNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTelephoneNumbers() { - return telephoneNumbers; - } - - /** - * Sets the value of the telephoneNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTelephoneNumbers(StringArray value) { - this.telephoneNumbers = value; - } - - /** - * Gets the value of the faxNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getFaxNumbers() { - return faxNumbers; - } - - /** - * Sets the value of the faxNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setFaxNumbers(StringArray value) { - this.faxNumbers = value; - } - - /** - * Gets the value of the emailAddresses property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getEmailAddresses() { - return emailAddresses; - } - - /** - * Sets the value of the emailAddresses property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setEmailAddresses(StringArray value) { - this.emailAddresses = value; - } - - /** - * Gets the value of the domainNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getDomainNames() { - return domainNames; - } - - /** - * Sets the value of the domainNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setDomainNames(StringArray value) { - this.domainNames = value; - } - - /** - * Gets the value of the sbiCodes property. - * - * @return - * possible object is - * {@link DutchBusinessSbiCodeV3Array } - * - */ - public DutchBusinessSbiCodeV3Array getSbiCodes() { - return sbiCodes; - } - - /** - * Sets the value of the sbiCodes property. - * - * @param value - * allowed object is - * {@link DutchBusinessSbiCodeV3Array } - * - */ - public void setSbiCodes(DutchBusinessSbiCodeV3Array value) { - this.sbiCodes = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiAddress.java deleted file mode 100644 index ad2f4f8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiAddress.java +++ /dev/null @@ -1,176 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessLeiAddress complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessLeiAddress">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="street_and_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postal_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessLeiAddress", propOrder = { - -}) -public class DutchBusinessLeiAddress { - - @XmlElement(name = "street_and_number", required = true) - protected String streetAndNumber; - @XmlElement(required = true) - protected String city; - @XmlElement(name = "postal_code") - protected String postalCode; - protected String region; - @XmlElement(required = true) - protected String country; - - /** - * Gets the value of the streetAndNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetAndNumber() { - return streetAndNumber; - } - - /** - * Sets the value of the streetAndNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetAndNumber(String value) { - this.streetAndNumber = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the postalCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostalCode() { - return postalCode; - } - - /** - * Sets the value of the postalCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostalCode(String value) { - this.postalCode = value; - } - - /** - * Gets the value of the region property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegion() { - return region; - } - - /** - * Sets the value of the region property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegion(String value) { - this.region = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiBusinessEntity.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiBusinessEntity.java deleted file mode 100644 index 0617421..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiBusinessEntity.java +++ /dev/null @@ -1,287 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessLeiBusinessEntity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessLeiBusinessEntity">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="expiration_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="expiration_reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="successor" type="{http://www.webservices.nl/soap/}DutchBusinessLeiSuccessor" minOccurs="0"/>
- *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_form" type="{http://www.webservices.nl/soap/}DutchBusinessLeiLegalForm"/>
- *         <element name="headquarters_address" type="{http://www.webservices.nl/soap/}DutchBusinessLeiAddress"/>
- *         <element name="legal_address" type="{http://www.webservices.nl/soap/}DutchBusinessLeiAddress"/>
- *         <element name="registration_authority" type="{http://www.webservices.nl/soap/}DutchBusinessLeiRegistrationAuthority"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessLeiBusinessEntity", propOrder = { - -}) -public class DutchBusinessLeiBusinessEntity { - - @XmlElement(name = "expiration_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar expirationDate; - @XmlElement(name = "expiration_reason") - protected String expirationReason; - protected DutchBusinessLeiSuccessor successor; - @XmlElement(name = "company_name", required = true) - protected String companyName; - @XmlElement(name = "legal_status", required = true) - protected String legalStatus; - @XmlElement(name = "legal_form", required = true) - protected DutchBusinessLeiLegalForm legalForm; - @XmlElement(name = "headquarters_address", required = true) - protected DutchBusinessLeiAddress headquartersAddress; - @XmlElement(name = "legal_address", required = true) - protected DutchBusinessLeiAddress legalAddress; - @XmlElement(name = "registration_authority", required = true) - protected DutchBusinessLeiRegistrationAuthority registrationAuthority; - - /** - * Gets the value of the expirationDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getExpirationDate() { - return expirationDate; - } - - /** - * Sets the value of the expirationDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setExpirationDate(XMLGregorianCalendar value) { - this.expirationDate = value; - } - - /** - * Gets the value of the expirationReason property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getExpirationReason() { - return expirationReason; - } - - /** - * Sets the value of the expirationReason property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setExpirationReason(String value) { - this.expirationReason = value; - } - - /** - * Gets the value of the successor property. - * - * @return - * possible object is - * {@link DutchBusinessLeiSuccessor } - * - */ - public DutchBusinessLeiSuccessor getSuccessor() { - return successor; - } - - /** - * Sets the value of the successor property. - * - * @param value - * allowed object is - * {@link DutchBusinessLeiSuccessor } - * - */ - public void setSuccessor(DutchBusinessLeiSuccessor value) { - this.successor = value; - } - - /** - * Gets the value of the companyName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyName() { - return companyName; - } - - /** - * Sets the value of the companyName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyName(String value) { - this.companyName = value; - } - - /** - * Gets the value of the legalStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalStatus() { - return legalStatus; - } - - /** - * Sets the value of the legalStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalStatus(String value) { - this.legalStatus = value; - } - - /** - * Gets the value of the legalForm property. - * - * @return - * possible object is - * {@link DutchBusinessLeiLegalForm } - * - */ - public DutchBusinessLeiLegalForm getLegalForm() { - return legalForm; - } - - /** - * Sets the value of the legalForm property. - * - * @param value - * allowed object is - * {@link DutchBusinessLeiLegalForm } - * - */ - public void setLegalForm(DutchBusinessLeiLegalForm value) { - this.legalForm = value; - } - - /** - * Gets the value of the headquartersAddress property. - * - * @return - * possible object is - * {@link DutchBusinessLeiAddress } - * - */ - public DutchBusinessLeiAddress getHeadquartersAddress() { - return headquartersAddress; - } - - /** - * Sets the value of the headquartersAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessLeiAddress } - * - */ - public void setHeadquartersAddress(DutchBusinessLeiAddress value) { - this.headquartersAddress = value; - } - - /** - * Gets the value of the legalAddress property. - * - * @return - * possible object is - * {@link DutchBusinessLeiAddress } - * - */ - public DutchBusinessLeiAddress getLegalAddress() { - return legalAddress; - } - - /** - * Sets the value of the legalAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessLeiAddress } - * - */ - public void setLegalAddress(DutchBusinessLeiAddress value) { - this.legalAddress = value; - } - - /** - * Gets the value of the registrationAuthority property. - * - * @return - * possible object is - * {@link DutchBusinessLeiRegistrationAuthority } - * - */ - public DutchBusinessLeiRegistrationAuthority getRegistrationAuthority() { - return registrationAuthority; - } - - /** - * Sets the value of the registrationAuthority property. - * - * @param value - * allowed object is - * {@link DutchBusinessLeiRegistrationAuthority } - * - */ - public void setRegistrationAuthority(DutchBusinessLeiRegistrationAuthority value) { - this.registrationAuthority = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiLegalForm.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiLegalForm.java deleted file mode 100644 index a3ac547..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiLegalForm.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessLeiLegalForm complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessLeiLegalForm">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="legal_form_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessLeiLegalForm", propOrder = { - -}) -public class DutchBusinessLeiLegalForm { - - @XmlElement(name = "legal_form_code", required = true) - protected String legalFormCode; - - /** - * Gets the value of the legalFormCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormCode() { - return legalFormCode; - } - - /** - * Sets the value of the legalFormCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormCode(String value) { - this.legalFormCode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiRegistration.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiRegistration.java deleted file mode 100644 index 0f58e14..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiRegistration.java +++ /dev/null @@ -1,209 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessLeiRegistration complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessLeiRegistration">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="last_update" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="assignment_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="renewal_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="managing_lou" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="validation_sources" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessLeiRegistration", propOrder = { - -}) -public class DutchBusinessLeiRegistration { - - @XmlElement(name = "last_update", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar lastUpdate; - @XmlElement(required = true) - protected String status; - @XmlElement(name = "assignment_date", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar assignmentDate; - @XmlElement(name = "renewal_date", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar renewalDate; - @XmlElement(name = "managing_lou", required = true) - protected String managingLou; - @XmlElement(name = "validation_sources", required = true) - protected String validationSources; - - /** - * Gets the value of the lastUpdate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLastUpdate() { - return lastUpdate; - } - - /** - * Sets the value of the lastUpdate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLastUpdate(XMLGregorianCalendar value) { - this.lastUpdate = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the assignmentDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getAssignmentDate() { - return assignmentDate; - } - - /** - * Sets the value of the assignmentDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setAssignmentDate(XMLGregorianCalendar value) { - this.assignmentDate = value; - } - - /** - * Gets the value of the renewalDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getRenewalDate() { - return renewalDate; - } - - /** - * Sets the value of the renewalDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setRenewalDate(XMLGregorianCalendar value) { - this.renewalDate = value; - } - - /** - * Gets the value of the managingLou property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getManagingLou() { - return managingLou; - } - - /** - * Sets the value of the managingLou property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setManagingLou(String value) { - this.managingLou = value; - } - - /** - * Gets the value of the validationSources property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValidationSources() { - return validationSources; - } - - /** - * Sets the value of the validationSources property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValidationSources(String value) { - this.validationSources = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiRegistrationAuthority.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiRegistrationAuthority.java deleted file mode 100644 index 9a89ce4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiRegistrationAuthority.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessLeiRegistrationAuthority complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessLeiRegistrationAuthority">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="registration_authority_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessLeiRegistrationAuthority", propOrder = { - -}) -public class DutchBusinessLeiRegistrationAuthority { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "registration_authority_id", required = true) - protected String registrationAuthorityId; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the registrationAuthorityId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistrationAuthorityId() { - return registrationAuthorityId; - } - - /** - * Sets the value of the registrationAuthorityId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistrationAuthorityId(String value) { - this.registrationAuthorityId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiSuccessor.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiSuccessor.java deleted file mode 100644 index a7e3739..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessLeiSuccessor.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessLeiSuccessor complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessLeiSuccessor">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="lei_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessLeiSuccessor", propOrder = { - -}) -public class DutchBusinessLeiSuccessor { - - protected String name; - @XmlElement(name = "lei_code") - protected String leiCode; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the leiCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLeiCode() { - return leiCode; - } - - /** - * Sets the value of the leiCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLeiCode(String value) { - this.leiCode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessMoneyV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessMoneyV2.java deleted file mode 100644 index 89c1a1a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessMoneyV2.java +++ /dev/null @@ -1,119 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessMoneyV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessMoneyV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="formatted" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessMoneyV2", propOrder = { - -}) -public class DutchBusinessMoneyV2 { - - protected Long amount; - protected String currency; - protected String formatted; - - /** - * Gets the value of the amount property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getAmount() { - return amount; - } - - /** - * Sets the value of the amount property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setAmount(Long value) { - this.amount = value; - } - - /** - * Gets the value of the currency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCurrency() { - return currency; - } - - /** - * Sets the value of the currency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCurrency(String value) { - this.currency = value; - } - - /** - * Gets the value of the formatted property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormatted() { - return formatted; - } - - /** - * Sets the value of the formatted property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormatted(String value) { - this.formatted = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessMoneyV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessMoneyV3.java deleted file mode 100644 index bcadb43..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessMoneyV3.java +++ /dev/null @@ -1,119 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessMoneyV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessMoneyV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="formatted" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessMoneyV3", propOrder = { - -}) -public class DutchBusinessMoneyV3 { - - protected Long amount; - protected String currency; - protected String formatted; - - /** - * Gets the value of the amount property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getAmount() { - return amount; - } - - /** - * Sets the value of the amount property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setAmount(Long value) { - this.amount = value; - } - - /** - * Gets the value of the currency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCurrency() { - return currency; - } - - /** - * Sets the value of the currency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCurrency(String value) { - this.currency = value; - } - - /** - * Gets the value of the formatted property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormatted() { - return formatted; - } - - /** - * Sets the value of the formatted property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormatted(String value) { - this.formatted = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsCompany.java deleted file mode 100644 index 13e2020..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsCompany.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessNewsCompany complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessNewsCompany">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessNewsCompany", propOrder = { - -}) -public class DutchBusinessNewsCompany { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(required = true) - protected String name; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsCompanyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsCompanyArray.java deleted file mode 100644 index c7e03ca..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsCompanyArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessNewsCompanyArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessNewsCompanyArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessNewsCompany" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessNewsCompanyArray", propOrder = { - "item" -}) -public class DutchBusinessNewsCompanyArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessNewsCompany } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItem.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItem.java deleted file mode 100644 index a8876d4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItem.java +++ /dev/null @@ -1,289 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessNewsItem complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessNewsItem">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
- *         <element name="short" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="source" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sentiment" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
- *         <element name="topics" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="companies" type="{http://www.webservices.nl/soap/}DutchBusinessNewsCompanyArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessNewsItem", propOrder = { - -}) -public class DutchBusinessNewsItem { - - @XmlElement(required = true) - protected String title; - @XmlElement(required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar date; - @XmlElement(name = "short", required = true) - protected String _short; - @XmlElement(required = true) - protected String url; - @XmlElement(required = true) - protected String source; - @XmlElement(required = true) - protected String type; - @XmlElement(required = true) - protected BigDecimal sentiment; - @XmlElement(required = true) - protected StringArray topics; - @XmlElement(required = true) - protected DutchBusinessNewsCompanyArray companies; - - /** - * Gets the value of the title property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTitle() { - return title; - } - - /** - * Sets the value of the title property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTitle(String value) { - this.title = value; - } - - /** - * Gets the value of the date property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Sets the value of the date property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the short property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getShort() { - return _short; - } - - /** - * Sets the value of the short property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setShort(String value) { - this._short = value; - } - - /** - * Gets the value of the url property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Sets the value of the url property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Gets the value of the source property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSource() { - return source; - } - - /** - * Sets the value of the source property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSource(String value) { - this.source = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the sentiment property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getSentiment() { - return sentiment; - } - - /** - * Sets the value of the sentiment property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setSentiment(BigDecimal value) { - this.sentiment = value; - } - - /** - * Gets the value of the topics property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTopics() { - return topics; - } - - /** - * Sets the value of the topics property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTopics(StringArray value) { - this.topics = value; - } - - /** - * Gets the value of the companies property. - * - * @return - * possible object is - * {@link DutchBusinessNewsCompanyArray } - * - */ - public DutchBusinessNewsCompanyArray getCompanies() { - return companies; - } - - /** - * Sets the value of the companies property. - * - * @param value - * allowed object is - * {@link DutchBusinessNewsCompanyArray } - * - */ - public void setCompanies(DutchBusinessNewsCompanyArray value) { - this.companies = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItemArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItemArray.java deleted file mode 100644 index acd2e3e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItemArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessNewsItemArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessNewsItemArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessNewsItem" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessNewsItemArray", propOrder = { - "item" -}) -public class DutchBusinessNewsItemArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessNewsItem } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItemPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItemPagedResult.java deleted file mode 100644 index 39e7105..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNewsItemPagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessNewsItemPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessNewsItemPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}DutchBusinessNewsItemArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessNewsItemPagedResult", propOrder = { - -}) -public class DutchBusinessNewsItemPagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected DutchBusinessNewsItemArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link DutchBusinessNewsItemArray } - * - */ - public DutchBusinessNewsItemArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link DutchBusinessNewsItemArray } - * - */ - public void setResults(DutchBusinessNewsItemArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNonMarketingIndicator.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNonMarketingIndicator.java deleted file mode 100644 index fb1aead..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessNonMarketingIndicator.java +++ /dev/null @@ -1,144 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessNonMarketingIndicator complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessNonMarketingIndicator">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="non_marketing_indicator" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="since" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessNonMarketingIndicator", propOrder = { - -}) -public class DutchBusinessNonMarketingIndicator { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(name = "non_marketing_indicator") - protected boolean nonMarketingIndicator; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar since; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the nonMarketingIndicator property. - * - */ - public boolean isNonMarketingIndicator() { - return nonMarketingIndicator; - } - - /** - * Sets the value of the nonMarketingIndicator property. - * - */ - public void setNonMarketingIndicator(boolean value) { - this.nonMarketingIndicator = value; - } - - /** - * Gets the value of the since property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSince() { - return since; - } - - /** - * Sets the value of the since property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSince(XMLGregorianCalendar value) { - this.since = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationNode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationNode.java deleted file mode 100644 index 273b8dc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationNode.java +++ /dev/null @@ -1,148 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessOrganizationNode complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessOrganizationNode">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="children" type="{http://www.webservices.nl/soap/}DutchBusinessOrganizationNodeArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessOrganizationNode", propOrder = { - -}) -public class DutchBusinessOrganizationNode { - - @XmlElement(required = true) - protected String name; - @XmlElement(required = true) - protected String type; - protected String id; - protected DutchBusinessOrganizationNodeArray children; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the children property. - * - * @return - * possible object is - * {@link DutchBusinessOrganizationNodeArray } - * - */ - public DutchBusinessOrganizationNodeArray getChildren() { - return children; - } - - /** - * Sets the value of the children property. - * - * @param value - * allowed object is - * {@link DutchBusinessOrganizationNodeArray } - * - */ - public void setChildren(DutchBusinessOrganizationNodeArray value) { - this.children = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationNodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationNodeArray.java deleted file mode 100644 index 2dc1251..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationNodeArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessOrganizationNodeArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessOrganizationNodeArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessOrganizationNode" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessOrganizationNodeArray", propOrder = { - "item" -}) -public class DutchBusinessOrganizationNodeArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessOrganizationNode } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationReferenceV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationReferenceV2.java deleted file mode 100644 index c660199..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationReferenceV2.java +++ /dev/null @@ -1,148 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessOrganizationReferenceV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessOrganizationReferenceV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessOrganizationReferenceV2", propOrder = { - -}) -public class DutchBusinessOrganizationReferenceV2 { - - @XmlElement(name = "dossier_number") - protected String dossierNumber; - protected String registration; - protected String name; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the registration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistration() { - return registration; - } - - /** - * Sets the value of the registration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistration(String value) { - this.registration = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationReferenceV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationReferenceV3.java deleted file mode 100644 index 3069f61..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationReferenceV3.java +++ /dev/null @@ -1,148 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessOrganizationReferenceV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessOrganizationReferenceV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessOrganizationReferenceV3", propOrder = { - -}) -public class DutchBusinessOrganizationReferenceV3 { - - @XmlElement(name = "dossier_number") - protected String dossierNumber; - protected String registration; - protected String name; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the registration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistration() { - return registration; - } - - /** - * Sets the value of the registration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistration(String value) { - this.registration = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationTree.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationTree.java deleted file mode 100644 index c2e302c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessOrganizationTree.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessOrganizationTree complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessOrganizationTree">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="tree" type="{http://www.webservices.nl/soap/}DutchBusinessOrganizationNode"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessOrganizationTree", propOrder = { - -}) -public class DutchBusinessOrganizationTree { - - @XmlElement(required = true) - protected String name; - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(required = true) - protected DutchBusinessOrganizationNode tree; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the tree property. - * - * @return - * possible object is - * {@link DutchBusinessOrganizationNode } - * - */ - public DutchBusinessOrganizationNode getTree() { - return tree; - } - - /** - * Sets the value of the tree property. - * - * @param value - * allowed object is - * {@link DutchBusinessOrganizationNode } - * - */ - public void setTree(DutchBusinessOrganizationNode value) { - this.tree = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnership.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnership.java deleted file mode 100644 index fe913a6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnership.java +++ /dev/null @@ -1,551 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessPartnership complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPartnership">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="dissolution_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="function_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="limited_partnership_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="limited_partnership_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="establishment_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="silent_partners" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPartnership", propOrder = { - -}) -public class DutchBusinessPartnership { - - @XmlElement(name = "dossier_number") - protected String dossierNumber; - @XmlElement(name = "rsin_number") - protected String rsinNumber; - protected String name; - protected String registration; - protected String status; - @XmlElement(name = "legal_form_text") - protected String legalFormText; - @XmlElement(name = "founding_date") - protected DutchBusinessDate foundingDate; - @XmlElement(name = "dissolution_date") - protected DutchBusinessDate dissolutionDate; - @XmlElement(name = "function_start_date") - protected DutchBusinessDate functionStartDate; - protected String duration; - @XmlElement(name = "limited_partnership_capital") - protected Long limitedPartnershipCapital; - @XmlElement(name = "limited_partnership_capital_currency") - protected String limitedPartnershipCapitalCurrency; - @XmlElement(name = "establishment_postcode") - protected String establishmentPostcode; - @XmlElement(name = "establishment_city") - protected String establishmentCity; - @XmlElement(name = "establishment_street") - protected String establishmentStreet; - @XmlElement(name = "establishment_house_number") - protected Integer establishmentHouseNumber; - @XmlElement(name = "establishment_house_number_addition") - protected String establishmentHouseNumberAddition; - @XmlElement(name = "establishment_country") - protected String establishmentCountry; - @XmlElement(name = "silent_partners") - protected Integer silentPartners; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the rsinNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsinNumber() { - return rsinNumber; - } - - /** - * Sets the value of the rsinNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsinNumber(String value) { - this.rsinNumber = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the registration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistration() { - return registration; - } - - /** - * Sets the value of the registration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistration(String value) { - this.registration = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the foundingDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getFoundingDate() { - return foundingDate; - } - - /** - * Sets the value of the foundingDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setFoundingDate(DutchBusinessDate value) { - this.foundingDate = value; - } - - /** - * Gets the value of the dissolutionDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getDissolutionDate() { - return dissolutionDate; - } - - /** - * Sets the value of the dissolutionDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setDissolutionDate(DutchBusinessDate value) { - this.dissolutionDate = value; - } - - /** - * Gets the value of the functionStartDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getFunctionStartDate() { - return functionStartDate; - } - - /** - * Sets the value of the functionStartDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setFunctionStartDate(DutchBusinessDate value) { - this.functionStartDate = value; - } - - /** - * Gets the value of the duration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDuration() { - return duration; - } - - /** - * Sets the value of the duration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDuration(String value) { - this.duration = value; - } - - /** - * Gets the value of the limitedPartnershipCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getLimitedPartnershipCapital() { - return limitedPartnershipCapital; - } - - /** - * Sets the value of the limitedPartnershipCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setLimitedPartnershipCapital(Long value) { - this.limitedPartnershipCapital = value; - } - - /** - * Gets the value of the limitedPartnershipCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLimitedPartnershipCapitalCurrency() { - return limitedPartnershipCapitalCurrency; - } - - /** - * Sets the value of the limitedPartnershipCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLimitedPartnershipCapitalCurrency(String value) { - this.limitedPartnershipCapitalCurrency = value; - } - - /** - * Gets the value of the establishmentPostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentPostcode() { - return establishmentPostcode; - } - - /** - * Sets the value of the establishmentPostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentPostcode(String value) { - this.establishmentPostcode = value; - } - - /** - * Gets the value of the establishmentCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCity() { - return establishmentCity; - } - - /** - * Sets the value of the establishmentCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCity(String value) { - this.establishmentCity = value; - } - - /** - * Gets the value of the establishmentStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentStreet() { - return establishmentStreet; - } - - /** - * Sets the value of the establishmentStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentStreet(String value) { - this.establishmentStreet = value; - } - - /** - * Gets the value of the establishmentHouseNumber property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEstablishmentHouseNumber() { - return establishmentHouseNumber; - } - - /** - * Sets the value of the establishmentHouseNumber property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEstablishmentHouseNumber(Integer value) { - this.establishmentHouseNumber = value; - } - - /** - * Gets the value of the establishmentHouseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentHouseNumberAddition() { - return establishmentHouseNumberAddition; - } - - /** - * Sets the value of the establishmentHouseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentHouseNumberAddition(String value) { - this.establishmentHouseNumberAddition = value; - } - - /** - * Gets the value of the establishmentCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCountry() { - return establishmentCountry; - } - - /** - * Sets the value of the establishmentCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCountry(String value) { - this.establishmentCountry = value; - } - - /** - * Gets the value of the silentPartners property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getSilentPartners() { - return silentPartners; - } - - /** - * Sets the value of the silentPartners property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setSilentPartners(Integer value) { - this.silentPartners = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipArray.java deleted file mode 100644 index b12d873..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessPartnershipArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPartnershipArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessPartnership" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPartnershipArray", propOrder = { - "item" -}) -public class DutchBusinessPartnershipArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessPartnership } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipV2.java deleted file mode 100644 index 4663dd5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipV2.java +++ /dev/null @@ -1,416 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessPartnershipV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPartnershipV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="dissolution_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="function_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="limited_partnership_capital" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV2" minOccurs="0"/>
- *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
- *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
- *         <element name="silent_partners" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPartnershipV2", propOrder = { - -}) -public class DutchBusinessPartnershipV2 { - - @XmlElement(name = "dossier_number") - protected String dossierNumber; - @XmlElement(name = "rsin_number") - protected String rsinNumber; - protected String name; - protected String registration; - @XmlElement(name = "legal_form_text") - protected String legalFormText; - @XmlElement(name = "founding_date") - protected DutchBusinessDateV2 foundingDate; - @XmlElement(name = "dissolution_date") - protected DutchBusinessDateV2 dissolutionDate; - @XmlElement(name = "function_start_date") - protected DutchBusinessDateV2 functionStartDate; - protected String duration; - @XmlElement(name = "limited_partnership_capital") - protected DutchBusinessMoneyV2 limitedPartnershipCapital; - @XmlElement(name = "establishment_address") - protected DutchBusinessAddressV2 establishmentAddress; - @XmlElement(name = "correspondence_address") - protected DutchBusinessAddressV2 correspondenceAddress; - @XmlElement(name = "silent_partners") - protected Integer silentPartners; - protected StringArray remarks; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the rsinNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsinNumber() { - return rsinNumber; - } - - /** - * Sets the value of the rsinNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsinNumber(String value) { - this.rsinNumber = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the registration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistration() { - return registration; - } - - /** - * Sets the value of the registration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistration(String value) { - this.registration = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the foundingDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getFoundingDate() { - return foundingDate; - } - - /** - * Sets the value of the foundingDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setFoundingDate(DutchBusinessDateV2 value) { - this.foundingDate = value; - } - - /** - * Gets the value of the dissolutionDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getDissolutionDate() { - return dissolutionDate; - } - - /** - * Sets the value of the dissolutionDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setDissolutionDate(DutchBusinessDateV2 value) { - this.dissolutionDate = value; - } - - /** - * Gets the value of the functionStartDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getFunctionStartDate() { - return functionStartDate; - } - - /** - * Sets the value of the functionStartDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setFunctionStartDate(DutchBusinessDateV2 value) { - this.functionStartDate = value; - } - - /** - * Gets the value of the duration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDuration() { - return duration; - } - - /** - * Sets the value of the duration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDuration(String value) { - this.duration = value; - } - - /** - * Gets the value of the limitedPartnershipCapital property. - * - * @return - * possible object is - * {@link DutchBusinessMoneyV2 } - * - */ - public DutchBusinessMoneyV2 getLimitedPartnershipCapital() { - return limitedPartnershipCapital; - } - - /** - * Sets the value of the limitedPartnershipCapital property. - * - * @param value - * allowed object is - * {@link DutchBusinessMoneyV2 } - * - */ - public void setLimitedPartnershipCapital(DutchBusinessMoneyV2 value) { - this.limitedPartnershipCapital = value; - } - - /** - * Gets the value of the establishmentAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV2 } - * - */ - public DutchBusinessAddressV2 getEstablishmentAddress() { - return establishmentAddress; - } - - /** - * Sets the value of the establishmentAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV2 } - * - */ - public void setEstablishmentAddress(DutchBusinessAddressV2 value) { - this.establishmentAddress = value; - } - - /** - * Gets the value of the correspondenceAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV2 } - * - */ - public DutchBusinessAddressV2 getCorrespondenceAddress() { - return correspondenceAddress; - } - - /** - * Sets the value of the correspondenceAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV2 } - * - */ - public void setCorrespondenceAddress(DutchBusinessAddressV2 value) { - this.correspondenceAddress = value; - } - - /** - * Gets the value of the silentPartners property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getSilentPartners() { - return silentPartners; - } - - /** - * Sets the value of the silentPartners property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setSilentPartners(Integer value) { - this.silentPartners = value; - } - - /** - * Gets the value of the remarks property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getRemarks() { - return remarks; - } - - /** - * Sets the value of the remarks property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setRemarks(StringArray value) { - this.remarks = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipV3.java deleted file mode 100644 index f4f3067..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPartnershipV3.java +++ /dev/null @@ -1,416 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessPartnershipV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPartnershipV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="founding_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="dissolution_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="function_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="limited_partnership_capital" type="{http://www.webservices.nl/soap/}DutchBusinessMoneyV3" minOccurs="0"/>
- *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
- *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
- *         <element name="silent_partners" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPartnershipV3", propOrder = { - -}) -public class DutchBusinessPartnershipV3 { - - @XmlElement(name = "dossier_number") - protected String dossierNumber; - @XmlElement(name = "rsin_number") - protected String rsinNumber; - protected String name; - protected String registration; - @XmlElement(name = "legal_form_text") - protected String legalFormText; - @XmlElement(name = "founding_date") - protected DutchBusinessDateV3 foundingDate; - @XmlElement(name = "dissolution_date") - protected DutchBusinessDateV3 dissolutionDate; - @XmlElement(name = "function_start_date") - protected DutchBusinessDateV3 functionStartDate; - protected String duration; - @XmlElement(name = "limited_partnership_capital") - protected DutchBusinessMoneyV3 limitedPartnershipCapital; - @XmlElement(name = "establishment_address") - protected DutchBusinessAddressV3 establishmentAddress; - @XmlElement(name = "correspondence_address") - protected DutchBusinessAddressV3 correspondenceAddress; - @XmlElement(name = "silent_partners") - protected Integer silentPartners; - protected StringArray remarks; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the rsinNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsinNumber() { - return rsinNumber; - } - - /** - * Sets the value of the rsinNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsinNumber(String value) { - this.rsinNumber = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the registration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistration() { - return registration; - } - - /** - * Sets the value of the registration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistration(String value) { - this.registration = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the foundingDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getFoundingDate() { - return foundingDate; - } - - /** - * Sets the value of the foundingDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setFoundingDate(DutchBusinessDateV3 value) { - this.foundingDate = value; - } - - /** - * Gets the value of the dissolutionDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getDissolutionDate() { - return dissolutionDate; - } - - /** - * Sets the value of the dissolutionDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setDissolutionDate(DutchBusinessDateV3 value) { - this.dissolutionDate = value; - } - - /** - * Gets the value of the functionStartDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getFunctionStartDate() { - return functionStartDate; - } - - /** - * Sets the value of the functionStartDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setFunctionStartDate(DutchBusinessDateV3 value) { - this.functionStartDate = value; - } - - /** - * Gets the value of the duration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDuration() { - return duration; - } - - /** - * Sets the value of the duration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDuration(String value) { - this.duration = value; - } - - /** - * Gets the value of the limitedPartnershipCapital property. - * - * @return - * possible object is - * {@link DutchBusinessMoneyV3 } - * - */ - public DutchBusinessMoneyV3 getLimitedPartnershipCapital() { - return limitedPartnershipCapital; - } - - /** - * Sets the value of the limitedPartnershipCapital property. - * - * @param value - * allowed object is - * {@link DutchBusinessMoneyV3 } - * - */ - public void setLimitedPartnershipCapital(DutchBusinessMoneyV3 value) { - this.limitedPartnershipCapital = value; - } - - /** - * Gets the value of the establishmentAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV3 } - * - */ - public DutchBusinessAddressV3 getEstablishmentAddress() { - return establishmentAddress; - } - - /** - * Sets the value of the establishmentAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV3 } - * - */ - public void setEstablishmentAddress(DutchBusinessAddressV3 value) { - this.establishmentAddress = value; - } - - /** - * Gets the value of the correspondenceAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV3 } - * - */ - public DutchBusinessAddressV3 getCorrespondenceAddress() { - return correspondenceAddress; - } - - /** - * Sets the value of the correspondenceAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV3 } - * - */ - public void setCorrespondenceAddress(DutchBusinessAddressV3 value) { - this.correspondenceAddress = value; - } - - /** - * Gets the value of the silentPartners property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getSilentPartners() { - return silentPartners; - } - - /** - * Sets the value of the silentPartners property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setSilentPartners(Integer value) { - this.silentPartners = value; - } - - /** - * Gets the value of the remarks property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getRemarks() { - return remarks; - } - - /** - * Sets the value of the remarks property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setRemarks(StringArray value) { - this.remarks = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPeriod.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPeriod.java deleted file mode 100644 index bddcc51..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPeriod.java +++ /dev/null @@ -1,100 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessPeriod complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPeriod">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="start_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="end_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPeriod", propOrder = { - -}) -public class DutchBusinessPeriod { - - @XmlElement(name = "start_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar startDate; - @XmlElement(name = "end_date", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar endDate; - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStartDate(XMLGregorianCalendar value) { - this.startDate = value; - } - - /** - * Gets the value of the endDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEndDate() { - return endDate; - } - - /** - * Sets the value of the endDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEndDate(XMLGregorianCalendar value) { - this.endDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonV2.java deleted file mode 100644 index 7ba20c6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonV2.java +++ /dev/null @@ -1,309 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessPersonV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPersonV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="full_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_deceased" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="date_of_birth" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="place_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPersonV2", propOrder = { - -}) -public class DutchBusinessPersonV2 { - - @XmlElement(name = "full_name") - protected String fullName; - @XmlElement(name = "first_name") - protected String firstName; - protected String title; - protected String initials; - @XmlElement(name = "last_name") - protected String lastName; - protected String gender; - @XmlElement(name = "date_deceased") - protected DutchBusinessDateV2 dateDeceased; - @XmlElement(name = "date_of_birth") - protected DutchBusinessDateV2 dateOfBirth; - @XmlElement(name = "place_of_birth") - protected String placeOfBirth; - @XmlElement(name = "country_of_birth") - protected String countryOfBirth; - - /** - * Gets the value of the fullName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFullName() { - return fullName; - } - - /** - * Sets the value of the fullName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFullName(String value) { - this.fullName = value; - } - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the title property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTitle() { - return title; - } - - /** - * Sets the value of the title property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTitle(String value) { - this.title = value; - } - - /** - * Gets the value of the initials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInitials() { - return initials; - } - - /** - * Sets the value of the initials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInitials(String value) { - this.initials = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the gender property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGender() { - return gender; - } - - /** - * Sets the value of the gender property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGender(String value) { - this.gender = value; - } - - /** - * Gets the value of the dateDeceased property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getDateDeceased() { - return dateDeceased; - } - - /** - * Sets the value of the dateDeceased property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setDateDeceased(DutchBusinessDateV2 value) { - this.dateDeceased = value; - } - - /** - * Gets the value of the dateOfBirth property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getDateOfBirth() { - return dateOfBirth; - } - - /** - * Sets the value of the dateOfBirth property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setDateOfBirth(DutchBusinessDateV2 value) { - this.dateOfBirth = value; - } - - /** - * Gets the value of the placeOfBirth property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaceOfBirth() { - return placeOfBirth; - } - - /** - * Sets the value of the placeOfBirth property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaceOfBirth(String value) { - this.placeOfBirth = value; - } - - /** - * Gets the value of the countryOfBirth property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryOfBirth() { - return countryOfBirth; - } - - /** - * Sets the value of the countryOfBirth property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryOfBirth(String value) { - this.countryOfBirth = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonV3.java deleted file mode 100644 index 3f41c57..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonV3.java +++ /dev/null @@ -1,309 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessPersonV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPersonV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="full_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_deceased" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="date_of_birth" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="place_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPersonV3", propOrder = { - -}) -public class DutchBusinessPersonV3 { - - @XmlElement(name = "full_name") - protected String fullName; - @XmlElement(name = "first_name") - protected String firstName; - protected String title; - protected String initials; - @XmlElement(name = "last_name") - protected String lastName; - protected String gender; - @XmlElement(name = "date_deceased") - protected DutchBusinessDateV3 dateDeceased; - @XmlElement(name = "date_of_birth") - protected DutchBusinessDateV3 dateOfBirth; - @XmlElement(name = "place_of_birth") - protected String placeOfBirth; - @XmlElement(name = "country_of_birth") - protected String countryOfBirth; - - /** - * Gets the value of the fullName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFullName() { - return fullName; - } - - /** - * Sets the value of the fullName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFullName(String value) { - this.fullName = value; - } - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the title property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTitle() { - return title; - } - - /** - * Sets the value of the title property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTitle(String value) { - this.title = value; - } - - /** - * Gets the value of the initials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInitials() { - return initials; - } - - /** - * Sets the value of the initials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInitials(String value) { - this.initials = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the gender property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGender() { - return gender; - } - - /** - * Sets the value of the gender property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGender(String value) { - this.gender = value; - } - - /** - * Gets the value of the dateDeceased property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getDateDeceased() { - return dateDeceased; - } - - /** - * Sets the value of the dateDeceased property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setDateDeceased(DutchBusinessDateV3 value) { - this.dateDeceased = value; - } - - /** - * Gets the value of the dateOfBirth property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getDateOfBirth() { - return dateOfBirth; - } - - /** - * Sets the value of the dateOfBirth property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setDateOfBirth(DutchBusinessDateV3 value) { - this.dateOfBirth = value; - } - - /** - * Gets the value of the placeOfBirth property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaceOfBirth() { - return placeOfBirth; - } - - /** - * Sets the value of the placeOfBirth property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaceOfBirth(String value) { - this.placeOfBirth = value; - } - - /** - * Gets the value of the countryOfBirth property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryOfBirth() { - return countryOfBirth; - } - - /** - * Sets the value of the countryOfBirth property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryOfBirth(String value) { - this.countryOfBirth = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonnelInfoV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonnelInfoV2.java deleted file mode 100644 index 7511ec7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonnelInfoV2.java +++ /dev/null @@ -1,119 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessPersonnelInfoV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPersonnelInfoV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="fulltime" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="parttime" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPersonnelInfoV2", propOrder = { - -}) -public class DutchBusinessPersonnelInfoV2 { - - protected Integer fulltime; - protected Integer parttime; - protected Integer total; - - /** - * Gets the value of the fulltime property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getFulltime() { - return fulltime; - } - - /** - * Sets the value of the fulltime property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setFulltime(Integer value) { - this.fulltime = value; - } - - /** - * Gets the value of the parttime property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getParttime() { - return parttime; - } - - /** - * Sets the value of the parttime property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setParttime(Integer value) { - this.parttime = value; - } - - /** - * Gets the value of the total property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotal() { - return total; - } - - /** - * Sets the value of the total property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotal(Integer value) { - this.total = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonnelInfoV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonnelInfoV3.java deleted file mode 100644 index 8aa3c4b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPersonnelInfoV3.java +++ /dev/null @@ -1,119 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessPersonnelInfoV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPersonnelInfoV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="fulltime" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="parttime" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="total" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPersonnelInfoV3", propOrder = { - -}) -public class DutchBusinessPersonnelInfoV3 { - - protected Integer fulltime; - protected Integer parttime; - protected Integer total; - - /** - * Gets the value of the fulltime property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getFulltime() { - return fulltime; - } - - /** - * Sets the value of the fulltime property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setFulltime(Integer value) { - this.fulltime = value; - } - - /** - * Gets the value of the parttime property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getParttime() { - return parttime; - } - - /** - * Sets the value of the parttime property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setParttime(Integer value) { - this.parttime = value; - } - - /** - * Gets the value of the total property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTotal() { - return total; - } - - /** - * Sets the value of the total property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTotal(Integer value) { - this.total = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPosition.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPosition.java deleted file mode 100644 index 12de352..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPosition.java +++ /dev/null @@ -1,1221 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessPosition complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPosition">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="function_registration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="function_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="function_authorization" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_authorization_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_authorization_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="function_authorization_signing_power" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_authorization_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="authorization_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="authorization_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="authorization_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="inauguration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="inauguration_function" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="inauguration_duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="inauguration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="inauguration_body" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="under_receivership" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="rights_against_third_parties" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="release_of_covenant" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_deceased" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="date_of_birth" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="place_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="date_joined" type="{http://www.webservices.nl/soap/}DutchBusinessDate" minOccurs="0"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPosition", propOrder = { - -}) -public class DutchBusinessPosition { - - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - @XmlElement(name = "dossier_number") - protected String dossierNumber; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - protected String name; - @XmlElement(name = "first_name") - protected String firstName; - protected String title; - protected String initials; - @XmlElement(name = "last_name") - protected String lastName; - @XmlElement(name = "function_type") - protected String functionType; - @XmlElement(name = "function_description") - protected String functionDescription; - @XmlElement(name = "function_title") - protected String functionTitle; - @XmlElement(name = "function_start_date") - protected DutchBusinessDate functionStartDate; - @XmlElement(name = "function_registration_date") - protected DutchBusinessDate functionRegistrationDate; - @XmlElement(name = "function_end_date") - protected DutchBusinessDate functionEndDate; - @XmlElement(name = "function_authorization") - protected String functionAuthorization; - @XmlElement(name = "function_authorization_description") - protected String functionAuthorizationDescription; - @XmlElement(name = "function_authorization_start_date") - protected DutchBusinessDate functionAuthorizationStartDate; - @XmlElement(name = "function_authorization_signing_power") - protected String functionAuthorizationSigningPower; - @XmlElement(name = "function_authorization_end_date") - protected DutchBusinessDate functionAuthorizationEndDate; - @XmlElement(name = "authorization_description") - protected String authorizationDescription; - @XmlElement(name = "authorization_start_date") - protected DutchBusinessDate authorizationStartDate; - @XmlElement(name = "authorization_end_date") - protected DutchBusinessDate authorizationEndDate; - protected String inauguration; - @XmlElement(name = "inauguration_function") - protected String inaugurationFunction; - @XmlElement(name = "inauguration_duration") - protected String inaugurationDuration; - @XmlElement(name = "inauguration_date") - protected DutchBusinessDate inaugurationDate; - @XmlElement(name = "inauguration_body") - protected String inaugurationBody; - @XmlElement(name = "under_receivership") - protected String underReceivership; - @XmlElement(name = "rights_against_third_parties") - protected String rightsAgainstThirdParties; - @XmlElement(name = "release_of_covenant") - protected String releaseOfCovenant; - @XmlElement(name = "date_deceased") - protected DutchBusinessDate dateDeceased; - @XmlElement(name = "date_of_birth") - protected DutchBusinessDate dateOfBirth; - @XmlElement(name = "place_of_birth") - protected String placeOfBirth; - @XmlElement(name = "country_of_birth") - protected String countryOfBirth; - protected String postcode; - protected String city; - protected String street; - @XmlElement(name = "house_number") - protected Integer houseNumber; - @XmlElement(name = "house_number_addition") - protected String houseNumberAddition; - protected String country; - @XmlElement(name = "telephone_numbers") - protected StringArray telephoneNumbers; - @XmlElement(name = "date_since") - protected DutchBusinessDate dateSince; - @XmlElement(name = "date_joined") - protected DutchBusinessDate dateJoined; - protected String status; - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the title property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTitle() { - return title; - } - - /** - * Sets the value of the title property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTitle(String value) { - this.title = value; - } - - /** - * Gets the value of the initials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInitials() { - return initials; - } - - /** - * Sets the value of the initials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInitials(String value) { - this.initials = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the functionType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionType() { - return functionType; - } - - /** - * Sets the value of the functionType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionType(String value) { - this.functionType = value; - } - - /** - * Gets the value of the functionDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionDescription() { - return functionDescription; - } - - /** - * Sets the value of the functionDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionDescription(String value) { - this.functionDescription = value; - } - - /** - * Gets the value of the functionTitle property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionTitle() { - return functionTitle; - } - - /** - * Sets the value of the functionTitle property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionTitle(String value) { - this.functionTitle = value; - } - - /** - * Gets the value of the functionStartDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getFunctionStartDate() { - return functionStartDate; - } - - /** - * Sets the value of the functionStartDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setFunctionStartDate(DutchBusinessDate value) { - this.functionStartDate = value; - } - - /** - * Gets the value of the functionRegistrationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getFunctionRegistrationDate() { - return functionRegistrationDate; - } - - /** - * Sets the value of the functionRegistrationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setFunctionRegistrationDate(DutchBusinessDate value) { - this.functionRegistrationDate = value; - } - - /** - * Gets the value of the functionEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getFunctionEndDate() { - return functionEndDate; - } - - /** - * Sets the value of the functionEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setFunctionEndDate(DutchBusinessDate value) { - this.functionEndDate = value; - } - - /** - * Gets the value of the functionAuthorization property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionAuthorization() { - return functionAuthorization; - } - - /** - * Sets the value of the functionAuthorization property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionAuthorization(String value) { - this.functionAuthorization = value; - } - - /** - * Gets the value of the functionAuthorizationDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionAuthorizationDescription() { - return functionAuthorizationDescription; - } - - /** - * Sets the value of the functionAuthorizationDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionAuthorizationDescription(String value) { - this.functionAuthorizationDescription = value; - } - - /** - * Gets the value of the functionAuthorizationStartDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getFunctionAuthorizationStartDate() { - return functionAuthorizationStartDate; - } - - /** - * Sets the value of the functionAuthorizationStartDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setFunctionAuthorizationStartDate(DutchBusinessDate value) { - this.functionAuthorizationStartDate = value; - } - - /** - * Gets the value of the functionAuthorizationSigningPower property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionAuthorizationSigningPower() { - return functionAuthorizationSigningPower; - } - - /** - * Sets the value of the functionAuthorizationSigningPower property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionAuthorizationSigningPower(String value) { - this.functionAuthorizationSigningPower = value; - } - - /** - * Gets the value of the functionAuthorizationEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getFunctionAuthorizationEndDate() { - return functionAuthorizationEndDate; - } - - /** - * Sets the value of the functionAuthorizationEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setFunctionAuthorizationEndDate(DutchBusinessDate value) { - this.functionAuthorizationEndDate = value; - } - - /** - * Gets the value of the authorizationDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAuthorizationDescription() { - return authorizationDescription; - } - - /** - * Sets the value of the authorizationDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAuthorizationDescription(String value) { - this.authorizationDescription = value; - } - - /** - * Gets the value of the authorizationStartDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getAuthorizationStartDate() { - return authorizationStartDate; - } - - /** - * Sets the value of the authorizationStartDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setAuthorizationStartDate(DutchBusinessDate value) { - this.authorizationStartDate = value; - } - - /** - * Gets the value of the authorizationEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getAuthorizationEndDate() { - return authorizationEndDate; - } - - /** - * Sets the value of the authorizationEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setAuthorizationEndDate(DutchBusinessDate value) { - this.authorizationEndDate = value; - } - - /** - * Gets the value of the inauguration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInauguration() { - return inauguration; - } - - /** - * Sets the value of the inauguration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInauguration(String value) { - this.inauguration = value; - } - - /** - * Gets the value of the inaugurationFunction property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInaugurationFunction() { - return inaugurationFunction; - } - - /** - * Sets the value of the inaugurationFunction property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInaugurationFunction(String value) { - this.inaugurationFunction = value; - } - - /** - * Gets the value of the inaugurationDuration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInaugurationDuration() { - return inaugurationDuration; - } - - /** - * Sets the value of the inaugurationDuration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInaugurationDuration(String value) { - this.inaugurationDuration = value; - } - - /** - * Gets the value of the inaugurationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getInaugurationDate() { - return inaugurationDate; - } - - /** - * Sets the value of the inaugurationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setInaugurationDate(DutchBusinessDate value) { - this.inaugurationDate = value; - } - - /** - * Gets the value of the inaugurationBody property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInaugurationBody() { - return inaugurationBody; - } - - /** - * Sets the value of the inaugurationBody property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInaugurationBody(String value) { - this.inaugurationBody = value; - } - - /** - * Gets the value of the underReceivership property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUnderReceivership() { - return underReceivership; - } - - /** - * Sets the value of the underReceivership property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUnderReceivership(String value) { - this.underReceivership = value; - } - - /** - * Gets the value of the rightsAgainstThirdParties property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRightsAgainstThirdParties() { - return rightsAgainstThirdParties; - } - - /** - * Sets the value of the rightsAgainstThirdParties property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRightsAgainstThirdParties(String value) { - this.rightsAgainstThirdParties = value; - } - - /** - * Gets the value of the releaseOfCovenant property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReleaseOfCovenant() { - return releaseOfCovenant; - } - - /** - * Sets the value of the releaseOfCovenant property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReleaseOfCovenant(String value) { - this.releaseOfCovenant = value; - } - - /** - * Gets the value of the dateDeceased property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getDateDeceased() { - return dateDeceased; - } - - /** - * Sets the value of the dateDeceased property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setDateDeceased(DutchBusinessDate value) { - this.dateDeceased = value; - } - - /** - * Gets the value of the dateOfBirth property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getDateOfBirth() { - return dateOfBirth; - } - - /** - * Sets the value of the dateOfBirth property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setDateOfBirth(DutchBusinessDate value) { - this.dateOfBirth = value; - } - - /** - * Gets the value of the placeOfBirth property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaceOfBirth() { - return placeOfBirth; - } - - /** - * Sets the value of the placeOfBirth property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaceOfBirth(String value) { - this.placeOfBirth = value; - } - - /** - * Gets the value of the countryOfBirth property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryOfBirth() { - return countryOfBirth; - } - - /** - * Sets the value of the countryOfBirth property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryOfBirth(String value) { - this.countryOfBirth = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNumber property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHouseNumber(Integer value) { - this.houseNumber = value; - } - - /** - * Gets the value of the houseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNumberAddition() { - return houseNumberAddition; - } - - /** - * Sets the value of the houseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNumberAddition(String value) { - this.houseNumberAddition = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the telephoneNumbers property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTelephoneNumbers() { - return telephoneNumbers; - } - - /** - * Sets the value of the telephoneNumbers property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTelephoneNumbers(StringArray value) { - this.telephoneNumbers = value; - } - - /** - * Gets the value of the dateSince property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getDateSince() { - return dateSince; - } - - /** - * Sets the value of the dateSince property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setDateSince(DutchBusinessDate value) { - this.dateSince = value; - } - - /** - * Gets the value of the dateJoined property. - * - * @return - * possible object is - * {@link DutchBusinessDate } - * - */ - public DutchBusinessDate getDateJoined() { - return dateJoined; - } - - /** - * Sets the value of the dateJoined property. - * - * @param value - * allowed object is - * {@link DutchBusinessDate } - * - */ - public void setDateJoined(DutchBusinessDate value) { - this.dateJoined = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionArray.java deleted file mode 100644 index 8fc01da..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessPositionArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPositionArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessPosition" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPositionArray", propOrder = { - "item" -}) -public class DutchBusinessPositionArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessPosition } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionAuthorization.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionAuthorization.java deleted file mode 100644 index bab3878..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionAuthorization.java +++ /dev/null @@ -1,154 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessPositionAuthorization complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPositionAuthorization">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="start_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="end_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="end_date_source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPositionAuthorization", propOrder = { - -}) -public class DutchBusinessPositionAuthorization { - - @XmlElement(name = "start_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar startDate; - @XmlElement(name = "end_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar endDate; - @XmlElement(name = "end_date_source") - protected String endDateSource; - @XmlElement(required = true) - protected String description; - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStartDate(XMLGregorianCalendar value) { - this.startDate = value; - } - - /** - * Gets the value of the endDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEndDate() { - return endDate; - } - - /** - * Sets the value of the endDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEndDate(XMLGregorianCalendar value) { - this.endDate = value; - } - - /** - * Gets the value of the endDateSource property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEndDateSource() { - return endDateSource; - } - - /** - * Sets the value of the endDateSource property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEndDateSource(String value) { - this.endDateSource = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionAuthorizationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionAuthorizationArray.java deleted file mode 100644 index 9ba30e2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionAuthorizationArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessPositionAuthorizationArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPositionAuthorizationArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessPositionAuthorization" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPositionAuthorizationArray", propOrder = { - "item" -}) -public class DutchBusinessPositionAuthorizationArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessPositionAuthorization } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionCompany.java deleted file mode 100644 index fe7b601..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionCompany.java +++ /dev/null @@ -1,204 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessPositionCompany complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPositionCompany">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="kvk" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trade_name_full" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="primary_sbi_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="financial_status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPositionCompany", propOrder = { - -}) -public class DutchBusinessPositionCompany { - - @XmlElement(required = true) - protected String kvk; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(name = "legal_name") - protected String legalName; - @XmlElement(name = "trade_name_full") - protected String tradeNameFull; - @XmlElement(name = "primary_sbi_code") - protected Integer primarySbiCode; - @XmlElement(name = "financial_status") - protected String financialStatus; - - /** - * Gets the value of the kvk property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKvk() { - return kvk; - } - - /** - * Sets the value of the kvk property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKvk(String value) { - this.kvk = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the legalName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalName() { - return legalName; - } - - /** - * Sets the value of the legalName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalName(String value) { - this.legalName = value; - } - - /** - * Gets the value of the tradeNameFull property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeNameFull() { - return tradeNameFull; - } - - /** - * Sets the value of the tradeNameFull property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeNameFull(String value) { - this.tradeNameFull = value; - } - - /** - * Gets the value of the primarySbiCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPrimarySbiCode() { - return primarySbiCode; - } - - /** - * Sets the value of the primarySbiCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPrimarySbiCode(Integer value) { - this.primarySbiCode = value; - } - - /** - * Gets the value of the financialStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinancialStatus() { - return financialStatus; - } - - /** - * Sets the value of the financialStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinancialStatus(String value) { - this.financialStatus = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV2.java deleted file mode 100644 index 8db695c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV2.java +++ /dev/null @@ -1,929 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessPositionV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPositionV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="functionary" type="{http://www.webservices.nl/soap/}DutchBusinessPersonV2" minOccurs="0"/>
- *         <element name="organisation" type="{http://www.webservices.nl/soap/}DutchBusinessOrganizationReferenceV2" minOccurs="0"/>
- *         <element name="residential_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
- *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
- *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV2" minOccurs="0"/>
- *         <element name="longest_serving" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="function_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="function_registration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="function_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="function_authorization" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_authorization_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_authorization_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="function_authorization_signing_power" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_authorization_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="authorization_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="authorization_establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="authorization_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="authorization_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="authorization_constraints" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="inauguration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="inauguration_function" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="inauguration_duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="inauguration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="inauguration_body" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="under_receivership" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="rights_against_third_parties" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="release_of_covenant" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="date_joined" type="{http://www.webservices.nl/soap/}DutchBusinessDateV2" minOccurs="0"/>
- *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPositionV2", propOrder = { - -}) -public class DutchBusinessPositionV2 { - - protected DutchBusinessPersonV2 functionary; - protected DutchBusinessOrganizationReferenceV2 organisation; - @XmlElement(name = "residential_address") - protected DutchBusinessAddressV2 residentialAddress; - @XmlElement(name = "correspondence_address") - protected DutchBusinessAddressV2 correspondenceAddress; - @XmlElement(name = "establishment_address") - protected DutchBusinessAddressV2 establishmentAddress; - @XmlElement(name = "longest_serving") - protected Boolean longestServing; - @XmlElement(name = "function_type") - protected String functionType; - @XmlElement(name = "function_description") - protected String functionDescription; - @XmlElement(name = "function_title") - protected String functionTitle; - @XmlElement(name = "function_start_date") - protected DutchBusinessDateV2 functionStartDate; - @XmlElement(name = "function_registration_date") - protected DutchBusinessDateV2 functionRegistrationDate; - @XmlElement(name = "function_end_date") - protected DutchBusinessDateV2 functionEndDate; - @XmlElement(name = "function_authorization") - protected String functionAuthorization; - @XmlElement(name = "function_authorization_description") - protected String functionAuthorizationDescription; - @XmlElement(name = "function_authorization_start_date") - protected DutchBusinessDateV2 functionAuthorizationStartDate; - @XmlElement(name = "function_authorization_signing_power") - protected String functionAuthorizationSigningPower; - @XmlElement(name = "function_authorization_end_date") - protected DutchBusinessDateV2 functionAuthorizationEndDate; - @XmlElement(name = "authorization_description") - protected String authorizationDescription; - @XmlElement(name = "authorization_establishment_number") - protected String authorizationEstablishmentNumber; - @XmlElement(name = "authorization_start_date") - protected DutchBusinessDateV2 authorizationStartDate; - @XmlElement(name = "authorization_end_date") - protected DutchBusinessDateV2 authorizationEndDate; - @XmlElement(name = "authorization_constraints") - protected StringArray authorizationConstraints; - protected String inauguration; - @XmlElement(name = "inauguration_function") - protected String inaugurationFunction; - @XmlElement(name = "inauguration_duration") - protected String inaugurationDuration; - @XmlElement(name = "inauguration_date") - protected DutchBusinessDateV2 inaugurationDate; - @XmlElement(name = "inauguration_body") - protected String inaugurationBody; - @XmlElement(name = "under_receivership") - protected String underReceivership; - @XmlElement(name = "rights_against_third_parties") - protected String rightsAgainstThirdParties; - @XmlElement(name = "release_of_covenant") - protected String releaseOfCovenant; - @XmlElement(name = "date_since") - protected DutchBusinessDateV2 dateSince; - @XmlElement(name = "date_joined") - protected DutchBusinessDateV2 dateJoined; - protected StringArray remarks; - - /** - * Gets the value of the functionary property. - * - * @return - * possible object is - * {@link DutchBusinessPersonV2 } - * - */ - public DutchBusinessPersonV2 getFunctionary() { - return functionary; - } - - /** - * Sets the value of the functionary property. - * - * @param value - * allowed object is - * {@link DutchBusinessPersonV2 } - * - */ - public void setFunctionary(DutchBusinessPersonV2 value) { - this.functionary = value; - } - - /** - * Gets the value of the organisation property. - * - * @return - * possible object is - * {@link DutchBusinessOrganizationReferenceV2 } - * - */ - public DutchBusinessOrganizationReferenceV2 getOrganisation() { - return organisation; - } - - /** - * Sets the value of the organisation property. - * - * @param value - * allowed object is - * {@link DutchBusinessOrganizationReferenceV2 } - * - */ - public void setOrganisation(DutchBusinessOrganizationReferenceV2 value) { - this.organisation = value; - } - - /** - * Gets the value of the residentialAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV2 } - * - */ - public DutchBusinessAddressV2 getResidentialAddress() { - return residentialAddress; - } - - /** - * Sets the value of the residentialAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV2 } - * - */ - public void setResidentialAddress(DutchBusinessAddressV2 value) { - this.residentialAddress = value; - } - - /** - * Gets the value of the correspondenceAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV2 } - * - */ - public DutchBusinessAddressV2 getCorrespondenceAddress() { - return correspondenceAddress; - } - - /** - * Sets the value of the correspondenceAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV2 } - * - */ - public void setCorrespondenceAddress(DutchBusinessAddressV2 value) { - this.correspondenceAddress = value; - } - - /** - * Gets the value of the establishmentAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV2 } - * - */ - public DutchBusinessAddressV2 getEstablishmentAddress() { - return establishmentAddress; - } - - /** - * Sets the value of the establishmentAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV2 } - * - */ - public void setEstablishmentAddress(DutchBusinessAddressV2 value) { - this.establishmentAddress = value; - } - - /** - * Gets the value of the longestServing property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isLongestServing() { - return longestServing; - } - - /** - * Sets the value of the longestServing property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setLongestServing(Boolean value) { - this.longestServing = value; - } - - /** - * Gets the value of the functionType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionType() { - return functionType; - } - - /** - * Sets the value of the functionType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionType(String value) { - this.functionType = value; - } - - /** - * Gets the value of the functionDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionDescription() { - return functionDescription; - } - - /** - * Sets the value of the functionDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionDescription(String value) { - this.functionDescription = value; - } - - /** - * Gets the value of the functionTitle property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionTitle() { - return functionTitle; - } - - /** - * Sets the value of the functionTitle property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionTitle(String value) { - this.functionTitle = value; - } - - /** - * Gets the value of the functionStartDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getFunctionStartDate() { - return functionStartDate; - } - - /** - * Sets the value of the functionStartDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setFunctionStartDate(DutchBusinessDateV2 value) { - this.functionStartDate = value; - } - - /** - * Gets the value of the functionRegistrationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getFunctionRegistrationDate() { - return functionRegistrationDate; - } - - /** - * Sets the value of the functionRegistrationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setFunctionRegistrationDate(DutchBusinessDateV2 value) { - this.functionRegistrationDate = value; - } - - /** - * Gets the value of the functionEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getFunctionEndDate() { - return functionEndDate; - } - - /** - * Sets the value of the functionEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setFunctionEndDate(DutchBusinessDateV2 value) { - this.functionEndDate = value; - } - - /** - * Gets the value of the functionAuthorization property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionAuthorization() { - return functionAuthorization; - } - - /** - * Sets the value of the functionAuthorization property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionAuthorization(String value) { - this.functionAuthorization = value; - } - - /** - * Gets the value of the functionAuthorizationDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionAuthorizationDescription() { - return functionAuthorizationDescription; - } - - /** - * Sets the value of the functionAuthorizationDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionAuthorizationDescription(String value) { - this.functionAuthorizationDescription = value; - } - - /** - * Gets the value of the functionAuthorizationStartDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getFunctionAuthorizationStartDate() { - return functionAuthorizationStartDate; - } - - /** - * Sets the value of the functionAuthorizationStartDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setFunctionAuthorizationStartDate(DutchBusinessDateV2 value) { - this.functionAuthorizationStartDate = value; - } - - /** - * Gets the value of the functionAuthorizationSigningPower property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionAuthorizationSigningPower() { - return functionAuthorizationSigningPower; - } - - /** - * Sets the value of the functionAuthorizationSigningPower property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionAuthorizationSigningPower(String value) { - this.functionAuthorizationSigningPower = value; - } - - /** - * Gets the value of the functionAuthorizationEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getFunctionAuthorizationEndDate() { - return functionAuthorizationEndDate; - } - - /** - * Sets the value of the functionAuthorizationEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setFunctionAuthorizationEndDate(DutchBusinessDateV2 value) { - this.functionAuthorizationEndDate = value; - } - - /** - * Gets the value of the authorizationDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAuthorizationDescription() { - return authorizationDescription; - } - - /** - * Sets the value of the authorizationDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAuthorizationDescription(String value) { - this.authorizationDescription = value; - } - - /** - * Gets the value of the authorizationEstablishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAuthorizationEstablishmentNumber() { - return authorizationEstablishmentNumber; - } - - /** - * Sets the value of the authorizationEstablishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAuthorizationEstablishmentNumber(String value) { - this.authorizationEstablishmentNumber = value; - } - - /** - * Gets the value of the authorizationStartDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getAuthorizationStartDate() { - return authorizationStartDate; - } - - /** - * Sets the value of the authorizationStartDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setAuthorizationStartDate(DutchBusinessDateV2 value) { - this.authorizationStartDate = value; - } - - /** - * Gets the value of the authorizationEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getAuthorizationEndDate() { - return authorizationEndDate; - } - - /** - * Sets the value of the authorizationEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setAuthorizationEndDate(DutchBusinessDateV2 value) { - this.authorizationEndDate = value; - } - - /** - * Gets the value of the authorizationConstraints property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getAuthorizationConstraints() { - return authorizationConstraints; - } - - /** - * Sets the value of the authorizationConstraints property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setAuthorizationConstraints(StringArray value) { - this.authorizationConstraints = value; - } - - /** - * Gets the value of the inauguration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInauguration() { - return inauguration; - } - - /** - * Sets the value of the inauguration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInauguration(String value) { - this.inauguration = value; - } - - /** - * Gets the value of the inaugurationFunction property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInaugurationFunction() { - return inaugurationFunction; - } - - /** - * Sets the value of the inaugurationFunction property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInaugurationFunction(String value) { - this.inaugurationFunction = value; - } - - /** - * Gets the value of the inaugurationDuration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInaugurationDuration() { - return inaugurationDuration; - } - - /** - * Sets the value of the inaugurationDuration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInaugurationDuration(String value) { - this.inaugurationDuration = value; - } - - /** - * Gets the value of the inaugurationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getInaugurationDate() { - return inaugurationDate; - } - - /** - * Sets the value of the inaugurationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setInaugurationDate(DutchBusinessDateV2 value) { - this.inaugurationDate = value; - } - - /** - * Gets the value of the inaugurationBody property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInaugurationBody() { - return inaugurationBody; - } - - /** - * Sets the value of the inaugurationBody property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInaugurationBody(String value) { - this.inaugurationBody = value; - } - - /** - * Gets the value of the underReceivership property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUnderReceivership() { - return underReceivership; - } - - /** - * Sets the value of the underReceivership property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUnderReceivership(String value) { - this.underReceivership = value; - } - - /** - * Gets the value of the rightsAgainstThirdParties property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRightsAgainstThirdParties() { - return rightsAgainstThirdParties; - } - - /** - * Sets the value of the rightsAgainstThirdParties property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRightsAgainstThirdParties(String value) { - this.rightsAgainstThirdParties = value; - } - - /** - * Gets the value of the releaseOfCovenant property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReleaseOfCovenant() { - return releaseOfCovenant; - } - - /** - * Sets the value of the releaseOfCovenant property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReleaseOfCovenant(String value) { - this.releaseOfCovenant = value; - } - - /** - * Gets the value of the dateSince property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getDateSince() { - return dateSince; - } - - /** - * Sets the value of the dateSince property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setDateSince(DutchBusinessDateV2 value) { - this.dateSince = value; - } - - /** - * Gets the value of the dateJoined property. - * - * @return - * possible object is - * {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 getDateJoined() { - return dateJoined; - } - - /** - * Sets the value of the dateJoined property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV2 } - * - */ - public void setDateJoined(DutchBusinessDateV2 value) { - this.dateJoined = value; - } - - /** - * Gets the value of the remarks property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getRemarks() { - return remarks; - } - - /** - * Sets the value of the remarks property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setRemarks(StringArray value) { - this.remarks = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV2Array.java deleted file mode 100644 index ff10616..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessPositionV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPositionV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessPositionV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPositionV2Array", propOrder = { - "item" -}) -public class DutchBusinessPositionV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessPositionV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV3.java deleted file mode 100644 index 891ca6c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV3.java +++ /dev/null @@ -1,929 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessPositionV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPositionV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="functionary" type="{http://www.webservices.nl/soap/}DutchBusinessPersonV3" minOccurs="0"/>
- *         <element name="organisation" type="{http://www.webservices.nl/soap/}DutchBusinessOrganizationReferenceV3" minOccurs="0"/>
- *         <element name="residential_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
- *         <element name="correspondence_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
- *         <element name="establishment_address" type="{http://www.webservices.nl/soap/}DutchBusinessAddressV3" minOccurs="0"/>
- *         <element name="longest_serving" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="function_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="function_registration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="function_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="function_authorization" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_authorization_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_authorization_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="function_authorization_signing_power" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_authorization_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="authorization_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="authorization_establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="authorization_start_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="authorization_end_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="authorization_constraints" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="inauguration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="inauguration_function" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="inauguration_duration" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="inauguration_date" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="inauguration_body" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="under_receivership" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="rights_against_third_parties" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="release_of_covenant" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_since" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="date_joined" type="{http://www.webservices.nl/soap/}DutchBusinessDateV3" minOccurs="0"/>
- *         <element name="remarks" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPositionV3", propOrder = { - -}) -public class DutchBusinessPositionV3 { - - protected DutchBusinessPersonV3 functionary; - protected DutchBusinessOrganizationReferenceV3 organisation; - @XmlElement(name = "residential_address") - protected DutchBusinessAddressV3 residentialAddress; - @XmlElement(name = "correspondence_address") - protected DutchBusinessAddressV3 correspondenceAddress; - @XmlElement(name = "establishment_address") - protected DutchBusinessAddressV3 establishmentAddress; - @XmlElement(name = "longest_serving") - protected Boolean longestServing; - @XmlElement(name = "function_type") - protected String functionType; - @XmlElement(name = "function_description") - protected String functionDescription; - @XmlElement(name = "function_title") - protected String functionTitle; - @XmlElement(name = "function_start_date") - protected DutchBusinessDateV3 functionStartDate; - @XmlElement(name = "function_registration_date") - protected DutchBusinessDateV3 functionRegistrationDate; - @XmlElement(name = "function_end_date") - protected DutchBusinessDateV3 functionEndDate; - @XmlElement(name = "function_authorization") - protected String functionAuthorization; - @XmlElement(name = "function_authorization_description") - protected String functionAuthorizationDescription; - @XmlElement(name = "function_authorization_start_date") - protected DutchBusinessDateV3 functionAuthorizationStartDate; - @XmlElement(name = "function_authorization_signing_power") - protected String functionAuthorizationSigningPower; - @XmlElement(name = "function_authorization_end_date") - protected DutchBusinessDateV3 functionAuthorizationEndDate; - @XmlElement(name = "authorization_description") - protected String authorizationDescription; - @XmlElement(name = "authorization_establishment_number") - protected String authorizationEstablishmentNumber; - @XmlElement(name = "authorization_start_date") - protected DutchBusinessDateV3 authorizationStartDate; - @XmlElement(name = "authorization_end_date") - protected DutchBusinessDateV3 authorizationEndDate; - @XmlElement(name = "authorization_constraints") - protected StringArray authorizationConstraints; - protected String inauguration; - @XmlElement(name = "inauguration_function") - protected String inaugurationFunction; - @XmlElement(name = "inauguration_duration") - protected String inaugurationDuration; - @XmlElement(name = "inauguration_date") - protected DutchBusinessDateV3 inaugurationDate; - @XmlElement(name = "inauguration_body") - protected String inaugurationBody; - @XmlElement(name = "under_receivership") - protected String underReceivership; - @XmlElement(name = "rights_against_third_parties") - protected String rightsAgainstThirdParties; - @XmlElement(name = "release_of_covenant") - protected String releaseOfCovenant; - @XmlElement(name = "date_since") - protected DutchBusinessDateV3 dateSince; - @XmlElement(name = "date_joined") - protected DutchBusinessDateV3 dateJoined; - protected StringArray remarks; - - /** - * Gets the value of the functionary property. - * - * @return - * possible object is - * {@link DutchBusinessPersonV3 } - * - */ - public DutchBusinessPersonV3 getFunctionary() { - return functionary; - } - - /** - * Sets the value of the functionary property. - * - * @param value - * allowed object is - * {@link DutchBusinessPersonV3 } - * - */ - public void setFunctionary(DutchBusinessPersonV3 value) { - this.functionary = value; - } - - /** - * Gets the value of the organisation property. - * - * @return - * possible object is - * {@link DutchBusinessOrganizationReferenceV3 } - * - */ - public DutchBusinessOrganizationReferenceV3 getOrganisation() { - return organisation; - } - - /** - * Sets the value of the organisation property. - * - * @param value - * allowed object is - * {@link DutchBusinessOrganizationReferenceV3 } - * - */ - public void setOrganisation(DutchBusinessOrganizationReferenceV3 value) { - this.organisation = value; - } - - /** - * Gets the value of the residentialAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV3 } - * - */ - public DutchBusinessAddressV3 getResidentialAddress() { - return residentialAddress; - } - - /** - * Sets the value of the residentialAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV3 } - * - */ - public void setResidentialAddress(DutchBusinessAddressV3 value) { - this.residentialAddress = value; - } - - /** - * Gets the value of the correspondenceAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV3 } - * - */ - public DutchBusinessAddressV3 getCorrespondenceAddress() { - return correspondenceAddress; - } - - /** - * Sets the value of the correspondenceAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV3 } - * - */ - public void setCorrespondenceAddress(DutchBusinessAddressV3 value) { - this.correspondenceAddress = value; - } - - /** - * Gets the value of the establishmentAddress property. - * - * @return - * possible object is - * {@link DutchBusinessAddressV3 } - * - */ - public DutchBusinessAddressV3 getEstablishmentAddress() { - return establishmentAddress; - } - - /** - * Sets the value of the establishmentAddress property. - * - * @param value - * allowed object is - * {@link DutchBusinessAddressV3 } - * - */ - public void setEstablishmentAddress(DutchBusinessAddressV3 value) { - this.establishmentAddress = value; - } - - /** - * Gets the value of the longestServing property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isLongestServing() { - return longestServing; - } - - /** - * Sets the value of the longestServing property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setLongestServing(Boolean value) { - this.longestServing = value; - } - - /** - * Gets the value of the functionType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionType() { - return functionType; - } - - /** - * Sets the value of the functionType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionType(String value) { - this.functionType = value; - } - - /** - * Gets the value of the functionDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionDescription() { - return functionDescription; - } - - /** - * Sets the value of the functionDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionDescription(String value) { - this.functionDescription = value; - } - - /** - * Gets the value of the functionTitle property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionTitle() { - return functionTitle; - } - - /** - * Sets the value of the functionTitle property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionTitle(String value) { - this.functionTitle = value; - } - - /** - * Gets the value of the functionStartDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getFunctionStartDate() { - return functionStartDate; - } - - /** - * Sets the value of the functionStartDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setFunctionStartDate(DutchBusinessDateV3 value) { - this.functionStartDate = value; - } - - /** - * Gets the value of the functionRegistrationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getFunctionRegistrationDate() { - return functionRegistrationDate; - } - - /** - * Sets the value of the functionRegistrationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setFunctionRegistrationDate(DutchBusinessDateV3 value) { - this.functionRegistrationDate = value; - } - - /** - * Gets the value of the functionEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getFunctionEndDate() { - return functionEndDate; - } - - /** - * Sets the value of the functionEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setFunctionEndDate(DutchBusinessDateV3 value) { - this.functionEndDate = value; - } - - /** - * Gets the value of the functionAuthorization property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionAuthorization() { - return functionAuthorization; - } - - /** - * Sets the value of the functionAuthorization property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionAuthorization(String value) { - this.functionAuthorization = value; - } - - /** - * Gets the value of the functionAuthorizationDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionAuthorizationDescription() { - return functionAuthorizationDescription; - } - - /** - * Sets the value of the functionAuthorizationDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionAuthorizationDescription(String value) { - this.functionAuthorizationDescription = value; - } - - /** - * Gets the value of the functionAuthorizationStartDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getFunctionAuthorizationStartDate() { - return functionAuthorizationStartDate; - } - - /** - * Sets the value of the functionAuthorizationStartDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setFunctionAuthorizationStartDate(DutchBusinessDateV3 value) { - this.functionAuthorizationStartDate = value; - } - - /** - * Gets the value of the functionAuthorizationSigningPower property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionAuthorizationSigningPower() { - return functionAuthorizationSigningPower; - } - - /** - * Sets the value of the functionAuthorizationSigningPower property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionAuthorizationSigningPower(String value) { - this.functionAuthorizationSigningPower = value; - } - - /** - * Gets the value of the functionAuthorizationEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getFunctionAuthorizationEndDate() { - return functionAuthorizationEndDate; - } - - /** - * Sets the value of the functionAuthorizationEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setFunctionAuthorizationEndDate(DutchBusinessDateV3 value) { - this.functionAuthorizationEndDate = value; - } - - /** - * Gets the value of the authorizationDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAuthorizationDescription() { - return authorizationDescription; - } - - /** - * Sets the value of the authorizationDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAuthorizationDescription(String value) { - this.authorizationDescription = value; - } - - /** - * Gets the value of the authorizationEstablishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAuthorizationEstablishmentNumber() { - return authorizationEstablishmentNumber; - } - - /** - * Sets the value of the authorizationEstablishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAuthorizationEstablishmentNumber(String value) { - this.authorizationEstablishmentNumber = value; - } - - /** - * Gets the value of the authorizationStartDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getAuthorizationStartDate() { - return authorizationStartDate; - } - - /** - * Sets the value of the authorizationStartDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setAuthorizationStartDate(DutchBusinessDateV3 value) { - this.authorizationStartDate = value; - } - - /** - * Gets the value of the authorizationEndDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getAuthorizationEndDate() { - return authorizationEndDate; - } - - /** - * Sets the value of the authorizationEndDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setAuthorizationEndDate(DutchBusinessDateV3 value) { - this.authorizationEndDate = value; - } - - /** - * Gets the value of the authorizationConstraints property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getAuthorizationConstraints() { - return authorizationConstraints; - } - - /** - * Sets the value of the authorizationConstraints property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setAuthorizationConstraints(StringArray value) { - this.authorizationConstraints = value; - } - - /** - * Gets the value of the inauguration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInauguration() { - return inauguration; - } - - /** - * Sets the value of the inauguration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInauguration(String value) { - this.inauguration = value; - } - - /** - * Gets the value of the inaugurationFunction property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInaugurationFunction() { - return inaugurationFunction; - } - - /** - * Sets the value of the inaugurationFunction property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInaugurationFunction(String value) { - this.inaugurationFunction = value; - } - - /** - * Gets the value of the inaugurationDuration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInaugurationDuration() { - return inaugurationDuration; - } - - /** - * Sets the value of the inaugurationDuration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInaugurationDuration(String value) { - this.inaugurationDuration = value; - } - - /** - * Gets the value of the inaugurationDate property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getInaugurationDate() { - return inaugurationDate; - } - - /** - * Sets the value of the inaugurationDate property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setInaugurationDate(DutchBusinessDateV3 value) { - this.inaugurationDate = value; - } - - /** - * Gets the value of the inaugurationBody property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInaugurationBody() { - return inaugurationBody; - } - - /** - * Sets the value of the inaugurationBody property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInaugurationBody(String value) { - this.inaugurationBody = value; - } - - /** - * Gets the value of the underReceivership property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUnderReceivership() { - return underReceivership; - } - - /** - * Sets the value of the underReceivership property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUnderReceivership(String value) { - this.underReceivership = value; - } - - /** - * Gets the value of the rightsAgainstThirdParties property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRightsAgainstThirdParties() { - return rightsAgainstThirdParties; - } - - /** - * Sets the value of the rightsAgainstThirdParties property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRightsAgainstThirdParties(String value) { - this.rightsAgainstThirdParties = value; - } - - /** - * Gets the value of the releaseOfCovenant property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReleaseOfCovenant() { - return releaseOfCovenant; - } - - /** - * Sets the value of the releaseOfCovenant property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReleaseOfCovenant(String value) { - this.releaseOfCovenant = value; - } - - /** - * Gets the value of the dateSince property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getDateSince() { - return dateSince; - } - - /** - * Sets the value of the dateSince property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setDateSince(DutchBusinessDateV3 value) { - this.dateSince = value; - } - - /** - * Gets the value of the dateJoined property. - * - * @return - * possible object is - * {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 getDateJoined() { - return dateJoined; - } - - /** - * Sets the value of the dateJoined property. - * - * @param value - * allowed object is - * {@link DutchBusinessDateV3 } - * - */ - public void setDateJoined(DutchBusinessDateV3 value) { - this.dateJoined = value; - } - - /** - * Gets the value of the remarks property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getRemarks() { - return remarks; - } - - /** - * Sets the value of the remarks property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setRemarks(StringArray value) { - this.remarks = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV3Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV3Array.java deleted file mode 100644 index 6ba17a0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositionV3Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessPositionV3Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPositionV3Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessPositionV3" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPositionV3Array", propOrder = { - "item" -}) -public class DutchBusinessPositionV3Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessPositionV3 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositions.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositions.java deleted file mode 100644 index 93608b2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessPositions.java +++ /dev/null @@ -1,125 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessPositions complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessPositions">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="reference_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="positions" type="{http://www.webservices.nl/soap/}DutchBusinessPositionV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessPositions", propOrder = { - -}) -public class DutchBusinessPositions { - - @XmlElement(name = "dossier_number") - protected String dossierNumber; - @XmlElement(name = "reference_date") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar referenceDate; - protected DutchBusinessPositionV2Array positions; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the referenceDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getReferenceDate() { - return referenceDate; - } - - /** - * Sets the value of the referenceDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setReferenceDate(XMLGregorianCalendar value) { - this.referenceDate = value; - } - - /** - * Gets the value of the positions property. - * - * @return - * possible object is - * {@link DutchBusinessPositionV2Array } - * - */ - public DutchBusinessPositionV2Array getPositions() { - return positions; - } - - /** - * Sets the value of the positions property. - * - * @param value - * allowed object is - * {@link DutchBusinessPositionV2Array } - * - */ - public void setPositions(DutchBusinessPositionV2Array value) { - this.positions = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReference.java deleted file mode 100644 index 81e4ecc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReference.java +++ /dev/null @@ -1,250 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="indication_economically_active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessReference", propOrder = { - -}) -public class DutchBusinessReference { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(name = "trade_name", required = true) - protected String tradeName; - @XmlElement(name = "establishment_city", required = true) - protected String establishmentCity; - @XmlElement(name = "establishment_street", required = true) - protected String establishmentStreet; - @XmlElement(name = "correspondence_city", required = true) - protected String correspondenceCity; - @XmlElement(name = "correspondence_street", required = true) - protected String correspondenceStreet; - @XmlElement(name = "indication_economically_active") - protected boolean indicationEconomicallyActive; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the tradeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName() { - return tradeName; - } - - /** - * Sets the value of the tradeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName(String value) { - this.tradeName = value; - } - - /** - * Gets the value of the establishmentCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCity() { - return establishmentCity; - } - - /** - * Sets the value of the establishmentCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCity(String value) { - this.establishmentCity = value; - } - - /** - * Gets the value of the establishmentStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentStreet() { - return establishmentStreet; - } - - /** - * Sets the value of the establishmentStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentStreet(String value) { - this.establishmentStreet = value; - } - - /** - * Gets the value of the correspondenceCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCity() { - return correspondenceCity; - } - - /** - * Sets the value of the correspondenceCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCity(String value) { - this.correspondenceCity = value; - } - - /** - * Gets the value of the correspondenceStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceStreet() { - return correspondenceStreet; - } - - /** - * Sets the value of the correspondenceStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceStreet(String value) { - this.correspondenceStreet = value; - } - - /** - * Gets the value of the indicationEconomicallyActive property. - * - */ - public boolean isIndicationEconomicallyActive() { - return indicationEconomicallyActive; - } - - /** - * Sets the value of the indicationEconomicallyActive property. - * - */ - public void setIndicationEconomicallyActive(boolean value) { - this.indicationEconomicallyActive = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceArray.java deleted file mode 100644 index f4dbb24..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessReferenceArray", propOrder = { - "item" -}) -public class DutchBusinessReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferencePagedResult.java deleted file mode 100644 index 939b0d5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferencePagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessReferencePagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessReferencePagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}DutchBusinessReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessReferencePagedResult", propOrder = { - -}) -public class DutchBusinessReferencePagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected DutchBusinessReferenceArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link DutchBusinessReferenceArray } - * - */ - public DutchBusinessReferenceArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link DutchBusinessReferenceArray } - * - */ - public void setResults(DutchBusinessReferenceArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2.java deleted file mode 100644 index 03f1520..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2.java +++ /dev/null @@ -1,277 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessReferenceV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessReferenceV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="match_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="indication_economically_active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessReferenceV2", propOrder = { - -}) -public class DutchBusinessReferenceV2 { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(required = true) - protected String name; - @XmlElement(name = "match_type") - protected String matchType; - @XmlElement(name = "establishment_city", required = true) - protected String establishmentCity; - @XmlElement(name = "establishment_street", required = true) - protected String establishmentStreet; - @XmlElement(name = "correspondence_city", required = true) - protected String correspondenceCity; - @XmlElement(name = "correspondence_street", required = true) - protected String correspondenceStreet; - @XmlElement(name = "indication_economically_active") - protected boolean indicationEconomicallyActive; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the matchType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMatchType() { - return matchType; - } - - /** - * Sets the value of the matchType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMatchType(String value) { - this.matchType = value; - } - - /** - * Gets the value of the establishmentCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCity() { - return establishmentCity; - } - - /** - * Sets the value of the establishmentCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCity(String value) { - this.establishmentCity = value; - } - - /** - * Gets the value of the establishmentStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentStreet() { - return establishmentStreet; - } - - /** - * Sets the value of the establishmentStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentStreet(String value) { - this.establishmentStreet = value; - } - - /** - * Gets the value of the correspondenceCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCity() { - return correspondenceCity; - } - - /** - * Sets the value of the correspondenceCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCity(String value) { - this.correspondenceCity = value; - } - - /** - * Gets the value of the correspondenceStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceStreet() { - return correspondenceStreet; - } - - /** - * Sets the value of the correspondenceStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceStreet(String value) { - this.correspondenceStreet = value; - } - - /** - * Gets the value of the indicationEconomicallyActive property. - * - */ - public boolean isIndicationEconomicallyActive() { - return indicationEconomicallyActive; - } - - /** - * Sets the value of the indicationEconomicallyActive property. - * - */ - public void setIndicationEconomicallyActive(boolean value) { - this.indicationEconomicallyActive = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2Array.java deleted file mode 100644 index 9ea9a28..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessReferenceV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessReferenceV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessReferenceV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessReferenceV2Array", propOrder = { - "item" -}) -public class DutchBusinessReferenceV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessReferenceV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2PagedResult.java deleted file mode 100644 index 2705a5c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessReferenceV2PagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessReferenceV2PagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessReferenceV2PagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}DutchBusinessReferenceV2Array"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessReferenceV2PagedResult", propOrder = { - -}) -public class DutchBusinessReferenceV2PagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected DutchBusinessReferenceV2Array results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link DutchBusinessReferenceV2Array } - * - */ - public DutchBusinessReferenceV2Array getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link DutchBusinessReferenceV2Array } - * - */ - public void setResults(DutchBusinessReferenceV2Array value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICode.java deleted file mode 100644 index 4cc4beb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICode.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessSBICode complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessSBICode">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="sbi_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessSBICode", propOrder = { - -}) -public class DutchBusinessSBICode { - - @XmlElement(name = "sbi_code", required = true) - protected String sbiCode; - @XmlElement(required = true) - protected String description; - - /** - * Gets the value of the sbiCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSbiCode() { - return sbiCode; - } - - /** - * Sets the value of the sbiCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSbiCode(String value) { - this.sbiCode = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICodeArray.java deleted file mode 100644 index 6c480b8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICodeArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessSBICodeArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessSBICodeArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessSBICode" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessSBICodeArray", propOrder = { - "item" -}) -public class DutchBusinessSBICodeArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessSBICode } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICodeInfo.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICodeInfo.java deleted file mode 100644 index 6c5f2af..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICodeInfo.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessSBICodeInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessSBICodeInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="section" type="{http://www.webservices.nl/soap/}DutchBusinessSBISection"/>
- *         <element name="sbi_codes" type="{http://www.webservices.nl/soap/}DutchBusinessSBICodeArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessSBICodeInfo", propOrder = { - -}) -public class DutchBusinessSBICodeInfo { - - @XmlElement(required = true) - protected DutchBusinessSBISection section; - @XmlElement(name = "sbi_codes", required = true) - protected DutchBusinessSBICodeArray sbiCodes; - - /** - * Gets the value of the section property. - * - * @return - * possible object is - * {@link DutchBusinessSBISection } - * - */ - public DutchBusinessSBISection getSection() { - return section; - } - - /** - * Sets the value of the section property. - * - * @param value - * allowed object is - * {@link DutchBusinessSBISection } - * - */ - public void setSection(DutchBusinessSBISection value) { - this.section = value; - } - - /** - * Gets the value of the sbiCodes property. - * - * @return - * possible object is - * {@link DutchBusinessSBICodeArray } - * - */ - public DutchBusinessSBICodeArray getSbiCodes() { - return sbiCodes; - } - - /** - * Sets the value of the sbiCodes property. - * - * @param value - * allowed object is - * {@link DutchBusinessSBICodeArray } - * - */ - public void setSbiCodes(DutchBusinessSBICodeArray value) { - this.sbiCodes = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICollection.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICollection.java deleted file mode 100644 index b1acf32..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICollection.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessSBICollection complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessSBICollection">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="original" type="{http://www.webservices.nl/soap/}DutchBusinessSBICodeArray"/>
- *         <element name="company_info" type="{http://www.webservices.nl/soap/}DutchBusinessSBICodeArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessSBICollection", propOrder = { - -}) -public class DutchBusinessSBICollection { - - @XmlElement(required = true) - protected DutchBusinessSBICodeArray original; - @XmlElement(name = "company_info") - protected DutchBusinessSBICodeArray companyInfo; - - /** - * Gets the value of the original property. - * - * @return - * possible object is - * {@link DutchBusinessSBICodeArray } - * - */ - public DutchBusinessSBICodeArray getOriginal() { - return original; - } - - /** - * Sets the value of the original property. - * - * @param value - * allowed object is - * {@link DutchBusinessSBICodeArray } - * - */ - public void setOriginal(DutchBusinessSBICodeArray value) { - this.original = value; - } - - /** - * Gets the value of the companyInfo property. - * - * @return - * possible object is - * {@link DutchBusinessSBICodeArray } - * - */ - public DutchBusinessSBICodeArray getCompanyInfo() { - return companyInfo; - } - - /** - * Sets the value of the companyInfo property. - * - * @param value - * allowed object is - * {@link DutchBusinessSBICodeArray } - * - */ - public void setCompanyInfo(DutchBusinessSBICodeArray value) { - this.companyInfo = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICollectionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICollectionArray.java deleted file mode 100644 index e36e84f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBICollectionArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessSBICollectionArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessSBICollectionArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessSBICollection" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessSBICollectionArray", propOrder = { - "item" -}) -public class DutchBusinessSBICollectionArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessSBICollection } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBISection.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBISection.java deleted file mode 100644 index 5e63bfb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSBISection.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessSBISection complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessSBISection">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="section_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessSBISection", propOrder = { - -}) -public class DutchBusinessSBISection { - - @XmlElement(name = "section_code", required = true) - protected String sectionCode; - @XmlElement(required = true) - protected String description; - - /** - * Gets the value of the sectionCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectionCode() { - return sectionCode; - } - - /** - * Sets the value of the sectionCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectionCode(String value) { - this.sectionCode = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV2.java deleted file mode 100644 index ad74689..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV2.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessSbiCodeV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessSbiCodeV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="sbi_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessSbiCodeV2", propOrder = { - -}) -public class DutchBusinessSbiCodeV2 { - - @XmlElement(name = "sbi_code") - protected String sbiCode; - protected String description; - - /** - * Gets the value of the sbiCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSbiCode() { - return sbiCode; - } - - /** - * Sets the value of the sbiCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSbiCode(String value) { - this.sbiCode = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV2Array.java deleted file mode 100644 index 731ce93..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessSbiCodeV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessSbiCodeV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessSbiCodeV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessSbiCodeV2Array", propOrder = { - "item" -}) -public class DutchBusinessSbiCodeV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessSbiCodeV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV3.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV3.java deleted file mode 100644 index ccd0ab3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV3.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessSbiCodeV3 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessSbiCodeV3">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="sbi_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessSbiCodeV3", propOrder = { - -}) -public class DutchBusinessSbiCodeV3 { - - @XmlElement(name = "sbi_code") - protected String sbiCode; - protected String description; - - /** - * Gets the value of the sbiCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSbiCode() { - return sbiCode; - } - - /** - * Sets the value of the sbiCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSbiCode(String value) { - this.sbiCode = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV3Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV3Array.java deleted file mode 100644 index 38cde44..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSbiCodeV3Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessSbiCodeV3Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessSbiCodeV3Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessSbiCodeV3" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessSbiCodeV3Array", propOrder = { - "item" -}) -public class DutchBusinessSbiCodeV3Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessSbiCodeV3 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchDossierNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchDossierNumberRequestType.java deleted file mode 100644 index 7fed302..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchDossierNumberRequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchDossierNumberRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchDossierNumberRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchDossierNumberRequestType", propOrder = { - -}) -public class DutchBusinessSearchDossierNumberRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number", required = true) - protected String establishmentNumber; - @XmlElement(name = "rsin_number", required = true) - protected String rsinNumber; - protected int page; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the rsinNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsinNumber() { - return rsinNumber; - } - - /** - * Sets the value of the rsinNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsinNumber(String value) { - this.rsinNumber = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchDossierNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchDossierNumberResponseType.java deleted file mode 100644 index 73bbd5b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchDossierNumberResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchDossierNumberResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchDossierNumberResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchDossierNumberResponseType", propOrder = { - -}) -public class DutchBusinessSearchDossierNumberResponseType { - - @XmlElement(required = true) - protected DutchBusinessReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessReferencePagedResult } - * - */ - public DutchBusinessReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessReferencePagedResult } - * - */ - public void setOut(DutchBusinessReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchEstablishmentsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchEstablishmentsRequestType.java deleted file mode 100644 index 661e001..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchEstablishmentsRequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchEstablishmentsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchEstablishmentsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchEstablishmentsRequestType", propOrder = { - -}) -public class DutchBusinessSearchEstablishmentsRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number", required = true) - protected String establishmentNumber; - @XmlElement(name = "rsin_number", required = true) - protected String rsinNumber; - protected int page; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the rsinNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsinNumber() { - return rsinNumber; - } - - /** - * Sets the value of the rsinNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsinNumber(String value) { - this.rsinNumber = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchEstablishmentsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchEstablishmentsResponseType.java deleted file mode 100644 index de64edf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchEstablishmentsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchEstablishmentsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchEstablishmentsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchEstablishmentsResponseType", propOrder = { - -}) -public class DutchBusinessSearchEstablishmentsResponseType { - - @XmlElement(required = true) - protected DutchBusinessEstablishmentReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessEstablishmentReferencePagedResult } - * - */ - public DutchBusinessEstablishmentReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessEstablishmentReferencePagedResult } - * - */ - public void setOut(DutchBusinessEstablishmentReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchNewsByDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchNewsByDossierRequestType.java deleted file mode 100644 index 53404d7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchNewsByDossierRequestType.java +++ /dev/null @@ -1,172 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for dutchBusinessSearchNewsByDossierRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchNewsByDossierRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="period_start" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
- *         <element name="period_end" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
- *         <element name="sort_order" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchNewsByDossierRequestType", propOrder = { - -}) -public class DutchBusinessSearchNewsByDossierRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "period_start", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar periodStart; - @XmlElement(name = "period_end", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar periodEnd; - @XmlElement(name = "sort_order", required = true) - protected String sortOrder; - protected int page; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the periodStart property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPeriodStart() { - return periodStart; - } - - /** - * Sets the value of the periodStart property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPeriodStart(XMLGregorianCalendar value) { - this.periodStart = value; - } - - /** - * Gets the value of the periodEnd property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPeriodEnd() { - return periodEnd; - } - - /** - * Sets the value of the periodEnd property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPeriodEnd(XMLGregorianCalendar value) { - this.periodEnd = value; - } - - /** - * Gets the value of the sortOrder property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSortOrder() { - return sortOrder; - } - - /** - * Sets the value of the sortOrder property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSortOrder(String value) { - this.sortOrder = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchNewsByDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchNewsByDossierResponseType.java deleted file mode 100644 index ea9a276..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchNewsByDossierResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchNewsByDossierResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchNewsByDossierResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessNewsItemPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchNewsByDossierResponseType", propOrder = { - -}) -public class DutchBusinessSearchNewsByDossierResponseType { - - @XmlElement(required = true) - protected DutchBusinessNewsItemPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessNewsItemPagedResult } - * - */ - public DutchBusinessNewsItemPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessNewsItemPagedResult } - * - */ - public void setOut(DutchBusinessNewsItemPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersRequestType.java deleted file mode 100644 index 1facdf5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersRequestType.java +++ /dev/null @@ -1,287 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchParametersRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchParametersRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="domain_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="strict_search" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchParametersRequestType", propOrder = { - -}) -public class DutchBusinessSearchParametersRequestType { - - @XmlElement(name = "trade_name", required = true) - protected String tradeName; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String street; - @XmlElement(required = true) - protected String postcode; - @XmlElement(name = "house_number") - protected int houseNumber; - @XmlElement(name = "house_number_addition", required = true) - protected String houseNumberAddition; - @XmlElement(name = "telephone_number", required = true) - protected String telephoneNumber; - @XmlElement(name = "domain_name", required = true) - protected String domainName; - @XmlElement(name = "strict_search") - protected boolean strictSearch; - protected int page; - - /** - * Gets the value of the tradeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName() { - return tradeName; - } - - /** - * Sets the value of the tradeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName(String value) { - this.tradeName = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the houseNumber property. - * - */ - public int getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - */ - public void setHouseNumber(int value) { - this.houseNumber = value; - } - - /** - * Gets the value of the houseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNumberAddition() { - return houseNumberAddition; - } - - /** - * Sets the value of the houseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNumberAddition(String value) { - this.houseNumberAddition = value; - } - - /** - * Gets the value of the telephoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNumber() { - return telephoneNumber; - } - - /** - * Sets the value of the telephoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNumber(String value) { - this.telephoneNumber = value; - } - - /** - * Gets the value of the domainName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomainName() { - return domainName; - } - - /** - * Sets the value of the domainName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomainName(String value) { - this.domainName = value; - } - - /** - * Gets the value of the strictSearch property. - * - */ - public boolean isStrictSearch() { - return strictSearch; - } - - /** - * Sets the value of the strictSearch property. - * - */ - public void setStrictSearch(boolean value) { - this.strictSearch = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersResponseType.java deleted file mode 100644 index 88cbdc2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchParametersResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchParametersResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchParametersResponseType", propOrder = { - -}) -public class DutchBusinessSearchParametersResponseType { - - @XmlElement(required = true) - protected DutchBusinessReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessReferencePagedResult } - * - */ - public DutchBusinessReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessReferencePagedResult } - * - */ - public void setOut(DutchBusinessReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersV2RequestType.java deleted file mode 100644 index 1c9a3bd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersV2RequestType.java +++ /dev/null @@ -1,287 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchParametersV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchParametersV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="domain_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="strict_search" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchParametersV2RequestType", propOrder = { - -}) -public class DutchBusinessSearchParametersV2RequestType { - - @XmlElement(name = "trade_name", required = true) - protected String tradeName; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String street; - @XmlElement(required = true) - protected String postcode; - @XmlElement(name = "house_number") - protected int houseNumber; - @XmlElement(name = "house_number_addition", required = true) - protected String houseNumberAddition; - @XmlElement(name = "telephone_number", required = true) - protected String telephoneNumber; - @XmlElement(name = "domain_name", required = true) - protected String domainName; - @XmlElement(name = "strict_search") - protected boolean strictSearch; - protected int page; - - /** - * Gets the value of the tradeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName() { - return tradeName; - } - - /** - * Sets the value of the tradeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName(String value) { - this.tradeName = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the houseNumber property. - * - */ - public int getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - */ - public void setHouseNumber(int value) { - this.houseNumber = value; - } - - /** - * Gets the value of the houseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNumberAddition() { - return houseNumberAddition; - } - - /** - * Sets the value of the houseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNumberAddition(String value) { - this.houseNumberAddition = value; - } - - /** - * Gets the value of the telephoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNumber() { - return telephoneNumber; - } - - /** - * Sets the value of the telephoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNumber(String value) { - this.telephoneNumber = value; - } - - /** - * Gets the value of the domainName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomainName() { - return domainName; - } - - /** - * Sets the value of the domainName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomainName(String value) { - this.domainName = value; - } - - /** - * Gets the value of the strictSearch property. - * - */ - public boolean isStrictSearch() { - return strictSearch; - } - - /** - * Sets the value of the strictSearch property. - * - */ - public void setStrictSearch(boolean value) { - this.strictSearch = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersV2ResponseType.java deleted file mode 100644 index 8d441a3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchParametersV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchParametersV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchParametersV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessReferenceV2PagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchParametersV2ResponseType", propOrder = { - -}) -public class DutchBusinessSearchParametersV2ResponseType { - - @XmlElement(required = true) - protected DutchBusinessReferenceV2PagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessReferenceV2PagedResult } - * - */ - public DutchBusinessReferenceV2PagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessReferenceV2PagedResult } - * - */ - public void setOut(DutchBusinessReferenceV2PagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchPostcodeRequestType.java deleted file mode 100644 index ce076f7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchPostcodeRequestType.java +++ /dev/null @@ -1,133 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchPostcodeRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchPostcodeRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchPostcodeRequestType", propOrder = { - -}) -public class DutchBusinessSearchPostcodeRequestType { - - @XmlElement(required = true) - protected String postcode; - @XmlElement(name = "house_number") - protected int houseNumber; - @XmlElement(name = "house_number_addition", required = true) - protected String houseNumberAddition; - protected int page; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the houseNumber property. - * - */ - public int getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - */ - public void setHouseNumber(int value) { - this.houseNumber = value; - } - - /** - * Gets the value of the houseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNumberAddition() { - return houseNumberAddition; - } - - /** - * Sets the value of the houseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNumberAddition(String value) { - this.houseNumberAddition = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchPostcodeResponseType.java deleted file mode 100644 index cc2b011..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchPostcodeResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchPostcodeResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchPostcodeResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchPostcodeResponseType", propOrder = { - -}) -public class DutchBusinessSearchPostcodeResponseType { - - @XmlElement(required = true) - protected DutchBusinessReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessReferencePagedResult } - * - */ - public DutchBusinessReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessReferencePagedResult } - * - */ - public void setOut(DutchBusinessReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchRequestType.java deleted file mode 100644 index e16f835..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchRequestType.java +++ /dev/null @@ -1,314 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="domain_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="strict_search" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchRequestType", propOrder = { - -}) -public class DutchBusinessSearchRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "trade_name", required = true) - protected String tradeName; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String street; - @XmlElement(required = true) - protected String postcode; - @XmlElement(name = "house_number") - protected int houseNumber; - @XmlElement(name = "house_number_addition", required = true) - protected String houseNumberAddition; - @XmlElement(name = "telephone_number", required = true) - protected String telephoneNumber; - @XmlElement(name = "domain_name", required = true) - protected String domainName; - @XmlElement(name = "strict_search") - protected boolean strictSearch; - protected int page; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the tradeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName() { - return tradeName; - } - - /** - * Sets the value of the tradeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName(String value) { - this.tradeName = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the houseNumber property. - * - */ - public int getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - */ - public void setHouseNumber(int value) { - this.houseNumber = value; - } - - /** - * Gets the value of the houseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNumberAddition() { - return houseNumberAddition; - } - - /** - * Sets the value of the houseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNumberAddition(String value) { - this.houseNumberAddition = value; - } - - /** - * Gets the value of the telephoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNumber() { - return telephoneNumber; - } - - /** - * Sets the value of the telephoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNumber(String value) { - this.telephoneNumber = value; - } - - /** - * Gets the value of the domainName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomainName() { - return domainName; - } - - /** - * Sets the value of the domainName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomainName(String value) { - this.domainName = value; - } - - /** - * Gets the value of the strictSearch property. - * - */ - public boolean isStrictSearch() { - return strictSearch; - } - - /** - * Sets the value of the strictSearch property. - * - */ - public void setStrictSearch(boolean value) { - this.strictSearch = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchResponseType.java deleted file mode 100644 index a685e54..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessEstablishmentReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchResponseType", propOrder = { - -}) -public class DutchBusinessSearchResponseType { - - @XmlElement(required = true) - protected DutchBusinessEstablishmentReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessEstablishmentReferencePagedResult } - * - */ - public DutchBusinessEstablishmentReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessEstablishmentReferencePagedResult } - * - */ - public void setOut(DutchBusinessEstablishmentReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionRequestType.java deleted file mode 100644 index f179d43..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionRequestType.java +++ /dev/null @@ -1,387 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchSelectionRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchSelectionRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="city" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="postcode" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="sbi" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="primary_sbi_only" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="legal_form" type="{http://www.webservices.nl/soap/}intArray"/>
- *         <element name="employees_min" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="employees_max" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="economically_active" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="financial_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="new_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="provinces" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="sbi_match_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchSelectionRequestType", propOrder = { - -}) -public class DutchBusinessSearchSelectionRequestType { - - @XmlElement(required = true) - protected StringArray city; - @XmlElement(required = true) - protected StringArray postcode; - @XmlElement(required = true) - protected StringArray sbi; - @XmlElement(name = "primary_sbi_only") - protected boolean primarySbiOnly; - @XmlElement(name = "legal_form", required = true) - protected IntArray legalForm; - @XmlElement(name = "employees_min") - protected int employeesMin; - @XmlElement(name = "employees_max") - protected int employeesMax; - @XmlElement(name = "economically_active", required = true) - protected String economicallyActive; - @XmlElement(name = "financial_status", required = true) - protected String financialStatus; - @XmlElement(name = "changed_since", required = true) - protected String changedSince; - @XmlElement(name = "new_since", required = true) - protected String newSince; - protected int page; - @XmlElement(required = true) - protected StringArray provinces; - @XmlElement(name = "sbi_match_type", required = true) - protected String sbiMatchType; - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setCity(StringArray value) { - this.city = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setPostcode(StringArray value) { - this.postcode = value; - } - - /** - * Gets the value of the sbi property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getSbi() { - return sbi; - } - - /** - * Sets the value of the sbi property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setSbi(StringArray value) { - this.sbi = value; - } - - /** - * Gets the value of the primarySbiOnly property. - * - */ - public boolean isPrimarySbiOnly() { - return primarySbiOnly; - } - - /** - * Sets the value of the primarySbiOnly property. - * - */ - public void setPrimarySbiOnly(boolean value) { - this.primarySbiOnly = value; - } - - /** - * Gets the value of the legalForm property. - * - * @return - * possible object is - * {@link IntArray } - * - */ - public IntArray getLegalForm() { - return legalForm; - } - - /** - * Sets the value of the legalForm property. - * - * @param value - * allowed object is - * {@link IntArray } - * - */ - public void setLegalForm(IntArray value) { - this.legalForm = value; - } - - /** - * Gets the value of the employeesMin property. - * - */ - public int getEmployeesMin() { - return employeesMin; - } - - /** - * Sets the value of the employeesMin property. - * - */ - public void setEmployeesMin(int value) { - this.employeesMin = value; - } - - /** - * Gets the value of the employeesMax property. - * - */ - public int getEmployeesMax() { - return employeesMax; - } - - /** - * Sets the value of the employeesMax property. - * - */ - public void setEmployeesMax(int value) { - this.employeesMax = value; - } - - /** - * Gets the value of the economicallyActive property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEconomicallyActive() { - return economicallyActive; - } - - /** - * Sets the value of the economicallyActive property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEconomicallyActive(String value) { - this.economicallyActive = value; - } - - /** - * Gets the value of the financialStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinancialStatus() { - return financialStatus; - } - - /** - * Sets the value of the financialStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinancialStatus(String value) { - this.financialStatus = value; - } - - /** - * Gets the value of the changedSince property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getChangedSince() { - return changedSince; - } - - /** - * Sets the value of the changedSince property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChangedSince(String value) { - this.changedSince = value; - } - - /** - * Gets the value of the newSince property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNewSince() { - return newSince; - } - - /** - * Sets the value of the newSince property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNewSince(String value) { - this.newSince = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - - /** - * Gets the value of the provinces property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getProvinces() { - return provinces; - } - - /** - * Sets the value of the provinces property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setProvinces(StringArray value) { - this.provinces = value; - } - - /** - * Gets the value of the sbiMatchType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSbiMatchType() { - return sbiMatchType; - } - - /** - * Sets the value of the sbiMatchType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSbiMatchType(String value) { - this.sbiMatchType = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionResponseType.java deleted file mode 100644 index 3455ea2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchSelectionResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchSelectionResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchSelectionResponseType", propOrder = { - -}) -public class DutchBusinessSearchSelectionResponseType { - - @XmlElement(required = true) - protected DutchBusinessReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessReferencePagedResult } - * - */ - public DutchBusinessReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessReferencePagedResult } - * - */ - public void setOut(DutchBusinessReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionSimpleRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionSimpleRequestType.java deleted file mode 100644 index 81efec0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionSimpleRequestType.java +++ /dev/null @@ -1,360 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchSelectionSimpleRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchSelectionSimpleRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="city" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="postcode" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="sbi" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="primary_sbi_only" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="legal_form" type="{http://www.webservices.nl/soap/}intArray"/>
- *         <element name="employees_min" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="employees_max" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="economically_active" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="financial_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="new_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="provinces" type="{http://www.webservices.nl/soap/}stringArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchSelectionSimpleRequestType", propOrder = { - -}) -public class DutchBusinessSearchSelectionSimpleRequestType { - - @XmlElement(required = true) - protected StringArray city; - @XmlElement(required = true) - protected StringArray postcode; - @XmlElement(required = true) - protected StringArray sbi; - @XmlElement(name = "primary_sbi_only") - protected boolean primarySbiOnly; - @XmlElement(name = "legal_form", required = true) - protected IntArray legalForm; - @XmlElement(name = "employees_min") - protected int employeesMin; - @XmlElement(name = "employees_max") - protected int employeesMax; - @XmlElement(name = "economically_active", required = true) - protected String economicallyActive; - @XmlElement(name = "financial_status", required = true) - protected String financialStatus; - @XmlElement(name = "changed_since", required = true) - protected String changedSince; - @XmlElement(name = "new_since", required = true) - protected String newSince; - protected int page; - @XmlElement(required = true) - protected StringArray provinces; - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setCity(StringArray value) { - this.city = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setPostcode(StringArray value) { - this.postcode = value; - } - - /** - * Gets the value of the sbi property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getSbi() { - return sbi; - } - - /** - * Sets the value of the sbi property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setSbi(StringArray value) { - this.sbi = value; - } - - /** - * Gets the value of the primarySbiOnly property. - * - */ - public boolean isPrimarySbiOnly() { - return primarySbiOnly; - } - - /** - * Sets the value of the primarySbiOnly property. - * - */ - public void setPrimarySbiOnly(boolean value) { - this.primarySbiOnly = value; - } - - /** - * Gets the value of the legalForm property. - * - * @return - * possible object is - * {@link IntArray } - * - */ - public IntArray getLegalForm() { - return legalForm; - } - - /** - * Sets the value of the legalForm property. - * - * @param value - * allowed object is - * {@link IntArray } - * - */ - public void setLegalForm(IntArray value) { - this.legalForm = value; - } - - /** - * Gets the value of the employeesMin property. - * - */ - public int getEmployeesMin() { - return employeesMin; - } - - /** - * Sets the value of the employeesMin property. - * - */ - public void setEmployeesMin(int value) { - this.employeesMin = value; - } - - /** - * Gets the value of the employeesMax property. - * - */ - public int getEmployeesMax() { - return employeesMax; - } - - /** - * Sets the value of the employeesMax property. - * - */ - public void setEmployeesMax(int value) { - this.employeesMax = value; - } - - /** - * Gets the value of the economicallyActive property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEconomicallyActive() { - return economicallyActive; - } - - /** - * Sets the value of the economicallyActive property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEconomicallyActive(String value) { - this.economicallyActive = value; - } - - /** - * Gets the value of the financialStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinancialStatus() { - return financialStatus; - } - - /** - * Sets the value of the financialStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinancialStatus(String value) { - this.financialStatus = value; - } - - /** - * Gets the value of the changedSince property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getChangedSince() { - return changedSince; - } - - /** - * Sets the value of the changedSince property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChangedSince(String value) { - this.changedSince = value; - } - - /** - * Gets the value of the newSince property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNewSince() { - return newSince; - } - - /** - * Sets the value of the newSince property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNewSince(String value) { - this.newSince = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - - /** - * Gets the value of the provinces property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getProvinces() { - return provinces; - } - - /** - * Sets the value of the provinces property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setProvinces(StringArray value) { - this.provinces = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionSimpleResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionSimpleResponseType.java deleted file mode 100644 index 8edacc4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessSearchSelectionSimpleResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessSearchSelectionSimpleResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessSearchSelectionSimpleResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessSearchSelectionSimpleResponseType", propOrder = { - -}) -public class DutchBusinessSearchSelectionSimpleResponseType { - - @XmlElement(required = true) - protected DutchBusinessReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessReferencePagedResult } - * - */ - public DutchBusinessReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessReferencePagedResult } - * - */ - public void setOut(DutchBusinessReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessStructure.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessStructure.java deleted file mode 100644 index 4f9c752..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessStructure.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessStructure complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessStructure">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="ultimate_parent" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="number_of_subsidiaries" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="parent" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessStructure", propOrder = { - -}) -public class DutchBusinessStructure { - - @XmlElement(name = "ultimate_parent") - protected String ultimateParent; - @XmlElement(name = "number_of_subsidiaries") - protected Integer numberOfSubsidiaries; - protected String parent; - - /** - * Gets the value of the ultimateParent property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUltimateParent() { - return ultimateParent; - } - - /** - * Sets the value of the ultimateParent property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUltimateParent(String value) { - this.ultimateParent = value; - } - - /** - * Gets the value of the numberOfSubsidiaries property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getNumberOfSubsidiaries() { - return numberOfSubsidiaries; - } - - /** - * Sets the value of the numberOfSubsidiaries property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setNumberOfSubsidiaries(Integer value) { - this.numberOfSubsidiaries = value; - } - - /** - * Gets the value of the parent property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getParent() { - return parent; - } - - /** - * Sets the value of the parent property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setParent(String value) { - this.parent = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCheckInvestigationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCheckInvestigationRequestType.java deleted file mode 100644 index bb68988..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCheckInvestigationRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUBOCheckInvestigationRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUBOCheckInvestigationRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUBOCheckInvestigationRequestType", propOrder = { - -}) -public class DutchBusinessUBOCheckInvestigationRequestType { - - @XmlElement(required = true) - protected String token; - - /** - * Gets the value of the token property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToken() { - return token; - } - - /** - * Sets the value of the token property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToken(String value) { - this.token = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCheckInvestigationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCheckInvestigationResponseType.java deleted file mode 100644 index 00083d4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCheckInvestigationResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUBOCheckInvestigationResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUBOCheckInvestigationResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessUBOInvestigationStatus"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUBOCheckInvestigationResponseType", propOrder = { - -}) -public class DutchBusinessUBOCheckInvestigationResponseType { - - @XmlElement(required = true) - protected DutchBusinessUBOInvestigationStatus out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessUBOInvestigationStatus } - * - */ - public DutchBusinessUBOInvestigationStatus getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBOInvestigationStatus } - * - */ - public void setOut(DutchBusinessUBOInvestigationStatus value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassificationResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassificationResult.java deleted file mode 100644 index 598f763..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassificationResult.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUBOClassificationResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOClassificationResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="scenario" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="suspects" type="{http://www.webservices.nl/soap/}DutchBusinessUBOClassifiedSuspectArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOClassificationResult", propOrder = { - -}) -public class DutchBusinessUBOClassificationResult { - - @XmlElement(required = true) - protected String token; - @XmlElement(required = true) - protected String scenario; - @XmlElement(required = true) - protected DutchBusinessUBOClassifiedSuspectArray suspects; - - /** - * Gets the value of the token property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToken() { - return token; - } - - /** - * Sets the value of the token property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToken(String value) { - this.token = value; - } - - /** - * Gets the value of the scenario property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getScenario() { - return scenario; - } - - /** - * Sets the value of the scenario property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setScenario(String value) { - this.scenario = value; - } - - /** - * Gets the value of the suspects property. - * - * @return - * possible object is - * {@link DutchBusinessUBOClassifiedSuspectArray } - * - */ - public DutchBusinessUBOClassifiedSuspectArray getSuspects() { - return suspects; - } - - /** - * Sets the value of the suspects property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBOClassifiedSuspectArray } - * - */ - public void setSuspects(DutchBusinessUBOClassifiedSuspectArray value) { - this.suspects = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedPerson.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedPerson.java deleted file mode 100644 index 94293f6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedPerson.java +++ /dev/null @@ -1,126 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessUBOClassifiedPerson complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOClassifiedPerson">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOClassifiedPerson", propOrder = { - -}) -public class DutchBusinessUBOClassifiedPerson { - - @XmlElement(name = "first_name") - protected String firstName; - @XmlElement(name = "last_name") - protected String lastName; - @XmlElement(name = "date_of_birth") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateOfBirth; - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the dateOfBirth property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfBirth() { - return dateOfBirth; - } - - /** - * Sets the value of the dateOfBirth property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfBirth(XMLGregorianCalendar value) { - this.dateOfBirth = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedRole.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedRole.java deleted file mode 100644 index 8b81f05..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedRole.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUBOClassifiedRole complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOClassifiedRole">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="organisation_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOClassifiedRole", propOrder = { - -}) -public class DutchBusinessUBOClassifiedRole { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "organisation_name", required = true) - protected String organisationName; - protected String title; - @XmlElement(name = "function_type", required = true) - protected String functionType; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the organisationName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrganisationName() { - return organisationName; - } - - /** - * Sets the value of the organisationName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrganisationName(String value) { - this.organisationName = value; - } - - /** - * Gets the value of the title property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTitle() { - return title; - } - - /** - * Sets the value of the title property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTitle(String value) { - this.title = value; - } - - /** - * Gets the value of the functionType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionType() { - return functionType; - } - - /** - * Sets the value of the functionType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionType(String value) { - this.functionType = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedSuspect.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedSuspect.java deleted file mode 100644 index f9fc242..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedSuspect.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUBOClassifiedSuspect complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOClassifiedSuspect">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="person" type="{http://www.webservices.nl/soap/}DutchBusinessUBOClassifiedPerson"/>
- *         <element name="role" type="{http://www.webservices.nl/soap/}DutchBusinessUBOClassifiedRole"/>
- *         <element name="classification" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOClassifiedSuspect", propOrder = { - -}) -public class DutchBusinessUBOClassifiedSuspect { - - @XmlElement(required = true) - protected String key; - @XmlElement(required = true) - protected DutchBusinessUBOClassifiedPerson person; - @XmlElement(required = true) - protected DutchBusinessUBOClassifiedRole role; - @XmlElement(required = true) - protected String classification; - - /** - * Gets the value of the key property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKey() { - return key; - } - - /** - * Sets the value of the key property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKey(String value) { - this.key = value; - } - - /** - * Gets the value of the person property. - * - * @return - * possible object is - * {@link DutchBusinessUBOClassifiedPerson } - * - */ - public DutchBusinessUBOClassifiedPerson getPerson() { - return person; - } - - /** - * Sets the value of the person property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBOClassifiedPerson } - * - */ - public void setPerson(DutchBusinessUBOClassifiedPerson value) { - this.person = value; - } - - /** - * Gets the value of the role property. - * - * @return - * possible object is - * {@link DutchBusinessUBOClassifiedRole } - * - */ - public DutchBusinessUBOClassifiedRole getRole() { - return role; - } - - /** - * Sets the value of the role property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBOClassifiedRole } - * - */ - public void setRole(DutchBusinessUBOClassifiedRole value) { - this.role = value; - } - - /** - * Gets the value of the classification property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClassification() { - return classification; - } - - /** - * Sets the value of the classification property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClassification(String value) { - this.classification = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedSuspectArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedSuspectArray.java deleted file mode 100644 index 398e5b2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifiedSuspectArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUBOClassifiedSuspectArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOClassifiedSuspectArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessUBOClassifiedSuspect" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOClassifiedSuspectArray", propOrder = { - "item" -}) -public class DutchBusinessUBOClassifiedSuspectArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessUBOClassifiedSuspect } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifyInvestigationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifyInvestigationRequestType.java deleted file mode 100644 index 9b41076..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifyInvestigationRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUBOClassifyInvestigationRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUBOClassifyInvestigationRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="scenario" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUBOClassifyInvestigationRequestType", propOrder = { - -}) -public class DutchBusinessUBOClassifyInvestigationRequestType { - - @XmlElement(required = true) - protected String token; - @XmlElement(required = true) - protected String scenario; - - /** - * Gets the value of the token property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToken() { - return token; - } - - /** - * Sets the value of the token property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToken(String value) { - this.token = value; - } - - /** - * Gets the value of the scenario property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getScenario() { - return scenario; - } - - /** - * Sets the value of the scenario property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setScenario(String value) { - this.scenario = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifyInvestigationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifyInvestigationResponseType.java deleted file mode 100644 index 2df3042..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOClassifyInvestigationResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUBOClassifyInvestigationResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUBOClassifyInvestigationResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessUBOClassificationResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUBOClassifyInvestigationResponseType", propOrder = { - -}) -public class DutchBusinessUBOClassifyInvestigationResponseType { - - @XmlElement(required = true) - protected DutchBusinessUBOClassificationResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessUBOClassificationResult } - * - */ - public DutchBusinessUBOClassificationResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBOClassificationResult } - * - */ - public void setOut(DutchBusinessUBOClassificationResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationRequestType.java deleted file mode 100644 index e6568ba..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUBOCostsInvestigationRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUBOCostsInvestigationRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUBOCostsInvestigationRequestType", propOrder = { - -}) -public class DutchBusinessUBOCostsInvestigationRequestType { - - @XmlElement(required = true) - protected String token; - - /** - * Gets the value of the token property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToken() { - return token; - } - - /** - * Sets the value of the token property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToken(String value) { - this.token = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationResponseType.java deleted file mode 100644 index 9da1f9f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUBOCostsInvestigationResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUBOCostsInvestigationResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}dutchBusinessUBOCostsInvestigationResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUBOCostsInvestigationResponseType", propOrder = { - -}) -public class DutchBusinessUBOCostsInvestigationResponseType { - - @XmlElement(required = true) - protected DutchBusinessUBOCostsInvestigationResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessUBOCostsInvestigationResult } - * - */ - public DutchBusinessUBOCostsInvestigationResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBOCostsInvestigationResult } - * - */ - public void setOut(DutchBusinessUBOCostsInvestigationResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationResult.java deleted file mode 100644 index 10bd084..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOCostsInvestigationResult.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUBOCostsInvestigationResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUBOCostsInvestigationResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="receipt" type="{http://www.webservices.nl/soap/}DutchBusinessUBOReceipt"/>
- *         <element name="payment" type="{http://www.webservices.nl/soap/}DutchBusinessUBOPayment"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUBOCostsInvestigationResult", propOrder = { - -}) -public class DutchBusinessUBOCostsInvestigationResult { - - @XmlElement(required = true) - protected String token; - @XmlElement(required = true) - protected String status; - @XmlElement(required = true) - protected DutchBusinessUBOReceipt receipt; - @XmlElement(required = true) - protected DutchBusinessUBOPayment payment; - - /** - * Gets the value of the token property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToken() { - return token; - } - - /** - * Sets the value of the token property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToken(String value) { - this.token = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the receipt property. - * - * @return - * possible object is - * {@link DutchBusinessUBOReceipt } - * - */ - public DutchBusinessUBOReceipt getReceipt() { - return receipt; - } - - /** - * Sets the value of the receipt property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBOReceipt } - * - */ - public void setReceipt(DutchBusinessUBOReceipt value) { - this.receipt = value; - } - - /** - * Gets the value of the payment property. - * - * @return - * possible object is - * {@link DutchBusinessUBOPayment } - * - */ - public DutchBusinessUBOPayment getPayment() { - return payment; - } - - /** - * Sets the value of the payment property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBOPayment } - * - */ - public void setPayment(DutchBusinessUBOPayment value) { - this.payment = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOExtract.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOExtract.java deleted file mode 100644 index b1ffa83..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOExtract.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessUBOExtract complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOExtract">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="source" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="data" type="{http://www.webservices.nl/soap/}DutchBusinessExtractDocumentData" minOccurs="0"/>
- *         <element name="extract_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOExtract", propOrder = { - -}) -public class DutchBusinessUBOExtract { - - protected String document; - protected String source; - protected DutchBusinessExtractDocumentData data; - @XmlElement(name = "extract_date", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar extractDate; - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocument(String value) { - this.document = value; - } - - /** - * Gets the value of the source property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSource() { - return source; - } - - /** - * Sets the value of the source property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSource(String value) { - this.source = value; - } - - /** - * Gets the value of the data property. - * - * @return - * possible object is - * {@link DutchBusinessExtractDocumentData } - * - */ - public DutchBusinessExtractDocumentData getData() { - return data; - } - - /** - * Sets the value of the data property. - * - * @param value - * allowed object is - * {@link DutchBusinessExtractDocumentData } - * - */ - public void setData(DutchBusinessExtractDocumentData value) { - this.data = value; - } - - /** - * Gets the value of the extractDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getExtractDate() { - return extractDate; - } - - /** - * Sets the value of the extractDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setExtractDate(XMLGregorianCalendar value) { - this.extractDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationResult.java deleted file mode 100644 index 52e2ae5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationResult.java +++ /dev/null @@ -1,177 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUBOInvestigationResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOInvestigationResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="persons" type="{http://www.webservices.nl/soap/}DutchBusinessUBOPersonArray"/>
- *         <element name="organisations" type="{http://www.webservices.nl/soap/}DutchBusinessUBOOrganisationArray"/>
- *         <element name="tree" type="{http://www.webservices.nl/soap/}DutchBusinessUBOOrganizationNode"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOInvestigationResult", propOrder = { - -}) -public class DutchBusinessUBOInvestigationResult { - - @XmlElement(required = true) - protected String name; - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(required = true) - protected DutchBusinessUBOPersonArray persons; - @XmlElement(required = true) - protected DutchBusinessUBOOrganisationArray organisations; - @XmlElement(required = true) - protected DutchBusinessUBOOrganizationNode tree; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the persons property. - * - * @return - * possible object is - * {@link DutchBusinessUBOPersonArray } - * - */ - public DutchBusinessUBOPersonArray getPersons() { - return persons; - } - - /** - * Sets the value of the persons property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBOPersonArray } - * - */ - public void setPersons(DutchBusinessUBOPersonArray value) { - this.persons = value; - } - - /** - * Gets the value of the organisations property. - * - * @return - * possible object is - * {@link DutchBusinessUBOOrganisationArray } - * - */ - public DutchBusinessUBOOrganisationArray getOrganisations() { - return organisations; - } - - /** - * Sets the value of the organisations property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBOOrganisationArray } - * - */ - public void setOrganisations(DutchBusinessUBOOrganisationArray value) { - this.organisations = value; - } - - /** - * Gets the value of the tree property. - * - * @return - * possible object is - * {@link DutchBusinessUBOOrganizationNode } - * - */ - public DutchBusinessUBOOrganizationNode getTree() { - return tree; - } - - /** - * Sets the value of the tree property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBOOrganizationNode } - * - */ - public void setTree(DutchBusinessUBOOrganizationNode value) { - this.tree = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationStatus.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationStatus.java deleted file mode 100644 index 5ae4673..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationStatus.java +++ /dev/null @@ -1,125 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessUBOInvestigationStatus complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOInvestigationStatus">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_since" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOInvestigationStatus", propOrder = { - -}) -public class DutchBusinessUBOInvestigationStatus { - - @XmlElement(required = true) - protected String status; - @XmlElement(name = "date_since", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateSince; - protected String description; - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the dateSince property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateSince() { - return dateSince; - } - - /** - * Sets the value of the dateSince property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateSince(XMLGregorianCalendar value) { - this.dateSince = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationToken.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationToken.java deleted file mode 100644 index 0ddfc12..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOInvestigationToken.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUBOInvestigationToken complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOInvestigationToken">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOInvestigationToken", propOrder = { - -}) -public class DutchBusinessUBOInvestigationToken { - - @XmlElement(required = true) - protected String token; - - /** - * Gets the value of the token property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToken() { - return token; - } - - /** - * Sets the value of the token property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToken(String value) { - this.token = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganisation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganisation.java deleted file mode 100644 index 222b28a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganisation.java +++ /dev/null @@ -1,201 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUBOOrganisation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOOrganisation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="extract" type="{http://www.webservices.nl/soap/}DutchBusinessUBOExtract" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOOrganisation", propOrder = { - -}) -public class DutchBusinessUBOOrganisation { - - @XmlElement(name = "dossier_number") - protected String dossierNumber; - protected String name; - @XmlElement(name = "legal_form_code") - protected String legalFormCode; - @XmlElement(name = "legal_form_text") - protected String legalFormText; - protected String city; - protected DutchBusinessUBOExtract extract; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the legalFormCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormCode() { - return legalFormCode; - } - - /** - * Sets the value of the legalFormCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormCode(String value) { - this.legalFormCode = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the extract property. - * - * @return - * possible object is - * {@link DutchBusinessUBOExtract } - * - */ - public DutchBusinessUBOExtract getExtract() { - return extract; - } - - /** - * Sets the value of the extract property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBOExtract } - * - */ - public void setExtract(DutchBusinessUBOExtract value) { - this.extract = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganisationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganisationArray.java deleted file mode 100644 index 6d716d8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganisationArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUBOOrganisationArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOOrganisationArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessUBOOrganisation" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOOrganisationArray", propOrder = { - "item" -}) -public class DutchBusinessUBOOrganisationArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessUBOOrganisation } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganizationNode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganizationNode.java deleted file mode 100644 index 5459606..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganizationNode.java +++ /dev/null @@ -1,231 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUBOOrganizationNode complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOOrganizationNode">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="level" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="role_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registered_in" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="parents" type="{http://www.webservices.nl/soap/}DutchBusinessUBOOrganizationNodeArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOOrganizationNode", propOrder = { - -}) -public class DutchBusinessUBOOrganizationNode { - - @XmlElement(required = true) - protected BigInteger level; - @XmlElement(required = true) - protected String id; - @XmlElement(required = true) - protected String type; - @XmlElement(name = "role_type") - protected String roleType; - @XmlElement(name = "registered_in") - protected String registeredIn; - @XmlElement(required = true) - protected String name; - protected DutchBusinessUBOOrganizationNodeArray parents; - - /** - * Gets the value of the level property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getLevel() { - return level; - } - - /** - * Sets the value of the level property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setLevel(BigInteger value) { - this.level = value; - } - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the roleType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoleType() { - return roleType; - } - - /** - * Sets the value of the roleType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoleType(String value) { - this.roleType = value; - } - - /** - * Gets the value of the registeredIn property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegisteredIn() { - return registeredIn; - } - - /** - * Sets the value of the registeredIn property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegisteredIn(String value) { - this.registeredIn = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the parents property. - * - * @return - * possible object is - * {@link DutchBusinessUBOOrganizationNodeArray } - * - */ - public DutchBusinessUBOOrganizationNodeArray getParents() { - return parents; - } - - /** - * Sets the value of the parents property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBOOrganizationNodeArray } - * - */ - public void setParents(DutchBusinessUBOOrganizationNodeArray value) { - this.parents = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganizationNodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganizationNodeArray.java deleted file mode 100644 index 34939ad..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOOrganizationNodeArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUBOOrganizationNodeArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOOrganizationNodeArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessUBOOrganizationNode" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOOrganizationNodeArray", propOrder = { - "item" -}) -public class DutchBusinessUBOOrganizationNodeArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessUBOOrganizationNode } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPayment.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPayment.java deleted file mode 100644 index 6b933bc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPayment.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUBOPayment complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOPayment">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="pre" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="cost" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="refund" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOPayment", propOrder = { - -}) -public class DutchBusinessUBOPayment { - - @XmlElement(required = true) - protected String pre; - @XmlElement(required = true) - protected String cost; - @XmlElement(required = true) - protected String refund; - - /** - * Gets the value of the pre property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPre() { - return pre; - } - - /** - * Sets the value of the pre property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPre(String value) { - this.pre = value; - } - - /** - * Gets the value of the cost property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCost() { - return cost; - } - - /** - * Sets the value of the cost property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCost(String value) { - this.cost = value; - } - - /** - * Gets the value of the refund property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRefund() { - return refund; - } - - /** - * Sets the value of the refund property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRefund(String value) { - this.refund = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPerson.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPerson.java deleted file mode 100644 index 94c9e77..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPerson.java +++ /dev/null @@ -1,315 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessUBOPerson complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOPerson">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="middle_names" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_of_birth" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="place_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country_of_birth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_of_death" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="roles" type="{http://www.webservices.nl/soap/}DutchBusinessUBORoleArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOPerson", propOrder = { - -}) -public class DutchBusinessUBOPerson { - - @XmlElement(required = true) - protected String key; - @XmlElement(name = "first_name", required = true) - protected String firstName; - @XmlElement(name = "middle_names") - protected String middleNames; - @XmlElement(name = "last_name", required = true) - protected String lastName; - protected String gender; - @XmlElement(name = "date_of_birth") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateOfBirth; - @XmlElement(name = "place_of_birth") - protected String placeOfBirth; - @XmlElement(name = "country_of_birth") - protected String countryOfBirth; - @XmlElement(name = "date_of_death") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateOfDeath; - @XmlElement(required = true) - protected DutchBusinessUBORoleArray roles; - - /** - * Gets the value of the key property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKey() { - return key; - } - - /** - * Sets the value of the key property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKey(String value) { - this.key = value; - } - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the middleNames property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMiddleNames() { - return middleNames; - } - - /** - * Sets the value of the middleNames property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMiddleNames(String value) { - this.middleNames = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the gender property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGender() { - return gender; - } - - /** - * Sets the value of the gender property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGender(String value) { - this.gender = value; - } - - /** - * Gets the value of the dateOfBirth property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfBirth() { - return dateOfBirth; - } - - /** - * Sets the value of the dateOfBirth property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfBirth(XMLGregorianCalendar value) { - this.dateOfBirth = value; - } - - /** - * Gets the value of the placeOfBirth property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaceOfBirth() { - return placeOfBirth; - } - - /** - * Sets the value of the placeOfBirth property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaceOfBirth(String value) { - this.placeOfBirth = value; - } - - /** - * Gets the value of the countryOfBirth property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryOfBirth() { - return countryOfBirth; - } - - /** - * Sets the value of the countryOfBirth property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryOfBirth(String value) { - this.countryOfBirth = value; - } - - /** - * Gets the value of the dateOfDeath property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfDeath() { - return dateOfDeath; - } - - /** - * Sets the value of the dateOfDeath property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfDeath(XMLGregorianCalendar value) { - this.dateOfDeath = value; - } - - /** - * Gets the value of the roles property. - * - * @return - * possible object is - * {@link DutchBusinessUBORoleArray } - * - */ - public DutchBusinessUBORoleArray getRoles() { - return roles; - } - - /** - * Sets the value of the roles property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBORoleArray } - * - */ - public void setRoles(DutchBusinessUBORoleArray value) { - this.roles = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPersonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPersonArray.java deleted file mode 100644 index c481435..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPersonArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUBOPersonArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOPersonArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessUBOPerson" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOPersonArray", propOrder = { - "item" -}) -public class DutchBusinessUBOPersonArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessUBOPerson } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPickupInvestigationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPickupInvestigationRequestType.java deleted file mode 100644 index 68f2e50..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPickupInvestigationRequestType.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUBOPickupInvestigationRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUBOPickupInvestigationRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="include_source" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUBOPickupInvestigationRequestType", propOrder = { - -}) -public class DutchBusinessUBOPickupInvestigationRequestType { - - @XmlElement(required = true) - protected String token; - @XmlElement(name = "include_source") - protected boolean includeSource; - - /** - * Gets the value of the token property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToken() { - return token; - } - - /** - * Sets the value of the token property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToken(String value) { - this.token = value; - } - - /** - * Gets the value of the includeSource property. - * - */ - public boolean isIncludeSource() { - return includeSource; - } - - /** - * Sets the value of the includeSource property. - * - */ - public void setIncludeSource(boolean value) { - this.includeSource = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPickupInvestigationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPickupInvestigationResponseType.java deleted file mode 100644 index ab18548..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOPickupInvestigationResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUBOPickupInvestigationResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUBOPickupInvestigationResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessUBOInvestigationResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUBOPickupInvestigationResponseType", propOrder = { - -}) -public class DutchBusinessUBOPickupInvestigationResponseType { - - @XmlElement(required = true) - protected DutchBusinessUBOInvestigationResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessUBOInvestigationResult } - * - */ - public DutchBusinessUBOInvestigationResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBOInvestigationResult } - * - */ - public void setOut(DutchBusinessUBOInvestigationResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceipt.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceipt.java deleted file mode 100644 index 56bd78f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceipt.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUBOReceipt complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOReceipt">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="total_price" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="items" type="{http://www.webservices.nl/soap/}DutchBusinessUBOReceiptItemArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOReceipt", propOrder = { - -}) -public class DutchBusinessUBOReceipt { - - @XmlElement(name = "total_price", required = true) - protected String totalPrice; - @XmlElement(required = true) - protected DutchBusinessUBOReceiptItemArray items; - - /** - * Gets the value of the totalPrice property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTotalPrice() { - return totalPrice; - } - - /** - * Sets the value of the totalPrice property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTotalPrice(String value) { - this.totalPrice = value; - } - - /** - * Gets the value of the items property. - * - * @return - * possible object is - * {@link DutchBusinessUBOReceiptItemArray } - * - */ - public DutchBusinessUBOReceiptItemArray getItems() { - return items; - } - - /** - * Sets the value of the items property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBOReceiptItemArray } - * - */ - public void setItems(DutchBusinessUBOReceiptItemArray value) { - this.items = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceiptItem.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceiptItem.java deleted file mode 100644 index 18c625a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceiptItem.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUBOReceiptItem complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOReceiptItem">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="quantity" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="unit_price" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="total_price" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOReceiptItem", propOrder = { - -}) -public class DutchBusinessUBOReceiptItem { - - @XmlElement(required = true) - protected String description; - protected int quantity; - @XmlElement(name = "unit_price", required = true) - protected String unitPrice; - @XmlElement(name = "total_price", required = true) - protected String totalPrice; - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the quantity property. - * - */ - public int getQuantity() { - return quantity; - } - - /** - * Sets the value of the quantity property. - * - */ - public void setQuantity(int value) { - this.quantity = value; - } - - /** - * Gets the value of the unitPrice property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUnitPrice() { - return unitPrice; - } - - /** - * Sets the value of the unitPrice property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUnitPrice(String value) { - this.unitPrice = value; - } - - /** - * Gets the value of the totalPrice property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTotalPrice() { - return totalPrice; - } - - /** - * Sets the value of the totalPrice property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTotalPrice(String value) { - this.totalPrice = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceiptItemArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceiptItemArray.java deleted file mode 100644 index b99403a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOReceiptItemArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUBOReceiptItemArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBOReceiptItemArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessUBOReceiptItem" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBOReceiptItemArray", propOrder = { - "item" -}) -public class DutchBusinessUBOReceiptItemArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessUBOReceiptItem } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBORole.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBORole.java deleted file mode 100644 index 09ce657..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBORole.java +++ /dev/null @@ -1,178 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessUBORole complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBORole">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="role_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="competency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="start_role_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBORole", propOrder = { - -}) -public class DutchBusinessUBORole { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - protected String title; - @XmlElement(name = "role_type") - protected String roleType; - protected String competency; - @XmlElement(name = "start_role_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar startRoleDate; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the title property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTitle() { - return title; - } - - /** - * Sets the value of the title property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTitle(String value) { - this.title = value; - } - - /** - * Gets the value of the roleType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoleType() { - return roleType; - } - - /** - * Sets the value of the roleType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoleType(String value) { - this.roleType = value; - } - - /** - * Gets the value of the competency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompetency() { - return competency; - } - - /** - * Sets the value of the competency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompetency(String value) { - this.competency = value; - } - - /** - * Gets the value of the startRoleDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStartRoleDate() { - return startRoleDate; - } - - /** - * Sets the value of the startRoleDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStartRoleDate(XMLGregorianCalendar value) { - this.startRoleDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBORoleArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBORoleArray.java deleted file mode 100644 index 531623e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBORoleArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUBORoleArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUBORoleArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessUBORole" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUBORoleArray", propOrder = { - "item" -}) -public class DutchBusinessUBORoleArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessUBORole } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOStartInvestigationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOStartInvestigationRequestType.java deleted file mode 100644 index b57b097..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOStartInvestigationRequestType.java +++ /dev/null @@ -1,118 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for dutchBusinessUBOStartInvestigationRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUBOStartInvestigationRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="oldest_extract_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="use_updates" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUBOStartInvestigationRequestType", propOrder = { - -}) -public class DutchBusinessUBOStartInvestigationRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "oldest_extract_date", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar oldestExtractDate; - @XmlElement(name = "use_updates") - protected boolean useUpdates; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the oldestExtractDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getOldestExtractDate() { - return oldestExtractDate; - } - - /** - * Sets the value of the oldestExtractDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setOldestExtractDate(XMLGregorianCalendar value) { - this.oldestExtractDate = value; - } - - /** - * Gets the value of the useUpdates property. - * - */ - public boolean isUseUpdates() { - return useUpdates; - } - - /** - * Sets the value of the useUpdates property. - * - */ - public void setUseUpdates(boolean value) { - this.useUpdates = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOStartInvestigationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOStartInvestigationResponseType.java deleted file mode 100644 index f737b8b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUBOStartInvestigationResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUBOStartInvestigationResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUBOStartInvestigationResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessUBOInvestigationToken"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUBOStartInvestigationResponseType", propOrder = { - -}) -public class DutchBusinessUBOStartInvestigationResponseType { - - @XmlElement(required = true) - protected DutchBusinessUBOInvestigationToken out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessUBOInvestigationToken } - * - */ - public DutchBusinessUBOInvestigationToken getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessUBOInvestigationToken } - * - */ - public void setOut(DutchBusinessUBOInvestigationToken value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateAddDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateAddDossierRequestType.java deleted file mode 100644 index 84f8b96..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateAddDossierRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUpdateAddDossierRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUpdateAddDossierRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUpdateAddDossierRequestType", propOrder = { - -}) -public class DutchBusinessUpdateAddDossierRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number", required = true) - protected String establishmentNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateAddDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateAddDossierResponseType.java deleted file mode 100644 index b3d08b2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateAddDossierResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUpdateAddDossierResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUpdateAddDossierResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUpdateAddDossierResponseType") -public class DutchBusinessUpdateAddDossierResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateCheckDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateCheckDossierRequestType.java deleted file mode 100644 index 737e1e4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateCheckDossierRequestType.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUpdateCheckDossierRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUpdateCheckDossierRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUpdateCheckDossierRequestType", propOrder = { - -}) -public class DutchBusinessUpdateCheckDossierRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number", required = true) - protected String establishmentNumber; - @XmlElement(name = "update_types", required = true) - protected StringArray updateTypes; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the updateTypes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getUpdateTypes() { - return updateTypes; - } - - /** - * Sets the value of the updateTypes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setUpdateTypes(StringArray value) { - this.updateTypes = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateCheckDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateCheckDossierResponseType.java deleted file mode 100644 index 8e071d0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateCheckDossierResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUpdateCheckDossierResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUpdateCheckDossierResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateReference"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUpdateCheckDossierResponseType", propOrder = { - -}) -public class DutchBusinessUpdateCheckDossierResponseType { - - @XmlElement(required = true) - protected DutchBusinessUpdateReference out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessUpdateReference } - * - */ - public DutchBusinessUpdateReference getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessUpdateReference } - * - */ - public void setOut(DutchBusinessUpdateReference value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetChangedDossiersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetChangedDossiersRequestType.java deleted file mode 100644 index a3aedbe..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetChangedDossiersRequestType.java +++ /dev/null @@ -1,117 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for dutchBusinessUpdateGetChangedDossiersRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUpdateGetChangedDossiersRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUpdateGetChangedDossiersRequestType", propOrder = { - -}) -public class DutchBusinessUpdateGetChangedDossiersRequestType { - - @XmlElement(name = "changed_since", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar changedSince; - @XmlElement(name = "update_types", required = true) - protected StringArray updateTypes; - protected int page; - - /** - * Gets the value of the changedSince property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getChangedSince() { - return changedSince; - } - - /** - * Sets the value of the changedSince property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setChangedSince(XMLGregorianCalendar value) { - this.changedSince = value; - } - - /** - * Gets the value of the updateTypes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getUpdateTypes() { - return updateTypes; - } - - /** - * Sets the value of the updateTypes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setUpdateTypes(StringArray value) { - this.updateTypes = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetChangedDossiersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetChangedDossiersResponseType.java deleted file mode 100644 index a7ca8c1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetChangedDossiersResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUpdateGetChangedDossiersResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUpdateGetChangedDossiersResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUpdateGetChangedDossiersResponseType", propOrder = { - -}) -public class DutchBusinessUpdateGetChangedDossiersResponseType { - - @XmlElement(required = true) - protected DutchBusinessUpdateReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessUpdateReferencePagedResult } - * - */ - public DutchBusinessUpdateReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessUpdateReferencePagedResult } - * - */ - public void setOut(DutchBusinessUpdateReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetDossiersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetDossiersRequestType.java deleted file mode 100644 index 067020a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetDossiersRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUpdateGetDossiersRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUpdateGetDossiersRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUpdateGetDossiersRequestType", propOrder = { - -}) -public class DutchBusinessUpdateGetDossiersRequestType { - - @XmlElement(name = "update_types", required = true) - protected StringArray updateTypes; - protected int page; - - /** - * Gets the value of the updateTypes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getUpdateTypes() { - return updateTypes; - } - - /** - * Sets the value of the updateTypes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setUpdateTypes(StringArray value) { - this.updateTypes = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetDossiersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetDossiersResponseType.java deleted file mode 100644 index 17780ca..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetDossiersResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUpdateGetDossiersResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUpdateGetDossiersResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUpdateGetDossiersResponseType", propOrder = { - -}) -public class DutchBusinessUpdateGetDossiersResponseType { - - @XmlElement(required = true) - protected DutchBusinessUpdateReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessUpdateReferencePagedResult } - * - */ - public DutchBusinessUpdateReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessUpdateReferencePagedResult } - * - */ - public void setOut(DutchBusinessUpdateReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetOverviewRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetOverviewRequestType.java deleted file mode 100644 index 5ce133c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetOverviewRequestType.java +++ /dev/null @@ -1,59 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUpdateGetOverviewRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUpdateGetOverviewRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUpdateGetOverviewRequestType", propOrder = { - -}) -public class DutchBusinessUpdateGetOverviewRequestType { - - protected int page; - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetOverviewResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetOverviewResponseType.java deleted file mode 100644 index 88b7493..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateGetOverviewResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUpdateGetOverviewResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUpdateGetOverviewResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateSubscriptionPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUpdateGetOverviewResponseType", propOrder = { - -}) -public class DutchBusinessUpdateGetOverviewResponseType { - - @XmlElement(required = true) - protected DutchBusinessUpdateSubscriptionPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchBusinessUpdateSubscriptionPagedResult } - * - */ - public DutchBusinessUpdateSubscriptionPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchBusinessUpdateSubscriptionPagedResult } - * - */ - public void setOut(DutchBusinessUpdateSubscriptionPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReference.java deleted file mode 100644 index d4264ec..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReference.java +++ /dev/null @@ -1,153 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessUpdateReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUpdateReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="date_last_update" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUpdateReference", propOrder = { - -}) -public class DutchBusinessUpdateReference { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(name = "update_types", required = true) - protected StringArray updateTypes; - @XmlElement(name = "date_last_update", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateLastUpdate; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the updateTypes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getUpdateTypes() { - return updateTypes; - } - - /** - * Sets the value of the updateTypes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setUpdateTypes(StringArray value) { - this.updateTypes = value; - } - - /** - * Gets the value of the dateLastUpdate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateLastUpdate() { - return dateLastUpdate; - } - - /** - * Sets the value of the dateLastUpdate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateLastUpdate(XMLGregorianCalendar value) { - this.dateLastUpdate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReferenceArray.java deleted file mode 100644 index 7a777cc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUpdateReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUpdateReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUpdateReferenceArray", propOrder = { - "item" -}) -public class DutchBusinessUpdateReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessUpdateReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReferencePagedResult.java deleted file mode 100644 index 4797219..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateReferencePagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUpdateReferencePagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUpdateReferencePagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUpdateReferencePagedResult", propOrder = { - -}) -public class DutchBusinessUpdateReferencePagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected DutchBusinessUpdateReferenceArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link DutchBusinessUpdateReferenceArray } - * - */ - public DutchBusinessUpdateReferenceArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link DutchBusinessUpdateReferenceArray } - * - */ - public void setResults(DutchBusinessUpdateReferenceArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateRemoveDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateRemoveDossierRequestType.java deleted file mode 100644 index 9458fc7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateRemoveDossierRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUpdateRemoveDossierRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUpdateRemoveDossierRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUpdateRemoveDossierRequestType", propOrder = { - -}) -public class DutchBusinessUpdateRemoveDossierRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number", required = true) - protected String establishmentNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateRemoveDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateRemoveDossierResponseType.java deleted file mode 100644 index db72f82..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateRemoveDossierResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchBusinessUpdateRemoveDossierResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchBusinessUpdateRemoveDossierResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchBusinessUpdateRemoveDossierResponseType") -public class DutchBusinessUpdateRemoveDossierResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscription.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscription.java deleted file mode 100644 index 7ae573a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscription.java +++ /dev/null @@ -1,142 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUpdateSubscription complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUpdateSubscription">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="up_to_date" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="pending_updates" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUpdateSubscription", propOrder = { - -}) -public class DutchBusinessUpdateSubscription { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(name = "up_to_date") - protected boolean upToDate; - @XmlElement(name = "pending_updates") - protected StringArray pendingUpdates; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the upToDate property. - * - */ - public boolean isUpToDate() { - return upToDate; - } - - /** - * Sets the value of the upToDate property. - * - */ - public void setUpToDate(boolean value) { - this.upToDate = value; - } - - /** - * Gets the value of the pendingUpdates property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getPendingUpdates() { - return pendingUpdates; - } - - /** - * Sets the value of the pendingUpdates property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setPendingUpdates(StringArray value) { - this.pendingUpdates = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscriptionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscriptionArray.java deleted file mode 100644 index 33be620..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscriptionArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUpdateSubscriptionArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUpdateSubscriptionArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateSubscription" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUpdateSubscriptionArray", propOrder = { - "item" -}) -public class DutchBusinessUpdateSubscriptionArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchBusinessUpdateSubscription } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscriptionPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscriptionPagedResult.java deleted file mode 100644 index c10a725..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessUpdateSubscriptionPagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchBusinessUpdateSubscriptionPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessUpdateSubscriptionPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}DutchBusinessUpdateSubscriptionArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessUpdateSubscriptionPagedResult", propOrder = { - -}) -public class DutchBusinessUpdateSubscriptionPagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected DutchBusinessUpdateSubscriptionArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link DutchBusinessUpdateSubscriptionArray } - * - */ - public DutchBusinessUpdateSubscriptionArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link DutchBusinessUpdateSubscriptionArray } - * - */ - public void setResults(DutchBusinessUpdateSubscriptionArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessVatNumber.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessVatNumber.java deleted file mode 100644 index 094577d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchBusinessVatNumber.java +++ /dev/null @@ -1,126 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchBusinessVatNumber complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchBusinessVatNumber">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_last_update" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchBusinessVatNumber", propOrder = { - -}) -public class DutchBusinessVatNumber { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "vat_number", required = true) - protected String vatNumber; - @XmlElement(name = "date_last_update", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateLastUpdate; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the vatNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVatNumber() { - return vatNumber; - } - - /** - * Sets the value of the vatNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVatNumber(String value) { - this.vatNumber = value; - } - - /** - * Gets the value of the dateLastUpdate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateLastUpdate() { - return dateLastUpdate; - } - - /** - * Sets the value of the dateLastUpdate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateLastUpdate(XMLGregorianCalendar value) { - this.dateLastUpdate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicle.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicle.java deleted file mode 100644 index 47bb878..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicle.java +++ /dev/null @@ -1,386 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicle complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicle">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="basic_data" type="{http://www.webservices.nl/soap/}DutchVehicleData"/>
- *         <element name="status" type="{http://www.webservices.nl/soap/}DutchVehicleStatus" minOccurs="0"/>
- *         <element name="registration" type="{http://www.webservices.nl/soap/}DutchVehicleRegistration" minOccurs="0"/>
- *         <element name="details" type="{http://www.webservices.nl/soap/}DutchVehicleFeature" minOccurs="0"/>
- *         <element name="tax" type="{http://www.webservices.nl/soap/}DutchVehicleTaxData" minOccurs="0"/>
- *         <element name="technical_weight" type="{http://www.webservices.nl/soap/}DutchVehicleTechnicalWeight" minOccurs="0"/>
- *         <element name="engine" type="{http://www.webservices.nl/soap/}DutchVehicleEngine" minOccurs="0"/>
- *         <element name="environmental_impact" type="{http://www.webservices.nl/soap/}DutchVehicleEnvironmentArray" minOccurs="0"/>
- *         <element name="axle_information" type="{http://www.webservices.nl/soap/}DutchVehicleAxleArray" minOccurs="0"/>
- *         <element name="type_approval" type="{http://www.webservices.nl/soap/}DutchVehicleTypeApproval" minOccurs="0"/>
- *         <element name="body_approval" type="{http://www.webservices.nl/soap/}DutchVehicleBodyApprovalArray" minOccurs="0"/>
- *         <element name="remark" type="{http://www.webservices.nl/soap/}DutchVehicleRemarkArray" minOccurs="0"/>
- *         <element name="recall" type="{http://www.webservices.nl/soap/}DutchVehicleRecall" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicle", propOrder = { - -}) -public class DutchVehicle { - - @XmlElement(name = "basic_data", required = true) - protected DutchVehicleData basicData; - protected DutchVehicleStatus status; - protected DutchVehicleRegistration registration; - protected DutchVehicleFeature details; - protected DutchVehicleTaxData tax; - @XmlElement(name = "technical_weight") - protected DutchVehicleTechnicalWeight technicalWeight; - protected DutchVehicleEngine engine; - @XmlElement(name = "environmental_impact") - protected DutchVehicleEnvironmentArray environmentalImpact; - @XmlElement(name = "axle_information") - protected DutchVehicleAxleArray axleInformation; - @XmlElement(name = "type_approval") - protected DutchVehicleTypeApproval typeApproval; - @XmlElement(name = "body_approval") - protected DutchVehicleBodyApprovalArray bodyApproval; - protected DutchVehicleRemarkArray remark; - protected DutchVehicleRecall recall; - - /** - * Gets the value of the basicData property. - * - * @return - * possible object is - * {@link DutchVehicleData } - * - */ - public DutchVehicleData getBasicData() { - return basicData; - } - - /** - * Sets the value of the basicData property. - * - * @param value - * allowed object is - * {@link DutchVehicleData } - * - */ - public void setBasicData(DutchVehicleData value) { - this.basicData = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link DutchVehicleStatus } - * - */ - public DutchVehicleStatus getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link DutchVehicleStatus } - * - */ - public void setStatus(DutchVehicleStatus value) { - this.status = value; - } - - /** - * Gets the value of the registration property. - * - * @return - * possible object is - * {@link DutchVehicleRegistration } - * - */ - public DutchVehicleRegistration getRegistration() { - return registration; - } - - /** - * Sets the value of the registration property. - * - * @param value - * allowed object is - * {@link DutchVehicleRegistration } - * - */ - public void setRegistration(DutchVehicleRegistration value) { - this.registration = value; - } - - /** - * Gets the value of the details property. - * - * @return - * possible object is - * {@link DutchVehicleFeature } - * - */ - public DutchVehicleFeature getDetails() { - return details; - } - - /** - * Sets the value of the details property. - * - * @param value - * allowed object is - * {@link DutchVehicleFeature } - * - */ - public void setDetails(DutchVehicleFeature value) { - this.details = value; - } - - /** - * Gets the value of the tax property. - * - * @return - * possible object is - * {@link DutchVehicleTaxData } - * - */ - public DutchVehicleTaxData getTax() { - return tax; - } - - /** - * Sets the value of the tax property. - * - * @param value - * allowed object is - * {@link DutchVehicleTaxData } - * - */ - public void setTax(DutchVehicleTaxData value) { - this.tax = value; - } - - /** - * Gets the value of the technicalWeight property. - * - * @return - * possible object is - * {@link DutchVehicleTechnicalWeight } - * - */ - public DutchVehicleTechnicalWeight getTechnicalWeight() { - return technicalWeight; - } - - /** - * Sets the value of the technicalWeight property. - * - * @param value - * allowed object is - * {@link DutchVehicleTechnicalWeight } - * - */ - public void setTechnicalWeight(DutchVehicleTechnicalWeight value) { - this.technicalWeight = value; - } - - /** - * Gets the value of the engine property. - * - * @return - * possible object is - * {@link DutchVehicleEngine } - * - */ - public DutchVehicleEngine getEngine() { - return engine; - } - - /** - * Sets the value of the engine property. - * - * @param value - * allowed object is - * {@link DutchVehicleEngine } - * - */ - public void setEngine(DutchVehicleEngine value) { - this.engine = value; - } - - /** - * Gets the value of the environmentalImpact property. - * - * @return - * possible object is - * {@link DutchVehicleEnvironmentArray } - * - */ - public DutchVehicleEnvironmentArray getEnvironmentalImpact() { - return environmentalImpact; - } - - /** - * Sets the value of the environmentalImpact property. - * - * @param value - * allowed object is - * {@link DutchVehicleEnvironmentArray } - * - */ - public void setEnvironmentalImpact(DutchVehicleEnvironmentArray value) { - this.environmentalImpact = value; - } - - /** - * Gets the value of the axleInformation property. - * - * @return - * possible object is - * {@link DutchVehicleAxleArray } - * - */ - public DutchVehicleAxleArray getAxleInformation() { - return axleInformation; - } - - /** - * Sets the value of the axleInformation property. - * - * @param value - * allowed object is - * {@link DutchVehicleAxleArray } - * - */ - public void setAxleInformation(DutchVehicleAxleArray value) { - this.axleInformation = value; - } - - /** - * Gets the value of the typeApproval property. - * - * @return - * possible object is - * {@link DutchVehicleTypeApproval } - * - */ - public DutchVehicleTypeApproval getTypeApproval() { - return typeApproval; - } - - /** - * Sets the value of the typeApproval property. - * - * @param value - * allowed object is - * {@link DutchVehicleTypeApproval } - * - */ - public void setTypeApproval(DutchVehicleTypeApproval value) { - this.typeApproval = value; - } - - /** - * Gets the value of the bodyApproval property. - * - * @return - * possible object is - * {@link DutchVehicleBodyApprovalArray } - * - */ - public DutchVehicleBodyApprovalArray getBodyApproval() { - return bodyApproval; - } - - /** - * Sets the value of the bodyApproval property. - * - * @param value - * allowed object is - * {@link DutchVehicleBodyApprovalArray } - * - */ - public void setBodyApproval(DutchVehicleBodyApprovalArray value) { - this.bodyApproval = value; - } - - /** - * Gets the value of the remark property. - * - * @return - * possible object is - * {@link DutchVehicleRemarkArray } - * - */ - public DutchVehicleRemarkArray getRemark() { - return remark; - } - - /** - * Sets the value of the remark property. - * - * @param value - * allowed object is - * {@link DutchVehicleRemarkArray } - * - */ - public void setRemark(DutchVehicleRemarkArray value) { - this.remark = value; - } - - /** - * Gets the value of the recall property. - * - * @return - * possible object is - * {@link DutchVehicleRecall } - * - */ - public DutchVehicleRecall getRecall() { - return recall; - } - - /** - * Sets the value of the recall property. - * - * @param value - * allowed object is - * {@link DutchVehicleRecall } - * - */ - public void setRecall(DutchVehicleRecall value) { - this.recall = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleAxle.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleAxle.java deleted file mode 100644 index f54e600..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleAxle.java +++ /dev/null @@ -1,284 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleAxle complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleAxle">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="indication_driven_axle" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="indication_bogie_lift" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="max_axle_load" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="max_axle_load_technical" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="location_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="track_width" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="road_behavior_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="road_behavior_description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleAxle", propOrder = { - -}) -public class DutchVehicleAxle { - - protected Integer number; - @XmlElement(name = "indication_driven_axle") - protected Boolean indicationDrivenAxle; - @XmlElement(name = "indication_bogie_lift") - protected Boolean indicationBogieLift; - @XmlElement(name = "max_axle_load") - protected Integer maxAxleLoad; - @XmlElement(name = "max_axle_load_technical") - protected Integer maxAxleLoadTechnical; - @XmlElement(name = "location_code") - protected String locationCode; - @XmlElement(name = "track_width") - protected Integer trackWidth; - @XmlElement(name = "road_behavior_code") - protected String roadBehaviorCode; - @XmlElement(name = "road_behavior_description") - protected String roadBehaviorDescription; - - /** - * Gets the value of the number property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getNumber() { - return number; - } - - /** - * Sets the value of the number property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setNumber(Integer value) { - this.number = value; - } - - /** - * Gets the value of the indicationDrivenAxle property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicationDrivenAxle() { - return indicationDrivenAxle; - } - - /** - * Sets the value of the indicationDrivenAxle property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicationDrivenAxle(Boolean value) { - this.indicationDrivenAxle = value; - } - - /** - * Gets the value of the indicationBogieLift property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicationBogieLift() { - return indicationBogieLift; - } - - /** - * Sets the value of the indicationBogieLift property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicationBogieLift(Boolean value) { - this.indicationBogieLift = value; - } - - /** - * Gets the value of the maxAxleLoad property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxAxleLoad() { - return maxAxleLoad; - } - - /** - * Sets the value of the maxAxleLoad property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxAxleLoad(Integer value) { - this.maxAxleLoad = value; - } - - /** - * Gets the value of the maxAxleLoadTechnical property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaxAxleLoadTechnical() { - return maxAxleLoadTechnical; - } - - /** - * Sets the value of the maxAxleLoadTechnical property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaxAxleLoadTechnical(Integer value) { - this.maxAxleLoadTechnical = value; - } - - /** - * Gets the value of the locationCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocationCode() { - return locationCode; - } - - /** - * Sets the value of the locationCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocationCode(String value) { - this.locationCode = value; - } - - /** - * Gets the value of the trackWidth property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTrackWidth() { - return trackWidth; - } - - /** - * Sets the value of the trackWidth property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTrackWidth(Integer value) { - this.trackWidth = value; - } - - /** - * Gets the value of the roadBehaviorCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoadBehaviorCode() { - return roadBehaviorCode; - } - - /** - * Sets the value of the roadBehaviorCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoadBehaviorCode(String value) { - this.roadBehaviorCode = value; - } - - /** - * Gets the value of the roadBehaviorDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoadBehaviorDescription() { - return roadBehaviorDescription; - } - - /** - * Sets the value of the roadBehaviorDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoadBehaviorDescription(String value) { - this.roadBehaviorDescription = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleAxleArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleAxleArray.java deleted file mode 100644 index 52ce66b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleAxleArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleAxleArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleAxleArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchVehicleAxle" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleAxleArray", propOrder = { - "item" -}) -public class DutchVehicleAxleArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchVehicleAxle } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleBodyApproval.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleBodyApproval.java deleted file mode 100644 index f87d383..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleBodyApproval.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleBodyApproval complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleBodyApproval">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="type_id" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="type_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleBodyApproval", propOrder = { - -}) -public class DutchVehicleBodyApproval { - - @XmlElement(name = "type_id") - protected Integer typeId; - @XmlElement(name = "type_code") - protected String typeCode; - protected String description; - - /** - * Gets the value of the typeId property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getTypeId() { - return typeId; - } - - /** - * Sets the value of the typeId property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setTypeId(Integer value) { - this.typeId = value; - } - - /** - * Gets the value of the typeCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypeCode() { - return typeCode; - } - - /** - * Sets the value of the typeCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypeCode(String value) { - this.typeCode = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleBodyApprovalArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleBodyApprovalArray.java deleted file mode 100644 index 9a26418..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleBodyApprovalArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleBodyApprovalArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleBodyApprovalArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchVehicleBodyApproval" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleBodyApprovalArray", propOrder = { - "item" -}) -public class DutchVehicleBodyApprovalArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchVehicleBodyApproval } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleData.java deleted file mode 100644 index b8aad0e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleData.java +++ /dev/null @@ -1,334 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="location_vin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="catalog_price" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="brand_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="brand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="body_style" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="color" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="secondary_color" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleData", propOrder = { - -}) -public class DutchVehicleData { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - @XmlElement(name = "location_vin_number") - protected String locationVinNumber; - @XmlElement(name = "catalog_price") - protected Integer catalogPrice; - protected String category; - @XmlElement(name = "brand_code") - protected String brandCode; - protected String brand; - protected String model; - protected String type; - @XmlElement(name = "body_style") - protected String bodyStyle; - protected String color; - @XmlElement(name = "secondary_color") - protected String secondaryColor; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - - /** - * Gets the value of the locationVinNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocationVinNumber() { - return locationVinNumber; - } - - /** - * Sets the value of the locationVinNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocationVinNumber(String value) { - this.locationVinNumber = value; - } - - /** - * Gets the value of the catalogPrice property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCatalogPrice() { - return catalogPrice; - } - - /** - * Sets the value of the catalogPrice property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCatalogPrice(Integer value) { - this.catalogPrice = value; - } - - /** - * Gets the value of the category property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCategory() { - return category; - } - - /** - * Sets the value of the category property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCategory(String value) { - this.category = value; - } - - /** - * Gets the value of the brandCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrandCode() { - return brandCode; - } - - /** - * Sets the value of the brandCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrandCode(String value) { - this.brandCode = value; - } - - /** - * Gets the value of the brand property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrand() { - return brand; - } - - /** - * Sets the value of the brand property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrand(String value) { - this.brand = value; - } - - /** - * Gets the value of the model property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModel() { - return model; - } - - /** - * Sets the value of the model property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModel(String value) { - this.model = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the bodyStyle property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBodyStyle() { - return bodyStyle; - } - - /** - * Sets the value of the bodyStyle property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBodyStyle(String value) { - this.bodyStyle = value; - } - - /** - * Gets the value of the color property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getColor() { - return color; - } - - /** - * Sets the value of the color property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setColor(String value) { - this.color = value; - } - - /** - * Gets the value of the secondaryColor property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondaryColor() { - return secondaryColor; - } - - /** - * Sets the value of the secondaryColor property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondaryColor(String value) { - this.secondaryColor = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEngine.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEngine.java deleted file mode 100644 index 1827e55..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEngine.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleEngine complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleEngine">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="cylinder_capacity" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="cylinders" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="g3_indication" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="energy_label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleEngine", propOrder = { - -}) -public class DutchVehicleEngine { - - @XmlElement(name = "cylinder_capacity") - protected Integer cylinderCapacity; - protected Integer cylinders; - @XmlElement(name = "g3_indication") - protected Boolean g3Indication; - @XmlElement(name = "energy_label") - protected String energyLabel; - - /** - * Gets the value of the cylinderCapacity property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCylinderCapacity() { - return cylinderCapacity; - } - - /** - * Sets the value of the cylinderCapacity property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCylinderCapacity(Integer value) { - this.cylinderCapacity = value; - } - - /** - * Gets the value of the cylinders property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCylinders() { - return cylinders; - } - - /** - * Sets the value of the cylinders property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCylinders(Integer value) { - this.cylinders = value; - } - - /** - * Gets the value of the g3Indication property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isG3Indication() { - return g3Indication; - } - - /** - * Sets the value of the g3Indication property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setG3Indication(Boolean value) { - this.g3Indication = value; - } - - /** - * Gets the value of the energyLabel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEnergyLabel() { - return energyLabel; - } - - /** - * Sets the value of the energyLabel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEnergyLabel(String value) { - this.energyLabel = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEnvironment.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEnvironment.java deleted file mode 100644 index f306b2d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEnvironment.java +++ /dev/null @@ -1,502 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleEnvironment complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleEnvironment">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="fuel_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="fuel_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="usage_city" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="usage_highway" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="usage_combined" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="max_power" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="max_power_continuous" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="noise_level_stationary" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="noise_level_stationary_rpm" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="noise_level_driving" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="emission_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="co2_emission_combined" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="co2_emission_weighted" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="particulate_emission" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="particulate_filter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="emission_particles_light" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="emission_particles_heavy" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleEnvironment", propOrder = { - -}) -public class DutchVehicleEnvironment { - - @XmlElement(name = "fuel_type") - protected String fuelType; - @XmlElement(name = "fuel_code") - protected String fuelCode; - @XmlElement(name = "usage_city") - protected BigDecimal usageCity; - @XmlElement(name = "usage_highway") - protected BigDecimal usageHighway; - @XmlElement(name = "usage_combined") - protected BigDecimal usageCombined; - @XmlElement(name = "max_power") - protected BigDecimal maxPower; - @XmlElement(name = "max_power_continuous") - protected BigDecimal maxPowerContinuous; - @XmlElement(name = "noise_level_stationary") - protected Integer noiseLevelStationary; - @XmlElement(name = "noise_level_stationary_rpm") - protected Integer noiseLevelStationaryRpm; - @XmlElement(name = "noise_level_driving") - protected Integer noiseLevelDriving; - @XmlElement(name = "emission_code") - protected String emissionCode; - @XmlElement(name = "co2_emission_combined") - protected Integer co2EmissionCombined; - @XmlElement(name = "co2_emission_weighted") - protected Integer co2EmissionWeighted; - @XmlElement(name = "particulate_emission") - protected BigDecimal particulateEmission; - @XmlElement(name = "particulate_filter") - protected String particulateFilter; - @XmlElement(name = "emission_particles_light") - protected BigDecimal emissionParticlesLight; - @XmlElement(name = "emission_particles_heavy") - protected BigDecimal emissionParticlesHeavy; - - /** - * Gets the value of the fuelType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFuelType() { - return fuelType; - } - - /** - * Sets the value of the fuelType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFuelType(String value) { - this.fuelType = value; - } - - /** - * Gets the value of the fuelCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFuelCode() { - return fuelCode; - } - - /** - * Sets the value of the fuelCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFuelCode(String value) { - this.fuelCode = value; - } - - /** - * Gets the value of the usageCity property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getUsageCity() { - return usageCity; - } - - /** - * Sets the value of the usageCity property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setUsageCity(BigDecimal value) { - this.usageCity = value; - } - - /** - * Gets the value of the usageHighway property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getUsageHighway() { - return usageHighway; - } - - /** - * Sets the value of the usageHighway property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setUsageHighway(BigDecimal value) { - this.usageHighway = value; - } - - /** - * Gets the value of the usageCombined property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getUsageCombined() { - return usageCombined; - } - - /** - * Sets the value of the usageCombined property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setUsageCombined(BigDecimal value) { - this.usageCombined = value; - } - - /** - * Gets the value of the maxPower property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getMaxPower() { - return maxPower; - } - - /** - * Sets the value of the maxPower property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setMaxPower(BigDecimal value) { - this.maxPower = value; - } - - /** - * Gets the value of the maxPowerContinuous property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getMaxPowerContinuous() { - return maxPowerContinuous; - } - - /** - * Sets the value of the maxPowerContinuous property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setMaxPowerContinuous(BigDecimal value) { - this.maxPowerContinuous = value; - } - - /** - * Gets the value of the noiseLevelStationary property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getNoiseLevelStationary() { - return noiseLevelStationary; - } - - /** - * Sets the value of the noiseLevelStationary property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setNoiseLevelStationary(Integer value) { - this.noiseLevelStationary = value; - } - - /** - * Gets the value of the noiseLevelStationaryRpm property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getNoiseLevelStationaryRpm() { - return noiseLevelStationaryRpm; - } - - /** - * Sets the value of the noiseLevelStationaryRpm property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setNoiseLevelStationaryRpm(Integer value) { - this.noiseLevelStationaryRpm = value; - } - - /** - * Gets the value of the noiseLevelDriving property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getNoiseLevelDriving() { - return noiseLevelDriving; - } - - /** - * Sets the value of the noiseLevelDriving property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setNoiseLevelDriving(Integer value) { - this.noiseLevelDriving = value; - } - - /** - * Gets the value of the emissionCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmissionCode() { - return emissionCode; - } - - /** - * Sets the value of the emissionCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmissionCode(String value) { - this.emissionCode = value; - } - - /** - * Gets the value of the co2EmissionCombined property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCo2EmissionCombined() { - return co2EmissionCombined; - } - - /** - * Sets the value of the co2EmissionCombined property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCo2EmissionCombined(Integer value) { - this.co2EmissionCombined = value; - } - - /** - * Gets the value of the co2EmissionWeighted property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCo2EmissionWeighted() { - return co2EmissionWeighted; - } - - /** - * Sets the value of the co2EmissionWeighted property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCo2EmissionWeighted(Integer value) { - this.co2EmissionWeighted = value; - } - - /** - * Gets the value of the particulateEmission property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getParticulateEmission() { - return particulateEmission; - } - - /** - * Sets the value of the particulateEmission property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setParticulateEmission(BigDecimal value) { - this.particulateEmission = value; - } - - /** - * Gets the value of the particulateFilter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getParticulateFilter() { - return particulateFilter; - } - - /** - * Sets the value of the particulateFilter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setParticulateFilter(String value) { - this.particulateFilter = value; - } - - /** - * Gets the value of the emissionParticlesLight property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getEmissionParticlesLight() { - return emissionParticlesLight; - } - - /** - * Sets the value of the emissionParticlesLight property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setEmissionParticlesLight(BigDecimal value) { - this.emissionParticlesLight = value; - } - - /** - * Gets the value of the emissionParticlesHeavy property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getEmissionParticlesHeavy() { - return emissionParticlesHeavy; - } - - /** - * Sets the value of the emissionParticlesHeavy property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setEmissionParticlesHeavy(BigDecimal value) { - this.emissionParticlesHeavy = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEnvironmentArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEnvironmentArray.java deleted file mode 100644 index c000fc4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleEnvironmentArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleEnvironmentArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleEnvironmentArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchVehicleEnvironment" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleEnvironmentArray", propOrder = { - "item" -}) -public class DutchVehicleEnvironmentArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchVehicleEnvironment } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleFeature.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleFeature.java deleted file mode 100644 index 6d99b9c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleFeature.java +++ /dev/null @@ -1,359 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleFeature complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleFeature">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="length" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="width" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="doors" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="seats" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="standing_room" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="axles" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="wheels" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="wheel_base" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="distance_front_to_clutch" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="distance_clutch_to_rear" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="speed_limit_difference" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleFeature", propOrder = { - -}) -public class DutchVehicleFeature { - - protected Integer length; - protected Integer width; - protected Integer doors; - protected Integer seats; - @XmlElement(name = "standing_room") - protected Integer standingRoom; - protected Integer weight; - protected Integer axles; - protected Integer wheels; - @XmlElement(name = "wheel_base") - protected Integer wheelBase; - @XmlElement(name = "distance_front_to_clutch") - protected Integer distanceFrontToClutch; - @XmlElement(name = "distance_clutch_to_rear") - protected Integer distanceClutchToRear; - @XmlElement(name = "speed_limit_difference") - protected Integer speedLimitDifference; - - /** - * Gets the value of the length property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLength() { - return length; - } - - /** - * Sets the value of the length property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLength(Integer value) { - this.length = value; - } - - /** - * Gets the value of the width property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getWidth() { - return width; - } - - /** - * Sets the value of the width property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setWidth(Integer value) { - this.width = value; - } - - /** - * Gets the value of the doors property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDoors() { - return doors; - } - - /** - * Sets the value of the doors property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDoors(Integer value) { - this.doors = value; - } - - /** - * Gets the value of the seats property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getSeats() { - return seats; - } - - /** - * Sets the value of the seats property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setSeats(Integer value) { - this.seats = value; - } - - /** - * Gets the value of the standingRoom property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getStandingRoom() { - return standingRoom; - } - - /** - * Sets the value of the standingRoom property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setStandingRoom(Integer value) { - this.standingRoom = value; - } - - /** - * Gets the value of the weight property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getWeight() { - return weight; - } - - /** - * Sets the value of the weight property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setWeight(Integer value) { - this.weight = value; - } - - /** - * Gets the value of the axles property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAxles() { - return axles; - } - - /** - * Sets the value of the axles property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAxles(Integer value) { - this.axles = value; - } - - /** - * Gets the value of the wheels property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getWheels() { - return wheels; - } - - /** - * Sets the value of the wheels property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setWheels(Integer value) { - this.wheels = value; - } - - /** - * Gets the value of the wheelBase property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getWheelBase() { - return wheelBase; - } - - /** - * Sets the value of the wheelBase property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setWheelBase(Integer value) { - this.wheelBase = value; - } - - /** - * Gets the value of the distanceFrontToClutch property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDistanceFrontToClutch() { - return distanceFrontToClutch; - } - - /** - * Sets the value of the distanceFrontToClutch property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDistanceFrontToClutch(Integer value) { - this.distanceFrontToClutch = value; - } - - /** - * Gets the value of the distanceClutchToRear property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDistanceClutchToRear() { - return distanceClutchToRear; - } - - /** - * Sets the value of the distanceClutchToRear property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDistanceClutchToRear(Integer value) { - this.distanceClutchToRear = value; - } - - /** - * Gets the value of the speedLimitDifference property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getSpeedLimitDifference() { - return speedLimitDifference; - } - - /** - * Sets the value of the speedLimitDifference property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setSpeedLimitDifference(Integer value) { - this.speedLimitDifference = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetMarketValueRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetMarketValueRequestType.java deleted file mode 100644 index 947fa2f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetMarketValueRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchVehicleGetMarketValueRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchVehicleGetMarketValueRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchVehicleGetMarketValueRequestType", propOrder = { - -}) -public class DutchVehicleGetMarketValueRequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetMarketValueResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetMarketValueResponseType.java deleted file mode 100644 index 6e10f68..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetMarketValueResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchVehicleGetMarketValueResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchVehicleGetMarketValueResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchVehicleMarketValue"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchVehicleGetMarketValueResponseType", propOrder = { - -}) -public class DutchVehicleGetMarketValueResponseType { - - @XmlElement(required = true) - protected DutchVehicleMarketValue out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchVehicleMarketValue } - * - */ - public DutchVehicleMarketValue getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchVehicleMarketValue } - * - */ - public void setOut(DutchVehicleMarketValue value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetOwnerHistoryRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetOwnerHistoryRequestType.java deleted file mode 100644 index 7a50a9a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetOwnerHistoryRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchVehicleGetOwnerHistoryRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchVehicleGetOwnerHistoryRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchVehicleGetOwnerHistoryRequestType", propOrder = { - -}) -public class DutchVehicleGetOwnerHistoryRequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetOwnerHistoryResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetOwnerHistoryResponseType.java deleted file mode 100644 index ad9fc1b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetOwnerHistoryResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchVehicleGetOwnerHistoryResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchVehicleGetOwnerHistoryResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchVehicleOwnerHistory"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchVehicleGetOwnerHistoryResponseType", propOrder = { - -}) -public class DutchVehicleGetOwnerHistoryResponseType { - - @XmlElement(required = true) - protected DutchVehicleOwnerHistory out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchVehicleOwnerHistory } - * - */ - public DutchVehicleOwnerHistory getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchVehicleOwnerHistory } - * - */ - public void setOut(DutchVehicleOwnerHistory value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetPurchaseReferenceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetPurchaseReferenceRequestType.java deleted file mode 100644 index d396ab0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetPurchaseReferenceRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchVehicleGetPurchaseReferenceRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchVehicleGetPurchaseReferenceRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchVehicleGetPurchaseReferenceRequestType", propOrder = { - -}) -public class DutchVehicleGetPurchaseReferenceRequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetPurchaseReferenceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetPurchaseReferenceResponseType.java deleted file mode 100644 index badabe5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetPurchaseReferenceResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchVehicleGetPurchaseReferenceResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchVehicleGetPurchaseReferenceResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchVehiclePurchaseReference"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchVehicleGetPurchaseReferenceResponseType", propOrder = { - -}) -public class DutchVehicleGetPurchaseReferenceResponseType { - - @XmlElement(required = true) - protected DutchVehiclePurchaseReference out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchVehiclePurchaseReference } - * - */ - public DutchVehiclePurchaseReference getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchVehiclePurchaseReference } - * - */ - public void setOut(DutchVehiclePurchaseReference value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleRequestType.java deleted file mode 100644 index 42ad0a5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchVehicleGetVehicleRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchVehicleGetVehicleRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchVehicleGetVehicleRequestType", propOrder = { - -}) -public class DutchVehicleGetVehicleRequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleResponseType.java deleted file mode 100644 index e4f2005..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchVehicleGetVehicleResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchVehicleGetVehicleResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchVehicle"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchVehicleGetVehicleResponseType", propOrder = { - -}) -public class DutchVehicleGetVehicleResponseType { - - @XmlElement(required = true) - protected DutchVehicle out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchVehicle } - * - */ - public DutchVehicle getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchVehicle } - * - */ - public void setOut(DutchVehicle value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleV2RequestType.java deleted file mode 100644 index 1a2b287..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleV2RequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchVehicleGetVehicleV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchVehicleGetVehicleV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="license_plate" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchVehicleGetVehicleV2RequestType", propOrder = { - -}) -public class DutchVehicleGetVehicleV2RequestType { - - @XmlElement(name = "license_plate", required = true) - protected String licensePlate; - - /** - * Gets the value of the licensePlate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLicensePlate() { - return licensePlate; - } - - /** - * Sets the value of the licensePlate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLicensePlate(String value) { - this.licensePlate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleV2ResponseType.java deleted file mode 100644 index 95f1b37..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleGetVehicleV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for dutchVehicleGetVehicleV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="dutchVehicleGetVehicleV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}DutchVehicleV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "dutchVehicleGetVehicleV2ResponseType", propOrder = { - -}) -public class DutchVehicleGetVehicleV2ResponseType { - - @XmlElement(required = true) - protected DutchVehicleV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link DutchVehicleV2 } - * - */ - public DutchVehicleV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link DutchVehicleV2 } - * - */ - public void setOut(DutchVehicleV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleMarketValue.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleMarketValue.java deleted file mode 100644 index 69bc7ff..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleMarketValue.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleMarketValue complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleMarketValue">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="valuations" type="{http://www.webservices.nl/soap/}DutchVehiclePriceValuationArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleMarketValue", propOrder = { - -}) -public class DutchVehicleMarketValue { - - protected DutchVehiclePriceValuationArray valuations; - - /** - * Gets the value of the valuations property. - * - * @return - * possible object is - * {@link DutchVehiclePriceValuationArray } - * - */ - public DutchVehiclePriceValuationArray getValuations() { - return valuations; - } - - /** - * Sets the value of the valuations property. - * - * @param value - * allowed object is - * {@link DutchVehiclePriceValuationArray } - * - */ - public void setValuations(DutchVehiclePriceValuationArray value) { - this.valuations = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleMileage.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleMileage.java deleted file mode 100644 index 6fd5533..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleMileage.java +++ /dev/null @@ -1,115 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleMileage complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleMileage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="registration_year" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="indication" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleMileage", propOrder = { - -}) -public class DutchVehicleMileage { - - @XmlElement(name = "registration_year") - protected int registrationYear; - @XmlElement(required = true) - protected String indication; - @XmlElement(required = true) - protected String description; - - /** - * Gets the value of the registrationYear property. - * - */ - public int getRegistrationYear() { - return registrationYear; - } - - /** - * Sets the value of the registrationYear property. - * - */ - public void setRegistrationYear(int value) { - this.registrationYear = value; - } - - /** - * Gets the value of the indication property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndication() { - return indication; - } - - /** - * Sets the value of the indication property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndication(String value) { - this.indication = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnerHistory.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnerHistory.java deleted file mode 100644 index 4fb348b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnerHistory.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleOwnerHistory complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleOwnerHistory">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="ownerships" type="{http://www.webservices.nl/soap/}DutchVehicleOwnershipArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleOwnerHistory", propOrder = { - -}) -public class DutchVehicleOwnerHistory { - - protected DutchVehicleOwnershipArray ownerships; - - /** - * Gets the value of the ownerships property. - * - * @return - * possible object is - * {@link DutchVehicleOwnershipArray } - * - */ - public DutchVehicleOwnershipArray getOwnerships() { - return ownerships; - } - - /** - * Sets the value of the ownerships property. - * - * @param value - * allowed object is - * {@link DutchVehicleOwnershipArray } - * - */ - public void setOwnerships(DutchVehicleOwnershipArray value) { - this.ownerships = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnership.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnership.java deleted file mode 100644 index 0a269d6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnership.java +++ /dev/null @@ -1,145 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchVehicleOwnership complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleOwnership">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_start" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="date_end" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="duration" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleOwnership", propOrder = { - -}) -public class DutchVehicleOwnership { - - @XmlElement(required = true) - protected String type; - @XmlElement(name = "date_start", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateStart; - @XmlElement(name = "date_end") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateEnd; - protected int duration; - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the dateStart property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateStart() { - return dateStart; - } - - /** - * Sets the value of the dateStart property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateStart(XMLGregorianCalendar value) { - this.dateStart = value; - } - - /** - * Gets the value of the dateEnd property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateEnd() { - return dateEnd; - } - - /** - * Sets the value of the dateEnd property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateEnd(XMLGregorianCalendar value) { - this.dateEnd = value; - } - - /** - * Gets the value of the duration property. - * - */ - public int getDuration() { - return duration; - } - - /** - * Sets the value of the duration property. - * - */ - public void setDuration(int value) { - this.duration = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnershipArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnershipArray.java deleted file mode 100644 index a4cf6a8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleOwnershipArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleOwnershipArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleOwnershipArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchVehicleOwnership" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleOwnershipArray", propOrder = { - "item" -}) -public class DutchVehicleOwnershipArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchVehicleOwnership } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePrice.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePrice.java deleted file mode 100644 index 8017b81..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePrice.java +++ /dev/null @@ -1,178 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehiclePrice complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehiclePrice">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="purchase_price" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
- *         <element name="vehicle_purchase_tax" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="value_added_tax" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="net_purchase_price" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="calculation_method" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehiclePrice", propOrder = { - -}) -public class DutchVehiclePrice { - - @XmlElement(name = "purchase_price", required = true) - protected BigDecimal purchasePrice; - @XmlElement(name = "vehicle_purchase_tax") - protected BigDecimal vehiclePurchaseTax; - @XmlElement(name = "value_added_tax") - protected BigDecimal valueAddedTax; - @XmlElement(name = "net_purchase_price") - protected BigDecimal netPurchasePrice; - @XmlElement(name = "calculation_method", required = true) - protected String calculationMethod; - - /** - * Gets the value of the purchasePrice property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getPurchasePrice() { - return purchasePrice; - } - - /** - * Sets the value of the purchasePrice property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setPurchasePrice(BigDecimal value) { - this.purchasePrice = value; - } - - /** - * Gets the value of the vehiclePurchaseTax property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getVehiclePurchaseTax() { - return vehiclePurchaseTax; - } - - /** - * Sets the value of the vehiclePurchaseTax property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setVehiclePurchaseTax(BigDecimal value) { - this.vehiclePurchaseTax = value; - } - - /** - * Gets the value of the valueAddedTax property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getValueAddedTax() { - return valueAddedTax; - } - - /** - * Sets the value of the valueAddedTax property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setValueAddedTax(BigDecimal value) { - this.valueAddedTax = value; - } - - /** - * Gets the value of the netPurchasePrice property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getNetPurchasePrice() { - return netPurchasePrice; - } - - /** - * Sets the value of the netPurchasePrice property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setNetPurchasePrice(BigDecimal value) { - this.netPurchasePrice = value; - } - - /** - * Gets the value of the calculationMethod property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCalculationMethod() { - return calculationMethod; - } - - /** - * Sets the value of the calculationMethod property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCalculationMethod(String value) { - this.calculationMethod = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePriceValuation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePriceValuation.java deleted file mode 100644 index 4ba04b1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePriceValuation.java +++ /dev/null @@ -1,226 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehiclePriceValuation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehiclePriceValuation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="brand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="model" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="retail" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="exchange" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="trade" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="calculation_method" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehiclePriceValuation", propOrder = { - -}) -public class DutchVehiclePriceValuation { - - protected String brand; - protected String model; - protected String type; - protected BigInteger retail; - protected BigInteger exchange; - protected BigInteger trade; - @XmlElement(name = "calculation_method") - protected String calculationMethod; - - /** - * Gets the value of the brand property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBrand() { - return brand; - } - - /** - * Sets the value of the brand property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBrand(String value) { - this.brand = value; - } - - /** - * Gets the value of the model property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModel() { - return model; - } - - /** - * Sets the value of the model property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModel(String value) { - this.model = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the retail property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getRetail() { - return retail; - } - - /** - * Sets the value of the retail property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setRetail(BigInteger value) { - this.retail = value; - } - - /** - * Gets the value of the exchange property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getExchange() { - return exchange; - } - - /** - * Sets the value of the exchange property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setExchange(BigInteger value) { - this.exchange = value; - } - - /** - * Gets the value of the trade property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getTrade() { - return trade; - } - - /** - * Sets the value of the trade property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setTrade(BigInteger value) { - this.trade = value; - } - - /** - * Gets the value of the calculationMethod property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCalculationMethod() { - return calculationMethod; - } - - /** - * Sets the value of the calculationMethod property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCalculationMethod(String value) { - this.calculationMethod = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePriceValuationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePriceValuationArray.java deleted file mode 100644 index 34c864c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePriceValuationArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehiclePriceValuationArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehiclePriceValuationArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchVehiclePriceValuation" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehiclePriceValuationArray", propOrder = { - "item" -}) -public class DutchVehiclePriceValuationArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchVehiclePriceValuation } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePurchase.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePurchase.java deleted file mode 100644 index f7e62b2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePurchase.java +++ /dev/null @@ -1,99 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchVehiclePurchase complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehiclePurchase">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="reference_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="price_data" type="{http://www.webservices.nl/soap/}DutchVehiclePrice"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehiclePurchase", propOrder = { - -}) -public class DutchVehiclePurchase { - - @XmlElement(name = "reference_date", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar referenceDate; - @XmlElement(name = "price_data", required = true) - protected DutchVehiclePrice priceData; - - /** - * Gets the value of the referenceDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getReferenceDate() { - return referenceDate; - } - - /** - * Sets the value of the referenceDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setReferenceDate(XMLGregorianCalendar value) { - this.referenceDate = value; - } - - /** - * Gets the value of the priceData property. - * - * @return - * possible object is - * {@link DutchVehiclePrice } - * - */ - public DutchVehiclePrice getPriceData() { - return priceData; - } - - /** - * Sets the value of the priceData property. - * - * @param value - * allowed object is - * {@link DutchVehiclePrice } - * - */ - public void setPriceData(DutchVehiclePrice value) { - this.priceData = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePurchaseReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePurchaseReference.java deleted file mode 100644 index 1708521..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehiclePurchaseReference.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehiclePurchaseReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehiclePurchaseReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="basic_data" type="{http://www.webservices.nl/soap/}DutchVehicleData"/>
- *         <element name="reference" type="{http://www.webservices.nl/soap/}DutchVehicleReference"/>
- *         <element name="purchase_data" type="{http://www.webservices.nl/soap/}DutchVehiclePurchase"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehiclePurchaseReference", propOrder = { - -}) -public class DutchVehiclePurchaseReference { - - @XmlElement(name = "basic_data", required = true) - protected DutchVehicleData basicData; - @XmlElement(required = true) - protected DutchVehicleReference reference; - @XmlElement(name = "purchase_data", required = true) - protected DutchVehiclePurchase purchaseData; - - /** - * Gets the value of the basicData property. - * - * @return - * possible object is - * {@link DutchVehicleData } - * - */ - public DutchVehicleData getBasicData() { - return basicData; - } - - /** - * Sets the value of the basicData property. - * - * @param value - * allowed object is - * {@link DutchVehicleData } - * - */ - public void setBasicData(DutchVehicleData value) { - this.basicData = value; - } - - /** - * Gets the value of the reference property. - * - * @return - * possible object is - * {@link DutchVehicleReference } - * - */ - public DutchVehicleReference getReference() { - return reference; - } - - /** - * Sets the value of the reference property. - * - * @param value - * allowed object is - * {@link DutchVehicleReference } - * - */ - public void setReference(DutchVehicleReference value) { - this.reference = value; - } - - /** - * Gets the value of the purchaseData property. - * - * @return - * possible object is - * {@link DutchVehiclePurchase } - * - */ - public DutchVehiclePurchase getPurchaseData() { - return purchaseData; - } - - /** - * Sets the value of the purchaseData property. - * - * @param value - * allowed object is - * {@link DutchVehiclePurchase } - * - */ - public void setPurchaseData(DutchVehiclePurchase value) { - this.purchaseData = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRecall.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRecall.java deleted file mode 100644 index c0bed3d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRecall.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleRecall complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleRecall">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="defects" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleRecall", propOrder = { - -}) -public class DutchVehicleRecall { - - protected String status; - protected String defects; - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the defects property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDefects() { - return defects; - } - - /** - * Sets the value of the defects property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDefects(String value) { - this.defects = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleReference.java deleted file mode 100644 index 2ebc134..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleReference.java +++ /dev/null @@ -1,205 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchVehicleReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_first_admission" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="year_manufactored" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="fuel_type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="maximum_mass_payload" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleReference", propOrder = { - -}) -public class DutchVehicleReference { - - protected String version; - @XmlElement(name = "date_first_admission") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFirstAdmission; - @XmlElement(name = "year_manufactored") - protected Integer yearManufactored; - @XmlElement(name = "fuel_type") - protected String fuelType; - protected Integer weight; - @XmlElement(name = "maximum_mass_payload") - protected Integer maximumMassPayload; - - /** - * Gets the value of the version property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersion() { - return version; - } - - /** - * Sets the value of the version property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersion(String value) { - this.version = value; - } - - /** - * Gets the value of the dateFirstAdmission property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFirstAdmission() { - return dateFirstAdmission; - } - - /** - * Sets the value of the dateFirstAdmission property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFirstAdmission(XMLGregorianCalendar value) { - this.dateFirstAdmission = value; - } - - /** - * Gets the value of the yearManufactored property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getYearManufactored() { - return yearManufactored; - } - - /** - * Sets the value of the yearManufactored property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setYearManufactored(Integer value) { - this.yearManufactored = value; - } - - /** - * Gets the value of the fuelType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFuelType() { - return fuelType; - } - - /** - * Sets the value of the fuelType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFuelType(String value) { - this.fuelType = value; - } - - /** - * Gets the value of the weight property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getWeight() { - return weight; - } - - /** - * Sets the value of the weight property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setWeight(Integer value) { - this.weight = value; - } - - /** - * Gets the value of the maximumMassPayload property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaximumMassPayload() { - return maximumMassPayload; - } - - /** - * Sets the value of the maximumMassPayload property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaximumMassPayload(Integer value) { - this.maximumMassPayload = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRegistration.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRegistration.java deleted file mode 100644 index d6197f4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRegistration.java +++ /dev/null @@ -1,238 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DutchVehicleRegistration complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleRegistration">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="date_apk_due_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="date_first_issuing" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="date_first_admission" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="date_suspension_end_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="date_tachograph_expiration" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="date_latest_name_registration" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="ownerships" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleRegistration", propOrder = { - -}) -public class DutchVehicleRegistration { - - @XmlElement(name = "date_apk_due_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateApkDueDate; - @XmlElement(name = "date_first_issuing") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFirstIssuing; - @XmlElement(name = "date_first_admission") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFirstAdmission; - @XmlElement(name = "date_suspension_end_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateSuspensionEndDate; - @XmlElement(name = "date_tachograph_expiration") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateTachographExpiration; - @XmlElement(name = "date_latest_name_registration") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateLatestNameRegistration; - protected Integer ownerships; - - /** - * Gets the value of the dateApkDueDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateApkDueDate() { - return dateApkDueDate; - } - - /** - * Sets the value of the dateApkDueDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateApkDueDate(XMLGregorianCalendar value) { - this.dateApkDueDate = value; - } - - /** - * Gets the value of the dateFirstIssuing property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFirstIssuing() { - return dateFirstIssuing; - } - - /** - * Sets the value of the dateFirstIssuing property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFirstIssuing(XMLGregorianCalendar value) { - this.dateFirstIssuing = value; - } - - /** - * Gets the value of the dateFirstAdmission property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFirstAdmission() { - return dateFirstAdmission; - } - - /** - * Sets the value of the dateFirstAdmission property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFirstAdmission(XMLGregorianCalendar value) { - this.dateFirstAdmission = value; - } - - /** - * Gets the value of the dateSuspensionEndDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateSuspensionEndDate() { - return dateSuspensionEndDate; - } - - /** - * Sets the value of the dateSuspensionEndDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateSuspensionEndDate(XMLGregorianCalendar value) { - this.dateSuspensionEndDate = value; - } - - /** - * Gets the value of the dateTachographExpiration property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateTachographExpiration() { - return dateTachographExpiration; - } - - /** - * Sets the value of the dateTachographExpiration property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateTachographExpiration(XMLGregorianCalendar value) { - this.dateTachographExpiration = value; - } - - /** - * Gets the value of the dateLatestNameRegistration property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateLatestNameRegistration() { - return dateLatestNameRegistration; - } - - /** - * Sets the value of the dateLatestNameRegistration property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateLatestNameRegistration(XMLGregorianCalendar value) { - this.dateLatestNameRegistration = value; - } - - /** - * Gets the value of the ownerships property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOwnerships() { - return ownerships; - } - - /** - * Sets the value of the ownerships property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOwnerships(Integer value) { - this.ownerships = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRemark.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRemark.java deleted file mode 100644 index 2fbb391..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRemark.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleRemark complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleRemark">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="vehicle_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="variable_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleRemark", propOrder = { - -}) -public class DutchVehicleRemark { - - @XmlElement(name = "vehicle_code") - protected String vehicleCode; - @XmlElement(name = "variable_code") - protected String variableCode; - protected String description; - - /** - * Gets the value of the vehicleCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVehicleCode() { - return vehicleCode; - } - - /** - * Sets the value of the vehicleCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVehicleCode(String value) { - this.vehicleCode = value; - } - - /** - * Gets the value of the variableCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVariableCode() { - return variableCode; - } - - /** - * Sets the value of the variableCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVariableCode(String value) { - this.variableCode = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRemarkArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRemarkArray.java deleted file mode 100644 index ab9ad98..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleRemarkArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleRemarkArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleRemarkArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}DutchVehicleRemark" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleRemarkArray", propOrder = { - "item" -}) -public class DutchVehicleRemarkArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DutchVehicleRemark } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleStatus.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleStatus.java deleted file mode 100644 index 06ca6e6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleStatus.java +++ /dev/null @@ -1,199 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleStatus complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleStatus">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="insured" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="awaiting_inspection" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="missed" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="stolen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="exported" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="suspended" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleStatus", propOrder = { - -}) -public class DutchVehicleStatus { - - protected Boolean insured; - @XmlElement(name = "awaiting_inspection") - protected Boolean awaitingInspection; - protected Boolean missed; - protected Boolean stolen; - protected Boolean exported; - protected Boolean suspended; - - /** - * Gets the value of the insured property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isInsured() { - return insured; - } - - /** - * Sets the value of the insured property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setInsured(Boolean value) { - this.insured = value; - } - - /** - * Gets the value of the awaitingInspection property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isAwaitingInspection() { - return awaitingInspection; - } - - /** - * Sets the value of the awaitingInspection property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAwaitingInspection(Boolean value) { - this.awaitingInspection = value; - } - - /** - * Gets the value of the missed property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isMissed() { - return missed; - } - - /** - * Sets the value of the missed property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setMissed(Boolean value) { - this.missed = value; - } - - /** - * Gets the value of the stolen property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isStolen() { - return stolen; - } - - /** - * Sets the value of the stolen property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setStolen(Boolean value) { - this.stolen = value; - } - - /** - * Gets the value of the exported property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isExported() { - return exported; - } - - /** - * Sets the value of the exported property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setExported(Boolean value) { - this.exported = value; - } - - /** - * Gets the value of the suspended property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isSuspended() { - return suspended; - } - - /** - * Sets the value of the suspended property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setSuspended(Boolean value) { - this.suspended = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTaxData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTaxData.java deleted file mode 100644 index a73ddde..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTaxData.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleTaxData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleTaxData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="base" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleTaxData", propOrder = { - -}) -public class DutchVehicleTaxData { - - protected Integer amount; - protected String base; - - /** - * Gets the value of the amount property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAmount() { - return amount; - } - - /** - * Sets the value of the amount property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAmount(Integer value) { - this.amount = value; - } - - /** - * Gets the value of the base property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBase() { - return base; - } - - /** - * Sets the value of the base property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBase(String value) { - this.base = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTechnicalWeight.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTechnicalWeight.java deleted file mode 100644 index 1682be2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTechnicalWeight.java +++ /dev/null @@ -1,258 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleTechnicalWeight complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleTechnicalWeight">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="mass_ready" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="gross_vehicle_mass" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="maximum_mass_payload" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="maximum_mass_unbraked" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="maximum_mass_braked" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="maximum_mass_trailer_braked" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="maximum_mass_self_braked" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="maximum_mass_axle_braked" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleTechnicalWeight", propOrder = { - -}) -public class DutchVehicleTechnicalWeight { - - @XmlElement(name = "mass_ready") - protected Integer massReady; - @XmlElement(name = "gross_vehicle_mass") - protected Integer grossVehicleMass; - @XmlElement(name = "maximum_mass_payload") - protected Integer maximumMassPayload; - @XmlElement(name = "maximum_mass_unbraked") - protected Integer maximumMassUnbraked; - @XmlElement(name = "maximum_mass_braked") - protected Integer maximumMassBraked; - @XmlElement(name = "maximum_mass_trailer_braked") - protected Integer maximumMassTrailerBraked; - @XmlElement(name = "maximum_mass_self_braked") - protected Integer maximumMassSelfBraked; - @XmlElement(name = "maximum_mass_axle_braked") - protected Integer maximumMassAxleBraked; - - /** - * Gets the value of the massReady property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMassReady() { - return massReady; - } - - /** - * Sets the value of the massReady property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMassReady(Integer value) { - this.massReady = value; - } - - /** - * Gets the value of the grossVehicleMass property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGrossVehicleMass() { - return grossVehicleMass; - } - - /** - * Sets the value of the grossVehicleMass property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGrossVehicleMass(Integer value) { - this.grossVehicleMass = value; - } - - /** - * Gets the value of the maximumMassPayload property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaximumMassPayload() { - return maximumMassPayload; - } - - /** - * Sets the value of the maximumMassPayload property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaximumMassPayload(Integer value) { - this.maximumMassPayload = value; - } - - /** - * Gets the value of the maximumMassUnbraked property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaximumMassUnbraked() { - return maximumMassUnbraked; - } - - /** - * Sets the value of the maximumMassUnbraked property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaximumMassUnbraked(Integer value) { - this.maximumMassUnbraked = value; - } - - /** - * Gets the value of the maximumMassBraked property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaximumMassBraked() { - return maximumMassBraked; - } - - /** - * Sets the value of the maximumMassBraked property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaximumMassBraked(Integer value) { - this.maximumMassBraked = value; - } - - /** - * Gets the value of the maximumMassTrailerBraked property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaximumMassTrailerBraked() { - return maximumMassTrailerBraked; - } - - /** - * Sets the value of the maximumMassTrailerBraked property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaximumMassTrailerBraked(Integer value) { - this.maximumMassTrailerBraked = value; - } - - /** - * Gets the value of the maximumMassSelfBraked property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaximumMassSelfBraked() { - return maximumMassSelfBraked; - } - - /** - * Sets the value of the maximumMassSelfBraked property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaximumMassSelfBraked(Integer value) { - this.maximumMassSelfBraked = value; - } - - /** - * Gets the value of the maximumMassAxleBraked property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMaximumMassAxleBraked() { - return maximumMassAxleBraked; - } - - /** - * Sets the value of the maximumMassAxleBraked property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMaximumMassAxleBraked(Integer value) { - this.maximumMassAxleBraked = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTypeApproval.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTypeApproval.java deleted file mode 100644 index 073c90a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleTypeApproval.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleTypeApproval complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleTypeApproval">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="type_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="version_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="type_approval_mark" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleTypeApproval", propOrder = { - -}) -public class DutchVehicleTypeApproval { - - @XmlElement(name = "type_code") - protected String typeCode; - @XmlElement(name = "version_code") - protected String versionCode; - @XmlElement(name = "type_approval_mark") - protected String typeApprovalMark; - - /** - * Gets the value of the typeCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypeCode() { - return typeCode; - } - - /** - * Sets the value of the typeCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypeCode(String value) { - this.typeCode = value; - } - - /** - * Gets the value of the versionCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVersionCode() { - return versionCode; - } - - /** - * Sets the value of the versionCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVersionCode(String value) { - this.versionCode = value; - } - - /** - * Gets the value of the typeApprovalMark property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTypeApprovalMark() { - return typeApprovalMark; - } - - /** - * Sets the value of the typeApprovalMark property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTypeApprovalMark(String value) { - this.typeApprovalMark = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleV2.java deleted file mode 100644 index 761d1b0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/DutchVehicleV2.java +++ /dev/null @@ -1,412 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DutchVehicleV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DutchVehicleV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="basic_data" type="{http://www.webservices.nl/soap/}DutchVehicleData"/>
- *         <element name="status" type="{http://www.webservices.nl/soap/}DutchVehicleStatus" minOccurs="0"/>
- *         <element name="registration" type="{http://www.webservices.nl/soap/}DutchVehicleRegistration" minOccurs="0"/>
- *         <element name="details" type="{http://www.webservices.nl/soap/}DutchVehicleFeature" minOccurs="0"/>
- *         <element name="tax" type="{http://www.webservices.nl/soap/}DutchVehicleTaxData" minOccurs="0"/>
- *         <element name="technical_weight" type="{http://www.webservices.nl/soap/}DutchVehicleTechnicalWeight" minOccurs="0"/>
- *         <element name="engine" type="{http://www.webservices.nl/soap/}DutchVehicleEngine" minOccurs="0"/>
- *         <element name="environmental_impact" type="{http://www.webservices.nl/soap/}DutchVehicleEnvironmentArray" minOccurs="0"/>
- *         <element name="axle_information" type="{http://www.webservices.nl/soap/}DutchVehicleAxleArray" minOccurs="0"/>
- *         <element name="type_approval" type="{http://www.webservices.nl/soap/}DutchVehicleTypeApproval" minOccurs="0"/>
- *         <element name="body_approval" type="{http://www.webservices.nl/soap/}DutchVehicleBodyApprovalArray" minOccurs="0"/>
- *         <element name="remark" type="{http://www.webservices.nl/soap/}DutchVehicleRemarkArray" minOccurs="0"/>
- *         <element name="recall" type="{http://www.webservices.nl/soap/}DutchVehicleRecall" minOccurs="0"/>
- *         <element name="mileage" type="{http://www.webservices.nl/soap/}DutchVehicleMileage" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DutchVehicleV2", propOrder = { - -}) -public class DutchVehicleV2 { - - @XmlElement(name = "basic_data", required = true) - protected DutchVehicleData basicData; - protected DutchVehicleStatus status; - protected DutchVehicleRegistration registration; - protected DutchVehicleFeature details; - protected DutchVehicleTaxData tax; - @XmlElement(name = "technical_weight") - protected DutchVehicleTechnicalWeight technicalWeight; - protected DutchVehicleEngine engine; - @XmlElement(name = "environmental_impact") - protected DutchVehicleEnvironmentArray environmentalImpact; - @XmlElement(name = "axle_information") - protected DutchVehicleAxleArray axleInformation; - @XmlElement(name = "type_approval") - protected DutchVehicleTypeApproval typeApproval; - @XmlElement(name = "body_approval") - protected DutchVehicleBodyApprovalArray bodyApproval; - protected DutchVehicleRemarkArray remark; - protected DutchVehicleRecall recall; - protected DutchVehicleMileage mileage; - - /** - * Gets the value of the basicData property. - * - * @return - * possible object is - * {@link DutchVehicleData } - * - */ - public DutchVehicleData getBasicData() { - return basicData; - } - - /** - * Sets the value of the basicData property. - * - * @param value - * allowed object is - * {@link DutchVehicleData } - * - */ - public void setBasicData(DutchVehicleData value) { - this.basicData = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link DutchVehicleStatus } - * - */ - public DutchVehicleStatus getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link DutchVehicleStatus } - * - */ - public void setStatus(DutchVehicleStatus value) { - this.status = value; - } - - /** - * Gets the value of the registration property. - * - * @return - * possible object is - * {@link DutchVehicleRegistration } - * - */ - public DutchVehicleRegistration getRegistration() { - return registration; - } - - /** - * Sets the value of the registration property. - * - * @param value - * allowed object is - * {@link DutchVehicleRegistration } - * - */ - public void setRegistration(DutchVehicleRegistration value) { - this.registration = value; - } - - /** - * Gets the value of the details property. - * - * @return - * possible object is - * {@link DutchVehicleFeature } - * - */ - public DutchVehicleFeature getDetails() { - return details; - } - - /** - * Sets the value of the details property. - * - * @param value - * allowed object is - * {@link DutchVehicleFeature } - * - */ - public void setDetails(DutchVehicleFeature value) { - this.details = value; - } - - /** - * Gets the value of the tax property. - * - * @return - * possible object is - * {@link DutchVehicleTaxData } - * - */ - public DutchVehicleTaxData getTax() { - return tax; - } - - /** - * Sets the value of the tax property. - * - * @param value - * allowed object is - * {@link DutchVehicleTaxData } - * - */ - public void setTax(DutchVehicleTaxData value) { - this.tax = value; - } - - /** - * Gets the value of the technicalWeight property. - * - * @return - * possible object is - * {@link DutchVehicleTechnicalWeight } - * - */ - public DutchVehicleTechnicalWeight getTechnicalWeight() { - return technicalWeight; - } - - /** - * Sets the value of the technicalWeight property. - * - * @param value - * allowed object is - * {@link DutchVehicleTechnicalWeight } - * - */ - public void setTechnicalWeight(DutchVehicleTechnicalWeight value) { - this.technicalWeight = value; - } - - /** - * Gets the value of the engine property. - * - * @return - * possible object is - * {@link DutchVehicleEngine } - * - */ - public DutchVehicleEngine getEngine() { - return engine; - } - - /** - * Sets the value of the engine property. - * - * @param value - * allowed object is - * {@link DutchVehicleEngine } - * - */ - public void setEngine(DutchVehicleEngine value) { - this.engine = value; - } - - /** - * Gets the value of the environmentalImpact property. - * - * @return - * possible object is - * {@link DutchVehicleEnvironmentArray } - * - */ - public DutchVehicleEnvironmentArray getEnvironmentalImpact() { - return environmentalImpact; - } - - /** - * Sets the value of the environmentalImpact property. - * - * @param value - * allowed object is - * {@link DutchVehicleEnvironmentArray } - * - */ - public void setEnvironmentalImpact(DutchVehicleEnvironmentArray value) { - this.environmentalImpact = value; - } - - /** - * Gets the value of the axleInformation property. - * - * @return - * possible object is - * {@link DutchVehicleAxleArray } - * - */ - public DutchVehicleAxleArray getAxleInformation() { - return axleInformation; - } - - /** - * Sets the value of the axleInformation property. - * - * @param value - * allowed object is - * {@link DutchVehicleAxleArray } - * - */ - public void setAxleInformation(DutchVehicleAxleArray value) { - this.axleInformation = value; - } - - /** - * Gets the value of the typeApproval property. - * - * @return - * possible object is - * {@link DutchVehicleTypeApproval } - * - */ - public DutchVehicleTypeApproval getTypeApproval() { - return typeApproval; - } - - /** - * Sets the value of the typeApproval property. - * - * @param value - * allowed object is - * {@link DutchVehicleTypeApproval } - * - */ - public void setTypeApproval(DutchVehicleTypeApproval value) { - this.typeApproval = value; - } - - /** - * Gets the value of the bodyApproval property. - * - * @return - * possible object is - * {@link DutchVehicleBodyApprovalArray } - * - */ - public DutchVehicleBodyApprovalArray getBodyApproval() { - return bodyApproval; - } - - /** - * Sets the value of the bodyApproval property. - * - * @param value - * allowed object is - * {@link DutchVehicleBodyApprovalArray } - * - */ - public void setBodyApproval(DutchVehicleBodyApprovalArray value) { - this.bodyApproval = value; - } - - /** - * Gets the value of the remark property. - * - * @return - * possible object is - * {@link DutchVehicleRemarkArray } - * - */ - public DutchVehicleRemarkArray getRemark() { - return remark; - } - - /** - * Sets the value of the remark property. - * - * @param value - * allowed object is - * {@link DutchVehicleRemarkArray } - * - */ - public void setRemark(DutchVehicleRemarkArray value) { - this.remark = value; - } - - /** - * Gets the value of the recall property. - * - * @return - * possible object is - * {@link DutchVehicleRecall } - * - */ - public DutchVehicleRecall getRecall() { - return recall; - } - - /** - * Sets the value of the recall property. - * - * @param value - * allowed object is - * {@link DutchVehicleRecall } - * - */ - public void setRecall(DutchVehicleRecall value) { - this.recall = value; - } - - /** - * Gets the value of the mileage property. - * - * @return - * possible object is - * {@link DutchVehicleMileage } - * - */ - public DutchVehicleMileage getMileage() { - return mileage; - } - - /** - * Sets the value of the mileage property. - * - * @param value - * allowed object is - * {@link DutchVehicleMileage } - * - */ - public void setMileage(DutchVehicleMileage value) { - this.mileage = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EDRScore.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EDRScore.java deleted file mode 100644 index 128d4ac..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EDRScore.java +++ /dev/null @@ -1,118 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for EDRScore complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="EDRScore">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="person_score" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="region_score" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="edr_region_score" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="weighted_score" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EDRScore", propOrder = { - -}) -public class EDRScore { - - @XmlElement(name = "person_score") - protected int personScore; - @XmlElement(name = "region_score") - protected int regionScore; - @XmlElement(name = "edr_region_score") - protected int edrRegionScore; - @XmlElement(name = "weighted_score") - protected int weightedScore; - - /** - * Gets the value of the personScore property. - * - */ - public int getPersonScore() { - return personScore; - } - - /** - * Sets the value of the personScore property. - * - */ - public void setPersonScore(int value) { - this.personScore = value; - } - - /** - * Gets the value of the regionScore property. - * - */ - public int getRegionScore() { - return regionScore; - } - - /** - * Sets the value of the regionScore property. - * - */ - public void setRegionScore(int value) { - this.regionScore = value; - } - - /** - * Gets the value of the edrRegionScore property. - * - */ - public int getEdrRegionScore() { - return edrRegionScore; - } - - /** - * Sets the value of the edrRegionScore property. - * - */ - public void setEdrRegionScore(int value) { - this.edrRegionScore = value; - } - - /** - * Gets the value of the weightedScore property. - * - */ - public int getWeightedScore() { - return weightedScore; - } - - /** - * Sets the value of the weightedScore property. - * - */ - public void setWeightedScore(int value) { - this.weightedScore = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EdrGetScoreRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EdrGetScoreRequestType.java deleted file mode 100644 index d824735..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EdrGetScoreRequestType.java +++ /dev/null @@ -1,285 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for edrGetScoreRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="edrGetScoreRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="surname_prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="birth_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "edrGetScoreRequestType", propOrder = { - -}) -public class EdrGetScoreRequestType { - - @XmlElement(name = "last_name", required = true) - protected String lastName; - @XmlElement(required = true) - protected String initials; - @XmlElement(name = "surname_prefix", required = true) - protected String surnamePrefix; - @XmlElement(required = true) - protected String gender; - @XmlElement(name = "birth_date", required = true) - protected String birthDate; - @XmlElement(required = true) - protected String street; - @XmlElement(name = "house_number", required = true) - protected String houseNumber; - @XmlElement(required = true) - protected String postcode; - @XmlElement(name = "phone_number", required = true) - protected String phoneNumber; - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the initials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInitials() { - return initials; - } - - /** - * Sets the value of the initials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInitials(String value) { - this.initials = value; - } - - /** - * Gets the value of the surnamePrefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSurnamePrefix() { - return surnamePrefix; - } - - /** - * Sets the value of the surnamePrefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSurnamePrefix(String value) { - this.surnamePrefix = value; - } - - /** - * Gets the value of the gender property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGender() { - return gender; - } - - /** - * Sets the value of the gender property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGender(String value) { - this.gender = value; - } - - /** - * Gets the value of the birthDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBirthDate() { - return birthDate; - } - - /** - * Sets the value of the birthDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBirthDate(String value) { - this.birthDate = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNumber(String value) { - this.houseNumber = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the phoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPhoneNumber() { - return phoneNumber; - } - - /** - * Sets the value of the phoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPhoneNumber(String value) { - this.phoneNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EdrGetScoreResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EdrGetScoreResponseType.java deleted file mode 100644 index fe166f8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/EdrGetScoreResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for edrGetScoreResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="edrGetScoreResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}EDRScore"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "edrGetScoreResponseType", propOrder = { - -}) -public class EdrGetScoreResponseType { - - @XmlElement(required = true) - protected EDRScore out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link EDRScore } - * - */ - public EDRScore getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link EDRScore } - * - */ - public void setOut(EDRScore value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAddress.java deleted file mode 100644 index e3391f4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAddress.java +++ /dev/null @@ -1,393 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRAddress complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRAddress">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="address_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="address_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="date_until" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="house_no" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="house_no_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="pobox" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="residence" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="country_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRAddress", propOrder = { - -}) -public class GCRAddress { - - @XmlElement(name = "is_current") - protected Boolean isCurrent; - @XmlElement(name = "address_code") - protected Integer addressCode; - @XmlElement(name = "address_text") - protected String addressText; - @XmlElement(name = "date_from") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlElement(name = "date_until") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - protected String street; - @XmlElement(name = "house_no") - protected String houseNo; - @XmlElement(name = "house_no_addition") - protected String houseNoAddition; - protected String pobox; - protected String postcode; - protected String residence; - @XmlElement(name = "country_code") - protected Integer countryCode; - @XmlElement(name = "country_text") - protected String countryText; - - /** - * Gets the value of the isCurrent property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIsCurrent() { - return isCurrent; - } - - /** - * Sets the value of the isCurrent property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIsCurrent(Boolean value) { - this.isCurrent = value; - } - - /** - * Gets the value of the addressCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAddressCode() { - return addressCode; - } - - /** - * Sets the value of the addressCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAddressCode(Integer value) { - this.addressCode = value; - } - - /** - * Gets the value of the addressText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddressText() { - return addressText; - } - - /** - * Sets the value of the addressText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddressText(String value) { - this.addressText = value; - } - - /** - * Gets the value of the dateFrom property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Sets the value of the dateFrom property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Gets the value of the dateUntil property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Sets the value of the dateUntil property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNo() { - return houseNo; - } - - /** - * Sets the value of the houseNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNo(String value) { - this.houseNo = value; - } - - /** - * Gets the value of the houseNoAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNoAddition() { - return houseNoAddition; - } - - /** - * Sets the value of the houseNoAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNoAddition(String value) { - this.houseNoAddition = value; - } - - /** - * Gets the value of the pobox property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPobox() { - return pobox; - } - - /** - * Sets the value of the pobox property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPobox(String value) { - this.pobox = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the residence property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResidence() { - return residence; - } - - /** - * Sets the value of the residence property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResidence(String value) { - this.residence = value; - } - - /** - * Gets the value of the countryCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCountryCode() { - return countryCode; - } - - /** - * Sets the value of the countryCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCountryCode(Integer value) { - this.countryCode = value; - } - - /** - * Gets the value of the countryText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryText() { - return countryText; - } - - /** - * Sets the value of the countryText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryText(String value) { - this.countryText = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAddressArray.java deleted file mode 100644 index 9e5a1c7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAddressArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRAddressArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRAddressArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRAddress" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRAddressArray", propOrder = { - "item" -}) -public class GCRAddressArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRAddress } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAlarm.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAlarm.java deleted file mode 100644 index c410d01..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAlarm.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRAlarm complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRAlarm">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="alarm_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="alarm_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRAlarm", propOrder = { - -}) -public class GCRAlarm { - - @XmlElement(name = "alarm_code") - protected int alarmCode; - @XmlElement(name = "alarm_text", required = true) - protected String alarmText; - - /** - * Gets the value of the alarmCode property. - * - */ - public int getAlarmCode() { - return alarmCode; - } - - /** - * Sets the value of the alarmCode property. - * - */ - public void setAlarmCode(int value) { - this.alarmCode = value; - } - - /** - * Gets the value of the alarmText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlarmText() { - return alarmText; - } - - /** - * Sets the value of the alarmText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlarmText(String value) { - this.alarmText = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAlarmContactDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAlarmContactDetails.java deleted file mode 100644 index f9bfcb5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAlarmContactDetails.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRAlarmContactDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRAlarmContactDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}GCRTradeNameArray" minOccurs="0"/>
- *         <element name="addresses" type="{http://www.webservices.nl/soap/}GCRAddressArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRAlarmContactDetails", propOrder = { - -}) -public class GCRAlarmContactDetails { - - @XmlElement(name = "company_name") - protected String companyName; - @XmlElement(name = "trade_names") - protected GCRTradeNameArray tradeNames; - protected GCRAddressArray addresses; - - /** - * Gets the value of the companyName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyName() { - return companyName; - } - - /** - * Sets the value of the companyName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyName(String value) { - this.companyName = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link GCRTradeNameArray } - * - */ - public GCRTradeNameArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link GCRTradeNameArray } - * - */ - public void setTradeNames(GCRTradeNameArray value) { - this.tradeNames = value; - } - - /** - * Gets the value of the addresses property. - * - * @return - * possible object is - * {@link GCRAddressArray } - * - */ - public GCRAddressArray getAddresses() { - return addresses; - } - - /** - * Sets the value of the addresses property. - * - * @param value - * allowed object is - * {@link GCRAddressArray } - * - */ - public void setAddresses(GCRAddressArray value) { - this.addresses = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAnnualFigures.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAnnualFigures.java deleted file mode 100644 index 2eb86cb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAnnualFigures.java +++ /dev/null @@ -1,124 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRAnnualFigures complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRAnnualFigures">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="company_annual_accounts" type="{http://www.webservices.nl/soap/}GCRCompanyAnnualAccountArray" minOccurs="0"/>
- *         <element name="bank_and_insurer_data" type="{http://www.webservices.nl/soap/}GCRBankAndInsurerDataArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRAnnualFigures", propOrder = { - -}) -public class GCRAnnualFigures { - - @XmlElement(name = "graydon_company_id") - protected BigInteger graydonCompanyId; - @XmlElement(name = "company_annual_accounts") - protected GCRCompanyAnnualAccountArray companyAnnualAccounts; - @XmlElement(name = "bank_and_insurer_data") - protected GCRBankAndInsurerDataArray bankAndInsurerData; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the companyAnnualAccounts property. - * - * @return - * possible object is - * {@link GCRCompanyAnnualAccountArray } - * - */ - public GCRCompanyAnnualAccountArray getCompanyAnnualAccounts() { - return companyAnnualAccounts; - } - - /** - * Sets the value of the companyAnnualAccounts property. - * - * @param value - * allowed object is - * {@link GCRCompanyAnnualAccountArray } - * - */ - public void setCompanyAnnualAccounts(GCRCompanyAnnualAccountArray value) { - this.companyAnnualAccounts = value; - } - - /** - * Gets the value of the bankAndInsurerData property. - * - * @return - * possible object is - * {@link GCRBankAndInsurerDataArray } - * - */ - public GCRBankAndInsurerDataArray getBankAndInsurerData() { - return bankAndInsurerData; - } - - /** - * Sets the value of the bankAndInsurerData property. - * - * @param value - * allowed object is - * {@link GCRBankAndInsurerDataArray } - * - */ - public void setBankAndInsurerData(GCRBankAndInsurerDataArray value) { - this.bankAndInsurerData = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAnnualFiguresArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAnnualFiguresArray.java deleted file mode 100644 index b16b58c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAnnualFiguresArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRAnnualFiguresArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRAnnualFiguresArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRAnnualFigures" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRAnnualFiguresArray", propOrder = { - "item" -}) -public class GCRAnnualFiguresArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRAnnualFigures } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAssets.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAssets.java deleted file mode 100644 index 3546ed2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRAssets.java +++ /dev/null @@ -1,178 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRAssets complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRAssets">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="fixed_assets_total" type="{http://www.webservices.nl/soap/}GCRItem" minOccurs="0"/>
- *         <element name="fixed_assets_items" type="{http://www.webservices.nl/soap/}GCRItemArray" minOccurs="0"/>
- *         <element name="current_assets_total" type="{http://www.webservices.nl/soap/}GCRItem" minOccurs="0"/>
- *         <element name="current_assets_items" type="{http://www.webservices.nl/soap/}GCRItemArray" minOccurs="0"/>
- *         <element name="balance_sheet_total" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRAssets", propOrder = { - -}) -public class GCRAssets { - - @XmlElement(name = "fixed_assets_total") - protected GCRItem fixedAssetsTotal; - @XmlElement(name = "fixed_assets_items") - protected GCRItemArray fixedAssetsItems; - @XmlElement(name = "current_assets_total") - protected GCRItem currentAssetsTotal; - @XmlElement(name = "current_assets_items") - protected GCRItemArray currentAssetsItems; - @XmlElement(name = "balance_sheet_total") - protected BigDecimal balanceSheetTotal; - - /** - * Gets the value of the fixedAssetsTotal property. - * - * @return - * possible object is - * {@link GCRItem } - * - */ - public GCRItem getFixedAssetsTotal() { - return fixedAssetsTotal; - } - - /** - * Sets the value of the fixedAssetsTotal property. - * - * @param value - * allowed object is - * {@link GCRItem } - * - */ - public void setFixedAssetsTotal(GCRItem value) { - this.fixedAssetsTotal = value; - } - - /** - * Gets the value of the fixedAssetsItems property. - * - * @return - * possible object is - * {@link GCRItemArray } - * - */ - public GCRItemArray getFixedAssetsItems() { - return fixedAssetsItems; - } - - /** - * Sets the value of the fixedAssetsItems property. - * - * @param value - * allowed object is - * {@link GCRItemArray } - * - */ - public void setFixedAssetsItems(GCRItemArray value) { - this.fixedAssetsItems = value; - } - - /** - * Gets the value of the currentAssetsTotal property. - * - * @return - * possible object is - * {@link GCRItem } - * - */ - public GCRItem getCurrentAssetsTotal() { - return currentAssetsTotal; - } - - /** - * Sets the value of the currentAssetsTotal property. - * - * @param value - * allowed object is - * {@link GCRItem } - * - */ - public void setCurrentAssetsTotal(GCRItem value) { - this.currentAssetsTotal = value; - } - - /** - * Gets the value of the currentAssetsItems property. - * - * @return - * possible object is - * {@link GCRItemArray } - * - */ - public GCRItemArray getCurrentAssetsItems() { - return currentAssetsItems; - } - - /** - * Sets the value of the currentAssetsItems property. - * - * @param value - * allowed object is - * {@link GCRItemArray } - * - */ - public void setCurrentAssetsItems(GCRItemArray value) { - this.currentAssetsItems = value; - } - - /** - * Gets the value of the balanceSheetTotal property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getBalanceSheetTotal() { - return balanceSheetTotal; - } - - /** - * Sets the value of the balanceSheetTotal property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setBalanceSheetTotal(BigDecimal value) { - this.balanceSheetTotal = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBalanceSheet.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBalanceSheet.java deleted file mode 100644 index 6d3cfa6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBalanceSheet.java +++ /dev/null @@ -1,119 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRBalanceSheet complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRBalanceSheet">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="items" type="{http://www.webservices.nl/soap/}GCRItemArray" minOccurs="0"/>
- *         <element name="assets" type="{http://www.webservices.nl/soap/}GCRAssets" minOccurs="0"/>
- *         <element name="liabilities" type="{http://www.webservices.nl/soap/}GCRLiabilities" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRBalanceSheet", propOrder = { - -}) -public class GCRBalanceSheet { - - protected GCRItemArray items; - protected GCRAssets assets; - protected GCRLiabilities liabilities; - - /** - * Gets the value of the items property. - * - * @return - * possible object is - * {@link GCRItemArray } - * - */ - public GCRItemArray getItems() { - return items; - } - - /** - * Sets the value of the items property. - * - * @param value - * allowed object is - * {@link GCRItemArray } - * - */ - public void setItems(GCRItemArray value) { - this.items = value; - } - - /** - * Gets the value of the assets property. - * - * @return - * possible object is - * {@link GCRAssets } - * - */ - public GCRAssets getAssets() { - return assets; - } - - /** - * Sets the value of the assets property. - * - * @param value - * allowed object is - * {@link GCRAssets } - * - */ - public void setAssets(GCRAssets value) { - this.assets = value; - } - - /** - * Gets the value of the liabilities property. - * - * @return - * possible object is - * {@link GCRLiabilities } - * - */ - public GCRLiabilities getLiabilities() { - return liabilities; - } - - /** - * Sets the value of the liabilities property. - * - * @param value - * allowed object is - * {@link GCRLiabilities } - * - */ - public void setLiabilities(GCRLiabilities value) { - this.liabilities = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerData.java deleted file mode 100644 index 0d341d0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerData.java +++ /dev/null @@ -1,503 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRBankAndInsurerData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRBankAndInsurerData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="financial_year" type="{http://www.w3.org/2001/XMLSchema}gYear" minOccurs="0"/>
- *         <element name="month_end_financial_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="day_end_financial_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="length_financial_year_in_months" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="reliable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="account_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="account_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="filing" type="{http://www.webservices.nl/soap/}GCRFiling" minOccurs="0"/>
- *         <element name="financial_year_graydon" type="{http://www.w3.org/2001/XMLSchema}gYear" minOccurs="0"/>
- *         <element name="currency_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="scale_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="scale_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_of_drawing_up" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="balance_sheet_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="balance_sheet_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="bank_and_insurer_key_figures" type="{http://www.webservices.nl/soap/}GCRBankAndInsurerKeyFigures" minOccurs="0"/>
- *         <element name="ratios" type="{http://www.webservices.nl/soap/}GCRRatioArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRBankAndInsurerData", propOrder = { - -}) -public class GCRBankAndInsurerData { - - @XmlElement(name = "financial_year") - @XmlSchemaType(name = "gYear") - protected XMLGregorianCalendar financialYear; - @XmlElement(name = "month_end_financial_year") - protected Integer monthEndFinancialYear; - @XmlElement(name = "day_end_financial_year") - protected Integer dayEndFinancialYear; - @XmlElement(name = "length_financial_year_in_months") - protected Integer lengthFinancialYearInMonths; - protected Boolean reliable; - @XmlElement(name = "account_code") - protected String accountCode; - @XmlElement(name = "account_text") - protected String accountText; - protected GCRFiling filing; - @XmlElement(name = "financial_year_graydon") - @XmlSchemaType(name = "gYear") - protected XMLGregorianCalendar financialYearGraydon; - @XmlElement(name = "currency_code") - protected String currencyCode; - @XmlElement(name = "scale_code") - protected String scaleCode; - @XmlElement(name = "scale_text") - protected String scaleText; - @XmlElement(name = "date_of_drawing_up") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateOfDrawingUp; - @XmlElement(name = "balance_sheet_code") - protected String balanceSheetCode; - @XmlElement(name = "balance_sheet_text") - protected String balanceSheetText; - @XmlElement(name = "bank_and_insurer_key_figures") - protected GCRBankAndInsurerKeyFigures bankAndInsurerKeyFigures; - protected GCRRatioArray ratios; - - /** - * Gets the value of the financialYear property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getFinancialYear() { - return financialYear; - } - - /** - * Sets the value of the financialYear property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setFinancialYear(XMLGregorianCalendar value) { - this.financialYear = value; - } - - /** - * Gets the value of the monthEndFinancialYear property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMonthEndFinancialYear() { - return monthEndFinancialYear; - } - - /** - * Sets the value of the monthEndFinancialYear property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMonthEndFinancialYear(Integer value) { - this.monthEndFinancialYear = value; - } - - /** - * Gets the value of the dayEndFinancialYear property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDayEndFinancialYear() { - return dayEndFinancialYear; - } - - /** - * Sets the value of the dayEndFinancialYear property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDayEndFinancialYear(Integer value) { - this.dayEndFinancialYear = value; - } - - /** - * Gets the value of the lengthFinancialYearInMonths property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLengthFinancialYearInMonths() { - return lengthFinancialYearInMonths; - } - - /** - * Sets the value of the lengthFinancialYearInMonths property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLengthFinancialYearInMonths(Integer value) { - this.lengthFinancialYearInMonths = value; - } - - /** - * Gets the value of the reliable property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isReliable() { - return reliable; - } - - /** - * Sets the value of the reliable property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setReliable(Boolean value) { - this.reliable = value; - } - - /** - * Gets the value of the accountCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAccountCode() { - return accountCode; - } - - /** - * Sets the value of the accountCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAccountCode(String value) { - this.accountCode = value; - } - - /** - * Gets the value of the accountText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAccountText() { - return accountText; - } - - /** - * Sets the value of the accountText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAccountText(String value) { - this.accountText = value; - } - - /** - * Gets the value of the filing property. - * - * @return - * possible object is - * {@link GCRFiling } - * - */ - public GCRFiling getFiling() { - return filing; - } - - /** - * Sets the value of the filing property. - * - * @param value - * allowed object is - * {@link GCRFiling } - * - */ - public void setFiling(GCRFiling value) { - this.filing = value; - } - - /** - * Gets the value of the financialYearGraydon property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getFinancialYearGraydon() { - return financialYearGraydon; - } - - /** - * Sets the value of the financialYearGraydon property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setFinancialYearGraydon(XMLGregorianCalendar value) { - this.financialYearGraydon = value; - } - - /** - * Gets the value of the currencyCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCurrencyCode() { - return currencyCode; - } - - /** - * Sets the value of the currencyCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCurrencyCode(String value) { - this.currencyCode = value; - } - - /** - * Gets the value of the scaleCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getScaleCode() { - return scaleCode; - } - - /** - * Sets the value of the scaleCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setScaleCode(String value) { - this.scaleCode = value; - } - - /** - * Gets the value of the scaleText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getScaleText() { - return scaleText; - } - - /** - * Sets the value of the scaleText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setScaleText(String value) { - this.scaleText = value; - } - - /** - * Gets the value of the dateOfDrawingUp property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfDrawingUp() { - return dateOfDrawingUp; - } - - /** - * Sets the value of the dateOfDrawingUp property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfDrawingUp(XMLGregorianCalendar value) { - this.dateOfDrawingUp = value; - } - - /** - * Gets the value of the balanceSheetCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBalanceSheetCode() { - return balanceSheetCode; - } - - /** - * Sets the value of the balanceSheetCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBalanceSheetCode(String value) { - this.balanceSheetCode = value; - } - - /** - * Gets the value of the balanceSheetText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBalanceSheetText() { - return balanceSheetText; - } - - /** - * Sets the value of the balanceSheetText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBalanceSheetText(String value) { - this.balanceSheetText = value; - } - - /** - * Gets the value of the bankAndInsurerKeyFigures property. - * - * @return - * possible object is - * {@link GCRBankAndInsurerKeyFigures } - * - */ - public GCRBankAndInsurerKeyFigures getBankAndInsurerKeyFigures() { - return bankAndInsurerKeyFigures; - } - - /** - * Sets the value of the bankAndInsurerKeyFigures property. - * - * @param value - * allowed object is - * {@link GCRBankAndInsurerKeyFigures } - * - */ - public void setBankAndInsurerKeyFigures(GCRBankAndInsurerKeyFigures value) { - this.bankAndInsurerKeyFigures = value; - } - - /** - * Gets the value of the ratios property. - * - * @return - * possible object is - * {@link GCRRatioArray } - * - */ - public GCRRatioArray getRatios() { - return ratios; - } - - /** - * Sets the value of the ratios property. - * - * @param value - * allowed object is - * {@link GCRRatioArray } - * - */ - public void setRatios(GCRRatioArray value) { - this.ratios = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerDataArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerDataArray.java deleted file mode 100644 index 07ec58d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerDataArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRBankAndInsurerDataArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRBankAndInsurerDataArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRBankAndInsurerData" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRBankAndInsurerDataArray", propOrder = { - "item" -}) -public class GCRBankAndInsurerDataArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRBankAndInsurerData } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerKeyFigures.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerKeyFigures.java deleted file mode 100644 index 0a859a8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankAndInsurerKeyFigures.java +++ /dev/null @@ -1,580 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRBankAndInsurerKeyFigures complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRBankAndInsurerKeyFigures">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="balance_sheet_total" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="equity_capital" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="group_equity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="liable_equity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="technical_provisions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="entrusted_funds" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="debt_securities" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="credits" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="attracted_bankers_funds" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="issued_bankers_funds" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="interest" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="premium_income" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="other_income" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="total_benefits" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="yield_on_investments" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="operating_investments" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="holding_gain_of_accounts_receivable" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="result_before_taxes" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="group_profit" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="net_profit" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRBankAndInsurerKeyFigures", propOrder = { - -}) -public class GCRBankAndInsurerKeyFigures { - - @XmlElement(name = "balance_sheet_total") - protected String balanceSheetTotal; - @XmlElement(name = "equity_capital") - protected String equityCapital; - @XmlElement(name = "group_equity") - protected String groupEquity; - @XmlElement(name = "liable_equity") - protected String liableEquity; - @XmlElement(name = "technical_provisions") - protected String technicalProvisions; - @XmlElement(name = "entrusted_funds") - protected String entrustedFunds; - @XmlElement(name = "debt_securities") - protected String debtSecurities; - protected String credits; - @XmlElement(name = "attracted_bankers_funds") - protected String attractedBankersFunds; - @XmlElement(name = "issued_bankers_funds") - protected String issuedBankersFunds; - protected String interest; - @XmlElement(name = "premium_income") - protected String premiumIncome; - @XmlElement(name = "other_income") - protected String otherIncome; - @XmlElement(name = "total_benefits") - protected String totalBenefits; - @XmlElement(name = "yield_on_investments") - protected String yieldOnInvestments; - @XmlElement(name = "operating_investments") - protected String operatingInvestments; - @XmlElement(name = "holding_gain_of_accounts_receivable") - protected String holdingGainOfAccountsReceivable; - @XmlElement(name = "result_before_taxes") - protected String resultBeforeTaxes; - @XmlElement(name = "group_profit") - protected String groupProfit; - @XmlElement(name = "net_profit") - protected String netProfit; - - /** - * Gets the value of the balanceSheetTotal property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBalanceSheetTotal() { - return balanceSheetTotal; - } - - /** - * Sets the value of the balanceSheetTotal property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBalanceSheetTotal(String value) { - this.balanceSheetTotal = value; - } - - /** - * Gets the value of the equityCapital property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEquityCapital() { - return equityCapital; - } - - /** - * Sets the value of the equityCapital property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEquityCapital(String value) { - this.equityCapital = value; - } - - /** - * Gets the value of the groupEquity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGroupEquity() { - return groupEquity; - } - - /** - * Sets the value of the groupEquity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGroupEquity(String value) { - this.groupEquity = value; - } - - /** - * Gets the value of the liableEquity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLiableEquity() { - return liableEquity; - } - - /** - * Sets the value of the liableEquity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLiableEquity(String value) { - this.liableEquity = value; - } - - /** - * Gets the value of the technicalProvisions property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTechnicalProvisions() { - return technicalProvisions; - } - - /** - * Sets the value of the technicalProvisions property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTechnicalProvisions(String value) { - this.technicalProvisions = value; - } - - /** - * Gets the value of the entrustedFunds property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEntrustedFunds() { - return entrustedFunds; - } - - /** - * Sets the value of the entrustedFunds property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEntrustedFunds(String value) { - this.entrustedFunds = value; - } - - /** - * Gets the value of the debtSecurities property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDebtSecurities() { - return debtSecurities; - } - - /** - * Sets the value of the debtSecurities property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDebtSecurities(String value) { - this.debtSecurities = value; - } - - /** - * Gets the value of the credits property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCredits() { - return credits; - } - - /** - * Sets the value of the credits property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCredits(String value) { - this.credits = value; - } - - /** - * Gets the value of the attractedBankersFunds property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAttractedBankersFunds() { - return attractedBankersFunds; - } - - /** - * Sets the value of the attractedBankersFunds property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAttractedBankersFunds(String value) { - this.attractedBankersFunds = value; - } - - /** - * Gets the value of the issuedBankersFunds property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIssuedBankersFunds() { - return issuedBankersFunds; - } - - /** - * Sets the value of the issuedBankersFunds property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIssuedBankersFunds(String value) { - this.issuedBankersFunds = value; - } - - /** - * Gets the value of the interest property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInterest() { - return interest; - } - - /** - * Sets the value of the interest property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInterest(String value) { - this.interest = value; - } - - /** - * Gets the value of the premiumIncome property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPremiumIncome() { - return premiumIncome; - } - - /** - * Sets the value of the premiumIncome property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPremiumIncome(String value) { - this.premiumIncome = value; - } - - /** - * Gets the value of the otherIncome property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOtherIncome() { - return otherIncome; - } - - /** - * Sets the value of the otherIncome property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOtherIncome(String value) { - this.otherIncome = value; - } - - /** - * Gets the value of the totalBenefits property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTotalBenefits() { - return totalBenefits; - } - - /** - * Sets the value of the totalBenefits property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTotalBenefits(String value) { - this.totalBenefits = value; - } - - /** - * Gets the value of the yieldOnInvestments property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getYieldOnInvestments() { - return yieldOnInvestments; - } - - /** - * Sets the value of the yieldOnInvestments property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setYieldOnInvestments(String value) { - this.yieldOnInvestments = value; - } - - /** - * Gets the value of the operatingInvestments property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOperatingInvestments() { - return operatingInvestments; - } - - /** - * Sets the value of the operatingInvestments property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOperatingInvestments(String value) { - this.operatingInvestments = value; - } - - /** - * Gets the value of the holdingGainOfAccountsReceivable property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHoldingGainOfAccountsReceivable() { - return holdingGainOfAccountsReceivable; - } - - /** - * Sets the value of the holdingGainOfAccountsReceivable property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHoldingGainOfAccountsReceivable(String value) { - this.holdingGainOfAccountsReceivable = value; - } - - /** - * Gets the value of the resultBeforeTaxes property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResultBeforeTaxes() { - return resultBeforeTaxes; - } - - /** - * Sets the value of the resultBeforeTaxes property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResultBeforeTaxes(String value) { - this.resultBeforeTaxes = value; - } - - /** - * Gets the value of the groupProfit property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGroupProfit() { - return groupProfit; - } - - /** - * Sets the value of the groupProfit property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGroupProfit(String value) { - this.groupProfit = value; - } - - /** - * Gets the value of the netProfit property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNetProfit() { - return netProfit; - } - - /** - * Sets the value of the netProfit property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNetProfit(String value) { - this.netProfit = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankruptcy.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankruptcy.java deleted file mode 100644 index 3e4e2f5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBankruptcy.java +++ /dev/null @@ -1,235 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRBankruptcy complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRBankruptcy">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="official_registration_number" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="currently_active" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="date_of_verdict" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="definite_discontinuance_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="definite_discontinuance_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="definite_discontinuance_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="curators" type="{http://www.webservices.nl/soap/}GCRCuratorArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRBankruptcy", propOrder = { - -}) -public class GCRBankruptcy { - - @XmlElement(name = "official_registration_number") - protected BigInteger officialRegistrationNumber; - @XmlElement(name = "currently_active") - protected Boolean currentlyActive; - @XmlElement(name = "date_of_verdict") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateOfVerdict; - @XmlElement(name = "definite_discontinuance_code") - protected Integer definiteDiscontinuanceCode; - @XmlElement(name = "definite_discontinuance_text") - protected String definiteDiscontinuanceText; - @XmlElement(name = "definite_discontinuance_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar definiteDiscontinuanceDate; - protected GCRCuratorArray curators; - - /** - * Gets the value of the officialRegistrationNumber property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getOfficialRegistrationNumber() { - return officialRegistrationNumber; - } - - /** - * Sets the value of the officialRegistrationNumber property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setOfficialRegistrationNumber(BigInteger value) { - this.officialRegistrationNumber = value; - } - - /** - * Gets the value of the currentlyActive property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isCurrentlyActive() { - return currentlyActive; - } - - /** - * Sets the value of the currentlyActive property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setCurrentlyActive(Boolean value) { - this.currentlyActive = value; - } - - /** - * Gets the value of the dateOfVerdict property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfVerdict() { - return dateOfVerdict; - } - - /** - * Sets the value of the dateOfVerdict property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfVerdict(XMLGregorianCalendar value) { - this.dateOfVerdict = value; - } - - /** - * Gets the value of the definiteDiscontinuanceCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDefiniteDiscontinuanceCode() { - return definiteDiscontinuanceCode; - } - - /** - * Sets the value of the definiteDiscontinuanceCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDefiniteDiscontinuanceCode(Integer value) { - this.definiteDiscontinuanceCode = value; - } - - /** - * Gets the value of the definiteDiscontinuanceText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDefiniteDiscontinuanceText() { - return definiteDiscontinuanceText; - } - - /** - * Sets the value of the definiteDiscontinuanceText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDefiniteDiscontinuanceText(String value) { - this.definiteDiscontinuanceText = value; - } - - /** - * Gets the value of the definiteDiscontinuanceDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDefiniteDiscontinuanceDate() { - return definiteDiscontinuanceDate; - } - - /** - * Sets the value of the definiteDiscontinuanceDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDefiniteDiscontinuanceDate(XMLGregorianCalendar value) { - this.definiteDiscontinuanceDate = value; - } - - /** - * Gets the value of the curators property. - * - * @return - * possible object is - * {@link GCRCuratorArray } - * - */ - public GCRCuratorArray getCurators() { - return curators; - } - - /** - * Sets the value of the curators property. - * - * @param value - * allowed object is - * {@link GCRCuratorArray } - * - */ - public void setCurators(GCRCuratorArray value) { - this.curators = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBirthInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBirthInformation.java deleted file mode 100644 index c6ca1fe..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBirthInformation.java +++ /dev/null @@ -1,151 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRBirthInformation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRBirthInformation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="residence" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="country_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRBirthInformation", propOrder = { - -}) -public class GCRBirthInformation { - - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar date; - protected String residence; - @XmlElement(name = "country_code") - protected Integer countryCode; - @XmlElement(name = "country_text") - protected String countryText; - - /** - * Gets the value of the date property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Sets the value of the date property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the residence property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResidence() { - return residence; - } - - /** - * Sets the value of the residence property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResidence(String value) { - this.residence = value; - } - - /** - * Gets the value of the countryCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getCountryCode() { - return countryCode; - } - - /** - * Sets the value of the countryCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setCountryCode(Integer value) { - this.countryCode = value; - } - - /** - * Gets the value of the countryText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryText() { - return countryText; - } - - /** - * Sets the value of the countryText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryText(String value) { - this.countryText = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBranchOffice.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBranchOffice.java deleted file mode 100644 index 451d227..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBranchOffice.java +++ /dev/null @@ -1,259 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRBranchOffice complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRBranchOffice">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="branch_office_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="business_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}GCRTradeNameArray" minOccurs="0"/>
- *         <element name="addresses" type="{http://www.webservices.nl/soap/}GCRAddressArray" minOccurs="0"/>
- *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}GCRTelephoneNumberArray" minOccurs="0"/>
- *         <element name="email_addresses" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="estabishment_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="discontinuance" type="{http://www.webservices.nl/soap/}GCRDiscontinuance" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRBranchOffice", propOrder = { - -}) -public class GCRBranchOffice { - - @XmlElement(name = "branch_office_id", required = true) - protected String branchOfficeId; - @XmlElement(name = "business_name") - protected String businessName; - @XmlElement(name = "trade_names") - protected GCRTradeNameArray tradeNames; - protected GCRAddressArray addresses; - @XmlElement(name = "telephone_numbers") - protected GCRTelephoneNumberArray telephoneNumbers; - @XmlElement(name = "email_addresses") - protected StringArray emailAddresses; - @XmlElement(name = "estabishment_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar estabishmentDate; - protected GCRDiscontinuance discontinuance; - - /** - * Gets the value of the branchOfficeId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBranchOfficeId() { - return branchOfficeId; - } - - /** - * Sets the value of the branchOfficeId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBranchOfficeId(String value) { - this.branchOfficeId = value; - } - - /** - * Gets the value of the businessName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBusinessName() { - return businessName; - } - - /** - * Sets the value of the businessName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBusinessName(String value) { - this.businessName = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link GCRTradeNameArray } - * - */ - public GCRTradeNameArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link GCRTradeNameArray } - * - */ - public void setTradeNames(GCRTradeNameArray value) { - this.tradeNames = value; - } - - /** - * Gets the value of the addresses property. - * - * @return - * possible object is - * {@link GCRAddressArray } - * - */ - public GCRAddressArray getAddresses() { - return addresses; - } - - /** - * Sets the value of the addresses property. - * - * @param value - * allowed object is - * {@link GCRAddressArray } - * - */ - public void setAddresses(GCRAddressArray value) { - this.addresses = value; - } - - /** - * Gets the value of the telephoneNumbers property. - * - * @return - * possible object is - * {@link GCRTelephoneNumberArray } - * - */ - public GCRTelephoneNumberArray getTelephoneNumbers() { - return telephoneNumbers; - } - - /** - * Sets the value of the telephoneNumbers property. - * - * @param value - * allowed object is - * {@link GCRTelephoneNumberArray } - * - */ - public void setTelephoneNumbers(GCRTelephoneNumberArray value) { - this.telephoneNumbers = value; - } - - /** - * Gets the value of the emailAddresses property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getEmailAddresses() { - return emailAddresses; - } - - /** - * Sets the value of the emailAddresses property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setEmailAddresses(StringArray value) { - this.emailAddresses = value; - } - - /** - * Gets the value of the estabishmentDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEstabishmentDate() { - return estabishmentDate; - } - - /** - * Sets the value of the estabishmentDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEstabishmentDate(XMLGregorianCalendar value) { - this.estabishmentDate = value; - } - - /** - * Gets the value of the discontinuance property. - * - * @return - * possible object is - * {@link GCRDiscontinuance } - * - */ - public GCRDiscontinuance getDiscontinuance() { - return discontinuance; - } - - /** - * Sets the value of the discontinuance property. - * - * @param value - * allowed object is - * {@link GCRDiscontinuance } - * - */ - public void setDiscontinuance(GCRDiscontinuance value) { - this.discontinuance = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBranchOfficeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBranchOfficeArray.java deleted file mode 100644 index d9b96c5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRBranchOfficeArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRBranchOfficeArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRBranchOfficeArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRBranchOffice" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRBranchOfficeArray", propOrder = { - "item" -}) -public class GCRBranchOfficeArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRBranchOffice } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamity.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamity.java deleted file mode 100644 index 8028b3c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamity.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCalamity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCalamity">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="calamity_events" type="{http://www.webservices.nl/soap/}GCRCalamityEventArray" minOccurs="0"/>
- *         <element name="other_calamities" type="{http://www.webservices.nl/soap/}GCRCalamityOtherArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCalamity", propOrder = { - -}) -public class GCRCalamity { - - @XmlElement(name = "calamity_events") - protected GCRCalamityEventArray calamityEvents; - @XmlElement(name = "other_calamities") - protected GCRCalamityOtherArray otherCalamities; - - /** - * Gets the value of the calamityEvents property. - * - * @return - * possible object is - * {@link GCRCalamityEventArray } - * - */ - public GCRCalamityEventArray getCalamityEvents() { - return calamityEvents; - } - - /** - * Sets the value of the calamityEvents property. - * - * @param value - * allowed object is - * {@link GCRCalamityEventArray } - * - */ - public void setCalamityEvents(GCRCalamityEventArray value) { - this.calamityEvents = value; - } - - /** - * Gets the value of the otherCalamities property. - * - * @return - * possible object is - * {@link GCRCalamityOtherArray } - * - */ - public GCRCalamityOtherArray getOtherCalamities() { - return otherCalamities; - } - - /** - * Sets the value of the otherCalamities property. - * - * @param value - * allowed object is - * {@link GCRCalamityOtherArray } - * - */ - public void setOtherCalamities(GCRCalamityOtherArray value) { - this.otherCalamities = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityEvent.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityEvent.java deleted file mode 100644 index 774f572..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityEvent.java +++ /dev/null @@ -1,282 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRCalamityEvent complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCalamityEvent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="event_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="event_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="event_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="expiration_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="damage_amount" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="damage_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="insurance_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="insurance_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="instigator_graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCalamityEvent", propOrder = { - -}) -public class GCRCalamityEvent { - - @XmlElement(name = "event_code") - protected int eventCode; - @XmlElement(name = "event_text") - protected String eventText; - @XmlElement(name = "event_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar eventDate; - @XmlElement(name = "expiration_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar expirationDate; - @XmlElement(name = "damage_amount") - protected String damageAmount; - @XmlElement(name = "damage_currency") - protected String damageCurrency; - @XmlElement(name = "insurance_code") - protected Integer insuranceCode; - @XmlElement(name = "insurance_text") - protected String insuranceText; - @XmlElement(name = "instigator_graydon_company_id") - protected BigInteger instigatorGraydonCompanyId; - - /** - * Gets the value of the eventCode property. - * - */ - public int getEventCode() { - return eventCode; - } - - /** - * Sets the value of the eventCode property. - * - */ - public void setEventCode(int value) { - this.eventCode = value; - } - - /** - * Gets the value of the eventText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEventText() { - return eventText; - } - - /** - * Sets the value of the eventText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEventText(String value) { - this.eventText = value; - } - - /** - * Gets the value of the eventDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEventDate() { - return eventDate; - } - - /** - * Sets the value of the eventDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEventDate(XMLGregorianCalendar value) { - this.eventDate = value; - } - - /** - * Gets the value of the expirationDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getExpirationDate() { - return expirationDate; - } - - /** - * Sets the value of the expirationDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setExpirationDate(XMLGregorianCalendar value) { - this.expirationDate = value; - } - - /** - * Gets the value of the damageAmount property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDamageAmount() { - return damageAmount; - } - - /** - * Sets the value of the damageAmount property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDamageAmount(String value) { - this.damageAmount = value; - } - - /** - * Gets the value of the damageCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDamageCurrency() { - return damageCurrency; - } - - /** - * Sets the value of the damageCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDamageCurrency(String value) { - this.damageCurrency = value; - } - - /** - * Gets the value of the insuranceCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getInsuranceCode() { - return insuranceCode; - } - - /** - * Sets the value of the insuranceCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setInsuranceCode(Integer value) { - this.insuranceCode = value; - } - - /** - * Gets the value of the insuranceText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInsuranceText() { - return insuranceText; - } - - /** - * Sets the value of the insuranceText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInsuranceText(String value) { - this.insuranceText = value; - } - - /** - * Gets the value of the instigatorGraydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getInstigatorGraydonCompanyId() { - return instigatorGraydonCompanyId; - } - - /** - * Sets the value of the instigatorGraydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setInstigatorGraydonCompanyId(BigInteger value) { - this.instigatorGraydonCompanyId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityEventArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityEventArray.java deleted file mode 100644 index 0809c89..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityEventArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCalamityEventArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCalamityEventArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCalamityEvent" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCalamityEventArray", propOrder = { - "item" -}) -public class GCRCalamityEventArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRCalamityEvent } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityOther.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityOther.java deleted file mode 100644 index 6c46a2f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityOther.java +++ /dev/null @@ -1,118 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRCalamityOther complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCalamityOther">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="calamity_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="calamity_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="expiration_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCalamityOther", propOrder = { - -}) -public class GCRCalamityOther { - - @XmlElement(name = "calamity_code") - protected int calamityCode; - @XmlElement(name = "calamity_text") - protected String calamityText; - @XmlElement(name = "expiration_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar expirationDate; - - /** - * Gets the value of the calamityCode property. - * - */ - public int getCalamityCode() { - return calamityCode; - } - - /** - * Sets the value of the calamityCode property. - * - */ - public void setCalamityCode(int value) { - this.calamityCode = value; - } - - /** - * Gets the value of the calamityText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCalamityText() { - return calamityText; - } - - /** - * Sets the value of the calamityText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCalamityText(String value) { - this.calamityText = value; - } - - /** - * Gets the value of the expirationDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getExpirationDate() { - return expirationDate; - } - - /** - * Sets the value of the expirationDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setExpirationDate(XMLGregorianCalendar value) { - this.expirationDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityOtherArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityOtherArray.java deleted file mode 100644 index ea384db..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCalamityOtherArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCalamityOtherArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCalamityOtherArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCalamityOther" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCalamityOtherArray", propOrder = { - "item" -}) -public class GCRCalamityOtherArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRCalamityOther } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCapital.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCapital.java deleted file mode 100644 index e32a004..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCapital.java +++ /dev/null @@ -1,234 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRCapital complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCapital">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="date_change" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="social_capital" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="capital_of_commandite_partnership" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="issued_capital" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="paid_up_capital" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="monetary_amount_specified_in_corporate_deed" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCapital", propOrder = { - -}) -public class GCRCapital { - - @XmlElement(name = "is_current") - protected Boolean isCurrent; - @XmlElement(name = "date_change") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateChange; - @XmlElement(name = "social_capital") - protected String socialCapital; - @XmlElement(name = "capital_of_commandite_partnership") - protected String capitalOfCommanditePartnership; - @XmlElement(name = "issued_capital") - protected String issuedCapital; - @XmlElement(name = "paid_up_capital") - protected String paidUpCapital; - @XmlElement(name = "monetary_amount_specified_in_corporate_deed") - protected String monetaryAmountSpecifiedInCorporateDeed; - - /** - * Gets the value of the isCurrent property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIsCurrent() { - return isCurrent; - } - - /** - * Sets the value of the isCurrent property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIsCurrent(Boolean value) { - this.isCurrent = value; - } - - /** - * Gets the value of the dateChange property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateChange() { - return dateChange; - } - - /** - * Sets the value of the dateChange property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateChange(XMLGregorianCalendar value) { - this.dateChange = value; - } - - /** - * Gets the value of the socialCapital property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSocialCapital() { - return socialCapital; - } - - /** - * Sets the value of the socialCapital property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSocialCapital(String value) { - this.socialCapital = value; - } - - /** - * Gets the value of the capitalOfCommanditePartnership property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCapitalOfCommanditePartnership() { - return capitalOfCommanditePartnership; - } - - /** - * Sets the value of the capitalOfCommanditePartnership property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCapitalOfCommanditePartnership(String value) { - this.capitalOfCommanditePartnership = value; - } - - /** - * Gets the value of the issuedCapital property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIssuedCapital() { - return issuedCapital; - } - - /** - * Sets the value of the issuedCapital property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIssuedCapital(String value) { - this.issuedCapital = value; - } - - /** - * Gets the value of the paidUpCapital property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPaidUpCapital() { - return paidUpCapital; - } - - /** - * Sets the value of the paidUpCapital property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPaidUpCapital(String value) { - this.paidUpCapital = value; - } - - /** - * Gets the value of the monetaryAmountSpecifiedInCorporateDeed property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMonetaryAmountSpecifiedInCorporateDeed() { - return monetaryAmountSpecifiedInCorporateDeed; - } - - /** - * Sets the value of the monetaryAmountSpecifiedInCorporateDeed property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMonetaryAmountSpecifiedInCorporateDeed(String value) { - this.monetaryAmountSpecifiedInCorporateDeed = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCapitalArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCapitalArray.java deleted file mode 100644 index 97ad4a7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCapitalArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCapitalArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCapitalArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCapital" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCapitalArray", propOrder = { - "item" -}) -public class GCRCapitalArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRCapital } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRChamberOfCommerce.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRChamberOfCommerce.java deleted file mode 100644 index a2c6309..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRChamberOfCommerce.java +++ /dev/null @@ -1,177 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRChamberOfCommerce complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRChamberOfCommerce">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="chamber_no" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="dossier_no" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sub_dossier_no" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="administering_chamber_no" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trade_register_location" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRChamberOfCommerce", propOrder = { - -}) -public class GCRChamberOfCommerce { - - @XmlElement(name = "chamber_no", required = true) - protected String chamberNo; - @XmlElement(name = "dossier_no", required = true) - protected String dossierNo; - @XmlElement(name = "sub_dossier_no", required = true) - protected String subDossierNo; - @XmlElement(name = "administering_chamber_no") - protected String administeringChamberNo; - @XmlElement(name = "trade_register_location") - protected String tradeRegisterLocation; - - /** - * Gets the value of the chamberNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getChamberNo() { - return chamberNo; - } - - /** - * Sets the value of the chamberNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChamberNo(String value) { - this.chamberNo = value; - } - - /** - * Gets the value of the dossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNo() { - return dossierNo; - } - - /** - * Sets the value of the dossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNo(String value) { - this.dossierNo = value; - } - - /** - * Gets the value of the subDossierNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubDossierNo() { - return subDossierNo; - } - - /** - * Sets the value of the subDossierNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubDossierNo(String value) { - this.subDossierNo = value; - } - - /** - * Gets the value of the administeringChamberNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAdministeringChamberNo() { - return administeringChamberNo; - } - - /** - * Sets the value of the administeringChamberNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAdministeringChamberNo(String value) { - this.administeringChamberNo = value; - } - - /** - * Gets the value of the tradeRegisterLocation property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeRegisterLocation() { - return tradeRegisterLocation; - } - - /** - * Sets the value of the tradeRegisterLocation property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeRegisterLocation(String value) { - this.tradeRegisterLocation = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompany.java deleted file mode 100644 index 3944ccb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompany.java +++ /dev/null @@ -1,285 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCompany complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCompany">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="contact_details" type="{http://www.webservices.nl/soap/}GCRContactDetails" minOccurs="0"/>
- *         <element name="official_data" type="{http://www.webservices.nl/soap/}GCROfficialData" minOccurs="0"/>
- *         <element name="history" type="{http://www.webservices.nl/soap/}GCRHistory" minOccurs="0"/>
- *         <element name="sectors_of_industry" type="{http://www.webservices.nl/soap/}GCRSectorOfIndustryArray" minOccurs="0"/>
- *         <element name="positions_in_other_companies" type="{http://www.webservices.nl/soap/}GCRJobTitleArray" minOccurs="0"/>
- *         <element name="annual_figures" type="{http://www.webservices.nl/soap/}GCRAnnualFiguresArray" minOccurs="0"/>
- *         <element name="financial_details" type="{http://www.webservices.nl/soap/}GCRFinancialDetails" minOccurs="0"/>
- *         <element name="financial_calamities" type="{http://www.webservices.nl/soap/}GCRFinancialCalamityArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCompany", propOrder = { - -}) -public class GCRCompany { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - @XmlElement(name = "contact_details") - protected GCRContactDetails contactDetails; - @XmlElement(name = "official_data") - protected GCROfficialData officialData; - protected GCRHistory history; - @XmlElement(name = "sectors_of_industry") - protected GCRSectorOfIndustryArray sectorsOfIndustry; - @XmlElement(name = "positions_in_other_companies") - protected GCRJobTitleArray positionsInOtherCompanies; - @XmlElement(name = "annual_figures") - protected GCRAnnualFiguresArray annualFigures; - @XmlElement(name = "financial_details") - protected GCRFinancialDetails financialDetails; - @XmlElement(name = "financial_calamities") - protected GCRFinancialCalamityArray financialCalamities; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the contactDetails property. - * - * @return - * possible object is - * {@link GCRContactDetails } - * - */ - public GCRContactDetails getContactDetails() { - return contactDetails; - } - - /** - * Sets the value of the contactDetails property. - * - * @param value - * allowed object is - * {@link GCRContactDetails } - * - */ - public void setContactDetails(GCRContactDetails value) { - this.contactDetails = value; - } - - /** - * Gets the value of the officialData property. - * - * @return - * possible object is - * {@link GCROfficialData } - * - */ - public GCROfficialData getOfficialData() { - return officialData; - } - - /** - * Sets the value of the officialData property. - * - * @param value - * allowed object is - * {@link GCROfficialData } - * - */ - public void setOfficialData(GCROfficialData value) { - this.officialData = value; - } - - /** - * Gets the value of the history property. - * - * @return - * possible object is - * {@link GCRHistory } - * - */ - public GCRHistory getHistory() { - return history; - } - - /** - * Sets the value of the history property. - * - * @param value - * allowed object is - * {@link GCRHistory } - * - */ - public void setHistory(GCRHistory value) { - this.history = value; - } - - /** - * Gets the value of the sectorsOfIndustry property. - * - * @return - * possible object is - * {@link GCRSectorOfIndustryArray } - * - */ - public GCRSectorOfIndustryArray getSectorsOfIndustry() { - return sectorsOfIndustry; - } - - /** - * Sets the value of the sectorsOfIndustry property. - * - * @param value - * allowed object is - * {@link GCRSectorOfIndustryArray } - * - */ - public void setSectorsOfIndustry(GCRSectorOfIndustryArray value) { - this.sectorsOfIndustry = value; - } - - /** - * Gets the value of the positionsInOtherCompanies property. - * - * @return - * possible object is - * {@link GCRJobTitleArray } - * - */ - public GCRJobTitleArray getPositionsInOtherCompanies() { - return positionsInOtherCompanies; - } - - /** - * Sets the value of the positionsInOtherCompanies property. - * - * @param value - * allowed object is - * {@link GCRJobTitleArray } - * - */ - public void setPositionsInOtherCompanies(GCRJobTitleArray value) { - this.positionsInOtherCompanies = value; - } - - /** - * Gets the value of the annualFigures property. - * - * @return - * possible object is - * {@link GCRAnnualFiguresArray } - * - */ - public GCRAnnualFiguresArray getAnnualFigures() { - return annualFigures; - } - - /** - * Sets the value of the annualFigures property. - * - * @param value - * allowed object is - * {@link GCRAnnualFiguresArray } - * - */ - public void setAnnualFigures(GCRAnnualFiguresArray value) { - this.annualFigures = value; - } - - /** - * Gets the value of the financialDetails property. - * - * @return - * possible object is - * {@link GCRFinancialDetails } - * - */ - public GCRFinancialDetails getFinancialDetails() { - return financialDetails; - } - - /** - * Sets the value of the financialDetails property. - * - * @param value - * allowed object is - * {@link GCRFinancialDetails } - * - */ - public void setFinancialDetails(GCRFinancialDetails value) { - this.financialDetails = value; - } - - /** - * Gets the value of the financialCalamities property. - * - * @return - * possible object is - * {@link GCRFinancialCalamityArray } - * - */ - public GCRFinancialCalamityArray getFinancialCalamities() { - return financialCalamities; - } - - /** - * Sets the value of the financialCalamities property. - * - * @param value - * allowed object is - * {@link GCRFinancialCalamityArray } - * - */ - public void setFinancialCalamities(GCRFinancialCalamityArray value) { - this.financialCalamities = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyAnnualAccount.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyAnnualAccount.java deleted file mode 100644 index 1e73584..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyAnnualAccount.java +++ /dev/null @@ -1,557 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRCompanyAnnualAccount complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCompanyAnnualAccount">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="financial_year" type="{http://www.w3.org/2001/XMLSchema}gYear" minOccurs="0"/>
- *         <element name="month_end_financial_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="day_end_financial_year" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="length_financial_year_in_months" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="reliable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="account_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="account_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="filing" type="{http://www.webservices.nl/soap/}GCRFiling" minOccurs="0"/>
- *         <element name="financial_year_graydon" type="{http://www.w3.org/2001/XMLSchema}gYear" minOccurs="0"/>
- *         <element name="currency_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="scale_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="scale_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_of_drawing_up" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="balance_sheet_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="balance_sheet_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="balance_sheet" type="{http://www.webservices.nl/soap/}GCRBalanceSheet" minOccurs="0"/>
- *         <element name="profit_and_loss_account" type="{http://www.webservices.nl/soap/}GCRItemArray" minOccurs="0"/>
- *         <element name="supplement_to_annual_account" type="{http://www.webservices.nl/soap/}GCRItemArray" minOccurs="0"/>
- *         <element name="ratios" type="{http://www.webservices.nl/soap/}GCRRatioArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCompanyAnnualAccount", propOrder = { - -}) -public class GCRCompanyAnnualAccount { - - @XmlElement(name = "financial_year") - @XmlSchemaType(name = "gYear") - protected XMLGregorianCalendar financialYear; - @XmlElement(name = "month_end_financial_year") - protected Integer monthEndFinancialYear; - @XmlElement(name = "day_end_financial_year") - protected Integer dayEndFinancialYear; - @XmlElement(name = "length_financial_year_in_months") - protected Integer lengthFinancialYearInMonths; - protected Boolean reliable; - @XmlElement(name = "account_code") - protected String accountCode; - @XmlElement(name = "account_text") - protected String accountText; - protected GCRFiling filing; - @XmlElement(name = "financial_year_graydon") - @XmlSchemaType(name = "gYear") - protected XMLGregorianCalendar financialYearGraydon; - @XmlElement(name = "currency_code") - protected String currencyCode; - @XmlElement(name = "scale_code") - protected String scaleCode; - @XmlElement(name = "scale_text") - protected String scaleText; - @XmlElement(name = "date_of_drawing_up") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateOfDrawingUp; - @XmlElement(name = "balance_sheet_code") - protected String balanceSheetCode; - @XmlElement(name = "balance_sheet_text") - protected String balanceSheetText; - @XmlElement(name = "balance_sheet") - protected GCRBalanceSheet balanceSheet; - @XmlElement(name = "profit_and_loss_account") - protected GCRItemArray profitAndLossAccount; - @XmlElement(name = "supplement_to_annual_account") - protected GCRItemArray supplementToAnnualAccount; - protected GCRRatioArray ratios; - - /** - * Gets the value of the financialYear property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getFinancialYear() { - return financialYear; - } - - /** - * Sets the value of the financialYear property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setFinancialYear(XMLGregorianCalendar value) { - this.financialYear = value; - } - - /** - * Gets the value of the monthEndFinancialYear property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMonthEndFinancialYear() { - return monthEndFinancialYear; - } - - /** - * Sets the value of the monthEndFinancialYear property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMonthEndFinancialYear(Integer value) { - this.monthEndFinancialYear = value; - } - - /** - * Gets the value of the dayEndFinancialYear property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDayEndFinancialYear() { - return dayEndFinancialYear; - } - - /** - * Sets the value of the dayEndFinancialYear property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDayEndFinancialYear(Integer value) { - this.dayEndFinancialYear = value; - } - - /** - * Gets the value of the lengthFinancialYearInMonths property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLengthFinancialYearInMonths() { - return lengthFinancialYearInMonths; - } - - /** - * Sets the value of the lengthFinancialYearInMonths property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLengthFinancialYearInMonths(Integer value) { - this.lengthFinancialYearInMonths = value; - } - - /** - * Gets the value of the reliable property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isReliable() { - return reliable; - } - - /** - * Sets the value of the reliable property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setReliable(Boolean value) { - this.reliable = value; - } - - /** - * Gets the value of the accountCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAccountCode() { - return accountCode; - } - - /** - * Sets the value of the accountCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAccountCode(String value) { - this.accountCode = value; - } - - /** - * Gets the value of the accountText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAccountText() { - return accountText; - } - - /** - * Sets the value of the accountText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAccountText(String value) { - this.accountText = value; - } - - /** - * Gets the value of the filing property. - * - * @return - * possible object is - * {@link GCRFiling } - * - */ - public GCRFiling getFiling() { - return filing; - } - - /** - * Sets the value of the filing property. - * - * @param value - * allowed object is - * {@link GCRFiling } - * - */ - public void setFiling(GCRFiling value) { - this.filing = value; - } - - /** - * Gets the value of the financialYearGraydon property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getFinancialYearGraydon() { - return financialYearGraydon; - } - - /** - * Sets the value of the financialYearGraydon property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setFinancialYearGraydon(XMLGregorianCalendar value) { - this.financialYearGraydon = value; - } - - /** - * Gets the value of the currencyCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCurrencyCode() { - return currencyCode; - } - - /** - * Sets the value of the currencyCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCurrencyCode(String value) { - this.currencyCode = value; - } - - /** - * Gets the value of the scaleCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getScaleCode() { - return scaleCode; - } - - /** - * Sets the value of the scaleCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setScaleCode(String value) { - this.scaleCode = value; - } - - /** - * Gets the value of the scaleText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getScaleText() { - return scaleText; - } - - /** - * Sets the value of the scaleText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setScaleText(String value) { - this.scaleText = value; - } - - /** - * Gets the value of the dateOfDrawingUp property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateOfDrawingUp() { - return dateOfDrawingUp; - } - - /** - * Sets the value of the dateOfDrawingUp property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateOfDrawingUp(XMLGregorianCalendar value) { - this.dateOfDrawingUp = value; - } - - /** - * Gets the value of the balanceSheetCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBalanceSheetCode() { - return balanceSheetCode; - } - - /** - * Sets the value of the balanceSheetCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBalanceSheetCode(String value) { - this.balanceSheetCode = value; - } - - /** - * Gets the value of the balanceSheetText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBalanceSheetText() { - return balanceSheetText; - } - - /** - * Sets the value of the balanceSheetText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBalanceSheetText(String value) { - this.balanceSheetText = value; - } - - /** - * Gets the value of the balanceSheet property. - * - * @return - * possible object is - * {@link GCRBalanceSheet } - * - */ - public GCRBalanceSheet getBalanceSheet() { - return balanceSheet; - } - - /** - * Sets the value of the balanceSheet property. - * - * @param value - * allowed object is - * {@link GCRBalanceSheet } - * - */ - public void setBalanceSheet(GCRBalanceSheet value) { - this.balanceSheet = value; - } - - /** - * Gets the value of the profitAndLossAccount property. - * - * @return - * possible object is - * {@link GCRItemArray } - * - */ - public GCRItemArray getProfitAndLossAccount() { - return profitAndLossAccount; - } - - /** - * Sets the value of the profitAndLossAccount property. - * - * @param value - * allowed object is - * {@link GCRItemArray } - * - */ - public void setProfitAndLossAccount(GCRItemArray value) { - this.profitAndLossAccount = value; - } - - /** - * Gets the value of the supplementToAnnualAccount property. - * - * @return - * possible object is - * {@link GCRItemArray } - * - */ - public GCRItemArray getSupplementToAnnualAccount() { - return supplementToAnnualAccount; - } - - /** - * Sets the value of the supplementToAnnualAccount property. - * - * @param value - * allowed object is - * {@link GCRItemArray } - * - */ - public void setSupplementToAnnualAccount(GCRItemArray value) { - this.supplementToAnnualAccount = value; - } - - /** - * Gets the value of the ratios property. - * - * @return - * possible object is - * {@link GCRRatioArray } - * - */ - public GCRRatioArray getRatios() { - return ratios; - } - - /** - * Sets the value of the ratios property. - * - * @param value - * allowed object is - * {@link GCRRatioArray } - * - */ - public void setRatios(GCRRatioArray value) { - this.ratios = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyAnnualAccountArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyAnnualAccountArray.java deleted file mode 100644 index 300938f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyAnnualAccountArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCompanyAnnualAccountArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCompanyAnnualAccountArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCompanyAnnualAccount" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCompanyAnnualAccountArray", propOrder = { - "item" -}) -public class GCRCompanyAnnualAccountArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRCompanyAnnualAccount } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyArray.java deleted file mode 100644 index 41d5d98..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCompanyArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCompanyArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCompany" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCompanyArray", propOrder = { - "item" -}) -public class GCRCompanyArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRCompany } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyContinuedUnder.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyContinuedUnder.java deleted file mode 100644 index 295ec33..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyContinuedUnder.java +++ /dev/null @@ -1,154 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRCompanyContinuedUnder complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCompanyContinuedUnder">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="continued_under_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="continued_under_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCompanyContinuedUnder", propOrder = { - -}) -public class GCRCompanyContinuedUnder { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - @XmlElement(name = "continued_under_code") - protected Integer continuedUnderCode; - @XmlElement(name = "continued_under_text") - protected String continuedUnderText; - @XmlElement(name = "date_from") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the continuedUnderCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getContinuedUnderCode() { - return continuedUnderCode; - } - - /** - * Sets the value of the continuedUnderCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setContinuedUnderCode(Integer value) { - this.continuedUnderCode = value; - } - - /** - * Gets the value of the continuedUnderText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContinuedUnderText() { - return continuedUnderText; - } - - /** - * Sets the value of the continuedUnderText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContinuedUnderText(String value) { - this.continuedUnderText = value; - } - - /** - * Gets the value of the dateFrom property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Sets the value of the dateFrom property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyContinuedUnderArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyContinuedUnderArray.java deleted file mode 100644 index 1ecc7f6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyContinuedUnderArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCompanyContinuedUnderArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCompanyContinuedUnderArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCompanyContinuedUnder" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCompanyContinuedUnderArray", propOrder = { - "item" -}) -public class GCRCompanyContinuedUnderArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRCompanyContinuedUnder } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItself.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItself.java deleted file mode 100644 index 1e28006..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItself.java +++ /dev/null @@ -1,472 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCompanyItself complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCompanyItself">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="contact_details" type="{http://www.webservices.nl/soap/}GCRContactDetails" minOccurs="0"/>
- *         <element name="official_data" type="{http://www.webservices.nl/soap/}GCROfficialData" minOccurs="0"/>
- *         <element name="history" type="{http://www.webservices.nl/soap/}GCRHistory" minOccurs="0"/>
- *         <element name="positions_in_other_companies" type="{http://www.webservices.nl/soap/}GCRJobTitleArray" minOccurs="0"/>
- *         <element name="annual_figures" type="{http://www.webservices.nl/soap/}GCRAnnualFiguresArray" minOccurs="0"/>
- *         <element name="financial_details" type="{http://www.webservices.nl/soap/}GCRFinancialDetails" minOccurs="0"/>
- *         <element name="financial_calamities" type="{http://www.webservices.nl/soap/}GCRFinancialCalamityArray" minOccurs="0"/>
- *         <element name="personnel" type="{http://www.webservices.nl/soap/}GCRPersonnel" minOccurs="0"/>
- *         <element name="credit_advice_data" type="{http://www.webservices.nl/soap/}GCRCreditAdviceData" minOccurs="0"/>
- *         <element name="sectors_of_industry" type="{http://www.webservices.nl/soap/}GCRSectorOfIndustryArray" minOccurs="0"/>
- *         <element name="calamity" type="{http://www.webservices.nl/soap/}GCRCalamity" minOccurs="0"/>
- *         <element name="payment_information" type="{http://www.webservices.nl/soap/}GCRPaymentInformationArray" minOccurs="0"/>
- *         <element name="declarations_of_liability" type="{http://www.webservices.nl/soap/}GCRDeclarationOfLiabilityArray" minOccurs="0"/>
- *         <element name="concern_liaisons" type="{http://www.webservices.nl/soap/}GCRLiaisonArray" minOccurs="0"/>
- *         <element name="company_management" type="{http://www.webservices.nl/soap/}GCRCompanyManagement" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCompanyItself", propOrder = { - -}) -public class GCRCompanyItself { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - @XmlElement(name = "contact_details") - protected GCRContactDetails contactDetails; - @XmlElement(name = "official_data") - protected GCROfficialData officialData; - protected GCRHistory history; - @XmlElement(name = "positions_in_other_companies") - protected GCRJobTitleArray positionsInOtherCompanies; - @XmlElement(name = "annual_figures") - protected GCRAnnualFiguresArray annualFigures; - @XmlElement(name = "financial_details") - protected GCRFinancialDetails financialDetails; - @XmlElement(name = "financial_calamities") - protected GCRFinancialCalamityArray financialCalamities; - protected GCRPersonnel personnel; - @XmlElement(name = "credit_advice_data") - protected GCRCreditAdviceData creditAdviceData; - @XmlElement(name = "sectors_of_industry") - protected GCRSectorOfIndustryArray sectorsOfIndustry; - protected GCRCalamity calamity; - @XmlElement(name = "payment_information") - protected GCRPaymentInformationArray paymentInformation; - @XmlElement(name = "declarations_of_liability") - protected GCRDeclarationOfLiabilityArray declarationsOfLiability; - @XmlElement(name = "concern_liaisons") - protected GCRLiaisonArray concernLiaisons; - @XmlElement(name = "company_management") - protected GCRCompanyManagement companyManagement; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the contactDetails property. - * - * @return - * possible object is - * {@link GCRContactDetails } - * - */ - public GCRContactDetails getContactDetails() { - return contactDetails; - } - - /** - * Sets the value of the contactDetails property. - * - * @param value - * allowed object is - * {@link GCRContactDetails } - * - */ - public void setContactDetails(GCRContactDetails value) { - this.contactDetails = value; - } - - /** - * Gets the value of the officialData property. - * - * @return - * possible object is - * {@link GCROfficialData } - * - */ - public GCROfficialData getOfficialData() { - return officialData; - } - - /** - * Sets the value of the officialData property. - * - * @param value - * allowed object is - * {@link GCROfficialData } - * - */ - public void setOfficialData(GCROfficialData value) { - this.officialData = value; - } - - /** - * Gets the value of the history property. - * - * @return - * possible object is - * {@link GCRHistory } - * - */ - public GCRHistory getHistory() { - return history; - } - - /** - * Sets the value of the history property. - * - * @param value - * allowed object is - * {@link GCRHistory } - * - */ - public void setHistory(GCRHistory value) { - this.history = value; - } - - /** - * Gets the value of the positionsInOtherCompanies property. - * - * @return - * possible object is - * {@link GCRJobTitleArray } - * - */ - public GCRJobTitleArray getPositionsInOtherCompanies() { - return positionsInOtherCompanies; - } - - /** - * Sets the value of the positionsInOtherCompanies property. - * - * @param value - * allowed object is - * {@link GCRJobTitleArray } - * - */ - public void setPositionsInOtherCompanies(GCRJobTitleArray value) { - this.positionsInOtherCompanies = value; - } - - /** - * Gets the value of the annualFigures property. - * - * @return - * possible object is - * {@link GCRAnnualFiguresArray } - * - */ - public GCRAnnualFiguresArray getAnnualFigures() { - return annualFigures; - } - - /** - * Sets the value of the annualFigures property. - * - * @param value - * allowed object is - * {@link GCRAnnualFiguresArray } - * - */ - public void setAnnualFigures(GCRAnnualFiguresArray value) { - this.annualFigures = value; - } - - /** - * Gets the value of the financialDetails property. - * - * @return - * possible object is - * {@link GCRFinancialDetails } - * - */ - public GCRFinancialDetails getFinancialDetails() { - return financialDetails; - } - - /** - * Sets the value of the financialDetails property. - * - * @param value - * allowed object is - * {@link GCRFinancialDetails } - * - */ - public void setFinancialDetails(GCRFinancialDetails value) { - this.financialDetails = value; - } - - /** - * Gets the value of the financialCalamities property. - * - * @return - * possible object is - * {@link GCRFinancialCalamityArray } - * - */ - public GCRFinancialCalamityArray getFinancialCalamities() { - return financialCalamities; - } - - /** - * Sets the value of the financialCalamities property. - * - * @param value - * allowed object is - * {@link GCRFinancialCalamityArray } - * - */ - public void setFinancialCalamities(GCRFinancialCalamityArray value) { - this.financialCalamities = value; - } - - /** - * Gets the value of the personnel property. - * - * @return - * possible object is - * {@link GCRPersonnel } - * - */ - public GCRPersonnel getPersonnel() { - return personnel; - } - - /** - * Sets the value of the personnel property. - * - * @param value - * allowed object is - * {@link GCRPersonnel } - * - */ - public void setPersonnel(GCRPersonnel value) { - this.personnel = value; - } - - /** - * Gets the value of the creditAdviceData property. - * - * @return - * possible object is - * {@link GCRCreditAdviceData } - * - */ - public GCRCreditAdviceData getCreditAdviceData() { - return creditAdviceData; - } - - /** - * Sets the value of the creditAdviceData property. - * - * @param value - * allowed object is - * {@link GCRCreditAdviceData } - * - */ - public void setCreditAdviceData(GCRCreditAdviceData value) { - this.creditAdviceData = value; - } - - /** - * Gets the value of the sectorsOfIndustry property. - * - * @return - * possible object is - * {@link GCRSectorOfIndustryArray } - * - */ - public GCRSectorOfIndustryArray getSectorsOfIndustry() { - return sectorsOfIndustry; - } - - /** - * Sets the value of the sectorsOfIndustry property. - * - * @param value - * allowed object is - * {@link GCRSectorOfIndustryArray } - * - */ - public void setSectorsOfIndustry(GCRSectorOfIndustryArray value) { - this.sectorsOfIndustry = value; - } - - /** - * Gets the value of the calamity property. - * - * @return - * possible object is - * {@link GCRCalamity } - * - */ - public GCRCalamity getCalamity() { - return calamity; - } - - /** - * Sets the value of the calamity property. - * - * @param value - * allowed object is - * {@link GCRCalamity } - * - */ - public void setCalamity(GCRCalamity value) { - this.calamity = value; - } - - /** - * Gets the value of the paymentInformation property. - * - * @return - * possible object is - * {@link GCRPaymentInformationArray } - * - */ - public GCRPaymentInformationArray getPaymentInformation() { - return paymentInformation; - } - - /** - * Sets the value of the paymentInformation property. - * - * @param value - * allowed object is - * {@link GCRPaymentInformationArray } - * - */ - public void setPaymentInformation(GCRPaymentInformationArray value) { - this.paymentInformation = value; - } - - /** - * Gets the value of the declarationsOfLiability property. - * - * @return - * possible object is - * {@link GCRDeclarationOfLiabilityArray } - * - */ - public GCRDeclarationOfLiabilityArray getDeclarationsOfLiability() { - return declarationsOfLiability; - } - - /** - * Sets the value of the declarationsOfLiability property. - * - * @param value - * allowed object is - * {@link GCRDeclarationOfLiabilityArray } - * - */ - public void setDeclarationsOfLiability(GCRDeclarationOfLiabilityArray value) { - this.declarationsOfLiability = value; - } - - /** - * Gets the value of the concernLiaisons property. - * - * @return - * possible object is - * {@link GCRLiaisonArray } - * - */ - public GCRLiaisonArray getConcernLiaisons() { - return concernLiaisons; - } - - /** - * Sets the value of the concernLiaisons property. - * - * @param value - * allowed object is - * {@link GCRLiaisonArray } - * - */ - public void setConcernLiaisons(GCRLiaisonArray value) { - this.concernLiaisons = value; - } - - /** - * Gets the value of the companyManagement property. - * - * @return - * possible object is - * {@link GCRCompanyManagement } - * - */ - public GCRCompanyManagement getCompanyManagement() { - return companyManagement; - } - - /** - * Sets the value of the companyManagement property. - * - * @param value - * allowed object is - * {@link GCRCompanyManagement } - * - */ - public void setCompanyManagement(GCRCompanyManagement value) { - this.companyManagement = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItselfAlarm.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItselfAlarm.java deleted file mode 100644 index 4a59c33..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItselfAlarm.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCompanyItselfAlarm complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCompanyItselfAlarm">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="contact_details" type="{http://www.webservices.nl/soap/}GCRAlarmContactDetails" minOccurs="0"/>
- *         <element name="discontinuance" type="{http://www.webservices.nl/soap/}GCRDiscontinuance" minOccurs="0"/>
- *         <element name="special_company_information" type="{http://www.webservices.nl/soap/}GCRSpecialCompanyInformationArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCompanyItselfAlarm", propOrder = { - -}) -public class GCRCompanyItselfAlarm { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - @XmlElement(name = "contact_details") - protected GCRAlarmContactDetails contactDetails; - protected GCRDiscontinuance discontinuance; - @XmlElement(name = "special_company_information") - protected GCRSpecialCompanyInformationArray specialCompanyInformation; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the contactDetails property. - * - * @return - * possible object is - * {@link GCRAlarmContactDetails } - * - */ - public GCRAlarmContactDetails getContactDetails() { - return contactDetails; - } - - /** - * Sets the value of the contactDetails property. - * - * @param value - * allowed object is - * {@link GCRAlarmContactDetails } - * - */ - public void setContactDetails(GCRAlarmContactDetails value) { - this.contactDetails = value; - } - - /** - * Gets the value of the discontinuance property. - * - * @return - * possible object is - * {@link GCRDiscontinuance } - * - */ - public GCRDiscontinuance getDiscontinuance() { - return discontinuance; - } - - /** - * Sets the value of the discontinuance property. - * - * @param value - * allowed object is - * {@link GCRDiscontinuance } - * - */ - public void setDiscontinuance(GCRDiscontinuance value) { - this.discontinuance = value; - } - - /** - * Gets the value of the specialCompanyInformation property. - * - * @return - * possible object is - * {@link GCRSpecialCompanyInformationArray } - * - */ - public GCRSpecialCompanyInformationArray getSpecialCompanyInformation() { - return specialCompanyInformation; - } - - /** - * Sets the value of the specialCompanyInformation property. - * - * @param value - * allowed object is - * {@link GCRSpecialCompanyInformationArray } - * - */ - public void setSpecialCompanyInformation(GCRSpecialCompanyInformationArray value) { - this.specialCompanyInformation = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItselfCalamity.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItselfCalamity.java deleted file mode 100644 index 6bc60bd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyItselfCalamity.java +++ /dev/null @@ -1,392 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCompanyItselfCalamity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCompanyItselfCalamity">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="contact_details" type="{http://www.webservices.nl/soap/}GCRContactDetails" minOccurs="0"/>
- *         <element name="official_data" type="{http://www.webservices.nl/soap/}GCROfficialData" minOccurs="0"/>
- *         <element name="history" type="{http://www.webservices.nl/soap/}GCRHistory" minOccurs="0"/>
- *         <element name="sectors_of_industry" type="{http://www.webservices.nl/soap/}GCRSectorOfIndustryArray" minOccurs="0"/>
- *         <element name="share_holders" type="{http://www.webservices.nl/soap/}GCRShareHolderArray" minOccurs="0"/>
- *         <element name="branch_offices" type="{http://www.webservices.nl/soap/}GCRBranchOfficeArray" minOccurs="0"/>
- *         <element name="participations" type="{http://www.webservices.nl/soap/}GCRParticipationArray" minOccurs="0"/>
- *         <element name="import_export" type="{http://www.webservices.nl/soap/}GCRImportExport" minOccurs="0"/>
- *         <element name="special_company_information" type="{http://www.webservices.nl/soap/}GCRSpecialCompanyInformationArray" minOccurs="0"/>
- *         <element name="financial_calamities" type="{http://www.webservices.nl/soap/}GCRFinancialCalamityArray" minOccurs="0"/>
- *         <element name="concern_liaisons" type="{http://www.webservices.nl/soap/}GCRLiaisonArray" minOccurs="0"/>
- *         <element name="company_management" type="{http://www.webservices.nl/soap/}GCRCompanyManagement" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCompanyItselfCalamity", propOrder = { - -}) -public class GCRCompanyItselfCalamity { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - @XmlElement(name = "contact_details") - protected GCRContactDetails contactDetails; - @XmlElement(name = "official_data") - protected GCROfficialData officialData; - protected GCRHistory history; - @XmlElement(name = "sectors_of_industry") - protected GCRSectorOfIndustryArray sectorsOfIndustry; - @XmlElement(name = "share_holders") - protected GCRShareHolderArray shareHolders; - @XmlElement(name = "branch_offices") - protected GCRBranchOfficeArray branchOffices; - protected GCRParticipationArray participations; - @XmlElement(name = "import_export") - protected GCRImportExport importExport; - @XmlElement(name = "special_company_information") - protected GCRSpecialCompanyInformationArray specialCompanyInformation; - @XmlElement(name = "financial_calamities") - protected GCRFinancialCalamityArray financialCalamities; - @XmlElement(name = "concern_liaisons") - protected GCRLiaisonArray concernLiaisons; - @XmlElement(name = "company_management") - protected GCRCompanyManagement companyManagement; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the contactDetails property. - * - * @return - * possible object is - * {@link GCRContactDetails } - * - */ - public GCRContactDetails getContactDetails() { - return contactDetails; - } - - /** - * Sets the value of the contactDetails property. - * - * @param value - * allowed object is - * {@link GCRContactDetails } - * - */ - public void setContactDetails(GCRContactDetails value) { - this.contactDetails = value; - } - - /** - * Gets the value of the officialData property. - * - * @return - * possible object is - * {@link GCROfficialData } - * - */ - public GCROfficialData getOfficialData() { - return officialData; - } - - /** - * Sets the value of the officialData property. - * - * @param value - * allowed object is - * {@link GCROfficialData } - * - */ - public void setOfficialData(GCROfficialData value) { - this.officialData = value; - } - - /** - * Gets the value of the history property. - * - * @return - * possible object is - * {@link GCRHistory } - * - */ - public GCRHistory getHistory() { - return history; - } - - /** - * Sets the value of the history property. - * - * @param value - * allowed object is - * {@link GCRHistory } - * - */ - public void setHistory(GCRHistory value) { - this.history = value; - } - - /** - * Gets the value of the sectorsOfIndustry property. - * - * @return - * possible object is - * {@link GCRSectorOfIndustryArray } - * - */ - public GCRSectorOfIndustryArray getSectorsOfIndustry() { - return sectorsOfIndustry; - } - - /** - * Sets the value of the sectorsOfIndustry property. - * - * @param value - * allowed object is - * {@link GCRSectorOfIndustryArray } - * - */ - public void setSectorsOfIndustry(GCRSectorOfIndustryArray value) { - this.sectorsOfIndustry = value; - } - - /** - * Gets the value of the shareHolders property. - * - * @return - * possible object is - * {@link GCRShareHolderArray } - * - */ - public GCRShareHolderArray getShareHolders() { - return shareHolders; - } - - /** - * Sets the value of the shareHolders property. - * - * @param value - * allowed object is - * {@link GCRShareHolderArray } - * - */ - public void setShareHolders(GCRShareHolderArray value) { - this.shareHolders = value; - } - - /** - * Gets the value of the branchOffices property. - * - * @return - * possible object is - * {@link GCRBranchOfficeArray } - * - */ - public GCRBranchOfficeArray getBranchOffices() { - return branchOffices; - } - - /** - * Sets the value of the branchOffices property. - * - * @param value - * allowed object is - * {@link GCRBranchOfficeArray } - * - */ - public void setBranchOffices(GCRBranchOfficeArray value) { - this.branchOffices = value; - } - - /** - * Gets the value of the participations property. - * - * @return - * possible object is - * {@link GCRParticipationArray } - * - */ - public GCRParticipationArray getParticipations() { - return participations; - } - - /** - * Sets the value of the participations property. - * - * @param value - * allowed object is - * {@link GCRParticipationArray } - * - */ - public void setParticipations(GCRParticipationArray value) { - this.participations = value; - } - - /** - * Gets the value of the importExport property. - * - * @return - * possible object is - * {@link GCRImportExport } - * - */ - public GCRImportExport getImportExport() { - return importExport; - } - - /** - * Sets the value of the importExport property. - * - * @param value - * allowed object is - * {@link GCRImportExport } - * - */ - public void setImportExport(GCRImportExport value) { - this.importExport = value; - } - - /** - * Gets the value of the specialCompanyInformation property. - * - * @return - * possible object is - * {@link GCRSpecialCompanyInformationArray } - * - */ - public GCRSpecialCompanyInformationArray getSpecialCompanyInformation() { - return specialCompanyInformation; - } - - /** - * Sets the value of the specialCompanyInformation property. - * - * @param value - * allowed object is - * {@link GCRSpecialCompanyInformationArray } - * - */ - public void setSpecialCompanyInformation(GCRSpecialCompanyInformationArray value) { - this.specialCompanyInformation = value; - } - - /** - * Gets the value of the financialCalamities property. - * - * @return - * possible object is - * {@link GCRFinancialCalamityArray } - * - */ - public GCRFinancialCalamityArray getFinancialCalamities() { - return financialCalamities; - } - - /** - * Sets the value of the financialCalamities property. - * - * @param value - * allowed object is - * {@link GCRFinancialCalamityArray } - * - */ - public void setFinancialCalamities(GCRFinancialCalamityArray value) { - this.financialCalamities = value; - } - - /** - * Gets the value of the concernLiaisons property. - * - * @return - * possible object is - * {@link GCRLiaisonArray } - * - */ - public GCRLiaisonArray getConcernLiaisons() { - return concernLiaisons; - } - - /** - * Sets the value of the concernLiaisons property. - * - * @param value - * allowed object is - * {@link GCRLiaisonArray } - * - */ - public void setConcernLiaisons(GCRLiaisonArray value) { - this.concernLiaisons = value; - } - - /** - * Gets the value of the companyManagement property. - * - * @return - * possible object is - * {@link GCRCompanyManagement } - * - */ - public GCRCompanyManagement getCompanyManagement() { - return companyManagement; - } - - /** - * Sets the value of the companyManagement property. - * - * @param value - * allowed object is - * {@link GCRCompanyManagement } - * - */ - public void setCompanyManagement(GCRCompanyManagement value) { - this.companyManagement = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyManagement.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyManagement.java deleted file mode 100644 index 87f9ef4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyManagement.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCompanyManagement complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCompanyManagement">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="management" type="{http://www.webservices.nl/soap/}GCRManagementArray" minOccurs="0"/>
- *         <element name="first_directors" type="{http://www.webservices.nl/soap/}GCRFirstDirectorArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCompanyManagement", propOrder = { - -}) -public class GCRCompanyManagement { - - protected GCRManagementArray management; - @XmlElement(name = "first_directors") - protected GCRFirstDirectorArray firstDirectors; - - /** - * Gets the value of the management property. - * - * @return - * possible object is - * {@link GCRManagementArray } - * - */ - public GCRManagementArray getManagement() { - return management; - } - - /** - * Sets the value of the management property. - * - * @param value - * allowed object is - * {@link GCRManagementArray } - * - */ - public void setManagement(GCRManagementArray value) { - this.management = value; - } - - /** - * Gets the value of the firstDirectors property. - * - * @return - * possible object is - * {@link GCRFirstDirectorArray } - * - */ - public GCRFirstDirectorArray getFirstDirectors() { - return firstDirectors; - } - - /** - * Sets the value of the firstDirectors property. - * - * @param value - * allowed object is - * {@link GCRFirstDirectorArray } - * - */ - public void setFirstDirectors(GCRFirstDirectorArray value) { - this.firstDirectors = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyRelations.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyRelations.java deleted file mode 100644 index 0e66aaf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyRelations.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCompanyRelations complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCompanyRelations">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="companies" type="{http://www.webservices.nl/soap/}GCRCompanyArray" minOccurs="0"/>
- *         <element name="persons" type="{http://www.webservices.nl/soap/}GCRPersonArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCompanyRelations", propOrder = { - -}) -public class GCRCompanyRelations { - - protected GCRCompanyArray companies; - protected GCRPersonArray persons; - - /** - * Gets the value of the companies property. - * - * @return - * possible object is - * {@link GCRCompanyArray } - * - */ - public GCRCompanyArray getCompanies() { - return companies; - } - - /** - * Sets the value of the companies property. - * - * @param value - * allowed object is - * {@link GCRCompanyArray } - * - */ - public void setCompanies(GCRCompanyArray value) { - this.companies = value; - } - - /** - * Gets the value of the persons property. - * - * @return - * possible object is - * {@link GCRPersonArray } - * - */ - public GCRPersonArray getPersons() { - return persons; - } - - /** - * Sets the value of the persons property. - * - * @param value - * allowed object is - * {@link GCRPersonArray } - * - */ - public void setPersons(GCRPersonArray value) { - this.persons = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyRelationsSimple.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyRelationsSimple.java deleted file mode 100644 index 0c7be84..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanyRelationsSimple.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCompanyRelationsSimple complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCompanyRelationsSimple">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="companies" type="{http://www.webservices.nl/soap/}GCRCompanySimpleArray" minOccurs="0"/>
- *         <element name="persons" type="{http://www.webservices.nl/soap/}GCRPersonSimpleArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCompanyRelationsSimple", propOrder = { - -}) -public class GCRCompanyRelationsSimple { - - protected GCRCompanySimpleArray companies; - protected GCRPersonSimpleArray persons; - - /** - * Gets the value of the companies property. - * - * @return - * possible object is - * {@link GCRCompanySimpleArray } - * - */ - public GCRCompanySimpleArray getCompanies() { - return companies; - } - - /** - * Sets the value of the companies property. - * - * @param value - * allowed object is - * {@link GCRCompanySimpleArray } - * - */ - public void setCompanies(GCRCompanySimpleArray value) { - this.companies = value; - } - - /** - * Gets the value of the persons property. - * - * @return - * possible object is - * {@link GCRPersonSimpleArray } - * - */ - public GCRPersonSimpleArray getPersons() { - return persons; - } - - /** - * Sets the value of the persons property. - * - * @param value - * allowed object is - * {@link GCRPersonSimpleArray } - * - */ - public void setPersons(GCRPersonSimpleArray value) { - this.persons = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanySimple.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanySimple.java deleted file mode 100644 index 5babf71..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanySimple.java +++ /dev/null @@ -1,177 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCompanySimple complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCompanySimple">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="contact_details" type="{http://www.webservices.nl/soap/}GCRContactDetails" minOccurs="0"/>
- *         <element name="official_data" type="{http://www.webservices.nl/soap/}GCROfficialData" minOccurs="0"/>
- *         <element name="history" type="{http://www.webservices.nl/soap/}GCRHistory" minOccurs="0"/>
- *         <element name="sectors_of_industry" type="{http://www.webservices.nl/soap/}GCRSectorOfIndustryArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCompanySimple", propOrder = { - -}) -public class GCRCompanySimple { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - @XmlElement(name = "contact_details") - protected GCRContactDetails contactDetails; - @XmlElement(name = "official_data") - protected GCROfficialData officialData; - protected GCRHistory history; - @XmlElement(name = "sectors_of_industry") - protected GCRSectorOfIndustryArray sectorsOfIndustry; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the contactDetails property. - * - * @return - * possible object is - * {@link GCRContactDetails } - * - */ - public GCRContactDetails getContactDetails() { - return contactDetails; - } - - /** - * Sets the value of the contactDetails property. - * - * @param value - * allowed object is - * {@link GCRContactDetails } - * - */ - public void setContactDetails(GCRContactDetails value) { - this.contactDetails = value; - } - - /** - * Gets the value of the officialData property. - * - * @return - * possible object is - * {@link GCROfficialData } - * - */ - public GCROfficialData getOfficialData() { - return officialData; - } - - /** - * Sets the value of the officialData property. - * - * @param value - * allowed object is - * {@link GCROfficialData } - * - */ - public void setOfficialData(GCROfficialData value) { - this.officialData = value; - } - - /** - * Gets the value of the history property. - * - * @return - * possible object is - * {@link GCRHistory } - * - */ - public GCRHistory getHistory() { - return history; - } - - /** - * Sets the value of the history property. - * - * @param value - * allowed object is - * {@link GCRHistory } - * - */ - public void setHistory(GCRHistory value) { - this.history = value; - } - - /** - * Gets the value of the sectorsOfIndustry property. - * - * @return - * possible object is - * {@link GCRSectorOfIndustryArray } - * - */ - public GCRSectorOfIndustryArray getSectorsOfIndustry() { - return sectorsOfIndustry; - } - - /** - * Sets the value of the sectorsOfIndustry property. - * - * @param value - * allowed object is - * {@link GCRSectorOfIndustryArray } - * - */ - public void setSectorsOfIndustry(GCRSectorOfIndustryArray value) { - this.sectorsOfIndustry = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanySimpleArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanySimpleArray.java deleted file mode 100644 index 3bae0e5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCompanySimpleArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCompanySimpleArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCompanySimpleArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCompanySimple" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCompanySimpleArray", propOrder = { - "item" -}) -public class GCRCompanySimpleArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRCompanySimple } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContactDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContactDetails.java deleted file mode 100644 index 23e1a4d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContactDetails.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRContactDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRContactDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}GCRTradeNameArray" minOccurs="0"/>
- *         <element name="addresses" type="{http://www.webservices.nl/soap/}GCRAddressArray" minOccurs="0"/>
- *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}GCRTelephoneNumberArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRContactDetails", propOrder = { - -}) -public class GCRContactDetails { - - @XmlElement(name = "company_name") - protected String companyName; - @XmlElement(name = "trade_names") - protected GCRTradeNameArray tradeNames; - protected GCRAddressArray addresses; - @XmlElement(name = "telephone_numbers") - protected GCRTelephoneNumberArray telephoneNumbers; - - /** - * Gets the value of the companyName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyName() { - return companyName; - } - - /** - * Sets the value of the companyName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyName(String value) { - this.companyName = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link GCRTradeNameArray } - * - */ - public GCRTradeNameArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link GCRTradeNameArray } - * - */ - public void setTradeNames(GCRTradeNameArray value) { - this.tradeNames = value; - } - - /** - * Gets the value of the addresses property. - * - * @return - * possible object is - * {@link GCRAddressArray } - * - */ - public GCRAddressArray getAddresses() { - return addresses; - } - - /** - * Sets the value of the addresses property. - * - * @param value - * allowed object is - * {@link GCRAddressArray } - * - */ - public void setAddresses(GCRAddressArray value) { - this.addresses = value; - } - - /** - * Gets the value of the telephoneNumbers property. - * - * @return - * possible object is - * {@link GCRTelephoneNumberArray } - * - */ - public GCRTelephoneNumberArray getTelephoneNumbers() { - return telephoneNumbers; - } - - /** - * Sets the value of the telephoneNumbers property. - * - * @param value - * allowed object is - * {@link GCRTelephoneNumberArray } - * - */ - public void setTelephoneNumbers(GCRTelephoneNumberArray value) { - this.telephoneNumbers = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContinuation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContinuation.java deleted file mode 100644 index 61769a6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContinuation.java +++ /dev/null @@ -1,152 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRContinuation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRContinuation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="residence" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRContinuation", propOrder = { - -}) -public class GCRContinuation { - - @XmlElement(name = "date_from") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - protected String residence; - @XmlElement(name = "legal_form_code") - protected Integer legalFormCode; - @XmlElement(name = "legal_form_text") - protected String legalFormText; - - /** - * Gets the value of the dateFrom property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Sets the value of the dateFrom property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Gets the value of the residence property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResidence() { - return residence; - } - - /** - * Sets the value of the residence property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResidence(String value) { - this.residence = value; - } - - /** - * Gets the value of the legalFormCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLegalFormCode() { - return legalFormCode; - } - - /** - * Sets the value of the legalFormCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLegalFormCode(Integer value) { - this.legalFormCode = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContinuationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContinuationArray.java deleted file mode 100644 index 1303e54..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRContinuationArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRContinuationArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRContinuationArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRContinuation" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRContinuationArray", propOrder = { - "item" -}) -public class GCRContinuationArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRContinuation } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCountry.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCountry.java deleted file mode 100644 index 841dcce..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCountry.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCountry complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCountry">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="country_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCountry", propOrder = { - -}) -public class GCRCountry { - - @XmlElement(name = "country_code") - protected int countryCode; - @XmlElement(name = "country_text", required = true) - protected String countryText; - - /** - * Gets the value of the countryCode property. - * - */ - public int getCountryCode() { - return countryCode; - } - - /** - * Sets the value of the countryCode property. - * - */ - public void setCountryCode(int value) { - this.countryCode = value; - } - - /** - * Gets the value of the countryText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryText() { - return countryText; - } - - /** - * Sets the value of the countryText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryText(String value) { - this.countryText = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCountryArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCountryArray.java deleted file mode 100644 index 23ac17f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCountryArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCountryArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCountryArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCountry" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCountryArray", propOrder = { - "item" -}) -public class GCRCountryArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRCountry } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdvice.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdvice.java deleted file mode 100644 index 1b7a1b5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdvice.java +++ /dev/null @@ -1,178 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCreditAdvice complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCreditAdvice">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="credit_amount" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="credit_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="history_advised_limits" type="{http://www.webservices.nl/soap/}GCRHistoryAdvisedLimitArray" minOccurs="0"/>
- *         <element name="credit_factors" type="{http://www.webservices.nl/soap/}GCRCreditFactorArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCreditAdvice", propOrder = { - -}) -public class GCRCreditAdvice { - - @XmlElement(name = "graydon_company_id") - protected BigInteger graydonCompanyId; - @XmlElement(name = "credit_amount") - protected String creditAmount; - @XmlElement(name = "credit_currency") - protected String creditCurrency; - @XmlElement(name = "history_advised_limits") - protected GCRHistoryAdvisedLimitArray historyAdvisedLimits; - @XmlElement(name = "credit_factors") - protected GCRCreditFactorArray creditFactors; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the creditAmount property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreditAmount() { - return creditAmount; - } - - /** - * Sets the value of the creditAmount property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreditAmount(String value) { - this.creditAmount = value; - } - - /** - * Gets the value of the creditCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreditCurrency() { - return creditCurrency; - } - - /** - * Sets the value of the creditCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreditCurrency(String value) { - this.creditCurrency = value; - } - - /** - * Gets the value of the historyAdvisedLimits property. - * - * @return - * possible object is - * {@link GCRHistoryAdvisedLimitArray } - * - */ - public GCRHistoryAdvisedLimitArray getHistoryAdvisedLimits() { - return historyAdvisedLimits; - } - - /** - * Sets the value of the historyAdvisedLimits property. - * - * @param value - * allowed object is - * {@link GCRHistoryAdvisedLimitArray } - * - */ - public void setHistoryAdvisedLimits(GCRHistoryAdvisedLimitArray value) { - this.historyAdvisedLimits = value; - } - - /** - * Gets the value of the creditFactors property. - * - * @return - * possible object is - * {@link GCRCreditFactorArray } - * - */ - public GCRCreditFactorArray getCreditFactors() { - return creditFactors; - } - - /** - * Sets the value of the creditFactors property. - * - * @param value - * allowed object is - * {@link GCRCreditFactorArray } - * - */ - public void setCreditFactors(GCRCreditFactorArray value) { - this.creditFactors = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdviceData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdviceData.java deleted file mode 100644 index 478def5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdviceData.java +++ /dev/null @@ -1,142 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCreditAdviceData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCreditAdviceData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="including_personal_judgement" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="credit_advice" type="{http://www.webservices.nl/soap/}GCRCreditAdvice" minOccurs="0"/>
- *         <element name="credit_advice_mother" type="{http://www.webservices.nl/soap/}GCRCreditAdviceMother" minOccurs="0"/>
- *         <element name="credit_rating" type="{http://www.webservices.nl/soap/}GCRCreditRating" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCreditAdviceData", propOrder = { - -}) -public class GCRCreditAdviceData { - - @XmlElement(name = "including_personal_judgement") - protected boolean includingPersonalJudgement; - @XmlElement(name = "credit_advice") - protected GCRCreditAdvice creditAdvice; - @XmlElement(name = "credit_advice_mother") - protected GCRCreditAdviceMother creditAdviceMother; - @XmlElement(name = "credit_rating") - protected GCRCreditRating creditRating; - - /** - * Gets the value of the includingPersonalJudgement property. - * - */ - public boolean isIncludingPersonalJudgement() { - return includingPersonalJudgement; - } - - /** - * Sets the value of the includingPersonalJudgement property. - * - */ - public void setIncludingPersonalJudgement(boolean value) { - this.includingPersonalJudgement = value; - } - - /** - * Gets the value of the creditAdvice property. - * - * @return - * possible object is - * {@link GCRCreditAdvice } - * - */ - public GCRCreditAdvice getCreditAdvice() { - return creditAdvice; - } - - /** - * Sets the value of the creditAdvice property. - * - * @param value - * allowed object is - * {@link GCRCreditAdvice } - * - */ - public void setCreditAdvice(GCRCreditAdvice value) { - this.creditAdvice = value; - } - - /** - * Gets the value of the creditAdviceMother property. - * - * @return - * possible object is - * {@link GCRCreditAdviceMother } - * - */ - public GCRCreditAdviceMother getCreditAdviceMother() { - return creditAdviceMother; - } - - /** - * Sets the value of the creditAdviceMother property. - * - * @param value - * allowed object is - * {@link GCRCreditAdviceMother } - * - */ - public void setCreditAdviceMother(GCRCreditAdviceMother value) { - this.creditAdviceMother = value; - } - - /** - * Gets the value of the creditRating property. - * - * @return - * possible object is - * {@link GCRCreditRating } - * - */ - public GCRCreditRating getCreditRating() { - return creditRating; - } - - /** - * Sets the value of the creditRating property. - * - * @param value - * allowed object is - * {@link GCRCreditRating } - * - */ - public void setCreditRating(GCRCreditRating value) { - this.creditRating = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdviceMother.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdviceMother.java deleted file mode 100644 index b0946e8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditAdviceMother.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCreditAdviceMother complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCreditAdviceMother">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCreditAdviceMother", propOrder = { - -}) -public class GCRCreditAdviceMother { - - @XmlElement(name = "graydon_company_id") - protected BigInteger graydonCompanyId; - protected String amount; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the amount property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAmount() { - return amount; - } - - /** - * Sets the value of the amount property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAmount(String value) { - this.amount = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditFactor.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditFactor.java deleted file mode 100644 index 0364637..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditFactor.java +++ /dev/null @@ -1,114 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCreditFactor complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCreditFactor">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="adjustment" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCreditFactor", propOrder = { - -}) -public class GCRCreditFactor { - - @XmlElement(required = true) - protected String type; - @XmlElement(required = true) - protected String description; - protected int adjustment; - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the adjustment property. - * - */ - public int getAdjustment() { - return adjustment; - } - - /** - * Sets the value of the adjustment property. - * - */ - public void setAdjustment(int value) { - this.adjustment = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditFactorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditFactorArray.java deleted file mode 100644 index 0524a35..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditFactorArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCreditFactorArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCreditFactorArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCreditFactor" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCreditFactorArray", propOrder = { - "item" -}) -public class GCRCreditFactorArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRCreditFactor } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditRating.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditRating.java deleted file mode 100644 index becd85a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCreditRating.java +++ /dev/null @@ -1,311 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCreditRating complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCreditRating">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="y_rating" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="pd_rating" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="pd_percentage" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="erc_score" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="credit_flag_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="credit_flag_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ratings" type="{http://www.webservices.nl/soap/}GCRRatingArray" minOccurs="0"/>
- *         <element name="y_rating_history" type="{http://www.webservices.nl/soap/}GCRRatingHistoryArray" minOccurs="0"/>
- *         <element name="pd_rating_history" type="{http://www.webservices.nl/soap/}GCRRatingHistoryArray" minOccurs="0"/>
- *         <element name="pd_percentage_history" type="{http://www.webservices.nl/soap/}GCRPercentageHistoryArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCreditRating", propOrder = { - -}) -public class GCRCreditRating { - - @XmlElement(name = "y_rating") - protected String yRating; - @XmlElement(name = "pd_rating") - protected String pdRating; - @XmlElement(name = "pd_percentage") - protected Float pdPercentage; - @XmlElement(name = "erc_score") - protected String ercScore; - @XmlElement(name = "credit_flag_code") - protected String creditFlagCode; - @XmlElement(name = "credit_flag_text") - protected String creditFlagText; - protected GCRRatingArray ratings; - @XmlElement(name = "y_rating_history") - protected GCRRatingHistoryArray yRatingHistory; - @XmlElement(name = "pd_rating_history") - protected GCRRatingHistoryArray pdRatingHistory; - @XmlElement(name = "pd_percentage_history") - protected GCRPercentageHistoryArray pdPercentageHistory; - - /** - * Gets the value of the yRating property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getYRating() { - return yRating; - } - - /** - * Sets the value of the yRating property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setYRating(String value) { - this.yRating = value; - } - - /** - * Gets the value of the pdRating property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPdRating() { - return pdRating; - } - - /** - * Sets the value of the pdRating property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPdRating(String value) { - this.pdRating = value; - } - - /** - * Gets the value of the pdPercentage property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getPdPercentage() { - return pdPercentage; - } - - /** - * Sets the value of the pdPercentage property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setPdPercentage(Float value) { - this.pdPercentage = value; - } - - /** - * Gets the value of the ercScore property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getErcScore() { - return ercScore; - } - - /** - * Sets the value of the ercScore property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setErcScore(String value) { - this.ercScore = value; - } - - /** - * Gets the value of the creditFlagCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreditFlagCode() { - return creditFlagCode; - } - - /** - * Sets the value of the creditFlagCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreditFlagCode(String value) { - this.creditFlagCode = value; - } - - /** - * Gets the value of the creditFlagText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreditFlagText() { - return creditFlagText; - } - - /** - * Sets the value of the creditFlagText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreditFlagText(String value) { - this.creditFlagText = value; - } - - /** - * Gets the value of the ratings property. - * - * @return - * possible object is - * {@link GCRRatingArray } - * - */ - public GCRRatingArray getRatings() { - return ratings; - } - - /** - * Sets the value of the ratings property. - * - * @param value - * allowed object is - * {@link GCRRatingArray } - * - */ - public void setRatings(GCRRatingArray value) { - this.ratings = value; - } - - /** - * Gets the value of the yRatingHistory property. - * - * @return - * possible object is - * {@link GCRRatingHistoryArray } - * - */ - public GCRRatingHistoryArray getYRatingHistory() { - return yRatingHistory; - } - - /** - * Sets the value of the yRatingHistory property. - * - * @param value - * allowed object is - * {@link GCRRatingHistoryArray } - * - */ - public void setYRatingHistory(GCRRatingHistoryArray value) { - this.yRatingHistory = value; - } - - /** - * Gets the value of the pdRatingHistory property. - * - * @return - * possible object is - * {@link GCRRatingHistoryArray } - * - */ - public GCRRatingHistoryArray getPdRatingHistory() { - return pdRatingHistory; - } - - /** - * Sets the value of the pdRatingHistory property. - * - * @param value - * allowed object is - * {@link GCRRatingHistoryArray } - * - */ - public void setPdRatingHistory(GCRRatingHistoryArray value) { - this.pdRatingHistory = value; - } - - /** - * Gets the value of the pdPercentageHistory property. - * - * @return - * possible object is - * {@link GCRPercentageHistoryArray } - * - */ - public GCRPercentageHistoryArray getPdPercentageHistory() { - return pdPercentageHistory; - } - - /** - * Sets the value of the pdPercentageHistory property. - * - * @param value - * allowed object is - * {@link GCRPercentageHistoryArray } - * - */ - public void setPdPercentageHistory(GCRPercentageHistoryArray value) { - this.pdPercentageHistory = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCurator.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCurator.java deleted file mode 100644 index 7469f0f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCurator.java +++ /dev/null @@ -1,100 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRCurator complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCurator">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_person_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="date_when_active_in_job_title" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCurator", propOrder = { - -}) -public class GCRCurator { - - @XmlElement(name = "graydon_person_id", required = true) - protected BigInteger graydonPersonId; - @XmlElement(name = "date_when_active_in_job_title") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateWhenActiveInJobTitle; - - /** - * Gets the value of the graydonPersonId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonPersonId() { - return graydonPersonId; - } - - /** - * Sets the value of the graydonPersonId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonPersonId(BigInteger value) { - this.graydonPersonId = value; - } - - /** - * Gets the value of the dateWhenActiveInJobTitle property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateWhenActiveInJobTitle() { - return dateWhenActiveInJobTitle; - } - - /** - * Sets the value of the dateWhenActiveInJobTitle property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateWhenActiveInJobTitle(XMLGregorianCalendar value) { - this.dateWhenActiveInJobTitle = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCuratorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCuratorArray.java deleted file mode 100644 index b9ac445..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRCuratorArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRCuratorArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRCuratorArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRCurator" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRCuratorArray", propOrder = { - "item" -}) -public class GCRCuratorArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRCurator } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDebtRestructuringPrivatePersons.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDebtRestructuringPrivatePersons.java deleted file mode 100644 index 2e886a3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDebtRestructuringPrivatePersons.java +++ /dev/null @@ -1,372 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRDebtRestructuringPrivatePersons complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRDebtRestructuringPrivatePersons">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="official_registration_number" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="currently_active" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="provisional_verdict_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="definite_verdict_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="debt_restructuring_term_in_months" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="provisional_discontinuance_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="provisional_discontinuance_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="provisional_discontinuance_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="definite_discontinuance_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="definite_discontinuance_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="definite_discontinuance_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="receivers" type="{http://www.webservices.nl/soap/}GCRReceiverArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRDebtRestructuringPrivatePersons", propOrder = { - -}) -public class GCRDebtRestructuringPrivatePersons { - - @XmlElement(name = "official_registration_number") - protected BigInteger officialRegistrationNumber; - @XmlElement(name = "currently_active") - protected Boolean currentlyActive; - @XmlElement(name = "provisional_verdict_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar provisionalVerdictDate; - @XmlElement(name = "definite_verdict_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar definiteVerdictDate; - @XmlElement(name = "debt_restructuring_term_in_months") - protected Integer debtRestructuringTermInMonths; - @XmlElement(name = "provisional_discontinuance_code") - protected Integer provisionalDiscontinuanceCode; - @XmlElement(name = "provisional_discontinuance_text") - protected String provisionalDiscontinuanceText; - @XmlElement(name = "provisional_discontinuance_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar provisionalDiscontinuanceDate; - @XmlElement(name = "definite_discontinuance_code") - protected Integer definiteDiscontinuanceCode; - @XmlElement(name = "definite_discontinuance_text") - protected String definiteDiscontinuanceText; - @XmlElement(name = "definite_discontinuance_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar definiteDiscontinuanceDate; - protected GCRReceiverArray receivers; - - /** - * Gets the value of the officialRegistrationNumber property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getOfficialRegistrationNumber() { - return officialRegistrationNumber; - } - - /** - * Sets the value of the officialRegistrationNumber property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setOfficialRegistrationNumber(BigInteger value) { - this.officialRegistrationNumber = value; - } - - /** - * Gets the value of the currentlyActive property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isCurrentlyActive() { - return currentlyActive; - } - - /** - * Sets the value of the currentlyActive property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setCurrentlyActive(Boolean value) { - this.currentlyActive = value; - } - - /** - * Gets the value of the provisionalVerdictDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getProvisionalVerdictDate() { - return provisionalVerdictDate; - } - - /** - * Sets the value of the provisionalVerdictDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setProvisionalVerdictDate(XMLGregorianCalendar value) { - this.provisionalVerdictDate = value; - } - - /** - * Gets the value of the definiteVerdictDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDefiniteVerdictDate() { - return definiteVerdictDate; - } - - /** - * Sets the value of the definiteVerdictDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDefiniteVerdictDate(XMLGregorianCalendar value) { - this.definiteVerdictDate = value; - } - - /** - * Gets the value of the debtRestructuringTermInMonths property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDebtRestructuringTermInMonths() { - return debtRestructuringTermInMonths; - } - - /** - * Sets the value of the debtRestructuringTermInMonths property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDebtRestructuringTermInMonths(Integer value) { - this.debtRestructuringTermInMonths = value; - } - - /** - * Gets the value of the provisionalDiscontinuanceCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getProvisionalDiscontinuanceCode() { - return provisionalDiscontinuanceCode; - } - - /** - * Sets the value of the provisionalDiscontinuanceCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setProvisionalDiscontinuanceCode(Integer value) { - this.provisionalDiscontinuanceCode = value; - } - - /** - * Gets the value of the provisionalDiscontinuanceText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvisionalDiscontinuanceText() { - return provisionalDiscontinuanceText; - } - - /** - * Sets the value of the provisionalDiscontinuanceText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvisionalDiscontinuanceText(String value) { - this.provisionalDiscontinuanceText = value; - } - - /** - * Gets the value of the provisionalDiscontinuanceDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getProvisionalDiscontinuanceDate() { - return provisionalDiscontinuanceDate; - } - - /** - * Sets the value of the provisionalDiscontinuanceDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setProvisionalDiscontinuanceDate(XMLGregorianCalendar value) { - this.provisionalDiscontinuanceDate = value; - } - - /** - * Gets the value of the definiteDiscontinuanceCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDefiniteDiscontinuanceCode() { - return definiteDiscontinuanceCode; - } - - /** - * Sets the value of the definiteDiscontinuanceCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDefiniteDiscontinuanceCode(Integer value) { - this.definiteDiscontinuanceCode = value; - } - - /** - * Gets the value of the definiteDiscontinuanceText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDefiniteDiscontinuanceText() { - return definiteDiscontinuanceText; - } - - /** - * Sets the value of the definiteDiscontinuanceText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDefiniteDiscontinuanceText(String value) { - this.definiteDiscontinuanceText = value; - } - - /** - * Gets the value of the definiteDiscontinuanceDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDefiniteDiscontinuanceDate() { - return definiteDiscontinuanceDate; - } - - /** - * Sets the value of the definiteDiscontinuanceDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDefiniteDiscontinuanceDate(XMLGregorianCalendar value) { - this.definiteDiscontinuanceDate = value; - } - - /** - * Gets the value of the receivers property. - * - * @return - * possible object is - * {@link GCRReceiverArray } - * - */ - public GCRReceiverArray getReceivers() { - return receivers; - } - - /** - * Sets the value of the receivers property. - * - * @param value - * allowed object is - * {@link GCRReceiverArray } - * - */ - public void setReceivers(GCRReceiverArray value) { - this.receivers = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDeclarationOfLiability.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDeclarationOfLiability.java deleted file mode 100644 index 437484f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDeclarationOfLiability.java +++ /dev/null @@ -1,155 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRDeclarationOfLiability complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRDeclarationOfLiability">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="date_until" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRDeclarationOfLiability", propOrder = { - -}) -public class GCRDeclarationOfLiability { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - @XmlElement(name = "is_current") - protected Boolean isCurrent; - @XmlElement(name = "date_from") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlElement(name = "date_until") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the isCurrent property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIsCurrent() { - return isCurrent; - } - - /** - * Sets the value of the isCurrent property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIsCurrent(Boolean value) { - this.isCurrent = value; - } - - /** - * Gets the value of the dateFrom property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Sets the value of the dateFrom property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Gets the value of the dateUntil property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Sets the value of the dateUntil property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDeclarationOfLiabilityArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDeclarationOfLiabilityArray.java deleted file mode 100644 index 8e04fb0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDeclarationOfLiabilityArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRDeclarationOfLiabilityArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRDeclarationOfLiabilityArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRDeclarationOfLiability" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRDeclarationOfLiabilityArray", propOrder = { - "item" -}) -public class GCRDeclarationOfLiabilityArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRDeclarationOfLiability } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDiscontinuance.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDiscontinuance.java deleted file mode 100644 index d56927e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRDiscontinuance.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRDiscontinuance complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRDiscontinuance">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="reason" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRDiscontinuance", propOrder = { - -}) -public class GCRDiscontinuance { - - @XmlElement(required = true) - protected String type; - protected String date; - @XmlElement(required = true) - protected String reason; - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the date property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDate() { - return date; - } - - /** - * Sets the value of the date property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDate(String value) { - this.date = value; - } - - /** - * Gets the value of the reason property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReason() { - return reason; - } - - /** - * Sets the value of the reason property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReason(String value) { - this.reason = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFiling.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFiling.java deleted file mode 100644 index 2641bf2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFiling.java +++ /dev/null @@ -1,153 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRFiling complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRFiling">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="filing_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="filing_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="filing_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="chamber_of_commerce" type="{http://www.webservices.nl/soap/}GCRChamberOfCommerce" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRFiling", propOrder = { - -}) -public class GCRFiling { - - @XmlElement(name = "filing_code") - protected String filingCode; - @XmlElement(name = "filing_text") - protected String filingText; - @XmlElement(name = "filing_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar filingDate; - @XmlElement(name = "chamber_of_commerce") - protected GCRChamberOfCommerce chamberOfCommerce; - - /** - * Gets the value of the filingCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFilingCode() { - return filingCode; - } - - /** - * Sets the value of the filingCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFilingCode(String value) { - this.filingCode = value; - } - - /** - * Gets the value of the filingText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFilingText() { - return filingText; - } - - /** - * Sets the value of the filingText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFilingText(String value) { - this.filingText = value; - } - - /** - * Gets the value of the filingDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getFilingDate() { - return filingDate; - } - - /** - * Sets the value of the filingDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setFilingDate(XMLGregorianCalendar value) { - this.filingDate = value; - } - - /** - * Gets the value of the chamberOfCommerce property. - * - * @return - * possible object is - * {@link GCRChamberOfCommerce } - * - */ - public GCRChamberOfCommerce getChamberOfCommerce() { - return chamberOfCommerce; - } - - /** - * Sets the value of the chamberOfCommerce property. - * - * @param value - * allowed object is - * {@link GCRChamberOfCommerce } - * - */ - public void setChamberOfCommerce(GCRChamberOfCommerce value) { - this.chamberOfCommerce = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialCalamity.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialCalamity.java deleted file mode 100644 index ac99eec..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialCalamity.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRFinancialCalamity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRFinancialCalamity">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bankruptcy" type="{http://www.webservices.nl/soap/}GCRBankruptcy" minOccurs="0"/>
- *         <element name="moratorium" type="{http://www.webservices.nl/soap/}GCRMoratorium" minOccurs="0"/>
- *         <element name="debt_restructuring_private_persons" type="{http://www.webservices.nl/soap/}GCRDebtRestructuringPrivatePersons" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRFinancialCalamity", propOrder = { - -}) -public class GCRFinancialCalamity { - - protected GCRBankruptcy bankruptcy; - protected GCRMoratorium moratorium; - @XmlElement(name = "debt_restructuring_private_persons") - protected GCRDebtRestructuringPrivatePersons debtRestructuringPrivatePersons; - - /** - * Gets the value of the bankruptcy property. - * - * @return - * possible object is - * {@link GCRBankruptcy } - * - */ - public GCRBankruptcy getBankruptcy() { - return bankruptcy; - } - - /** - * Sets the value of the bankruptcy property. - * - * @param value - * allowed object is - * {@link GCRBankruptcy } - * - */ - public void setBankruptcy(GCRBankruptcy value) { - this.bankruptcy = value; - } - - /** - * Gets the value of the moratorium property. - * - * @return - * possible object is - * {@link GCRMoratorium } - * - */ - public GCRMoratorium getMoratorium() { - return moratorium; - } - - /** - * Sets the value of the moratorium property. - * - * @param value - * allowed object is - * {@link GCRMoratorium } - * - */ - public void setMoratorium(GCRMoratorium value) { - this.moratorium = value; - } - - /** - * Gets the value of the debtRestructuringPrivatePersons property. - * - * @return - * possible object is - * {@link GCRDebtRestructuringPrivatePersons } - * - */ - public GCRDebtRestructuringPrivatePersons getDebtRestructuringPrivatePersons() { - return debtRestructuringPrivatePersons; - } - - /** - * Sets the value of the debtRestructuringPrivatePersons property. - * - * @param value - * allowed object is - * {@link GCRDebtRestructuringPrivatePersons } - * - */ - public void setDebtRestructuringPrivatePersons(GCRDebtRestructuringPrivatePersons value) { - this.debtRestructuringPrivatePersons = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialCalamityArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialCalamityArray.java deleted file mode 100644 index 16414b5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialCalamityArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRFinancialCalamityArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRFinancialCalamityArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRFinancialCalamity" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRFinancialCalamityArray", propOrder = { - "item" -}) -public class GCRFinancialCalamityArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRFinancialCalamity } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetailValue.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetailValue.java deleted file mode 100644 index e9ab301..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetailValue.java +++ /dev/null @@ -1,194 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRFinancialDetailValue complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRFinancialDetailValue">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="financial_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="financial_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="amount_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="forecast" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRFinancialDetailValue", propOrder = { - -}) -public class GCRFinancialDetailValue { - - @XmlElement(name = "financial_code") - protected String financialCode; - @XmlElement(name = "financial_text") - protected String financialText; - protected int year; - protected BigDecimal amount; - @XmlElement(name = "amount_currency") - protected String amountCurrency; - protected BigDecimal forecast; - - /** - * Gets the value of the financialCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinancialCode() { - return financialCode; - } - - /** - * Sets the value of the financialCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinancialCode(String value) { - this.financialCode = value; - } - - /** - * Gets the value of the financialText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinancialText() { - return financialText; - } - - /** - * Sets the value of the financialText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinancialText(String value) { - this.financialText = value; - } - - /** - * Gets the value of the year property. - * - */ - public int getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - */ - public void setYear(int value) { - this.year = value; - } - - /** - * Gets the value of the amount property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getAmount() { - return amount; - } - - /** - * Sets the value of the amount property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setAmount(BigDecimal value) { - this.amount = value; - } - - /** - * Gets the value of the amountCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAmountCurrency() { - return amountCurrency; - } - - /** - * Sets the value of the amountCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAmountCurrency(String value) { - this.amountCurrency = value; - } - - /** - * Gets the value of the forecast property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getForecast() { - return forecast; - } - - /** - * Sets the value of the forecast property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setForecast(BigDecimal value) { - this.forecast = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetailValueArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetailValueArray.java deleted file mode 100644 index 460bac9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetailValueArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRFinancialDetailValueArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRFinancialDetailValueArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRFinancialDetailValue" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRFinancialDetailValueArray", propOrder = { - "item" -}) -public class GCRFinancialDetailValueArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRFinancialDetailValue } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetails.java deleted file mode 100644 index f58b1cf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFinancialDetails.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRFinancialDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRFinancialDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="turnovers" type="{http://www.webservices.nl/soap/}GCRFinancialDetailValueArray" minOccurs="0"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}GCRFinancialDetailValueArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRFinancialDetails", propOrder = { - -}) -public class GCRFinancialDetails { - - @XmlElement(name = "graydon_company_id") - protected BigInteger graydonCompanyId; - protected GCRFinancialDetailValueArray turnovers; - protected GCRFinancialDetailValueArray results; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the turnovers property. - * - * @return - * possible object is - * {@link GCRFinancialDetailValueArray } - * - */ - public GCRFinancialDetailValueArray getTurnovers() { - return turnovers; - } - - /** - * Sets the value of the turnovers property. - * - * @param value - * allowed object is - * {@link GCRFinancialDetailValueArray } - * - */ - public void setTurnovers(GCRFinancialDetailValueArray value) { - this.turnovers = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link GCRFinancialDetailValueArray } - * - */ - public GCRFinancialDetailValueArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link GCRFinancialDetailValueArray } - * - */ - public void setResults(GCRFinancialDetailValueArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFirstDirector.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFirstDirector.java deleted file mode 100644 index 61de349..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFirstDirector.java +++ /dev/null @@ -1,209 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRFirstDirector complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRFirstDirector">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_person_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="job_title_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="job_title_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="date_until" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRFirstDirector", propOrder = { - -}) -public class GCRFirstDirector { - - @XmlElement(name = "graydon_person_id") - protected BigInteger graydonPersonId; - @XmlElement(name = "is_current") - protected Boolean isCurrent; - @XmlElement(name = "job_title_code") - protected Integer jobTitleCode; - @XmlElement(name = "job_title_text") - protected String jobTitleText; - @XmlElement(name = "date_from") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlElement(name = "date_until") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * Gets the value of the graydonPersonId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonPersonId() { - return graydonPersonId; - } - - /** - * Sets the value of the graydonPersonId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonPersonId(BigInteger value) { - this.graydonPersonId = value; - } - - /** - * Gets the value of the isCurrent property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIsCurrent() { - return isCurrent; - } - - /** - * Sets the value of the isCurrent property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIsCurrent(Boolean value) { - this.isCurrent = value; - } - - /** - * Gets the value of the jobTitleCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getJobTitleCode() { - return jobTitleCode; - } - - /** - * Sets the value of the jobTitleCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setJobTitleCode(Integer value) { - this.jobTitleCode = value; - } - - /** - * Gets the value of the jobTitleText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getJobTitleText() { - return jobTitleText; - } - - /** - * Sets the value of the jobTitleText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setJobTitleText(String value) { - this.jobTitleText = value; - } - - /** - * Gets the value of the dateFrom property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Sets the value of the dateFrom property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Gets the value of the dateUntil property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Sets the value of the dateUntil property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFirstDirectorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFirstDirectorArray.java deleted file mode 100644 index 9f93b89..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFirstDirectorArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRFirstDirectorArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRFirstDirectorArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRFirstDirector" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRFirstDirectorArray", propOrder = { - "item" -}) -public class GCRFirstDirectorArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRFirstDirector } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFounded.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFounded.java deleted file mode 100644 index 2b0d06b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFounded.java +++ /dev/null @@ -1,208 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRFounded complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRFounded">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="residence" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="legal_form_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="start_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="founded_at" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRFounded", propOrder = { - -}) -public class GCRFounded { - - @XmlElement(name = "date_from") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - protected String residence; - @XmlElement(name = "legal_form_code") - protected Integer legalFormCode; - @XmlElement(name = "legal_form_text") - protected String legalFormText; - @XmlElement(name = "start_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar startDate; - @XmlElement(name = "founded_at") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar foundedAt; - - /** - * Gets the value of the dateFrom property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Sets the value of the dateFrom property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Gets the value of the residence property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResidence() { - return residence; - } - - /** - * Sets the value of the residence property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResidence(String value) { - this.residence = value; - } - - /** - * Gets the value of the legalFormCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLegalFormCode() { - return legalFormCode; - } - - /** - * Sets the value of the legalFormCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLegalFormCode(Integer value) { - this.legalFormCode = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStartDate(XMLGregorianCalendar value) { - this.startDate = value; - } - - /** - * Gets the value of the foundedAt property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getFoundedAt() { - return foundedAt; - } - - /** - * Sets the value of the foundedAt property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setFoundedAt(XMLGregorianCalendar value) { - this.foundedAt = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFoundedArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFoundedArray.java deleted file mode 100644 index 50be97c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRFoundedArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRFoundedArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRFoundedArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRFounded" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRFoundedArray", propOrder = { - "item" -}) -public class GCRFoundedArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRFounded } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistory.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistory.java deleted file mode 100644 index c6f1109..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistory.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRHistory complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRHistory">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="originated_from" type="{http://www.webservices.nl/soap/}GCROriginatedFromArray" minOccurs="0"/>
- *         <element name="continuation" type="{http://www.webservices.nl/soap/}GCRContinuationArray" minOccurs="0"/>
- *         <element name="company_continued_under" type="{http://www.webservices.nl/soap/}GCRCompanyContinuedUnderArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRHistory", propOrder = { - -}) -public class GCRHistory { - - @XmlElement(name = "originated_from") - protected GCROriginatedFromArray originatedFrom; - protected GCRContinuationArray continuation; - @XmlElement(name = "company_continued_under") - protected GCRCompanyContinuedUnderArray companyContinuedUnder; - - /** - * Gets the value of the originatedFrom property. - * - * @return - * possible object is - * {@link GCROriginatedFromArray } - * - */ - public GCROriginatedFromArray getOriginatedFrom() { - return originatedFrom; - } - - /** - * Sets the value of the originatedFrom property. - * - * @param value - * allowed object is - * {@link GCROriginatedFromArray } - * - */ - public void setOriginatedFrom(GCROriginatedFromArray value) { - this.originatedFrom = value; - } - - /** - * Gets the value of the continuation property. - * - * @return - * possible object is - * {@link GCRContinuationArray } - * - */ - public GCRContinuationArray getContinuation() { - return continuation; - } - - /** - * Sets the value of the continuation property. - * - * @param value - * allowed object is - * {@link GCRContinuationArray } - * - */ - public void setContinuation(GCRContinuationArray value) { - this.continuation = value; - } - - /** - * Gets the value of the companyContinuedUnder property. - * - * @return - * possible object is - * {@link GCRCompanyContinuedUnderArray } - * - */ - public GCRCompanyContinuedUnderArray getCompanyContinuedUnder() { - return companyContinuedUnder; - } - - /** - * Sets the value of the companyContinuedUnder property. - * - * @param value - * allowed object is - * {@link GCRCompanyContinuedUnderArray } - * - */ - public void setCompanyContinuedUnder(GCRCompanyContinuedUnderArray value) { - this.companyContinuedUnder = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistoryAdvisedLimit.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistoryAdvisedLimit.java deleted file mode 100644 index eae66ee..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistoryAdvisedLimit.java +++ /dev/null @@ -1,99 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRHistoryAdvisedLimit complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRHistoryAdvisedLimit">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="year_month" type="{http://www.w3.org/2001/XMLSchema}gYearMonth"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRHistoryAdvisedLimit", propOrder = { - -}) -public class GCRHistoryAdvisedLimit { - - @XmlElement(required = true) - protected String value; - @XmlElement(name = "year_month", required = true) - @XmlSchemaType(name = "gYearMonth") - protected XMLGregorianCalendar yearMonth; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - - /** - * Gets the value of the yearMonth property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getYearMonth() { - return yearMonth; - } - - /** - * Sets the value of the yearMonth property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setYearMonth(XMLGregorianCalendar value) { - this.yearMonth = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistoryAdvisedLimitArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistoryAdvisedLimitArray.java deleted file mode 100644 index 80ce757..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRHistoryAdvisedLimitArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRHistoryAdvisedLimitArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRHistoryAdvisedLimitArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRHistoryAdvisedLimit" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRHistoryAdvisedLimitArray", propOrder = { - "item" -}) -public class GCRHistoryAdvisedLimitArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRHistoryAdvisedLimit } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRImportExport.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRImportExport.java deleted file mode 100644 index 05f21b0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRImportExport.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRImportExport complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRImportExport">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="import_countries" type="{http://www.webservices.nl/soap/}GCRCountryArray" minOccurs="0"/>
- *         <element name="export_countries" type="{http://www.webservices.nl/soap/}GCRCountryArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRImportExport", propOrder = { - -}) -public class GCRImportExport { - - @XmlElement(name = "import_countries") - protected GCRCountryArray importCountries; - @XmlElement(name = "export_countries") - protected GCRCountryArray exportCountries; - - /** - * Gets the value of the importCountries property. - * - * @return - * possible object is - * {@link GCRCountryArray } - * - */ - public GCRCountryArray getImportCountries() { - return importCountries; - } - - /** - * Sets the value of the importCountries property. - * - * @param value - * allowed object is - * {@link GCRCountryArray } - * - */ - public void setImportCountries(GCRCountryArray value) { - this.importCountries = value; - } - - /** - * Gets the value of the exportCountries property. - * - * @return - * possible object is - * {@link GCRCountryArray } - * - */ - public GCRCountryArray getExportCountries() { - return exportCountries; - } - - /** - * Sets the value of the exportCountries property. - * - * @param value - * allowed object is - * {@link GCRCountryArray } - * - */ - public void setExportCountries(GCRCountryArray value) { - this.exportCountries = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRItem.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRItem.java deleted file mode 100644 index c582d88..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRItem.java +++ /dev/null @@ -1,204 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRItem complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRItem">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="main_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sub_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="free_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRItem", propOrder = { - -}) -public class GCRItem { - - @XmlElement(name = "main_code", required = true) - protected String mainCode; - @XmlElement(required = true) - protected String code; - @XmlElement(name = "sub_code", required = true) - protected String subCode; - @XmlElement(required = true) - protected String description; - protected BigDecimal value; - @XmlElement(name = "free_text") - protected String freeText; - - /** - * Gets the value of the mainCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMainCode() { - return mainCode; - } - - /** - * Sets the value of the mainCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMainCode(String value) { - this.mainCode = value; - } - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - - /** - * Gets the value of the subCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubCode() { - return subCode; - } - - /** - * Sets the value of the subCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubCode(String value) { - this.subCode = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setValue(BigDecimal value) { - this.value = value; - } - - /** - * Gets the value of the freeText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFreeText() { - return freeText; - } - - /** - * Sets the value of the freeText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFreeText(String value) { - this.freeText = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRItemArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRItemArray.java deleted file mode 100644 index 36ea4f5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRItemArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRItemArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRItemArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRItem" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRItemArray", propOrder = { - "item" -}) -public class GCRItemArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRItem } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRJobTitle.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRJobTitle.java deleted file mode 100644 index 8d830ba..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRJobTitle.java +++ /dev/null @@ -1,263 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRJobTitle complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRJobTitle">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="job_title_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="job_title_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="authority_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="authority_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="date_until" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRJobTitle", propOrder = { - -}) -public class GCRJobTitle { - - @XmlElement(name = "graydon_company_id") - protected BigInteger graydonCompanyId; - @XmlElement(name = "is_current") - protected Boolean isCurrent; - @XmlElement(name = "job_title_code") - protected Integer jobTitleCode; - @XmlElement(name = "job_title_text") - protected String jobTitleText; - @XmlElement(name = "authority_code") - protected Integer authorityCode; - @XmlElement(name = "authority_text") - protected String authorityText; - @XmlElement(name = "date_from") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlElement(name = "date_until") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the isCurrent property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIsCurrent() { - return isCurrent; - } - - /** - * Sets the value of the isCurrent property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIsCurrent(Boolean value) { - this.isCurrent = value; - } - - /** - * Gets the value of the jobTitleCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getJobTitleCode() { - return jobTitleCode; - } - - /** - * Sets the value of the jobTitleCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setJobTitleCode(Integer value) { - this.jobTitleCode = value; - } - - /** - * Gets the value of the jobTitleText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getJobTitleText() { - return jobTitleText; - } - - /** - * Sets the value of the jobTitleText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setJobTitleText(String value) { - this.jobTitleText = value; - } - - /** - * Gets the value of the authorityCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getAuthorityCode() { - return authorityCode; - } - - /** - * Sets the value of the authorityCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setAuthorityCode(Integer value) { - this.authorityCode = value; - } - - /** - * Gets the value of the authorityText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAuthorityText() { - return authorityText; - } - - /** - * Sets the value of the authorityText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAuthorityText(String value) { - this.authorityText = value; - } - - /** - * Gets the value of the dateFrom property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Sets the value of the dateFrom property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Gets the value of the dateUntil property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Sets the value of the dateUntil property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRJobTitleArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRJobTitleArray.java deleted file mode 100644 index 7f7f92e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRJobTitleArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRJobTitleArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRJobTitleArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRJobTitle" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRJobTitleArray", propOrder = { - "item" -}) -public class GCRJobTitleArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRJobTitle } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiabilities.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiabilities.java deleted file mode 100644 index d7e833c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiabilities.java +++ /dev/null @@ -1,97 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRLiabilities complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRLiabilities">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="liabilities_items" type="{http://www.webservices.nl/soap/}GCRItemArray" minOccurs="0"/>
- *         <element name="balance_sheet_total" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRLiabilities", propOrder = { - -}) -public class GCRLiabilities { - - @XmlElement(name = "liabilities_items") - protected GCRItemArray liabilitiesItems; - @XmlElement(name = "balance_sheet_total") - protected BigDecimal balanceSheetTotal; - - /** - * Gets the value of the liabilitiesItems property. - * - * @return - * possible object is - * {@link GCRItemArray } - * - */ - public GCRItemArray getLiabilitiesItems() { - return liabilitiesItems; - } - - /** - * Sets the value of the liabilitiesItems property. - * - * @param value - * allowed object is - * {@link GCRItemArray } - * - */ - public void setLiabilitiesItems(GCRItemArray value) { - this.liabilitiesItems = value; - } - - /** - * Gets the value of the balanceSheetTotal property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getBalanceSheetTotal() { - return balanceSheetTotal; - } - - /** - * Sets the value of the balanceSheetTotal property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setBalanceSheetTotal(BigDecimal value) { - this.balanceSheetTotal = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaison.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaison.java deleted file mode 100644 index 5c46fea..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaison.java +++ /dev/null @@ -1,124 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRLiaison complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRLiaison">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="liaison_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="liaison_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRLiaison", propOrder = { - -}) -public class GCRLiaison { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - @XmlElement(name = "liaison_code") - protected String liaisonCode; - @XmlElement(name = "liaison_text") - protected String liaisonText; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the liaisonCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLiaisonCode() { - return liaisonCode; - } - - /** - * Sets the value of the liaisonCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLiaisonCode(String value) { - this.liaisonCode = value; - } - - /** - * Gets the value of the liaisonText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLiaisonText() { - return liaisonText; - } - - /** - * Sets the value of the liaisonText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLiaisonText(String value) { - this.liaisonText = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonArray.java deleted file mode 100644 index f18805a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRLiaisonArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRLiaisonArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRLiaison" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRLiaisonArray", propOrder = { - "item" -}) -public class GCRLiaisonArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRLiaison } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonCompany.java deleted file mode 100644 index 9a4912b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonCompany.java +++ /dev/null @@ -1,151 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRLiaisonCompany complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRLiaisonCompany">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="contact_details" type="{http://www.webservices.nl/soap/}GCRLiaisonContactDetails" minOccurs="0"/>
- *         <element name="official_data" type="{http://www.webservices.nl/soap/}GCRLiaisonOfficialData" minOccurs="0"/>
- *         <element name="financial_calamities" type="{http://www.webservices.nl/soap/}GCRFinancialCalamityArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRLiaisonCompany", propOrder = { - -}) -public class GCRLiaisonCompany { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - @XmlElement(name = "contact_details") - protected GCRLiaisonContactDetails contactDetails; - @XmlElement(name = "official_data") - protected GCRLiaisonOfficialData officialData; - @XmlElement(name = "financial_calamities") - protected GCRFinancialCalamityArray financialCalamities; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the contactDetails property. - * - * @return - * possible object is - * {@link GCRLiaisonContactDetails } - * - */ - public GCRLiaisonContactDetails getContactDetails() { - return contactDetails; - } - - /** - * Sets the value of the contactDetails property. - * - * @param value - * allowed object is - * {@link GCRLiaisonContactDetails } - * - */ - public void setContactDetails(GCRLiaisonContactDetails value) { - this.contactDetails = value; - } - - /** - * Gets the value of the officialData property. - * - * @return - * possible object is - * {@link GCRLiaisonOfficialData } - * - */ - public GCRLiaisonOfficialData getOfficialData() { - return officialData; - } - - /** - * Sets the value of the officialData property. - * - * @param value - * allowed object is - * {@link GCRLiaisonOfficialData } - * - */ - public void setOfficialData(GCRLiaisonOfficialData value) { - this.officialData = value; - } - - /** - * Gets the value of the financialCalamities property. - * - * @return - * possible object is - * {@link GCRFinancialCalamityArray } - * - */ - public GCRFinancialCalamityArray getFinancialCalamities() { - return financialCalamities; - } - - /** - * Sets the value of the financialCalamities property. - * - * @param value - * allowed object is - * {@link GCRFinancialCalamityArray } - * - */ - public void setFinancialCalamities(GCRFinancialCalamityArray value) { - this.financialCalamities = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonCompanyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonCompanyArray.java deleted file mode 100644 index ed85cb5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonCompanyArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRLiaisonCompanyArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRLiaisonCompanyArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRLiaisonCompany" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRLiaisonCompanyArray", propOrder = { - "item" -}) -public class GCRLiaisonCompanyArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRLiaisonCompany } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonContactDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonContactDetails.java deleted file mode 100644 index e131061..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonContactDetails.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRLiaisonContactDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRLiaisonContactDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="addresses" type="{http://www.webservices.nl/soap/}GCRAddressArray" minOccurs="0"/>
- *         <element name="telephone_numbers" type="{http://www.webservices.nl/soap/}GCRTelephoneNumberArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRLiaisonContactDetails", propOrder = { - -}) -public class GCRLiaisonContactDetails { - - @XmlElement(name = "company_name") - protected String companyName; - protected GCRAddressArray addresses; - @XmlElement(name = "telephone_numbers") - protected GCRTelephoneNumberArray telephoneNumbers; - - /** - * Gets the value of the companyName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyName() { - return companyName; - } - - /** - * Sets the value of the companyName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyName(String value) { - this.companyName = value; - } - - /** - * Gets the value of the addresses property. - * - * @return - * possible object is - * {@link GCRAddressArray } - * - */ - public GCRAddressArray getAddresses() { - return addresses; - } - - /** - * Sets the value of the addresses property. - * - * @param value - * allowed object is - * {@link GCRAddressArray } - * - */ - public void setAddresses(GCRAddressArray value) { - this.addresses = value; - } - - /** - * Gets the value of the telephoneNumbers property. - * - * @return - * possible object is - * {@link GCRTelephoneNumberArray } - * - */ - public GCRTelephoneNumberArray getTelephoneNumbers() { - return telephoneNumbers; - } - - /** - * Sets the value of the telephoneNumbers property. - * - * @param value - * allowed object is - * {@link GCRTelephoneNumberArray } - * - */ - public void setTelephoneNumbers(GCRTelephoneNumberArray value) { - this.telephoneNumbers = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonOfficialData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonOfficialData.java deleted file mode 100644 index 1d00ec4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRLiaisonOfficialData.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRLiaisonOfficialData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRLiaisonOfficialData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="chamber_of_commerce" type="{http://www.webservices.nl/soap/}GCRChamberOfCommerce" minOccurs="0"/>
- *         <element name="present_legal_form_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="present_legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRLiaisonOfficialData", propOrder = { - -}) -public class GCRLiaisonOfficialData { - - @XmlElement(name = "chamber_of_commerce") - protected GCRChamberOfCommerce chamberOfCommerce; - @XmlElement(name = "present_legal_form_code") - protected Integer presentLegalFormCode; - @XmlElement(name = "present_legal_form_text") - protected String presentLegalFormText; - - /** - * Gets the value of the chamberOfCommerce property. - * - * @return - * possible object is - * {@link GCRChamberOfCommerce } - * - */ - public GCRChamberOfCommerce getChamberOfCommerce() { - return chamberOfCommerce; - } - - /** - * Sets the value of the chamberOfCommerce property. - * - * @param value - * allowed object is - * {@link GCRChamberOfCommerce } - * - */ - public void setChamberOfCommerce(GCRChamberOfCommerce value) { - this.chamberOfCommerce = value; - } - - /** - * Gets the value of the presentLegalFormCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPresentLegalFormCode() { - return presentLegalFormCode; - } - - /** - * Sets the value of the presentLegalFormCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPresentLegalFormCode(Integer value) { - this.presentLegalFormCode = value; - } - - /** - * Gets the value of the presentLegalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPresentLegalFormText() { - return presentLegalFormText; - } - - /** - * Sets the value of the presentLegalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPresentLegalFormText(String value) { - this.presentLegalFormText = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRManagement.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRManagement.java deleted file mode 100644 index 28933aa..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRManagement.java +++ /dev/null @@ -1,151 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRManagement complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRManagement">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="graydon_person_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="job_titles" type="{http://www.webservices.nl/soap/}GCRJobTitleArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRManagement", propOrder = { - -}) -public class GCRManagement { - - @XmlElement(name = "graydon_company_id") - protected BigInteger graydonCompanyId; - @XmlElement(name = "graydon_person_id") - protected BigInteger graydonPersonId; - @XmlElement(name = "is_current") - protected Boolean isCurrent; - @XmlElement(name = "job_titles") - protected GCRJobTitleArray jobTitles; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the graydonPersonId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonPersonId() { - return graydonPersonId; - } - - /** - * Sets the value of the graydonPersonId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonPersonId(BigInteger value) { - this.graydonPersonId = value; - } - - /** - * Gets the value of the isCurrent property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIsCurrent() { - return isCurrent; - } - - /** - * Sets the value of the isCurrent property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIsCurrent(Boolean value) { - this.isCurrent = value; - } - - /** - * Gets the value of the jobTitles property. - * - * @return - * possible object is - * {@link GCRJobTitleArray } - * - */ - public GCRJobTitleArray getJobTitles() { - return jobTitles; - } - - /** - * Sets the value of the jobTitles property. - * - * @param value - * allowed object is - * {@link GCRJobTitleArray } - * - */ - public void setJobTitles(GCRJobTitleArray value) { - this.jobTitles = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRManagementArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRManagementArray.java deleted file mode 100644 index d4d123c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRManagementArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRManagementArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRManagementArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRManagement" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRManagementArray", propOrder = { - "item" -}) -public class GCRManagementArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRManagement } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRMoratorium.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRMoratorium.java deleted file mode 100644 index c89ad54..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRMoratorium.java +++ /dev/null @@ -1,455 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRMoratorium complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRMoratorium">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="official_registration_number" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="currently_active" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="provisional_verdict_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="definite_verdict_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="moratorium_term_in_months" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="prolongation_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="prolongation_in_months" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="vote_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="vote_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="vote_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="definite_discontinuance_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="definite_discontinuance_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="definite_discontinuance_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="receivers" type="{http://www.webservices.nl/soap/}GCRReceiverArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRMoratorium", propOrder = { - -}) -public class GCRMoratorium { - - @XmlElement(name = "official_registration_number") - protected BigInteger officialRegistrationNumber; - @XmlElement(name = "currently_active") - protected Boolean currentlyActive; - @XmlElement(name = "date_from") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlElement(name = "provisional_verdict_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar provisionalVerdictDate; - @XmlElement(name = "definite_verdict_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar definiteVerdictDate; - @XmlElement(name = "moratorium_term_in_months") - protected Integer moratoriumTermInMonths; - @XmlElement(name = "prolongation_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar prolongationDate; - @XmlElement(name = "prolongation_in_months") - protected Integer prolongationInMonths; - @XmlElement(name = "vote_code") - protected Integer voteCode; - @XmlElement(name = "vote_text") - protected String voteText; - @XmlElement(name = "vote_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar voteDate; - @XmlElement(name = "definite_discontinuance_code") - protected Integer definiteDiscontinuanceCode; - @XmlElement(name = "definite_discontinuance_text") - protected String definiteDiscontinuanceText; - @XmlElement(name = "definite_discontinuance_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar definiteDiscontinuanceDate; - protected GCRReceiverArray receivers; - - /** - * Gets the value of the officialRegistrationNumber property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getOfficialRegistrationNumber() { - return officialRegistrationNumber; - } - - /** - * Sets the value of the officialRegistrationNumber property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setOfficialRegistrationNumber(BigInteger value) { - this.officialRegistrationNumber = value; - } - - /** - * Gets the value of the currentlyActive property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isCurrentlyActive() { - return currentlyActive; - } - - /** - * Sets the value of the currentlyActive property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setCurrentlyActive(Boolean value) { - this.currentlyActive = value; - } - - /** - * Gets the value of the dateFrom property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Sets the value of the dateFrom property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Gets the value of the provisionalVerdictDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getProvisionalVerdictDate() { - return provisionalVerdictDate; - } - - /** - * Sets the value of the provisionalVerdictDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setProvisionalVerdictDate(XMLGregorianCalendar value) { - this.provisionalVerdictDate = value; - } - - /** - * Gets the value of the definiteVerdictDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDefiniteVerdictDate() { - return definiteVerdictDate; - } - - /** - * Sets the value of the definiteVerdictDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDefiniteVerdictDate(XMLGregorianCalendar value) { - this.definiteVerdictDate = value; - } - - /** - * Gets the value of the moratoriumTermInMonths property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMoratoriumTermInMonths() { - return moratoriumTermInMonths; - } - - /** - * Sets the value of the moratoriumTermInMonths property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMoratoriumTermInMonths(Integer value) { - this.moratoriumTermInMonths = value; - } - - /** - * Gets the value of the prolongationDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getProlongationDate() { - return prolongationDate; - } - - /** - * Sets the value of the prolongationDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setProlongationDate(XMLGregorianCalendar value) { - this.prolongationDate = value; - } - - /** - * Gets the value of the prolongationInMonths property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getProlongationInMonths() { - return prolongationInMonths; - } - - /** - * Sets the value of the prolongationInMonths property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setProlongationInMonths(Integer value) { - this.prolongationInMonths = value; - } - - /** - * Gets the value of the voteCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getVoteCode() { - return voteCode; - } - - /** - * Sets the value of the voteCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setVoteCode(Integer value) { - this.voteCode = value; - } - - /** - * Gets the value of the voteText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVoteText() { - return voteText; - } - - /** - * Sets the value of the voteText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVoteText(String value) { - this.voteText = value; - } - - /** - * Gets the value of the voteDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVoteDate() { - return voteDate; - } - - /** - * Sets the value of the voteDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVoteDate(XMLGregorianCalendar value) { - this.voteDate = value; - } - - /** - * Gets the value of the definiteDiscontinuanceCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDefiniteDiscontinuanceCode() { - return definiteDiscontinuanceCode; - } - - /** - * Sets the value of the definiteDiscontinuanceCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDefiniteDiscontinuanceCode(Integer value) { - this.definiteDiscontinuanceCode = value; - } - - /** - * Gets the value of the definiteDiscontinuanceText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDefiniteDiscontinuanceText() { - return definiteDiscontinuanceText; - } - - /** - * Sets the value of the definiteDiscontinuanceText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDefiniteDiscontinuanceText(String value) { - this.definiteDiscontinuanceText = value; - } - - /** - * Gets the value of the definiteDiscontinuanceDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDefiniteDiscontinuanceDate() { - return definiteDiscontinuanceDate; - } - - /** - * Sets the value of the definiteDiscontinuanceDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDefiniteDiscontinuanceDate(XMLGregorianCalendar value) { - this.definiteDiscontinuanceDate = value; - } - - /** - * Gets the value of the receivers property. - * - * @return - * possible object is - * {@link GCRReceiverArray } - * - */ - public GCRReceiverArray getReceivers() { - return receivers; - } - - /** - * Sets the value of the receivers property. - * - * @param value - * allowed object is - * {@link GCRReceiverArray } - * - */ - public void setReceivers(GCRReceiverArray value) { - this.receivers = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRNumberOfEmployees.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRNumberOfEmployees.java deleted file mode 100644 index 920c71c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRNumberOfEmployees.java +++ /dev/null @@ -1,79 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRNumberOfEmployees complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRNumberOfEmployees">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="year" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="number_of_employees" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRNumberOfEmployees", propOrder = { - -}) -public class GCRNumberOfEmployees { - - protected int year; - @XmlElement(name = "number_of_employees") - protected float numberOfEmployees; - - /** - * Gets the value of the year property. - * - */ - public int getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - */ - public void setYear(int value) { - this.year = value; - } - - /** - * Gets the value of the numberOfEmployees property. - * - */ - public float getNumberOfEmployees() { - return numberOfEmployees; - } - - /** - * Sets the value of the numberOfEmployees property. - * - */ - public void setNumberOfEmployees(float value) { - this.numberOfEmployees = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRNumberOfEmployeesArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRNumberOfEmployeesArray.java deleted file mode 100644 index ca58ba7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRNumberOfEmployeesArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRNumberOfEmployeesArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRNumberOfEmployeesArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRNumberOfEmployees" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRNumberOfEmployeesArray", propOrder = { - "item" -}) -public class GCRNumberOfEmployeesArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRNumberOfEmployees } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROfficialData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROfficialData.java deleted file mode 100644 index 30d96d5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROfficialData.java +++ /dev/null @@ -1,363 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCROfficialData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCROfficialData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="chamber_of_commerce" type="{http://www.webservices.nl/soap/}GCRChamberOfCommerce" minOccurs="0"/>
- *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="present_legal_form_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="present_legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="present_legal_form_fine_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="present_legal_form_fine_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="number_of_non_executive_partners" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="publication_duty_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="publication_duty_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="capital" type="{http://www.webservices.nl/soap/}GCRCapitalArray" minOccurs="0"/>
- *         <element name="founded" type="{http://www.webservices.nl/soap/}GCRFoundedArray" minOccurs="0"/>
- *         <element name="discontinuance" type="{http://www.webservices.nl/soap/}GCRDiscontinuance" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCROfficialData", propOrder = { - -}) -public class GCROfficialData { - - @XmlElement(name = "chamber_of_commerce") - protected GCRChamberOfCommerce chamberOfCommerce; - @XmlElement(name = "vat_number") - protected String vatNumber; - @XmlElement(name = "present_legal_form_code") - protected Integer presentLegalFormCode; - @XmlElement(name = "present_legal_form_text") - protected String presentLegalFormText; - @XmlElement(name = "present_legal_form_fine_code") - protected Integer presentLegalFormFineCode; - @XmlElement(name = "present_legal_form_fine_text") - protected String presentLegalFormFineText; - @XmlElement(name = "number_of_non_executive_partners") - protected String numberOfNonExecutivePartners; - @XmlElement(name = "publication_duty_code") - protected String publicationDutyCode; - @XmlElement(name = "publication_duty_text") - protected String publicationDutyText; - protected GCRCapitalArray capital; - protected GCRFoundedArray founded; - protected GCRDiscontinuance discontinuance; - - /** - * Gets the value of the chamberOfCommerce property. - * - * @return - * possible object is - * {@link GCRChamberOfCommerce } - * - */ - public GCRChamberOfCommerce getChamberOfCommerce() { - return chamberOfCommerce; - } - - /** - * Sets the value of the chamberOfCommerce property. - * - * @param value - * allowed object is - * {@link GCRChamberOfCommerce } - * - */ - public void setChamberOfCommerce(GCRChamberOfCommerce value) { - this.chamberOfCommerce = value; - } - - /** - * Gets the value of the vatNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVatNumber() { - return vatNumber; - } - - /** - * Sets the value of the vatNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVatNumber(String value) { - this.vatNumber = value; - } - - /** - * Gets the value of the presentLegalFormCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPresentLegalFormCode() { - return presentLegalFormCode; - } - - /** - * Sets the value of the presentLegalFormCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPresentLegalFormCode(Integer value) { - this.presentLegalFormCode = value; - } - - /** - * Gets the value of the presentLegalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPresentLegalFormText() { - return presentLegalFormText; - } - - /** - * Sets the value of the presentLegalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPresentLegalFormText(String value) { - this.presentLegalFormText = value; - } - - /** - * Gets the value of the presentLegalFormFineCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPresentLegalFormFineCode() { - return presentLegalFormFineCode; - } - - /** - * Sets the value of the presentLegalFormFineCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPresentLegalFormFineCode(Integer value) { - this.presentLegalFormFineCode = value; - } - - /** - * Gets the value of the presentLegalFormFineText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPresentLegalFormFineText() { - return presentLegalFormFineText; - } - - /** - * Sets the value of the presentLegalFormFineText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPresentLegalFormFineText(String value) { - this.presentLegalFormFineText = value; - } - - /** - * Gets the value of the numberOfNonExecutivePartners property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNumberOfNonExecutivePartners() { - return numberOfNonExecutivePartners; - } - - /** - * Sets the value of the numberOfNonExecutivePartners property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNumberOfNonExecutivePartners(String value) { - this.numberOfNonExecutivePartners = value; - } - - /** - * Gets the value of the publicationDutyCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPublicationDutyCode() { - return publicationDutyCode; - } - - /** - * Sets the value of the publicationDutyCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPublicationDutyCode(String value) { - this.publicationDutyCode = value; - } - - /** - * Gets the value of the publicationDutyText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPublicationDutyText() { - return publicationDutyText; - } - - /** - * Sets the value of the publicationDutyText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPublicationDutyText(String value) { - this.publicationDutyText = value; - } - - /** - * Gets the value of the capital property. - * - * @return - * possible object is - * {@link GCRCapitalArray } - * - */ - public GCRCapitalArray getCapital() { - return capital; - } - - /** - * Sets the value of the capital property. - * - * @param value - * allowed object is - * {@link GCRCapitalArray } - * - */ - public void setCapital(GCRCapitalArray value) { - this.capital = value; - } - - /** - * Gets the value of the founded property. - * - * @return - * possible object is - * {@link GCRFoundedArray } - * - */ - public GCRFoundedArray getFounded() { - return founded; - } - - /** - * Sets the value of the founded property. - * - * @param value - * allowed object is - * {@link GCRFoundedArray } - * - */ - public void setFounded(GCRFoundedArray value) { - this.founded = value; - } - - /** - * Gets the value of the discontinuance property. - * - * @return - * possible object is - * {@link GCRDiscontinuance } - * - */ - public GCRDiscontinuance getDiscontinuance() { - return discontinuance; - } - - /** - * Sets the value of the discontinuance property. - * - * @param value - * allowed object is - * {@link GCRDiscontinuance } - * - */ - public void setDiscontinuance(GCRDiscontinuance value) { - this.discontinuance = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROriginatedFrom.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROriginatedFrom.java deleted file mode 100644 index 131795f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROriginatedFrom.java +++ /dev/null @@ -1,146 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCROriginatedFrom complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCROriginatedFrom">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="originated_from_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="originated_from_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCROriginatedFrom", propOrder = { - -}) -public class GCROriginatedFrom { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - @XmlElement(name = "originated_from_code") - protected int originatedFromCode; - @XmlElement(name = "originated_from_text", required = true) - protected String originatedFromText; - @XmlElement(name = "date_from") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the originatedFromCode property. - * - */ - public int getOriginatedFromCode() { - return originatedFromCode; - } - - /** - * Sets the value of the originatedFromCode property. - * - */ - public void setOriginatedFromCode(int value) { - this.originatedFromCode = value; - } - - /** - * Gets the value of the originatedFromText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOriginatedFromText() { - return originatedFromText; - } - - /** - * Sets the value of the originatedFromText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOriginatedFromText(String value) { - this.originatedFromText = value; - } - - /** - * Gets the value of the dateFrom property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Sets the value of the dateFrom property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROriginatedFromArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROriginatedFromArray.java deleted file mode 100644 index 8f0f439..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCROriginatedFromArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCROriginatedFromArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCROriginatedFromArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCROriginatedFrom" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCROriginatedFromArray", propOrder = { - "item" -}) -public class GCROriginatedFromArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCROriginatedFrom } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRParticipation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRParticipation.java deleted file mode 100644 index 7520ca9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRParticipation.java +++ /dev/null @@ -1,182 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRParticipation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRParticipation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="percentage_of_shares" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="date_until" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRParticipation", propOrder = { - -}) -public class GCRParticipation { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - @XmlElement(name = "is_current") - protected Boolean isCurrent; - @XmlElement(name = "percentage_of_shares") - protected Float percentageOfShares; - @XmlElement(name = "date_from") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlElement(name = "date_until") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the isCurrent property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIsCurrent() { - return isCurrent; - } - - /** - * Sets the value of the isCurrent property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIsCurrent(Boolean value) { - this.isCurrent = value; - } - - /** - * Gets the value of the percentageOfShares property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getPercentageOfShares() { - return percentageOfShares; - } - - /** - * Sets the value of the percentageOfShares property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setPercentageOfShares(Float value) { - this.percentageOfShares = value; - } - - /** - * Gets the value of the dateFrom property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Sets the value of the dateFrom property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Gets the value of the dateUntil property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Sets the value of the dateUntil property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRParticipationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRParticipationArray.java deleted file mode 100644 index 85d7c5c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRParticipationArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRParticipationArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRParticipationArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRParticipation" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRParticipationArray", propOrder = { - "item" -}) -public class GCRParticipationArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRParticipation } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPaymentInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPaymentInformation.java deleted file mode 100644 index 087741c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPaymentInformation.java +++ /dev/null @@ -1,98 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRPaymentInformation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRPaymentInformation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="year_month" type="{http://www.w3.org/2001/XMLSchema}gYearMonth"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRPaymentInformation", propOrder = { - -}) -public class GCRPaymentInformation { - - protected Float value; - @XmlElement(name = "year_month", required = true) - @XmlSchemaType(name = "gYearMonth") - protected XMLGregorianCalendar yearMonth; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setValue(Float value) { - this.value = value; - } - - /** - * Gets the value of the yearMonth property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getYearMonth() { - return yearMonth; - } - - /** - * Sets the value of the yearMonth property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setYearMonth(XMLGregorianCalendar value) { - this.yearMonth = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPaymentInformationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPaymentInformationArray.java deleted file mode 100644 index d79b6bf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPaymentInformationArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRPaymentInformationArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRPaymentInformationArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRPaymentInformation" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRPaymentInformationArray", propOrder = { - "item" -}) -public class GCRPaymentInformationArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRPaymentInformation } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPercentageHistory.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPercentageHistory.java deleted file mode 100644 index df8815d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPercentageHistory.java +++ /dev/null @@ -1,98 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRPercentageHistory complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRPercentageHistory">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="year_month" type="{http://www.w3.org/2001/XMLSchema}gYearMonth" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRPercentageHistory", propOrder = { - -}) -public class GCRPercentageHistory { - - protected Float value; - @XmlElement(name = "year_month") - @XmlSchemaType(name = "gYearMonth") - protected XMLGregorianCalendar yearMonth; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setValue(Float value) { - this.value = value; - } - - /** - * Gets the value of the yearMonth property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getYearMonth() { - return yearMonth; - } - - /** - * Sets the value of the yearMonth property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setYearMonth(XMLGregorianCalendar value) { - this.yearMonth = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPercentageHistoryArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPercentageHistoryArray.java deleted file mode 100644 index 5f55e73..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPercentageHistoryArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRPercentageHistoryArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRPercentageHistoryArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRPercentageHistory" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRPercentageHistoryArray", propOrder = { - "item" -}) -public class GCRPercentageHistoryArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRPercentageHistory } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPerson.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPerson.java deleted file mode 100644 index 5337a48..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPerson.java +++ /dev/null @@ -1,231 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRPerson complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRPerson">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_person_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="personal_details" type="{http://www.webservices.nl/soap/}GCRPersonalDetails" minOccurs="0"/>
- *         <element name="telephone_number" type="{http://www.webservices.nl/soap/}GCRTelephoneNumber" minOccurs="0"/>
- *         <element name="address" type="{http://www.webservices.nl/soap/}GCRAddress" minOccurs="0"/>
- *         <element name="birth_information" type="{http://www.webservices.nl/soap/}GCRBirthInformation" minOccurs="0"/>
- *         <element name="job_titles" type="{http://www.webservices.nl/soap/}GCRJobTitleArray" minOccurs="0"/>
- *         <element name="financial_calamities" type="{http://www.webservices.nl/soap/}GCRFinancialCalamityArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRPerson", propOrder = { - -}) -public class GCRPerson { - - @XmlElement(name = "graydon_person_id", required = true) - protected BigInteger graydonPersonId; - @XmlElement(name = "personal_details") - protected GCRPersonalDetails personalDetails; - @XmlElement(name = "telephone_number") - protected GCRTelephoneNumber telephoneNumber; - protected GCRAddress address; - @XmlElement(name = "birth_information") - protected GCRBirthInformation birthInformation; - @XmlElement(name = "job_titles") - protected GCRJobTitleArray jobTitles; - @XmlElement(name = "financial_calamities") - protected GCRFinancialCalamityArray financialCalamities; - - /** - * Gets the value of the graydonPersonId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonPersonId() { - return graydonPersonId; - } - - /** - * Sets the value of the graydonPersonId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonPersonId(BigInteger value) { - this.graydonPersonId = value; - } - - /** - * Gets the value of the personalDetails property. - * - * @return - * possible object is - * {@link GCRPersonalDetails } - * - */ - public GCRPersonalDetails getPersonalDetails() { - return personalDetails; - } - - /** - * Sets the value of the personalDetails property. - * - * @param value - * allowed object is - * {@link GCRPersonalDetails } - * - */ - public void setPersonalDetails(GCRPersonalDetails value) { - this.personalDetails = value; - } - - /** - * Gets the value of the telephoneNumber property. - * - * @return - * possible object is - * {@link GCRTelephoneNumber } - * - */ - public GCRTelephoneNumber getTelephoneNumber() { - return telephoneNumber; - } - - /** - * Sets the value of the telephoneNumber property. - * - * @param value - * allowed object is - * {@link GCRTelephoneNumber } - * - */ - public void setTelephoneNumber(GCRTelephoneNumber value) { - this.telephoneNumber = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link GCRAddress } - * - */ - public GCRAddress getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link GCRAddress } - * - */ - public void setAddress(GCRAddress value) { - this.address = value; - } - - /** - * Gets the value of the birthInformation property. - * - * @return - * possible object is - * {@link GCRBirthInformation } - * - */ - public GCRBirthInformation getBirthInformation() { - return birthInformation; - } - - /** - * Sets the value of the birthInformation property. - * - * @param value - * allowed object is - * {@link GCRBirthInformation } - * - */ - public void setBirthInformation(GCRBirthInformation value) { - this.birthInformation = value; - } - - /** - * Gets the value of the jobTitles property. - * - * @return - * possible object is - * {@link GCRJobTitleArray } - * - */ - public GCRJobTitleArray getJobTitles() { - return jobTitles; - } - - /** - * Sets the value of the jobTitles property. - * - * @param value - * allowed object is - * {@link GCRJobTitleArray } - * - */ - public void setJobTitles(GCRJobTitleArray value) { - this.jobTitles = value; - } - - /** - * Gets the value of the financialCalamities property. - * - * @return - * possible object is - * {@link GCRFinancialCalamityArray } - * - */ - public GCRFinancialCalamityArray getFinancialCalamities() { - return financialCalamities; - } - - /** - * Sets the value of the financialCalamities property. - * - * @param value - * allowed object is - * {@link GCRFinancialCalamityArray } - * - */ - public void setFinancialCalamities(GCRFinancialCalamityArray value) { - this.financialCalamities = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonArray.java deleted file mode 100644 index 3517f1e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRPersonArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRPersonArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRPerson" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRPersonArray", propOrder = { - "item" -}) -public class GCRPersonArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRPerson } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonSimple.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonSimple.java deleted file mode 100644 index 0abd961..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonSimple.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRPersonSimple complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRPersonSimple">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_person_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="personal_details" type="{http://www.webservices.nl/soap/}GCRPersonalDetails" minOccurs="0"/>
- *         <element name="address" type="{http://www.webservices.nl/soap/}GCRAddress" minOccurs="0"/>
- *         <element name="birth_information" type="{http://www.webservices.nl/soap/}GCRBirthInformation" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRPersonSimple", propOrder = { - -}) -public class GCRPersonSimple { - - @XmlElement(name = "graydon_person_id", required = true) - protected BigInteger graydonPersonId; - @XmlElement(name = "personal_details") - protected GCRPersonalDetails personalDetails; - protected GCRAddress address; - @XmlElement(name = "birth_information") - protected GCRBirthInformation birthInformation; - - /** - * Gets the value of the graydonPersonId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonPersonId() { - return graydonPersonId; - } - - /** - * Sets the value of the graydonPersonId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonPersonId(BigInteger value) { - this.graydonPersonId = value; - } - - /** - * Gets the value of the personalDetails property. - * - * @return - * possible object is - * {@link GCRPersonalDetails } - * - */ - public GCRPersonalDetails getPersonalDetails() { - return personalDetails; - } - - /** - * Sets the value of the personalDetails property. - * - * @param value - * allowed object is - * {@link GCRPersonalDetails } - * - */ - public void setPersonalDetails(GCRPersonalDetails value) { - this.personalDetails = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link GCRAddress } - * - */ - public GCRAddress getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link GCRAddress } - * - */ - public void setAddress(GCRAddress value) { - this.address = value; - } - - /** - * Gets the value of the birthInformation property. - * - * @return - * possible object is - * {@link GCRBirthInformation } - * - */ - public GCRBirthInformation getBirthInformation() { - return birthInformation; - } - - /** - * Sets the value of the birthInformation property. - * - * @param value - * allowed object is - * {@link GCRBirthInformation } - * - */ - public void setBirthInformation(GCRBirthInformation value) { - this.birthInformation = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonSimpleArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonSimpleArray.java deleted file mode 100644 index 700f959..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonSimpleArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRPersonSimpleArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRPersonSimpleArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRPersonSimple" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRPersonSimpleArray", propOrder = { - "item" -}) -public class GCRPersonSimpleArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRPersonSimple } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonalDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonalDetails.java deleted file mode 100644 index b9cfa4d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonalDetails.java +++ /dev/null @@ -1,200 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRPersonalDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRPersonalDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gender_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="gender_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="titles" type="{http://www.webservices.nl/soap/}GCRTitleArray" minOccurs="0"/>
- *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="prefixes" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRPersonalDetails", propOrder = { - -}) -public class GCRPersonalDetails { - - @XmlElement(name = "gender_code") - protected String genderCode; - @XmlElement(name = "gender_text") - protected String genderText; - protected GCRTitleArray titles; - protected String initials; - protected String prefixes; - protected String name; - - /** - * Gets the value of the genderCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGenderCode() { - return genderCode; - } - - /** - * Sets the value of the genderCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGenderCode(String value) { - this.genderCode = value; - } - - /** - * Gets the value of the genderText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGenderText() { - return genderText; - } - - /** - * Sets the value of the genderText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGenderText(String value) { - this.genderText = value; - } - - /** - * Gets the value of the titles property. - * - * @return - * possible object is - * {@link GCRTitleArray } - * - */ - public GCRTitleArray getTitles() { - return titles; - } - - /** - * Sets the value of the titles property. - * - * @param value - * allowed object is - * {@link GCRTitleArray } - * - */ - public void setTitles(GCRTitleArray value) { - this.titles = value; - } - - /** - * Gets the value of the initials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInitials() { - return initials; - } - - /** - * Sets the value of the initials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInitials(String value) { - this.initials = value; - } - - /** - * Gets the value of the prefixes property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrefixes() { - return prefixes; - } - - /** - * Sets the value of the prefixes property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrefixes(String value) { - this.prefixes = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonnel.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonnel.java deleted file mode 100644 index b806b63..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRPersonnel.java +++ /dev/null @@ -1,151 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRPersonnel complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRPersonnel">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="employees_class_code" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="employees_class_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="number_of_employees" type="{http://www.webservices.nl/soap/}GCRNumberOfEmployeesArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRPersonnel", propOrder = { - -}) -public class GCRPersonnel { - - @XmlElement(name = "graydon_company_id") - protected BigInteger graydonCompanyId; - @XmlElement(name = "employees_class_code") - protected Integer employeesClassCode; - @XmlElement(name = "employees_class_text") - protected String employeesClassText; - @XmlElement(name = "number_of_employees") - protected GCRNumberOfEmployeesArray numberOfEmployees; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the employeesClassCode property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEmployeesClassCode() { - return employeesClassCode; - } - - /** - * Sets the value of the employeesClassCode property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEmployeesClassCode(Integer value) { - this.employeesClassCode = value; - } - - /** - * Gets the value of the employeesClassText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmployeesClassText() { - return employeesClassText; - } - - /** - * Sets the value of the employeesClassText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmployeesClassText(String value) { - this.employeesClassText = value; - } - - /** - * Gets the value of the numberOfEmployees property. - * - * @return - * possible object is - * {@link GCRNumberOfEmployeesArray } - * - */ - public GCRNumberOfEmployeesArray getNumberOfEmployees() { - return numberOfEmployees; - } - - /** - * Sets the value of the numberOfEmployees property. - * - * @param value - * allowed object is - * {@link GCRNumberOfEmployeesArray } - * - */ - public void setNumberOfEmployees(GCRNumberOfEmployeesArray value) { - this.numberOfEmployees = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRating.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRating.java deleted file mode 100644 index acdcbf9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRating.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRRating complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRRating">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRRating", propOrder = { - -}) -public class GCRRating { - - @XmlElement(required = true) - protected String type; - @XmlElement(required = true) - protected String description; - @XmlElement(required = true) - protected String value; - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingArray.java deleted file mode 100644 index 63e24e7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRRatingArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRRatingArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRRating" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRRatingArray", propOrder = { - "item" -}) -public class GCRRatingArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRRating } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingHistory.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingHistory.java deleted file mode 100644 index 514f895..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingHistory.java +++ /dev/null @@ -1,98 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRRatingHistory complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRRatingHistory">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="year_month" type="{http://www.w3.org/2001/XMLSchema}gYearMonth" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRRatingHistory", propOrder = { - -}) -public class GCRRatingHistory { - - protected String value; - @XmlElement(name = "year_month") - @XmlSchemaType(name = "gYearMonth") - protected XMLGregorianCalendar yearMonth; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - - /** - * Gets the value of the yearMonth property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getYearMonth() { - return yearMonth; - } - - /** - * Sets the value of the yearMonth property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setYearMonth(XMLGregorianCalendar value) { - this.yearMonth = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingHistoryArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingHistoryArray.java deleted file mode 100644 index daca458..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatingHistoryArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRRatingHistoryArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRRatingHistoryArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRRatingHistory" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRRatingHistoryArray", propOrder = { - "item" -}) -public class GCRRatingHistoryArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRRatingHistory } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatio.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatio.java deleted file mode 100644 index 4e59af5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatio.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRRatio complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRRatio">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="ratio_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="ratio_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRRatio", propOrder = { - -}) -public class GCRRatio { - - @XmlElement(name = "ratio_code", required = true) - protected String ratioCode; - @XmlElement(name = "ratio_text", required = true) - protected String ratioText; - protected BigDecimal value; - - /** - * Gets the value of the ratioCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRatioCode() { - return ratioCode; - } - - /** - * Sets the value of the ratioCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRatioCode(String value) { - this.ratioCode = value; - } - - /** - * Gets the value of the ratioText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRatioText() { - return ratioText; - } - - /** - * Sets the value of the ratioText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRatioText(String value) { - this.ratioText = value; - } - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setValue(BigDecimal value) { - this.value = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatioArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatioArray.java deleted file mode 100644 index a1bbc6b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRRatioArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRRatioArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRRatioArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRRatio" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRRatioArray", propOrder = { - "item" -}) -public class GCRRatioArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRRatio } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRReceiver.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRReceiver.java deleted file mode 100644 index bc52ac6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRReceiver.java +++ /dev/null @@ -1,100 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRReceiver complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRReceiver">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_person_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="date_when_active_in_job_title" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRReceiver", propOrder = { - -}) -public class GCRReceiver { - - @XmlElement(name = "graydon_person_id", required = true) - protected BigInteger graydonPersonId; - @XmlElement(name = "date_when_active_in_job_title") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateWhenActiveInJobTitle; - - /** - * Gets the value of the graydonPersonId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonPersonId() { - return graydonPersonId; - } - - /** - * Sets the value of the graydonPersonId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonPersonId(BigInteger value) { - this.graydonPersonId = value; - } - - /** - * Gets the value of the dateWhenActiveInJobTitle property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateWhenActiveInJobTitle() { - return dateWhenActiveInJobTitle; - } - - /** - * Sets the value of the dateWhenActiveInJobTitle property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateWhenActiveInJobTitle(XMLGregorianCalendar value) { - this.dateWhenActiveInJobTitle = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRReceiverArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRReceiverArray.java deleted file mode 100644 index ecfa543..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRReceiverArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRReceiverArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRReceiverArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRReceiver" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRReceiverArray", propOrder = { - "item" -}) -public class GCRReceiverArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRReceiver } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSectorOfIndustry.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSectorOfIndustry.java deleted file mode 100644 index 31ec116..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSectorOfIndustry.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRSectorOfIndustry complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRSectorOfIndustry">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="is_primary" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="sector_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sector_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRSectorOfIndustry", propOrder = { - -}) -public class GCRSectorOfIndustry { - - @XmlElement(name = "is_primary") - protected Boolean isPrimary; - @XmlElement(name = "sector_code", required = true) - protected String sectorCode; - @XmlElement(name = "sector_text", required = true) - protected String sectorText; - - /** - * Gets the value of the isPrimary property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIsPrimary() { - return isPrimary; - } - - /** - * Sets the value of the isPrimary property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIsPrimary(Boolean value) { - this.isPrimary = value; - } - - /** - * Gets the value of the sectorCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectorCode() { - return sectorCode; - } - - /** - * Sets the value of the sectorCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectorCode(String value) { - this.sectorCode = value; - } - - /** - * Gets the value of the sectorText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectorText() { - return sectorText; - } - - /** - * Sets the value of the sectorText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectorText(String value) { - this.sectorText = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSectorOfIndustryArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSectorOfIndustryArray.java deleted file mode 100644 index d42720b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSectorOfIndustryArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRSectorOfIndustryArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRSectorOfIndustryArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRSectorOfIndustry" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRSectorOfIndustryArray", propOrder = { - "item" -}) -public class GCRSectorOfIndustryArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRSectorOfIndustry } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRShareHolder.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRShareHolder.java deleted file mode 100644 index b064ab1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRShareHolder.java +++ /dev/null @@ -1,209 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRShareHolder complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRShareHolder">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="graydon_person_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="percentage_of_shares" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="date_until" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRShareHolder", propOrder = { - -}) -public class GCRShareHolder { - - @XmlElement(name = "graydon_company_id") - protected BigInteger graydonCompanyId; - @XmlElement(name = "graydon_person_id") - protected BigInteger graydonPersonId; - @XmlElement(name = "is_current") - protected Boolean isCurrent; - @XmlElement(name = "percentage_of_shares") - protected Float percentageOfShares; - @XmlElement(name = "date_from") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlElement(name = "date_until") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the graydonPersonId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonPersonId() { - return graydonPersonId; - } - - /** - * Sets the value of the graydonPersonId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonPersonId(BigInteger value) { - this.graydonPersonId = value; - } - - /** - * Gets the value of the isCurrent property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIsCurrent() { - return isCurrent; - } - - /** - * Sets the value of the isCurrent property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIsCurrent(Boolean value) { - this.isCurrent = value; - } - - /** - * Gets the value of the percentageOfShares property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getPercentageOfShares() { - return percentageOfShares; - } - - /** - * Sets the value of the percentageOfShares property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setPercentageOfShares(Float value) { - this.percentageOfShares = value; - } - - /** - * Gets the value of the dateFrom property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Sets the value of the dateFrom property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Gets the value of the dateUntil property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Sets the value of the dateUntil property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRShareHolderArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRShareHolderArray.java deleted file mode 100644 index 97b0ede..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRShareHolderArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRShareHolderArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRShareHolderArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRShareHolder" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRShareHolderArray", propOrder = { - "item" -}) -public class GCRShareHolderArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRShareHolder } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSpecialCompanyInformation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSpecialCompanyInformation.java deleted file mode 100644 index d6dee6f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSpecialCompanyInformation.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRSpecialCompanyInformation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRSpecialCompanyInformation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="special_company_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="special_company_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="texts" type="{http://www.webservices.nl/soap/}GCRTextSequenceArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRSpecialCompanyInformation", propOrder = { - -}) -public class GCRSpecialCompanyInformation { - - @XmlElement(name = "special_company_code") - protected String specialCompanyCode; - @XmlElement(name = "special_company_text") - protected String specialCompanyText; - protected GCRTextSequenceArray texts; - - /** - * Gets the value of the specialCompanyCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpecialCompanyCode() { - return specialCompanyCode; - } - - /** - * Sets the value of the specialCompanyCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpecialCompanyCode(String value) { - this.specialCompanyCode = value; - } - - /** - * Gets the value of the specialCompanyText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSpecialCompanyText() { - return specialCompanyText; - } - - /** - * Sets the value of the specialCompanyText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSpecialCompanyText(String value) { - this.specialCompanyText = value; - } - - /** - * Gets the value of the texts property. - * - * @return - * possible object is - * {@link GCRTextSequenceArray } - * - */ - public GCRTextSequenceArray getTexts() { - return texts; - } - - /** - * Sets the value of the texts property. - * - * @param value - * allowed object is - * {@link GCRTextSequenceArray } - * - */ - public void setTexts(GCRTextSequenceArray value) { - this.texts = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSpecialCompanyInformationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSpecialCompanyInformationArray.java deleted file mode 100644 index 086f445..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRSpecialCompanyInformationArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRSpecialCompanyInformationArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRSpecialCompanyInformationArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRSpecialCompanyInformation" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRSpecialCompanyInformationArray", propOrder = { - "item" -}) -public class GCRSpecialCompanyInformationArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRSpecialCompanyInformation } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTelephoneNumber.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTelephoneNumber.java deleted file mode 100644 index dcb0ef3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTelephoneNumber.java +++ /dev/null @@ -1,169 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRTelephoneNumber complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRTelephoneNumber">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="telephone_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="telephone_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="net_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="subscriber_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRTelephoneNumber", propOrder = { - -}) -public class GCRTelephoneNumber { - - @XmlElement(name = "telephone_code") - protected int telephoneCode; - @XmlElement(name = "telephone_text", required = true) - protected String telephoneText; - @XmlElement(name = "country_number") - protected String countryNumber; - @XmlElement(name = "net_number") - protected String netNumber; - @XmlElement(name = "subscriber_number", required = true) - protected String subscriberNumber; - - /** - * Gets the value of the telephoneCode property. - * - */ - public int getTelephoneCode() { - return telephoneCode; - } - - /** - * Sets the value of the telephoneCode property. - * - */ - public void setTelephoneCode(int value) { - this.telephoneCode = value; - } - - /** - * Gets the value of the telephoneText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneText() { - return telephoneText; - } - - /** - * Sets the value of the telephoneText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneText(String value) { - this.telephoneText = value; - } - - /** - * Gets the value of the countryNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryNumber() { - return countryNumber; - } - - /** - * Sets the value of the countryNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryNumber(String value) { - this.countryNumber = value; - } - - /** - * Gets the value of the netNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNetNumber() { - return netNumber; - } - - /** - * Sets the value of the netNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNetNumber(String value) { - this.netNumber = value; - } - - /** - * Gets the value of the subscriberNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubscriberNumber() { - return subscriberNumber; - } - - /** - * Sets the value of the subscriberNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubscriberNumber(String value) { - this.subscriberNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTelephoneNumberArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTelephoneNumberArray.java deleted file mode 100644 index a049ccf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTelephoneNumberArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRTelephoneNumberArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRTelephoneNumberArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRTelephoneNumber" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRTelephoneNumberArray", propOrder = { - "item" -}) -public class GCRTelephoneNumberArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRTelephoneNumber } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTextSequence.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTextSequence.java deleted file mode 100644 index 4517ed0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTextSequence.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRTextSequence complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRTextSequence">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="sequence_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRTextSequence", propOrder = { - -}) -public class GCRTextSequence { - - @XmlElement(name = "sequence_number") - protected Integer sequenceNumber; - @XmlElement(required = true) - protected String text; - - /** - * Gets the value of the sequenceNumber property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getSequenceNumber() { - return sequenceNumber; - } - - /** - * Sets the value of the sequenceNumber property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setSequenceNumber(Integer value) { - this.sequenceNumber = value; - } - - /** - * Gets the value of the text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getText() { - return text; - } - - /** - * Sets the value of the text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setText(String value) { - this.text = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTextSequenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTextSequenceArray.java deleted file mode 100644 index 1af8544..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTextSequenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRTextSequenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRTextSequenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRTextSequence" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRTextSequenceArray", propOrder = { - "item" -}) -public class GCRTextSequenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRTextSequence } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTitle.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTitle.java deleted file mode 100644 index 0b3bd8f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTitle.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRTitle complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRTitle">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="title_code" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="title_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRTitle", propOrder = { - -}) -public class GCRTitle { - - @XmlElement(name = "title_code") - protected int titleCode; - @XmlElement(name = "title_text", required = true) - protected String titleText; - - /** - * Gets the value of the titleCode property. - * - */ - public int getTitleCode() { - return titleCode; - } - - /** - * Sets the value of the titleCode property. - * - */ - public void setTitleCode(int value) { - this.titleCode = value; - } - - /** - * Gets the value of the titleText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTitleText() { - return titleText; - } - - /** - * Sets the value of the titleText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTitleText(String value) { - this.titleText = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTitleArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTitleArray.java deleted file mode 100644 index 388159e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTitleArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRTitleArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRTitleArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRTitle" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRTitleArray", propOrder = { - "item" -}) -public class GCRTitleArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRTitle } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTradeName.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTradeName.java deleted file mode 100644 index cb28b3e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTradeName.java +++ /dev/null @@ -1,154 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GCRTradeName complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRTradeName">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="is_current" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date_from" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="date_until" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRTradeName", propOrder = { - -}) -public class GCRTradeName { - - @XmlElement(name = "is_current") - protected Boolean isCurrent; - @XmlElement(required = true) - protected String name; - @XmlElement(name = "date_from") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateFrom; - @XmlElement(name = "date_until") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateUntil; - - /** - * Gets the value of the isCurrent property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIsCurrent() { - return isCurrent; - } - - /** - * Sets the value of the isCurrent property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIsCurrent(Boolean value) { - this.isCurrent = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the dateFrom property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateFrom() { - return dateFrom; - } - - /** - * Sets the value of the dateFrom property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateFrom(XMLGregorianCalendar value) { - this.dateFrom = value; - } - - /** - * Gets the value of the dateUntil property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateUntil() { - return dateUntil; - } - - /** - * Sets the value of the dateUntil property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateUntil(XMLGregorianCalendar value) { - this.dateUntil = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTradeNameArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTradeNameArray.java deleted file mode 100644 index ac0b0dc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GCRTradeNameArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GCRTradeNameArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GCRTradeNameArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GCRTradeName" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GCRTradeNameArray", propOrder = { - "item" -}) -public class GCRTradeNameArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GCRTradeName } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GemeenteStuk.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GemeenteStuk.java deleted file mode 100644 index 77977ed..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GemeenteStuk.java +++ /dev/null @@ -1,126 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for GemeenteStuk complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GemeenteStuk">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeentelijke_registratie_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="nummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="datum_in_werking" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GemeenteStuk", propOrder = { - -}) -public class GemeenteStuk { - - @XmlElement(name = "gemeentelijke_registratie_id", required = true) - protected String gemeentelijkeRegistratieId; - @XmlElement(required = true) - protected String nummer; - @XmlElement(name = "datum_in_werking") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar datumInWerking; - - /** - * Gets the value of the gemeentelijkeRegistratieId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentelijkeRegistratieId() { - return gemeentelijkeRegistratieId; - } - - /** - * Sets the value of the gemeentelijkeRegistratieId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentelijkeRegistratieId(String value) { - this.gemeentelijkeRegistratieId = value; - } - - /** - * Gets the value of the nummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNummer() { - return nummer; - } - - /** - * Sets the value of the nummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNummer(String value) { - this.nummer = value; - } - - /** - * Gets the value of the datumInWerking property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDatumInWerking() { - return datumInWerking; - } - - /** - * Sets the value of the datumInWerking property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDatumInWerking(XMLGregorianCalendar value) { - this.datumInWerking = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GemeenteStukArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GemeenteStukArray.java deleted file mode 100644 index 7f62978..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GemeenteStukArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GemeenteStukArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GemeenteStukArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GemeenteStuk" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GemeenteStukArray", propOrder = { - "item" -}) -public class GemeenteStukArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GemeenteStuk } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddress.java deleted file mode 100644 index 594313f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddress.java +++ /dev/null @@ -1,305 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GeoLocationAddress complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GeoLocationAddress">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="houseno_from" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="houseno_to" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeoLocationAddress", propOrder = { - -}) -public class GeoLocationAddress { - - @XmlElement(name = "houseno_from") - protected int housenoFrom; - @XmlElement(name = "houseno_to") - protected int housenoTo; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String streetname; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String district; - @XmlElement(required = true) - protected String province; - protected int distance; - protected int x; - protected int y; - protected float latitude; - protected float longitude; - - /** - * Gets the value of the housenoFrom property. - * - */ - public int getHousenoFrom() { - return housenoFrom; - } - - /** - * Sets the value of the housenoFrom property. - * - */ - public void setHousenoFrom(int value) { - this.housenoFrom = value; - } - - /** - * Gets the value of the housenoTo property. - * - */ - public int getHousenoTo() { - return housenoTo; - } - - /** - * Sets the value of the housenoTo property. - * - */ - public void setHousenoTo(int value) { - this.housenoTo = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the streetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetname() { - return streetname; - } - - /** - * Sets the value of the streetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetname(String value) { - this.streetname = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the district property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDistrict() { - return district; - } - - /** - * Sets the value of the district property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDistrict(String value) { - this.district = value; - } - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the distance property. - * - */ - public int getDistance() { - return distance; - } - - /** - * Sets the value of the distance property. - * - */ - public void setDistance(int value) { - this.distance = value; - } - - /** - * Gets the value of the x property. - * - */ - public int getX() { - return x; - } - - /** - * Sets the value of the x property. - * - */ - public void setX(int value) { - this.x = value; - } - - /** - * Gets the value of the y property. - * - */ - public int getY() { - return y; - } - - /** - * Sets the value of the y property. - * - */ - public void setY(int value) { - this.y = value; - } - - /** - * Gets the value of the latitude property. - * - */ - public float getLatitude() { - return latitude; - } - - /** - * Sets the value of the latitude property. - * - */ - public void setLatitude(float value) { - this.latitude = value; - } - - /** - * Gets the value of the longitude property. - * - */ - public float getLongitude() { - return longitude; - } - - /** - * Sets the value of the longitude property. - * - */ - public void setLongitude(float value) { - this.longitude = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesLatLonRequestType.java deleted file mode 100644 index eca5585..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesLatLonRequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationAddressCoordinatesLatLonRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationAddressCoordinatesLatLonRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationAddressCoordinatesLatLonRequestType", propOrder = { - -}) -public class GeoLocationAddressCoordinatesLatLonRequestType { - - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String street; - protected int houseno; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseno property. - * - */ - public int getHouseno() { - return houseno; - } - - /** - * Sets the value of the houseno property. - * - */ - public void setHouseno(int value) { - this.houseno = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesLatLonResponseType.java deleted file mode 100644 index 2f09915..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesLatLonResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationAddressCoordinatesLatLonResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationAddressCoordinatesLatLonResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="coordinates" type="{http://www.webservices.nl/soap/}LatLonCoordinatesMatch"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationAddressCoordinatesLatLonResponseType", propOrder = { - -}) -public class GeoLocationAddressCoordinatesLatLonResponseType { - - @XmlElement(required = true) - protected LatLonCoordinatesMatch coordinates; - - /** - * Gets the value of the coordinates property. - * - * @return - * possible object is - * {@link LatLonCoordinatesMatch } - * - */ - public LatLonCoordinatesMatch getCoordinates() { - return coordinates; - } - - /** - * Sets the value of the coordinates property. - * - * @param value - * allowed object is - * {@link LatLonCoordinatesMatch } - * - */ - public void setCoordinates(LatLonCoordinatesMatch value) { - this.coordinates = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesRDRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesRDRequestType.java deleted file mode 100644 index d85554a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesRDRequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationAddressCoordinatesRDRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationAddressCoordinatesRDRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationAddressCoordinatesRDRequestType", propOrder = { - -}) -public class GeoLocationAddressCoordinatesRDRequestType { - - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String street; - protected int houseno; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseno property. - * - */ - public int getHouseno() { - return houseno; - } - - /** - * Sets the value of the houseno property. - * - */ - public void setHouseno(int value) { - this.houseno = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesRDResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesRDResponseType.java deleted file mode 100644 index f80cb08..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressCoordinatesRDResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationAddressCoordinatesRDResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationAddressCoordinatesRDResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="coordinates" type="{http://www.webservices.nl/soap/}RDCoordinatesMatch"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationAddressCoordinatesRDResponseType", propOrder = { - -}) -public class GeoLocationAddressCoordinatesRDResponseType { - - @XmlElement(required = true) - protected RDCoordinatesMatch coordinates; - - /** - * Gets the value of the coordinates property. - * - * @return - * possible object is - * {@link RDCoordinatesMatch } - * - */ - public RDCoordinatesMatch getCoordinates() { - return coordinates; - } - - /** - * Sets the value of the coordinates property. - * - * @param value - * allowed object is - * {@link RDCoordinatesMatch } - * - */ - public void setCoordinates(RDCoordinatesMatch value) { - this.coordinates = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressV2.java deleted file mode 100644 index 6c301a2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationAddressV2.java +++ /dev/null @@ -1,313 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GeoLocationAddressV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GeoLocationAddressV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="house_no" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="house_no_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeoLocationAddressV2", propOrder = { - -}) -public class GeoLocationAddressV2 { - - @XmlElement(name = "house_no") - protected int houseNo; - @XmlElement(name = "house_no_addition", required = true) - protected String houseNoAddition; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String streetname; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String district; - @XmlElement(required = true) - protected String province; - protected int distance; - protected int x; - protected int y; - protected float latitude; - protected float longitude; - - /** - * Gets the value of the houseNo property. - * - */ - public int getHouseNo() { - return houseNo; - } - - /** - * Sets the value of the houseNo property. - * - */ - public void setHouseNo(int value) { - this.houseNo = value; - } - - /** - * Gets the value of the houseNoAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNoAddition() { - return houseNoAddition; - } - - /** - * Sets the value of the houseNoAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNoAddition(String value) { - this.houseNoAddition = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the streetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetname() { - return streetname; - } - - /** - * Sets the value of the streetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetname(String value) { - this.streetname = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the district property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDistrict() { - return district; - } - - /** - * Sets the value of the district property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDistrict(String value) { - this.district = value; - } - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the distance property. - * - */ - public int getDistance() { - return distance; - } - - /** - * Sets the value of the distance property. - * - */ - public void setDistance(int value) { - this.distance = value; - } - - /** - * Gets the value of the x property. - * - */ - public int getX() { - return x; - } - - /** - * Sets the value of the x property. - * - */ - public void setX(int value) { - this.x = value; - } - - /** - * Gets the value of the y property. - * - */ - public int getY() { - return y; - } - - /** - * Sets the value of the y property. - * - */ - public void setY(int value) { - this.y = value; - } - - /** - * Gets the value of the latitude property. - * - */ - public float getLatitude() { - return latitude; - } - - /** - * Sets the value of the latitude property. - * - */ - public void setLatitude(float value) { - this.latitude = value; - } - - /** - * Gets the value of the longitude property. - * - */ - public float getLongitude() { - return longitude; - } - - /** - * Sets the value of the longitude property. - * - */ - public void setLongitude(float value) { - this.longitude = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType.java deleted file mode 100644 index d9417b0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType.java +++ /dev/null @@ -1,124 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationDistanceSortedNeighborhoodCodesRadiusRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationDistanceSortedNeighborhoodCodesRadiusRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nbcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="radius" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationDistanceSortedNeighborhoodCodesRadiusRequestType", propOrder = { - -}) -public class GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType { - - @XmlElement(required = true) - protected String nbcodefrom; - @XmlElement(required = true) - protected BigInteger radius; - @XmlElement(required = true) - protected BigInteger page; - - /** - * Gets the value of the nbcodefrom property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcodefrom() { - return nbcodefrom; - } - - /** - * Sets the value of the nbcodefrom property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcodefrom(String value) { - this.nbcodefrom = value; - } - - /** - * Gets the value of the radius property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getRadius() { - return radius; - } - - /** - * Sets the value of the radius property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setRadius(BigInteger value) { - this.radius = value; - } - - /** - * Gets the value of the page property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setPage(BigInteger value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType.java deleted file mode 100644 index 4dd08e7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationDistanceSortedNeighborhoodCodesRadiusResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationDistanceSortedNeighborhoodCodesRadiusResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}SortedPostcodePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationDistanceSortedNeighborhoodCodesRadiusResponseType", propOrder = { - -}) -public class GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType { - - @XmlElement(required = true) - protected SortedPostcodePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link SortedPostcodePagedResult } - * - */ - public SortedPostcodePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link SortedPostcodePagedResult } - * - */ - public void setOut(SortedPostcodePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRequestType.java deleted file mode 100644 index 33ac296..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationDistanceSortedNeighborhoodCodesRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationDistanceSortedNeighborhoodCodesRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nbcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="nbcodes" type="{http://www.webservices.nl/soap/}stringArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationDistanceSortedNeighborhoodCodesRequestType", propOrder = { - -}) -public class GeoLocationDistanceSortedNeighborhoodCodesRequestType { - - @XmlElement(required = true) - protected String nbcodefrom; - @XmlElement(required = true) - protected StringArray nbcodes; - - /** - * Gets the value of the nbcodefrom property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcodefrom() { - return nbcodefrom; - } - - /** - * Sets the value of the nbcodefrom property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcodefrom(String value) { - this.nbcodefrom = value; - } - - /** - * Gets the value of the nbcodes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getNbcodes() { - return nbcodes; - } - - /** - * Sets the value of the nbcodes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setNbcodes(StringArray value) { - this.nbcodes = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesResponseType.java deleted file mode 100644 index 7877c46..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedNeighborhoodCodesResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationDistanceSortedNeighborhoodCodesResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationDistanceSortedNeighborhoodCodesResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nbcodes" type="{http://www.webservices.nl/soap/}SortedPostcodeArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationDistanceSortedNeighborhoodCodesResponseType", propOrder = { - -}) -public class GeoLocationDistanceSortedNeighborhoodCodesResponseType { - - @XmlElement(required = true) - protected SortedPostcodeArray nbcodes; - - /** - * Gets the value of the nbcodes property. - * - * @return - * possible object is - * {@link SortedPostcodeArray } - * - */ - public SortedPostcodeArray getNbcodes() { - return nbcodes; - } - - /** - * Sets the value of the nbcodes property. - * - * @param value - * allowed object is - * {@link SortedPostcodeArray } - * - */ - public void setNbcodes(SortedPostcodeArray value) { - this.nbcodes = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRadiusRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRadiusRequestType.java deleted file mode 100644 index 77a3d62..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRadiusRequestType.java +++ /dev/null @@ -1,124 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationDistanceSortedPostcodesRadiusRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationDistanceSortedPostcodesRadiusRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="radius" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationDistanceSortedPostcodesRadiusRequestType", propOrder = { - -}) -public class GeoLocationDistanceSortedPostcodesRadiusRequestType { - - @XmlElement(required = true) - protected String postcodefrom; - @XmlElement(required = true) - protected BigInteger radius; - @XmlElement(required = true) - protected BigInteger page; - - /** - * Gets the value of the postcodefrom property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcodefrom() { - return postcodefrom; - } - - /** - * Sets the value of the postcodefrom property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcodefrom(String value) { - this.postcodefrom = value; - } - - /** - * Gets the value of the radius property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getRadius() { - return radius; - } - - /** - * Sets the value of the radius property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setRadius(BigInteger value) { - this.radius = value; - } - - /** - * Gets the value of the page property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setPage(BigInteger value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRadiusResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRadiusResponseType.java deleted file mode 100644 index 737c88a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRadiusResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationDistanceSortedPostcodesRadiusResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationDistanceSortedPostcodesRadiusResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}SortedPostcodePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationDistanceSortedPostcodesRadiusResponseType", propOrder = { - -}) -public class GeoLocationDistanceSortedPostcodesRadiusResponseType { - - @XmlElement(required = true) - protected SortedPostcodePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link SortedPostcodePagedResult } - * - */ - public SortedPostcodePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link SortedPostcodePagedResult } - * - */ - public void setOut(SortedPostcodePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRequestType.java deleted file mode 100644 index 479d157..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationDistanceSortedPostcodesRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationDistanceSortedPostcodesRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcodes" type="{http://www.webservices.nl/soap/}stringArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationDistanceSortedPostcodesRequestType", propOrder = { - -}) -public class GeoLocationDistanceSortedPostcodesRequestType { - - @XmlElement(required = true) - protected String postcodefrom; - @XmlElement(required = true) - protected StringArray postcodes; - - /** - * Gets the value of the postcodefrom property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcodefrom() { - return postcodefrom; - } - - /** - * Sets the value of the postcodefrom property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcodefrom(String value) { - this.postcodefrom = value; - } - - /** - * Gets the value of the postcodes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getPostcodes() { - return postcodes; - } - - /** - * Sets the value of the postcodes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setPostcodes(StringArray value) { - this.postcodes = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesResponseType.java deleted file mode 100644 index 44bfcb7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationDistanceSortedPostcodesResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationDistanceSortedPostcodesResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationDistanceSortedPostcodesResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcodes" type="{http://www.webservices.nl/soap/}SortedPostcodeArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationDistanceSortedPostcodesResponseType", propOrder = { - -}) -public class GeoLocationDistanceSortedPostcodesResponseType { - - @XmlElement(required = true) - protected SortedPostcodeArray postcodes; - - /** - * Gets the value of the postcodes property. - * - * @return - * possible object is - * {@link SortedPostcodeArray } - * - */ - public SortedPostcodeArray getPostcodes() { - return postcodes; - } - - /** - * Sets the value of the postcodes property. - * - * @param value - * allowed object is - * {@link SortedPostcodeArray } - * - */ - public void setPostcodes(SortedPostcodeArray value) { - this.postcodes = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationHaversineDistanceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationHaversineDistanceRequestType.java deleted file mode 100644 index 862c959..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationHaversineDistanceRequestType.java +++ /dev/null @@ -1,137 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationHaversineDistanceRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationHaversineDistanceRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="latitude_coord_1" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitude_coord_1" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="latitude_coord_2" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitude_coord_2" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="in_radians" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationHaversineDistanceRequestType", propOrder = { - -}) -public class GeoLocationHaversineDistanceRequestType { - - @XmlElement(name = "latitude_coord_1") - protected float latitudeCoord1; - @XmlElement(name = "longitude_coord_1") - protected float longitudeCoord1; - @XmlElement(name = "latitude_coord_2") - protected float latitudeCoord2; - @XmlElement(name = "longitude_coord_2") - protected float longitudeCoord2; - @XmlElement(name = "in_radians") - protected boolean inRadians; - - /** - * Gets the value of the latitudeCoord1 property. - * - */ - public float getLatitudeCoord1() { - return latitudeCoord1; - } - - /** - * Sets the value of the latitudeCoord1 property. - * - */ - public void setLatitudeCoord1(float value) { - this.latitudeCoord1 = value; - } - - /** - * Gets the value of the longitudeCoord1 property. - * - */ - public float getLongitudeCoord1() { - return longitudeCoord1; - } - - /** - * Sets the value of the longitudeCoord1 property. - * - */ - public void setLongitudeCoord1(float value) { - this.longitudeCoord1 = value; - } - - /** - * Gets the value of the latitudeCoord2 property. - * - */ - public float getLatitudeCoord2() { - return latitudeCoord2; - } - - /** - * Sets the value of the latitudeCoord2 property. - * - */ - public void setLatitudeCoord2(float value) { - this.latitudeCoord2 = value; - } - - /** - * Gets the value of the longitudeCoord2 property. - * - */ - public float getLongitudeCoord2() { - return longitudeCoord2; - } - - /** - * Sets the value of the longitudeCoord2 property. - * - */ - public void setLongitudeCoord2(float value) { - this.longitudeCoord2 = value; - } - - /** - * Gets the value of the inRadians property. - * - */ - public boolean isInRadians() { - return inRadians; - } - - /** - * Sets the value of the inRadians property. - * - */ - public void setInRadians(boolean value) { - this.inRadians = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationHaversineDistanceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationHaversineDistanceResponseType.java deleted file mode 100644 index fff3bf8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationHaversineDistanceResponseType.java +++ /dev/null @@ -1,59 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationHaversineDistanceResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationHaversineDistanceResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationHaversineDistanceResponseType", propOrder = { - -}) -public class GeoLocationHaversineDistanceResponseType { - - protected int distance; - - /** - * Gets the value of the distance property. - * - */ - public int getDistance() { - return distance; - } - - /** - * Sets the value of the distance property. - * - */ - public void setDistance(int value) { - this.distance = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddress.java deleted file mode 100644 index 882487b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddress.java +++ /dev/null @@ -1,258 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GeoLocationInternationalAddress complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GeoLocationInternationalAddress">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="streetname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country_iso3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeoLocationInternationalAddress", propOrder = { - -}) -public class GeoLocationInternationalAddress { - - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String streetname; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String province; - @XmlElement(required = true) - protected String country; - @XmlElement(name = "country_iso3", required = true) - protected String countryIso3; - protected int distance; - protected float latitude; - protected float longitude; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the streetname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetname() { - return streetname; - } - - /** - * Sets the value of the streetname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetname(String value) { - this.streetname = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the countryIso3 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryIso3() { - return countryIso3; - } - - /** - * Sets the value of the countryIso3 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryIso3(String value) { - this.countryIso3 = value; - } - - /** - * Gets the value of the distance property. - * - */ - public int getDistance() { - return distance; - } - - /** - * Sets the value of the distance property. - * - */ - public void setDistance(int value) { - this.distance = value; - } - - /** - * Gets the value of the latitude property. - * - */ - public float getLatitude() { - return latitude; - } - - /** - * Sets the value of the latitude property. - * - */ - public void setLatitude(float value) { - this.latitude = value; - } - - /** - * Gets the value of the longitude property. - * - */ - public float getLongitude() { - return longitude; - } - - /** - * Sets the value of the longitude property. - * - */ - public void setLongitude(float value) { - this.longitude = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonRequestType.java deleted file mode 100644 index 5614171..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonRequestType.java +++ /dev/null @@ -1,195 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationInternationalAddressCoordinatesLatLonRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationInternationalAddressCoordinatesLatLonRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationInternationalAddressCoordinatesLatLonRequestType", propOrder = { - -}) -public class GeoLocationInternationalAddressCoordinatesLatLonRequestType { - - @XmlElement(required = true) - protected String street; - protected int houseno; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String province; - @XmlElement(required = true) - protected String country; - @XmlElement(required = true) - protected String language; - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseno property. - * - */ - public int getHouseno() { - return houseno; - } - - /** - * Sets the value of the houseno property. - * - */ - public void setHouseno(int value) { - this.houseno = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonResponseType.java deleted file mode 100644 index 429d4d7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationInternationalAddressCoordinatesLatLonResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationInternationalAddressCoordinatesLatLonResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="coordinates" type="{http://www.webservices.nl/soap/}LatLonCoordinatesInternationalAddressArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationInternationalAddressCoordinatesLatLonResponseType", propOrder = { - -}) -public class GeoLocationInternationalAddressCoordinatesLatLonResponseType { - - @XmlElement(required = true) - protected LatLonCoordinatesInternationalAddressArray coordinates; - - /** - * Gets the value of the coordinates property. - * - * @return - * possible object is - * {@link LatLonCoordinatesInternationalAddressArray } - * - */ - public LatLonCoordinatesInternationalAddressArray getCoordinates() { - return coordinates; - } - - /** - * Sets the value of the coordinates property. - * - * @param value - * allowed object is - * {@link LatLonCoordinatesInternationalAddressArray } - * - */ - public void setCoordinates(LatLonCoordinatesInternationalAddressArray value) { - this.coordinates = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonV2RequestType.java deleted file mode 100644 index 0b2c610..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonV2RequestType.java +++ /dev/null @@ -1,240 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationInternationalAddressCoordinatesLatLonV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationInternationalAddressCoordinatesLatLonV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="matchrate" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationInternationalAddressCoordinatesLatLonV2RequestType", propOrder = { - -}) -public class GeoLocationInternationalAddressCoordinatesLatLonV2RequestType { - - @XmlElement(required = true) - protected String country; - @XmlElement(required = true) - protected String postalcode; - protected int houseno; - @XmlElement(required = true) - protected String street; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String province; - protected float matchrate; - @XmlElement(required = true) - protected String language; - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the postalcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostalcode() { - return postalcode; - } - - /** - * Sets the value of the postalcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostalcode(String value) { - this.postalcode = value; - } - - /** - * Gets the value of the houseno property. - * - */ - public int getHouseno() { - return houseno; - } - - /** - * Sets the value of the houseno property. - * - */ - public void setHouseno(int value) { - this.houseno = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the matchrate property. - * - */ - public float getMatchrate() { - return matchrate; - } - - /** - * Sets the value of the matchrate property. - * - */ - public void setMatchrate(float value) { - this.matchrate = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType.java deleted file mode 100644 index 43aaadc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationInternationalAddressCoordinatesLatLonV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationInternationalAddressCoordinatesLatLonV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="coordinates" type="{http://www.webservices.nl/soap/}LatLonCoordinatesInternationalAddressArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationInternationalAddressCoordinatesLatLonV2ResponseType", propOrder = { - -}) -public class GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType { - - @XmlElement(required = true) - protected LatLonCoordinatesInternationalAddressArray coordinates; - - /** - * Gets the value of the coordinates property. - * - * @return - * possible object is - * {@link LatLonCoordinatesInternationalAddressArray } - * - */ - public LatLonCoordinatesInternationalAddressArray getCoordinates() { - return coordinates; - } - - /** - * Sets the value of the coordinates property. - * - * @param value - * allowed object is - * {@link LatLonCoordinatesInternationalAddressArray } - * - */ - public void setCoordinates(LatLonCoordinatesInternationalAddressArray value) { - this.coordinates = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalLatLonToAddressRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalLatLonToAddressRequestType.java deleted file mode 100644 index ef86572..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalLatLonToAddressRequestType.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationInternationalLatLonToAddressRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationInternationalLatLonToAddressRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationInternationalLatLonToAddressRequestType", propOrder = { - -}) -public class GeoLocationInternationalLatLonToAddressRequestType { - - protected float latitude; - protected float longitude; - - /** - * Gets the value of the latitude property. - * - */ - public float getLatitude() { - return latitude; - } - - /** - * Sets the value of the latitude property. - * - */ - public void setLatitude(float value) { - this.latitude = value; - } - - /** - * Gets the value of the longitude property. - * - */ - public float getLongitude() { - return longitude; - } - - /** - * Sets the value of the longitude property. - * - */ - public void setLongitude(float value) { - this.longitude = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalLatLonToAddressResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalLatLonToAddressResponseType.java deleted file mode 100644 index eec274d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalLatLonToAddressResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationInternationalLatLonToAddressResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationInternationalLatLonToAddressResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.webservices.nl/soap/}GeoLocationInternationalAddress"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationInternationalLatLonToAddressResponseType", propOrder = { - -}) -public class GeoLocationInternationalLatLonToAddressResponseType { - - @XmlElement(required = true) - protected GeoLocationInternationalAddress address; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link GeoLocationInternationalAddress } - * - */ - public GeoLocationInternationalAddress getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link GeoLocationInternationalAddress } - * - */ - public void setAddress(GeoLocationInternationalAddress value) { - this.address = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalPostcodeCoordinatesLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalPostcodeCoordinatesLatLonRequestType.java deleted file mode 100644 index 7884d3f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalPostcodeCoordinatesLatLonRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationInternationalPostcodeCoordinatesLatLonRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationInternationalPostcodeCoordinatesLatLonRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationInternationalPostcodeCoordinatesLatLonRequestType", propOrder = { - -}) -public class GeoLocationInternationalPostcodeCoordinatesLatLonRequestType { - - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String country; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalPostcodeCoordinatesLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalPostcodeCoordinatesLatLonResponseType.java deleted file mode 100644 index 7dd24f1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationInternationalPostcodeCoordinatesLatLonResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationInternationalPostcodeCoordinatesLatLonResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationInternationalPostcodeCoordinatesLatLonResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="coordinates" type="{http://www.webservices.nl/soap/}LatLonCoordinates"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationInternationalPostcodeCoordinatesLatLonResponseType", propOrder = { - -}) -public class GeoLocationInternationalPostcodeCoordinatesLatLonResponseType { - - @XmlElement(required = true) - protected LatLonCoordinates coordinates; - - /** - * Gets the value of the coordinates property. - * - * @return - * possible object is - * {@link LatLonCoordinates } - * - */ - public LatLonCoordinates getCoordinates() { - return coordinates; - } - - /** - * Sets the value of the coordinates property. - * - * @param value - * allowed object is - * {@link LatLonCoordinates } - * - */ - public void setCoordinates(LatLonCoordinates value) { - this.coordinates = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToAddressV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToAddressV2RequestType.java deleted file mode 100644 index 32f78dd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToAddressV2RequestType.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationLatLonToAddressV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationLatLonToAddressV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationLatLonToAddressV2RequestType", propOrder = { - -}) -public class GeoLocationLatLonToAddressV2RequestType { - - protected float latitude; - protected float longitude; - - /** - * Gets the value of the latitude property. - * - */ - public float getLatitude() { - return latitude; - } - - /** - * Sets the value of the latitude property. - * - */ - public void setLatitude(float value) { - this.latitude = value; - } - - /** - * Gets the value of the longitude property. - * - */ - public float getLongitude() { - return longitude; - } - - /** - * Sets the value of the longitude property. - * - */ - public void setLongitude(float value) { - this.longitude = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToAddressV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToAddressV2ResponseType.java deleted file mode 100644 index 962b61f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToAddressV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationLatLonToAddressV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationLatLonToAddressV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.webservices.nl/soap/}GeoLocationAddressV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationLatLonToAddressV2ResponseType", propOrder = { - -}) -public class GeoLocationLatLonToAddressV2ResponseType { - - @XmlElement(required = true) - protected GeoLocationAddressV2 address; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link GeoLocationAddressV2 } - * - */ - public GeoLocationAddressV2 getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link GeoLocationAddressV2 } - * - */ - public void setAddress(GeoLocationAddressV2 value) { - this.address = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToPostcodeRequestType.java deleted file mode 100644 index a634efa..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToPostcodeRequestType.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationLatLonToPostcodeRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationLatLonToPostcodeRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationLatLonToPostcodeRequestType", propOrder = { - -}) -public class GeoLocationLatLonToPostcodeRequestType { - - protected float latitude; - protected float longitude; - - /** - * Gets the value of the latitude property. - * - */ - public float getLatitude() { - return latitude; - } - - /** - * Sets the value of the latitude property. - * - */ - public void setLatitude(float value) { - this.latitude = value; - } - - /** - * Gets the value of the longitude property. - * - */ - public float getLongitude() { - return longitude; - } - - /** - * Sets the value of the longitude property. - * - */ - public void setLongitude(float value) { - this.longitude = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToPostcodeResponseType.java deleted file mode 100644 index f8d2989..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToPostcodeResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationLatLonToPostcodeResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationLatLonToPostcodeResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationLatLonToPostcodeResponseType", propOrder = { - -}) -public class GeoLocationLatLonToPostcodeResponseType { - - @XmlElement(required = true) - protected String postcode; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToRDRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToRDRequestType.java deleted file mode 100644 index 707ae7e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToRDRequestType.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationLatLonToRDRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationLatLonToRDRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationLatLonToRDRequestType", propOrder = { - -}) -public class GeoLocationLatLonToRDRequestType { - - protected float latitude; - protected float longitude; - - /** - * Gets the value of the latitude property. - * - */ - public float getLatitude() { - return latitude; - } - - /** - * Sets the value of the latitude property. - * - */ - public void setLatitude(float value) { - this.latitude = value; - } - - /** - * Gets the value of the longitude property. - * - */ - public float getLongitude() { - return longitude; - } - - /** - * Sets the value of the longitude property. - * - */ - public void setLongitude(float value) { - this.longitude = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToRDResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToRDResponseType.java deleted file mode 100644 index 1750718..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationLatLonToRDResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationLatLonToRDResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationLatLonToRDResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}RDCoordinates"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationLatLonToRDResponseType", propOrder = { - -}) -public class GeoLocationLatLonToRDResponseType { - - @XmlElement(required = true) - protected RDCoordinates out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link RDCoordinates } - * - */ - public RDCoordinates getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link RDCoordinates } - * - */ - public void setOut(RDCoordinates value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesLatLonRequestType.java deleted file mode 100644 index 8e087d7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesLatLonRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationNeighborhoodCoordinatesLatLonRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationNeighborhoodCoordinatesLatLonRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationNeighborhoodCoordinatesLatLonRequestType", propOrder = { - -}) -public class GeoLocationNeighborhoodCoordinatesLatLonRequestType { - - @XmlElement(required = true) - protected String nbcode; - - /** - * Gets the value of the nbcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcode() { - return nbcode; - } - - /** - * Sets the value of the nbcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcode(String value) { - this.nbcode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesLatLonResponseType.java deleted file mode 100644 index f77d08d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesLatLonResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationNeighborhoodCoordinatesLatLonResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationNeighborhoodCoordinatesLatLonResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="coordinates" type="{http://www.webservices.nl/soap/}LatLonCoordinates"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationNeighborhoodCoordinatesLatLonResponseType", propOrder = { - -}) -public class GeoLocationNeighborhoodCoordinatesLatLonResponseType { - - @XmlElement(required = true) - protected LatLonCoordinates coordinates; - - /** - * Gets the value of the coordinates property. - * - * @return - * possible object is - * {@link LatLonCoordinates } - * - */ - public LatLonCoordinates getCoordinates() { - return coordinates; - } - - /** - * Sets the value of the coordinates property. - * - * @param value - * allowed object is - * {@link LatLonCoordinates } - * - */ - public void setCoordinates(LatLonCoordinates value) { - this.coordinates = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesRDRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesRDRequestType.java deleted file mode 100644 index f6bc403..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesRDRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationNeighborhoodCoordinatesRDRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationNeighborhoodCoordinatesRDRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationNeighborhoodCoordinatesRDRequestType", propOrder = { - -}) -public class GeoLocationNeighborhoodCoordinatesRDRequestType { - - @XmlElement(required = true) - protected String nbcode; - - /** - * Gets the value of the nbcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcode() { - return nbcode; - } - - /** - * Sets the value of the nbcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcode(String value) { - this.nbcode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesRDResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesRDResponseType.java deleted file mode 100644 index 25af98c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodCoordinatesRDResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationNeighborhoodCoordinatesRDResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationNeighborhoodCoordinatesRDResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="coordinates" type="{http://www.webservices.nl/soap/}RDCoordinates"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationNeighborhoodCoordinatesRDResponseType", propOrder = { - -}) -public class GeoLocationNeighborhoodCoordinatesRDResponseType { - - @XmlElement(required = true) - protected RDCoordinates coordinates; - - /** - * Gets the value of the coordinates property. - * - * @return - * possible object is - * {@link RDCoordinates } - * - */ - public RDCoordinates getCoordinates() { - return coordinates; - } - - /** - * Sets the value of the coordinates property. - * - * @param value - * allowed object is - * {@link RDCoordinates } - * - */ - public void setCoordinates(RDCoordinates value) { - this.coordinates = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodDistanceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodDistanceRequestType.java deleted file mode 100644 index c013f2a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodDistanceRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationNeighborhoodDistanceRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationNeighborhoodDistanceRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nbcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="nbcodeto" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationNeighborhoodDistanceRequestType", propOrder = { - -}) -public class GeoLocationNeighborhoodDistanceRequestType { - - @XmlElement(required = true) - protected String nbcodefrom; - @XmlElement(required = true) - protected String nbcodeto; - - /** - * Gets the value of the nbcodefrom property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcodefrom() { - return nbcodefrom; - } - - /** - * Sets the value of the nbcodefrom property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcodefrom(String value) { - this.nbcodefrom = value; - } - - /** - * Gets the value of the nbcodeto property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcodeto() { - return nbcodeto; - } - - /** - * Sets the value of the nbcodeto property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcodeto(String value) { - this.nbcodeto = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodDistanceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodDistanceResponseType.java deleted file mode 100644 index 9e8edf5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationNeighborhoodDistanceResponseType.java +++ /dev/null @@ -1,59 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationNeighborhoodDistanceResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationNeighborhoodDistanceResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationNeighborhoodDistanceResponseType", propOrder = { - -}) -public class GeoLocationNeighborhoodDistanceResponseType { - - protected int distance; - - /** - * Gets the value of the distance property. - * - */ - public int getDistance() { - return distance; - } - - /** - * Sets the value of the distance property. - * - */ - public void setDistance(int value) { - this.distance = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesLatLonRequestType.java deleted file mode 100644 index 5794264..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesLatLonRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationPostcodeCoordinatesLatLonRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationPostcodeCoordinatesLatLonRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationPostcodeCoordinatesLatLonRequestType", propOrder = { - -}) -public class GeoLocationPostcodeCoordinatesLatLonRequestType { - - @XmlElement(required = true) - protected String postcode; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesLatLonResponseType.java deleted file mode 100644 index 4340fd4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesLatLonResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationPostcodeCoordinatesLatLonResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationPostcodeCoordinatesLatLonResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="coordinates" type="{http://www.webservices.nl/soap/}LatLonCoordinates"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationPostcodeCoordinatesLatLonResponseType", propOrder = { - -}) -public class GeoLocationPostcodeCoordinatesLatLonResponseType { - - @XmlElement(required = true) - protected LatLonCoordinates coordinates; - - /** - * Gets the value of the coordinates property. - * - * @return - * possible object is - * {@link LatLonCoordinates } - * - */ - public LatLonCoordinates getCoordinates() { - return coordinates; - } - - /** - * Sets the value of the coordinates property. - * - * @param value - * allowed object is - * {@link LatLonCoordinates } - * - */ - public void setCoordinates(LatLonCoordinates value) { - this.coordinates = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesRDRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesRDRequestType.java deleted file mode 100644 index e7ca10c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesRDRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationPostcodeCoordinatesRDRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationPostcodeCoordinatesRDRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationPostcodeCoordinatesRDRequestType", propOrder = { - -}) -public class GeoLocationPostcodeCoordinatesRDRequestType { - - @XmlElement(required = true) - protected String postcode; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesRDResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesRDResponseType.java deleted file mode 100644 index 7c50e46..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeCoordinatesRDResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationPostcodeCoordinatesRDResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationPostcodeCoordinatesRDResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="coordinates" type="{http://www.webservices.nl/soap/}RDCoordinates"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationPostcodeCoordinatesRDResponseType", propOrder = { - -}) -public class GeoLocationPostcodeCoordinatesRDResponseType { - - @XmlElement(required = true) - protected RDCoordinates coordinates; - - /** - * Gets the value of the coordinates property. - * - * @return - * possible object is - * {@link RDCoordinates } - * - */ - public RDCoordinates getCoordinates() { - return coordinates; - } - - /** - * Sets the value of the coordinates property. - * - * @param value - * allowed object is - * {@link RDCoordinates } - * - */ - public void setCoordinates(RDCoordinates value) { - this.coordinates = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeDistanceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeDistanceRequestType.java deleted file mode 100644 index 500b941..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeDistanceRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationPostcodeDistanceRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationPostcodeDistanceRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcodeto" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationPostcodeDistanceRequestType", propOrder = { - -}) -public class GeoLocationPostcodeDistanceRequestType { - - @XmlElement(required = true) - protected String postcodefrom; - @XmlElement(required = true) - protected String postcodeto; - - /** - * Gets the value of the postcodefrom property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcodefrom() { - return postcodefrom; - } - - /** - * Sets the value of the postcodefrom property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcodefrom(String value) { - this.postcodefrom = value; - } - - /** - * Gets the value of the postcodeto property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcodeto() { - return postcodeto; - } - - /** - * Sets the value of the postcodeto property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcodeto(String value) { - this.postcodeto = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeDistanceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeDistanceResponseType.java deleted file mode 100644 index 65fbb52..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationPostcodeDistanceResponseType.java +++ /dev/null @@ -1,59 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationPostcodeDistanceResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationPostcodeDistanceResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationPostcodeDistanceResponseType", propOrder = { - -}) -public class GeoLocationPostcodeDistanceResponseType { - - protected int distance; - - /** - * Gets the value of the distance property. - * - */ - public int getDistance() { - return distance; - } - - /** - * Sets the value of the distance property. - * - */ - public void setDistance(int value) { - this.distance = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToAddressV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToAddressV2RequestType.java deleted file mode 100644 index 5bf3523..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToAddressV2RequestType.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationRDToAddressV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationRDToAddressV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationRDToAddressV2RequestType", propOrder = { - -}) -public class GeoLocationRDToAddressV2RequestType { - - protected int x; - protected int y; - - /** - * Gets the value of the x property. - * - */ - public int getX() { - return x; - } - - /** - * Sets the value of the x property. - * - */ - public void setX(int value) { - this.x = value; - } - - /** - * Gets the value of the y property. - * - */ - public int getY() { - return y; - } - - /** - * Sets the value of the y property. - * - */ - public void setY(int value) { - this.y = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToAddressV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToAddressV2ResponseType.java deleted file mode 100644 index d36e3e1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToAddressV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationRDToAddressV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationRDToAddressV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.webservices.nl/soap/}GeoLocationAddressV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationRDToAddressV2ResponseType", propOrder = { - -}) -public class GeoLocationRDToAddressV2ResponseType { - - @XmlElement(required = true) - protected GeoLocationAddressV2 address; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link GeoLocationAddressV2 } - * - */ - public GeoLocationAddressV2 getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link GeoLocationAddressV2 } - * - */ - public void setAddress(GeoLocationAddressV2 value) { - this.address = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToLatLonRequestType.java deleted file mode 100644 index a55363b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToLatLonRequestType.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationRDToLatLonRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationRDToLatLonRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationRDToLatLonRequestType", propOrder = { - -}) -public class GeoLocationRDToLatLonRequestType { - - protected int x; - protected int y; - - /** - * Gets the value of the x property. - * - */ - public int getX() { - return x; - } - - /** - * Sets the value of the x property. - * - */ - public void setX(int value) { - this.x = value; - } - - /** - * Gets the value of the y property. - * - */ - public int getY() { - return y; - } - - /** - * Sets the value of the y property. - * - */ - public void setY(int value) { - this.y = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToLatLonResponseType.java deleted file mode 100644 index 3412246..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToLatLonResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationRDToLatLonResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationRDToLatLonResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}LatLonCoordinates"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationRDToLatLonResponseType", propOrder = { - -}) -public class GeoLocationRDToLatLonResponseType { - - @XmlElement(required = true) - protected LatLonCoordinates out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link LatLonCoordinates } - * - */ - public LatLonCoordinates getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link LatLonCoordinates } - * - */ - public void setOut(LatLonCoordinates value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToPostcodeRequestType.java deleted file mode 100644 index f241a86..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToPostcodeRequestType.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationRDToPostcodeRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationRDToPostcodeRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationRDToPostcodeRequestType", propOrder = { - -}) -public class GeoLocationRDToPostcodeRequestType { - - protected int x; - protected int y; - - /** - * Gets the value of the x property. - * - */ - public int getX() { - return x; - } - - /** - * Sets the value of the x property. - * - */ - public void setX(int value) { - this.x = value; - } - - /** - * Gets the value of the y property. - * - */ - public int getY() { - return y; - } - - /** - * Sets the value of the y property. - * - */ - public void setY(int value) { - this.y = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToPostcodeResponseType.java deleted file mode 100644 index 71f0fdd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GeoLocationRDToPostcodeResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for geoLocationRDToPostcodeResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="geoLocationRDToPostcodeResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "geoLocationRDToPostcodeResponseType", propOrder = { - -}) -public class GeoLocationRDToPostcodeResponseType { - - @XmlElement(required = true) - protected String postcode; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditCompanyLiaisonsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditCompanyLiaisonsRequestType.java deleted file mode 100644 index 7e1ccdf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditCompanyLiaisonsRequestType.java +++ /dev/null @@ -1,70 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditCompanyLiaisonsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditCompanyLiaisonsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditCompanyLiaisonsRequestType", propOrder = { - -}) -public class GraydonCreditCompanyLiaisonsRequestType { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditCompanyLiaisonsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditCompanyLiaisonsResponseType.java deleted file mode 100644 index 6a5a8e9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditCompanyLiaisonsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditCompanyLiaisonsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditCompanyLiaisonsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonCreditReportCompanyLiaisons"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditCompanyLiaisonsResponseType", propOrder = { - -}) -public class GraydonCreditCompanyLiaisonsResponseType { - - @XmlElement(required = true) - protected GraydonCreditReportCompanyLiaisons out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link GraydonCreditReportCompanyLiaisons } - * - */ - public GraydonCreditReportCompanyLiaisons getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link GraydonCreditReportCompanyLiaisons } - * - */ - public void setOut(GraydonCreditReportCompanyLiaisons value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditGetReportRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditGetReportRequestType.java deleted file mode 100644 index ba66f5c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditGetReportRequestType.java +++ /dev/null @@ -1,97 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditGetReportRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditGetReportRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditGetReportRequestType", propOrder = { - -}) -public class GraydonCreditGetReportRequestType { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - @XmlElement(required = true) - protected String document; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocument(String value) { - this.document = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditGetReportResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditGetReportResponseType.java deleted file mode 100644 index b983029..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditGetReportResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditGetReportResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditGetReportResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonCreditReport"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditGetReportResponseType", propOrder = { - -}) -public class GraydonCreditGetReportResponseType { - - @XmlElement(required = true) - protected GraydonCreditReport out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link GraydonCreditReport } - * - */ - public GraydonCreditReport getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link GraydonCreditReport } - * - */ - public void setOut(GraydonCreditReport value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditManagementRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditManagementRequestType.java deleted file mode 100644 index 8ebecc8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditManagementRequestType.java +++ /dev/null @@ -1,70 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditManagementRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditManagementRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditManagementRequestType", propOrder = { - -}) -public class GraydonCreditManagementRequestType { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditManagementResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditManagementResponseType.java deleted file mode 100644 index b40a051..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditManagementResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditManagementResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditManagementResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonCreditReportManagement"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditManagementResponseType", propOrder = { - -}) -public class GraydonCreditManagementResponseType { - - @XmlElement(required = true) - protected GraydonCreditReportManagement out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link GraydonCreditReportManagement } - * - */ - public GraydonCreditReportManagement getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link GraydonCreditReportManagement } - * - */ - public void setOut(GraydonCreditReportManagement value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditQuickscanRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditQuickscanRequestType.java deleted file mode 100644 index 5d74821..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditQuickscanRequestType.java +++ /dev/null @@ -1,70 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditQuickscanRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditQuickscanRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditQuickscanRequestType", propOrder = { - -}) -public class GraydonCreditQuickscanRequestType { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditQuickscanResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditQuickscanResponseType.java deleted file mode 100644 index 6819aeb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditQuickscanResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditQuickscanResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditQuickscanResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonCreditReportQuickscan"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditQuickscanResponseType", propOrder = { - -}) -public class GraydonCreditQuickscanResponseType { - - @XmlElement(required = true) - protected GraydonCreditReportQuickscan out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link GraydonCreditReportQuickscan } - * - */ - public GraydonCreditReportQuickscan getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link GraydonCreditReportQuickscan } - * - */ - public void setOut(GraydonCreditReportQuickscan value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditRatingsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditRatingsRequestType.java deleted file mode 100644 index de59c5e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditRatingsRequestType.java +++ /dev/null @@ -1,70 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditRatingsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditRatingsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditRatingsRequestType", propOrder = { - -}) -public class GraydonCreditRatingsRequestType { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditRatingsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditRatingsResponseType.java deleted file mode 100644 index 11e6fc1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditRatingsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditRatingsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditRatingsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonCreditReportRatings"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditRatingsResponseType", propOrder = { - -}) -public class GraydonCreditRatingsResponseType { - - @XmlElement(required = true) - protected GraydonCreditReportRatings out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link GraydonCreditReportRatings } - * - */ - public GraydonCreditReportRatings getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link GraydonCreditReportRatings } - * - */ - public void setOut(GraydonCreditReportRatings value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReport.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReport.java deleted file mode 100644 index 27d4559..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReport.java +++ /dev/null @@ -1,173 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GraydonCreditReport complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GraydonCreditReport">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="report_normal" type="{http://www.webservices.nl/soap/}GraydonCreditReportNormal" minOccurs="0"/>
- *         <element name="report_calamity" type="{http://www.webservices.nl/soap/}GraydonCreditReportCalamity" minOccurs="0"/>
- *         <element name="report_alarm" type="{http://www.webservices.nl/soap/}GraydonCreditReportAlarm" minOccurs="0"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
- *         <element name="alarm" type="{http://www.webservices.nl/soap/}GCRAlarm" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GraydonCreditReport", propOrder = { - -}) -public class GraydonCreditReport { - - @XmlElement(name = "report_normal") - protected GraydonCreditReportNormal reportNormal; - @XmlElement(name = "report_calamity") - protected GraydonCreditReportCalamity reportCalamity; - @XmlElement(name = "report_alarm") - protected GraydonCreditReportAlarm reportAlarm; - protected byte[] document; - protected GCRAlarm alarm; - - /** - * Gets the value of the reportNormal property. - * - * @return - * possible object is - * {@link GraydonCreditReportNormal } - * - */ - public GraydonCreditReportNormal getReportNormal() { - return reportNormal; - } - - /** - * Sets the value of the reportNormal property. - * - * @param value - * allowed object is - * {@link GraydonCreditReportNormal } - * - */ - public void setReportNormal(GraydonCreditReportNormal value) { - this.reportNormal = value; - } - - /** - * Gets the value of the reportCalamity property. - * - * @return - * possible object is - * {@link GraydonCreditReportCalamity } - * - */ - public GraydonCreditReportCalamity getReportCalamity() { - return reportCalamity; - } - - /** - * Sets the value of the reportCalamity property. - * - * @param value - * allowed object is - * {@link GraydonCreditReportCalamity } - * - */ - public void setReportCalamity(GraydonCreditReportCalamity value) { - this.reportCalamity = value; - } - - /** - * Gets the value of the reportAlarm property. - * - * @return - * possible object is - * {@link GraydonCreditReportAlarm } - * - */ - public GraydonCreditReportAlarm getReportAlarm() { - return reportAlarm; - } - - /** - * Sets the value of the reportAlarm property. - * - * @param value - * allowed object is - * {@link GraydonCreditReportAlarm } - * - */ - public void setReportAlarm(GraydonCreditReportAlarm value) { - this.reportAlarm = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - - /** - * Gets the value of the alarm property. - * - * @return - * possible object is - * {@link GCRAlarm } - * - */ - public GCRAlarm getAlarm() { - return alarm; - } - - /** - * Sets the value of the alarm property. - * - * @param value - * allowed object is - * {@link GCRAlarm } - * - */ - public void setAlarm(GCRAlarm value) { - this.alarm = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportAlarm.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportAlarm.java deleted file mode 100644 index af5cf43..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportAlarm.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GraydonCreditReportAlarm complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GraydonCreditReportAlarm">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company" type="{http://www.webservices.nl/soap/}GCRCompanyItselfAlarm"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GraydonCreditReportAlarm", propOrder = { - -}) -public class GraydonCreditReportAlarm { - - @XmlElement(required = true) - protected GCRCompanyItselfAlarm company; - - /** - * Gets the value of the company property. - * - * @return - * possible object is - * {@link GCRCompanyItselfAlarm } - * - */ - public GCRCompanyItselfAlarm getCompany() { - return company; - } - - /** - * Sets the value of the company property. - * - * @param value - * allowed object is - * {@link GCRCompanyItselfAlarm } - * - */ - public void setCompany(GCRCompanyItselfAlarm value) { - this.company = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportCalamity.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportCalamity.java deleted file mode 100644 index 4454648..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportCalamity.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GraydonCreditReportCalamity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GraydonCreditReportCalamity">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company" type="{http://www.webservices.nl/soap/}GCRCompanyItselfCalamity"/>
- *         <element name="company_relations" type="{http://www.webservices.nl/soap/}GCRCompanyRelationsSimple"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GraydonCreditReportCalamity", propOrder = { - -}) -public class GraydonCreditReportCalamity { - - @XmlElement(required = true) - protected GCRCompanyItselfCalamity company; - @XmlElement(name = "company_relations", required = true) - protected GCRCompanyRelationsSimple companyRelations; - - /** - * Gets the value of the company property. - * - * @return - * possible object is - * {@link GCRCompanyItselfCalamity } - * - */ - public GCRCompanyItselfCalamity getCompany() { - return company; - } - - /** - * Sets the value of the company property. - * - * @param value - * allowed object is - * {@link GCRCompanyItselfCalamity } - * - */ - public void setCompany(GCRCompanyItselfCalamity value) { - this.company = value; - } - - /** - * Gets the value of the companyRelations property. - * - * @return - * possible object is - * {@link GCRCompanyRelationsSimple } - * - */ - public GCRCompanyRelationsSimple getCompanyRelations() { - return companyRelations; - } - - /** - * Sets the value of the companyRelations property. - * - * @param value - * allowed object is - * {@link GCRCompanyRelationsSimple } - * - */ - public void setCompanyRelations(GCRCompanyRelationsSimple value) { - this.companyRelations = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportCompanyLiaisons.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportCompanyLiaisons.java deleted file mode 100644 index 8127c08..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportCompanyLiaisons.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GraydonCreditReportCompanyLiaisons complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GraydonCreditReportCompanyLiaisons">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="concern_liaisons" type="{http://www.webservices.nl/soap/}GCRLiaisonArray" minOccurs="0"/>
- *         <element name="companies" type="{http://www.webservices.nl/soap/}GCRLiaisonCompanyArray" minOccurs="0"/>
- *         <element name="alarm" type="{http://www.webservices.nl/soap/}GCRAlarm" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GraydonCreditReportCompanyLiaisons", propOrder = { - -}) -public class GraydonCreditReportCompanyLiaisons { - - @XmlElement(name = "concern_liaisons") - protected GCRLiaisonArray concernLiaisons; - protected GCRLiaisonCompanyArray companies; - protected GCRAlarm alarm; - - /** - * Gets the value of the concernLiaisons property. - * - * @return - * possible object is - * {@link GCRLiaisonArray } - * - */ - public GCRLiaisonArray getConcernLiaisons() { - return concernLiaisons; - } - - /** - * Sets the value of the concernLiaisons property. - * - * @param value - * allowed object is - * {@link GCRLiaisonArray } - * - */ - public void setConcernLiaisons(GCRLiaisonArray value) { - this.concernLiaisons = value; - } - - /** - * Gets the value of the companies property. - * - * @return - * possible object is - * {@link GCRLiaisonCompanyArray } - * - */ - public GCRLiaisonCompanyArray getCompanies() { - return companies; - } - - /** - * Sets the value of the companies property. - * - * @param value - * allowed object is - * {@link GCRLiaisonCompanyArray } - * - */ - public void setCompanies(GCRLiaisonCompanyArray value) { - this.companies = value; - } - - /** - * Gets the value of the alarm property. - * - * @return - * possible object is - * {@link GCRAlarm } - * - */ - public GCRAlarm getAlarm() { - return alarm; - } - - /** - * Sets the value of the alarm property. - * - * @param value - * allowed object is - * {@link GCRAlarm } - * - */ - public void setAlarm(GCRAlarm value) { - this.alarm = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportManagement.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportManagement.java deleted file mode 100644 index 7e548de..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportManagement.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GraydonCreditReportManagement complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GraydonCreditReportManagement">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_management" type="{http://www.webservices.nl/soap/}GCRCompanyManagement" minOccurs="0"/>
- *         <element name="persons" type="{http://www.webservices.nl/soap/}GCRPersonArray" minOccurs="0"/>
- *         <element name="alarm" type="{http://www.webservices.nl/soap/}GCRAlarm" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GraydonCreditReportManagement", propOrder = { - -}) -public class GraydonCreditReportManagement { - - @XmlElement(name = "company_management") - protected GCRCompanyManagement companyManagement; - protected GCRPersonArray persons; - protected GCRAlarm alarm; - - /** - * Gets the value of the companyManagement property. - * - * @return - * possible object is - * {@link GCRCompanyManagement } - * - */ - public GCRCompanyManagement getCompanyManagement() { - return companyManagement; - } - - /** - * Sets the value of the companyManagement property. - * - * @param value - * allowed object is - * {@link GCRCompanyManagement } - * - */ - public void setCompanyManagement(GCRCompanyManagement value) { - this.companyManagement = value; - } - - /** - * Gets the value of the persons property. - * - * @return - * possible object is - * {@link GCRPersonArray } - * - */ - public GCRPersonArray getPersons() { - return persons; - } - - /** - * Sets the value of the persons property. - * - * @param value - * allowed object is - * {@link GCRPersonArray } - * - */ - public void setPersons(GCRPersonArray value) { - this.persons = value; - } - - /** - * Gets the value of the alarm property. - * - * @return - * possible object is - * {@link GCRAlarm } - * - */ - public GCRAlarm getAlarm() { - return alarm; - } - - /** - * Sets the value of the alarm property. - * - * @param value - * allowed object is - * {@link GCRAlarm } - * - */ - public void setAlarm(GCRAlarm value) { - this.alarm = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportNormal.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportNormal.java deleted file mode 100644 index 2d08a92..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportNormal.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GraydonCreditReportNormal complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GraydonCreditReportNormal">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company" type="{http://www.webservices.nl/soap/}GCRCompanyItself"/>
- *         <element name="company_relations" type="{http://www.webservices.nl/soap/}GCRCompanyRelations"/>
- *         <element name="indirect_company_relations" type="{http://www.webservices.nl/soap/}GCRCompanyRelations"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GraydonCreditReportNormal", propOrder = { - -}) -public class GraydonCreditReportNormal { - - @XmlElement(required = true) - protected GCRCompanyItself company; - @XmlElement(name = "company_relations", required = true) - protected GCRCompanyRelations companyRelations; - @XmlElement(name = "indirect_company_relations", required = true) - protected GCRCompanyRelations indirectCompanyRelations; - - /** - * Gets the value of the company property. - * - * @return - * possible object is - * {@link GCRCompanyItself } - * - */ - public GCRCompanyItself getCompany() { - return company; - } - - /** - * Sets the value of the company property. - * - * @param value - * allowed object is - * {@link GCRCompanyItself } - * - */ - public void setCompany(GCRCompanyItself value) { - this.company = value; - } - - /** - * Gets the value of the companyRelations property. - * - * @return - * possible object is - * {@link GCRCompanyRelations } - * - */ - public GCRCompanyRelations getCompanyRelations() { - return companyRelations; - } - - /** - * Sets the value of the companyRelations property. - * - * @param value - * allowed object is - * {@link GCRCompanyRelations } - * - */ - public void setCompanyRelations(GCRCompanyRelations value) { - this.companyRelations = value; - } - - /** - * Gets the value of the indirectCompanyRelations property. - * - * @return - * possible object is - * {@link GCRCompanyRelations } - * - */ - public GCRCompanyRelations getIndirectCompanyRelations() { - return indirectCompanyRelations; - } - - /** - * Sets the value of the indirectCompanyRelations property. - * - * @param value - * allowed object is - * {@link GCRCompanyRelations } - * - */ - public void setIndirectCompanyRelations(GCRCompanyRelations value) { - this.indirectCompanyRelations = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportQuickscan.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportQuickscan.java deleted file mode 100644 index f6bf22a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportQuickscan.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GraydonCreditReportQuickscan complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GraydonCreditReportQuickscan">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="pd_rating" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="credit_flag_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="credit_flag_text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="alarm" type="{http://www.webservices.nl/soap/}GCRAlarm" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GraydonCreditReportQuickscan", propOrder = { - -}) -public class GraydonCreditReportQuickscan { - - @XmlElement(name = "pd_rating") - protected String pdRating; - @XmlElement(name = "credit_flag_code") - protected String creditFlagCode; - @XmlElement(name = "credit_flag_text") - protected String creditFlagText; - protected GCRAlarm alarm; - - /** - * Gets the value of the pdRating property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPdRating() { - return pdRating; - } - - /** - * Sets the value of the pdRating property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPdRating(String value) { - this.pdRating = value; - } - - /** - * Gets the value of the creditFlagCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreditFlagCode() { - return creditFlagCode; - } - - /** - * Sets the value of the creditFlagCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreditFlagCode(String value) { - this.creditFlagCode = value; - } - - /** - * Gets the value of the creditFlagText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreditFlagText() { - return creditFlagText; - } - - /** - * Sets the value of the creditFlagText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreditFlagText(String value) { - this.creditFlagText = value; - } - - /** - * Gets the value of the alarm property. - * - * @return - * possible object is - * {@link GCRAlarm } - * - */ - public GCRAlarm getAlarm() { - return alarm; - } - - /** - * Sets the value of the alarm property. - * - * @param value - * allowed object is - * {@link GCRAlarm } - * - */ - public void setAlarm(GCRAlarm value) { - this.alarm = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportRatings.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportRatings.java deleted file mode 100644 index 15c4899..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportRatings.java +++ /dev/null @@ -1,229 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GraydonCreditReportRatings complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GraydonCreditReportRatings">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="credit_advice_amount" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="credit_advice_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="credit_advice_factors" type="{http://www.webservices.nl/soap/}GCRCreditFactorArray" minOccurs="0"/>
- *         <element name="pd_rating" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="ratings" type="{http://www.webservices.nl/soap/}GCRRatingArray" minOccurs="0"/>
- *         <element name="payment_information" type="{http://www.webservices.nl/soap/}GCRPaymentInformationArray" minOccurs="0"/>
- *         <element name="alarm" type="{http://www.webservices.nl/soap/}GCRAlarm" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GraydonCreditReportRatings", propOrder = { - -}) -public class GraydonCreditReportRatings { - - @XmlElement(name = "credit_advice_amount") - protected String creditAdviceAmount; - @XmlElement(name = "credit_advice_currency") - protected String creditAdviceCurrency; - @XmlElement(name = "credit_advice_factors") - protected GCRCreditFactorArray creditAdviceFactors; - @XmlElement(name = "pd_rating") - protected String pdRating; - protected GCRRatingArray ratings; - @XmlElement(name = "payment_information") - protected GCRPaymentInformationArray paymentInformation; - protected GCRAlarm alarm; - - /** - * Gets the value of the creditAdviceAmount property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreditAdviceAmount() { - return creditAdviceAmount; - } - - /** - * Sets the value of the creditAdviceAmount property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreditAdviceAmount(String value) { - this.creditAdviceAmount = value; - } - - /** - * Gets the value of the creditAdviceCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreditAdviceCurrency() { - return creditAdviceCurrency; - } - - /** - * Sets the value of the creditAdviceCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreditAdviceCurrency(String value) { - this.creditAdviceCurrency = value; - } - - /** - * Gets the value of the creditAdviceFactors property. - * - * @return - * possible object is - * {@link GCRCreditFactorArray } - * - */ - public GCRCreditFactorArray getCreditAdviceFactors() { - return creditAdviceFactors; - } - - /** - * Sets the value of the creditAdviceFactors property. - * - * @param value - * allowed object is - * {@link GCRCreditFactorArray } - * - */ - public void setCreditAdviceFactors(GCRCreditFactorArray value) { - this.creditAdviceFactors = value; - } - - /** - * Gets the value of the pdRating property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPdRating() { - return pdRating; - } - - /** - * Sets the value of the pdRating property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPdRating(String value) { - this.pdRating = value; - } - - /** - * Gets the value of the ratings property. - * - * @return - * possible object is - * {@link GCRRatingArray } - * - */ - public GCRRatingArray getRatings() { - return ratings; - } - - /** - * Sets the value of the ratings property. - * - * @param value - * allowed object is - * {@link GCRRatingArray } - * - */ - public void setRatings(GCRRatingArray value) { - this.ratings = value; - } - - /** - * Gets the value of the paymentInformation property. - * - * @return - * possible object is - * {@link GCRPaymentInformationArray } - * - */ - public GCRPaymentInformationArray getPaymentInformation() { - return paymentInformation; - } - - /** - * Sets the value of the paymentInformation property. - * - * @param value - * allowed object is - * {@link GCRPaymentInformationArray } - * - */ - public void setPaymentInformation(GCRPaymentInformationArray value) { - this.paymentInformation = value; - } - - /** - * Gets the value of the alarm property. - * - * @return - * possible object is - * {@link GCRAlarm } - * - */ - public GCRAlarm getAlarm() { - return alarm; - } - - /** - * Sets the value of the alarm property. - * - * @param value - * allowed object is - * {@link GCRAlarm } - * - */ - public void setAlarm(GCRAlarm value) { - this.alarm = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportVatNumber.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportVatNumber.java deleted file mode 100644 index 4da85ff..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditReportVatNumber.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GraydonCreditReportVatNumber complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GraydonCreditReportVatNumber">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="alarm" type="{http://www.webservices.nl/soap/}GCRAlarm" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GraydonCreditReportVatNumber", propOrder = { - -}) -public class GraydonCreditReportVatNumber { - - @XmlElement(name = "vat_number") - protected String vatNumber; - protected GCRAlarm alarm; - - /** - * Gets the value of the vatNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVatNumber() { - return vatNumber; - } - - /** - * Sets the value of the vatNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVatNumber(String value) { - this.vatNumber = value; - } - - /** - * Gets the value of the alarm property. - * - * @return - * possible object is - * {@link GCRAlarm } - * - */ - public GCRAlarm getAlarm() { - return alarm; - } - - /** - * Sets the value of the alarm property. - * - * @param value - * allowed object is - * {@link GCRAlarm } - * - */ - public void setAlarm(GCRAlarm value) { - this.alarm = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchIdentificationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchIdentificationRequestType.java deleted file mode 100644 index 02d8d7b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchIdentificationRequestType.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditSearchIdentificationRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditSearchIdentificationRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country_iso2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditSearchIdentificationRequestType", propOrder = { - -}) -public class GraydonCreditSearchIdentificationRequestType { - - @XmlElement(name = "company_id", required = true) - protected String companyId; - @XmlElement(name = "company_id_type", required = true) - protected String companyIdType; - @XmlElement(name = "country_iso2", required = true) - protected String countryIso2; - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - - /** - * Gets the value of the companyIdType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyIdType() { - return companyIdType; - } - - /** - * Sets the value of the companyIdType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyIdType(String value) { - this.companyIdType = value; - } - - /** - * Gets the value of the countryIso2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryIso2() { - return countryIso2; - } - - /** - * Sets the value of the countryIso2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryIso2(String value) { - this.countryIso2 = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchIdentificationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchIdentificationResponseType.java deleted file mode 100644 index 336324e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchIdentificationResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditSearchIdentificationResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditSearchIdentificationResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditSearchIdentificationResponseType", propOrder = { - -}) -public class GraydonCreditSearchIdentificationResponseType { - - @XmlElement(required = true) - protected GraydonReferenceArray out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link GraydonReferenceArray } - * - */ - public GraydonReferenceArray getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link GraydonReferenceArray } - * - */ - public void setOut(GraydonReferenceArray value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchNameRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchNameRequestType.java deleted file mode 100644 index c4006a6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchNameRequestType.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditSearchNameRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditSearchNameRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="residence" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country_iso2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditSearchNameRequestType", propOrder = { - -}) -public class GraydonCreditSearchNameRequestType { - - @XmlElement(name = "company_name", required = true) - protected String companyName; - @XmlElement(required = true) - protected String residence; - @XmlElement(name = "country_iso2", required = true) - protected String countryIso2; - - /** - * Gets the value of the companyName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyName() { - return companyName; - } - - /** - * Sets the value of the companyName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyName(String value) { - this.companyName = value; - } - - /** - * Gets the value of the residence property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResidence() { - return residence; - } - - /** - * Sets the value of the residence property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResidence(String value) { - this.residence = value; - } - - /** - * Gets the value of the countryIso2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryIso2() { - return countryIso2; - } - - /** - * Sets the value of the countryIso2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryIso2(String value) { - this.countryIso2 = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchNameResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchNameResponseType.java deleted file mode 100644 index 5103123..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchNameResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditSearchNameResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditSearchNameResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditSearchNameResponseType", propOrder = { - -}) -public class GraydonCreditSearchNameResponseType { - - @XmlElement(required = true) - protected GraydonReferenceArray out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link GraydonReferenceArray } - * - */ - public GraydonReferenceArray getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link GraydonReferenceArray } - * - */ - public void setOut(GraydonReferenceArray value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchPostcodeRequestType.java deleted file mode 100644 index 97b4411..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchPostcodeRequestType.java +++ /dev/null @@ -1,142 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditSearchPostcodeRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditSearchPostcodeRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_no" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="telephone_no" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country_iso2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditSearchPostcodeRequestType", propOrder = { - -}) -public class GraydonCreditSearchPostcodeRequestType { - - @XmlElement(required = true) - protected String postcode; - @XmlElement(name = "house_no") - protected int houseNo; - @XmlElement(name = "telephone_no", required = true) - protected String telephoneNo; - @XmlElement(name = "country_iso2", required = true) - protected String countryIso2; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the houseNo property. - * - */ - public int getHouseNo() { - return houseNo; - } - - /** - * Sets the value of the houseNo property. - * - */ - public void setHouseNo(int value) { - this.houseNo = value; - } - - /** - * Gets the value of the telephoneNo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNo() { - return telephoneNo; - } - - /** - * Sets the value of the telephoneNo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNo(String value) { - this.telephoneNo = value; - } - - /** - * Gets the value of the countryIso2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryIso2() { - return countryIso2; - } - - /** - * Sets the value of the countryIso2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryIso2(String value) { - this.countryIso2 = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchPostcodeResponseType.java deleted file mode 100644 index 3377a25..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditSearchPostcodeResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditSearchPostcodeResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditSearchPostcodeResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditSearchPostcodeResponseType", propOrder = { - -}) -public class GraydonCreditSearchPostcodeResponseType { - - @XmlElement(required = true) - protected GraydonReferenceArray out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link GraydonReferenceArray } - * - */ - public GraydonReferenceArray getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link GraydonReferenceArray } - * - */ - public void setOut(GraydonReferenceArray value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditVatNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditVatNumberRequestType.java deleted file mode 100644 index 4de4620..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditVatNumberRequestType.java +++ /dev/null @@ -1,70 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditVatNumberRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditVatNumberRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="graydon_company_id" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditVatNumberRequestType", propOrder = { - -}) -public class GraydonCreditVatNumberRequestType { - - @XmlElement(name = "graydon_company_id", required = true) - protected BigInteger graydonCompanyId; - - /** - * Gets the value of the graydonCompanyId property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getGraydonCompanyId() { - return graydonCompanyId; - } - - /** - * Sets the value of the graydonCompanyId property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setGraydonCompanyId(BigInteger value) { - this.graydonCompanyId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditVatNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditVatNumberResponseType.java deleted file mode 100644 index 2af9c3a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonCreditVatNumberResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for graydonCreditVatNumberResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="graydonCreditVatNumberResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}GraydonCreditReportVatNumber"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "graydonCreditVatNumberResponseType", propOrder = { - -}) -public class GraydonCreditVatNumberResponseType { - - @XmlElement(required = true) - protected GraydonCreditReportVatNumber out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link GraydonCreditReportVatNumber } - * - */ - public GraydonCreditReportVatNumber getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link GraydonCreditReportVatNumber } - * - */ - public void setOut(GraydonCreditReportVatNumber value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonReference.java deleted file mode 100644 index 6b70680..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonReference.java +++ /dev/null @@ -1,331 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GraydonReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GraydonReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="company_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="company_id_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_no" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="house_no_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="residence" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country_iso2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GraydonReference", propOrder = { - -}) -public class GraydonReference { - - @XmlElement(name = "company_id", required = true) - protected String companyId; - @XmlElement(name = "company_id_type", required = true) - protected String companyIdType; - @XmlElement(name = "trade_name", required = true) - protected String tradeName; - @XmlElement(required = true) - protected String street; - @XmlElement(name = "house_no") - protected int houseNo; - @XmlElement(name = "house_no_addition", required = true) - protected String houseNoAddition; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String residence; - @XmlElement(name = "country_iso2", required = true) - protected String countryIso2; - @XmlElement(required = true) - protected String url; - @XmlElement(required = true) - protected String email; - - /** - * Gets the value of the companyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyId() { - return companyId; - } - - /** - * Sets the value of the companyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyId(String value) { - this.companyId = value; - } - - /** - * Gets the value of the companyIdType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyIdType() { - return companyIdType; - } - - /** - * Sets the value of the companyIdType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyIdType(String value) { - this.companyIdType = value; - } - - /** - * Gets the value of the tradeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName() { - return tradeName; - } - - /** - * Sets the value of the tradeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName(String value) { - this.tradeName = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNo property. - * - */ - public int getHouseNo() { - return houseNo; - } - - /** - * Sets the value of the houseNo property. - * - */ - public void setHouseNo(int value) { - this.houseNo = value; - } - - /** - * Gets the value of the houseNoAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNoAddition() { - return houseNoAddition; - } - - /** - * Sets the value of the houseNoAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNoAddition(String value) { - this.houseNoAddition = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the residence property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResidence() { - return residence; - } - - /** - * Sets the value of the residence property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResidence(String value) { - this.residence = value; - } - - /** - * Gets the value of the countryIso2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryIso2() { - return countryIso2; - } - - /** - * Sets the value of the countryIso2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryIso2(String value) { - this.countryIso2 = value; - } - - /** - * Gets the value of the url property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Sets the value of the url property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Gets the value of the email property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmail() { - return email; - } - - /** - * Sets the value of the email property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmail(String value) { - this.email = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonReferenceArray.java deleted file mode 100644 index e2db4d4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/GraydonReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GraydonReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GraydonReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}GraydonReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GraydonReferenceArray", propOrder = { - "item" -}) -public class GraydonReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GraydonReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/HeaderAuthenticateType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/HeaderAuthenticateType.java deleted file mode 100644 index 8d02e21..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/HeaderAuthenticateType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for HeaderAuthenticateType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="HeaderAuthenticateType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="reactid" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HeaderAuthenticateType", propOrder = { - -}) -public class HeaderAuthenticateType { - - @XmlElement(required = true) - protected String reactid; - - /** - * Gets the value of the reactid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReactid() { - return reactid; - } - - /** - * Sets the value of the reactid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReactid(String value) { - this.reactid = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/HeaderLoginType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/HeaderLoginType.java deleted file mode 100644 index 8e9cfa8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/HeaderLoginType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for HeaderLoginType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="HeaderLoginType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="username" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HeaderLoginType", propOrder = { - -}) -public class HeaderLoginType { - - @XmlElement(required = true) - protected String username; - @XmlElement(required = true) - protected String password; - - /** - * Gets the value of the username property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUsername() { - return username; - } - - /** - * Sets the value of the username property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUsername(String value) { - this.username = value; - } - - /** - * Gets the value of the password property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPassword() { - return password; - } - - /** - * Sets the value of the password property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPassword(String value) { - this.password = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddress.java deleted file mode 100644 index 7a08fa0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddress.java +++ /dev/null @@ -1,257 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for InsolvencyAddress complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyAddress">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="start_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyAddress", propOrder = { - -}) -public class InsolvencyAddress { - - protected String street; - @XmlElement(name = "house_number") - protected BigInteger houseNumber; - protected String addition; - protected String postcode; - protected String city; - @XmlElement(name = "phone_number") - protected String phoneNumber; - protected String type; - @XmlElement(name = "start_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar startDate; - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNumber property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setHouseNumber(BigInteger value) { - this.houseNumber = value; - } - - /** - * Gets the value of the addition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddition() { - return addition; - } - - /** - * Sets the value of the addition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddition(String value) { - this.addition = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the phoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPhoneNumber() { - return phoneNumber; - } - - /** - * Sets the value of the phoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPhoneNumber(String value) { - this.phoneNumber = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStartDate(XMLGregorianCalendar value) { - this.startDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddressArray.java deleted file mode 100644 index d6c10cf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddressArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InsolvencyAddressArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyAddressArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}InsolvencyAddress" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyAddressArray", propOrder = { - "item" -}) -public class InsolvencyAddressArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link InsolvencyAddress } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddresses.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddresses.java deleted file mode 100644 index 15575f7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAddresses.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InsolvencyAddresses complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyAddresses">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="hidden" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="address" type="{http://www.webservices.nl/soap/}InsolvencyAddressArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyAddresses", propOrder = { - -}) -public class InsolvencyAddresses { - - protected Boolean hidden; - protected InsolvencyAddressArray address; - - /** - * Gets the value of the hidden property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isHidden() { - return hidden; - } - - /** - * Sets the value of the hidden property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setHidden(Boolean value) { - this.hidden = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link InsolvencyAddressArray } - * - */ - public InsolvencyAddressArray getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link InsolvencyAddressArray } - * - */ - public void setAddress(InsolvencyAddressArray value) { - this.address = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAffectedCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAffectedCompany.java deleted file mode 100644 index ca2eebd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAffectedCompany.java +++ /dev/null @@ -1,176 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InsolvencyAffectedCompany complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyAffectedCompany">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="coc_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="coc_registered_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="addresses" type="{http://www.webservices.nl/soap/}InsolvencyAddresses" minOccurs="0"/>
- *         <element name="is_former" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyAffectedCompany", propOrder = { - -}) -public class InsolvencyAffectedCompany { - - @XmlElement(name = "trade_name", required = true) - protected String tradeName; - @XmlElement(name = "coc_number") - protected String cocNumber; - @XmlElement(name = "coc_registered_city") - protected String cocRegisteredCity; - protected InsolvencyAddresses addresses; - @XmlElement(name = "is_former") - protected Boolean isFormer; - - /** - * Gets the value of the tradeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName() { - return tradeName; - } - - /** - * Sets the value of the tradeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName(String value) { - this.tradeName = value; - } - - /** - * Gets the value of the cocNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCocNumber() { - return cocNumber; - } - - /** - * Sets the value of the cocNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCocNumber(String value) { - this.cocNumber = value; - } - - /** - * Gets the value of the cocRegisteredCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCocRegisteredCity() { - return cocRegisteredCity; - } - - /** - * Sets the value of the cocRegisteredCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCocRegisteredCity(String value) { - this.cocRegisteredCity = value; - } - - /** - * Gets the value of the addresses property. - * - * @return - * possible object is - * {@link InsolvencyAddresses } - * - */ - public InsolvencyAddresses getAddresses() { - return addresses; - } - - /** - * Sets the value of the addresses property. - * - * @param value - * allowed object is - * {@link InsolvencyAddresses } - * - */ - public void setAddresses(InsolvencyAddresses value) { - this.addresses = value; - } - - /** - * Gets the value of the isFormer property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIsFormer() { - return isFormer; - } - - /** - * Sets the value of the isFormer property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIsFormer(Boolean value) { - this.isFormer = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAffectedCompanyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAffectedCompanyArray.java deleted file mode 100644 index 59e3442..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyAffectedCompanyArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InsolvencyAffectedCompanyArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyAffectedCompanyArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}InsolvencyAffectedCompany" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyAffectedCompanyArray", propOrder = { - "item" -}) -public class InsolvencyAffectedCompanyArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link InsolvencyAffectedCompany } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCase.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCase.java deleted file mode 100644 index a597b2f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCase.java +++ /dev/null @@ -1,438 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for InsolvencyCase complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyCase">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="insolvency_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="magistrate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="previous_insolvency_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="previous_magistrate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="is_pre_hgk_published" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="pre_hgk_insolvency_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="dept_restructuring_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="removal_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="legal_subject" type="{http://www.webservices.nl/soap/}InsolvencyLegalSubject"/>
- *         <element name="treating_authority" type="{http://www.webservices.nl/soap/}InsolvencyTreatingAuthority"/>
- *         <element name="curators" type="{http://www.webservices.nl/soap/}InsolvencyCurators" minOccurs="0"/>
- *         <element name="receivers" type="{http://www.webservices.nl/soap/}InsolvencyReceivers" minOccurs="0"/>
- *         <element name="events" type="{http://www.webservices.nl/soap/}InsolvencyPublications"/>
- *         <element name="reports" type="{http://www.webservices.nl/soap/}InsolvencyReportArray" minOccurs="0"/>
- *         <element name="affected_companies" type="{http://www.webservices.nl/soap/}InsolvencyAffectedCompanyArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyCase", propOrder = { - -}) -public class InsolvencyCase { - - @XmlElement(name = "insolvency_id", required = true) - protected String insolvencyId; - protected String magistrate; - @XmlElement(name = "previous_insolvency_id") - protected String previousInsolvencyId; - @XmlElement(name = "previous_magistrate") - protected String previousMagistrate; - @XmlElement(name = "is_pre_hgk_published") - protected boolean isPreHgkPublished; - @XmlElement(name = "pre_hgk_insolvency_id") - protected String preHgkInsolvencyId; - @XmlElement(name = "dept_restructuring_number") - protected String deptRestructuringNumber; - @XmlElement(name = "removal_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar removalDate; - @XmlElement(name = "legal_subject", required = true) - protected InsolvencyLegalSubject legalSubject; - @XmlElement(name = "treating_authority", required = true) - protected InsolvencyTreatingAuthority treatingAuthority; - protected InsolvencyCurators curators; - protected InsolvencyReceivers receivers; - @XmlElement(required = true) - protected InsolvencyPublications events; - protected InsolvencyReportArray reports; - @XmlElement(name = "affected_companies") - protected InsolvencyAffectedCompanyArray affectedCompanies; - - /** - * Gets the value of the insolvencyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInsolvencyId() { - return insolvencyId; - } - - /** - * Sets the value of the insolvencyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInsolvencyId(String value) { - this.insolvencyId = value; - } - - /** - * Gets the value of the magistrate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMagistrate() { - return magistrate; - } - - /** - * Sets the value of the magistrate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMagistrate(String value) { - this.magistrate = value; - } - - /** - * Gets the value of the previousInsolvencyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPreviousInsolvencyId() { - return previousInsolvencyId; - } - - /** - * Sets the value of the previousInsolvencyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPreviousInsolvencyId(String value) { - this.previousInsolvencyId = value; - } - - /** - * Gets the value of the previousMagistrate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPreviousMagistrate() { - return previousMagistrate; - } - - /** - * Sets the value of the previousMagistrate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPreviousMagistrate(String value) { - this.previousMagistrate = value; - } - - /** - * Gets the value of the isPreHgkPublished property. - * - */ - public boolean isIsPreHgkPublished() { - return isPreHgkPublished; - } - - /** - * Sets the value of the isPreHgkPublished property. - * - */ - public void setIsPreHgkPublished(boolean value) { - this.isPreHgkPublished = value; - } - - /** - * Gets the value of the preHgkInsolvencyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPreHgkInsolvencyId() { - return preHgkInsolvencyId; - } - - /** - * Sets the value of the preHgkInsolvencyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPreHgkInsolvencyId(String value) { - this.preHgkInsolvencyId = value; - } - - /** - * Gets the value of the deptRestructuringNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeptRestructuringNumber() { - return deptRestructuringNumber; - } - - /** - * Sets the value of the deptRestructuringNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeptRestructuringNumber(String value) { - this.deptRestructuringNumber = value; - } - - /** - * Gets the value of the removalDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getRemovalDate() { - return removalDate; - } - - /** - * Sets the value of the removalDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setRemovalDate(XMLGregorianCalendar value) { - this.removalDate = value; - } - - /** - * Gets the value of the legalSubject property. - * - * @return - * possible object is - * {@link InsolvencyLegalSubject } - * - */ - public InsolvencyLegalSubject getLegalSubject() { - return legalSubject; - } - - /** - * Sets the value of the legalSubject property. - * - * @param value - * allowed object is - * {@link InsolvencyLegalSubject } - * - */ - public void setLegalSubject(InsolvencyLegalSubject value) { - this.legalSubject = value; - } - - /** - * Gets the value of the treatingAuthority property. - * - * @return - * possible object is - * {@link InsolvencyTreatingAuthority } - * - */ - public InsolvencyTreatingAuthority getTreatingAuthority() { - return treatingAuthority; - } - - /** - * Sets the value of the treatingAuthority property. - * - * @param value - * allowed object is - * {@link InsolvencyTreatingAuthority } - * - */ - public void setTreatingAuthority(InsolvencyTreatingAuthority value) { - this.treatingAuthority = value; - } - - /** - * Gets the value of the curators property. - * - * @return - * possible object is - * {@link InsolvencyCurators } - * - */ - public InsolvencyCurators getCurators() { - return curators; - } - - /** - * Sets the value of the curators property. - * - * @param value - * allowed object is - * {@link InsolvencyCurators } - * - */ - public void setCurators(InsolvencyCurators value) { - this.curators = value; - } - - /** - * Gets the value of the receivers property. - * - * @return - * possible object is - * {@link InsolvencyReceivers } - * - */ - public InsolvencyReceivers getReceivers() { - return receivers; - } - - /** - * Sets the value of the receivers property. - * - * @param value - * allowed object is - * {@link InsolvencyReceivers } - * - */ - public void setReceivers(InsolvencyReceivers value) { - this.receivers = value; - } - - /** - * Gets the value of the events property. - * - * @return - * possible object is - * {@link InsolvencyPublications } - * - */ - public InsolvencyPublications getEvents() { - return events; - } - - /** - * Sets the value of the events property. - * - * @param value - * allowed object is - * {@link InsolvencyPublications } - * - */ - public void setEvents(InsolvencyPublications value) { - this.events = value; - } - - /** - * Gets the value of the reports property. - * - * @return - * possible object is - * {@link InsolvencyReportArray } - * - */ - public InsolvencyReportArray getReports() { - return reports; - } - - /** - * Sets the value of the reports property. - * - * @param value - * allowed object is - * {@link InsolvencyReportArray } - * - */ - public void setReports(InsolvencyReportArray value) { - this.reports = value; - } - - /** - * Gets the value of the affectedCompanies property. - * - * @return - * possible object is - * {@link InsolvencyAffectedCompanyArray } - * - */ - public InsolvencyAffectedCompanyArray getAffectedCompanies() { - return affectedCompanies; - } - - /** - * Sets the value of the affectedCompanies property. - * - * @param value - * allowed object is - * {@link InsolvencyAffectedCompanyArray } - * - */ - public void setAffectedCompanies(InsolvencyAffectedCompanyArray value) { - this.affectedCompanies = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyConcernedPerson.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyConcernedPerson.java deleted file mode 100644 index 8c381cc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyConcernedPerson.java +++ /dev/null @@ -1,286 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for InsolvencyConcernedPerson complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyConcernedPerson">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="addresses" type="{http://www.webservices.nl/soap/}InsolvencyAddresses" minOccurs="0"/>
- *         <element name="birth_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="birth_city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="birth_country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="deceased_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyConcernedPerson", propOrder = { - -}) -public class InsolvencyConcernedPerson { - - @XmlElement(name = "first_name") - protected String firstName; - protected String initials; - protected String prefix; - @XmlElement(name = "last_name", required = true) - protected String lastName; - protected InsolvencyAddresses addresses; - @XmlElement(name = "birth_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar birthDate; - @XmlElement(name = "birth_city") - protected String birthCity; - @XmlElement(name = "birth_country") - protected String birthCountry; - @XmlElement(name = "deceased_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar deceasedDate; - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the initials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInitials() { - return initials; - } - - /** - * Sets the value of the initials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInitials(String value) { - this.initials = value; - } - - /** - * Gets the value of the prefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrefix() { - return prefix; - } - - /** - * Sets the value of the prefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrefix(String value) { - this.prefix = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the addresses property. - * - * @return - * possible object is - * {@link InsolvencyAddresses } - * - */ - public InsolvencyAddresses getAddresses() { - return addresses; - } - - /** - * Sets the value of the addresses property. - * - * @param value - * allowed object is - * {@link InsolvencyAddresses } - * - */ - public void setAddresses(InsolvencyAddresses value) { - this.addresses = value; - } - - /** - * Gets the value of the birthDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBirthDate() { - return birthDate; - } - - /** - * Sets the value of the birthDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBirthDate(XMLGregorianCalendar value) { - this.birthDate = value; - } - - /** - * Gets the value of the birthCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBirthCity() { - return birthCity; - } - - /** - * Sets the value of the birthCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBirthCity(String value) { - this.birthCity = value; - } - - /** - * Gets the value of the birthCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBirthCountry() { - return birthCountry; - } - - /** - * Sets the value of the birthCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBirthCountry(String value) { - this.birthCountry = value; - } - - /** - * Gets the value of the deceasedDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDeceasedDate() { - return deceasedDate; - } - - /** - * Sets the value of the deceasedDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDeceasedDate(XMLGregorianCalendar value) { - this.deceasedDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCourtSession.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCourtSession.java deleted file mode 100644 index 16decd1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCourtSession.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InsolvencyCourtSession complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyCourtSession">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyCourtSession", propOrder = { - -}) -public class InsolvencyCourtSession { - - @XmlElement(required = true) - protected String street; - @XmlElement(name = "house_number", required = true) - protected BigInteger houseNumber; - protected String addition; - @XmlElement(required = true) - protected String city; - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNumber property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setHouseNumber(BigInteger value) { - this.houseNumber = value; - } - - /** - * Gets the value of the addition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddition() { - return addition; - } - - /** - * Sets the value of the addition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddition(String value) { - this.addition = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCurators.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCurators.java deleted file mode 100644 index e24a820..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyCurators.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InsolvencyCurators complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyCurators">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="curator" type="{http://www.webservices.nl/soap/}InsolvencyLegalPerformingPersonArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyCurators", propOrder = { - -}) -public class InsolvencyCurators { - - @XmlElement(required = true) - protected InsolvencyLegalPerformingPersonArray curator; - - /** - * Gets the value of the curator property. - * - * @return - * possible object is - * {@link InsolvencyLegalPerformingPersonArray } - * - */ - public InsolvencyLegalPerformingPersonArray getCurator() { - return curator; - } - - /** - * Sets the value of the curator property. - * - * @param value - * allowed object is - * {@link InsolvencyLegalPerformingPersonArray } - * - */ - public void setCurator(InsolvencyLegalPerformingPersonArray value) { - this.curator = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyGetCaseByPublicationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyGetCaseByPublicationRequestType.java deleted file mode 100644 index 131e978..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyGetCaseByPublicationRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for insolvencyGetCaseByPublicationRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="insolvencyGetCaseByPublicationRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="publication_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "insolvencyGetCaseByPublicationRequestType", propOrder = { - -}) -public class InsolvencyGetCaseByPublicationRequestType { - - @XmlElement(name = "publication_id", required = true) - protected String publicationId; - - /** - * Gets the value of the publicationId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPublicationId() { - return publicationId; - } - - /** - * Sets the value of the publicationId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPublicationId(String value) { - this.publicationId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyGetCaseByPublicationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyGetCaseByPublicationResponseType.java deleted file mode 100644 index cd17d65..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyGetCaseByPublicationResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for insolvencyGetCaseByPublicationResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="insolvencyGetCaseByPublicationResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}InsolvencyCase"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "insolvencyGetCaseByPublicationResponseType", propOrder = { - -}) -public class InsolvencyGetCaseByPublicationResponseType { - - @XmlElement(required = true) - protected InsolvencyCase out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link InsolvencyCase } - * - */ - public InsolvencyCase getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link InsolvencyCase } - * - */ - public void setOut(InsolvencyCase value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalPerformingPerson.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalPerformingPerson.java deleted file mode 100644 index 6cadfc7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalPerformingPerson.java +++ /dev/null @@ -1,232 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for InsolvencyLegalPerformingPerson complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyLegalPerformingPerson">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="titles" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_info" type="{http://www.webservices.nl/soap/}InsolvencyAddress"/>
- *         <element name="start_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="end_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyLegalPerformingPerson", propOrder = { - -}) -public class InsolvencyLegalPerformingPerson { - - protected String titles; - protected String initials; - protected String prefix; - @XmlElement(name = "last_name", required = true) - protected String lastName; - @XmlElement(name = "contact_info", required = true) - protected InsolvencyAddress contactInfo; - @XmlElement(name = "start_date", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar startDate; - @XmlElement(name = "end_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar endDate; - - /** - * Gets the value of the titles property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTitles() { - return titles; - } - - /** - * Sets the value of the titles property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTitles(String value) { - this.titles = value; - } - - /** - * Gets the value of the initials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInitials() { - return initials; - } - - /** - * Sets the value of the initials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInitials(String value) { - this.initials = value; - } - - /** - * Gets the value of the prefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrefix() { - return prefix; - } - - /** - * Sets the value of the prefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrefix(String value) { - this.prefix = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the contactInfo property. - * - * @return - * possible object is - * {@link InsolvencyAddress } - * - */ - public InsolvencyAddress getContactInfo() { - return contactInfo; - } - - /** - * Sets the value of the contactInfo property. - * - * @param value - * allowed object is - * {@link InsolvencyAddress } - * - */ - public void setContactInfo(InsolvencyAddress value) { - this.contactInfo = value; - } - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setStartDate(XMLGregorianCalendar value) { - this.startDate = value; - } - - /** - * Gets the value of the endDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEndDate() { - return endDate; - } - - /** - * Sets the value of the endDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEndDate(XMLGregorianCalendar value) { - this.endDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalPerformingPersonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalPerformingPersonArray.java deleted file mode 100644 index 1bb372c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalPerformingPersonArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InsolvencyLegalPerformingPersonArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyLegalPerformingPersonArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}InsolvencyLegalPerformingPerson" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyLegalPerformingPersonArray", propOrder = { - "item" -}) -public class InsolvencyLegalPerformingPersonArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link InsolvencyLegalPerformingPerson } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalSubject.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalSubject.java deleted file mode 100644 index 7122077..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyLegalSubject.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InsolvencyLegalSubject complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyLegalSubject">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="natural_person" type="{http://www.webservices.nl/soap/}InsolvencyConcernedPerson" minOccurs="0"/>
- *         <element name="legal_entity" type="{http://www.webservices.nl/soap/}InsolvencyAffectedCompany" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyLegalSubject", propOrder = { - -}) -public class InsolvencyLegalSubject { - - @XmlElement(name = "natural_person") - protected InsolvencyConcernedPerson naturalPerson; - @XmlElement(name = "legal_entity") - protected InsolvencyAffectedCompany legalEntity; - - /** - * Gets the value of the naturalPerson property. - * - * @return - * possible object is - * {@link InsolvencyConcernedPerson } - * - */ - public InsolvencyConcernedPerson getNaturalPerson() { - return naturalPerson; - } - - /** - * Sets the value of the naturalPerson property. - * - * @param value - * allowed object is - * {@link InsolvencyConcernedPerson } - * - */ - public void setNaturalPerson(InsolvencyConcernedPerson value) { - this.naturalPerson = value; - } - - /** - * Gets the value of the legalEntity property. - * - * @return - * possible object is - * {@link InsolvencyAffectedCompany } - * - */ - public InsolvencyAffectedCompany getLegalEntity() { - return legalEntity; - } - - /** - * Sets the value of the legalEntity property. - * - * @param value - * allowed object is - * {@link InsolvencyAffectedCompany } - * - */ - public void setLegalEntity(InsolvencyAffectedCompany value) { - this.legalEntity = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublication.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublication.java deleted file mode 100644 index 87bd3ed..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublication.java +++ /dev/null @@ -1,208 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for InsolvencyPublication complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyPublication">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="publication_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="authority_code" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="court_session" type="{http://www.webservices.nl/soap/}InsolvencyCourtSession" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyPublication", propOrder = { - -}) -public class InsolvencyPublication { - - @XmlElement(name = "publication_id", required = true) - protected String publicationId; - @XmlElement(required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar date; - @XmlElement(required = true) - protected String description; - @XmlElement(required = true) - protected String code; - @XmlElement(name = "authority_code", required = true) - protected BigInteger authorityCode; - @XmlElement(name = "court_session") - protected InsolvencyCourtSession courtSession; - - /** - * Gets the value of the publicationId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPublicationId() { - return publicationId; - } - - /** - * Sets the value of the publicationId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPublicationId(String value) { - this.publicationId = value; - } - - /** - * Gets the value of the date property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Sets the value of the date property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - - /** - * Gets the value of the authorityCode property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAuthorityCode() { - return authorityCode; - } - - /** - * Sets the value of the authorityCode property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAuthorityCode(BigInteger value) { - this.authorityCode = value; - } - - /** - * Gets the value of the courtSession property. - * - * @return - * possible object is - * {@link InsolvencyCourtSession } - * - */ - public InsolvencyCourtSession getCourtSession() { - return courtSession; - } - - /** - * Sets the value of the courtSession property. - * - * @param value - * allowed object is - * {@link InsolvencyCourtSession } - * - */ - public void setCourtSession(InsolvencyCourtSession value) { - this.courtSession = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublicationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublicationArray.java deleted file mode 100644 index fc94ad6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublicationArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InsolvencyPublicationArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyPublicationArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}InsolvencyPublication" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyPublicationArray", propOrder = { - "item" -}) -public class InsolvencyPublicationArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link InsolvencyPublication } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublicationList.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublicationList.java deleted file mode 100644 index 74c74bc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublicationList.java +++ /dev/null @@ -1,99 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for InsolvencyPublicationList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyPublicationList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="publications" type="{http://www.webservices.nl/soap/}stringArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyPublicationList", propOrder = { - -}) -public class InsolvencyPublicationList { - - @XmlElement(required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar date; - @XmlElement(required = true) - protected StringArray publications; - - /** - * Gets the value of the date property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Sets the value of the date property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the publications property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getPublications() { - return publications; - } - - /** - * Sets the value of the publications property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setPublications(StringArray value) { - this.publications = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublications.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublications.java deleted file mode 100644 index 7e14311..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyPublications.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InsolvencyPublications complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyPublications">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="is_legacy" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="event" type="{http://www.webservices.nl/soap/}InsolvencyPublicationArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyPublications", propOrder = { - -}) -public class InsolvencyPublications { - - @XmlElement(name = "is_legacy") - protected boolean isLegacy; - @XmlElement(required = true) - protected InsolvencyPublicationArray event; - - /** - * Gets the value of the isLegacy property. - * - */ - public boolean isIsLegacy() { - return isLegacy; - } - - /** - * Sets the value of the isLegacy property. - * - */ - public void setIsLegacy(boolean value) { - this.isLegacy = value; - } - - /** - * Gets the value of the event property. - * - * @return - * possible object is - * {@link InsolvencyPublicationArray } - * - */ - public InsolvencyPublicationArray getEvent() { - return event; - } - - /** - * Sets the value of the event property. - * - * @param value - * allowed object is - * {@link InsolvencyPublicationArray } - * - */ - public void setEvent(InsolvencyPublicationArray value) { - this.event = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReceivers.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReceivers.java deleted file mode 100644 index ae60ea5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReceivers.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InsolvencyReceivers complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyReceivers">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="receiver" type="{http://www.webservices.nl/soap/}InsolvencyLegalPerformingPersonArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyReceivers", propOrder = { - -}) -public class InsolvencyReceivers { - - @XmlElement(required = true) - protected InsolvencyLegalPerformingPersonArray receiver; - - /** - * Gets the value of the receiver property. - * - * @return - * possible object is - * {@link InsolvencyLegalPerformingPersonArray } - * - */ - public InsolvencyLegalPerformingPersonArray getReceiver() { - return receiver; - } - - /** - * Sets the value of the receiver property. - * - * @param value - * allowed object is - * {@link InsolvencyLegalPerformingPersonArray } - * - */ - public void setReceiver(InsolvencyLegalPerformingPersonArray value) { - this.receiver = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReport.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReport.java deleted file mode 100644 index e557225..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReport.java +++ /dev/null @@ -1,145 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for InsolvencyReport complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyReport">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="report_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="is_final" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyReport", propOrder = { - -}) -public class InsolvencyReport { - - @XmlElement(name = "report_id", required = true) - protected String reportId; - @XmlElement(required = true) - protected String title; - @XmlElement(required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar date; - @XmlElement(name = "is_final") - protected boolean isFinal; - - /** - * Gets the value of the reportId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReportId() { - return reportId; - } - - /** - * Sets the value of the reportId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReportId(String value) { - this.reportId = value; - } - - /** - * Gets the value of the title property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTitle() { - return title; - } - - /** - * Sets the value of the title property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTitle(String value) { - this.title = value; - } - - /** - * Gets the value of the date property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Sets the value of the date property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the isFinal property. - * - */ - public boolean isIsFinal() { - return isFinal; - } - - /** - * Sets the value of the isFinal property. - * - */ - public void setIsFinal(boolean value) { - this.isFinal = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReportArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReportArray.java deleted file mode 100644 index 71c709f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyReportArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InsolvencyReportArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyReportArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}InsolvencyReport" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyReportArray", propOrder = { - "item" -}) -public class InsolvencyReportArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link InsolvencyReport } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByCoCNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByCoCNumberRequestType.java deleted file mode 100644 index a464567..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByCoCNumberRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for insolvencySearchPublicationsByCoCNumberRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="insolvencySearchPublicationsByCoCNumberRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="coc_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "insolvencySearchPublicationsByCoCNumberRequestType", propOrder = { - -}) -public class InsolvencySearchPublicationsByCoCNumberRequestType { - - @XmlElement(name = "coc_number", required = true) - protected String cocNumber; - - /** - * Gets the value of the cocNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCocNumber() { - return cocNumber; - } - - /** - * Sets the value of the cocNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCocNumber(String value) { - this.cocNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByCoCNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByCoCNumberResponseType.java deleted file mode 100644 index d28fd9b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByCoCNumberResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for insolvencySearchPublicationsByCoCNumberResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="insolvencySearchPublicationsByCoCNumberResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}InsolvencyPublicationList"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "insolvencySearchPublicationsByCoCNumberResponseType", propOrder = { - -}) -public class InsolvencySearchPublicationsByCoCNumberResponseType { - - @XmlElement(required = true) - protected InsolvencyPublicationList out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link InsolvencyPublicationList } - * - */ - public InsolvencyPublicationList getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link InsolvencyPublicationList } - * - */ - public void setOut(InsolvencyPublicationList value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByPersonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByPersonRequestType.java deleted file mode 100644 index 5aa66b4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByPersonRequestType.java +++ /dev/null @@ -1,172 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for insolvencySearchPublicationsByPersonRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="insolvencySearchPublicationsByPersonRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="birth_date" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "insolvencySearchPublicationsByPersonRequestType", propOrder = { - -}) -public class InsolvencySearchPublicationsByPersonRequestType { - - @XmlElement(name = "last_name", required = true) - protected String lastName; - @XmlElement(required = true) - protected String prefix; - @XmlElement(name = "birth_date", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar birthDate; - @XmlElement(required = true) - protected String postcode; - @XmlElement(name = "house_number") - protected int houseNumber; - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the prefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrefix() { - return prefix; - } - - /** - * Sets the value of the prefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrefix(String value) { - this.prefix = value; - } - - /** - * Gets the value of the birthDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBirthDate() { - return birthDate; - } - - /** - * Sets the value of the birthDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBirthDate(XMLGregorianCalendar value) { - this.birthDate = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the houseNumber property. - * - */ - public int getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - */ - public void setHouseNumber(int value) { - this.houseNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByPersonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByPersonResponseType.java deleted file mode 100644 index 0c8eb75..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencySearchPublicationsByPersonResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for insolvencySearchPublicationsByPersonResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="insolvencySearchPublicationsByPersonResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}InsolvencyPublicationList"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "insolvencySearchPublicationsByPersonResponseType", propOrder = { - -}) -public class InsolvencySearchPublicationsByPersonResponseType { - - @XmlElement(required = true) - protected InsolvencyPublicationList out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link InsolvencyPublicationList } - * - */ - public InsolvencyPublicationList getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link InsolvencyPublicationList } - * - */ - public void setOut(InsolvencyPublicationList value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyTreatingAuthority.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyTreatingAuthority.java deleted file mode 100644 index eb120c3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InsolvencyTreatingAuthority.java +++ /dev/null @@ -1,151 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InsolvencyTreatingAuthority complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InsolvencyTreatingAuthority">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_code" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="establishment_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InsolvencyTreatingAuthority", propOrder = { - -}) -public class InsolvencyTreatingAuthority { - - @XmlElement(required = true) - protected BigInteger code; - @XmlElement(required = true) - protected String name; - @XmlElement(name = "establishment_code", required = true) - protected BigInteger establishmentCode; - @XmlElement(name = "establishment_name", required = true) - protected String establishmentName; - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setCode(BigInteger value) { - this.code = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the establishmentCode property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getEstablishmentCode() { - return establishmentCode; - } - - /** - * Sets the value of the establishmentCode property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setEstablishmentCode(BigInteger value) { - this.establishmentCode = value; - } - - /** - * Gets the value of the establishmentName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentName() { - return establishmentName; - } - - /** - * Sets the value of the establishmentName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentName(String value) { - this.establishmentName = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/IntArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/IntArray.java deleted file mode 100644 index 78e83ec..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/IntArray.java +++ /dev/null @@ -1,76 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for intArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="intArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "intArray", propOrder = { - "item" -}) -public class IntArray { - - @XmlElement(type = Integer.class) - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Integer } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/International.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/International.java deleted file mode 100644 index 3988ef8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/International.java +++ /dev/null @@ -1,249 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for International complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="International">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="matchrate" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="housenr" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="pobox" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="locality" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "International", propOrder = { - -}) -public class International { - - protected float matchrate; - @XmlElement(required = true) - protected String street; - @XmlElement(required = true) - protected String housenr; - @XmlElement(required = true) - protected String pobox; - @XmlElement(required = true) - protected String locality; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String province; - @XmlElement(required = true) - protected String country; - - /** - * Gets the value of the matchrate property. - * - */ - public float getMatchrate() { - return matchrate; - } - - /** - * Sets the value of the matchrate property. - * - */ - public void setMatchrate(float value) { - this.matchrate = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the housenr property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHousenr() { - return housenr; - } - - /** - * Sets the value of the housenr property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHousenr(String value) { - this.housenr = value; - } - - /** - * Gets the value of the pobox property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPobox() { - return pobox; - } - - /** - * Sets the value of the pobox property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPobox(String value) { - this.pobox = value; - } - - /** - * Gets the value of the locality property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocality() { - return locality; - } - - /** - * Sets the value of the locality property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocality(String value) { - this.locality = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchInteractiveRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchInteractiveRequestType.java deleted file mode 100644 index bcc2a45..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchInteractiveRequestType.java +++ /dev/null @@ -1,339 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for internationalAddressSearchInteractiveRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="internationalAddressSearchInteractiveRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="organization" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="building" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="housenr" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="pobox" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="locality" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country_format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "internationalAddressSearchInteractiveRequestType", propOrder = { - -}) -public class InternationalAddressSearchInteractiveRequestType { - - @XmlElement(required = true) - protected String organization; - @XmlElement(required = true) - protected String building; - @XmlElement(required = true) - protected String street; - @XmlElement(required = true) - protected String housenr; - @XmlElement(required = true) - protected String pobox; - @XmlElement(required = true) - protected String locality; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String province; - @XmlElement(required = true) - protected String country; - @XmlElement(required = true) - protected String language; - @XmlElement(name = "country_format", required = true) - protected String countryFormat; - - /** - * Gets the value of the organization property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrganization() { - return organization; - } - - /** - * Sets the value of the organization property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrganization(String value) { - this.organization = value; - } - - /** - * Gets the value of the building property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBuilding() { - return building; - } - - /** - * Sets the value of the building property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBuilding(String value) { - this.building = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the housenr property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHousenr() { - return housenr; - } - - /** - * Sets the value of the housenr property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHousenr(String value) { - this.housenr = value; - } - - /** - * Gets the value of the pobox property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPobox() { - return pobox; - } - - /** - * Sets the value of the pobox property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPobox(String value) { - this.pobox = value; - } - - /** - * Gets the value of the locality property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocality() { - return locality; - } - - /** - * Sets the value of the locality property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocality(String value) { - this.locality = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the countryFormat property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryFormat() { - return countryFormat; - } - - /** - * Sets the value of the countryFormat property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryFormat(String value) { - this.countryFormat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchInteractiveResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchInteractiveResponseType.java deleted file mode 100644 index ae5b924..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchInteractiveResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for internationalAddressSearchInteractiveResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="internationalAddressSearchInteractiveResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}InternationalAddressSearchV2Result"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "internationalAddressSearchInteractiveResponseType", propOrder = { - -}) -public class InternationalAddressSearchInteractiveResponseType { - - @XmlElement(required = true) - protected InternationalAddressSearchV2Result out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link InternationalAddressSearchV2Result } - * - */ - public InternationalAddressSearchV2Result getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link InternationalAddressSearchV2Result } - * - */ - public void setOut(InternationalAddressSearchV2Result value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2RequestType.java deleted file mode 100644 index 9b0c088..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2RequestType.java +++ /dev/null @@ -1,339 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for internationalAddressSearchV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="internationalAddressSearchV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="organization" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="building" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="housenr" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="pobox" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="locality" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country_format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "internationalAddressSearchV2RequestType", propOrder = { - -}) -public class InternationalAddressSearchV2RequestType { - - @XmlElement(required = true) - protected String organization; - @XmlElement(required = true) - protected String building; - @XmlElement(required = true) - protected String street; - @XmlElement(required = true) - protected String housenr; - @XmlElement(required = true) - protected String pobox; - @XmlElement(required = true) - protected String locality; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String province; - @XmlElement(required = true) - protected String country; - @XmlElement(required = true) - protected String language; - @XmlElement(name = "country_format", required = true) - protected String countryFormat; - - /** - * Gets the value of the organization property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrganization() { - return organization; - } - - /** - * Sets the value of the organization property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrganization(String value) { - this.organization = value; - } - - /** - * Gets the value of the building property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBuilding() { - return building; - } - - /** - * Sets the value of the building property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBuilding(String value) { - this.building = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the housenr property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHousenr() { - return housenr; - } - - /** - * Sets the value of the housenr property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHousenr(String value) { - this.housenr = value; - } - - /** - * Gets the value of the pobox property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPobox() { - return pobox; - } - - /** - * Sets the value of the pobox property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPobox(String value) { - this.pobox = value; - } - - /** - * Gets the value of the locality property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocality() { - return locality; - } - - /** - * Sets the value of the locality property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocality(String value) { - this.locality = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the countryFormat property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryFormat() { - return countryFormat; - } - - /** - * Sets the value of the countryFormat property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryFormat(String value) { - this.countryFormat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2ResponseType.java deleted file mode 100644 index 5f43a51..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for internationalAddressSearchV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="internationalAddressSearchV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}InternationalAddressSearchV2Result"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "internationalAddressSearchV2ResponseType", propOrder = { - -}) -public class InternationalAddressSearchV2ResponseType { - - @XmlElement(required = true) - protected InternationalAddressSearchV2Result out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link InternationalAddressSearchV2Result } - * - */ - public InternationalAddressSearchV2Result getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link InternationalAddressSearchV2Result } - * - */ - public void setOut(InternationalAddressSearchV2Result value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2Result.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2Result.java deleted file mode 100644 index bd04881..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalAddressSearchV2Result.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InternationalAddressSearchV2Result complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InternationalAddressSearchV2Result">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="validation_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="result" type="{http://www.webservices.nl/soap/}InternationalV2Array"/>
- *         <element name="country_iso3" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InternationalAddressSearchV2Result", propOrder = { - -}) -public class InternationalAddressSearchV2Result { - - @XmlElement(name = "validation_status", required = true) - protected String validationStatus; - @XmlElement(required = true) - protected InternationalV2Array result; - @XmlElement(name = "country_iso3", required = true) - protected String countryIso3; - - /** - * Gets the value of the validationStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValidationStatus() { - return validationStatus; - } - - /** - * Sets the value of the validationStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValidationStatus(String value) { - this.validationStatus = value; - } - - /** - * Gets the value of the result property. - * - * @return - * possible object is - * {@link InternationalV2Array } - * - */ - public InternationalV2Array getResult() { - return result; - } - - /** - * Sets the value of the result property. - * - * @param value - * allowed object is - * {@link InternationalV2Array } - * - */ - public void setResult(InternationalV2Array value) { - this.result = value; - } - - /** - * Gets the value of the countryIso3 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryIso3() { - return countryIso3; - } - - /** - * Sets the value of the countryIso3 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryIso3(String value) { - this.countryIso3 = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalArray.java deleted file mode 100644 index 7c61d24..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InternationalArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InternationalArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}International" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InternationalArray", propOrder = { - "item" -}) -public class InternationalArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link International } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddress.java deleted file mode 100644 index addcaa7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddress.java +++ /dev/null @@ -1,438 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InternationalFormattedAddress complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InternationalFormattedAddress">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="matchrate" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="housenr" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="pobox" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="locality" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="countryspecific_locality" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="delivery_address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="formatted_address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="organization" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="department" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="building" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InternationalFormattedAddress", propOrder = { - -}) -public class InternationalFormattedAddress { - - protected float matchrate; - @XmlElement(required = true) - protected String street; - @XmlElement(required = true) - protected String housenr; - @XmlElement(required = true) - protected String pobox; - @XmlElement(required = true) - protected String locality; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String province; - @XmlElement(required = true) - protected String country; - @XmlElement(name = "countryspecific_locality", required = true) - protected String countryspecificLocality; - @XmlElement(name = "delivery_address", required = true) - protected String deliveryAddress; - @XmlElement(name = "formatted_address", required = true) - protected String formattedAddress; - @XmlElement(required = true) - protected String organization; - @XmlElement(required = true) - protected String department; - @XmlElement(required = true) - protected String contact; - @XmlElement(required = true) - protected String building; - - /** - * Gets the value of the matchrate property. - * - */ - public float getMatchrate() { - return matchrate; - } - - /** - * Sets the value of the matchrate property. - * - */ - public void setMatchrate(float value) { - this.matchrate = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the housenr property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHousenr() { - return housenr; - } - - /** - * Sets the value of the housenr property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHousenr(String value) { - this.housenr = value; - } - - /** - * Gets the value of the pobox property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPobox() { - return pobox; - } - - /** - * Sets the value of the pobox property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPobox(String value) { - this.pobox = value; - } - - /** - * Gets the value of the locality property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocality() { - return locality; - } - - /** - * Sets the value of the locality property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocality(String value) { - this.locality = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the countryspecificLocality property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryspecificLocality() { - return countryspecificLocality; - } - - /** - * Sets the value of the countryspecificLocality property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryspecificLocality(String value) { - this.countryspecificLocality = value; - } - - /** - * Gets the value of the deliveryAddress property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeliveryAddress() { - return deliveryAddress; - } - - /** - * Sets the value of the deliveryAddress property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeliveryAddress(String value) { - this.deliveryAddress = value; - } - - /** - * Gets the value of the formattedAddress property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormattedAddress() { - return formattedAddress; - } - - /** - * Sets the value of the formattedAddress property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormattedAddress(String value) { - this.formattedAddress = value; - } - - /** - * Gets the value of the organization property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOrganization() { - return organization; - } - - /** - * Sets the value of the organization property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOrganization(String value) { - this.organization = value; - } - - /** - * Gets the value of the department property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDepartment() { - return department; - } - - /** - * Sets the value of the department property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDepartment(String value) { - this.department = value; - } - - /** - * Gets the value of the contact property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContact() { - return contact; - } - - /** - * Sets the value of the contact property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContact(String value) { - this.contact = value; - } - - /** - * Gets the value of the building property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBuilding() { - return building; - } - - /** - * Sets the value of the building property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBuilding(String value) { - this.building = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddressArray.java deleted file mode 100644 index cc6a39c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddressArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InternationalFormattedAddressArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InternationalFormattedAddressArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}InternationalFormattedAddress" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InternationalFormattedAddressArray", propOrder = { - "item" -}) -public class InternationalFormattedAddressArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link InternationalFormattedAddress } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddressPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddressPagedResult.java deleted file mode 100644 index 540e177..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalFormattedAddressPagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InternationalFormattedAddressPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InternationalFormattedAddressPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}InternationalFormattedAddressArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InternationalFormattedAddressPagedResult", propOrder = { - -}) -public class InternationalFormattedAddressPagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected InternationalFormattedAddressArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link InternationalFormattedAddressArray } - * - */ - public InternationalFormattedAddressArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link InternationalFormattedAddressArray } - * - */ - public void setResults(InternationalFormattedAddressArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalPagedResult.java deleted file mode 100644 index 7dff45d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalPagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InternationalPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InternationalPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}InternationalArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InternationalPagedResult", propOrder = { - -}) -public class InternationalPagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected InternationalArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link InternationalArray } - * - */ - public InternationalArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link InternationalArray } - * - */ - public void setResults(InternationalArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalV2.java deleted file mode 100644 index e025689..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalV2.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InternationalV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InternationalV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.webservices.nl/soap/}InternationalFormattedAddress"/>
- *         <element name="element_match_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="element_result_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InternationalV2", propOrder = { - -}) -public class InternationalV2 { - - @XmlElement(required = true) - protected InternationalFormattedAddress address; - @XmlElement(name = "element_match_status", required = true) - protected String elementMatchStatus; - @XmlElement(name = "element_result_status", required = true) - protected String elementResultStatus; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link InternationalFormattedAddress } - * - */ - public InternationalFormattedAddress getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link InternationalFormattedAddress } - * - */ - public void setAddress(InternationalFormattedAddress value) { - this.address = value; - } - - /** - * Gets the value of the elementMatchStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getElementMatchStatus() { - return elementMatchStatus; - } - - /** - * Sets the value of the elementMatchStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setElementMatchStatus(String value) { - this.elementMatchStatus = value; - } - - /** - * Gets the value of the elementResultStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getElementResultStatus() { - return elementResultStatus; - } - - /** - * Sets the value of the elementResultStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setElementResultStatus(String value) { - this.elementResultStatus = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalV2Array.java deleted file mode 100644 index 1aceb95..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/InternationalV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for InternationalV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InternationalV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}InternationalV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InternationalV2Array", propOrder = { - "item" -}) -public class InternationalV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link InternationalV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterAddressCoordinatesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterAddressCoordinatesRequestType.java deleted file mode 100644 index 2e61a46..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterAddressCoordinatesRequestType.java +++ /dev/null @@ -1,168 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterAddressCoordinatesRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterAddressCoordinatesRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="houseno" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="housenoaddition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterAddressCoordinatesRequestType", propOrder = { - -}) -public class KadasterAddressCoordinatesRequestType { - - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String street; - protected int houseno; - @XmlElement(required = true) - protected String housenoaddition; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseno property. - * - */ - public int getHouseno() { - return houseno; - } - - /** - * Sets the value of the houseno property. - * - */ - public void setHouseno(int value) { - this.houseno = value; - } - - /** - * Gets the value of the housenoaddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHousenoaddition() { - return housenoaddition; - } - - /** - * Sets the value of the housenoaddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHousenoaddition(String value) { - this.housenoaddition = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterAddressCoordinatesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterAddressCoordinatesResponseType.java deleted file mode 100644 index 5a8848e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterAddressCoordinatesResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterAddressCoordinatesResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterAddressCoordinatesResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="coordinates" type="{http://www.webservices.nl/soap/}KadasterCoordinates"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterAddressCoordinatesResponseType", propOrder = { - -}) -public class KadasterAddressCoordinatesResponseType { - - @XmlElement(required = true) - protected KadasterCoordinates coordinates; - - /** - * Gets the value of the coordinates property. - * - * @return - * possible object is - * {@link KadasterCoordinates } - * - */ - public KadasterCoordinates getCoordinates() { - return coordinates; - } - - /** - * Sets the value of the coordinates property. - * - * @param value - * allowed object is - * {@link KadasterCoordinates } - * - */ - public void setCoordinates(KadasterCoordinates value) { - this.coordinates = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBedrag.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBedrag.java deleted file mode 100644 index 61487d1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBedrag.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterBedrag complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterBedrag">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="valuta" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="bedrag" type="{http://www.w3.org/2001/XMLSchema}long"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterBedrag", propOrder = { - -}) -public class KadasterBedrag { - - @XmlElement(required = true) - protected String valuta; - protected long bedrag; - - /** - * Gets the value of the valuta property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValuta() { - return valuta; - } - - /** - * Sets the value of the valuta property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValuta(String value) { - this.valuta = value; - } - - /** - * Gets the value of the bedrag property. - * - */ - public long getBedrag() { - return bedrag; - } - - /** - * Sets the value of the bedrag property. - * - */ - public void setBedrag(long value) { - this.bedrag = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBeknoptOnroerendeZaak.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBeknoptOnroerendeZaak.java deleted file mode 100644 index f55a01b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBeknoptOnroerendeZaak.java +++ /dev/null @@ -1,284 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigDecimal; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterBeknoptOnroerendeZaak complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterBeknoptOnroerendeZaak">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="kadastrale_aanduiding" type="{http://www.webservices.nl/soap/}KadastraleAanduiding"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="voorlopige_aantekening" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="meerdere_splitsingen" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="gerechtigde" type="{http://www.webservices.nl/soap/}kadasterPersoon" minOccurs="0"/>
- *         <element name="onverwerkte_documenten" type="{http://www.webservices.nl/soap/}kadasterHypotheekStukLijst" minOccurs="0"/>
- *         <element name="grootte" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
- *         <element name="vastgestelde_grootte" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterBeknoptOnroerendeZaak", propOrder = { - -}) -public class KadasterBeknoptOnroerendeZaak { - - @XmlElement(name = "object_id", required = true) - protected String objectId; - @XmlElement(name = "kadastrale_aanduiding", required = true) - protected KadastraleAanduiding kadastraleAanduiding; - @XmlElement(required = true) - protected String type; - @XmlElement(name = "voorlopige_aantekening") - protected Boolean voorlopigeAantekening; - @XmlElement(name = "meerdere_splitsingen") - protected Boolean meerdereSplitsingen; - protected KadasterPersoon gerechtigde; - @XmlElement(name = "onverwerkte_documenten") - protected KadasterHypotheekStukLijst onverwerkteDocumenten; - protected BigDecimal grootte; - @XmlElement(name = "vastgestelde_grootte") - protected Boolean vastgesteldeGrootte; - - /** - * Gets the value of the objectId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjectId() { - return objectId; - } - - /** - * Sets the value of the objectId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjectId(String value) { - this.objectId = value; - } - - /** - * Gets the value of the kadastraleAanduiding property. - * - * @return - * possible object is - * {@link KadastraleAanduiding } - * - */ - public KadastraleAanduiding getKadastraleAanduiding() { - return kadastraleAanduiding; - } - - /** - * Sets the value of the kadastraleAanduiding property. - * - * @param value - * allowed object is - * {@link KadastraleAanduiding } - * - */ - public void setKadastraleAanduiding(KadastraleAanduiding value) { - this.kadastraleAanduiding = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the voorlopigeAantekening property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isVoorlopigeAantekening() { - return voorlopigeAantekening; - } - - /** - * Sets the value of the voorlopigeAantekening property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setVoorlopigeAantekening(Boolean value) { - this.voorlopigeAantekening = value; - } - - /** - * Gets the value of the meerdereSplitsingen property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isMeerdereSplitsingen() { - return meerdereSplitsingen; - } - - /** - * Sets the value of the meerdereSplitsingen property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setMeerdereSplitsingen(Boolean value) { - this.meerdereSplitsingen = value; - } - - /** - * Gets the value of the gerechtigde property. - * - * @return - * possible object is - * {@link KadasterPersoon } - * - */ - public KadasterPersoon getGerechtigde() { - return gerechtigde; - } - - /** - * Sets the value of the gerechtigde property. - * - * @param value - * allowed object is - * {@link KadasterPersoon } - * - */ - public void setGerechtigde(KadasterPersoon value) { - this.gerechtigde = value; - } - - /** - * Gets the value of the onverwerkteDocumenten property. - * - * @return - * possible object is - * {@link KadasterHypotheekStukLijst } - * - */ - public KadasterHypotheekStukLijst getOnverwerkteDocumenten() { - return onverwerkteDocumenten; - } - - /** - * Sets the value of the onverwerkteDocumenten property. - * - * @param value - * allowed object is - * {@link KadasterHypotheekStukLijst } - * - */ - public void setOnverwerkteDocumenten(KadasterHypotheekStukLijst value) { - this.onverwerkteDocumenten = value; - } - - /** - * Gets the value of the grootte property. - * - * @return - * possible object is - * {@link BigDecimal } - * - */ - public BigDecimal getGrootte() { - return grootte; - } - - /** - * Sets the value of the grootte property. - * - * @param value - * allowed object is - * {@link BigDecimal } - * - */ - public void setGrootte(BigDecimal value) { - this.grootte = value; - } - - /** - * Gets the value of the vastgesteldeGrootte property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isVastgesteldeGrootte() { - return vastgesteldeGrootte; - } - - /** - * Sets the value of the vastgesteldeGrootte property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setVastgesteldeGrootte(Boolean value) { - this.vastgesteldeGrootte = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBeknoptOnroerendeZaakArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBeknoptOnroerendeZaakArray.java deleted file mode 100644 index d5ce7ff..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBeknoptOnroerendeZaakArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterBeknoptOnroerendeZaakArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterBeknoptOnroerendeZaakArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterBeknoptOnroerendeZaak" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterBeknoptOnroerendeZaakArray", propOrder = { - "item" -}) -public class KadasterBeknoptOnroerendeZaakArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterBeknoptOnroerendeZaak } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBerichtObjectDocument.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBerichtObjectDocument.java deleted file mode 100644 index 168345e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBerichtObjectDocument.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterBerichtObjectDocument complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterBerichtObjectDocument">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="afbeeldingen" type="{http://www.webservices.nl/soap/}base64BinaryArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterBerichtObjectDocument", propOrder = { - -}) -public class KadasterBerichtObjectDocument { - - @XmlElement(required = true) - protected byte[] document; - protected Base64BinaryArray afbeeldingen; - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - - /** - * Gets the value of the afbeeldingen property. - * - * @return - * possible object is - * {@link Base64BinaryArray } - * - */ - public Base64BinaryArray getAfbeeldingen() { - return afbeeldingen; - } - - /** - * Sets the value of the afbeeldingen property. - * - * @param value - * allowed object is - * {@link Base64BinaryArray } - * - */ - public void setAfbeeldingen(Base64BinaryArray value) { - this.afbeeldingen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocument.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocument.java deleted file mode 100644 index fdb4280..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocument.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterBronDocument complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterBronDocument">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="images" type="{http://www.webservices.nl/soap/}base64BinaryArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterBronDocument", propOrder = { - -}) -public class KadasterBronDocument { - - @XmlElement(required = true) - protected byte[] document; - protected Base64BinaryArray images; - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - - /** - * Gets the value of the images property. - * - * @return - * possible object is - * {@link Base64BinaryArray } - * - */ - public Base64BinaryArray getImages() { - return images; - } - - /** - * Sets the value of the images property. - * - * @param value - * allowed object is - * {@link Base64BinaryArray } - * - */ - public void setImages(Base64BinaryArray value) { - this.images = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocumentRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocumentRequestType.java deleted file mode 100644 index af348d4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocumentRequestType.java +++ /dev/null @@ -1,177 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterBronDocumentRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterBronDocumentRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="aanduiding_soort_register" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="deel" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="nummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="reeks" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterBronDocumentRequestType", propOrder = { - -}) -public class KadasterBronDocumentRequestType { - - @XmlElement(name = "aanduiding_soort_register", required = true) - protected String aanduidingSoortRegister; - @XmlElement(required = true) - protected String deel; - @XmlElement(required = true) - protected String nummer; - @XmlElement(required = true) - protected String reeks; - @XmlElement(required = true) - protected String format; - - /** - * Gets the value of the aanduidingSoortRegister property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAanduidingSoortRegister() { - return aanduidingSoortRegister; - } - - /** - * Sets the value of the aanduidingSoortRegister property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAanduidingSoortRegister(String value) { - this.aanduidingSoortRegister = value; - } - - /** - * Gets the value of the deel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeel() { - return deel; - } - - /** - * Sets the value of the deel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeel(String value) { - this.deel = value; - } - - /** - * Gets the value of the nummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNummer() { - return nummer; - } - - /** - * Sets the value of the nummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNummer(String value) { - this.nummer = value; - } - - /** - * Gets the value of the reeks property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReeks() { - return reeks; - } - - /** - * Sets the value of the reeks property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReeks(String value) { - this.reeks = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocumentResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocumentResponseType.java deleted file mode 100644 index b2352f6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterBronDocumentResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterBronDocumentResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterBronDocumentResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bron_document" type="{http://www.webservices.nl/soap/}KadasterBronDocument"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterBronDocumentResponseType", propOrder = { - -}) -public class KadasterBronDocumentResponseType { - - @XmlElement(name = "bron_document", required = true) - protected KadasterBronDocument bronDocument; - - /** - * Gets the value of the bronDocument property. - * - * @return - * possible object is - * {@link KadasterBronDocument } - * - */ - public KadasterBronDocument getBronDocument() { - return bronDocument; - } - - /** - * Sets the value of the bronDocument property. - * - * @param value - * allowed object is - * {@link KadasterBronDocument } - * - */ - public void setBronDocument(KadasterBronDocument value) { - this.bronDocument = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterCoordinates.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterCoordinates.java deleted file mode 100644 index 36fe521..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterCoordinates.java +++ /dev/null @@ -1,133 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterCoordinates complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterCoordinates">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="within_structure" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterCoordinates", propOrder = { - -}) -public class KadasterCoordinates { - - protected int x; - protected int y; - protected float latitude; - protected float longitude; - @XmlElement(name = "within_structure") - protected boolean withinStructure; - - /** - * Gets the value of the x property. - * - */ - public int getX() { - return x; - } - - /** - * Sets the value of the x property. - * - */ - public void setX(int value) { - this.x = value; - } - - /** - * Gets the value of the y property. - * - */ - public int getY() { - return y; - } - - /** - * Sets the value of the y property. - * - */ - public void setY(int value) { - this.y = value; - } - - /** - * Gets the value of the latitude property. - * - */ - public float getLatitude() { - return latitude; - } - - /** - * Sets the value of the latitude property. - * - */ - public void setLatitude(float value) { - this.latitude = value; - } - - /** - * Gets the value of the longitude property. - * - */ - public float getLongitude() { - return longitude; - } - - /** - * Sets the value of the longitude property. - * - */ - public void setLongitude(float value) { - this.longitude = value; - } - - /** - * Gets the value of the withinStructure property. - * - */ - public boolean isWithinStructure() { - return withinStructure; - } - - /** - * Sets the value of the withinStructure property. - * - */ - public void setWithinStructure(boolean value) { - this.withinStructure = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuze.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuze.java deleted file mode 100644 index 9e33b71..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuze.java +++ /dev/null @@ -1,145 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterDomicilieKeuze complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterDomicilieKeuze">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="voorletters" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="voorvoegsels" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="achternaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="adres" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterDomicilieKeuze", propOrder = { - -}) -public class KadasterDomicilieKeuze { - - protected String voorletters; - protected String voorvoegsels; - protected String achternaam; - protected String adres; - - /** - * Gets the value of the voorletters property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVoorletters() { - return voorletters; - } - - /** - * Sets the value of the voorletters property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVoorletters(String value) { - this.voorletters = value; - } - - /** - * Gets the value of the voorvoegsels property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVoorvoegsels() { - return voorvoegsels; - } - - /** - * Sets the value of the voorvoegsels property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVoorvoegsels(String value) { - this.voorvoegsels = value; - } - - /** - * Gets the value of the achternaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAchternaam() { - return achternaam; - } - - /** - * Sets the value of the achternaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAchternaam(String value) { - this.achternaam = value; - } - - /** - * Gets the value of the adres property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAdres() { - return adres; - } - - /** - * Sets the value of the adres property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAdres(String value) { - this.adres = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuzeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuzeArray.java deleted file mode 100644 index 2c84a5f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuzeArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterDomicilieKeuzeArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterDomicilieKeuzeArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterDomicilieKeuze" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterDomicilieKeuzeArray", propOrder = { - "item" -}) -public class KadasterDomicilieKeuzeArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterDomicilieKeuze } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuzeLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuzeLijst.java deleted file mode 100644 index 4a167c1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterDomicilieKeuzeLijst.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterDomicilieKeuzeLijst complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterDomicilieKeuzeLijst">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="domicilie_keuzes" type="{http://www.webservices.nl/soap/}kadasterDomicilieKeuzeArray"/>
- *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterDomicilieKeuzeLijst", propOrder = { - -}) -public class KadasterDomicilieKeuzeLijst { - - @XmlElement(name = "domicilie_keuzes", required = true) - protected KadasterDomicilieKeuzeArray domicilieKeuzes; - @XmlElement(name = "indicatie_compleet") - protected Boolean indicatieCompleet; - - /** - * Gets the value of the domicilieKeuzes property. - * - * @return - * possible object is - * {@link KadasterDomicilieKeuzeArray } - * - */ - public KadasterDomicilieKeuzeArray getDomicilieKeuzes() { - return domicilieKeuzes; - } - - /** - * Sets the value of the domicilieKeuzes property. - * - * @param value - * allowed object is - * {@link KadasterDomicilieKeuzeArray } - * - */ - public void setDomicilieKeuzes(KadasterDomicilieKeuzeArray value) { - this.domicilieKeuzes = value; - } - - /** - * Gets the value of the indicatieCompleet property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicatieCompleet() { - return indicatieCompleet; - } - - /** - * Sets the value of the indicatieCompleet property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicatieCompleet(Boolean value) { - this.indicatieCompleet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPerceelRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPerceelRequestType.java deleted file mode 100644 index 14081a3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPerceelRequestType.java +++ /dev/null @@ -1,231 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterEigendomsBerichtDocumentPerceelRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterEigendomsBerichtDocumentPerceelRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterEigendomsBerichtDocumentPerceelRequestType", propOrder = { - -}) -public class KadasterEigendomsBerichtDocumentPerceelRequestType { - - @XmlElement(required = true) - protected String gemeentecode; - @XmlElement(required = true) - protected String gemeentenaam; - @XmlElement(required = true) - protected String sectie; - @XmlElement(required = true) - protected String perceelnummer; - @XmlElement(required = true) - protected String relatiecode; - @XmlElement(required = true) - protected String volgnummer; - @XmlElement(required = true) - protected String format; - - /** - * Gets the value of the gemeentecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentecode() { - return gemeentecode; - } - - /** - * Sets the value of the gemeentecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentecode(String value) { - this.gemeentecode = value; - } - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the sectie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectie() { - return sectie; - } - - /** - * Sets the value of the sectie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectie(String value) { - this.sectie = value; - } - - /** - * Gets the value of the perceelnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPerceelnummer(String value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the relatiecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRelatiecode() { - return relatiecode; - } - - /** - * Sets the value of the relatiecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRelatiecode(String value) { - this.relatiecode = value; - } - - /** - * Gets the value of the volgnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVolgnummer() { - return volgnummer; - } - - /** - * Sets the value of the volgnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVolgnummer(String value) { - this.volgnummer = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPerceelResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPerceelResponseType.java deleted file mode 100644 index c07f410..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPerceelResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterEigendomsBerichtDocumentPerceelResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterEigendomsBerichtDocumentPerceelResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="berichtobjectresultaat" type="{http://www.webservices.nl/soap/}BerichtObjectDocumentResultaat"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterEigendomsBerichtDocumentPerceelResponseType", propOrder = { - -}) -public class KadasterEigendomsBerichtDocumentPerceelResponseType { - - @XmlElement(required = true) - protected BerichtObjectDocumentResultaat berichtobjectresultaat; - - /** - * Gets the value of the berichtobjectresultaat property. - * - * @return - * possible object is - * {@link BerichtObjectDocumentResultaat } - * - */ - public BerichtObjectDocumentResultaat getBerichtobjectresultaat() { - return berichtobjectresultaat; - } - - /** - * Sets the value of the berichtobjectresultaat property. - * - * @param value - * allowed object is - * {@link BerichtObjectDocumentResultaat } - * - */ - public void setBerichtobjectresultaat(BerichtObjectDocumentResultaat value) { - this.berichtobjectresultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPostcodeRequestType.java deleted file mode 100644 index 15e5491..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPostcodeRequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterEigendomsBerichtDocumentPostcodeRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterEigendomsBerichtDocumentPostcodeRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterEigendomsBerichtDocumentPostcodeRequestType", propOrder = { - -}) -public class KadasterEigendomsBerichtDocumentPostcodeRequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - @XmlElement(required = true) - protected String format; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPostcodeResponseType.java deleted file mode 100644 index 5cfa3bb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtDocumentPostcodeResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterEigendomsBerichtDocumentPostcodeResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterEigendomsBerichtDocumentPostcodeResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="berichtobjectresultaat" type="{http://www.webservices.nl/soap/}BerichtObjectDocumentResultaat"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterEigendomsBerichtDocumentPostcodeResponseType", propOrder = { - -}) -public class KadasterEigendomsBerichtDocumentPostcodeResponseType { - - @XmlElement(required = true) - protected BerichtObjectDocumentResultaat berichtobjectresultaat; - - /** - * Gets the value of the berichtobjectresultaat property. - * - * @return - * possible object is - * {@link BerichtObjectDocumentResultaat } - * - */ - public BerichtObjectDocumentResultaat getBerichtobjectresultaat() { - return berichtobjectresultaat; - } - - /** - * Sets the value of the berichtobjectresultaat property. - * - * @param value - * allowed object is - * {@link BerichtObjectDocumentResultaat } - * - */ - public void setBerichtobjectresultaat(BerichtObjectDocumentResultaat value) { - this.berichtobjectresultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelRequestType.java deleted file mode 100644 index eccf91d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelRequestType.java +++ /dev/null @@ -1,204 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterEigendomsBerichtPerceelRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterEigendomsBerichtPerceelRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterEigendomsBerichtPerceelRequestType", propOrder = { - -}) -public class KadasterEigendomsBerichtPerceelRequestType { - - @XmlElement(required = true) - protected String gemeentecode; - @XmlElement(required = true) - protected String gemeentenaam; - @XmlElement(required = true) - protected String sectie; - @XmlElement(required = true) - protected String perceelnummer; - @XmlElement(required = true) - protected String relatiecode; - @XmlElement(required = true) - protected String volgnummer; - - /** - * Gets the value of the gemeentecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentecode() { - return gemeentecode; - } - - /** - * Sets the value of the gemeentecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentecode(String value) { - this.gemeentecode = value; - } - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the sectie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectie() { - return sectie; - } - - /** - * Sets the value of the sectie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectie(String value) { - this.sectie = value; - } - - /** - * Gets the value of the perceelnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPerceelnummer(String value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the relatiecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRelatiecode() { - return relatiecode; - } - - /** - * Sets the value of the relatiecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRelatiecode(String value) { - this.relatiecode = value; - } - - /** - * Gets the value of the volgnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVolgnummer() { - return volgnummer; - } - - /** - * Sets the value of the volgnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVolgnummer(String value) { - this.volgnummer = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelResponseType.java deleted file mode 100644 index e7cac97..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterEigendomsBerichtPerceelResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterEigendomsBerichtPerceelResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="berichtobjectresultaat" type="{http://www.webservices.nl/soap/}BerichtObjectResultaat"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterEigendomsBerichtPerceelResponseType", propOrder = { - -}) -public class KadasterEigendomsBerichtPerceelResponseType { - - @XmlElement(required = true) - protected BerichtObjectResultaat berichtobjectresultaat; - - /** - * Gets the value of the berichtobjectresultaat property. - * - * @return - * possible object is - * {@link BerichtObjectResultaat } - * - */ - public BerichtObjectResultaat getBerichtobjectresultaat() { - return berichtobjectresultaat; - } - - /** - * Sets the value of the berichtobjectresultaat property. - * - * @param value - * allowed object is - * {@link BerichtObjectResultaat } - * - */ - public void setBerichtobjectresultaat(BerichtObjectResultaat value) { - this.berichtobjectresultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelV2RequestType.java deleted file mode 100644 index 8e89b5d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelV2RequestType.java +++ /dev/null @@ -1,204 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterEigendomsBerichtPerceelV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterEigendomsBerichtPerceelV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterEigendomsBerichtPerceelV2RequestType", propOrder = { - -}) -public class KadasterEigendomsBerichtPerceelV2RequestType { - - @XmlElement(required = true) - protected String gemeentecode; - @XmlElement(required = true) - protected String gemeentenaam; - @XmlElement(required = true) - protected String sectie; - @XmlElement(required = true) - protected String perceelnummer; - @XmlElement(required = true) - protected String relatiecode; - @XmlElement(required = true) - protected String volgnummer; - - /** - * Gets the value of the gemeentecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentecode() { - return gemeentecode; - } - - /** - * Sets the value of the gemeentecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentecode(String value) { - this.gemeentecode = value; - } - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the sectie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectie() { - return sectie; - } - - /** - * Sets the value of the sectie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectie(String value) { - this.sectie = value; - } - - /** - * Gets the value of the perceelnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPerceelnummer(String value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the relatiecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRelatiecode() { - return relatiecode; - } - - /** - * Sets the value of the relatiecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRelatiecode(String value) { - this.relatiecode = value; - } - - /** - * Gets the value of the volgnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVolgnummer() { - return volgnummer; - } - - /** - * Sets the value of the volgnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVolgnummer(String value) { - this.volgnummer = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelV2ResponseType.java deleted file mode 100644 index dc6ee2b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPerceelV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterEigendomsBerichtPerceelV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterEigendomsBerichtPerceelV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="berichtobjectresultaat" type="{http://www.webservices.nl/soap/}BerichtObjectResultaatV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterEigendomsBerichtPerceelV2ResponseType", propOrder = { - -}) -public class KadasterEigendomsBerichtPerceelV2ResponseType { - - @XmlElement(required = true) - protected BerichtObjectResultaatV2 berichtobjectresultaat; - - /** - * Gets the value of the berichtobjectresultaat property. - * - * @return - * possible object is - * {@link BerichtObjectResultaatV2 } - * - */ - public BerichtObjectResultaatV2 getBerichtobjectresultaat() { - return berichtobjectresultaat; - } - - /** - * Sets the value of the berichtobjectresultaat property. - * - * @param value - * allowed object is - * {@link BerichtObjectResultaatV2 } - * - */ - public void setBerichtobjectresultaat(BerichtObjectResultaatV2 value) { - this.berichtobjectresultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeRequestType.java deleted file mode 100644 index 318ea89..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeRequestType.java +++ /dev/null @@ -1,114 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterEigendomsBerichtPostcodeRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterEigendomsBerichtPostcodeRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterEigendomsBerichtPostcodeRequestType", propOrder = { - -}) -public class KadasterEigendomsBerichtPostcodeRequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeResponseType.java deleted file mode 100644 index 27c08df..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterEigendomsBerichtPostcodeResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterEigendomsBerichtPostcodeResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="berichtobjectresultaat" type="{http://www.webservices.nl/soap/}BerichtObjectResultaat"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterEigendomsBerichtPostcodeResponseType", propOrder = { - -}) -public class KadasterEigendomsBerichtPostcodeResponseType { - - @XmlElement(required = true) - protected BerichtObjectResultaat berichtobjectresultaat; - - /** - * Gets the value of the berichtobjectresultaat property. - * - * @return - * possible object is - * {@link BerichtObjectResultaat } - * - */ - public BerichtObjectResultaat getBerichtobjectresultaat() { - return berichtobjectresultaat; - } - - /** - * Sets the value of the berichtobjectresultaat property. - * - * @param value - * allowed object is - * {@link BerichtObjectResultaat } - * - */ - public void setBerichtobjectresultaat(BerichtObjectResultaat value) { - this.berichtobjectresultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeV2RequestType.java deleted file mode 100644 index 44ec7c2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeV2RequestType.java +++ /dev/null @@ -1,114 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterEigendomsBerichtPostcodeV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterEigendomsBerichtPostcodeV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterEigendomsBerichtPostcodeV2RequestType", propOrder = { - -}) -public class KadasterEigendomsBerichtPostcodeV2RequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeV2ResponseType.java deleted file mode 100644 index b119475..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterEigendomsBerichtPostcodeV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterEigendomsBerichtPostcodeV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterEigendomsBerichtPostcodeV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="berichtobjectresultaat" type="{http://www.webservices.nl/soap/}BerichtObjectResultaatV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterEigendomsBerichtPostcodeV2ResponseType", propOrder = { - -}) -public class KadasterEigendomsBerichtPostcodeV2ResponseType { - - @XmlElement(required = true) - protected BerichtObjectResultaatV2 berichtobjectresultaat; - - /** - * Gets the value of the berichtobjectresultaat property. - * - * @return - * possible object is - * {@link BerichtObjectResultaatV2 } - * - */ - public BerichtObjectResultaatV2 getBerichtobjectresultaat() { - return berichtobjectresultaat; - } - - /** - * Sets the value of the berichtobjectresultaat property. - * - * @param value - * allowed object is - * {@link BerichtObjectResultaatV2 } - * - */ - public void setBerichtobjectresultaat(BerichtObjectResultaatV2 value) { - this.berichtobjectresultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterGerelateerdStukdeel.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterGerelateerdStukdeel.java deleted file mode 100644 index dd2071a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterGerelateerdStukdeel.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterGerelateerdStukdeel complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterGerelateerdStukdeel">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="aard_stukdeel_omschrijving" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="stuk" type="{http://www.webservices.nl/soap/}Stuk" minOccurs="0"/>
- *         <element name="gefiatteerd" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterGerelateerdStukdeel", propOrder = { - -}) -public class KadasterGerelateerdStukdeel { - - @XmlElement(name = "aard_stukdeel_omschrijving", required = true) - protected String aardStukdeelOmschrijving; - protected Stuk stuk; - protected Boolean gefiatteerd; - - /** - * Gets the value of the aardStukdeelOmschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAardStukdeelOmschrijving() { - return aardStukdeelOmschrijving; - } - - /** - * Sets the value of the aardStukdeelOmschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAardStukdeelOmschrijving(String value) { - this.aardStukdeelOmschrijving = value; - } - - /** - * Gets the value of the stuk property. - * - * @return - * possible object is - * {@link Stuk } - * - */ - public Stuk getStuk() { - return stuk; - } - - /** - * Sets the value of the stuk property. - * - * @param value - * allowed object is - * {@link Stuk } - * - */ - public void setStuk(Stuk value) { - this.stuk = value; - } - - /** - * Gets the value of the gefiatteerd property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isGefiatteerd() { - return gefiatteerd; - } - - /** - * Sets the value of the gefiatteerd property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setGefiatteerd(Boolean value) { - this.gefiatteerd = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterGerelateerdStukdeelArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterGerelateerdStukdeelArray.java deleted file mode 100644 index 1da36a9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterGerelateerdStukdeelArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterGerelateerdStukdeelArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterGerelateerdStukdeelArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterGerelateerdStukdeel" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterGerelateerdStukdeelArray", propOrder = { - "item" -}) -public class KadasterGerelateerdStukdeelArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterGerelateerdStukdeel } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtObject.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtObject.java deleted file mode 100644 index 9dde85f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtObject.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypothecairBerichtObject complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypothecairBerichtObject">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="datum_bijgewerkt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="onroerende_zaak" type="{http://www.webservices.nl/soap/}kadasterBeknoptOnroerendeZaak"/>
- *         <element name="hypotheek_stuk_lijst" type="{http://www.webservices.nl/soap/}kadasterHypotheekStukLijst"/>
- *         <element name="hypothecair_document" type="{http://www.webservices.nl/soap/}kadasterBerichtObjectDocument" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypothecairBerichtObject", propOrder = { - -}) -public class KadasterHypothecairBerichtObject { - - @XmlElement(name = "datum_bijgewerkt", required = true) - protected String datumBijgewerkt; - @XmlElement(name = "onroerende_zaak", required = true) - protected KadasterBeknoptOnroerendeZaak onroerendeZaak; - @XmlElement(name = "hypotheek_stuk_lijst", required = true) - protected KadasterHypotheekStukLijst hypotheekStukLijst; - @XmlElement(name = "hypothecair_document") - protected KadasterBerichtObjectDocument hypothecairDocument; - - /** - * Gets the value of the datumBijgewerkt property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDatumBijgewerkt() { - return datumBijgewerkt; - } - - /** - * Sets the value of the datumBijgewerkt property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDatumBijgewerkt(String value) { - this.datumBijgewerkt = value; - } - - /** - * Gets the value of the onroerendeZaak property. - * - * @return - * possible object is - * {@link KadasterBeknoptOnroerendeZaak } - * - */ - public KadasterBeknoptOnroerendeZaak getOnroerendeZaak() { - return onroerendeZaak; - } - - /** - * Sets the value of the onroerendeZaak property. - * - * @param value - * allowed object is - * {@link KadasterBeknoptOnroerendeZaak } - * - */ - public void setOnroerendeZaak(KadasterBeknoptOnroerendeZaak value) { - this.onroerendeZaak = value; - } - - /** - * Gets the value of the hypotheekStukLijst property. - * - * @return - * possible object is - * {@link KadasterHypotheekStukLijst } - * - */ - public KadasterHypotheekStukLijst getHypotheekStukLijst() { - return hypotheekStukLijst; - } - - /** - * Sets the value of the hypotheekStukLijst property. - * - * @param value - * allowed object is - * {@link KadasterHypotheekStukLijst } - * - */ - public void setHypotheekStukLijst(KadasterHypotheekStukLijst value) { - this.hypotheekStukLijst = value; - } - - /** - * Gets the value of the hypothecairDocument property. - * - * @return - * possible object is - * {@link KadasterBerichtObjectDocument } - * - */ - public KadasterBerichtObjectDocument getHypothecairDocument() { - return hypothecairDocument; - } - - /** - * Sets the value of the hypothecairDocument property. - * - * @param value - * allowed object is - * {@link KadasterBerichtObjectDocument } - * - */ - public void setHypothecairDocument(KadasterBerichtObjectDocument value) { - this.hypothecairDocument = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelRequestType.java deleted file mode 100644 index 9212f66..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelRequestType.java +++ /dev/null @@ -1,231 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypothecairBerichtPerceelRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypothecairBerichtPerceelRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypothecairBerichtPerceelRequestType", propOrder = { - -}) -public class KadasterHypothecairBerichtPerceelRequestType { - - @XmlElement(required = true) - protected String gemeentecode; - @XmlElement(required = true) - protected String gemeentenaam; - @XmlElement(required = true) - protected String sectie; - @XmlElement(required = true) - protected String perceelnummer; - @XmlElement(required = true) - protected String relatiecode; - @XmlElement(required = true) - protected String volgnummer; - @XmlElement(required = true) - protected String format; - - /** - * Gets the value of the gemeentecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentecode() { - return gemeentecode; - } - - /** - * Sets the value of the gemeentecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentecode(String value) { - this.gemeentecode = value; - } - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the sectie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectie() { - return sectie; - } - - /** - * Sets the value of the sectie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectie(String value) { - this.sectie = value; - } - - /** - * Gets the value of the perceelnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPerceelnummer(String value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the relatiecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRelatiecode() { - return relatiecode; - } - - /** - * Sets the value of the relatiecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRelatiecode(String value) { - this.relatiecode = value; - } - - /** - * Gets the value of the volgnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVolgnummer() { - return volgnummer; - } - - /** - * Sets the value of the volgnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVolgnummer(String value) { - this.volgnummer = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelResponseType.java deleted file mode 100644 index ad35032..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypothecairBerichtPerceelResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypothecairBerichtPerceelResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}kadasterHypothecairBerichtResultaat"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypothecairBerichtPerceelResponseType", propOrder = { - -}) -public class KadasterHypothecairBerichtPerceelResponseType { - - @XmlElement(required = true) - protected KadasterHypothecairBerichtResultaat out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KadasterHypothecairBerichtResultaat } - * - */ - public KadasterHypothecairBerichtResultaat getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KadasterHypothecairBerichtResultaat } - * - */ - public void setOut(KadasterHypothecairBerichtResultaat value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV2RequestType.java deleted file mode 100644 index 2253849..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV2RequestType.java +++ /dev/null @@ -1,231 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypothecairBerichtPerceelV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypothecairBerichtPerceelV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypothecairBerichtPerceelV2RequestType", propOrder = { - -}) -public class KadasterHypothecairBerichtPerceelV2RequestType { - - @XmlElement(required = true) - protected String gemeentecode; - @XmlElement(required = true) - protected String gemeentenaam; - @XmlElement(required = true) - protected String sectie; - @XmlElement(required = true) - protected String perceelnummer; - @XmlElement(required = true) - protected String relatiecode; - @XmlElement(required = true) - protected String volgnummer; - @XmlElement(required = true) - protected String format; - - /** - * Gets the value of the gemeentecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentecode() { - return gemeentecode; - } - - /** - * Sets the value of the gemeentecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentecode(String value) { - this.gemeentecode = value; - } - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the sectie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectie() { - return sectie; - } - - /** - * Sets the value of the sectie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectie(String value) { - this.sectie = value; - } - - /** - * Gets the value of the perceelnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPerceelnummer(String value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the relatiecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRelatiecode() { - return relatiecode; - } - - /** - * Sets the value of the relatiecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRelatiecode(String value) { - this.relatiecode = value; - } - - /** - * Gets the value of the volgnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVolgnummer() { - return volgnummer; - } - - /** - * Sets the value of the volgnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVolgnummer(String value) { - this.volgnummer = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV2ResponseType.java deleted file mode 100644 index 44a0092..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypothecairBerichtPerceelV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypothecairBerichtPerceelV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}kadasterHypothecairBerichtResultaat"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypothecairBerichtPerceelV2ResponseType", propOrder = { - -}) -public class KadasterHypothecairBerichtPerceelV2ResponseType { - - @XmlElement(required = true) - protected KadasterHypothecairBerichtResultaat out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KadasterHypothecairBerichtResultaat } - * - */ - public KadasterHypothecairBerichtResultaat getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KadasterHypothecairBerichtResultaat } - * - */ - public void setOut(KadasterHypothecairBerichtResultaat value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV3RequestType.java deleted file mode 100644 index 37de7bc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV3RequestType.java +++ /dev/null @@ -1,231 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypothecairBerichtPerceelV3RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypothecairBerichtPerceelV3RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypothecairBerichtPerceelV3RequestType", propOrder = { - -}) -public class KadasterHypothecairBerichtPerceelV3RequestType { - - @XmlElement(required = true) - protected String gemeentecode; - @XmlElement(required = true) - protected String gemeentenaam; - @XmlElement(required = true) - protected String sectie; - @XmlElement(required = true) - protected String perceelnummer; - @XmlElement(required = true) - protected String relatiecode; - @XmlElement(required = true) - protected String volgnummer; - @XmlElement(required = true) - protected String format; - - /** - * Gets the value of the gemeentecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentecode() { - return gemeentecode; - } - - /** - * Sets the value of the gemeentecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentecode(String value) { - this.gemeentecode = value; - } - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the sectie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectie() { - return sectie; - } - - /** - * Sets the value of the sectie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectie(String value) { - this.sectie = value; - } - - /** - * Gets the value of the perceelnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPerceelnummer(String value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the relatiecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRelatiecode() { - return relatiecode; - } - - /** - * Sets the value of the relatiecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRelatiecode(String value) { - this.relatiecode = value; - } - - /** - * Gets the value of the volgnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVolgnummer() { - return volgnummer; - } - - /** - * Sets the value of the volgnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVolgnummer(String value) { - this.volgnummer = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV3ResponseType.java deleted file mode 100644 index 0f4816f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPerceelV3ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypothecairBerichtPerceelV3ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypothecairBerichtPerceelV3ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}kadasterHypothecairBerichtResultaatV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypothecairBerichtPerceelV3ResponseType", propOrder = { - -}) -public class KadasterHypothecairBerichtPerceelV3ResponseType { - - @XmlElement(required = true) - protected KadasterHypothecairBerichtResultaatV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KadasterHypothecairBerichtResultaatV2 } - * - */ - public KadasterHypothecairBerichtResultaatV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KadasterHypothecairBerichtResultaatV2 } - * - */ - public void setOut(KadasterHypothecairBerichtResultaatV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeRequestType.java deleted file mode 100644 index d2786a5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeRequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypothecairBerichtPostcodeRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypothecairBerichtPostcodeRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypothecairBerichtPostcodeRequestType", propOrder = { - -}) -public class KadasterHypothecairBerichtPostcodeRequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - @XmlElement(required = true) - protected String format; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeResponseType.java deleted file mode 100644 index ab4e5df..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypothecairBerichtPostcodeResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypothecairBerichtPostcodeResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}kadasterHypothecairBerichtResultaat"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypothecairBerichtPostcodeResponseType", propOrder = { - -}) -public class KadasterHypothecairBerichtPostcodeResponseType { - - @XmlElement(required = true) - protected KadasterHypothecairBerichtResultaat out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KadasterHypothecairBerichtResultaat } - * - */ - public KadasterHypothecairBerichtResultaat getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KadasterHypothecairBerichtResultaat } - * - */ - public void setOut(KadasterHypothecairBerichtResultaat value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV2RequestType.java deleted file mode 100644 index 6788b2e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV2RequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypothecairBerichtPostcodeV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypothecairBerichtPostcodeV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypothecairBerichtPostcodeV2RequestType", propOrder = { - -}) -public class KadasterHypothecairBerichtPostcodeV2RequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - @XmlElement(required = true) - protected String format; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV2ResponseType.java deleted file mode 100644 index 7740bfa..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypothecairBerichtPostcodeV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypothecairBerichtPostcodeV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}kadasterHypothecairBerichtResultaat"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypothecairBerichtPostcodeV2ResponseType", propOrder = { - -}) -public class KadasterHypothecairBerichtPostcodeV2ResponseType { - - @XmlElement(required = true) - protected KadasterHypothecairBerichtResultaat out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KadasterHypothecairBerichtResultaat } - * - */ - public KadasterHypothecairBerichtResultaat getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KadasterHypothecairBerichtResultaat } - * - */ - public void setOut(KadasterHypothecairBerichtResultaat value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV3RequestType.java deleted file mode 100644 index f1d98b4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV3RequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypothecairBerichtPostcodeV3RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypothecairBerichtPostcodeV3RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypothecairBerichtPostcodeV3RequestType", propOrder = { - -}) -public class KadasterHypothecairBerichtPostcodeV3RequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - @XmlElement(required = true) - protected String format; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV3ResponseType.java deleted file mode 100644 index ff30ca2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtPostcodeV3ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypothecairBerichtPostcodeV3ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypothecairBerichtPostcodeV3ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}kadasterHypothecairBerichtResultaatV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypothecairBerichtPostcodeV3ResponseType", propOrder = { - -}) -public class KadasterHypothecairBerichtPostcodeV3ResponseType { - - @XmlElement(required = true) - protected KadasterHypothecairBerichtResultaatV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KadasterHypothecairBerichtResultaatV2 } - * - */ - public KadasterHypothecairBerichtResultaatV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KadasterHypothecairBerichtResultaatV2 } - * - */ - public void setOut(KadasterHypothecairBerichtResultaatV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtResultaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtResultaat.java deleted file mode 100644 index 19c9608..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtResultaat.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypothecairBerichtResultaat complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypothecairBerichtResultaat">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="overzicht" type="{http://www.webservices.nl/soap/}kadasterOverzicht" minOccurs="0"/>
- *         <element name="hypothecairbericht" type="{http://www.webservices.nl/soap/}kadasterHypothecairBerichtObject" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypothecairBerichtResultaat", propOrder = { - -}) -public class KadasterHypothecairBerichtResultaat { - - protected KadasterOverzicht overzicht; - protected KadasterHypothecairBerichtObject hypothecairbericht; - - /** - * Gets the value of the overzicht property. - * - * @return - * possible object is - * {@link KadasterOverzicht } - * - */ - public KadasterOverzicht getOverzicht() { - return overzicht; - } - - /** - * Sets the value of the overzicht property. - * - * @param value - * allowed object is - * {@link KadasterOverzicht } - * - */ - public void setOverzicht(KadasterOverzicht value) { - this.overzicht = value; - } - - /** - * Gets the value of the hypothecairbericht property. - * - * @return - * possible object is - * {@link KadasterHypothecairBerichtObject } - * - */ - public KadasterHypothecairBerichtObject getHypothecairbericht() { - return hypothecairbericht; - } - - /** - * Sets the value of the hypothecairbericht property. - * - * @param value - * allowed object is - * {@link KadasterHypothecairBerichtObject } - * - */ - public void setHypothecairbericht(KadasterHypothecairBerichtObject value) { - this.hypothecairbericht = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtResultaatV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtResultaatV2.java deleted file mode 100644 index 23f5a23..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypothecairBerichtResultaatV2.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypothecairBerichtResultaatV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypothecairBerichtResultaatV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="overzicht" type="{http://www.webservices.nl/soap/}kadasterOverzichtV2" minOccurs="0"/>
- *         <element name="hypothecairbericht" type="{http://www.webservices.nl/soap/}kadasterHypothecairBerichtObject" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypothecairBerichtResultaatV2", propOrder = { - -}) -public class KadasterHypothecairBerichtResultaatV2 { - - protected KadasterOverzichtV2 overzicht; - protected KadasterHypothecairBerichtObject hypothecairbericht; - - /** - * Gets the value of the overzicht property. - * - * @return - * possible object is - * {@link KadasterOverzichtV2 } - * - */ - public KadasterOverzichtV2 getOverzicht() { - return overzicht; - } - - /** - * Sets the value of the overzicht property. - * - * @param value - * allowed object is - * {@link KadasterOverzichtV2 } - * - */ - public void setOverzicht(KadasterOverzichtV2 value) { - this.overzicht = value; - } - - /** - * Gets the value of the hypothecairbericht property. - * - * @return - * possible object is - * {@link KadasterHypothecairBerichtObject } - * - */ - public KadasterHypothecairBerichtObject getHypothecairbericht() { - return hypothecairbericht; - } - - /** - * Sets the value of the hypothecairbericht property. - * - * @param value - * allowed object is - * {@link KadasterHypothecairBerichtObject } - * - */ - public void setHypothecairbericht(KadasterHypothecairBerichtObject value) { - this.hypothecairbericht = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheek.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheek.java deleted file mode 100644 index 5bc44a6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheek.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypotheek complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypotheek">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="hoofdsom" type="{http://www.webservices.nl/soap/}kadasterBedrag"/>
- *         <element name="rentevoet" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="meerdere_rentevoet" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypotheek", propOrder = { - -}) -public class KadasterHypotheek { - - @XmlElement(required = true) - protected KadasterBedrag hoofdsom; - protected Float rentevoet; - @XmlElement(name = "meerdere_rentevoet") - protected Boolean meerdereRentevoet; - - /** - * Gets the value of the hoofdsom property. - * - * @return - * possible object is - * {@link KadasterBedrag } - * - */ - public KadasterBedrag getHoofdsom() { - return hoofdsom; - } - - /** - * Sets the value of the hoofdsom property. - * - * @param value - * allowed object is - * {@link KadasterBedrag } - * - */ - public void setHoofdsom(KadasterBedrag value) { - this.hoofdsom = value; - } - - /** - * Gets the value of the rentevoet property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getRentevoet() { - return rentevoet; - } - - /** - * Sets the value of the rentevoet property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setRentevoet(Float value) { - this.rentevoet = value; - } - - /** - * Gets the value of the meerdereRentevoet property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isMeerdereRentevoet() { - return meerdereRentevoet; - } - - /** - * Sets the value of the meerdereRentevoet property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setMeerdereRentevoet(Boolean value) { - this.meerdereRentevoet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStuk.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStuk.java deleted file mode 100644 index 952e34f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStuk.java +++ /dev/null @@ -1,256 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypotheekStuk complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypotheekStuk">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="stuk" type="{http://www.webservices.nl/soap/}Stuk"/>
- *         <element name="stukdelen" type="{http://www.webservices.nl/soap/}kadasterStukdeelArray"/>
- *         <element name="datum_aanbieding" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="datum_ondertekening" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="rectificatie_verzocht" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="eenzijdig_opzegbaar" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="gefiatteerd" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypotheekStuk", propOrder = { - -}) -public class KadasterHypotheekStuk { - - @XmlElement(required = true) - protected Stuk stuk; - @XmlElement(required = true) - protected KadasterStukdeelArray stukdelen; - @XmlElement(name = "datum_aanbieding") - protected String datumAanbieding; - @XmlElement(name = "datum_ondertekening") - protected String datumOndertekening; - protected String omschrijving; - @XmlElement(name = "rectificatie_verzocht") - protected Boolean rectificatieVerzocht; - @XmlElement(name = "eenzijdig_opzegbaar") - protected Boolean eenzijdigOpzegbaar; - protected Boolean gefiatteerd; - - /** - * Gets the value of the stuk property. - * - * @return - * possible object is - * {@link Stuk } - * - */ - public Stuk getStuk() { - return stuk; - } - - /** - * Sets the value of the stuk property. - * - * @param value - * allowed object is - * {@link Stuk } - * - */ - public void setStuk(Stuk value) { - this.stuk = value; - } - - /** - * Gets the value of the stukdelen property. - * - * @return - * possible object is - * {@link KadasterStukdeelArray } - * - */ - public KadasterStukdeelArray getStukdelen() { - return stukdelen; - } - - /** - * Sets the value of the stukdelen property. - * - * @param value - * allowed object is - * {@link KadasterStukdeelArray } - * - */ - public void setStukdelen(KadasterStukdeelArray value) { - this.stukdelen = value; - } - - /** - * Gets the value of the datumAanbieding property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDatumAanbieding() { - return datumAanbieding; - } - - /** - * Sets the value of the datumAanbieding property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDatumAanbieding(String value) { - this.datumAanbieding = value; - } - - /** - * Gets the value of the datumOndertekening property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDatumOndertekening() { - return datumOndertekening; - } - - /** - * Sets the value of the datumOndertekening property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDatumOndertekening(String value) { - this.datumOndertekening = value; - } - - /** - * Gets the value of the omschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijving() { - return omschrijving; - } - - /** - * Sets the value of the omschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijving(String value) { - this.omschrijving = value; - } - - /** - * Gets the value of the rectificatieVerzocht property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isRectificatieVerzocht() { - return rectificatieVerzocht; - } - - /** - * Sets the value of the rectificatieVerzocht property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setRectificatieVerzocht(Boolean value) { - this.rectificatieVerzocht = value; - } - - /** - * Gets the value of the eenzijdigOpzegbaar property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isEenzijdigOpzegbaar() { - return eenzijdigOpzegbaar; - } - - /** - * Sets the value of the eenzijdigOpzegbaar property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setEenzijdigOpzegbaar(Boolean value) { - this.eenzijdigOpzegbaar = value; - } - - /** - * Gets the value of the gefiatteerd property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isGefiatteerd() { - return gefiatteerd; - } - - /** - * Sets the value of the gefiatteerd property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setGefiatteerd(Boolean value) { - this.gefiatteerd = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStukArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStukArray.java deleted file mode 100644 index 6e2b298..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStukArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypotheekStukArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypotheekStukArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterHypotheekStuk" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypotheekStukArray", propOrder = { - "item" -}) -public class KadasterHypotheekStukArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterHypotheekStuk } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStukLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStukLijst.java deleted file mode 100644 index 83522b7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterHypotheekStukLijst.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterHypotheekStukLijst complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterHypotheekStukLijst">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="hypotheek_stukken" type="{http://www.webservices.nl/soap/}kadasterHypotheekStukArray"/>
- *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterHypotheekStukLijst", propOrder = { - -}) -public class KadasterHypotheekStukLijst { - - @XmlElement(name = "hypotheek_stukken", required = true) - protected KadasterHypotheekStukArray hypotheekStukken; - @XmlElement(name = "indicatie_compleet") - protected boolean indicatieCompleet; - - /** - * Gets the value of the hypotheekStukken property. - * - * @return - * possible object is - * {@link KadasterHypotheekStukArray } - * - */ - public KadasterHypotheekStukArray getHypotheekStukken() { - return hypotheekStukken; - } - - /** - * Sets the value of the hypotheekStukken property. - * - * @param value - * allowed object is - * {@link KadasterHypotheekStukArray } - * - */ - public void setHypotheekStukken(KadasterHypotheekStukArray value) { - this.hypotheekStukken = value; - } - - /** - * Gets the value of the indicatieCompleet property. - * - */ - public boolean isIndicatieCompleet() { - return indicatieCompleet; - } - - /** - * Sets the value of the indicatieCompleet property. - * - */ - public void setIndicatieCompleet(boolean value) { - this.indicatieCompleet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaart.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaart.java deleted file mode 100644 index 5e57887..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaart.java +++ /dev/null @@ -1,111 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterKadastraleKaart complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterKadastraleKaart">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="kaart" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="schaal" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="afbeeldingen" type="{http://www.webservices.nl/soap/}base64BinaryArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterKadastraleKaart", propOrder = { - -}) -public class KadasterKadastraleKaart { - - @XmlElement(required = true) - protected byte[] kaart; - protected int schaal; - protected Base64BinaryArray afbeeldingen; - - /** - * Gets the value of the kaart property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getKaart() { - return kaart; - } - - /** - * Sets the value of the kaart property. - * - * @param value - * allowed object is - * byte[] - */ - public void setKaart(byte[] value) { - this.kaart = value; - } - - /** - * Gets the value of the schaal property. - * - */ - public int getSchaal() { - return schaal; - } - - /** - * Sets the value of the schaal property. - * - */ - public void setSchaal(int value) { - this.schaal = value; - } - - /** - * Gets the value of the afbeeldingen property. - * - * @return - * possible object is - * {@link Base64BinaryArray } - * - */ - public Base64BinaryArray getAfbeeldingen() { - return afbeeldingen; - } - - /** - * Sets the value of the afbeeldingen property. - * - * @param value - * allowed object is - * {@link Base64BinaryArray } - * - */ - public void setAfbeeldingen(Base64BinaryArray value) { - this.afbeeldingen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelRequestType.java deleted file mode 100644 index 5d4a7d3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelRequestType.java +++ /dev/null @@ -1,249 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterKadastraleKaartPerceelRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterKadastraleKaartPerceelRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="schaal" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterKadastraleKaartPerceelRequestType", propOrder = { - -}) -public class KadasterKadastraleKaartPerceelRequestType { - - @XmlElement(required = true) - protected String gemeentecode; - @XmlElement(required = true) - protected String gemeentenaam; - @XmlElement(required = true) - protected String sectie; - @XmlElement(required = true) - protected String perceelnummer; - @XmlElement(required = true) - protected String relatiecode; - @XmlElement(required = true) - protected String volgnummer; - @XmlElement(required = true) - protected String format; - protected int schaal; - - /** - * Gets the value of the gemeentecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentecode() { - return gemeentecode; - } - - /** - * Sets the value of the gemeentecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentecode(String value) { - this.gemeentecode = value; - } - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the sectie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectie() { - return sectie; - } - - /** - * Sets the value of the sectie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectie(String value) { - this.sectie = value; - } - - /** - * Gets the value of the perceelnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPerceelnummer(String value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the relatiecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRelatiecode() { - return relatiecode; - } - - /** - * Sets the value of the relatiecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRelatiecode(String value) { - this.relatiecode = value; - } - - /** - * Gets the value of the volgnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVolgnummer() { - return volgnummer; - } - - /** - * Sets the value of the volgnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVolgnummer(String value) { - this.volgnummer = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - - /** - * Gets the value of the schaal property. - * - */ - public int getSchaal() { - return schaal; - } - - /** - * Sets the value of the schaal property. - * - */ - public void setSchaal(int value) { - this.schaal = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelResponseType.java deleted file mode 100644 index d55afca..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterKadastraleKaartPerceelResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterKadastraleKaartPerceelResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterKadastraleKaartResultaat"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterKadastraleKaartPerceelResponseType", propOrder = { - -}) -public class KadasterKadastraleKaartPerceelResponseType { - - @XmlElement(required = true) - protected KadasterKadastraleKaartResultaat out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KadasterKadastraleKaartResultaat } - * - */ - public KadasterKadastraleKaartResultaat getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KadasterKadastraleKaartResultaat } - * - */ - public void setOut(KadasterKadastraleKaartResultaat value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelV2RequestType.java deleted file mode 100644 index c2feec8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelV2RequestType.java +++ /dev/null @@ -1,249 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterKadastraleKaartPerceelV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterKadastraleKaartPerceelV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="schaal" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterKadastraleKaartPerceelV2RequestType", propOrder = { - -}) -public class KadasterKadastraleKaartPerceelV2RequestType { - - @XmlElement(required = true) - protected String gemeentecode; - @XmlElement(required = true) - protected String gemeentenaam; - @XmlElement(required = true) - protected String sectie; - @XmlElement(required = true) - protected String perceelnummer; - @XmlElement(required = true) - protected String relatiecode; - @XmlElement(required = true) - protected String volgnummer; - @XmlElement(required = true) - protected String format; - protected int schaal; - - /** - * Gets the value of the gemeentecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentecode() { - return gemeentecode; - } - - /** - * Sets the value of the gemeentecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentecode(String value) { - this.gemeentecode = value; - } - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the sectie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectie() { - return sectie; - } - - /** - * Sets the value of the sectie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectie(String value) { - this.sectie = value; - } - - /** - * Gets the value of the perceelnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPerceelnummer(String value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the relatiecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRelatiecode() { - return relatiecode; - } - - /** - * Sets the value of the relatiecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRelatiecode(String value) { - this.relatiecode = value; - } - - /** - * Gets the value of the volgnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVolgnummer() { - return volgnummer; - } - - /** - * Sets the value of the volgnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVolgnummer(String value) { - this.volgnummer = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - - /** - * Gets the value of the schaal property. - * - */ - public int getSchaal() { - return schaal; - } - - /** - * Sets the value of the schaal property. - * - */ - public void setSchaal(int value) { - this.schaal = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelV2ResponseType.java deleted file mode 100644 index 64a5703..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPerceelV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterKadastraleKaartPerceelV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterKadastraleKaartPerceelV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterKadastraleKaartResultaatV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterKadastraleKaartPerceelV2ResponseType", propOrder = { - -}) -public class KadasterKadastraleKaartPerceelV2ResponseType { - - @XmlElement(required = true) - protected KadasterKadastraleKaartResultaatV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KadasterKadastraleKaartResultaatV2 } - * - */ - public KadasterKadastraleKaartResultaatV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KadasterKadastraleKaartResultaatV2 } - * - */ - public void setOut(KadasterKadastraleKaartResultaatV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeRequestType.java deleted file mode 100644 index 083bf92..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeRequestType.java +++ /dev/null @@ -1,159 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterKadastraleKaartPostcodeRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterKadastraleKaartPostcodeRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="schaal" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterKadastraleKaartPostcodeRequestType", propOrder = { - -}) -public class KadasterKadastraleKaartPostcodeRequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - @XmlElement(required = true) - protected String format; - protected int schaal; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - - /** - * Gets the value of the schaal property. - * - */ - public int getSchaal() { - return schaal; - } - - /** - * Sets the value of the schaal property. - * - */ - public void setSchaal(int value) { - this.schaal = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeResponseType.java deleted file mode 100644 index acbd4fa..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterKadastraleKaartPostcodeResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterKadastraleKaartPostcodeResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterKadastraleKaartResultaat"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterKadastraleKaartPostcodeResponseType", propOrder = { - -}) -public class KadasterKadastraleKaartPostcodeResponseType { - - @XmlElement(required = true) - protected KadasterKadastraleKaartResultaat out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KadasterKadastraleKaartResultaat } - * - */ - public KadasterKadastraleKaartResultaat getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KadasterKadastraleKaartResultaat } - * - */ - public void setOut(KadasterKadastraleKaartResultaat value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeV2RequestType.java deleted file mode 100644 index bfe1d8e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeV2RequestType.java +++ /dev/null @@ -1,159 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterKadastraleKaartPostcodeV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterKadastraleKaartPostcodeV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="schaal" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterKadastraleKaartPostcodeV2RequestType", propOrder = { - -}) -public class KadasterKadastraleKaartPostcodeV2RequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - @XmlElement(required = true) - protected String format; - protected int schaal; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - - /** - * Gets the value of the schaal property. - * - */ - public int getSchaal() { - return schaal; - } - - /** - * Sets the value of the schaal property. - * - */ - public void setSchaal(int value) { - this.schaal = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeV2ResponseType.java deleted file mode 100644 index 87a22cd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartPostcodeV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterKadastraleKaartPostcodeV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterKadastraleKaartPostcodeV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterKadastraleKaartResultaatV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterKadastraleKaartPostcodeV2ResponseType", propOrder = { - -}) -public class KadasterKadastraleKaartPostcodeV2ResponseType { - - @XmlElement(required = true) - protected KadasterKadastraleKaartResultaatV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KadasterKadastraleKaartResultaatV2 } - * - */ - public KadasterKadastraleKaartResultaatV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KadasterKadastraleKaartResultaatV2 } - * - */ - public void setOut(KadasterKadastraleKaartResultaatV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartResultaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartResultaat.java deleted file mode 100644 index adaaa86..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartResultaat.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterKadastraleKaartResultaat complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterKadastraleKaartResultaat">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="overzicht" type="{http://www.webservices.nl/soap/}kadasterOverzicht" minOccurs="0"/>
- *         <element name="kadastrale_kaart" type="{http://www.webservices.nl/soap/}KadasterKadastraleKaart" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterKadastraleKaartResultaat", propOrder = { - -}) -public class KadasterKadastraleKaartResultaat { - - protected KadasterOverzicht overzicht; - @XmlElement(name = "kadastrale_kaart") - protected KadasterKadastraleKaart kadastraleKaart; - - /** - * Gets the value of the overzicht property. - * - * @return - * possible object is - * {@link KadasterOverzicht } - * - */ - public KadasterOverzicht getOverzicht() { - return overzicht; - } - - /** - * Sets the value of the overzicht property. - * - * @param value - * allowed object is - * {@link KadasterOverzicht } - * - */ - public void setOverzicht(KadasterOverzicht value) { - this.overzicht = value; - } - - /** - * Gets the value of the kadastraleKaart property. - * - * @return - * possible object is - * {@link KadasterKadastraleKaart } - * - */ - public KadasterKadastraleKaart getKadastraleKaart() { - return kadastraleKaart; - } - - /** - * Sets the value of the kadastraleKaart property. - * - * @param value - * allowed object is - * {@link KadasterKadastraleKaart } - * - */ - public void setKadastraleKaart(KadasterKadastraleKaart value) { - this.kadastraleKaart = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartResultaatV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartResultaatV2.java deleted file mode 100644 index 6fa4920..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKadastraleKaartResultaatV2.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterKadastraleKaartResultaatV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterKadastraleKaartResultaatV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="overzicht" type="{http://www.webservices.nl/soap/}DocumentOverzicht" minOccurs="0"/>
- *         <element name="kadastrale_kaart" type="{http://www.webservices.nl/soap/}KadasterKadastraleKaart" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterKadastraleKaartResultaatV2", propOrder = { - -}) -public class KadasterKadastraleKaartResultaatV2 { - - protected DocumentOverzicht overzicht; - @XmlElement(name = "kadastrale_kaart") - protected KadasterKadastraleKaart kadastraleKaart; - - /** - * Gets the value of the overzicht property. - * - * @return - * possible object is - * {@link DocumentOverzicht } - * - */ - public DocumentOverzicht getOverzicht() { - return overzicht; - } - - /** - * Sets the value of the overzicht property. - * - * @param value - * allowed object is - * {@link DocumentOverzicht } - * - */ - public void setOverzicht(DocumentOverzicht value) { - this.overzicht = value; - } - - /** - * Gets the value of the kadastraleKaart property. - * - * @return - * possible object is - * {@link KadasterKadastraleKaart } - * - */ - public KadasterKadastraleKaart getKadastraleKaart() { - return kadastraleKaart; - } - - /** - * Sets the value of the kadastraleKaart property. - * - * @param value - * allowed object is - * {@link KadasterKadastraleKaart } - * - */ - public void setKadastraleKaart(KadasterKadastraleKaart value) { - this.kadastraleKaart = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtRequestType.java deleted file mode 100644 index fc80eaf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterKoopsommenOverzichtRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterKoopsommenOverzichtRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterKoopsommenOverzichtRequestType", propOrder = { - -}) -public class KadasterKoopsommenOverzichtRequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtResponseType.java deleted file mode 100644 index 14f59eb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterKoopsommenOverzichtResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterKoopsommenOverzichtResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="koopsommenoverzicht" type="{http://www.webservices.nl/soap/}KoopsommenOverzicht"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterKoopsommenOverzichtResponseType", propOrder = { - -}) -public class KadasterKoopsommenOverzichtResponseType { - - @XmlElement(required = true) - protected KoopsommenOverzicht koopsommenoverzicht; - - /** - * Gets the value of the koopsommenoverzicht property. - * - * @return - * possible object is - * {@link KoopsommenOverzicht } - * - */ - public KoopsommenOverzicht getKoopsommenoverzicht() { - return koopsommenoverzicht; - } - - /** - * Sets the value of the koopsommenoverzicht property. - * - * @param value - * allowed object is - * {@link KoopsommenOverzicht } - * - */ - public void setKoopsommenoverzicht(KoopsommenOverzicht value) { - this.koopsommenoverzicht = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtV2RequestType.java deleted file mode 100644 index 740a3fb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtV2RequestType.java +++ /dev/null @@ -1,114 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterKoopsommenOverzichtV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterKoopsommenOverzichtV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterKoopsommenOverzichtV2RequestType", propOrder = { - -}) -public class KadasterKoopsommenOverzichtV2RequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(required = true) - protected String format; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtV2ResponseType.java deleted file mode 100644 index 0d1e505..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterKoopsommenOverzichtV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterKoopsommenOverzichtV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterKoopsommenOverzichtV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="koopsommenoverzicht" type="{http://www.webservices.nl/soap/}KoopsommenOverzichtV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterKoopsommenOverzichtV2ResponseType", propOrder = { - -}) -public class KadasterKoopsommenOverzichtV2ResponseType { - - @XmlElement(required = true) - protected KoopsommenOverzichtV2 koopsommenoverzicht; - - /** - * Gets the value of the koopsommenoverzicht property. - * - * @return - * possible object is - * {@link KoopsommenOverzichtV2 } - * - */ - public KoopsommenOverzichtV2 getKoopsommenoverzicht() { - return koopsommenoverzicht; - } - - /** - * Sets the value of the koopsommenoverzicht property. - * - * @param value - * allowed object is - * {@link KoopsommenOverzichtV2 } - * - */ - public void setKoopsommenoverzicht(KoopsommenOverzichtV2 value) { - this.koopsommenoverzicht = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterListValue.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterListValue.java deleted file mode 100644 index 98190ea..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterListValue.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterListValue complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterListValue">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterListValue", propOrder = { - -}) -public class KadasterListValue { - - protected String key; - @XmlElement(required = true) - protected String value; - - /** - * Gets the value of the key property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKey() { - return key; - } - - /** - * Sets the value of the key property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKey(String value) { - this.key = value; - } - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterListValueArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterListValueArray.java deleted file mode 100644 index 655d763..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterListValueArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterListValueArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterListValueArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterListValue" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterListValueArray", propOrder = { - "item" -}) -public class KadasterListValueArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterListValue } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatie.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatie.java deleted file mode 100644 index 6e160fa..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatie.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterLocatie complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterLocatie">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="locatie_binnenland" type="{http://www.webservices.nl/soap/}kadasterLocatieBinnenland" minOccurs="0"/>
- *         <element name="locatie_buitenland" type="{http://www.webservices.nl/soap/}kadasterLocatieBuitenland" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterLocatie", propOrder = { - -}) -public class KadasterLocatie { - - @XmlElement(name = "locatie_binnenland") - protected KadasterLocatieBinnenland locatieBinnenland; - @XmlElement(name = "locatie_buitenland") - protected KadasterLocatieBuitenland locatieBuitenland; - - /** - * Gets the value of the locatieBinnenland property. - * - * @return - * possible object is - * {@link KadasterLocatieBinnenland } - * - */ - public KadasterLocatieBinnenland getLocatieBinnenland() { - return locatieBinnenland; - } - - /** - * Sets the value of the locatieBinnenland property. - * - * @param value - * allowed object is - * {@link KadasterLocatieBinnenland } - * - */ - public void setLocatieBinnenland(KadasterLocatieBinnenland value) { - this.locatieBinnenland = value; - } - - /** - * Gets the value of the locatieBuitenland property. - * - * @return - * possible object is - * {@link KadasterLocatieBuitenland } - * - */ - public KadasterLocatieBuitenland getLocatieBuitenland() { - return locatieBuitenland; - } - - /** - * Sets the value of the locatieBuitenland property. - * - * @param value - * allowed object is - * {@link KadasterLocatieBuitenland } - * - */ - public void setLocatieBuitenland(KadasterLocatieBuitenland value) { - this.locatieBuitenland = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBinnenland.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBinnenland.java deleted file mode 100644 index 0986fab..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBinnenland.java +++ /dev/null @@ -1,225 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterLocatieBinnenland complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterLocatieBinnenland">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="plaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="straatnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="huisletter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="positie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterLocatieBinnenland", propOrder = { - -}) -public class KadasterLocatieBinnenland { - - protected String plaats; - protected String straatnaam; - protected String postcode; - protected Integer huisnummer; - @XmlElement(name = "huisnummer_toevoeging") - protected String huisnummerToevoeging; - protected String huisletter; - protected String positie; - - /** - * Gets the value of the plaats property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaats() { - return plaats; - } - - /** - * Sets the value of the plaats property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaats(String value) { - this.plaats = value; - } - - /** - * Gets the value of the straatnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStraatnaam() { - return straatnaam; - } - - /** - * Sets the value of the straatnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStraatnaam(String value) { - this.straatnaam = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHuisnummer(Integer value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the huisletter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisletter() { - return huisletter; - } - - /** - * Sets the value of the huisletter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisletter(String value) { - this.huisletter = value; - } - - /** - * Gets the value of the positie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPositie() { - return positie; - } - - /** - * Sets the value of the positie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPositie(String value) { - this.positie = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBinnenlandArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBinnenlandArray.java deleted file mode 100644 index b24fb70..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBinnenlandArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterLocatieBinnenlandArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterLocatieBinnenlandArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterLocatieBinnenland" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterLocatieBinnenlandArray", propOrder = { - "item" -}) -public class KadasterLocatieBinnenlandArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterLocatieBinnenland } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBuitenland.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBuitenland.java deleted file mode 100644 index 3e29439..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterLocatieBuitenland.java +++ /dev/null @@ -1,147 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterLocatieBuitenland complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterLocatieBuitenland">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="adres" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="woonplaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="regio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="land" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterLocatieBuitenland", propOrder = { - -}) -public class KadasterLocatieBuitenland { - - protected String adres; - protected String woonplaats; - protected String regio; - @XmlElement(required = true) - protected String land; - - /** - * Gets the value of the adres property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAdres() { - return adres; - } - - /** - * Sets the value of the adres property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAdres(String value) { - this.adres = value; - } - - /** - * Gets the value of the woonplaats property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWoonplaats() { - return woonplaats; - } - - /** - * Sets the value of the woonplaats property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWoonplaats(String value) { - this.woonplaats = value; - } - - /** - * Gets the value of the regio property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegio() { - return regio; - } - - /** - * Sets the value of the regio property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegio(String value) { - this.regio = value; - } - - /** - * Gets the value of the land property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLand() { - return land; - } - - /** - * Sets the value of the land property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLand(String value) { - this.land = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterNatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterNatuurlijkPersoon.java deleted file mode 100644 index cf29ea8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterNatuurlijkPersoon.java +++ /dev/null @@ -1,310 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for kadasterNatuurlijkPersoon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterNatuurlijkPersoon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bsn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="voorvoegsel_geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="voornamen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="geslacht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="geboorteplaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="geboortedatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="datum_overlijden" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="indicatie_overleden" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="burgerlijke_staat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterNatuurlijkPersoon", propOrder = { - -}) -public class KadasterNatuurlijkPersoon { - - protected String bsn; - protected String geslachtsnaam; - @XmlElement(name = "voorvoegsel_geslachtsnaam") - protected String voorvoegselGeslachtsnaam; - protected String voornamen; - protected String geslacht; - protected String geboorteplaats; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar geboortedatum; - @XmlElement(name = "datum_overlijden") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar datumOverlijden; - @XmlElement(name = "indicatie_overleden") - protected Boolean indicatieOverleden; - @XmlElement(name = "burgerlijke_staat") - protected String burgerlijkeStaat; - - /** - * Gets the value of the bsn property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBsn() { - return bsn; - } - - /** - * Sets the value of the bsn property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBsn(String value) { - this.bsn = value; - } - - /** - * Gets the value of the geslachtsnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeslachtsnaam() { - return geslachtsnaam; - } - - /** - * Sets the value of the geslachtsnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeslachtsnaam(String value) { - this.geslachtsnaam = value; - } - - /** - * Gets the value of the voorvoegselGeslachtsnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVoorvoegselGeslachtsnaam() { - return voorvoegselGeslachtsnaam; - } - - /** - * Sets the value of the voorvoegselGeslachtsnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVoorvoegselGeslachtsnaam(String value) { - this.voorvoegselGeslachtsnaam = value; - } - - /** - * Gets the value of the voornamen property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVoornamen() { - return voornamen; - } - - /** - * Sets the value of the voornamen property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVoornamen(String value) { - this.voornamen = value; - } - - /** - * Gets the value of the geslacht property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeslacht() { - return geslacht; - } - - /** - * Sets the value of the geslacht property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeslacht(String value) { - this.geslacht = value; - } - - /** - * Gets the value of the geboorteplaats property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeboorteplaats() { - return geboorteplaats; - } - - /** - * Sets the value of the geboorteplaats property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeboorteplaats(String value) { - this.geboorteplaats = value; - } - - /** - * Gets the value of the geboortedatum property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGeboortedatum() { - return geboortedatum; - } - - /** - * Sets the value of the geboortedatum property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGeboortedatum(XMLGregorianCalendar value) { - this.geboortedatum = value; - } - - /** - * Gets the value of the datumOverlijden property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDatumOverlijden() { - return datumOverlijden; - } - - /** - * Sets the value of the datumOverlijden property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDatumOverlijden(XMLGregorianCalendar value) { - this.datumOverlijden = value; - } - - /** - * Gets the value of the indicatieOverleden property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicatieOverleden() { - return indicatieOverleden; - } - - /** - * Sets the value of the indicatieOverleden property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicatieOverleden(Boolean value) { - this.indicatieOverleden = value; - } - - /** - * Gets the value of the burgerlijkeStaat property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBurgerlijkeStaat() { - return burgerlijkeStaat; - } - - /** - * Sets the value of the burgerlijkeStaat property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBurgerlijkeStaat(String value) { - this.burgerlijkeStaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterNietNatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterNietNatuurlijkPersoon.java deleted file mode 100644 index 4a56c8b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterNietNatuurlijkPersoon.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterNietNatuurlijkPersoon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterNietNatuurlijkPersoon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="naam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="rechtsvorm" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="statutaire_zetel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="bedrijven_nummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterNietNatuurlijkPersoon", propOrder = { - -}) -public class KadasterNietNatuurlijkPersoon { - - protected String naam; - @XmlElement(required = true) - protected String rechtsvorm; - @XmlElement(name = "statutaire_zetel") - protected String statutaireZetel; - @XmlElement(name = "bedrijven_nummer") - protected String bedrijvenNummer; - - /** - * Gets the value of the naam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNaam() { - return naam; - } - - /** - * Sets the value of the naam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNaam(String value) { - this.naam = value; - } - - /** - * Gets the value of the rechtsvorm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRechtsvorm() { - return rechtsvorm; - } - - /** - * Sets the value of the rechtsvorm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRechtsvorm(String value) { - this.rechtsvorm = value; - } - - /** - * Gets the value of the statutaireZetel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatutaireZetel() { - return statutaireZetel; - } - - /** - * Sets the value of the statutaireZetel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatutaireZetel(String value) { - this.statutaireZetel = value; - } - - /** - * Gets the value of the bedrijvenNummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBedrijvenNummer() { - return bedrijvenNummer; - } - - /** - * Sets the value of the bedrijvenNummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBedrijvenNummer(String value) { - this.bedrijvenNummer = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzicht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzicht.java deleted file mode 100644 index f191222..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzicht.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterOverzicht complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterOverzicht">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="onroerende_zaken" type="{http://www.webservices.nl/soap/}kadasterOverzichtOnroerendeZaakArray"/>
- *         <element name="rechten" type="{http://www.webservices.nl/soap/}kadasterOverzichtRechtArray"/>
- *         <element name="personen" type="{http://www.webservices.nl/soap/}kadasterOverzichtPersoonArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterOverzicht", propOrder = { - -}) -public class KadasterOverzicht { - - @XmlElement(name = "onroerende_zaken", required = true) - protected KadasterOverzichtOnroerendeZaakArray onroerendeZaken; - @XmlElement(required = true) - protected KadasterOverzichtRechtArray rechten; - @XmlElement(required = true) - protected KadasterOverzichtPersoonArray personen; - - /** - * Gets the value of the onroerendeZaken property. - * - * @return - * possible object is - * {@link KadasterOverzichtOnroerendeZaakArray } - * - */ - public KadasterOverzichtOnroerendeZaakArray getOnroerendeZaken() { - return onroerendeZaken; - } - - /** - * Sets the value of the onroerendeZaken property. - * - * @param value - * allowed object is - * {@link KadasterOverzichtOnroerendeZaakArray } - * - */ - public void setOnroerendeZaken(KadasterOverzichtOnroerendeZaakArray value) { - this.onroerendeZaken = value; - } - - /** - * Gets the value of the rechten property. - * - * @return - * possible object is - * {@link KadasterOverzichtRechtArray } - * - */ - public KadasterOverzichtRechtArray getRechten() { - return rechten; - } - - /** - * Sets the value of the rechten property. - * - * @param value - * allowed object is - * {@link KadasterOverzichtRechtArray } - * - */ - public void setRechten(KadasterOverzichtRechtArray value) { - this.rechten = value; - } - - /** - * Gets the value of the personen property. - * - * @return - * possible object is - * {@link KadasterOverzichtPersoonArray } - * - */ - public KadasterOverzichtPersoonArray getPersonen() { - return personen; - } - - /** - * Sets the value of the personen property. - * - * @param value - * allowed object is - * {@link KadasterOverzichtPersoonArray } - * - */ - public void setPersonen(KadasterOverzichtPersoonArray value) { - this.personen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtNatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtNatuurlijkPersoon.java deleted file mode 100644 index 83d07c4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtNatuurlijkPersoon.java +++ /dev/null @@ -1,174 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterOverzichtNatuurlijkPersoon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterOverzichtNatuurlijkPersoon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bsn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="voorvoegsel_geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="voornamen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="geslacht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterOverzichtNatuurlijkPersoon", propOrder = { - -}) -public class KadasterOverzichtNatuurlijkPersoon { - - protected String bsn; - @XmlElement(required = true) - protected String geslachtsnaam; - @XmlElement(name = "voorvoegsel_geslachtsnaam") - protected String voorvoegselGeslachtsnaam; - protected String voornamen; - protected String geslacht; - - /** - * Gets the value of the bsn property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBsn() { - return bsn; - } - - /** - * Sets the value of the bsn property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBsn(String value) { - this.bsn = value; - } - - /** - * Gets the value of the geslachtsnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeslachtsnaam() { - return geslachtsnaam; - } - - /** - * Sets the value of the geslachtsnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeslachtsnaam(String value) { - this.geslachtsnaam = value; - } - - /** - * Gets the value of the voorvoegselGeslachtsnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVoorvoegselGeslachtsnaam() { - return voorvoegselGeslachtsnaam; - } - - /** - * Sets the value of the voorvoegselGeslachtsnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVoorvoegselGeslachtsnaam(String value) { - this.voorvoegselGeslachtsnaam = value; - } - - /** - * Gets the value of the voornamen property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVoornamen() { - return voornamen; - } - - /** - * Sets the value of the voornamen property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVoornamen(String value) { - this.voornamen = value; - } - - /** - * Gets the value of the geslacht property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeslacht() { - return geslacht; - } - - /** - * Sets the value of the geslacht property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeslacht(String value) { - this.geslacht = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtNietNatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtNietNatuurlijkPersoon.java deleted file mode 100644 index 2d73409..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtNietNatuurlijkPersoon.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterOverzichtNietNatuurlijkPersoon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterOverzichtNietNatuurlijkPersoon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="naam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="rechtsvorm" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="bedrijven_nummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterOverzichtNietNatuurlijkPersoon", propOrder = { - -}) -public class KadasterOverzichtNietNatuurlijkPersoon { - - protected String naam; - @XmlElement(required = true) - protected String rechtsvorm; - @XmlElement(name = "bedrijven_nummer") - protected String bedrijvenNummer; - - /** - * Gets the value of the naam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNaam() { - return naam; - } - - /** - * Sets the value of the naam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNaam(String value) { - this.naam = value; - } - - /** - * Gets the value of the rechtsvorm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRechtsvorm() { - return rechtsvorm; - } - - /** - * Sets the value of the rechtsvorm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRechtsvorm(String value) { - this.rechtsvorm = value; - } - - /** - * Gets the value of the bedrijvenNummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBedrijvenNummer() { - return bedrijvenNummer; - } - - /** - * Sets the value of the bedrijvenNummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBedrijvenNummer(String value) { - this.bedrijvenNummer = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtOnroerendeZaak.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtOnroerendeZaak.java deleted file mode 100644 index 3173db4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtOnroerendeZaak.java +++ /dev/null @@ -1,175 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterOverzichtOnroerendeZaak complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterOverzichtOnroerendeZaak">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="kadastrale_aanduiding" type="{http://www.webservices.nl/soap/}KadastraleAanduiding"/>
- *         <element name="locatie" type="{http://www.webservices.nl/soap/}kadasterLocatieBinnenland" minOccurs="0"/>
- *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterOverzichtOnroerendeZaak", propOrder = { - -}) -public class KadasterOverzichtOnroerendeZaak { - - @XmlElement(name = "object_id", required = true) - protected String objectId; - @XmlElement(name = "kadastrale_aanduiding", required = true) - protected KadastraleAanduiding kadastraleAanduiding; - protected KadasterLocatieBinnenland locatie; - protected String omschrijving; - @XmlElement(required = true) - protected String type; - - /** - * Gets the value of the objectId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjectId() { - return objectId; - } - - /** - * Sets the value of the objectId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjectId(String value) { - this.objectId = value; - } - - /** - * Gets the value of the kadastraleAanduiding property. - * - * @return - * possible object is - * {@link KadastraleAanduiding } - * - */ - public KadastraleAanduiding getKadastraleAanduiding() { - return kadastraleAanduiding; - } - - /** - * Sets the value of the kadastraleAanduiding property. - * - * @param value - * allowed object is - * {@link KadastraleAanduiding } - * - */ - public void setKadastraleAanduiding(KadastraleAanduiding value) { - this.kadastraleAanduiding = value; - } - - /** - * Gets the value of the locatie property. - * - * @return - * possible object is - * {@link KadasterLocatieBinnenland } - * - */ - public KadasterLocatieBinnenland getLocatie() { - return locatie; - } - - /** - * Sets the value of the locatie property. - * - * @param value - * allowed object is - * {@link KadasterLocatieBinnenland } - * - */ - public void setLocatie(KadasterLocatieBinnenland value) { - this.locatie = value; - } - - /** - * Gets the value of the omschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijving() { - return omschrijving; - } - - /** - * Sets the value of the omschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijving(String value) { - this.omschrijving = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtOnroerendeZaakArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtOnroerendeZaakArray.java deleted file mode 100644 index 8636bc2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtOnroerendeZaakArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterOverzichtOnroerendeZaakArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterOverzichtOnroerendeZaakArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterOverzichtOnroerendeZaak" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterOverzichtOnroerendeZaakArray", propOrder = { - "item" -}) -public class KadasterOverzichtOnroerendeZaakArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterOverzichtOnroerendeZaak } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoon.java deleted file mode 100644 index 35338a3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoon.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterOverzichtPersoon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterOverzichtPersoon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="akr_subject_nr" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="kadastrale_identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="natuurlijk_persoon" type="{http://www.webservices.nl/soap/}kadasterOverzichtNatuurlijkPersoon" minOccurs="0"/>
- *         <element name="niet_natuurlijk_persoon" type="{http://www.webservices.nl/soap/}kadasterOverzichtNietNatuurlijkPersoon" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterOverzichtPersoon", propOrder = { - -}) -public class KadasterOverzichtPersoon { - - @XmlElement(name = "akr_subject_nr", required = true) - protected String akrSubjectNr; - @XmlElement(name = "kadastrale_identificatie") - protected String kadastraleIdentificatie; - @XmlElement(name = "natuurlijk_persoon") - protected KadasterOverzichtNatuurlijkPersoon natuurlijkPersoon; - @XmlElement(name = "niet_natuurlijk_persoon") - protected KadasterOverzichtNietNatuurlijkPersoon nietNatuurlijkPersoon; - - /** - * Gets the value of the akrSubjectNr property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAkrSubjectNr() { - return akrSubjectNr; - } - - /** - * Sets the value of the akrSubjectNr property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAkrSubjectNr(String value) { - this.akrSubjectNr = value; - } - - /** - * Gets the value of the kadastraleIdentificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKadastraleIdentificatie() { - return kadastraleIdentificatie; - } - - /** - * Sets the value of the kadastraleIdentificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKadastraleIdentificatie(String value) { - this.kadastraleIdentificatie = value; - } - - /** - * Gets the value of the natuurlijkPersoon property. - * - * @return - * possible object is - * {@link KadasterOverzichtNatuurlijkPersoon } - * - */ - public KadasterOverzichtNatuurlijkPersoon getNatuurlijkPersoon() { - return natuurlijkPersoon; - } - - /** - * Sets the value of the natuurlijkPersoon property. - * - * @param value - * allowed object is - * {@link KadasterOverzichtNatuurlijkPersoon } - * - */ - public void setNatuurlijkPersoon(KadasterOverzichtNatuurlijkPersoon value) { - this.natuurlijkPersoon = value; - } - - /** - * Gets the value of the nietNatuurlijkPersoon property. - * - * @return - * possible object is - * {@link KadasterOverzichtNietNatuurlijkPersoon } - * - */ - public KadasterOverzichtNietNatuurlijkPersoon getNietNatuurlijkPersoon() { - return nietNatuurlijkPersoon; - } - - /** - * Sets the value of the nietNatuurlijkPersoon property. - * - * @param value - * allowed object is - * {@link KadasterOverzichtNietNatuurlijkPersoon } - * - */ - public void setNietNatuurlijkPersoon(KadasterOverzichtNietNatuurlijkPersoon value) { - this.nietNatuurlijkPersoon = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonArray.java deleted file mode 100644 index 4751bcc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterOverzichtPersoonArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterOverzichtPersoonArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterOverzichtPersoon" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterOverzichtPersoonArray", propOrder = { - "item" -}) -public class KadasterOverzichtPersoonArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterOverzichtPersoon } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonV2.java deleted file mode 100644 index 1333add..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonV2.java +++ /dev/null @@ -1,176 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterOverzichtPersoonV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterOverzichtPersoonV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="akr_subject_nr" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="kadastrale_identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="natuurlijk_persoon" type="{http://www.webservices.nl/soap/}kadasterOverzichtNatuurlijkPersoon" minOccurs="0"/>
- *         <element name="niet_natuurlijk_persoon" type="{http://www.webservices.nl/soap/}kadasterOverzichtNietNatuurlijkPersoon" minOccurs="0"/>
- *         <element name="melding" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterOverzichtPersoonV2", propOrder = { - -}) -public class KadasterOverzichtPersoonV2 { - - @XmlElement(name = "akr_subject_nr", required = true) - protected String akrSubjectNr; - @XmlElement(name = "kadastrale_identificatie") - protected String kadastraleIdentificatie; - @XmlElement(name = "natuurlijk_persoon") - protected KadasterOverzichtNatuurlijkPersoon natuurlijkPersoon; - @XmlElement(name = "niet_natuurlijk_persoon") - protected KadasterOverzichtNietNatuurlijkPersoon nietNatuurlijkPersoon; - protected String melding; - - /** - * Gets the value of the akrSubjectNr property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAkrSubjectNr() { - return akrSubjectNr; - } - - /** - * Sets the value of the akrSubjectNr property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAkrSubjectNr(String value) { - this.akrSubjectNr = value; - } - - /** - * Gets the value of the kadastraleIdentificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKadastraleIdentificatie() { - return kadastraleIdentificatie; - } - - /** - * Sets the value of the kadastraleIdentificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKadastraleIdentificatie(String value) { - this.kadastraleIdentificatie = value; - } - - /** - * Gets the value of the natuurlijkPersoon property. - * - * @return - * possible object is - * {@link KadasterOverzichtNatuurlijkPersoon } - * - */ - public KadasterOverzichtNatuurlijkPersoon getNatuurlijkPersoon() { - return natuurlijkPersoon; - } - - /** - * Sets the value of the natuurlijkPersoon property. - * - * @param value - * allowed object is - * {@link KadasterOverzichtNatuurlijkPersoon } - * - */ - public void setNatuurlijkPersoon(KadasterOverzichtNatuurlijkPersoon value) { - this.natuurlijkPersoon = value; - } - - /** - * Gets the value of the nietNatuurlijkPersoon property. - * - * @return - * possible object is - * {@link KadasterOverzichtNietNatuurlijkPersoon } - * - */ - public KadasterOverzichtNietNatuurlijkPersoon getNietNatuurlijkPersoon() { - return nietNatuurlijkPersoon; - } - - /** - * Sets the value of the nietNatuurlijkPersoon property. - * - * @param value - * allowed object is - * {@link KadasterOverzichtNietNatuurlijkPersoon } - * - */ - public void setNietNatuurlijkPersoon(KadasterOverzichtNietNatuurlijkPersoon value) { - this.nietNatuurlijkPersoon = value; - } - - /** - * Gets the value of the melding property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMelding() { - return melding; - } - - /** - * Sets the value of the melding property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMelding(String value) { - this.melding = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonV2Array.java deleted file mode 100644 index ba95642..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtPersoonV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterOverzichtPersoonV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterOverzichtPersoonV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterOverzichtPersoonV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterOverzichtPersoonV2Array", propOrder = { - "item" -}) -public class KadasterOverzichtPersoonV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterOverzichtPersoonV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtRecht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtRecht.java deleted file mode 100644 index d0bd90b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtRecht.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterOverzichtRecht complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterOverzichtRecht">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gerechtigde_akr" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gerechtigde_kadastrale_identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterOverzichtRecht", propOrder = { - -}) -public class KadasterOverzichtRecht { - - @XmlElement(name = "object_id", required = true) - protected String objectId; - @XmlElement(name = "gerechtigde_akr", required = true) - protected String gerechtigdeAkr; - @XmlElement(name = "gerechtigde_kadastrale_identificatie") - protected String gerechtigdeKadastraleIdentificatie; - - /** - * Gets the value of the objectId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjectId() { - return objectId; - } - - /** - * Sets the value of the objectId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjectId(String value) { - this.objectId = value; - } - - /** - * Gets the value of the gerechtigdeAkr property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGerechtigdeAkr() { - return gerechtigdeAkr; - } - - /** - * Sets the value of the gerechtigdeAkr property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGerechtigdeAkr(String value) { - this.gerechtigdeAkr = value; - } - - /** - * Gets the value of the gerechtigdeKadastraleIdentificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGerechtigdeKadastraleIdentificatie() { - return gerechtigdeKadastraleIdentificatie; - } - - /** - * Sets the value of the gerechtigdeKadastraleIdentificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGerechtigdeKadastraleIdentificatie(String value) { - this.gerechtigdeKadastraleIdentificatie = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtRechtArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtRechtArray.java deleted file mode 100644 index a886bbb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtRechtArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterOverzichtRechtArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterOverzichtRechtArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterOverzichtRecht" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterOverzichtRechtArray", propOrder = { - "item" -}) -public class KadasterOverzichtRechtArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterOverzichtRecht } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtV2.java deleted file mode 100644 index ca64285..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterOverzichtV2.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterOverzichtV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterOverzichtV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="onroerende_zaken" type="{http://www.webservices.nl/soap/}kadasterOverzichtOnroerendeZaakArray"/>
- *         <element name="rechten" type="{http://www.webservices.nl/soap/}kadasterOverzichtRechtArray"/>
- *         <element name="personen" type="{http://www.webservices.nl/soap/}kadasterOverzichtPersoonV2Array"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterOverzichtV2", propOrder = { - -}) -public class KadasterOverzichtV2 { - - @XmlElement(name = "onroerende_zaken", required = true) - protected KadasterOverzichtOnroerendeZaakArray onroerendeZaken; - @XmlElement(required = true) - protected KadasterOverzichtRechtArray rechten; - @XmlElement(required = true) - protected KadasterOverzichtPersoonV2Array personen; - - /** - * Gets the value of the onroerendeZaken property. - * - * @return - * possible object is - * {@link KadasterOverzichtOnroerendeZaakArray } - * - */ - public KadasterOverzichtOnroerendeZaakArray getOnroerendeZaken() { - return onroerendeZaken; - } - - /** - * Sets the value of the onroerendeZaken property. - * - * @param value - * allowed object is - * {@link KadasterOverzichtOnroerendeZaakArray } - * - */ - public void setOnroerendeZaken(KadasterOverzichtOnroerendeZaakArray value) { - this.onroerendeZaken = value; - } - - /** - * Gets the value of the rechten property. - * - * @return - * possible object is - * {@link KadasterOverzichtRechtArray } - * - */ - public KadasterOverzichtRechtArray getRechten() { - return rechten; - } - - /** - * Sets the value of the rechten property. - * - * @param value - * allowed object is - * {@link KadasterOverzichtRechtArray } - * - */ - public void setRechten(KadasterOverzichtRechtArray value) { - this.rechten = value; - } - - /** - * Gets the value of the personen property. - * - * @return - * possible object is - * {@link KadasterOverzichtPersoonV2Array } - * - */ - public KadasterOverzichtPersoonV2Array getPersonen() { - return personen; - } - - /** - * Sets the value of the personen property. - * - * @param value - * allowed object is - * {@link KadasterOverzichtPersoonV2Array } - * - */ - public void setPersonen(KadasterOverzichtPersoonV2Array value) { - this.personen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoon.java deleted file mode 100644 index d563238..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoon.java +++ /dev/null @@ -1,256 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterPersoon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterPersoon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="akr_subject_nr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="kadastrale_identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="natuurlijk_persoon" type="{http://www.webservices.nl/soap/}kadasterNatuurlijkPersoon" minOccurs="0"/>
- *         <element name="niet_natuurlijk_persoon" type="{http://www.webservices.nl/soap/}kadasterNietNatuurlijkPersoon" minOccurs="0"/>
- *         <element name="aantekening_beschikkingsbevoegdheid" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="woonlocatie" type="{http://www.webservices.nl/soap/}kadasterLocatie" minOccurs="0"/>
- *         <element name="postlocatie" type="{http://www.webservices.nl/soap/}kadasterLocatie" minOccurs="0"/>
- *         <element name="domicilie_keuzes" type="{http://www.webservices.nl/soap/}kadasterDomicilieKeuzeLijst" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterPersoon", propOrder = { - -}) -public class KadasterPersoon { - - @XmlElement(name = "akr_subject_nr") - protected String akrSubjectNr; - @XmlElement(name = "kadastrale_identificatie") - protected String kadastraleIdentificatie; - @XmlElement(name = "natuurlijk_persoon") - protected KadasterNatuurlijkPersoon natuurlijkPersoon; - @XmlElement(name = "niet_natuurlijk_persoon") - protected KadasterNietNatuurlijkPersoon nietNatuurlijkPersoon; - @XmlElement(name = "aantekening_beschikkingsbevoegdheid") - protected Boolean aantekeningBeschikkingsbevoegdheid; - protected KadasterLocatie woonlocatie; - protected KadasterLocatie postlocatie; - @XmlElement(name = "domicilie_keuzes") - protected KadasterDomicilieKeuzeLijst domicilieKeuzes; - - /** - * Gets the value of the akrSubjectNr property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAkrSubjectNr() { - return akrSubjectNr; - } - - /** - * Sets the value of the akrSubjectNr property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAkrSubjectNr(String value) { - this.akrSubjectNr = value; - } - - /** - * Gets the value of the kadastraleIdentificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKadastraleIdentificatie() { - return kadastraleIdentificatie; - } - - /** - * Sets the value of the kadastraleIdentificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKadastraleIdentificatie(String value) { - this.kadastraleIdentificatie = value; - } - - /** - * Gets the value of the natuurlijkPersoon property. - * - * @return - * possible object is - * {@link KadasterNatuurlijkPersoon } - * - */ - public KadasterNatuurlijkPersoon getNatuurlijkPersoon() { - return natuurlijkPersoon; - } - - /** - * Sets the value of the natuurlijkPersoon property. - * - * @param value - * allowed object is - * {@link KadasterNatuurlijkPersoon } - * - */ - public void setNatuurlijkPersoon(KadasterNatuurlijkPersoon value) { - this.natuurlijkPersoon = value; - } - - /** - * Gets the value of the nietNatuurlijkPersoon property. - * - * @return - * possible object is - * {@link KadasterNietNatuurlijkPersoon } - * - */ - public KadasterNietNatuurlijkPersoon getNietNatuurlijkPersoon() { - return nietNatuurlijkPersoon; - } - - /** - * Sets the value of the nietNatuurlijkPersoon property. - * - * @param value - * allowed object is - * {@link KadasterNietNatuurlijkPersoon } - * - */ - public void setNietNatuurlijkPersoon(KadasterNietNatuurlijkPersoon value) { - this.nietNatuurlijkPersoon = value; - } - - /** - * Gets the value of the aantekeningBeschikkingsbevoegdheid property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isAantekeningBeschikkingsbevoegdheid() { - return aantekeningBeschikkingsbevoegdheid; - } - - /** - * Sets the value of the aantekeningBeschikkingsbevoegdheid property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setAantekeningBeschikkingsbevoegdheid(Boolean value) { - this.aantekeningBeschikkingsbevoegdheid = value; - } - - /** - * Gets the value of the woonlocatie property. - * - * @return - * possible object is - * {@link KadasterLocatie } - * - */ - public KadasterLocatie getWoonlocatie() { - return woonlocatie; - } - - /** - * Sets the value of the woonlocatie property. - * - * @param value - * allowed object is - * {@link KadasterLocatie } - * - */ - public void setWoonlocatie(KadasterLocatie value) { - this.woonlocatie = value; - } - - /** - * Gets the value of the postlocatie property. - * - * @return - * possible object is - * {@link KadasterLocatie } - * - */ - public KadasterLocatie getPostlocatie() { - return postlocatie; - } - - /** - * Sets the value of the postlocatie property. - * - * @param value - * allowed object is - * {@link KadasterLocatie } - * - */ - public void setPostlocatie(KadasterLocatie value) { - this.postlocatie = value; - } - - /** - * Gets the value of the domicilieKeuzes property. - * - * @return - * possible object is - * {@link KadasterDomicilieKeuzeLijst } - * - */ - public KadasterDomicilieKeuzeLijst getDomicilieKeuzes() { - return domicilieKeuzes; - } - - /** - * Sets the value of the domicilieKeuzes property. - * - * @param value - * allowed object is - * {@link KadasterDomicilieKeuzeLijst } - * - */ - public void setDomicilieKeuzes(KadasterDomicilieKeuzeLijst value) { - this.domicilieKeuzes = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoonArray.java deleted file mode 100644 index c00f3d4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoonArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterPersoonArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterPersoonArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterPersoon" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterPersoonArray", propOrder = { - "item" -}) -public class KadasterPersoonArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterPersoon } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoonLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoonLijst.java deleted file mode 100644 index 50f8032..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterPersoonLijst.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterPersoonLijst complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterPersoonLijst">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="personen" type="{http://www.webservices.nl/soap/}kadasterPersoonArray"/>
- *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterPersoonLijst", propOrder = { - -}) -public class KadasterPersoonLijst { - - @XmlElement(required = true) - protected KadasterPersoonArray personen; - @XmlElement(name = "indicatie_compleet") - protected boolean indicatieCompleet; - - /** - * Gets the value of the personen property. - * - * @return - * possible object is - * {@link KadasterPersoonArray } - * - */ - public KadasterPersoonArray getPersonen() { - return personen; - } - - /** - * Sets the value of the personen property. - * - * @param value - * allowed object is - * {@link KadasterPersoonArray } - * - */ - public void setPersonen(KadasterPersoonArray value) { - this.personen = value; - } - - /** - * Gets the value of the indicatieCompleet property. - * - */ - public boolean isIndicatieCompleet() { - return indicatieCompleet; - } - - /** - * Sets the value of the indicatieCompleet property. - * - */ - public void setIndicatieCompleet(boolean value) { - this.indicatieCompleet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeel.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeel.java deleted file mode 100644 index 0489640..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeel.java +++ /dev/null @@ -1,308 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterStukdeel complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterStukdeel">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="aard_stukdeel_omschrijving" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="hypotheek" type="{http://www.webservices.nl/soap/}kadasterHypotheek" minOccurs="0"/>
- *         <element name="schuldeisers_beslagleggers" type="{http://www.webservices.nl/soap/}kadasterPersoonLijst" minOccurs="0"/>
- *         <element name="vordering" type="{http://www.webservices.nl/soap/}kadasterBedrag" minOccurs="0"/>
- *         <element name="rechten" type="{http://www.webservices.nl/soap/}kadasterStukdeelRechtArray" minOccurs="0"/>
- *         <element name="onroerende_zaken" type="{http://www.webservices.nl/soap/}kadasterBeknoptOnroerendeZaakArray" minOccurs="0"/>
- *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="stukdeel_relaties" type="{http://www.webservices.nl/soap/}kadasterStukdeelReferentiesLijst" minOccurs="0"/>
- *         <element name="hoort_bij" type="{http://www.webservices.nl/soap/}kadasterGerelateerdStukdeelArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterStukdeel", propOrder = { - -}) -public class KadasterStukdeel { - - @XmlElement(required = true) - protected String id; - @XmlElement(name = "aard_stukdeel_omschrijving", required = true) - protected String aardStukdeelOmschrijving; - protected KadasterHypotheek hypotheek; - @XmlElement(name = "schuldeisers_beslagleggers") - protected KadasterPersoonLijst schuldeisersBeslagleggers; - protected KadasterBedrag vordering; - protected KadasterStukdeelRechtArray rechten; - @XmlElement(name = "onroerende_zaken") - protected KadasterBeknoptOnroerendeZaakArray onroerendeZaken; - protected String omschrijving; - @XmlElement(name = "stukdeel_relaties") - protected KadasterStukdeelReferentiesLijst stukdeelRelaties; - @XmlElement(name = "hoort_bij") - protected KadasterGerelateerdStukdeelArray hoortBij; - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the aardStukdeelOmschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAardStukdeelOmschrijving() { - return aardStukdeelOmschrijving; - } - - /** - * Sets the value of the aardStukdeelOmschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAardStukdeelOmschrijving(String value) { - this.aardStukdeelOmschrijving = value; - } - - /** - * Gets the value of the hypotheek property. - * - * @return - * possible object is - * {@link KadasterHypotheek } - * - */ - public KadasterHypotheek getHypotheek() { - return hypotheek; - } - - /** - * Sets the value of the hypotheek property. - * - * @param value - * allowed object is - * {@link KadasterHypotheek } - * - */ - public void setHypotheek(KadasterHypotheek value) { - this.hypotheek = value; - } - - /** - * Gets the value of the schuldeisersBeslagleggers property. - * - * @return - * possible object is - * {@link KadasterPersoonLijst } - * - */ - public KadasterPersoonLijst getSchuldeisersBeslagleggers() { - return schuldeisersBeslagleggers; - } - - /** - * Sets the value of the schuldeisersBeslagleggers property. - * - * @param value - * allowed object is - * {@link KadasterPersoonLijst } - * - */ - public void setSchuldeisersBeslagleggers(KadasterPersoonLijst value) { - this.schuldeisersBeslagleggers = value; - } - - /** - * Gets the value of the vordering property. - * - * @return - * possible object is - * {@link KadasterBedrag } - * - */ - public KadasterBedrag getVordering() { - return vordering; - } - - /** - * Sets the value of the vordering property. - * - * @param value - * allowed object is - * {@link KadasterBedrag } - * - */ - public void setVordering(KadasterBedrag value) { - this.vordering = value; - } - - /** - * Gets the value of the rechten property. - * - * @return - * possible object is - * {@link KadasterStukdeelRechtArray } - * - */ - public KadasterStukdeelRechtArray getRechten() { - return rechten; - } - - /** - * Sets the value of the rechten property. - * - * @param value - * allowed object is - * {@link KadasterStukdeelRechtArray } - * - */ - public void setRechten(KadasterStukdeelRechtArray value) { - this.rechten = value; - } - - /** - * Gets the value of the onroerendeZaken property. - * - * @return - * possible object is - * {@link KadasterBeknoptOnroerendeZaakArray } - * - */ - public KadasterBeknoptOnroerendeZaakArray getOnroerendeZaken() { - return onroerendeZaken; - } - - /** - * Sets the value of the onroerendeZaken property. - * - * @param value - * allowed object is - * {@link KadasterBeknoptOnroerendeZaakArray } - * - */ - public void setOnroerendeZaken(KadasterBeknoptOnroerendeZaakArray value) { - this.onroerendeZaken = value; - } - - /** - * Gets the value of the omschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijving() { - return omschrijving; - } - - /** - * Sets the value of the omschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijving(String value) { - this.omschrijving = value; - } - - /** - * Gets the value of the stukdeelRelaties property. - * - * @return - * possible object is - * {@link KadasterStukdeelReferentiesLijst } - * - */ - public KadasterStukdeelReferentiesLijst getStukdeelRelaties() { - return stukdeelRelaties; - } - - /** - * Sets the value of the stukdeelRelaties property. - * - * @param value - * allowed object is - * {@link KadasterStukdeelReferentiesLijst } - * - */ - public void setStukdeelRelaties(KadasterStukdeelReferentiesLijst value) { - this.stukdeelRelaties = value; - } - - /** - * Gets the value of the hoortBij property. - * - * @return - * possible object is - * {@link KadasterGerelateerdStukdeelArray } - * - */ - public KadasterGerelateerdStukdeelArray getHoortBij() { - return hoortBij; - } - - /** - * Sets the value of the hoortBij property. - * - * @param value - * allowed object is - * {@link KadasterGerelateerdStukdeelArray } - * - */ - public void setHoortBij(KadasterGerelateerdStukdeelArray value) { - this.hoortBij = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelArray.java deleted file mode 100644 index 63287fa..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterStukdeelArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterStukdeelArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterStukdeel" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterStukdeelArray", propOrder = { - "item" -}) -public class KadasterStukdeelArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterStukdeel } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelRecht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelRecht.java deleted file mode 100644 index 41d2baf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelRecht.java +++ /dev/null @@ -1,230 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterStukdeelRecht complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterStukdeelRecht">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="aandeel_in_recht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="totaal_aandeel_in_recht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gerelateerd_recht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterStukdeelRecht", propOrder = { - -}) -public class KadasterStukdeelRecht { - - @XmlElement(required = true) - protected String id; - @XmlElement(required = true) - protected String type; - protected String omschrijving; - @XmlElement(name = "aandeel_in_recht") - protected String aandeelInRecht; - @XmlElement(name = "totaal_aandeel_in_recht") - protected String totaalAandeelInRecht; - @XmlElement(name = "object_id", required = true) - protected String objectId; - @XmlElement(name = "gerelateerd_recht") - protected String gerelateerdRecht; - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the omschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijving() { - return omschrijving; - } - - /** - * Sets the value of the omschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijving(String value) { - this.omschrijving = value; - } - - /** - * Gets the value of the aandeelInRecht property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAandeelInRecht() { - return aandeelInRecht; - } - - /** - * Sets the value of the aandeelInRecht property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAandeelInRecht(String value) { - this.aandeelInRecht = value; - } - - /** - * Gets the value of the totaalAandeelInRecht property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTotaalAandeelInRecht() { - return totaalAandeelInRecht; - } - - /** - * Sets the value of the totaalAandeelInRecht property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTotaalAandeelInRecht(String value) { - this.totaalAandeelInRecht = value; - } - - /** - * Gets the value of the objectId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjectId() { - return objectId; - } - - /** - * Sets the value of the objectId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjectId(String value) { - this.objectId = value; - } - - /** - * Gets the value of the gerelateerdRecht property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGerelateerdRecht() { - return gerelateerdRecht; - } - - /** - * Sets the value of the gerelateerdRecht property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGerelateerdRecht(String value) { - this.gerelateerdRecht = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelRechtArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelRechtArray.java deleted file mode 100644 index a5560b6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelRechtArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterStukdeelRechtArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterStukdeelRechtArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}kadasterStukdeelRecht" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterStukdeelRechtArray", propOrder = { - "item" -}) -public class KadasterStukdeelRechtArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterStukdeelRecht } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelReferentiesLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelReferentiesLijst.java deleted file mode 100644 index 1fc3520..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterStukdeelReferentiesLijst.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterStukdeelReferentiesLijst complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterStukdeelReferentiesLijst">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="stukdelen" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterStukdeelReferentiesLijst", propOrder = { - -}) -public class KadasterStukdeelReferentiesLijst { - - @XmlElement(required = true) - protected StringArray stukdelen; - @XmlElement(name = "indicatie_compleet") - protected Boolean indicatieCompleet; - - /** - * Gets the value of the stukdelen property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getStukdelen() { - return stukdelen; - } - - /** - * Sets the value of the stukdelen property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setStukdelen(StringArray value) { - this.stukdelen = value; - } - - /** - * Gets the value of the indicatieCompleet property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicatieCompleet() { - return indicatieCompleet; - } - - /** - * Sets the value of the indicatieCompleet property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicatieCompleet(Boolean value) { - this.indicatieCompleet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelRequestType.java deleted file mode 100644 index f579bb5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelRequestType.java +++ /dev/null @@ -1,231 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterUittrekselKadastraleKaartPerceelRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterUittrekselKadastraleKaartPerceelRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterUittrekselKadastraleKaartPerceelRequestType", propOrder = { - -}) -public class KadasterUittrekselKadastraleKaartPerceelRequestType { - - @XmlElement(required = true) - protected String gemeentecode; - @XmlElement(required = true) - protected String gemeentenaam; - @XmlElement(required = true) - protected String sectie; - @XmlElement(required = true) - protected String perceelnummer; - @XmlElement(required = true) - protected String relatiecode; - @XmlElement(required = true) - protected String volgnummer; - @XmlElement(required = true) - protected String format; - - /** - * Gets the value of the gemeentecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentecode() { - return gemeentecode; - } - - /** - * Sets the value of the gemeentecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentecode(String value) { - this.gemeentecode = value; - } - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the sectie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectie() { - return sectie; - } - - /** - * Sets the value of the sectie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectie(String value) { - this.sectie = value; - } - - /** - * Gets the value of the perceelnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPerceelnummer(String value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the relatiecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRelatiecode() { - return relatiecode; - } - - /** - * Sets the value of the relatiecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRelatiecode(String value) { - this.relatiecode = value; - } - - /** - * Gets the value of the volgnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVolgnummer() { - return volgnummer; - } - - /** - * Sets the value of the volgnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVolgnummer(String value) { - this.volgnummer = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelResponseType.java deleted file mode 100644 index 70efc52..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterUittrekselKadastraleKaartPerceelResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterUittrekselKadastraleKaartPerceelResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="uittreksel" type="{http://www.webservices.nl/soap/}UittrekselKadastraleKaart"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterUittrekselKadastraleKaartPerceelResponseType", propOrder = { - -}) -public class KadasterUittrekselKadastraleKaartPerceelResponseType { - - @XmlElement(required = true) - protected UittrekselKadastraleKaart uittreksel; - - /** - * Gets the value of the uittreksel property. - * - * @return - * possible object is - * {@link UittrekselKadastraleKaart } - * - */ - public UittrekselKadastraleKaart getUittreksel() { - return uittreksel; - } - - /** - * Sets the value of the uittreksel property. - * - * @param value - * allowed object is - * {@link UittrekselKadastraleKaart } - * - */ - public void setUittreksel(UittrekselKadastraleKaart value) { - this.uittreksel = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV2RequestType.java deleted file mode 100644 index ad82ace..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV2RequestType.java +++ /dev/null @@ -1,231 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterUittrekselKadastraleKaartPerceelV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterUittrekselKadastraleKaartPerceelV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterUittrekselKadastraleKaartPerceelV2RequestType", propOrder = { - -}) -public class KadasterUittrekselKadastraleKaartPerceelV2RequestType { - - @XmlElement(required = true) - protected String gemeentecode; - @XmlElement(required = true) - protected String gemeentenaam; - @XmlElement(required = true) - protected String sectie; - @XmlElement(required = true) - protected String perceelnummer; - @XmlElement(required = true) - protected String relatiecode; - @XmlElement(required = true) - protected String volgnummer; - @XmlElement(required = true) - protected String format; - - /** - * Gets the value of the gemeentecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentecode() { - return gemeentecode; - } - - /** - * Sets the value of the gemeentecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentecode(String value) { - this.gemeentecode = value; - } - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the sectie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectie() { - return sectie; - } - - /** - * Sets the value of the sectie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectie(String value) { - this.sectie = value; - } - - /** - * Gets the value of the perceelnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPerceelnummer(String value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the relatiecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRelatiecode() { - return relatiecode; - } - - /** - * Sets the value of the relatiecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRelatiecode(String value) { - this.relatiecode = value; - } - - /** - * Gets the value of the volgnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVolgnummer() { - return volgnummer; - } - - /** - * Sets the value of the volgnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVolgnummer(String value) { - this.volgnummer = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV2ResponseType.java deleted file mode 100644 index 52c3221..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterUittrekselKadastraleKaartPerceelV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterUittrekselKadastraleKaartPerceelV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterUittrekselKadastraleKaartResultaat"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterUittrekselKadastraleKaartPerceelV2ResponseType", propOrder = { - -}) -public class KadasterUittrekselKadastraleKaartPerceelV2ResponseType { - - @XmlElement(required = true) - protected KadasterUittrekselKadastraleKaartResultaat out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KadasterUittrekselKadastraleKaartResultaat } - * - */ - public KadasterUittrekselKadastraleKaartResultaat getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KadasterUittrekselKadastraleKaartResultaat } - * - */ - public void setOut(KadasterUittrekselKadastraleKaartResultaat value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV3RequestType.java deleted file mode 100644 index 4ca1f91..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV3RequestType.java +++ /dev/null @@ -1,231 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterUittrekselKadastraleKaartPerceelV3RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterUittrekselKadastraleKaartPerceelV3RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterUittrekselKadastraleKaartPerceelV3RequestType", propOrder = { - -}) -public class KadasterUittrekselKadastraleKaartPerceelV3RequestType { - - @XmlElement(required = true) - protected String gemeentecode; - @XmlElement(required = true) - protected String gemeentenaam; - @XmlElement(required = true) - protected String sectie; - @XmlElement(required = true) - protected String perceelnummer; - @XmlElement(required = true) - protected String relatiecode; - @XmlElement(required = true) - protected String volgnummer; - @XmlElement(required = true) - protected String format; - - /** - * Gets the value of the gemeentecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentecode() { - return gemeentecode; - } - - /** - * Sets the value of the gemeentecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentecode(String value) { - this.gemeentecode = value; - } - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the sectie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectie() { - return sectie; - } - - /** - * Sets the value of the sectie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectie(String value) { - this.sectie = value; - } - - /** - * Gets the value of the perceelnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPerceelnummer(String value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the relatiecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRelatiecode() { - return relatiecode; - } - - /** - * Sets the value of the relatiecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRelatiecode(String value) { - this.relatiecode = value; - } - - /** - * Gets the value of the volgnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVolgnummer() { - return volgnummer; - } - - /** - * Sets the value of the volgnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVolgnummer(String value) { - this.volgnummer = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV3ResponseType.java deleted file mode 100644 index c0a3684..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPerceelV3ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterUittrekselKadastraleKaartPerceelV3ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterUittrekselKadastraleKaartPerceelV3ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterUittrekselKadastraleKaartResultaatV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterUittrekselKadastraleKaartPerceelV3ResponseType", propOrder = { - -}) -public class KadasterUittrekselKadastraleKaartPerceelV3ResponseType { - - @XmlElement(required = true) - protected KadasterUittrekselKadastraleKaartResultaatV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KadasterUittrekselKadastraleKaartResultaatV2 } - * - */ - public KadasterUittrekselKadastraleKaartResultaatV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KadasterUittrekselKadastraleKaartResultaatV2 } - * - */ - public void setOut(KadasterUittrekselKadastraleKaartResultaatV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeRequestType.java deleted file mode 100644 index dc5edaa..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeRequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterUittrekselKadastraleKaartPostcodeRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterUittrekselKadastraleKaartPostcodeRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterUittrekselKadastraleKaartPostcodeRequestType", propOrder = { - -}) -public class KadasterUittrekselKadastraleKaartPostcodeRequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - @XmlElement(required = true) - protected String format; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeResponseType.java deleted file mode 100644 index 38a18ca..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterUittrekselKadastraleKaartPostcodeResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterUittrekselKadastraleKaartPostcodeResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="uittreksel" type="{http://www.webservices.nl/soap/}UittrekselKadastraleKaart"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterUittrekselKadastraleKaartPostcodeResponseType", propOrder = { - -}) -public class KadasterUittrekselKadastraleKaartPostcodeResponseType { - - @XmlElement(required = true) - protected UittrekselKadastraleKaart uittreksel; - - /** - * Gets the value of the uittreksel property. - * - * @return - * possible object is - * {@link UittrekselKadastraleKaart } - * - */ - public UittrekselKadastraleKaart getUittreksel() { - return uittreksel; - } - - /** - * Sets the value of the uittreksel property. - * - * @param value - * allowed object is - * {@link UittrekselKadastraleKaart } - * - */ - public void setUittreksel(UittrekselKadastraleKaart value) { - this.uittreksel = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV2RequestType.java deleted file mode 100644 index 07b6ca0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV2RequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterUittrekselKadastraleKaartPostcodeV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterUittrekselKadastraleKaartPostcodeV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterUittrekselKadastraleKaartPostcodeV2RequestType", propOrder = { - -}) -public class KadasterUittrekselKadastraleKaartPostcodeV2RequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - @XmlElement(required = true) - protected String format; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV2ResponseType.java deleted file mode 100644 index 1ad4a63..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterUittrekselKadastraleKaartPostcodeV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterUittrekselKadastraleKaartPostcodeV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterUittrekselKadastraleKaartResultaat"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterUittrekselKadastraleKaartPostcodeV2ResponseType", propOrder = { - -}) -public class KadasterUittrekselKadastraleKaartPostcodeV2ResponseType { - - @XmlElement(required = true) - protected KadasterUittrekselKadastraleKaartResultaat out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KadasterUittrekselKadastraleKaartResultaat } - * - */ - public KadasterUittrekselKadastraleKaartResultaat getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KadasterUittrekselKadastraleKaartResultaat } - * - */ - public void setOut(KadasterUittrekselKadastraleKaartResultaat value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV3RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV3RequestType.java deleted file mode 100644 index 3579519..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV3RequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterUittrekselKadastraleKaartPostcodeV3RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterUittrekselKadastraleKaartPostcodeV3RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterUittrekselKadastraleKaartPostcodeV3RequestType", propOrder = { - -}) -public class KadasterUittrekselKadastraleKaartPostcodeV3RequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - @XmlElement(required = true) - protected String format; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV3ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV3ResponseType.java deleted file mode 100644 index b4dcb43..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartPostcodeV3ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterUittrekselKadastraleKaartPostcodeV3ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterUittrekselKadastraleKaartPostcodeV3ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterUittrekselKadastraleKaartResultaatV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterUittrekselKadastraleKaartPostcodeV3ResponseType", propOrder = { - -}) -public class KadasterUittrekselKadastraleKaartPostcodeV3ResponseType { - - @XmlElement(required = true) - protected KadasterUittrekselKadastraleKaartResultaatV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KadasterUittrekselKadastraleKaartResultaatV2 } - * - */ - public KadasterUittrekselKadastraleKaartResultaatV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KadasterUittrekselKadastraleKaartResultaatV2 } - * - */ - public void setOut(KadasterUittrekselKadastraleKaartResultaatV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartResultaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartResultaat.java deleted file mode 100644 index 3699d7d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartResultaat.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterUittrekselKadastraleKaartResultaat complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterUittrekselKadastraleKaartResultaat">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="overzicht" type="{http://www.webservices.nl/soap/}kadasterOverzicht" minOccurs="0"/>
- *         <element name="kadastrale_kaart" type="{http://www.webservices.nl/soap/}KadasterUittrekselKadastraleKaartV2" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterUittrekselKadastraleKaartResultaat", propOrder = { - -}) -public class KadasterUittrekselKadastraleKaartResultaat { - - protected KadasterOverzicht overzicht; - @XmlElement(name = "kadastrale_kaart") - protected KadasterUittrekselKadastraleKaartV2 kadastraleKaart; - - /** - * Gets the value of the overzicht property. - * - * @return - * possible object is - * {@link KadasterOverzicht } - * - */ - public KadasterOverzicht getOverzicht() { - return overzicht; - } - - /** - * Sets the value of the overzicht property. - * - * @param value - * allowed object is - * {@link KadasterOverzicht } - * - */ - public void setOverzicht(KadasterOverzicht value) { - this.overzicht = value; - } - - /** - * Gets the value of the kadastraleKaart property. - * - * @return - * possible object is - * {@link KadasterUittrekselKadastraleKaartV2 } - * - */ - public KadasterUittrekselKadastraleKaartV2 getKadastraleKaart() { - return kadastraleKaart; - } - - /** - * Sets the value of the kadastraleKaart property. - * - * @param value - * allowed object is - * {@link KadasterUittrekselKadastraleKaartV2 } - * - */ - public void setKadastraleKaart(KadasterUittrekselKadastraleKaartV2 value) { - this.kadastraleKaart = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartResultaatV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartResultaatV2.java deleted file mode 100644 index f9c6f9a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartResultaatV2.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterUittrekselKadastraleKaartResultaatV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterUittrekselKadastraleKaartResultaatV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="overzicht" type="{http://www.webservices.nl/soap/}kadasterOverzichtV2" minOccurs="0"/>
- *         <element name="kadastrale_kaart" type="{http://www.webservices.nl/soap/}KadasterUittrekselKadastraleKaartV2" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterUittrekselKadastraleKaartResultaatV2", propOrder = { - -}) -public class KadasterUittrekselKadastraleKaartResultaatV2 { - - protected KadasterOverzichtV2 overzicht; - @XmlElement(name = "kadastrale_kaart") - protected KadasterUittrekselKadastraleKaartV2 kadastraleKaart; - - /** - * Gets the value of the overzicht property. - * - * @return - * possible object is - * {@link KadasterOverzichtV2 } - * - */ - public KadasterOverzichtV2 getOverzicht() { - return overzicht; - } - - /** - * Sets the value of the overzicht property. - * - * @param value - * allowed object is - * {@link KadasterOverzichtV2 } - * - */ - public void setOverzicht(KadasterOverzichtV2 value) { - this.overzicht = value; - } - - /** - * Gets the value of the kadastraleKaart property. - * - * @return - * possible object is - * {@link KadasterUittrekselKadastraleKaartV2 } - * - */ - public KadasterUittrekselKadastraleKaartV2 getKadastraleKaart() { - return kadastraleKaart; - } - - /** - * Sets the value of the kadastraleKaart property. - * - * @param value - * allowed object is - * {@link KadasterUittrekselKadastraleKaartV2 } - * - */ - public void setKadastraleKaart(KadasterUittrekselKadastraleKaartV2 value) { - this.kadastraleKaart = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartV2.java deleted file mode 100644 index 667ad2b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterUittrekselKadastraleKaartV2.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterUittrekselKadastraleKaartV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterUittrekselKadastraleKaartV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="kaart" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="afbeeldingen" type="{http://www.webservices.nl/soap/}base64BinaryArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterUittrekselKadastraleKaartV2", propOrder = { - -}) -public class KadasterUittrekselKadastraleKaartV2 { - - @XmlElement(required = true) - protected byte[] kaart; - protected Base64BinaryArray afbeeldingen; - - /** - * Gets the value of the kaart property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getKaart() { - return kaart; - } - - /** - * Sets the value of the kaart property. - * - * @param value - * allowed object is - * byte[] - */ - public void setKaart(byte[] value) { - this.kaart = value; - } - - /** - * Gets the value of the afbeeldingen property. - * - * @return - * possible object is - * {@link Base64BinaryArray } - * - */ - public Base64BinaryArray getAfbeeldingen() { - return afbeeldingen; - } - - /** - * Sets the value of the afbeeldingen property. - * - * @param value - * allowed object is - * {@link Base64BinaryArray } - * - */ - public void setAfbeeldingen(Base64BinaryArray value) { - this.afbeeldingen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AangebodenStuk.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AangebodenStuk.java deleted file mode 100644 index 082f151..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AangebodenStuk.java +++ /dev/null @@ -1,340 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for KadasterV2AangebodenStuk complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2AangebodenStuk">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="aard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="deel_en_nummer" type="{http://www.webservices.nl/soap/}KadasterV2DeelEnNummer" minOccurs="0"/>
- *         <element name="verklaring_bewaarder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="toelichting_bewaarder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="tijdstip_aanbieding" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="tijdstip_ondertekening" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="status_stuk_or" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="indicatie_alle_objecten_betrokken" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="verzoeken" type="{http://www.webservices.nl/soap/}KadasterV2VerzoekArray" minOccurs="0"/>
- *         <element name="stukdelen" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2AangebodenStuk", propOrder = { - -}) -public class KadasterV2AangebodenStuk { - - @XmlElement(required = true) - protected String identificatie; - protected String aard; - @XmlElement(name = "deel_en_nummer") - protected KadasterV2DeelEnNummer deelEnNummer; - @XmlElement(name = "verklaring_bewaarder") - protected String verklaringBewaarder; - @XmlElement(name = "toelichting_bewaarder") - protected String toelichtingBewaarder; - @XmlElement(name = "tijdstip_aanbieding") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar tijdstipAanbieding; - @XmlElement(name = "tijdstip_ondertekening") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar tijdstipOndertekening; - @XmlElement(name = "status_stuk_or") - protected String statusStukOr; - @XmlElement(name = "indicatie_alle_objecten_betrokken") - protected Boolean indicatieAlleObjectenBetrokken; - protected KadasterV2VerzoekArray verzoeken; - protected KadasterV2StukdeelArray stukdelen; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the aard property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAard() { - return aard; - } - - /** - * Sets the value of the aard property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAard(String value) { - this.aard = value; - } - - /** - * Gets the value of the deelEnNummer property. - * - * @return - * possible object is - * {@link KadasterV2DeelEnNummer } - * - */ - public KadasterV2DeelEnNummer getDeelEnNummer() { - return deelEnNummer; - } - - /** - * Sets the value of the deelEnNummer property. - * - * @param value - * allowed object is - * {@link KadasterV2DeelEnNummer } - * - */ - public void setDeelEnNummer(KadasterV2DeelEnNummer value) { - this.deelEnNummer = value; - } - - /** - * Gets the value of the verklaringBewaarder property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerklaringBewaarder() { - return verklaringBewaarder; - } - - /** - * Sets the value of the verklaringBewaarder property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerklaringBewaarder(String value) { - this.verklaringBewaarder = value; - } - - /** - * Gets the value of the toelichtingBewaarder property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToelichtingBewaarder() { - return toelichtingBewaarder; - } - - /** - * Sets the value of the toelichtingBewaarder property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToelichtingBewaarder(String value) { - this.toelichtingBewaarder = value; - } - - /** - * Gets the value of the tijdstipAanbieding property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTijdstipAanbieding() { - return tijdstipAanbieding; - } - - /** - * Sets the value of the tijdstipAanbieding property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTijdstipAanbieding(XMLGregorianCalendar value) { - this.tijdstipAanbieding = value; - } - - /** - * Gets the value of the tijdstipOndertekening property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTijdstipOndertekening() { - return tijdstipOndertekening; - } - - /** - * Sets the value of the tijdstipOndertekening property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTijdstipOndertekening(XMLGregorianCalendar value) { - this.tijdstipOndertekening = value; - } - - /** - * Gets the value of the statusStukOr property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatusStukOr() { - return statusStukOr; - } - - /** - * Sets the value of the statusStukOr property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatusStukOr(String value) { - this.statusStukOr = value; - } - - /** - * Gets the value of the indicatieAlleObjectenBetrokken property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicatieAlleObjectenBetrokken() { - return indicatieAlleObjectenBetrokken; - } - - /** - * Sets the value of the indicatieAlleObjectenBetrokken property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicatieAlleObjectenBetrokken(Boolean value) { - this.indicatieAlleObjectenBetrokken = value; - } - - /** - * Gets the value of the verzoeken property. - * - * @return - * possible object is - * {@link KadasterV2VerzoekArray } - * - */ - public KadasterV2VerzoekArray getVerzoeken() { - return verzoeken; - } - - /** - * Sets the value of the verzoeken property. - * - * @param value - * allowed object is - * {@link KadasterV2VerzoekArray } - * - */ - public void setVerzoeken(KadasterV2VerzoekArray value) { - this.verzoeken = value; - } - - /** - * Gets the value of the stukdelen property. - * - * @return - * possible object is - * {@link KadasterV2StukdeelArray } - * - */ - public KadasterV2StukdeelArray getStukdelen() { - return stukdelen; - } - - /** - * Sets the value of the stukdelen property. - * - * @param value - * allowed object is - * {@link KadasterV2StukdeelArray } - * - */ - public void setStukdelen(KadasterV2StukdeelArray value) { - this.stukdelen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AangebodenStukArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AangebodenStukArray.java deleted file mode 100644 index e5dac06..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AangebodenStukArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2AangebodenStukArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2AangebodenStukArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2AangebodenStuk" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2AangebodenStukArray", propOrder = { - "item" -}) -public class KadasterV2AangebodenStukArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2AangebodenStuk } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Aantekening.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Aantekening.java deleted file mode 100644 index 9a7d607..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Aantekening.java +++ /dev/null @@ -1,391 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for KadasterV2Aantekening complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Aantekening">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="aard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="einddatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="einddatum_recht" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="herkaveling_bloknummer" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="betreft" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak" minOccurs="0"/>
- *         <element name="hypotheken" type="{http://www.webservices.nl/soap/}KadasterV2HypotheekArray" minOccurs="0"/>
- *         <element name="beslagleggingen" type="{http://www.webservices.nl/soap/}KadasterV2BeslagleggingArray" minOccurs="0"/>
- *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
- *         <element name="tenaamstellingen" type="{http://www.webservices.nl/soap/}KadasterV2TenaamstellingArray" minOccurs="0"/>
- *         <element name="gebaseerd_op" type="{http://www.webservices.nl/soap/}KadasterV2Stukdeel" minOccurs="0"/>
- *         <element name="betrokken_personen" type="{http://www.webservices.nl/soap/}KadasterV2Personen" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Aantekening", propOrder = { - -}) -public class KadasterV2Aantekening { - - @XmlElement(required = true) - protected String identificatie; - protected String aard; - protected String omschrijving; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar einddatum; - @XmlElement(name = "einddatum_recht") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar einddatumRecht; - @XmlElement(name = "herkaveling_bloknummer") - protected BigInteger herkavelingBloknummer; - protected KadasterV2OnroerendeZaak betreft; - protected KadasterV2HypotheekArray hypotheken; - protected KadasterV2BeslagleggingArray beslagleggingen; - @XmlElement(name = "vermeld_in") - protected KadasterV2StukdeelArray vermeldIn; - protected KadasterV2TenaamstellingArray tenaamstellingen; - @XmlElement(name = "gebaseerd_op") - protected KadasterV2Stukdeel gebaseerdOp; - @XmlElement(name = "betrokken_personen") - protected KadasterV2Personen betrokkenPersonen; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the aard property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAard() { - return aard; - } - - /** - * Sets the value of the aard property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAard(String value) { - this.aard = value; - } - - /** - * Gets the value of the omschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijving() { - return omschrijving; - } - - /** - * Sets the value of the omschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijving(String value) { - this.omschrijving = value; - } - - /** - * Gets the value of the einddatum property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEinddatum() { - return einddatum; - } - - /** - * Sets the value of the einddatum property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEinddatum(XMLGregorianCalendar value) { - this.einddatum = value; - } - - /** - * Gets the value of the einddatumRecht property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEinddatumRecht() { - return einddatumRecht; - } - - /** - * Sets the value of the einddatumRecht property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEinddatumRecht(XMLGregorianCalendar value) { - this.einddatumRecht = value; - } - - /** - * Gets the value of the herkavelingBloknummer property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getHerkavelingBloknummer() { - return herkavelingBloknummer; - } - - /** - * Sets the value of the herkavelingBloknummer property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setHerkavelingBloknummer(BigInteger value) { - this.herkavelingBloknummer = value; - } - - /** - * Gets the value of the betreft property. - * - * @return - * possible object is - * {@link KadasterV2OnroerendeZaak } - * - */ - public KadasterV2OnroerendeZaak getBetreft() { - return betreft; - } - - /** - * Sets the value of the betreft property. - * - * @param value - * allowed object is - * {@link KadasterV2OnroerendeZaak } - * - */ - public void setBetreft(KadasterV2OnroerendeZaak value) { - this.betreft = value; - } - - /** - * Gets the value of the hypotheken property. - * - * @return - * possible object is - * {@link KadasterV2HypotheekArray } - * - */ - public KadasterV2HypotheekArray getHypotheken() { - return hypotheken; - } - - /** - * Sets the value of the hypotheken property. - * - * @param value - * allowed object is - * {@link KadasterV2HypotheekArray } - * - */ - public void setHypotheken(KadasterV2HypotheekArray value) { - this.hypotheken = value; - } - - /** - * Gets the value of the beslagleggingen property. - * - * @return - * possible object is - * {@link KadasterV2BeslagleggingArray } - * - */ - public KadasterV2BeslagleggingArray getBeslagleggingen() { - return beslagleggingen; - } - - /** - * Sets the value of the beslagleggingen property. - * - * @param value - * allowed object is - * {@link KadasterV2BeslagleggingArray } - * - */ - public void setBeslagleggingen(KadasterV2BeslagleggingArray value) { - this.beslagleggingen = value; - } - - /** - * Gets the value of the vermeldIn property. - * - * @return - * possible object is - * {@link KadasterV2StukdeelArray } - * - */ - public KadasterV2StukdeelArray getVermeldIn() { - return vermeldIn; - } - - /** - * Sets the value of the vermeldIn property. - * - * @param value - * allowed object is - * {@link KadasterV2StukdeelArray } - * - */ - public void setVermeldIn(KadasterV2StukdeelArray value) { - this.vermeldIn = value; - } - - /** - * Gets the value of the tenaamstellingen property. - * - * @return - * possible object is - * {@link KadasterV2TenaamstellingArray } - * - */ - public KadasterV2TenaamstellingArray getTenaamstellingen() { - return tenaamstellingen; - } - - /** - * Sets the value of the tenaamstellingen property. - * - * @param value - * allowed object is - * {@link KadasterV2TenaamstellingArray } - * - */ - public void setTenaamstellingen(KadasterV2TenaamstellingArray value) { - this.tenaamstellingen = value; - } - - /** - * Gets the value of the gebaseerdOp property. - * - * @return - * possible object is - * {@link KadasterV2Stukdeel } - * - */ - public KadasterV2Stukdeel getGebaseerdOp() { - return gebaseerdOp; - } - - /** - * Sets the value of the gebaseerdOp property. - * - * @param value - * allowed object is - * {@link KadasterV2Stukdeel } - * - */ - public void setGebaseerdOp(KadasterV2Stukdeel value) { - this.gebaseerdOp = value; - } - - /** - * Gets the value of the betrokkenPersonen property. - * - * @return - * possible object is - * {@link KadasterV2Personen } - * - */ - public KadasterV2Personen getBetrokkenPersonen() { - return betrokkenPersonen; - } - - /** - * Sets the value of the betrokkenPersonen property. - * - * @param value - * allowed object is - * {@link KadasterV2Personen } - * - */ - public void setBetrokkenPersonen(KadasterV2Personen value) { - this.betrokkenPersonen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningArray.java deleted file mode 100644 index 7bebc1e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2AantekeningArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2AantekeningArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Aantekening" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2AantekeningArray", propOrder = { - "item" -}) -public class KadasterV2AantekeningArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2Aantekening } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningWKPB.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningWKPB.java deleted file mode 100644 index e41ce90..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningWKPB.java +++ /dev/null @@ -1,175 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2AantekeningWKPB complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2AantekeningWKPB">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="gemeentelijke_registratie_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="nummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="datum_in_werking" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="omschrijving_publiekrechtelijke_beperking" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2AantekeningWKPB", propOrder = { - -}) -public class KadasterV2AantekeningWKPB { - - protected String omschrijving; - @XmlElement(name = "gemeentelijke_registratie_id") - protected String gemeentelijkeRegistratieId; - protected String nummer; - @XmlElement(name = "datum_in_werking") - protected String datumInWerking; - @XmlElement(name = "omschrijving_publiekrechtelijke_beperking") - protected String omschrijvingPubliekrechtelijkeBeperking; - - /** - * Gets the value of the omschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijving() { - return omschrijving; - } - - /** - * Sets the value of the omschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijving(String value) { - this.omschrijving = value; - } - - /** - * Gets the value of the gemeentelijkeRegistratieId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentelijkeRegistratieId() { - return gemeentelijkeRegistratieId; - } - - /** - * Sets the value of the gemeentelijkeRegistratieId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentelijkeRegistratieId(String value) { - this.gemeentelijkeRegistratieId = value; - } - - /** - * Gets the value of the nummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNummer() { - return nummer; - } - - /** - * Sets the value of the nummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNummer(String value) { - this.nummer = value; - } - - /** - * Gets the value of the datumInWerking property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDatumInWerking() { - return datumInWerking; - } - - /** - * Sets the value of the datumInWerking property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDatumInWerking(String value) { - this.datumInWerking = value; - } - - /** - * Gets the value of the omschrijvingPubliekrechtelijkeBeperking property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijvingPubliekrechtelijkeBeperking() { - return omschrijvingPubliekrechtelijkeBeperking; - } - - /** - * Sets the value of the omschrijvingPubliekrechtelijkeBeperking property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijvingPubliekrechtelijkeBeperking(String value) { - this.omschrijvingPubliekrechtelijkeBeperking = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningWKPBArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningWKPBArray.java deleted file mode 100644 index 41fd115..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AantekeningWKPBArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2AantekeningWKPBArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2AantekeningWKPBArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2AantekeningWKPB" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2AantekeningWKPBArray", propOrder = { - "item" -}) -public class KadasterV2AantekeningWKPBArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2AantekeningWKPB } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Aanvulling.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Aanvulling.java deleted file mode 100644 index 379a2bb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Aanvulling.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2Aanvulling complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Aanvulling">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="aangeboden_stuk" type="{http://www.webservices.nl/soap/}KadasterV2AangebodenStuk"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Aanvulling", propOrder = { - -}) -public class KadasterV2Aanvulling { - - @XmlElement(required = true) - protected String type; - @XmlElement(name = "aangeboden_stuk", required = true) - protected KadasterV2AangebodenStuk aangebodenStuk; - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the aangebodenStuk property. - * - * @return - * possible object is - * {@link KadasterV2AangebodenStuk } - * - */ - public KadasterV2AangebodenStuk getAangebodenStuk() { - return aangebodenStuk; - } - - /** - * Sets the value of the aangebodenStuk property. - * - * @param value - * allowed object is - * {@link KadasterV2AangebodenStuk } - * - */ - public void setAangebodenStuk(KadasterV2AangebodenStuk value) { - this.aangebodenStuk = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AanvullingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AanvullingArray.java deleted file mode 100644 index fe03d26..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AanvullingArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2AanvullingArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2AanvullingArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Aanvulling" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2AanvullingArray", propOrder = { - "item" -}) -public class KadasterV2AanvullingArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2Aanvulling } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AcgIdentificatie.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AcgIdentificatie.java deleted file mode 100644 index dd504fa..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AcgIdentificatie.java +++ /dev/null @@ -1,124 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2AcgIdentificatie complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2AcgIdentificatie">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="akr_registercode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="akr_stukdelen" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="volgnummer_staat75" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2AcgIdentificatie", propOrder = { - -}) -public class KadasterV2AcgIdentificatie { - - @XmlElement(name = "akr_registercode") - protected String akrRegistercode; - @XmlElement(name = "akr_stukdelen") - protected StringArray akrStukdelen; - @XmlElement(name = "volgnummer_staat75") - protected BigInteger volgnummerStaat75; - - /** - * Gets the value of the akrRegistercode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAkrRegistercode() { - return akrRegistercode; - } - - /** - * Sets the value of the akrRegistercode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAkrRegistercode(String value) { - this.akrRegistercode = value; - } - - /** - * Gets the value of the akrStukdelen property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getAkrStukdelen() { - return akrStukdelen; - } - - /** - * Sets the value of the akrStukdelen property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setAkrStukdelen(StringArray value) { - this.akrStukdelen = value; - } - - /** - * Gets the value of the volgnummerStaat75 property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getVolgnummerStaat75() { - return volgnummerStaat75; - } - - /** - * Sets the value of the volgnummerStaat75 property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setVolgnummerStaat75(BigInteger value) { - this.volgnummerStaat75 = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AdresLocatie.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AdresLocatie.java deleted file mode 100644 index 92c064d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AdresLocatie.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2AdresLocatie complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2AdresLocatie">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="locatie_binnenland" type="{http://www.webservices.nl/soap/}KadasterV2LocatieBinnenland" minOccurs="0"/>
- *         <element name="locatie_buitenland" type="{http://www.webservices.nl/soap/}KadasterV2LocatieBuitenland" minOccurs="0"/>
- *         <element name="locatie_postbus" type="{http://www.webservices.nl/soap/}KadasterV2LocatiePostbus" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2AdresLocatie", propOrder = { - -}) -public class KadasterV2AdresLocatie { - - @XmlElement(name = "locatie_binnenland") - protected KadasterV2LocatieBinnenland locatieBinnenland; - @XmlElement(name = "locatie_buitenland") - protected KadasterV2LocatieBuitenland locatieBuitenland; - @XmlElement(name = "locatie_postbus") - protected KadasterV2LocatiePostbus locatiePostbus; - - /** - * Gets the value of the locatieBinnenland property. - * - * @return - * possible object is - * {@link KadasterV2LocatieBinnenland } - * - */ - public KadasterV2LocatieBinnenland getLocatieBinnenland() { - return locatieBinnenland; - } - - /** - * Sets the value of the locatieBinnenland property. - * - * @param value - * allowed object is - * {@link KadasterV2LocatieBinnenland } - * - */ - public void setLocatieBinnenland(KadasterV2LocatieBinnenland value) { - this.locatieBinnenland = value; - } - - /** - * Gets the value of the locatieBuitenland property. - * - * @return - * possible object is - * {@link KadasterV2LocatieBuitenland } - * - */ - public KadasterV2LocatieBuitenland getLocatieBuitenland() { - return locatieBuitenland; - } - - /** - * Sets the value of the locatieBuitenland property. - * - * @param value - * allowed object is - * {@link KadasterV2LocatieBuitenland } - * - */ - public void setLocatieBuitenland(KadasterV2LocatieBuitenland value) { - this.locatieBuitenland = value; - } - - /** - * Gets the value of the locatiePostbus property. - * - * @return - * possible object is - * {@link KadasterV2LocatiePostbus } - * - */ - public KadasterV2LocatiePostbus getLocatiePostbus() { - return locatiePostbus; - } - - /** - * Sets the value of the locatiePostbus property. - * - * @param value - * allowed object is - * {@link KadasterV2LocatiePostbus } - * - */ - public void setLocatiePostbus(KadasterV2LocatiePostbus value) { - this.locatiePostbus = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AdresLocatieArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AdresLocatieArray.java deleted file mode 100644 index f908c8e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2AdresLocatieArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2AdresLocatieArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2AdresLocatieArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2AdresLocatie" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2AdresLocatieArray", propOrder = { - "item" -}) -public class KadasterV2AdresLocatieArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2AdresLocatie } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Bedrag.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Bedrag.java deleted file mode 100644 index 8761d3e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Bedrag.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2Bedrag complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Bedrag">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="som" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="valuta" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Bedrag", propOrder = { - -}) -public class KadasterV2Bedrag { - - protected float som; - @XmlElement(required = true) - protected String valuta; - - /** - * Gets the value of the som property. - * - */ - public float getSom() { - return som; - } - - /** - * Sets the value of the som property. - * - */ - public void setSom(float value) { - this.som = value; - } - - /** - * Gets the value of the valuta property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValuta() { - return valuta; - } - - /** - * Sets the value of the valuta property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValuta(String value) { - this.valuta = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Beslaglegging.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Beslaglegging.java deleted file mode 100644 index 46663c8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Beslaglegging.java +++ /dev/null @@ -1,257 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2Beslaglegging complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Beslaglegging">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="omschrijving_betrokken_recht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="aard_beslag" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="aandeel_in_betrokken_recht" type="{http://www.webservices.nl/soap/}KadasterV2Breuk" minOccurs="0"/>
- *         <element name="onroerende_zaak" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak" minOccurs="0"/>
- *         <element name="personen" type="{http://www.webservices.nl/soap/}KadasterV2Personen" minOccurs="0"/>
- *         <element name="gebaseerd_op" type="{http://www.webservices.nl/soap/}KadasterV2Stukdeel" minOccurs="0"/>
- *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Beslaglegging", propOrder = { - -}) -public class KadasterV2Beslaglegging { - - @XmlElement(required = true) - protected String identificatie; - @XmlElement(name = "omschrijving_betrokken_recht") - protected String omschrijvingBetrokkenRecht; - @XmlElement(name = "aard_beslag", required = true) - protected String aardBeslag; - @XmlElement(name = "aandeel_in_betrokken_recht") - protected KadasterV2Breuk aandeelInBetrokkenRecht; - @XmlElement(name = "onroerende_zaak") - protected KadasterV2OnroerendeZaak onroerendeZaak; - protected KadasterV2Personen personen; - @XmlElement(name = "gebaseerd_op") - protected KadasterV2Stukdeel gebaseerdOp; - @XmlElement(name = "vermeld_in") - protected KadasterV2StukdeelArray vermeldIn; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the omschrijvingBetrokkenRecht property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijvingBetrokkenRecht() { - return omschrijvingBetrokkenRecht; - } - - /** - * Sets the value of the omschrijvingBetrokkenRecht property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijvingBetrokkenRecht(String value) { - this.omschrijvingBetrokkenRecht = value; - } - - /** - * Gets the value of the aardBeslag property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAardBeslag() { - return aardBeslag; - } - - /** - * Sets the value of the aardBeslag property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAardBeslag(String value) { - this.aardBeslag = value; - } - - /** - * Gets the value of the aandeelInBetrokkenRecht property. - * - * @return - * possible object is - * {@link KadasterV2Breuk } - * - */ - public KadasterV2Breuk getAandeelInBetrokkenRecht() { - return aandeelInBetrokkenRecht; - } - - /** - * Sets the value of the aandeelInBetrokkenRecht property. - * - * @param value - * allowed object is - * {@link KadasterV2Breuk } - * - */ - public void setAandeelInBetrokkenRecht(KadasterV2Breuk value) { - this.aandeelInBetrokkenRecht = value; - } - - /** - * Gets the value of the onroerendeZaak property. - * - * @return - * possible object is - * {@link KadasterV2OnroerendeZaak } - * - */ - public KadasterV2OnroerendeZaak getOnroerendeZaak() { - return onroerendeZaak; - } - - /** - * Sets the value of the onroerendeZaak property. - * - * @param value - * allowed object is - * {@link KadasterV2OnroerendeZaak } - * - */ - public void setOnroerendeZaak(KadasterV2OnroerendeZaak value) { - this.onroerendeZaak = value; - } - - /** - * Gets the value of the personen property. - * - * @return - * possible object is - * {@link KadasterV2Personen } - * - */ - public KadasterV2Personen getPersonen() { - return personen; - } - - /** - * Sets the value of the personen property. - * - * @param value - * allowed object is - * {@link KadasterV2Personen } - * - */ - public void setPersonen(KadasterV2Personen value) { - this.personen = value; - } - - /** - * Gets the value of the gebaseerdOp property. - * - * @return - * possible object is - * {@link KadasterV2Stukdeel } - * - */ - public KadasterV2Stukdeel getGebaseerdOp() { - return gebaseerdOp; - } - - /** - * Sets the value of the gebaseerdOp property. - * - * @param value - * allowed object is - * {@link KadasterV2Stukdeel } - * - */ - public void setGebaseerdOp(KadasterV2Stukdeel value) { - this.gebaseerdOp = value; - } - - /** - * Gets the value of the vermeldIn property. - * - * @return - * possible object is - * {@link KadasterV2StukdeelArray } - * - */ - public KadasterV2StukdeelArray getVermeldIn() { - return vermeldIn; - } - - /** - * Sets the value of the vermeldIn property. - * - * @param value - * allowed object is - * {@link KadasterV2StukdeelArray } - * - */ - public void setVermeldIn(KadasterV2StukdeelArray value) { - this.vermeldIn = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BeslagleggingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BeslagleggingArray.java deleted file mode 100644 index aa09109..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BeslagleggingArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2BeslagleggingArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2BeslagleggingArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Beslaglegging" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2BeslagleggingArray", propOrder = { - "item" -}) -public class KadasterV2BeslagleggingArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2Beslaglegging } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Bijlage.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Bijlage.java deleted file mode 100644 index 913649b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Bijlage.java +++ /dev/null @@ -1,98 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for KadasterV2Bijlage complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Bijlage">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="aard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="tijdstip_aanbieding_bijlage" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Bijlage", propOrder = { - -}) -public class KadasterV2Bijlage { - - protected String aard; - @XmlElement(name = "tijdstip_aanbieding_bijlage") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar tijdstipAanbiedingBijlage; - - /** - * Gets the value of the aard property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAard() { - return aard; - } - - /** - * Sets the value of the aard property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAard(String value) { - this.aard = value; - } - - /** - * Gets the value of the tijdstipAanbiedingBijlage property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTijdstipAanbiedingBijlage() { - return tijdstipAanbiedingBijlage; - } - - /** - * Sets the value of the tijdstipAanbiedingBijlage property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTijdstipAanbiedingBijlage(XMLGregorianCalendar value) { - this.tijdstipAanbiedingBijlage = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BijlageArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BijlageArray.java deleted file mode 100644 index 98725bd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BijlageArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2BijlageArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2BijlageArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Bijlage" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2BijlageArray", propOrder = { - "item" -}) -public class KadasterV2BijlageArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2Bijlage } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Breuk.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Breuk.java deleted file mode 100644 index 9a46953..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Breuk.java +++ /dev/null @@ -1,94 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2Breuk complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Breuk">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="teller" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="noemer" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Breuk", propOrder = { - -}) -public class KadasterV2Breuk { - - protected BigInteger teller; - protected BigInteger noemer; - - /** - * Gets the value of the teller property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getTeller() { - return teller; - } - - /** - * Sets the value of the teller property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setTeller(BigInteger value) { - this.teller = value; - } - - /** - * Gets the value of the noemer property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getNoemer() { - return noemer; - } - - /** - * Sets the value of the noemer property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setNoemer(BigInteger value) { - this.noemer = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BronDocumentResponse.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BronDocumentResponse.java deleted file mode 100644 index 4f77d6e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2BronDocumentResponse.java +++ /dev/null @@ -1,65 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2BronDocumentResponse complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2BronDocumentResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2BronDocumentResponse", propOrder = { - -}) -public class KadasterV2BronDocumentResponse { - - protected byte[] document; - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Coordinaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Coordinaat.java deleted file mode 100644 index 2a36204..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Coordinaat.java +++ /dev/null @@ -1,148 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2Coordinaat complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Coordinaat">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identifier" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="rd_coordinaat" type="{http://www.webservices.nl/soap/}KadasterV2RDCoordinaat" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Coordinaat", propOrder = { - -}) -public class KadasterV2Coordinaat { - - protected BigInteger identifier; - protected BigInteger name; - protected BigInteger description; - @XmlElement(name = "rd_coordinaat") - protected KadasterV2RDCoordinaat rdCoordinaat; - - /** - * Gets the value of the identifier property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getIdentifier() { - return identifier; - } - - /** - * Sets the value of the identifier property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setIdentifier(BigInteger value) { - this.identifier = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setName(BigInteger value) { - this.name = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setDescription(BigInteger value) { - this.description = value; - } - - /** - * Gets the value of the rdCoordinaat property. - * - * @return - * possible object is - * {@link KadasterV2RDCoordinaat } - * - */ - public KadasterV2RDCoordinaat getRdCoordinaat() { - return rdCoordinaat; - } - - /** - * Sets the value of the rdCoordinaat property. - * - * @param value - * allowed object is - * {@link KadasterV2RDCoordinaat } - * - */ - public void setRdCoordinaat(KadasterV2RDCoordinaat value) { - this.rdCoordinaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2DeelEnNummer.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2DeelEnNummer.java deleted file mode 100644 index 6a71fe4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2DeelEnNummer.java +++ /dev/null @@ -1,173 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2DeelEnNummer complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2DeelEnNummer">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="deel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="nummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="reeks" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="registercode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="soort_register" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2DeelEnNummer", propOrder = { - -}) -public class KadasterV2DeelEnNummer { - - protected String deel; - protected String nummer; - protected String reeks; - protected String registercode; - @XmlElement(name = "soort_register") - protected String soortRegister; - - /** - * Gets the value of the deel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeel() { - return deel; - } - - /** - * Sets the value of the deel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeel(String value) { - this.deel = value; - } - - /** - * Gets the value of the nummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNummer() { - return nummer; - } - - /** - * Sets the value of the nummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNummer(String value) { - this.nummer = value; - } - - /** - * Gets the value of the reeks property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReeks() { - return reeks; - } - - /** - * Sets the value of the reeks property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReeks(String value) { - this.reeks = value; - } - - /** - * Gets the value of the registercode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegistercode() { - return registercode; - } - - /** - * Sets the value of the registercode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegistercode(String value) { - this.registercode = value; - } - - /** - * Gets the value of the soortRegister property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSoortRegister() { - return soortRegister; - } - - /** - * Sets the value of the soortRegister property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSoortRegister(String value) { - this.soortRegister = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ErfpachtCanon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ErfpachtCanon.java deleted file mode 100644 index 591afd3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ErfpachtCanon.java +++ /dev/null @@ -1,259 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for KadasterV2ErfpachtCanon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2ErfpachtCanon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="soort" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="einddatum_afkoop" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="indicatie_oude_onroerende_zaak_betrokken" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="jaarlijks_bedrag" type="{http://www.webservices.nl/soap/}KadasterV2JaarlijksBedrag" minOccurs="0"/>
- *         <element name="betreft" type="{http://www.webservices.nl/soap/}KadasterV2ZakelijkRecht" minOccurs="0"/>
- *         <element name="gebaseerd_op" type="{http://www.webservices.nl/soap/}KadasterV2Stukdeel" minOccurs="0"/>
- *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2ErfpachtCanon", propOrder = { - -}) -public class KadasterV2ErfpachtCanon { - - @XmlElement(required = true) - protected String identificatie; - protected String soort; - @XmlElement(name = "einddatum_afkoop") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar einddatumAfkoop; - @XmlElement(name = "indicatie_oude_onroerende_zaak_betrokken") - protected Boolean indicatieOudeOnroerendeZaakBetrokken; - @XmlElement(name = "jaarlijks_bedrag") - protected KadasterV2JaarlijksBedrag jaarlijksBedrag; - protected KadasterV2ZakelijkRecht betreft; - @XmlElement(name = "gebaseerd_op") - protected KadasterV2Stukdeel gebaseerdOp; - @XmlElement(name = "vermeld_in") - protected KadasterV2StukdeelArray vermeldIn; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the soort property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSoort() { - return soort; - } - - /** - * Sets the value of the soort property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSoort(String value) { - this.soort = value; - } - - /** - * Gets the value of the einddatumAfkoop property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEinddatumAfkoop() { - return einddatumAfkoop; - } - - /** - * Sets the value of the einddatumAfkoop property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEinddatumAfkoop(XMLGregorianCalendar value) { - this.einddatumAfkoop = value; - } - - /** - * Gets the value of the indicatieOudeOnroerendeZaakBetrokken property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicatieOudeOnroerendeZaakBetrokken() { - return indicatieOudeOnroerendeZaakBetrokken; - } - - /** - * Sets the value of the indicatieOudeOnroerendeZaakBetrokken property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicatieOudeOnroerendeZaakBetrokken(Boolean value) { - this.indicatieOudeOnroerendeZaakBetrokken = value; - } - - /** - * Gets the value of the jaarlijksBedrag property. - * - * @return - * possible object is - * {@link KadasterV2JaarlijksBedrag } - * - */ - public KadasterV2JaarlijksBedrag getJaarlijksBedrag() { - return jaarlijksBedrag; - } - - /** - * Sets the value of the jaarlijksBedrag property. - * - * @param value - * allowed object is - * {@link KadasterV2JaarlijksBedrag } - * - */ - public void setJaarlijksBedrag(KadasterV2JaarlijksBedrag value) { - this.jaarlijksBedrag = value; - } - - /** - * Gets the value of the betreft property. - * - * @return - * possible object is - * {@link KadasterV2ZakelijkRecht } - * - */ - public KadasterV2ZakelijkRecht getBetreft() { - return betreft; - } - - /** - * Sets the value of the betreft property. - * - * @param value - * allowed object is - * {@link KadasterV2ZakelijkRecht } - * - */ - public void setBetreft(KadasterV2ZakelijkRecht value) { - this.betreft = value; - } - - /** - * Gets the value of the gebaseerdOp property. - * - * @return - * possible object is - * {@link KadasterV2Stukdeel } - * - */ - public KadasterV2Stukdeel getGebaseerdOp() { - return gebaseerdOp; - } - - /** - * Sets the value of the gebaseerdOp property. - * - * @param value - * allowed object is - * {@link KadasterV2Stukdeel } - * - */ - public void setGebaseerdOp(KadasterV2Stukdeel value) { - this.gebaseerdOp = value; - } - - /** - * Gets the value of the vermeldIn property. - * - * @return - * possible object is - * {@link KadasterV2StukdeelArray } - * - */ - public KadasterV2StukdeelArray getVermeldIn() { - return vermeldIn; - } - - /** - * Sets the value of the vermeldIn property. - * - * @param value - * allowed object is - * {@link KadasterV2StukdeelArray } - * - */ - public void setVermeldIn(KadasterV2StukdeelArray value) { - this.vermeldIn = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ErfpachtCanonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ErfpachtCanonArray.java deleted file mode 100644 index eb8e4f8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ErfpachtCanonArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2ErfpachtCanonArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2ErfpachtCanonArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2ErfpachtCanon" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2ErfpachtCanonArray", propOrder = { - "item" -}) -public class KadasterV2ErfpachtCanonArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2ErfpachtCanon } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GerelateerdeOpenbareRuimte.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GerelateerdeOpenbareRuimte.java deleted file mode 100644 index 814df3f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GerelateerdeOpenbareRuimte.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2GerelateerdeOpenbareRuimte complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2GerelateerdeOpenbareRuimte">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="openbare_ruimte_naam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="openbare_ruimte_plaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="in_onderzoek" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2GerelateerdeOpenbareRuimte", propOrder = { - -}) -public class KadasterV2GerelateerdeOpenbareRuimte { - - @XmlElement(name = "openbare_ruimte_naam") - protected String openbareRuimteNaam; - @XmlElement(name = "openbare_ruimte_plaats") - protected String openbareRuimtePlaats; - @XmlElement(name = "in_onderzoek") - protected String inOnderzoek; - - /** - * Gets the value of the openbareRuimteNaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOpenbareRuimteNaam() { - return openbareRuimteNaam; - } - - /** - * Sets the value of the openbareRuimteNaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOpenbareRuimteNaam(String value) { - this.openbareRuimteNaam = value; - } - - /** - * Gets the value of the openbareRuimtePlaats property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOpenbareRuimtePlaats() { - return openbareRuimtePlaats; - } - - /** - * Sets the value of the openbareRuimtePlaats property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOpenbareRuimtePlaats(String value) { - this.openbareRuimtePlaats = value; - } - - /** - * Gets the value of the inOnderzoek property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInOnderzoek() { - return inOnderzoek; - } - - /** - * Sets the value of the inOnderzoek property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInOnderzoek(String value) { - this.inOnderzoek = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetBronDocumentRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetBronDocumentRequestType.java deleted file mode 100644 index 62ec989..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetBronDocumentRequestType.java +++ /dev/null @@ -1,177 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetBronDocumentRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetBronDocumentRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="register_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="deel" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="nummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="reeks" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="soort_register" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetBronDocumentRequestType", propOrder = { - -}) -public class KadasterV2GetBronDocumentRequestType { - - @XmlElement(name = "register_code", required = true) - protected String registerCode; - @XmlElement(required = true) - protected String deel; - @XmlElement(required = true) - protected String nummer; - @XmlElement(required = true) - protected String reeks; - @XmlElement(name = "soort_register", required = true) - protected String soortRegister; - - /** - * Gets the value of the registerCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegisterCode() { - return registerCode; - } - - /** - * Sets the value of the registerCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegisterCode(String value) { - this.registerCode = value; - } - - /** - * Gets the value of the deel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeel() { - return deel; - } - - /** - * Sets the value of the deel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeel(String value) { - this.deel = value; - } - - /** - * Gets the value of the nummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNummer() { - return nummer; - } - - /** - * Sets the value of the nummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNummer(String value) { - this.nummer = value; - } - - /** - * Gets the value of the reeks property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReeks() { - return reeks; - } - - /** - * Sets the value of the reeks property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReeks(String value) { - this.reeks = value; - } - - /** - * Gets the value of the soortRegister property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSoortRegister() { - return soortRegister; - } - - /** - * Sets the value of the soortRegister property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSoortRegister(String value) { - this.soortRegister = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetBronDocumentResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetBronDocumentResponseType.java deleted file mode 100644 index 219bc43..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetBronDocumentResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetBronDocumentResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetBronDocumentResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2BronDocumentResponse"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetBronDocumentResponseType", propOrder = { - -}) -public class KadasterV2GetBronDocumentResponseType { - - @XmlElement(required = true) - protected KadasterV2BronDocumentResponse resultaat; - - /** - * Gets the value of the resultaat property. - * - * @return - * possible object is - * {@link KadasterV2BronDocumentResponse } - * - */ - public KadasterV2BronDocumentResponse getResultaat() { - return resultaat; - } - - /** - * Sets the value of the resultaat property. - * - * @param value - * allowed object is - * {@link KadasterV2BronDocumentResponse } - * - */ - public void setResultaat(KadasterV2BronDocumentResponse value) { - this.resultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByAdresRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByAdresRequestType.java deleted file mode 100644 index 507387c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByAdresRequestType.java +++ /dev/null @@ -1,168 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetHypothecairBerichtObjectByAdresRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetHypothecairBerichtObjectByAdresRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisletter" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetHypothecairBerichtObjectByAdresRequestType", propOrder = { - -}) -public class KadasterV2GetHypothecairBerichtObjectByAdresRequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - @XmlElement(required = true) - protected String document; - @XmlElement(required = true) - protected String huisletter; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocument(String value) { - this.document = value; - } - - /** - * Gets the value of the huisletter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisletter() { - return huisletter; - } - - /** - * Sets the value of the huisletter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisletter(String value) { - this.huisletter = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByAdresResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByAdresResponseType.java deleted file mode 100644 index 23dfaa0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByAdresResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetHypothecairBerichtObjectByAdresResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetHypothecairBerichtObjectByAdresResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2HypothecairBerichtResponse"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetHypothecairBerichtObjectByAdresResponseType", propOrder = { - -}) -public class KadasterV2GetHypothecairBerichtObjectByAdresResponseType { - - @XmlElement(required = true) - protected KadasterV2HypothecairBerichtResponse resultaat; - - /** - * Gets the value of the resultaat property. - * - * @return - * possible object is - * {@link KadasterV2HypothecairBerichtResponse } - * - */ - public KadasterV2HypothecairBerichtResponse getResultaat() { - return resultaat; - } - - /** - * Sets the value of the resultaat property. - * - * @param value - * allowed object is - * {@link KadasterV2HypothecairBerichtResponse } - * - */ - public void setResultaat(KadasterV2HypothecairBerichtResponse value) { - this.resultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType.java deleted file mode 100644 index 2ba8663..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType.java +++ /dev/null @@ -1,159 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="appartementsnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType", propOrder = { - -}) -public class KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType { - - @XmlElement(required = true) - protected String gemeentenaam; - @XmlElement(required = true) - protected String sectie; - protected int perceelnummer; - protected int appartementsnummer; - @XmlElement(required = true) - protected String document; - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the sectie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectie() { - return sectie; - } - - /** - * Sets the value of the sectie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectie(String value) { - this.sectie = value; - } - - /** - * Gets the value of the perceelnummer property. - * - */ - public int getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - */ - public void setPerceelnummer(int value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the appartementsnummer property. - * - */ - public int getAppartementsnummer() { - return appartementsnummer; - } - - /** - * Sets the value of the appartementsnummer property. - * - */ - public void setAppartementsnummer(int value) { - this.appartementsnummer = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocument(String value) { - this.document = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType.java deleted file mode 100644 index 25f887e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2HypothecairBerichtResponse"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType", propOrder = { - -}) -public class KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType { - - @XmlElement(required = true) - protected KadasterV2HypothecairBerichtResponse resultaat; - - /** - * Gets the value of the resultaat property. - * - * @return - * possible object is - * {@link KadasterV2HypothecairBerichtResponse } - * - */ - public KadasterV2HypothecairBerichtResponse getResultaat() { - return resultaat; - } - - /** - * Sets the value of the resultaat property. - * - * @param value - * allowed object is - * {@link KadasterV2HypothecairBerichtResponse } - * - */ - public void setResultaat(KadasterV2HypothecairBerichtResponse value) { - this.resultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType.java deleted file mode 100644 index a6b9cc7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetHypothecairBerichtObjectByObjectIdRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetHypothecairBerichtObjectByObjectIdRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetHypothecairBerichtObjectByObjectIdRequestType", propOrder = { - -}) -public class KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType { - - @XmlElement(name = "object_id", required = true) - protected String objectId; - @XmlElement(required = true) - protected String document; - - /** - * Gets the value of the objectId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjectId() { - return objectId; - } - - /** - * Sets the value of the objectId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjectId(String value) { - this.objectId = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocument(String value) { - this.document = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType.java deleted file mode 100644 index f097c86..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetHypothecairBerichtObjectByObjectIdResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetHypothecairBerichtObjectByObjectIdResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2HypothecairBerichtResponse"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetHypothecairBerichtObjectByObjectIdResponseType", propOrder = { - -}) -public class KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType { - - @XmlElement(required = true) - protected KadasterV2HypothecairBerichtResponse resultaat; - - /** - * Gets the value of the resultaat property. - * - * @return - * possible object is - * {@link KadasterV2HypothecairBerichtResponse } - * - */ - public KadasterV2HypothecairBerichtResponse getResultaat() { - return resultaat; - } - - /** - * Sets the value of the resultaat property. - * - * @param value - * allowed object is - * {@link KadasterV2HypothecairBerichtResponse } - * - */ - public void setResultaat(KadasterV2HypothecairBerichtResponse value) { - this.resultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByAdresRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByAdresRequestType.java deleted file mode 100644 index 649aef7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByAdresRequestType.java +++ /dev/null @@ -1,168 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetKadastraalBerichtObjectByAdresRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetKadastraalBerichtObjectByAdresRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisletter" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetKadastraalBerichtObjectByAdresRequestType", propOrder = { - -}) -public class KadasterV2GetKadastraalBerichtObjectByAdresRequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - @XmlElement(required = true) - protected String document; - @XmlElement(required = true) - protected String huisletter; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocument(String value) { - this.document = value; - } - - /** - * Gets the value of the huisletter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisletter() { - return huisletter; - } - - /** - * Sets the value of the huisletter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisletter(String value) { - this.huisletter = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByAdresResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByAdresResponseType.java deleted file mode 100644 index 18c6354..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByAdresResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetKadastraalBerichtObjectByAdresResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetKadastraalBerichtObjectByAdresResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2KadastraalBerichtResponse"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetKadastraalBerichtObjectByAdresResponseType", propOrder = { - -}) -public class KadasterV2GetKadastraalBerichtObjectByAdresResponseType { - - @XmlElement(required = true) - protected KadasterV2KadastraalBerichtResponse resultaat; - - /** - * Gets the value of the resultaat property. - * - * @return - * possible object is - * {@link KadasterV2KadastraalBerichtResponse } - * - */ - public KadasterV2KadastraalBerichtResponse getResultaat() { - return resultaat; - } - - /** - * Sets the value of the resultaat property. - * - * @param value - * allowed object is - * {@link KadasterV2KadastraalBerichtResponse } - * - */ - public void setResultaat(KadasterV2KadastraalBerichtResponse value) { - this.resultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType.java deleted file mode 100644 index 507be17..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType.java +++ /dev/null @@ -1,159 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="appartementsnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType", propOrder = { - -}) -public class KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType { - - @XmlElement(required = true) - protected String gemeentenaam; - @XmlElement(required = true) - protected String sectie; - protected int perceelnummer; - protected int appartementsnummer; - @XmlElement(required = true) - protected String document; - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the sectie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectie() { - return sectie; - } - - /** - * Sets the value of the sectie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectie(String value) { - this.sectie = value; - } - - /** - * Gets the value of the perceelnummer property. - * - */ - public int getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - */ - public void setPerceelnummer(int value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the appartementsnummer property. - * - */ - public int getAppartementsnummer() { - return appartementsnummer; - } - - /** - * Sets the value of the appartementsnummer property. - * - */ - public void setAppartementsnummer(int value) { - this.appartementsnummer = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocument(String value) { - this.document = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType.java deleted file mode 100644 index af65bae..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2KadastraalBerichtResponse"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType", propOrder = { - -}) -public class KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType { - - @XmlElement(required = true) - protected KadasterV2KadastraalBerichtResponse resultaat; - - /** - * Gets the value of the resultaat property. - * - * @return - * possible object is - * {@link KadasterV2KadastraalBerichtResponse } - * - */ - public KadasterV2KadastraalBerichtResponse getResultaat() { - return resultaat; - } - - /** - * Sets the value of the resultaat property. - * - * @param value - * allowed object is - * {@link KadasterV2KadastraalBerichtResponse } - * - */ - public void setResultaat(KadasterV2KadastraalBerichtResponse value) { - this.resultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType.java deleted file mode 100644 index 79403d8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetKadastraalBerichtObjectByObjectIdRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetKadastraalBerichtObjectByObjectIdRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetKadastraalBerichtObjectByObjectIdRequestType", propOrder = { - -}) -public class KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType { - - @XmlElement(name = "object_id", required = true) - protected String objectId; - @XmlElement(required = true) - protected String document; - - /** - * Gets the value of the objectId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjectId() { - return objectId; - } - - /** - * Sets the value of the objectId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjectId(String value) { - this.objectId = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocument(String value) { - this.document = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType.java deleted file mode 100644 index c6e48c6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetKadastraalBerichtObjectByObjectIdResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetKadastraalBerichtObjectByObjectIdResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2KadastraalBerichtResponse"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetKadastraalBerichtObjectByObjectIdResponseType", propOrder = { - -}) -public class KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType { - - @XmlElement(required = true) - protected KadasterV2KadastraalBerichtResponse resultaat; - - /** - * Gets the value of the resultaat property. - * - * @return - * possible object is - * {@link KadasterV2KadastraalBerichtResponse } - * - */ - public KadasterV2KadastraalBerichtResponse getResultaat() { - return resultaat; - } - - /** - * Sets the value of the resultaat property. - * - * @param value - * allowed object is - * {@link KadasterV2KadastraalBerichtResponse } - * - */ - public void setResultaat(KadasterV2KadastraalBerichtResponse value) { - this.resultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKoopsommenOverzichtRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKoopsommenOverzichtRequestType.java deleted file mode 100644 index 7387320..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKoopsommenOverzichtRequestType.java +++ /dev/null @@ -1,168 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetKoopsommenOverzichtRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetKoopsommenOverzichtRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisletter" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetKoopsommenOverzichtRequestType", propOrder = { - -}) -public class KadasterV2GetKoopsommenOverzichtRequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - @XmlElement(required = true) - protected String document; - @XmlElement(required = true) - protected String huisletter; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocument(String value) { - this.document = value; - } - - /** - * Gets the value of the huisletter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisletter() { - return huisletter; - } - - /** - * Sets the value of the huisletter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisletter(String value) { - this.huisletter = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKoopsommenOverzichtResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKoopsommenOverzichtResponseType.java deleted file mode 100644 index 6b4f121..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetKoopsommenOverzichtResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetKoopsommenOverzichtResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetKoopsommenOverzichtResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2KoopsommenOverzichtResponse"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetKoopsommenOverzichtResponseType", propOrder = { - -}) -public class KadasterV2GetKoopsommenOverzichtResponseType { - - @XmlElement(required = true) - protected KadasterV2KoopsommenOverzichtResponse resultaat; - - /** - * Gets the value of the resultaat property. - * - * @return - * possible object is - * {@link KadasterV2KoopsommenOverzichtResponse } - * - */ - public KadasterV2KoopsommenOverzichtResponse getResultaat() { - return resultaat; - } - - /** - * Sets the value of the resultaat property. - * - * @param value - * allowed object is - * {@link KadasterV2KoopsommenOverzichtResponse } - * - */ - public void setResultaat(KadasterV2KoopsommenOverzichtResponse value) { - this.resultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByAdresRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByAdresRequestType.java deleted file mode 100644 index 849ff00..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByAdresRequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetUittrekselKadastraleKaartByAdresRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetUittrekselKadastraleKaartByAdresRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisletter" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetUittrekselKadastraleKaartByAdresRequestType", propOrder = { - -}) -public class KadasterV2GetUittrekselKadastraleKaartByAdresRequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - @XmlElement(required = true) - protected String huisletter; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the huisletter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisletter() { - return huisletter; - } - - /** - * Sets the value of the huisletter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisletter(String value) { - this.huisletter = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByAdresResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByAdresResponseType.java deleted file mode 100644 index 4024c01..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByAdresResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetUittrekselKadastraleKaartByAdresResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetUittrekselKadastraleKaartByAdresResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2UittrekselKadastraleKaartResponse"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetUittrekselKadastraleKaartByAdresResponseType", propOrder = { - -}) -public class KadasterV2GetUittrekselKadastraleKaartByAdresResponseType { - - @XmlElement(required = true) - protected KadasterV2UittrekselKadastraleKaartResponse resultaat; - - /** - * Gets the value of the resultaat property. - * - * @return - * possible object is - * {@link KadasterV2UittrekselKadastraleKaartResponse } - * - */ - public KadasterV2UittrekselKadastraleKaartResponse getResultaat() { - return resultaat; - } - - /** - * Sets the value of the resultaat property. - * - * @param value - * allowed object is - * {@link KadasterV2UittrekselKadastraleKaartResponse } - * - */ - public void setResultaat(KadasterV2UittrekselKadastraleKaartResponse value) { - this.resultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType.java deleted file mode 100644 index 74112f1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType.java +++ /dev/null @@ -1,132 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="appartementsnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType", propOrder = { - -}) -public class KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType { - - @XmlElement(required = true) - protected String gemeentenaam; - @XmlElement(required = true) - protected String sectie; - protected int perceelnummer; - protected int appartementsnummer; - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the sectie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectie() { - return sectie; - } - - /** - * Sets the value of the sectie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectie(String value) { - this.sectie = value; - } - - /** - * Gets the value of the perceelnummer property. - * - */ - public int getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - */ - public void setPerceelnummer(int value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the appartementsnummer property. - * - */ - public int getAppartementsnummer() { - return appartementsnummer; - } - - /** - * Sets the value of the appartementsnummer property. - * - */ - public void setAppartementsnummer(int value) { - this.appartementsnummer = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType.java deleted file mode 100644 index 264a556..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2UittrekselKadastraleKaartResponse"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType", propOrder = { - -}) -public class KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType { - - @XmlElement(required = true) - protected KadasterV2UittrekselKadastraleKaartResponse resultaat; - - /** - * Gets the value of the resultaat property. - * - * @return - * possible object is - * {@link KadasterV2UittrekselKadastraleKaartResponse } - * - */ - public KadasterV2UittrekselKadastraleKaartResponse getResultaat() { - return resultaat; - } - - /** - * Sets the value of the resultaat property. - * - * @param value - * allowed object is - * {@link KadasterV2UittrekselKadastraleKaartResponse } - * - */ - public void setResultaat(KadasterV2UittrekselKadastraleKaartResponse value) { - this.resultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType.java deleted file mode 100644 index 2092840..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType", propOrder = { - -}) -public class KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType { - - @XmlElement(name = "object_id", required = true) - protected String objectId; - - /** - * Gets the value of the objectId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjectId() { - return objectId; - } - - /** - * Sets the value of the objectId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjectId(String value) { - this.objectId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType.java deleted file mode 100644 index 7261cfe..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="resultaat" type="{http://www.webservices.nl/soap/}KadasterV2UittrekselKadastraleKaartResponse"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType", propOrder = { - -}) -public class KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType { - - @XmlElement(required = true) - protected KadasterV2UittrekselKadastraleKaartResponse resultaat; - - /** - * Gets the value of the resultaat property. - * - * @return - * possible object is - * {@link KadasterV2UittrekselKadastraleKaartResponse } - * - */ - public KadasterV2UittrekselKadastraleKaartResponse getResultaat() { - return resultaat; - } - - /** - * Sets the value of the resultaat property. - * - * @param value - * allowed object is - * {@link KadasterV2UittrekselKadastraleKaartResponse } - * - */ - public void setResultaat(KadasterV2UittrekselKadastraleKaartResponse value) { - this.resultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GevraagdGebied.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GevraagdGebied.java deleted file mode 100644 index 15f521b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GevraagdGebied.java +++ /dev/null @@ -1,228 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2GevraagdGebied complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2GevraagdGebied">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="huisletter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="huisnummertoevoeging" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="koopsom_gegevens" type="{http://www.webservices.nl/soap/}KadasterV2KoopsomGegevenArray" minOccurs="0"/>
- *         <element name="onroerende_zaken" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaakArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2GevraagdGebied", propOrder = { - -}) -public class KadasterV2GevraagdGebied { - - @XmlElement(required = true) - protected String identificatie; - protected String postcode; - protected BigInteger huisnummer; - protected String huisletter; - protected String huisnummertoevoeging; - @XmlElement(name = "koopsom_gegevens") - protected KadasterV2KoopsomGegevenArray koopsomGegevens; - @XmlElement(name = "onroerende_zaken") - protected KadasterV2OnroerendeZaakArray onroerendeZaken; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setHuisnummer(BigInteger value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisletter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisletter() { - return huisletter; - } - - /** - * Sets the value of the huisletter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisletter(String value) { - this.huisletter = value; - } - - /** - * Gets the value of the huisnummertoevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummertoevoeging() { - return huisnummertoevoeging; - } - - /** - * Sets the value of the huisnummertoevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummertoevoeging(String value) { - this.huisnummertoevoeging = value; - } - - /** - * Gets the value of the koopsomGegevens property. - * - * @return - * possible object is - * {@link KadasterV2KoopsomGegevenArray } - * - */ - public KadasterV2KoopsomGegevenArray getKoopsomGegevens() { - return koopsomGegevens; - } - - /** - * Sets the value of the koopsomGegevens property. - * - * @param value - * allowed object is - * {@link KadasterV2KoopsomGegevenArray } - * - */ - public void setKoopsomGegevens(KadasterV2KoopsomGegevenArray value) { - this.koopsomGegevens = value; - } - - /** - * Gets the value of the onroerendeZaken property. - * - * @return - * possible object is - * {@link KadasterV2OnroerendeZaakArray } - * - */ - public KadasterV2OnroerendeZaakArray getOnroerendeZaken() { - return onroerendeZaken; - } - - /** - * Sets the value of the onroerendeZaken property. - * - * @param value - * allowed object is - * {@link KadasterV2OnroerendeZaakArray } - * - */ - public void setOnroerendeZaken(KadasterV2OnroerendeZaakArray value) { - this.onroerendeZaken = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GezamenlijkAandeel.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GezamenlijkAandeel.java deleted file mode 100644 index 47aa4e4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GezamenlijkAandeel.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2GezamenlijkAandeel complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2GezamenlijkAandeel">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="aandeel" type="{http://www.webservices.nl/soap/}KadasterV2Breuk" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2GezamenlijkAandeel", propOrder = { - -}) -public class KadasterV2GezamenlijkAandeel { - - @XmlElement(required = true) - protected String identificatie; - protected KadasterV2Breuk aandeel; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the aandeel property. - * - * @return - * possible object is - * {@link KadasterV2Breuk } - * - */ - public KadasterV2Breuk getAandeel() { - return aandeel; - } - - /** - * Sets the value of the aandeel property. - * - * @param value - * allowed object is - * {@link KadasterV2Breuk } - * - */ - public void setAandeel(KadasterV2Breuk value) { - this.aandeel = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GezamenlijkAandeelArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GezamenlijkAandeelArray.java deleted file mode 100644 index f326607..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2GezamenlijkAandeelArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2GezamenlijkAandeelArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2GezamenlijkAandeelArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2GezamenlijkAandeel" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2GezamenlijkAandeelArray", propOrder = { - "item" -}) -public class KadasterV2GezamenlijkAandeelArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2GezamenlijkAandeel } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Historie.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Historie.java deleted file mode 100644 index 09ae846..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Historie.java +++ /dev/null @@ -1,210 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for KadasterV2Historie complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Historie">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="logisch_tijdstip_ontstaan" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="logisch_tijdstip_vervallen" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="status_historie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="technisch_tijdstip_ontstaan" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="technisch_tijdstip_vervallen" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Historie", propOrder = { - -}) -public class KadasterV2Historie { - - @XmlElement(name = "logisch_tijdstip_ontstaan") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar logischTijdstipOntstaan; - @XmlElement(name = "logisch_tijdstip_vervallen") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar logischTijdstipVervallen; - protected BigInteger volgnummer; - @XmlElement(name = "status_historie") - protected String statusHistorie; - @XmlElement(name = "technisch_tijdstip_ontstaan") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar technischTijdstipOntstaan; - @XmlElement(name = "technisch_tijdstip_vervallen") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar technischTijdstipVervallen; - - /** - * Gets the value of the logischTijdstipOntstaan property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLogischTijdstipOntstaan() { - return logischTijdstipOntstaan; - } - - /** - * Sets the value of the logischTijdstipOntstaan property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLogischTijdstipOntstaan(XMLGregorianCalendar value) { - this.logischTijdstipOntstaan = value; - } - - /** - * Gets the value of the logischTijdstipVervallen property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getLogischTijdstipVervallen() { - return logischTijdstipVervallen; - } - - /** - * Sets the value of the logischTijdstipVervallen property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setLogischTijdstipVervallen(XMLGregorianCalendar value) { - this.logischTijdstipVervallen = value; - } - - /** - * Gets the value of the volgnummer property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getVolgnummer() { - return volgnummer; - } - - /** - * Sets the value of the volgnummer property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setVolgnummer(BigInteger value) { - this.volgnummer = value; - } - - /** - * Gets the value of the statusHistorie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatusHistorie() { - return statusHistorie; - } - - /** - * Sets the value of the statusHistorie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatusHistorie(String value) { - this.statusHistorie = value; - } - - /** - * Gets the value of the technischTijdstipOntstaan property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTechnischTijdstipOntstaan() { - return technischTijdstipOntstaan; - } - - /** - * Sets the value of the technischTijdstipOntstaan property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTechnischTijdstipOntstaan(XMLGregorianCalendar value) { - this.technischTijdstipOntstaan = value; - } - - /** - * Gets the value of the technischTijdstipVervallen property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTechnischTijdstipVervallen() { - return technischTijdstipVervallen; - } - - /** - * Sets the value of the technischTijdstipVervallen property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTechnischTijdstipVervallen(XMLGregorianCalendar value) { - this.technischTijdstipVervallen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Hoofdzaak.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Hoofdzaak.java deleted file mode 100644 index fddc017..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Hoofdzaak.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2Hoofdzaak complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Hoofdzaak">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="aandeel_in_mandeligheid" type="{http://www.webservices.nl/soap/}KadasterV2Breuk" minOccurs="0"/>
- *         <element name="betreft" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Hoofdzaak", propOrder = { - -}) -public class KadasterV2Hoofdzaak { - - @XmlElement(name = "aandeel_in_mandeligheid") - protected KadasterV2Breuk aandeelInMandeligheid; - protected KadasterV2OnroerendeZaak betreft; - - /** - * Gets the value of the aandeelInMandeligheid property. - * - * @return - * possible object is - * {@link KadasterV2Breuk } - * - */ - public KadasterV2Breuk getAandeelInMandeligheid() { - return aandeelInMandeligheid; - } - - /** - * Sets the value of the aandeelInMandeligheid property. - * - * @param value - * allowed object is - * {@link KadasterV2Breuk } - * - */ - public void setAandeelInMandeligheid(KadasterV2Breuk value) { - this.aandeelInMandeligheid = value; - } - - /** - * Gets the value of the betreft property. - * - * @return - * possible object is - * {@link KadasterV2OnroerendeZaak } - * - */ - public KadasterV2OnroerendeZaak getBetreft() { - return betreft; - } - - /** - * Sets the value of the betreft property. - * - * @param value - * allowed object is - * {@link KadasterV2OnroerendeZaak } - * - */ - public void setBetreft(KadasterV2OnroerendeZaak value) { - this.betreft = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HoofdzaakArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HoofdzaakArray.java deleted file mode 100644 index 55848fb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HoofdzaakArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2HoofdzaakArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2HoofdzaakArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Hoofdzaak" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2HoofdzaakArray", propOrder = { - "item" -}) -public class KadasterV2HoofdzaakArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2Hoofdzaak } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypothecairBericht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypothecairBericht.java deleted file mode 100644 index 09a35d6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypothecairBericht.java +++ /dev/null @@ -1,398 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for KadasterV2HypothecairBericht complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2HypothecairBericht">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="productienummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="tijdstip_samenstelling_bericht" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
- *         <element name="actualiteit_tijdstip_hypothecair" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="actualiteit_tijdstip_kadastraal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="signalering_tijdstip_beslagen" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="signalering_tijdstip_hypothecair" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="signalering_tijdstip_kadastraal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="betreft" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak"/>
- *         <element name="hypotheken" type="{http://www.webservices.nl/soap/}KadasterV2HypotheekArray" minOccurs="0"/>
- *         <element name="beslagleggingen" type="{http://www.webservices.nl/soap/}KadasterV2BeslagleggingArray" minOccurs="0"/>
- *         <element name="zakelijk_rechten" type="{http://www.webservices.nl/soap/}KadasterV2ZakelijkRechtArray" minOccurs="0"/>
- *         <element name="aantekeningen" type="{http://www.webservices.nl/soap/}KadasterV2AantekeningArray" minOccurs="0"/>
- *         <element name="stukken" type="{http://www.webservices.nl/soap/}KadasterV2Stukken"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2HypothecairBericht", propOrder = { - -}) -public class KadasterV2HypothecairBericht { - - @XmlElement(required = true) - protected String productienummer; - @XmlElement(name = "tijdstip_samenstelling_bericht", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar tijdstipSamenstellingBericht; - @XmlElement(name = "actualiteit_tijdstip_hypothecair") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar actualiteitTijdstipHypothecair; - @XmlElement(name = "actualiteit_tijdstip_kadastraal") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar actualiteitTijdstipKadastraal; - @XmlElement(name = "signalering_tijdstip_beslagen") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar signaleringTijdstipBeslagen; - @XmlElement(name = "signalering_tijdstip_hypothecair") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar signaleringTijdstipHypothecair; - @XmlElement(name = "signalering_tijdstip_kadastraal") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar signaleringTijdstipKadastraal; - @XmlElement(required = true) - protected KadasterV2OnroerendeZaak betreft; - protected KadasterV2HypotheekArray hypotheken; - protected KadasterV2BeslagleggingArray beslagleggingen; - @XmlElement(name = "zakelijk_rechten") - protected KadasterV2ZakelijkRechtArray zakelijkRechten; - protected KadasterV2AantekeningArray aantekeningen; - @XmlElement(required = true) - protected KadasterV2Stukken stukken; - - /** - * Gets the value of the productienummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProductienummer() { - return productienummer; - } - - /** - * Sets the value of the productienummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProductienummer(String value) { - this.productienummer = value; - } - - /** - * Gets the value of the tijdstipSamenstellingBericht property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTijdstipSamenstellingBericht() { - return tijdstipSamenstellingBericht; - } - - /** - * Sets the value of the tijdstipSamenstellingBericht property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTijdstipSamenstellingBericht(XMLGregorianCalendar value) { - this.tijdstipSamenstellingBericht = value; - } - - /** - * Gets the value of the actualiteitTijdstipHypothecair property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getActualiteitTijdstipHypothecair() { - return actualiteitTijdstipHypothecair; - } - - /** - * Sets the value of the actualiteitTijdstipHypothecair property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setActualiteitTijdstipHypothecair(XMLGregorianCalendar value) { - this.actualiteitTijdstipHypothecair = value; - } - - /** - * Gets the value of the actualiteitTijdstipKadastraal property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getActualiteitTijdstipKadastraal() { - return actualiteitTijdstipKadastraal; - } - - /** - * Sets the value of the actualiteitTijdstipKadastraal property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setActualiteitTijdstipKadastraal(XMLGregorianCalendar value) { - this.actualiteitTijdstipKadastraal = value; - } - - /** - * Gets the value of the signaleringTijdstipBeslagen property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSignaleringTijdstipBeslagen() { - return signaleringTijdstipBeslagen; - } - - /** - * Sets the value of the signaleringTijdstipBeslagen property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSignaleringTijdstipBeslagen(XMLGregorianCalendar value) { - this.signaleringTijdstipBeslagen = value; - } - - /** - * Gets the value of the signaleringTijdstipHypothecair property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSignaleringTijdstipHypothecair() { - return signaleringTijdstipHypothecair; - } - - /** - * Sets the value of the signaleringTijdstipHypothecair property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSignaleringTijdstipHypothecair(XMLGregorianCalendar value) { - this.signaleringTijdstipHypothecair = value; - } - - /** - * Gets the value of the signaleringTijdstipKadastraal property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSignaleringTijdstipKadastraal() { - return signaleringTijdstipKadastraal; - } - - /** - * Sets the value of the signaleringTijdstipKadastraal property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSignaleringTijdstipKadastraal(XMLGregorianCalendar value) { - this.signaleringTijdstipKadastraal = value; - } - - /** - * Gets the value of the betreft property. - * - * @return - * possible object is - * {@link KadasterV2OnroerendeZaak } - * - */ - public KadasterV2OnroerendeZaak getBetreft() { - return betreft; - } - - /** - * Sets the value of the betreft property. - * - * @param value - * allowed object is - * {@link KadasterV2OnroerendeZaak } - * - */ - public void setBetreft(KadasterV2OnroerendeZaak value) { - this.betreft = value; - } - - /** - * Gets the value of the hypotheken property. - * - * @return - * possible object is - * {@link KadasterV2HypotheekArray } - * - */ - public KadasterV2HypotheekArray getHypotheken() { - return hypotheken; - } - - /** - * Sets the value of the hypotheken property. - * - * @param value - * allowed object is - * {@link KadasterV2HypotheekArray } - * - */ - public void setHypotheken(KadasterV2HypotheekArray value) { - this.hypotheken = value; - } - - /** - * Gets the value of the beslagleggingen property. - * - * @return - * possible object is - * {@link KadasterV2BeslagleggingArray } - * - */ - public KadasterV2BeslagleggingArray getBeslagleggingen() { - return beslagleggingen; - } - - /** - * Sets the value of the beslagleggingen property. - * - * @param value - * allowed object is - * {@link KadasterV2BeslagleggingArray } - * - */ - public void setBeslagleggingen(KadasterV2BeslagleggingArray value) { - this.beslagleggingen = value; - } - - /** - * Gets the value of the zakelijkRechten property. - * - * @return - * possible object is - * {@link KadasterV2ZakelijkRechtArray } - * - */ - public KadasterV2ZakelijkRechtArray getZakelijkRechten() { - return zakelijkRechten; - } - - /** - * Sets the value of the zakelijkRechten property. - * - * @param value - * allowed object is - * {@link KadasterV2ZakelijkRechtArray } - * - */ - public void setZakelijkRechten(KadasterV2ZakelijkRechtArray value) { - this.zakelijkRechten = value; - } - - /** - * Gets the value of the aantekeningen property. - * - * @return - * possible object is - * {@link KadasterV2AantekeningArray } - * - */ - public KadasterV2AantekeningArray getAantekeningen() { - return aantekeningen; - } - - /** - * Sets the value of the aantekeningen property. - * - * @param value - * allowed object is - * {@link KadasterV2AantekeningArray } - * - */ - public void setAantekeningen(KadasterV2AantekeningArray value) { - this.aantekeningen = value; - } - - /** - * Gets the value of the stukken property. - * - * @return - * possible object is - * {@link KadasterV2Stukken } - * - */ - public KadasterV2Stukken getStukken() { - return stukken; - } - - /** - * Sets the value of the stukken property. - * - * @param value - * allowed object is - * {@link KadasterV2Stukken } - * - */ - public void setStukken(KadasterV2Stukken value) { - this.stukken = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypothecairBerichtResponse.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypothecairBerichtResponse.java deleted file mode 100644 index ece1e2b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypothecairBerichtResponse.java +++ /dev/null @@ -1,146 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2HypothecairBerichtResponse complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2HypothecairBerichtResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bericht" type="{http://www.webservices.nl/soap/}KadasterV2HypothecairBericht" minOccurs="0"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
- *         <element name="overgegaan_in" type="{http://www.webservices.nl/soap/}KadasterV2OvergegaanIn" minOccurs="0"/>
- *         <element name="postcode_treffers" type="{http://www.webservices.nl/soap/}KadasterV2PostcodeTreffers" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2HypothecairBerichtResponse", propOrder = { - -}) -public class KadasterV2HypothecairBerichtResponse { - - protected KadasterV2HypothecairBericht bericht; - protected byte[] document; - @XmlElement(name = "overgegaan_in") - protected KadasterV2OvergegaanIn overgegaanIn; - @XmlElement(name = "postcode_treffers") - protected KadasterV2PostcodeTreffers postcodeTreffers; - - /** - * Gets the value of the bericht property. - * - * @return - * possible object is - * {@link KadasterV2HypothecairBericht } - * - */ - public KadasterV2HypothecairBericht getBericht() { - return bericht; - } - - /** - * Sets the value of the bericht property. - * - * @param value - * allowed object is - * {@link KadasterV2HypothecairBericht } - * - */ - public void setBericht(KadasterV2HypothecairBericht value) { - this.bericht = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - - /** - * Gets the value of the overgegaanIn property. - * - * @return - * possible object is - * {@link KadasterV2OvergegaanIn } - * - */ - public KadasterV2OvergegaanIn getOvergegaanIn() { - return overgegaanIn; - } - - /** - * Sets the value of the overgegaanIn property. - * - * @param value - * allowed object is - * {@link KadasterV2OvergegaanIn } - * - */ - public void setOvergegaanIn(KadasterV2OvergegaanIn value) { - this.overgegaanIn = value; - } - - /** - * Gets the value of the postcodeTreffers property. - * - * @return - * possible object is - * {@link KadasterV2PostcodeTreffers } - * - */ - public KadasterV2PostcodeTreffers getPostcodeTreffers() { - return postcodeTreffers; - } - - /** - * Sets the value of the postcodeTreffers property. - * - * @param value - * allowed object is - * {@link KadasterV2PostcodeTreffers } - * - */ - public void setPostcodeTreffers(KadasterV2PostcodeTreffers value) { - this.postcodeTreffers = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Hypotheek.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Hypotheek.java deleted file mode 100644 index 2eee240..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Hypotheek.java +++ /dev/null @@ -1,230 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2Hypotheek complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Hypotheek">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="omschrijving_betrokken_recht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="aandeel_in_betrokken_recht" type="{http://www.webservices.nl/soap/}KadasterV2Breuk" minOccurs="0"/>
- *         <element name="onroerende_zaak" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak" minOccurs="0"/>
- *         <element name="personen" type="{http://www.webservices.nl/soap/}KadasterV2Personen" minOccurs="0"/>
- *         <element name="gebaseerd_op" type="{http://www.webservices.nl/soap/}KadasterV2Stukdeel" minOccurs="0"/>
- *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Hypotheek", propOrder = { - -}) -public class KadasterV2Hypotheek { - - @XmlElement(required = true) - protected String identificatie; - @XmlElement(name = "omschrijving_betrokken_recht") - protected String omschrijvingBetrokkenRecht; - @XmlElement(name = "aandeel_in_betrokken_recht") - protected KadasterV2Breuk aandeelInBetrokkenRecht; - @XmlElement(name = "onroerende_zaak") - protected KadasterV2OnroerendeZaak onroerendeZaak; - protected KadasterV2Personen personen; - @XmlElement(name = "gebaseerd_op") - protected KadasterV2Stukdeel gebaseerdOp; - @XmlElement(name = "vermeld_in") - protected KadasterV2StukdeelArray vermeldIn; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the omschrijvingBetrokkenRecht property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijvingBetrokkenRecht() { - return omschrijvingBetrokkenRecht; - } - - /** - * Sets the value of the omschrijvingBetrokkenRecht property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijvingBetrokkenRecht(String value) { - this.omschrijvingBetrokkenRecht = value; - } - - /** - * Gets the value of the aandeelInBetrokkenRecht property. - * - * @return - * possible object is - * {@link KadasterV2Breuk } - * - */ - public KadasterV2Breuk getAandeelInBetrokkenRecht() { - return aandeelInBetrokkenRecht; - } - - /** - * Sets the value of the aandeelInBetrokkenRecht property. - * - * @param value - * allowed object is - * {@link KadasterV2Breuk } - * - */ - public void setAandeelInBetrokkenRecht(KadasterV2Breuk value) { - this.aandeelInBetrokkenRecht = value; - } - - /** - * Gets the value of the onroerendeZaak property. - * - * @return - * possible object is - * {@link KadasterV2OnroerendeZaak } - * - */ - public KadasterV2OnroerendeZaak getOnroerendeZaak() { - return onroerendeZaak; - } - - /** - * Sets the value of the onroerendeZaak property. - * - * @param value - * allowed object is - * {@link KadasterV2OnroerendeZaak } - * - */ - public void setOnroerendeZaak(KadasterV2OnroerendeZaak value) { - this.onroerendeZaak = value; - } - - /** - * Gets the value of the personen property. - * - * @return - * possible object is - * {@link KadasterV2Personen } - * - */ - public KadasterV2Personen getPersonen() { - return personen; - } - - /** - * Sets the value of the personen property. - * - * @param value - * allowed object is - * {@link KadasterV2Personen } - * - */ - public void setPersonen(KadasterV2Personen value) { - this.personen = value; - } - - /** - * Gets the value of the gebaseerdOp property. - * - * @return - * possible object is - * {@link KadasterV2Stukdeel } - * - */ - public KadasterV2Stukdeel getGebaseerdOp() { - return gebaseerdOp; - } - - /** - * Sets the value of the gebaseerdOp property. - * - * @param value - * allowed object is - * {@link KadasterV2Stukdeel } - * - */ - public void setGebaseerdOp(KadasterV2Stukdeel value) { - this.gebaseerdOp = value; - } - - /** - * Gets the value of the vermeldIn property. - * - * @return - * possible object is - * {@link KadasterV2StukdeelArray } - * - */ - public KadasterV2StukdeelArray getVermeldIn() { - return vermeldIn; - } - - /** - * Sets the value of the vermeldIn property. - * - * @param value - * allowed object is - * {@link KadasterV2StukdeelArray } - * - */ - public void setVermeldIn(KadasterV2StukdeelArray value) { - this.vermeldIn = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypotheekArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypotheekArray.java deleted file mode 100644 index 4ade523..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2HypotheekArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2HypotheekArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2HypotheekArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Hypotheek" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2HypotheekArray", propOrder = { - "item" -}) -public class KadasterV2HypotheekArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2Hypotheek } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2JaarlijksBedrag.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2JaarlijksBedrag.java deleted file mode 100644 index 4ca7199..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2JaarlijksBedrag.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2JaarlijksBedrag complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2JaarlijksBedrag">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bedrag" type="{http://www.webservices.nl/soap/}KadasterV2Bedrag" minOccurs="0"/>
- *         <element name="betreft_meer_onroerende_zaken" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2JaarlijksBedrag", propOrder = { - -}) -public class KadasterV2JaarlijksBedrag { - - protected KadasterV2Bedrag bedrag; - @XmlElement(name = "betreft_meer_onroerende_zaken") - protected Boolean betreftMeerOnroerendeZaken; - - /** - * Gets the value of the bedrag property. - * - * @return - * possible object is - * {@link KadasterV2Bedrag } - * - */ - public KadasterV2Bedrag getBedrag() { - return bedrag; - } - - /** - * Sets the value of the bedrag property. - * - * @param value - * allowed object is - * {@link KadasterV2Bedrag } - * - */ - public void setBedrag(KadasterV2Bedrag value) { - this.bedrag = value; - } - - /** - * Gets the value of the betreftMeerOnroerendeZaken property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isBetreftMeerOnroerendeZaken() { - return betreftMeerOnroerendeZaken; - } - - /** - * Sets the value of the betreftMeerOnroerendeZaken property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setBetreftMeerOnroerendeZaken(Boolean value) { - this.betreftMeerOnroerendeZaken = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2JaarlijksBedragArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2JaarlijksBedragArray.java deleted file mode 100644 index d478211..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2JaarlijksBedragArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2JaarlijksBedragArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2JaarlijksBedragArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2JaarlijksBedrag" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2JaarlijksBedragArray", propOrder = { - "item" -}) -public class KadasterV2JaarlijksBedragArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2JaarlijksBedrag } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraalBericht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraalBericht.java deleted file mode 100644 index 7d38baf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraalBericht.java +++ /dev/null @@ -1,397 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for KadasterV2KadastraalBericht complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2KadastraalBericht">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="productienummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="tijdstip_samenstelling_bericht" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
- *         <element name="actualiteit_tijdstip_hypothecair" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="actualiteit_tijdstip_kadastraal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="signalering_tijdstip_beslagen" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="signalering_tijdstip_hypothecair" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="signalering_tijdstip_kadastraal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="betreft" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak"/>
- *         <element name="tenaamstellingen" type="{http://www.webservices.nl/soap/}KadasterV2TenaamstellingArray" minOccurs="0"/>
- *         <element name="zakelijk_rechten" type="{http://www.webservices.nl/soap/}KadasterV2ZakelijkRechtArray" minOccurs="0"/>
- *         <element name="aantekeningen" type="{http://www.webservices.nl/soap/}KadasterV2AantekeningArray" minOccurs="0"/>
- *         <element name="erfpachtcanon" type="{http://www.webservices.nl/soap/}KadasterV2ErfpachtCanonArray" minOccurs="0"/>
- *         <element name="stukken" type="{http://www.webservices.nl/soap/}KadasterV2Stukken" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2KadastraalBericht", propOrder = { - -}) -public class KadasterV2KadastraalBericht { - - @XmlElement(required = true) - protected String productienummer; - @XmlElement(name = "tijdstip_samenstelling_bericht", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar tijdstipSamenstellingBericht; - @XmlElement(name = "actualiteit_tijdstip_hypothecair") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar actualiteitTijdstipHypothecair; - @XmlElement(name = "actualiteit_tijdstip_kadastraal") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar actualiteitTijdstipKadastraal; - @XmlElement(name = "signalering_tijdstip_beslagen") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar signaleringTijdstipBeslagen; - @XmlElement(name = "signalering_tijdstip_hypothecair") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar signaleringTijdstipHypothecair; - @XmlElement(name = "signalering_tijdstip_kadastraal") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar signaleringTijdstipKadastraal; - @XmlElement(required = true) - protected KadasterV2OnroerendeZaak betreft; - protected KadasterV2TenaamstellingArray tenaamstellingen; - @XmlElement(name = "zakelijk_rechten") - protected KadasterV2ZakelijkRechtArray zakelijkRechten; - protected KadasterV2AantekeningArray aantekeningen; - protected KadasterV2ErfpachtCanonArray erfpachtcanon; - protected KadasterV2Stukken stukken; - - /** - * Gets the value of the productienummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProductienummer() { - return productienummer; - } - - /** - * Sets the value of the productienummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProductienummer(String value) { - this.productienummer = value; - } - - /** - * Gets the value of the tijdstipSamenstellingBericht property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTijdstipSamenstellingBericht() { - return tijdstipSamenstellingBericht; - } - - /** - * Sets the value of the tijdstipSamenstellingBericht property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTijdstipSamenstellingBericht(XMLGregorianCalendar value) { - this.tijdstipSamenstellingBericht = value; - } - - /** - * Gets the value of the actualiteitTijdstipHypothecair property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getActualiteitTijdstipHypothecair() { - return actualiteitTijdstipHypothecair; - } - - /** - * Sets the value of the actualiteitTijdstipHypothecair property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setActualiteitTijdstipHypothecair(XMLGregorianCalendar value) { - this.actualiteitTijdstipHypothecair = value; - } - - /** - * Gets the value of the actualiteitTijdstipKadastraal property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getActualiteitTijdstipKadastraal() { - return actualiteitTijdstipKadastraal; - } - - /** - * Sets the value of the actualiteitTijdstipKadastraal property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setActualiteitTijdstipKadastraal(XMLGregorianCalendar value) { - this.actualiteitTijdstipKadastraal = value; - } - - /** - * Gets the value of the signaleringTijdstipBeslagen property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSignaleringTijdstipBeslagen() { - return signaleringTijdstipBeslagen; - } - - /** - * Sets the value of the signaleringTijdstipBeslagen property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSignaleringTijdstipBeslagen(XMLGregorianCalendar value) { - this.signaleringTijdstipBeslagen = value; - } - - /** - * Gets the value of the signaleringTijdstipHypothecair property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSignaleringTijdstipHypothecair() { - return signaleringTijdstipHypothecair; - } - - /** - * Sets the value of the signaleringTijdstipHypothecair property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSignaleringTijdstipHypothecair(XMLGregorianCalendar value) { - this.signaleringTijdstipHypothecair = value; - } - - /** - * Gets the value of the signaleringTijdstipKadastraal property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSignaleringTijdstipKadastraal() { - return signaleringTijdstipKadastraal; - } - - /** - * Sets the value of the signaleringTijdstipKadastraal property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSignaleringTijdstipKadastraal(XMLGregorianCalendar value) { - this.signaleringTijdstipKadastraal = value; - } - - /** - * Gets the value of the betreft property. - * - * @return - * possible object is - * {@link KadasterV2OnroerendeZaak } - * - */ - public KadasterV2OnroerendeZaak getBetreft() { - return betreft; - } - - /** - * Sets the value of the betreft property. - * - * @param value - * allowed object is - * {@link KadasterV2OnroerendeZaak } - * - */ - public void setBetreft(KadasterV2OnroerendeZaak value) { - this.betreft = value; - } - - /** - * Gets the value of the tenaamstellingen property. - * - * @return - * possible object is - * {@link KadasterV2TenaamstellingArray } - * - */ - public KadasterV2TenaamstellingArray getTenaamstellingen() { - return tenaamstellingen; - } - - /** - * Sets the value of the tenaamstellingen property. - * - * @param value - * allowed object is - * {@link KadasterV2TenaamstellingArray } - * - */ - public void setTenaamstellingen(KadasterV2TenaamstellingArray value) { - this.tenaamstellingen = value; - } - - /** - * Gets the value of the zakelijkRechten property. - * - * @return - * possible object is - * {@link KadasterV2ZakelijkRechtArray } - * - */ - public KadasterV2ZakelijkRechtArray getZakelijkRechten() { - return zakelijkRechten; - } - - /** - * Sets the value of the zakelijkRechten property. - * - * @param value - * allowed object is - * {@link KadasterV2ZakelijkRechtArray } - * - */ - public void setZakelijkRechten(KadasterV2ZakelijkRechtArray value) { - this.zakelijkRechten = value; - } - - /** - * Gets the value of the aantekeningen property. - * - * @return - * possible object is - * {@link KadasterV2AantekeningArray } - * - */ - public KadasterV2AantekeningArray getAantekeningen() { - return aantekeningen; - } - - /** - * Sets the value of the aantekeningen property. - * - * @param value - * allowed object is - * {@link KadasterV2AantekeningArray } - * - */ - public void setAantekeningen(KadasterV2AantekeningArray value) { - this.aantekeningen = value; - } - - /** - * Gets the value of the erfpachtcanon property. - * - * @return - * possible object is - * {@link KadasterV2ErfpachtCanonArray } - * - */ - public KadasterV2ErfpachtCanonArray getErfpachtcanon() { - return erfpachtcanon; - } - - /** - * Sets the value of the erfpachtcanon property. - * - * @param value - * allowed object is - * {@link KadasterV2ErfpachtCanonArray } - * - */ - public void setErfpachtcanon(KadasterV2ErfpachtCanonArray value) { - this.erfpachtcanon = value; - } - - /** - * Gets the value of the stukken property. - * - * @return - * possible object is - * {@link KadasterV2Stukken } - * - */ - public KadasterV2Stukken getStukken() { - return stukken; - } - - /** - * Sets the value of the stukken property. - * - * @param value - * allowed object is - * {@link KadasterV2Stukken } - * - */ - public void setStukken(KadasterV2Stukken value) { - this.stukken = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraalBerichtResponse.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraalBerichtResponse.java deleted file mode 100644 index 360b6de..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraalBerichtResponse.java +++ /dev/null @@ -1,146 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2KadastraalBerichtResponse complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2KadastraalBerichtResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bericht" type="{http://www.webservices.nl/soap/}KadasterV2KadastraalBericht" minOccurs="0"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
- *         <element name="overgegaan_in" type="{http://www.webservices.nl/soap/}KadasterV2OvergegaanIn" minOccurs="0"/>
- *         <element name="postcode_treffers" type="{http://www.webservices.nl/soap/}KadasterV2PostcodeTreffers" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2KadastraalBerichtResponse", propOrder = { - -}) -public class KadasterV2KadastraalBerichtResponse { - - protected KadasterV2KadastraalBericht bericht; - protected byte[] document; - @XmlElement(name = "overgegaan_in") - protected KadasterV2OvergegaanIn overgegaanIn; - @XmlElement(name = "postcode_treffers") - protected KadasterV2PostcodeTreffers postcodeTreffers; - - /** - * Gets the value of the bericht property. - * - * @return - * possible object is - * {@link KadasterV2KadastraalBericht } - * - */ - public KadasterV2KadastraalBericht getBericht() { - return bericht; - } - - /** - * Sets the value of the bericht property. - * - * @param value - * allowed object is - * {@link KadasterV2KadastraalBericht } - * - */ - public void setBericht(KadasterV2KadastraalBericht value) { - this.bericht = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - - /** - * Gets the value of the overgegaanIn property. - * - * @return - * possible object is - * {@link KadasterV2OvergegaanIn } - * - */ - public KadasterV2OvergegaanIn getOvergegaanIn() { - return overgegaanIn; - } - - /** - * Sets the value of the overgegaanIn property. - * - * @param value - * allowed object is - * {@link KadasterV2OvergegaanIn } - * - */ - public void setOvergegaanIn(KadasterV2OvergegaanIn value) { - this.overgegaanIn = value; - } - - /** - * Gets the value of the postcodeTreffers property. - * - * @return - * possible object is - * {@link KadasterV2PostcodeTreffers } - * - */ - public KadasterV2PostcodeTreffers getPostcodeTreffers() { - return postcodeTreffers; - } - - /** - * Sets the value of the postcodeTreffers property. - * - * @param value - * allowed object is - * {@link KadasterV2PostcodeTreffers } - * - */ - public void setPostcodeTreffers(KadasterV2PostcodeTreffers value) { - this.postcodeTreffers = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraleAanduiding.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraleAanduiding.java deleted file mode 100644 index 6370294..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraleAanduiding.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2KadastraleAanduiding complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2KadastraleAanduiding">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="kadastrale_gemeente" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="appartementsrecht_volgnummer" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2KadastraleAanduiding", propOrder = { - -}) -public class KadasterV2KadastraleAanduiding { - - @XmlElement(name = "kadastrale_gemeente") - protected String kadastraleGemeente; - protected String sectie; - protected BigInteger perceelnummer; - @XmlElement(name = "appartementsrecht_volgnummer") - protected BigInteger appartementsrechtVolgnummer; - - /** - * Gets the value of the kadastraleGemeente property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKadastraleGemeente() { - return kadastraleGemeente; - } - - /** - * Sets the value of the kadastraleGemeente property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKadastraleGemeente(String value) { - this.kadastraleGemeente = value; - } - - /** - * Gets the value of the sectie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectie() { - return sectie; - } - - /** - * Sets the value of the sectie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectie(String value) { - this.sectie = value; - } - - /** - * Gets the value of the perceelnummer property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setPerceelnummer(BigInteger value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the appartementsrechtVolgnummer property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAppartementsrechtVolgnummer() { - return appartementsrechtVolgnummer; - } - - /** - * Sets the value of the appartementsrechtVolgnummer property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAppartementsrechtVolgnummer(BigInteger value) { - this.appartementsrechtVolgnummer = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraleGrootte.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraleGrootte.java deleted file mode 100644 index 97f3d0b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KadastraleGrootte.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2KadastraleGrootte complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2KadastraleGrootte">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="waarde" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="soort_grootte" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2KadastraleGrootte", propOrder = { - -}) -public class KadasterV2KadastraleGrootte { - - protected Float waarde; - @XmlElement(name = "soort_grootte") - protected String soortGrootte; - - /** - * Gets the value of the waarde property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getWaarde() { - return waarde; - } - - /** - * Sets the value of the waarde property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setWaarde(Float value) { - this.waarde = value; - } - - /** - * Gets the value of the soortGrootte property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSoortGrootte() { - return soortGrootte; - } - - /** - * Sets the value of the soortGrootte property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSoortGrootte(String value) { - this.soortGrootte = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Koopsom.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Koopsom.java deleted file mode 100644 index ad3deb3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Koopsom.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for KadasterV2Koopsom complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Koopsom">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bedrag" type="{http://www.webservices.nl/soap/}KadasterV2Bedrag" minOccurs="0"/>
- *         <element name="indicatie_meer_objecten" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="koopjaar" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="koopdatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Koopsom", propOrder = { - -}) -public class KadasterV2Koopsom { - - protected KadasterV2Bedrag bedrag; - @XmlElement(name = "indicatie_meer_objecten") - protected Boolean indicatieMeerObjecten; - protected Integer koopjaar; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar koopdatum; - - /** - * Gets the value of the bedrag property. - * - * @return - * possible object is - * {@link KadasterV2Bedrag } - * - */ - public KadasterV2Bedrag getBedrag() { - return bedrag; - } - - /** - * Sets the value of the bedrag property. - * - * @param value - * allowed object is - * {@link KadasterV2Bedrag } - * - */ - public void setBedrag(KadasterV2Bedrag value) { - this.bedrag = value; - } - - /** - * Gets the value of the indicatieMeerObjecten property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicatieMeerObjecten() { - return indicatieMeerObjecten; - } - - /** - * Sets the value of the indicatieMeerObjecten property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicatieMeerObjecten(Boolean value) { - this.indicatieMeerObjecten = value; - } - - /** - * Gets the value of the koopjaar property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getKoopjaar() { - return koopjaar; - } - - /** - * Sets the value of the koopjaar property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setKoopjaar(Integer value) { - this.koopjaar = value; - } - - /** - * Gets the value of the koopdatum property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getKoopdatum() { - return koopdatum; - } - - /** - * Sets the value of the koopdatum property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setKoopdatum(XMLGregorianCalendar value) { - this.koopdatum = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsomGegeven.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsomGegeven.java deleted file mode 100644 index d8fcf57..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsomGegeven.java +++ /dev/null @@ -1,175 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2KoopsomGegeven complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2KoopsomGegeven">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="huisnummer_volledig" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="omschrijving_cultuur" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="kadastrale_grootte" type="{http://www.webservices.nl/soap/}KadasterV2KadastraleGrootte" minOccurs="0"/>
- *         <element name="koopsom" type="{http://www.webservices.nl/soap/}KadasterV2Koopsom" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2KoopsomGegeven", propOrder = { - -}) -public class KadasterV2KoopsomGegeven { - - protected String identificatie; - @XmlElement(name = "huisnummer_volledig") - protected String huisnummerVolledig; - @XmlElement(name = "omschrijving_cultuur") - protected String omschrijvingCultuur; - @XmlElement(name = "kadastrale_grootte") - protected KadasterV2KadastraleGrootte kadastraleGrootte; - protected KadasterV2Koopsom koopsom; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the huisnummerVolledig property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerVolledig() { - return huisnummerVolledig; - } - - /** - * Sets the value of the huisnummerVolledig property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerVolledig(String value) { - this.huisnummerVolledig = value; - } - - /** - * Gets the value of the omschrijvingCultuur property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijvingCultuur() { - return omschrijvingCultuur; - } - - /** - * Sets the value of the omschrijvingCultuur property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijvingCultuur(String value) { - this.omschrijvingCultuur = value; - } - - /** - * Gets the value of the kadastraleGrootte property. - * - * @return - * possible object is - * {@link KadasterV2KadastraleGrootte } - * - */ - public KadasterV2KadastraleGrootte getKadastraleGrootte() { - return kadastraleGrootte; - } - - /** - * Sets the value of the kadastraleGrootte property. - * - * @param value - * allowed object is - * {@link KadasterV2KadastraleGrootte } - * - */ - public void setKadastraleGrootte(KadasterV2KadastraleGrootte value) { - this.kadastraleGrootte = value; - } - - /** - * Gets the value of the koopsom property. - * - * @return - * possible object is - * {@link KadasterV2Koopsom } - * - */ - public KadasterV2Koopsom getKoopsom() { - return koopsom; - } - - /** - * Sets the value of the koopsom property. - * - * @param value - * allowed object is - * {@link KadasterV2Koopsom } - * - */ - public void setKoopsom(KadasterV2Koopsom value) { - this.koopsom = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsomGegevenArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsomGegevenArray.java deleted file mode 100644 index 1e34349..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsomGegevenArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2KoopsomGegevenArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2KoopsomGegevenArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2KoopsomGegeven" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2KoopsomGegevenArray", propOrder = { - "item" -}) -public class KadasterV2KoopsomGegevenArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2KoopsomGegeven } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsommenOverzicht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsommenOverzicht.java deleted file mode 100644 index ce917d6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsommenOverzicht.java +++ /dev/null @@ -1,207 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for KadasterV2KoopsommenOverzicht complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2KoopsommenOverzicht">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="productienummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="adres_range" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="woonplaats_naam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="actualiteittijdstip_koopsommen" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="tijdstip_samenstelling_bericht" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="gevraagd_gebied" type="{http://www.webservices.nl/soap/}KadasterV2GevraagdGebied" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2KoopsommenOverzicht", propOrder = { - -}) -public class KadasterV2KoopsommenOverzicht { - - protected String productienummer; - @XmlElement(name = "adres_range") - protected String adresRange; - @XmlElement(name = "woonplaats_naam") - protected String woonplaatsNaam; - @XmlElement(name = "actualiteittijdstip_koopsommen") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar actualiteittijdstipKoopsommen; - @XmlElement(name = "tijdstip_samenstelling_bericht") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar tijdstipSamenstellingBericht; - @XmlElement(name = "gevraagd_gebied") - protected KadasterV2GevraagdGebied gevraagdGebied; - - /** - * Gets the value of the productienummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProductienummer() { - return productienummer; - } - - /** - * Sets the value of the productienummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProductienummer(String value) { - this.productienummer = value; - } - - /** - * Gets the value of the adresRange property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAdresRange() { - return adresRange; - } - - /** - * Sets the value of the adresRange property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAdresRange(String value) { - this.adresRange = value; - } - - /** - * Gets the value of the woonplaatsNaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWoonplaatsNaam() { - return woonplaatsNaam; - } - - /** - * Sets the value of the woonplaatsNaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWoonplaatsNaam(String value) { - this.woonplaatsNaam = value; - } - - /** - * Gets the value of the actualiteittijdstipKoopsommen property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getActualiteittijdstipKoopsommen() { - return actualiteittijdstipKoopsommen; - } - - /** - * Sets the value of the actualiteittijdstipKoopsommen property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setActualiteittijdstipKoopsommen(XMLGregorianCalendar value) { - this.actualiteittijdstipKoopsommen = value; - } - - /** - * Gets the value of the tijdstipSamenstellingBericht property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTijdstipSamenstellingBericht() { - return tijdstipSamenstellingBericht; - } - - /** - * Sets the value of the tijdstipSamenstellingBericht property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTijdstipSamenstellingBericht(XMLGregorianCalendar value) { - this.tijdstipSamenstellingBericht = value; - } - - /** - * Gets the value of the gevraagdGebied property. - * - * @return - * possible object is - * {@link KadasterV2GevraagdGebied } - * - */ - public KadasterV2GevraagdGebied getGevraagdGebied() { - return gevraagdGebied; - } - - /** - * Sets the value of the gevraagdGebied property. - * - * @param value - * allowed object is - * {@link KadasterV2GevraagdGebied } - * - */ - public void setGevraagdGebied(KadasterV2GevraagdGebied value) { - this.gevraagdGebied = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsommenOverzichtResponse.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsommenOverzichtResponse.java deleted file mode 100644 index 4e2df51..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2KoopsommenOverzichtResponse.java +++ /dev/null @@ -1,91 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2KoopsommenOverzichtResponse complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2KoopsommenOverzichtResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="overzicht" type="{http://www.webservices.nl/soap/}KadasterV2KoopsommenOverzicht" minOccurs="0"/>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2KoopsommenOverzichtResponse", propOrder = { - -}) -public class KadasterV2KoopsommenOverzichtResponse { - - protected KadasterV2KoopsommenOverzicht overzicht; - protected byte[] document; - - /** - * Gets the value of the overzicht property. - * - * @return - * possible object is - * {@link KadasterV2KoopsommenOverzicht } - * - */ - public KadasterV2KoopsommenOverzicht getOverzicht() { - return overzicht; - } - - /** - * Sets the value of the overzicht property. - * - * @param value - * allowed object is - * {@link KadasterV2KoopsommenOverzicht } - * - */ - public void setOverzicht(KadasterV2KoopsommenOverzicht value) { - this.overzicht = value; - } - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LandinrichtingsRente.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LandinrichtingsRente.java deleted file mode 100644 index db0db26..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LandinrichtingsRente.java +++ /dev/null @@ -1,94 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2LandinrichtingsRente complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2LandinrichtingsRente">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bedrag" type="{http://www.webservices.nl/soap/}KadasterV2Bedrag" minOccurs="0"/>
- *         <element name="eindjaar" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2LandinrichtingsRente", propOrder = { - -}) -public class KadasterV2LandinrichtingsRente { - - protected KadasterV2Bedrag bedrag; - protected BigInteger eindjaar; - - /** - * Gets the value of the bedrag property. - * - * @return - * possible object is - * {@link KadasterV2Bedrag } - * - */ - public KadasterV2Bedrag getBedrag() { - return bedrag; - } - - /** - * Sets the value of the bedrag property. - * - * @param value - * allowed object is - * {@link KadasterV2Bedrag } - * - */ - public void setBedrag(KadasterV2Bedrag value) { - this.bedrag = value; - } - - /** - * Gets the value of the eindjaar property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getEindjaar() { - return eindjaar; - } - - /** - * Sets the value of the eindjaar property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setEindjaar(BigInteger value) { - this.eindjaar = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LandinrichtingsRenteArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LandinrichtingsRenteArray.java deleted file mode 100644 index 9d39ae2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LandinrichtingsRenteArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2LandinrichtingsRenteArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2LandinrichtingsRenteArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2LandinrichtingsRente" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2LandinrichtingsRenteArray", propOrder = { - "item" -}) -public class KadasterV2LandinrichtingsRenteArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2LandinrichtingsRente } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBinnenland.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBinnenland.java deleted file mode 100644 index 03956c2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBinnenland.java +++ /dev/null @@ -1,253 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2LocatieBinnenland complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2LocatieBinnenland">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="straatnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="huisletter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="huisnummertoevoeging" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="in_onderzoek" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="woonplaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2LocatieBinnenland", propOrder = { - -}) -public class KadasterV2LocatieBinnenland { - - @XmlElement(required = true) - protected String identificatie; - protected String straatnaam; - protected BigInteger huisnummer; - protected String huisletter; - protected String huisnummertoevoeging; - protected String postcode; - @XmlElement(name = "in_onderzoek") - protected String inOnderzoek; - protected String woonplaats; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the straatnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStraatnaam() { - return straatnaam; - } - - /** - * Sets the value of the straatnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStraatnaam(String value) { - this.straatnaam = value; - } - - /** - * Gets the value of the huisnummer property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setHuisnummer(BigInteger value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisletter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisletter() { - return huisletter; - } - - /** - * Sets the value of the huisletter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisletter(String value) { - this.huisletter = value; - } - - /** - * Gets the value of the huisnummertoevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummertoevoeging() { - return huisnummertoevoeging; - } - - /** - * Sets the value of the huisnummertoevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummertoevoeging(String value) { - this.huisnummertoevoeging = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the inOnderzoek property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInOnderzoek() { - return inOnderzoek; - } - - /** - * Sets the value of the inOnderzoek property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInOnderzoek(String value) { - this.inOnderzoek = value; - } - - /** - * Gets the value of the woonplaats property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWoonplaats() { - return woonplaats; - } - - /** - * Sets the value of the woonplaats property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWoonplaats(String value) { - this.woonplaats = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBinnenlandArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBinnenlandArray.java deleted file mode 100644 index 0c4ccd1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBinnenlandArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2LocatieBinnenlandArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2LocatieBinnenlandArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2LocatieBinnenland" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2LocatieBinnenlandArray", propOrder = { - "item" -}) -public class KadasterV2LocatieBinnenlandArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2LocatieBinnenland } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBuitenland.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBuitenland.java deleted file mode 100644 index 82b96e5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBuitenland.java +++ /dev/null @@ -1,200 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2LocatieBuitenland complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2LocatieBuitenland">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="adres" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="adres_regels" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="woonplaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="regio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="land" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2LocatieBuitenland", propOrder = { - -}) -public class KadasterV2LocatieBuitenland { - - @XmlElement(required = true) - protected String identificatie; - protected String adres; - @XmlElement(name = "adres_regels") - protected StringArray adresRegels; - protected String woonplaats; - protected String regio; - protected String land; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the adres property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAdres() { - return adres; - } - - /** - * Sets the value of the adres property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAdres(String value) { - this.adres = value; - } - - /** - * Gets the value of the adresRegels property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getAdresRegels() { - return adresRegels; - } - - /** - * Sets the value of the adresRegels property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setAdresRegels(StringArray value) { - this.adresRegels = value; - } - - /** - * Gets the value of the woonplaats property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWoonplaats() { - return woonplaats; - } - - /** - * Sets the value of the woonplaats property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWoonplaats(String value) { - this.woonplaats = value; - } - - /** - * Gets the value of the regio property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegio() { - return regio; - } - - /** - * Sets the value of the regio property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegio(String value) { - this.regio = value; - } - - /** - * Gets the value of the land property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLand() { - return land; - } - - /** - * Sets the value of the land property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLand(String value) { - this.land = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBuitenlandArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBuitenlandArray.java deleted file mode 100644 index ce0cb0f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatieBuitenlandArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2LocatieBuitenlandArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2LocatieBuitenlandArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2LocatieBuitenland" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2LocatieBuitenlandArray", propOrder = { - "item" -}) -public class KadasterV2LocatieBuitenlandArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2LocatieBuitenland } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatiePostbus.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatiePostbus.java deleted file mode 100644 index e5c3f8b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatiePostbus.java +++ /dev/null @@ -1,148 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2LocatiePostbus complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2LocatiePostbus">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postbus_nummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="woonplaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2LocatiePostbus", propOrder = { - -}) -public class KadasterV2LocatiePostbus { - - @XmlElement(required = true) - protected String identificatie; - @XmlElement(name = "postbus_nummer") - protected String postbusNummer; - protected String postcode; - protected String woonplaats; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the postbusNummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostbusNummer() { - return postbusNummer; - } - - /** - * Sets the value of the postbusNummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostbusNummer(String value) { - this.postbusNummer = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the woonplaats property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWoonplaats() { - return woonplaats; - } - - /** - * Sets the value of the woonplaats property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWoonplaats(String value) { - this.woonplaats = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatiePostbusArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatiePostbusArray.java deleted file mode 100644 index b57de2d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2LocatiePostbusArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2LocatiePostbusArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2LocatiePostbusArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2LocatiePostbus" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2LocatiePostbusArray", propOrder = { - "item" -}) -public class KadasterV2LocatiePostbusArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2LocatiePostbus } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Mandeligheid.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Mandeligheid.java deleted file mode 100644 index c807a30..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Mandeligheid.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2Mandeligheid complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Mandeligheid">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="hoort_bij" type="{http://www.webservices.nl/soap/}KadasterV2HoofdzaakArray" minOccurs="0"/>
- *         <element name="gebaseerd_op" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Mandeligheid", propOrder = { - -}) -public class KadasterV2Mandeligheid { - - protected String identificatie; - @XmlElement(name = "hoort_bij") - protected KadasterV2HoofdzaakArray hoortBij; - @XmlElement(name = "gebaseerd_op") - protected KadasterV2StukdeelArray gebaseerdOp; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the hoortBij property. - * - * @return - * possible object is - * {@link KadasterV2HoofdzaakArray } - * - */ - public KadasterV2HoofdzaakArray getHoortBij() { - return hoortBij; - } - - /** - * Sets the value of the hoortBij property. - * - * @param value - * allowed object is - * {@link KadasterV2HoofdzaakArray } - * - */ - public void setHoortBij(KadasterV2HoofdzaakArray value) { - this.hoortBij = value; - } - - /** - * Gets the value of the gebaseerdOp property. - * - * @return - * possible object is - * {@link KadasterV2StukdeelArray } - * - */ - public KadasterV2StukdeelArray getGebaseerdOp() { - return gebaseerdOp; - } - - /** - * Sets the value of the gebaseerdOp property. - * - * @param value - * allowed object is - * {@link KadasterV2StukdeelArray } - * - */ - public void setGebaseerdOp(KadasterV2StukdeelArray value) { - this.gebaseerdOp = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2MandeligheidArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2MandeligheidArray.java deleted file mode 100644 index 409f8da..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2MandeligheidArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2MandeligheidArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2MandeligheidArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Mandeligheid" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2MandeligheidArray", propOrder = { - "item" -}) -public class KadasterV2MandeligheidArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2Mandeligheid } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NatuurlijkPersoon.java deleted file mode 100644 index 4c23554..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NatuurlijkPersoon.java +++ /dev/null @@ -1,577 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for KadasterV2NatuurlijkPersoon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2NatuurlijkPersoon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="indicatie_beschikkingsbevoegdheid" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="bsn" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="aanduiding_naamgebruik" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="adellijke_titel_of_predikaat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="voorletters" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="voornamen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="voorvoegsel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="geslachtnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="geslacht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="datum_geboorte" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="indicatie_overleden" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="datum_overlijden" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="land_waarnaar_vertrokken" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="bpr_gekoppeld" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="burgerlijke_staat_omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="postlocatie" type="{http://www.webservices.nl/soap/}KadasterV2AdresLocatie" minOccurs="0"/>
- *         <element name="woonlocatie" type="{http://www.webservices.nl/soap/}KadasterV2AdresLocatie" minOccurs="0"/>
- *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
- *         <element name="aanvullingen" type="{http://www.webservices.nl/soap/}KadasterV2AanvullingArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2NatuurlijkPersoon", propOrder = { - -}) -public class KadasterV2NatuurlijkPersoon { - - @XmlElement(required = true) - protected String identificatie; - @XmlElement(name = "indicatie_beschikkingsbevoegdheid") - protected Boolean indicatieBeschikkingsbevoegdheid; - protected String bsn; - @XmlElement(name = "aanduiding_naamgebruik") - protected String aanduidingNaamgebruik; - @XmlElement(name = "adellijke_titel_of_predikaat") - protected String adellijkeTitelOfPredikaat; - protected String voorletters; - protected String voornamen; - protected String voorvoegsel; - protected String geslachtnaam; - protected String geslacht; - @XmlElement(name = "datum_geboorte") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar datumGeboorte; - @XmlElement(name = "indicatie_overleden") - protected Boolean indicatieOverleden; - @XmlElement(name = "datum_overlijden") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar datumOverlijden; - @XmlElement(name = "land_waarnaar_vertrokken") - protected String landWaarnaarVertrokken; - @XmlElement(name = "bpr_gekoppeld") - protected Boolean bprGekoppeld; - @XmlElement(name = "burgerlijke_staat_omschrijving") - protected String burgerlijkeStaatOmschrijving; - protected KadasterV2AdresLocatie postlocatie; - protected KadasterV2AdresLocatie woonlocatie; - @XmlElement(name = "vermeld_in") - protected KadasterV2StukdeelArray vermeldIn; - protected KadasterV2AanvullingArray aanvullingen; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the indicatieBeschikkingsbevoegdheid property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicatieBeschikkingsbevoegdheid() { - return indicatieBeschikkingsbevoegdheid; - } - - /** - * Sets the value of the indicatieBeschikkingsbevoegdheid property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicatieBeschikkingsbevoegdheid(Boolean value) { - this.indicatieBeschikkingsbevoegdheid = value; - } - - /** - * Gets the value of the bsn property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBsn() { - return bsn; - } - - /** - * Sets the value of the bsn property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBsn(String value) { - this.bsn = value; - } - - /** - * Gets the value of the aanduidingNaamgebruik property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAanduidingNaamgebruik() { - return aanduidingNaamgebruik; - } - - /** - * Sets the value of the aanduidingNaamgebruik property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAanduidingNaamgebruik(String value) { - this.aanduidingNaamgebruik = value; - } - - /** - * Gets the value of the adellijkeTitelOfPredikaat property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAdellijkeTitelOfPredikaat() { - return adellijkeTitelOfPredikaat; - } - - /** - * Sets the value of the adellijkeTitelOfPredikaat property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAdellijkeTitelOfPredikaat(String value) { - this.adellijkeTitelOfPredikaat = value; - } - - /** - * Gets the value of the voorletters property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVoorletters() { - return voorletters; - } - - /** - * Sets the value of the voorletters property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVoorletters(String value) { - this.voorletters = value; - } - - /** - * Gets the value of the voornamen property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVoornamen() { - return voornamen; - } - - /** - * Sets the value of the voornamen property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVoornamen(String value) { - this.voornamen = value; - } - - /** - * Gets the value of the voorvoegsel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVoorvoegsel() { - return voorvoegsel; - } - - /** - * Sets the value of the voorvoegsel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVoorvoegsel(String value) { - this.voorvoegsel = value; - } - - /** - * Gets the value of the geslachtnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeslachtnaam() { - return geslachtnaam; - } - - /** - * Sets the value of the geslachtnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeslachtnaam(String value) { - this.geslachtnaam = value; - } - - /** - * Gets the value of the geslacht property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeslacht() { - return geslacht; - } - - /** - * Sets the value of the geslacht property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeslacht(String value) { - this.geslacht = value; - } - - /** - * Gets the value of the datumGeboorte property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDatumGeboorte() { - return datumGeboorte; - } - - /** - * Sets the value of the datumGeboorte property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDatumGeboorte(XMLGregorianCalendar value) { - this.datumGeboorte = value; - } - - /** - * Gets the value of the indicatieOverleden property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicatieOverleden() { - return indicatieOverleden; - } - - /** - * Sets the value of the indicatieOverleden property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicatieOverleden(Boolean value) { - this.indicatieOverleden = value; - } - - /** - * Gets the value of the datumOverlijden property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDatumOverlijden() { - return datumOverlijden; - } - - /** - * Sets the value of the datumOverlijden property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDatumOverlijden(XMLGregorianCalendar value) { - this.datumOverlijden = value; - } - - /** - * Gets the value of the landWaarnaarVertrokken property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLandWaarnaarVertrokken() { - return landWaarnaarVertrokken; - } - - /** - * Sets the value of the landWaarnaarVertrokken property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLandWaarnaarVertrokken(String value) { - this.landWaarnaarVertrokken = value; - } - - /** - * Gets the value of the bprGekoppeld property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isBprGekoppeld() { - return bprGekoppeld; - } - - /** - * Sets the value of the bprGekoppeld property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setBprGekoppeld(Boolean value) { - this.bprGekoppeld = value; - } - - /** - * Gets the value of the burgerlijkeStaatOmschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBurgerlijkeStaatOmschrijving() { - return burgerlijkeStaatOmschrijving; - } - - /** - * Sets the value of the burgerlijkeStaatOmschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBurgerlijkeStaatOmschrijving(String value) { - this.burgerlijkeStaatOmschrijving = value; - } - - /** - * Gets the value of the postlocatie property. - * - * @return - * possible object is - * {@link KadasterV2AdresLocatie } - * - */ - public KadasterV2AdresLocatie getPostlocatie() { - return postlocatie; - } - - /** - * Sets the value of the postlocatie property. - * - * @param value - * allowed object is - * {@link KadasterV2AdresLocatie } - * - */ - public void setPostlocatie(KadasterV2AdresLocatie value) { - this.postlocatie = value; - } - - /** - * Gets the value of the woonlocatie property. - * - * @return - * possible object is - * {@link KadasterV2AdresLocatie } - * - */ - public KadasterV2AdresLocatie getWoonlocatie() { - return woonlocatie; - } - - /** - * Sets the value of the woonlocatie property. - * - * @param value - * allowed object is - * {@link KadasterV2AdresLocatie } - * - */ - public void setWoonlocatie(KadasterV2AdresLocatie value) { - this.woonlocatie = value; - } - - /** - * Gets the value of the vermeldIn property. - * - * @return - * possible object is - * {@link KadasterV2StukdeelArray } - * - */ - public KadasterV2StukdeelArray getVermeldIn() { - return vermeldIn; - } - - /** - * Sets the value of the vermeldIn property. - * - * @param value - * allowed object is - * {@link KadasterV2StukdeelArray } - * - */ - public void setVermeldIn(KadasterV2StukdeelArray value) { - this.vermeldIn = value; - } - - /** - * Gets the value of the aanvullingen property. - * - * @return - * possible object is - * {@link KadasterV2AanvullingArray } - * - */ - public KadasterV2AanvullingArray getAanvullingen() { - return aanvullingen; - } - - /** - * Sets the value of the aanvullingen property. - * - * @param value - * allowed object is - * {@link KadasterV2AanvullingArray } - * - */ - public void setAanvullingen(KadasterV2AanvullingArray value) { - this.aanvullingen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NatuurlijkPersoonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NatuurlijkPersoonArray.java deleted file mode 100644 index b554442..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NatuurlijkPersoonArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2NatuurlijkPersoonArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2NatuurlijkPersoonArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2NatuurlijkPersoon" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2NatuurlijkPersoonArray", propOrder = { - "item" -}) -public class KadasterV2NatuurlijkPersoonArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2NatuurlijkPersoon } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NietNatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NietNatuurlijkPersoon.java deleted file mode 100644 index 2ee1ff4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NietNatuurlijkPersoon.java +++ /dev/null @@ -1,333 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2NietNatuurlijkPersoon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2NietNatuurlijkPersoon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="indicatie_beschikkingsbevoegdheid" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="statutaire_naam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="statutaire_zetel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="rechtsvorm" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="dossier_nummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="rsin" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="postlocatie" type="{http://www.webservices.nl/soap/}KadasterV2AdresLocatie" minOccurs="0"/>
- *         <element name="woonlocatie" type="{http://www.webservices.nl/soap/}KadasterV2AdresLocatie" minOccurs="0"/>
- *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
- *         <element name="aanvullingen" type="{http://www.webservices.nl/soap/}KadasterV2AanvullingArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2NietNatuurlijkPersoon", propOrder = { - -}) -public class KadasterV2NietNatuurlijkPersoon { - - protected String identificatie; - @XmlElement(name = "indicatie_beschikkingsbevoegdheid") - protected Boolean indicatieBeschikkingsbevoegdheid; - @XmlElement(name = "statutaire_naam") - protected String statutaireNaam; - @XmlElement(name = "statutaire_zetel") - protected String statutaireZetel; - protected String rechtsvorm; - @XmlElement(name = "dossier_nummer") - protected String dossierNummer; - protected String rsin; - protected KadasterV2AdresLocatie postlocatie; - protected KadasterV2AdresLocatie woonlocatie; - @XmlElement(name = "vermeld_in") - protected KadasterV2StukdeelArray vermeldIn; - protected KadasterV2AanvullingArray aanvullingen; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the indicatieBeschikkingsbevoegdheid property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicatieBeschikkingsbevoegdheid() { - return indicatieBeschikkingsbevoegdheid; - } - - /** - * Sets the value of the indicatieBeschikkingsbevoegdheid property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicatieBeschikkingsbevoegdheid(Boolean value) { - this.indicatieBeschikkingsbevoegdheid = value; - } - - /** - * Gets the value of the statutaireNaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatutaireNaam() { - return statutaireNaam; - } - - /** - * Sets the value of the statutaireNaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatutaireNaam(String value) { - this.statutaireNaam = value; - } - - /** - * Gets the value of the statutaireZetel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatutaireZetel() { - return statutaireZetel; - } - - /** - * Sets the value of the statutaireZetel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatutaireZetel(String value) { - this.statutaireZetel = value; - } - - /** - * Gets the value of the rechtsvorm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRechtsvorm() { - return rechtsvorm; - } - - /** - * Sets the value of the rechtsvorm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRechtsvorm(String value) { - this.rechtsvorm = value; - } - - /** - * Gets the value of the dossierNummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNummer() { - return dossierNummer; - } - - /** - * Sets the value of the dossierNummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNummer(String value) { - this.dossierNummer = value; - } - - /** - * Gets the value of the rsin property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsin() { - return rsin; - } - - /** - * Sets the value of the rsin property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsin(String value) { - this.rsin = value; - } - - /** - * Gets the value of the postlocatie property. - * - * @return - * possible object is - * {@link KadasterV2AdresLocatie } - * - */ - public KadasterV2AdresLocatie getPostlocatie() { - return postlocatie; - } - - /** - * Sets the value of the postlocatie property. - * - * @param value - * allowed object is - * {@link KadasterV2AdresLocatie } - * - */ - public void setPostlocatie(KadasterV2AdresLocatie value) { - this.postlocatie = value; - } - - /** - * Gets the value of the woonlocatie property. - * - * @return - * possible object is - * {@link KadasterV2AdresLocatie } - * - */ - public KadasterV2AdresLocatie getWoonlocatie() { - return woonlocatie; - } - - /** - * Sets the value of the woonlocatie property. - * - * @param value - * allowed object is - * {@link KadasterV2AdresLocatie } - * - */ - public void setWoonlocatie(KadasterV2AdresLocatie value) { - this.woonlocatie = value; - } - - /** - * Gets the value of the vermeldIn property. - * - * @return - * possible object is - * {@link KadasterV2StukdeelArray } - * - */ - public KadasterV2StukdeelArray getVermeldIn() { - return vermeldIn; - } - - /** - * Sets the value of the vermeldIn property. - * - * @param value - * allowed object is - * {@link KadasterV2StukdeelArray } - * - */ - public void setVermeldIn(KadasterV2StukdeelArray value) { - this.vermeldIn = value; - } - - /** - * Gets the value of the aanvullingen property. - * - * @return - * possible object is - * {@link KadasterV2AanvullingArray } - * - */ - public KadasterV2AanvullingArray getAanvullingen() { - return aanvullingen; - } - - /** - * Sets the value of the aanvullingen property. - * - * @param value - * allowed object is - * {@link KadasterV2AanvullingArray } - * - */ - public void setAanvullingen(KadasterV2AanvullingArray value) { - this.aanvullingen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NietNatuurlijkPersoonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NietNatuurlijkPersoonArray.java deleted file mode 100644 index c24dad1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2NietNatuurlijkPersoonArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2NietNatuurlijkPersoonArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2NietNatuurlijkPersoonArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2NietNatuurlijkPersoon" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2NietNatuurlijkPersoonArray", propOrder = { - "item" -}) -public class KadasterV2NietNatuurlijkPersoonArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2NietNatuurlijkPersoon } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaak.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaak.java deleted file mode 100644 index 2343b15..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaak.java +++ /dev/null @@ -1,790 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for KadasterV2OnroerendeZaak complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2OnroerendeZaak">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="kadastrale_aanduiding" type="{http://www.webservices.nl/soap/}KadasterV2KadastraleAanduiding" minOccurs="0"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="adressen" type="{http://www.webservices.nl/soap/}KadasterV2AdresLocatieArray" minOccurs="0"/>
- *         <element name="tekeningen" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
- *         <element name="uin" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="aard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="kadastrale_grootte" type="{http://www.webservices.nl/soap/}KadasterV2KadastraleGrootte" minOccurs="0"/>
- *         <element name="plaatscoordinaten" type="{http://www.webservices.nl/soap/}KadasterV2Coordinaat" minOccurs="0"/>
- *         <element name="belast_met" type="{http://www.webservices.nl/soap/}KadasterV2LandinrichtingsRenteArray" minOccurs="0"/>
- *         <element name="aard_cultuur_onbebouwd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="aard_cultuur_bebouwd" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="omschrijving_onderzoek_erfdienstbaarheden" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="toestandsdatum_onderzoek_erfdienstbaarheden" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="koopsom" type="{http://www.webservices.nl/soap/}KadasterV2Koopsom" minOccurs="0"/>
- *         <element name="indicatie_voorlopige_aantekening" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="indicatie_tweede_splitsing" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="indicatie_gedeeltelijk_bezwaard_oud_object" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="indicatie_gesplitst" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="indicatie_voorgenomen_aantekening" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="toelichting_bewaarder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="historie" type="{http://www.webservices.nl/soap/}KadasterV2Historie" minOccurs="0"/>
- *         <element name="overgegaan_in" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaakFiliatieArray" minOccurs="0"/>
- *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
- *         <element name="ontstaan_uit" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaakFiliatieArray" minOccurs="0"/>
- *         <element name="aantekeningen_wkpb" type="{http://www.webservices.nl/soap/}KadasterV2AantekeningWKPBArray" minOccurs="0"/>
- *         <element name="aanvullingen" type="{http://www.webservices.nl/soap/}KadasterV2AanvullingArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2OnroerendeZaak", propOrder = { - -}) -public class KadasterV2OnroerendeZaak { - - protected String identificatie; - @XmlElement(name = "kadastrale_aanduiding") - protected KadasterV2KadastraleAanduiding kadastraleAanduiding; - protected String type; - protected KadasterV2AdresLocatieArray adressen; - protected KadasterV2StukdeelArray tekeningen; - protected String uin; - protected String aard; - protected String omschrijving; - @XmlElement(name = "kadastrale_grootte") - protected KadasterV2KadastraleGrootte kadastraleGrootte; - protected KadasterV2Coordinaat plaatscoordinaten; - @XmlElement(name = "belast_met") - protected KadasterV2LandinrichtingsRenteArray belastMet; - @XmlElement(name = "aard_cultuur_onbebouwd") - protected String aardCultuurOnbebouwd; - @XmlElement(name = "aard_cultuur_bebouwd") - protected String aardCultuurBebouwd; - @XmlElement(name = "omschrijving_onderzoek_erfdienstbaarheden") - protected String omschrijvingOnderzoekErfdienstbaarheden; - @XmlElement(name = "toestandsdatum_onderzoek_erfdienstbaarheden") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar toestandsdatumOnderzoekErfdienstbaarheden; - protected KadasterV2Koopsom koopsom; - @XmlElement(name = "indicatie_voorlopige_aantekening") - protected Boolean indicatieVoorlopigeAantekening; - @XmlElement(name = "indicatie_tweede_splitsing") - protected Boolean indicatieTweedeSplitsing; - @XmlElement(name = "indicatie_gedeeltelijk_bezwaard_oud_object") - protected Boolean indicatieGedeeltelijkBezwaardOudObject; - @XmlElement(name = "indicatie_gesplitst") - protected Boolean indicatieGesplitst; - @XmlElement(name = "indicatie_voorgenomen_aantekening") - protected Boolean indicatieVoorgenomenAantekening; - @XmlElement(name = "toelichting_bewaarder") - protected String toelichtingBewaarder; - protected KadasterV2Historie historie; - @XmlElement(name = "overgegaan_in") - protected KadasterV2OnroerendeZaakFiliatieArray overgegaanIn; - @XmlElement(name = "vermeld_in") - protected KadasterV2StukdeelArray vermeldIn; - @XmlElement(name = "ontstaan_uit") - protected KadasterV2OnroerendeZaakFiliatieArray ontstaanUit; - @XmlElement(name = "aantekeningen_wkpb") - protected KadasterV2AantekeningWKPBArray aantekeningenWkpb; - protected KadasterV2AanvullingArray aanvullingen; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the kadastraleAanduiding property. - * - * @return - * possible object is - * {@link KadasterV2KadastraleAanduiding } - * - */ - public KadasterV2KadastraleAanduiding getKadastraleAanduiding() { - return kadastraleAanduiding; - } - - /** - * Sets the value of the kadastraleAanduiding property. - * - * @param value - * allowed object is - * {@link KadasterV2KadastraleAanduiding } - * - */ - public void setKadastraleAanduiding(KadasterV2KadastraleAanduiding value) { - this.kadastraleAanduiding = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the adressen property. - * - * @return - * possible object is - * {@link KadasterV2AdresLocatieArray } - * - */ - public KadasterV2AdresLocatieArray getAdressen() { - return adressen; - } - - /** - * Sets the value of the adressen property. - * - * @param value - * allowed object is - * {@link KadasterV2AdresLocatieArray } - * - */ - public void setAdressen(KadasterV2AdresLocatieArray value) { - this.adressen = value; - } - - /** - * Gets the value of the tekeningen property. - * - * @return - * possible object is - * {@link KadasterV2StukdeelArray } - * - */ - public KadasterV2StukdeelArray getTekeningen() { - return tekeningen; - } - - /** - * Sets the value of the tekeningen property. - * - * @param value - * allowed object is - * {@link KadasterV2StukdeelArray } - * - */ - public void setTekeningen(KadasterV2StukdeelArray value) { - this.tekeningen = value; - } - - /** - * Gets the value of the uin property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUin() { - return uin; - } - - /** - * Sets the value of the uin property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUin(String value) { - this.uin = value; - } - - /** - * Gets the value of the aard property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAard() { - return aard; - } - - /** - * Sets the value of the aard property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAard(String value) { - this.aard = value; - } - - /** - * Gets the value of the omschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijving() { - return omschrijving; - } - - /** - * Sets the value of the omschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijving(String value) { - this.omschrijving = value; - } - - /** - * Gets the value of the kadastraleGrootte property. - * - * @return - * possible object is - * {@link KadasterV2KadastraleGrootte } - * - */ - public KadasterV2KadastraleGrootte getKadastraleGrootte() { - return kadastraleGrootte; - } - - /** - * Sets the value of the kadastraleGrootte property. - * - * @param value - * allowed object is - * {@link KadasterV2KadastraleGrootte } - * - */ - public void setKadastraleGrootte(KadasterV2KadastraleGrootte value) { - this.kadastraleGrootte = value; - } - - /** - * Gets the value of the plaatscoordinaten property. - * - * @return - * possible object is - * {@link KadasterV2Coordinaat } - * - */ - public KadasterV2Coordinaat getPlaatscoordinaten() { - return plaatscoordinaten; - } - - /** - * Sets the value of the plaatscoordinaten property. - * - * @param value - * allowed object is - * {@link KadasterV2Coordinaat } - * - */ - public void setPlaatscoordinaten(KadasterV2Coordinaat value) { - this.plaatscoordinaten = value; - } - - /** - * Gets the value of the belastMet property. - * - * @return - * possible object is - * {@link KadasterV2LandinrichtingsRenteArray } - * - */ - public KadasterV2LandinrichtingsRenteArray getBelastMet() { - return belastMet; - } - - /** - * Sets the value of the belastMet property. - * - * @param value - * allowed object is - * {@link KadasterV2LandinrichtingsRenteArray } - * - */ - public void setBelastMet(KadasterV2LandinrichtingsRenteArray value) { - this.belastMet = value; - } - - /** - * Gets the value of the aardCultuurOnbebouwd property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAardCultuurOnbebouwd() { - return aardCultuurOnbebouwd; - } - - /** - * Sets the value of the aardCultuurOnbebouwd property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAardCultuurOnbebouwd(String value) { - this.aardCultuurOnbebouwd = value; - } - - /** - * Gets the value of the aardCultuurBebouwd property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAardCultuurBebouwd() { - return aardCultuurBebouwd; - } - - /** - * Sets the value of the aardCultuurBebouwd property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAardCultuurBebouwd(String value) { - this.aardCultuurBebouwd = value; - } - - /** - * Gets the value of the omschrijvingOnderzoekErfdienstbaarheden property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijvingOnderzoekErfdienstbaarheden() { - return omschrijvingOnderzoekErfdienstbaarheden; - } - - /** - * Sets the value of the omschrijvingOnderzoekErfdienstbaarheden property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijvingOnderzoekErfdienstbaarheden(String value) { - this.omschrijvingOnderzoekErfdienstbaarheden = value; - } - - /** - * Gets the value of the toestandsdatumOnderzoekErfdienstbaarheden property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getToestandsdatumOnderzoekErfdienstbaarheden() { - return toestandsdatumOnderzoekErfdienstbaarheden; - } - - /** - * Sets the value of the toestandsdatumOnderzoekErfdienstbaarheden property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setToestandsdatumOnderzoekErfdienstbaarheden(XMLGregorianCalendar value) { - this.toestandsdatumOnderzoekErfdienstbaarheden = value; - } - - /** - * Gets the value of the koopsom property. - * - * @return - * possible object is - * {@link KadasterV2Koopsom } - * - */ - public KadasterV2Koopsom getKoopsom() { - return koopsom; - } - - /** - * Sets the value of the koopsom property. - * - * @param value - * allowed object is - * {@link KadasterV2Koopsom } - * - */ - public void setKoopsom(KadasterV2Koopsom value) { - this.koopsom = value; - } - - /** - * Gets the value of the indicatieVoorlopigeAantekening property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicatieVoorlopigeAantekening() { - return indicatieVoorlopigeAantekening; - } - - /** - * Sets the value of the indicatieVoorlopigeAantekening property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicatieVoorlopigeAantekening(Boolean value) { - this.indicatieVoorlopigeAantekening = value; - } - - /** - * Gets the value of the indicatieTweedeSplitsing property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicatieTweedeSplitsing() { - return indicatieTweedeSplitsing; - } - - /** - * Sets the value of the indicatieTweedeSplitsing property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicatieTweedeSplitsing(Boolean value) { - this.indicatieTweedeSplitsing = value; - } - - /** - * Gets the value of the indicatieGedeeltelijkBezwaardOudObject property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicatieGedeeltelijkBezwaardOudObject() { - return indicatieGedeeltelijkBezwaardOudObject; - } - - /** - * Sets the value of the indicatieGedeeltelijkBezwaardOudObject property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicatieGedeeltelijkBezwaardOudObject(Boolean value) { - this.indicatieGedeeltelijkBezwaardOudObject = value; - } - - /** - * Gets the value of the indicatieGesplitst property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicatieGesplitst() { - return indicatieGesplitst; - } - - /** - * Sets the value of the indicatieGesplitst property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicatieGesplitst(Boolean value) { - this.indicatieGesplitst = value; - } - - /** - * Gets the value of the indicatieVoorgenomenAantekening property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicatieVoorgenomenAantekening() { - return indicatieVoorgenomenAantekening; - } - - /** - * Sets the value of the indicatieVoorgenomenAantekening property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicatieVoorgenomenAantekening(Boolean value) { - this.indicatieVoorgenomenAantekening = value; - } - - /** - * Gets the value of the toelichtingBewaarder property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToelichtingBewaarder() { - return toelichtingBewaarder; - } - - /** - * Sets the value of the toelichtingBewaarder property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToelichtingBewaarder(String value) { - this.toelichtingBewaarder = value; - } - - /** - * Gets the value of the historie property. - * - * @return - * possible object is - * {@link KadasterV2Historie } - * - */ - public KadasterV2Historie getHistorie() { - return historie; - } - - /** - * Sets the value of the historie property. - * - * @param value - * allowed object is - * {@link KadasterV2Historie } - * - */ - public void setHistorie(KadasterV2Historie value) { - this.historie = value; - } - - /** - * Gets the value of the overgegaanIn property. - * - * @return - * possible object is - * {@link KadasterV2OnroerendeZaakFiliatieArray } - * - */ - public KadasterV2OnroerendeZaakFiliatieArray getOvergegaanIn() { - return overgegaanIn; - } - - /** - * Sets the value of the overgegaanIn property. - * - * @param value - * allowed object is - * {@link KadasterV2OnroerendeZaakFiliatieArray } - * - */ - public void setOvergegaanIn(KadasterV2OnroerendeZaakFiliatieArray value) { - this.overgegaanIn = value; - } - - /** - * Gets the value of the vermeldIn property. - * - * @return - * possible object is - * {@link KadasterV2StukdeelArray } - * - */ - public KadasterV2StukdeelArray getVermeldIn() { - return vermeldIn; - } - - /** - * Sets the value of the vermeldIn property. - * - * @param value - * allowed object is - * {@link KadasterV2StukdeelArray } - * - */ - public void setVermeldIn(KadasterV2StukdeelArray value) { - this.vermeldIn = value; - } - - /** - * Gets the value of the ontstaanUit property. - * - * @return - * possible object is - * {@link KadasterV2OnroerendeZaakFiliatieArray } - * - */ - public KadasterV2OnroerendeZaakFiliatieArray getOntstaanUit() { - return ontstaanUit; - } - - /** - * Sets the value of the ontstaanUit property. - * - * @param value - * allowed object is - * {@link KadasterV2OnroerendeZaakFiliatieArray } - * - */ - public void setOntstaanUit(KadasterV2OnroerendeZaakFiliatieArray value) { - this.ontstaanUit = value; - } - - /** - * Gets the value of the aantekeningenWkpb property. - * - * @return - * possible object is - * {@link KadasterV2AantekeningWKPBArray } - * - */ - public KadasterV2AantekeningWKPBArray getAantekeningenWkpb() { - return aantekeningenWkpb; - } - - /** - * Sets the value of the aantekeningenWkpb property. - * - * @param value - * allowed object is - * {@link KadasterV2AantekeningWKPBArray } - * - */ - public void setAantekeningenWkpb(KadasterV2AantekeningWKPBArray value) { - this.aantekeningenWkpb = value; - } - - /** - * Gets the value of the aanvullingen property. - * - * @return - * possible object is - * {@link KadasterV2AanvullingArray } - * - */ - public KadasterV2AanvullingArray getAanvullingen() { - return aanvullingen; - } - - /** - * Sets the value of the aanvullingen property. - * - * @param value - * allowed object is - * {@link KadasterV2AanvullingArray } - * - */ - public void setAanvullingen(KadasterV2AanvullingArray value) { - this.aanvullingen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakArray.java deleted file mode 100644 index 93dcf8f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2OnroerendeZaakArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2OnroerendeZaakArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2OnroerendeZaakArray", propOrder = { - "item" -}) -public class KadasterV2OnroerendeZaakArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2OnroerendeZaak } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakFiliatie.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakFiliatie.java deleted file mode 100644 index 37af3a9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakFiliatie.java +++ /dev/null @@ -1,119 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2OnroerendeZaakFiliatie complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2OnroerendeZaakFiliatie">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="aard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="overgangsgrootte" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
- *         <element name="betreft" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaakReferenceArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2OnroerendeZaakFiliatie", propOrder = { - -}) -public class KadasterV2OnroerendeZaakFiliatie { - - protected String aard; - protected Float overgangsgrootte; - protected KadasterV2OnroerendeZaakReferenceArray betreft; - - /** - * Gets the value of the aard property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAard() { - return aard; - } - - /** - * Sets the value of the aard property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAard(String value) { - this.aard = value; - } - - /** - * Gets the value of the overgangsgrootte property. - * - * @return - * possible object is - * {@link Float } - * - */ - public Float getOvergangsgrootte() { - return overgangsgrootte; - } - - /** - * Sets the value of the overgangsgrootte property. - * - * @param value - * allowed object is - * {@link Float } - * - */ - public void setOvergangsgrootte(Float value) { - this.overgangsgrootte = value; - } - - /** - * Gets the value of the betreft property. - * - * @return - * possible object is - * {@link KadasterV2OnroerendeZaakReferenceArray } - * - */ - public KadasterV2OnroerendeZaakReferenceArray getBetreft() { - return betreft; - } - - /** - * Sets the value of the betreft property. - * - * @param value - * allowed object is - * {@link KadasterV2OnroerendeZaakReferenceArray } - * - */ - public void setBetreft(KadasterV2OnroerendeZaakReferenceArray value) { - this.betreft = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakFiliatieArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakFiliatieArray.java deleted file mode 100644 index 089151f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakFiliatieArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2OnroerendeZaakFiliatieArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2OnroerendeZaakFiliatieArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaakFiliatie" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2OnroerendeZaakFiliatieArray", propOrder = { - "item" -}) -public class KadasterV2OnroerendeZaakFiliatieArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2OnroerendeZaakFiliatie } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakReference.java deleted file mode 100644 index a57c7bf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakReference.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2OnroerendeZaakReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2OnroerendeZaakReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="kadastrale_aanduiding" type="{http://www.webservices.nl/soap/}KadasterV2KadastraleAanduiding" minOccurs="0"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2OnroerendeZaakReference", propOrder = { - -}) -public class KadasterV2OnroerendeZaakReference { - - protected String identificatie; - @XmlElement(name = "kadastrale_aanduiding") - protected KadasterV2KadastraleAanduiding kadastraleAanduiding; - protected String type; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the kadastraleAanduiding property. - * - * @return - * possible object is - * {@link KadasterV2KadastraleAanduiding } - * - */ - public KadasterV2KadastraleAanduiding getKadastraleAanduiding() { - return kadastraleAanduiding; - } - - /** - * Sets the value of the kadastraleAanduiding property. - * - * @param value - * allowed object is - * {@link KadasterV2KadastraleAanduiding } - * - */ - public void setKadastraleAanduiding(KadasterV2KadastraleAanduiding value) { - this.kadastraleAanduiding = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakReferenceArray.java deleted file mode 100644 index 04d5d6b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OnroerendeZaakReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2OnroerendeZaakReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2OnroerendeZaakReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaakReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2OnroerendeZaakReferenceArray", propOrder = { - "item" -}) -public class KadasterV2OnroerendeZaakReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2OnroerendeZaakReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OvergegaanIn.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OvergegaanIn.java deleted file mode 100644 index 8586090..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2OvergegaanIn.java +++ /dev/null @@ -1,318 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for KadasterV2OvergegaanIn complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2OvergegaanIn">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="productienummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="tijdstip_samenstelling_bericht" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
- *         <element name="actualiteit_tijdstip_hypothecair" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="actualiteit_tijdstip_kadastraal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="signalering_tijdstip_beslagen" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="signalering_tijdstip_hypothecair" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="signalering_tijdstip_kadastraal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="betreft" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak" minOccurs="0"/>
- *         <element name="tenaamstellingen" type="{http://www.webservices.nl/soap/}KadasterV2TenaamstellingArray" minOccurs="0"/>
- *         <element name="zakelijk_rechten" type="{http://www.webservices.nl/soap/}KadasterV2ZakelijkRechtArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2OvergegaanIn", propOrder = { - -}) -public class KadasterV2OvergegaanIn { - - @XmlElement(required = true) - protected String productienummer; - @XmlElement(name = "tijdstip_samenstelling_bericht", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar tijdstipSamenstellingBericht; - @XmlElement(name = "actualiteit_tijdstip_hypothecair") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar actualiteitTijdstipHypothecair; - @XmlElement(name = "actualiteit_tijdstip_kadastraal") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar actualiteitTijdstipKadastraal; - @XmlElement(name = "signalering_tijdstip_beslagen") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar signaleringTijdstipBeslagen; - @XmlElement(name = "signalering_tijdstip_hypothecair") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar signaleringTijdstipHypothecair; - @XmlElement(name = "signalering_tijdstip_kadastraal") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar signaleringTijdstipKadastraal; - protected KadasterV2OnroerendeZaak betreft; - protected KadasterV2TenaamstellingArray tenaamstellingen; - @XmlElement(name = "zakelijk_rechten") - protected KadasterV2ZakelijkRechtArray zakelijkRechten; - - /** - * Gets the value of the productienummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProductienummer() { - return productienummer; - } - - /** - * Sets the value of the productienummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProductienummer(String value) { - this.productienummer = value; - } - - /** - * Gets the value of the tijdstipSamenstellingBericht property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTijdstipSamenstellingBericht() { - return tijdstipSamenstellingBericht; - } - - /** - * Sets the value of the tijdstipSamenstellingBericht property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTijdstipSamenstellingBericht(XMLGregorianCalendar value) { - this.tijdstipSamenstellingBericht = value; - } - - /** - * Gets the value of the actualiteitTijdstipHypothecair property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getActualiteitTijdstipHypothecair() { - return actualiteitTijdstipHypothecair; - } - - /** - * Sets the value of the actualiteitTijdstipHypothecair property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setActualiteitTijdstipHypothecair(XMLGregorianCalendar value) { - this.actualiteitTijdstipHypothecair = value; - } - - /** - * Gets the value of the actualiteitTijdstipKadastraal property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getActualiteitTijdstipKadastraal() { - return actualiteitTijdstipKadastraal; - } - - /** - * Sets the value of the actualiteitTijdstipKadastraal property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setActualiteitTijdstipKadastraal(XMLGregorianCalendar value) { - this.actualiteitTijdstipKadastraal = value; - } - - /** - * Gets the value of the signaleringTijdstipBeslagen property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSignaleringTijdstipBeslagen() { - return signaleringTijdstipBeslagen; - } - - /** - * Sets the value of the signaleringTijdstipBeslagen property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSignaleringTijdstipBeslagen(XMLGregorianCalendar value) { - this.signaleringTijdstipBeslagen = value; - } - - /** - * Gets the value of the signaleringTijdstipHypothecair property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSignaleringTijdstipHypothecair() { - return signaleringTijdstipHypothecair; - } - - /** - * Sets the value of the signaleringTijdstipHypothecair property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSignaleringTijdstipHypothecair(XMLGregorianCalendar value) { - this.signaleringTijdstipHypothecair = value; - } - - /** - * Gets the value of the signaleringTijdstipKadastraal property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSignaleringTijdstipKadastraal() { - return signaleringTijdstipKadastraal; - } - - /** - * Sets the value of the signaleringTijdstipKadastraal property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSignaleringTijdstipKadastraal(XMLGregorianCalendar value) { - this.signaleringTijdstipKadastraal = value; - } - - /** - * Gets the value of the betreft property. - * - * @return - * possible object is - * {@link KadasterV2OnroerendeZaak } - * - */ - public KadasterV2OnroerendeZaak getBetreft() { - return betreft; - } - - /** - * Sets the value of the betreft property. - * - * @param value - * allowed object is - * {@link KadasterV2OnroerendeZaak } - * - */ - public void setBetreft(KadasterV2OnroerendeZaak value) { - this.betreft = value; - } - - /** - * Gets the value of the tenaamstellingen property. - * - * @return - * possible object is - * {@link KadasterV2TenaamstellingArray } - * - */ - public KadasterV2TenaamstellingArray getTenaamstellingen() { - return tenaamstellingen; - } - - /** - * Sets the value of the tenaamstellingen property. - * - * @param value - * allowed object is - * {@link KadasterV2TenaamstellingArray } - * - */ - public void setTenaamstellingen(KadasterV2TenaamstellingArray value) { - this.tenaamstellingen = value; - } - - /** - * Gets the value of the zakelijkRechten property. - * - * @return - * possible object is - * {@link KadasterV2ZakelijkRechtArray } - * - */ - public KadasterV2ZakelijkRechtArray getZakelijkRechten() { - return zakelijkRechten; - } - - /** - * Sets the value of the zakelijkRechten property. - * - * @param value - * allowed object is - * {@link KadasterV2ZakelijkRechtArray } - * - */ - public void setZakelijkRechten(KadasterV2ZakelijkRechtArray value) { - this.zakelijkRechten = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Personen.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Personen.java deleted file mode 100644 index d4311de..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Personen.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2Personen complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Personen">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="natuurlijk_personen" type="{http://www.webservices.nl/soap/}KadasterV2NatuurlijkPersoonArray" minOccurs="0"/>
- *         <element name="niet_natuurlijk_personen" type="{http://www.webservices.nl/soap/}KadasterV2NietNatuurlijkPersoonArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Personen", propOrder = { - -}) -public class KadasterV2Personen { - - @XmlElement(name = "natuurlijk_personen") - protected KadasterV2NatuurlijkPersoonArray natuurlijkPersonen; - @XmlElement(name = "niet_natuurlijk_personen") - protected KadasterV2NietNatuurlijkPersoonArray nietNatuurlijkPersonen; - - /** - * Gets the value of the natuurlijkPersonen property. - * - * @return - * possible object is - * {@link KadasterV2NatuurlijkPersoonArray } - * - */ - public KadasterV2NatuurlijkPersoonArray getNatuurlijkPersonen() { - return natuurlijkPersonen; - } - - /** - * Sets the value of the natuurlijkPersonen property. - * - * @param value - * allowed object is - * {@link KadasterV2NatuurlijkPersoonArray } - * - */ - public void setNatuurlijkPersonen(KadasterV2NatuurlijkPersoonArray value) { - this.natuurlijkPersonen = value; - } - - /** - * Gets the value of the nietNatuurlijkPersonen property. - * - * @return - * possible object is - * {@link KadasterV2NietNatuurlijkPersoonArray } - * - */ - public KadasterV2NietNatuurlijkPersoonArray getNietNatuurlijkPersonen() { - return nietNatuurlijkPersonen; - } - - /** - * Sets the value of the nietNatuurlijkPersonen property. - * - * @param value - * allowed object is - * {@link KadasterV2NietNatuurlijkPersoonArray } - * - */ - public void setNietNatuurlijkPersonen(KadasterV2NietNatuurlijkPersoonArray value) { - this.nietNatuurlijkPersonen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2PostcodeTreffers.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2PostcodeTreffers.java deleted file mode 100644 index 74f200f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2PostcodeTreffers.java +++ /dev/null @@ -1,266 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for KadasterV2PostcodeTreffers complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2PostcodeTreffers">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="productienummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="tijdstip_samenstelling_bericht" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
- *         <element name="actualiteit_tijdstip_hypothecair" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="actualiteit_tijdstip_kadastraal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="signalering_tijdstip_beslagen" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="signalering_tijdstip_hypothecair" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="signalering_tijdstip_kadastraal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- *         <element name="betreft" type="{http://www.webservices.nl/soap/}KadasterV2GevraagdGebied"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2PostcodeTreffers", propOrder = { - -}) -public class KadasterV2PostcodeTreffers { - - @XmlElement(required = true) - protected String productienummer; - @XmlElement(name = "tijdstip_samenstelling_bericht", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar tijdstipSamenstellingBericht; - @XmlElement(name = "actualiteit_tijdstip_hypothecair") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar actualiteitTijdstipHypothecair; - @XmlElement(name = "actualiteit_tijdstip_kadastraal") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar actualiteitTijdstipKadastraal; - @XmlElement(name = "signalering_tijdstip_beslagen") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar signaleringTijdstipBeslagen; - @XmlElement(name = "signalering_tijdstip_hypothecair") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar signaleringTijdstipHypothecair; - @XmlElement(name = "signalering_tijdstip_kadastraal") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar signaleringTijdstipKadastraal; - @XmlElement(required = true) - protected KadasterV2GevraagdGebied betreft; - - /** - * Gets the value of the productienummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProductienummer() { - return productienummer; - } - - /** - * Sets the value of the productienummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProductienummer(String value) { - this.productienummer = value; - } - - /** - * Gets the value of the tijdstipSamenstellingBericht property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getTijdstipSamenstellingBericht() { - return tijdstipSamenstellingBericht; - } - - /** - * Sets the value of the tijdstipSamenstellingBericht property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setTijdstipSamenstellingBericht(XMLGregorianCalendar value) { - this.tijdstipSamenstellingBericht = value; - } - - /** - * Gets the value of the actualiteitTijdstipHypothecair property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getActualiteitTijdstipHypothecair() { - return actualiteitTijdstipHypothecair; - } - - /** - * Sets the value of the actualiteitTijdstipHypothecair property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setActualiteitTijdstipHypothecair(XMLGregorianCalendar value) { - this.actualiteitTijdstipHypothecair = value; - } - - /** - * Gets the value of the actualiteitTijdstipKadastraal property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getActualiteitTijdstipKadastraal() { - return actualiteitTijdstipKadastraal; - } - - /** - * Sets the value of the actualiteitTijdstipKadastraal property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setActualiteitTijdstipKadastraal(XMLGregorianCalendar value) { - this.actualiteitTijdstipKadastraal = value; - } - - /** - * Gets the value of the signaleringTijdstipBeslagen property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSignaleringTijdstipBeslagen() { - return signaleringTijdstipBeslagen; - } - - /** - * Sets the value of the signaleringTijdstipBeslagen property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSignaleringTijdstipBeslagen(XMLGregorianCalendar value) { - this.signaleringTijdstipBeslagen = value; - } - - /** - * Gets the value of the signaleringTijdstipHypothecair property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSignaleringTijdstipHypothecair() { - return signaleringTijdstipHypothecair; - } - - /** - * Sets the value of the signaleringTijdstipHypothecair property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSignaleringTijdstipHypothecair(XMLGregorianCalendar value) { - this.signaleringTijdstipHypothecair = value; - } - - /** - * Gets the value of the signaleringTijdstipKadastraal property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getSignaleringTijdstipKadastraal() { - return signaleringTijdstipKadastraal; - } - - /** - * Sets the value of the signaleringTijdstipKadastraal property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setSignaleringTijdstipKadastraal(XMLGregorianCalendar value) { - this.signaleringTijdstipKadastraal = value; - } - - /** - * Gets the value of the betreft property. - * - * @return - * possible object is - * {@link KadasterV2GevraagdGebied } - * - */ - public KadasterV2GevraagdGebied getBetreft() { - return betreft; - } - - /** - * Sets the value of the betreft property. - * - * @param value - * allowed object is - * {@link KadasterV2GevraagdGebied } - * - */ - public void setBetreft(KadasterV2GevraagdGebied value) { - this.betreft = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RDCoordinaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RDCoordinaat.java deleted file mode 100644 index 671fcc2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RDCoordinaat.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2RDCoordinaat complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2RDCoordinaat">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2RDCoordinaat", propOrder = { - -}) -public class KadasterV2RDCoordinaat { - - @XmlElement(required = true) - protected String x; - @XmlElement(required = true) - protected String y; - - /** - * Gets the value of the x property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getX() { - return x; - } - - /** - * Sets the value of the x property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setX(String value) { - this.x = value; - } - - /** - * Gets the value of the y property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getY() { - return y; - } - - /** - * Sets the value of the y property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setY(String value) { - this.y = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RedenVerzoek.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RedenVerzoek.java deleted file mode 100644 index 3bdf658..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RedenVerzoek.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2RedenVerzoek complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2RedenVerzoek">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="reden" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="reden_omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2RedenVerzoek", propOrder = { - -}) -public class KadasterV2RedenVerzoek { - - protected String reden; - @XmlElement(name = "reden_omschrijving") - protected String redenOmschrijving; - - /** - * Gets the value of the reden property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReden() { - return reden; - } - - /** - * Sets the value of the reden property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReden(String value) { - this.reden = value; - } - - /** - * Gets the value of the redenOmschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRedenOmschrijving() { - return redenOmschrijving; - } - - /** - * Sets the value of the redenOmschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRedenOmschrijving(String value) { - this.redenOmschrijving = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RedenVerzoekArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RedenVerzoekArray.java deleted file mode 100644 index 7677e2d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2RedenVerzoekArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2RedenVerzoekArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2RedenVerzoekArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2RedenVerzoek" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2RedenVerzoekArray", propOrder = { - "item" -}) -public class KadasterV2RedenVerzoekArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2RedenVerzoek } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Splitsing.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Splitsing.java deleted file mode 100644 index b8ff955..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Splitsing.java +++ /dev/null @@ -1,148 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2Splitsing complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Splitsing">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="vereniging_van_eigenaren" type="{http://www.webservices.nl/soap/}KadasterV2NietNatuurlijkPersoon" minOccurs="0"/>
- *         <element name="gebaseerd_op" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Splitsing", propOrder = { - -}) -public class KadasterV2Splitsing { - - protected String identificatie; - protected String type; - @XmlElement(name = "vereniging_van_eigenaren") - protected KadasterV2NietNatuurlijkPersoon verenigingVanEigenaren; - @XmlElement(name = "gebaseerd_op") - protected KadasterV2StukdeelArray gebaseerdOp; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the verenigingVanEigenaren property. - * - * @return - * possible object is - * {@link KadasterV2NietNatuurlijkPersoon } - * - */ - public KadasterV2NietNatuurlijkPersoon getVerenigingVanEigenaren() { - return verenigingVanEigenaren; - } - - /** - * Sets the value of the verenigingVanEigenaren property. - * - * @param value - * allowed object is - * {@link KadasterV2NietNatuurlijkPersoon } - * - */ - public void setVerenigingVanEigenaren(KadasterV2NietNatuurlijkPersoon value) { - this.verenigingVanEigenaren = value; - } - - /** - * Gets the value of the gebaseerdOp property. - * - * @return - * possible object is - * {@link KadasterV2StukdeelArray } - * - */ - public KadasterV2StukdeelArray getGebaseerdOp() { - return gebaseerdOp; - } - - /** - * Sets the value of the gebaseerdOp property. - * - * @param value - * allowed object is - * {@link KadasterV2StukdeelArray } - * - */ - public void setGebaseerdOp(KadasterV2StukdeelArray value) { - this.gebaseerdOp = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2SplitsingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2SplitsingArray.java deleted file mode 100644 index 2b48876..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2SplitsingArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2SplitsingArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2SplitsingArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Splitsing" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2SplitsingArray", propOrder = { - "item" -}) -public class KadasterV2SplitsingArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2Splitsing } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stuk.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stuk.java deleted file mode 100644 index 870939d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stuk.java +++ /dev/null @@ -1,201 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2Stuk complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Stuk">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="indicatie_correctie" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="toelichting_bewaarder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="acg_identificatie" type="{http://www.webservices.nl/soap/}KadasterV2AcgIdentificatie" minOccurs="0"/>
- *         <element name="stukdelen" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
- *         <element name="bijlages" type="{http://www.webservices.nl/soap/}KadasterV2BijlageArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Stuk", propOrder = { - -}) -public class KadasterV2Stuk { - - protected String identificatie; - @XmlElement(name = "indicatie_correctie") - protected Boolean indicatieCorrectie; - @XmlElement(name = "toelichting_bewaarder") - protected String toelichtingBewaarder; - @XmlElement(name = "acg_identificatie") - protected KadasterV2AcgIdentificatie acgIdentificatie; - protected KadasterV2StukdeelArray stukdelen; - protected KadasterV2BijlageArray bijlages; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the indicatieCorrectie property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicatieCorrectie() { - return indicatieCorrectie; - } - - /** - * Sets the value of the indicatieCorrectie property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicatieCorrectie(Boolean value) { - this.indicatieCorrectie = value; - } - - /** - * Gets the value of the toelichtingBewaarder property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToelichtingBewaarder() { - return toelichtingBewaarder; - } - - /** - * Sets the value of the toelichtingBewaarder property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToelichtingBewaarder(String value) { - this.toelichtingBewaarder = value; - } - - /** - * Gets the value of the acgIdentificatie property. - * - * @return - * possible object is - * {@link KadasterV2AcgIdentificatie } - * - */ - public KadasterV2AcgIdentificatie getAcgIdentificatie() { - return acgIdentificatie; - } - - /** - * Sets the value of the acgIdentificatie property. - * - * @param value - * allowed object is - * {@link KadasterV2AcgIdentificatie } - * - */ - public void setAcgIdentificatie(KadasterV2AcgIdentificatie value) { - this.acgIdentificatie = value; - } - - /** - * Gets the value of the stukdelen property. - * - * @return - * possible object is - * {@link KadasterV2StukdeelArray } - * - */ - public KadasterV2StukdeelArray getStukdelen() { - return stukdelen; - } - - /** - * Sets the value of the stukdelen property. - * - * @param value - * allowed object is - * {@link KadasterV2StukdeelArray } - * - */ - public void setStukdelen(KadasterV2StukdeelArray value) { - this.stukdelen = value; - } - - /** - * Gets the value of the bijlages property. - * - * @return - * possible object is - * {@link KadasterV2BijlageArray } - * - */ - public KadasterV2BijlageArray getBijlages() { - return bijlages; - } - - /** - * Sets the value of the bijlages property. - * - * @param value - * allowed object is - * {@link KadasterV2BijlageArray } - * - */ - public void setBijlages(KadasterV2BijlageArray value) { - this.bijlages = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2StukArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2StukArray.java deleted file mode 100644 index 661e2bf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2StukArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2StukArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2StukArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Stuk" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2StukArray", propOrder = { - "item" -}) -public class KadasterV2StukArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2Stuk } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stukdeel.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stukdeel.java deleted file mode 100644 index 349288f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stukdeel.java +++ /dev/null @@ -1,283 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2Stukdeel complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Stukdeel">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="aard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="omschrijving_gekozen_woonplaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="omschrijving_kadastrale_objecten" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="bedrag_transacties_om_levering" type="{http://www.webservices.nl/soap/}KadasterV2Bedrag" minOccurs="0"/>
- *         <element name="bedrag_vorderingsbeslag" type="{http://www.webservices.nl/soap/}KadasterV2Bedrag" minOccurs="0"/>
- *         <element name="bedrag_zekerheidsstelling_hypotheek" type="{http://www.webservices.nl/soap/}KadasterV2Bedrag" minOccurs="0"/>
- *         <element name="aanvulling_op" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
- *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaakReferenceArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Stukdeel", propOrder = { - -}) -public class KadasterV2Stukdeel { - - protected String identificatie; - protected String aard; - @XmlElement(name = "omschrijving_gekozen_woonplaats") - protected String omschrijvingGekozenWoonplaats; - @XmlElement(name = "omschrijving_kadastrale_objecten") - protected String omschrijvingKadastraleObjecten; - @XmlElement(name = "bedrag_transacties_om_levering") - protected KadasterV2Bedrag bedragTransactiesOmLevering; - @XmlElement(name = "bedrag_vorderingsbeslag") - protected KadasterV2Bedrag bedragVorderingsbeslag; - @XmlElement(name = "bedrag_zekerheidsstelling_hypotheek") - protected KadasterV2Bedrag bedragZekerheidsstellingHypotheek; - @XmlElement(name = "aanvulling_op") - protected KadasterV2StukdeelArray aanvullingOp; - @XmlElement(name = "vermeld_in") - protected KadasterV2OnroerendeZaakReferenceArray vermeldIn; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the aard property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAard() { - return aard; - } - - /** - * Sets the value of the aard property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAard(String value) { - this.aard = value; - } - - /** - * Gets the value of the omschrijvingGekozenWoonplaats property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijvingGekozenWoonplaats() { - return omschrijvingGekozenWoonplaats; - } - - /** - * Sets the value of the omschrijvingGekozenWoonplaats property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijvingGekozenWoonplaats(String value) { - this.omschrijvingGekozenWoonplaats = value; - } - - /** - * Gets the value of the omschrijvingKadastraleObjecten property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijvingKadastraleObjecten() { - return omschrijvingKadastraleObjecten; - } - - /** - * Sets the value of the omschrijvingKadastraleObjecten property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijvingKadastraleObjecten(String value) { - this.omschrijvingKadastraleObjecten = value; - } - - /** - * Gets the value of the bedragTransactiesOmLevering property. - * - * @return - * possible object is - * {@link KadasterV2Bedrag } - * - */ - public KadasterV2Bedrag getBedragTransactiesOmLevering() { - return bedragTransactiesOmLevering; - } - - /** - * Sets the value of the bedragTransactiesOmLevering property. - * - * @param value - * allowed object is - * {@link KadasterV2Bedrag } - * - */ - public void setBedragTransactiesOmLevering(KadasterV2Bedrag value) { - this.bedragTransactiesOmLevering = value; - } - - /** - * Gets the value of the bedragVorderingsbeslag property. - * - * @return - * possible object is - * {@link KadasterV2Bedrag } - * - */ - public KadasterV2Bedrag getBedragVorderingsbeslag() { - return bedragVorderingsbeslag; - } - - /** - * Sets the value of the bedragVorderingsbeslag property. - * - * @param value - * allowed object is - * {@link KadasterV2Bedrag } - * - */ - public void setBedragVorderingsbeslag(KadasterV2Bedrag value) { - this.bedragVorderingsbeslag = value; - } - - /** - * Gets the value of the bedragZekerheidsstellingHypotheek property. - * - * @return - * possible object is - * {@link KadasterV2Bedrag } - * - */ - public KadasterV2Bedrag getBedragZekerheidsstellingHypotheek() { - return bedragZekerheidsstellingHypotheek; - } - - /** - * Sets the value of the bedragZekerheidsstellingHypotheek property. - * - * @param value - * allowed object is - * {@link KadasterV2Bedrag } - * - */ - public void setBedragZekerheidsstellingHypotheek(KadasterV2Bedrag value) { - this.bedragZekerheidsstellingHypotheek = value; - } - - /** - * Gets the value of the aanvullingOp property. - * - * @return - * possible object is - * {@link KadasterV2StukdeelArray } - * - */ - public KadasterV2StukdeelArray getAanvullingOp() { - return aanvullingOp; - } - - /** - * Sets the value of the aanvullingOp property. - * - * @param value - * allowed object is - * {@link KadasterV2StukdeelArray } - * - */ - public void setAanvullingOp(KadasterV2StukdeelArray value) { - this.aanvullingOp = value; - } - - /** - * Gets the value of the vermeldIn property. - * - * @return - * possible object is - * {@link KadasterV2OnroerendeZaakReferenceArray } - * - */ - public KadasterV2OnroerendeZaakReferenceArray getVermeldIn() { - return vermeldIn; - } - - /** - * Sets the value of the vermeldIn property. - * - * @param value - * allowed object is - * {@link KadasterV2OnroerendeZaakReferenceArray } - * - */ - public void setVermeldIn(KadasterV2OnroerendeZaakReferenceArray value) { - this.vermeldIn = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2StukdeelArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2StukdeelArray.java deleted file mode 100644 index 104c0d3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2StukdeelArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2StukdeelArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2StukdeelArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Stukdeel" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2StukdeelArray", propOrder = { - "item" -}) -public class KadasterV2StukdeelArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2Stukdeel } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stukken.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stukken.java deleted file mode 100644 index 4eaad32..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Stukken.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2Stukken complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Stukken">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="stukken" type="{http://www.webservices.nl/soap/}KadasterV2StukArray" minOccurs="0"/>
- *         <element name="aangeboden_stukken" type="{http://www.webservices.nl/soap/}KadasterV2AangebodenStukArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Stukken", propOrder = { - -}) -public class KadasterV2Stukken { - - protected KadasterV2StukArray stukken; - @XmlElement(name = "aangeboden_stukken") - protected KadasterV2AangebodenStukArray aangebodenStukken; - - /** - * Gets the value of the stukken property. - * - * @return - * possible object is - * {@link KadasterV2StukArray } - * - */ - public KadasterV2StukArray getStukken() { - return stukken; - } - - /** - * Sets the value of the stukken property. - * - * @param value - * allowed object is - * {@link KadasterV2StukArray } - * - */ - public void setStukken(KadasterV2StukArray value) { - this.stukken = value; - } - - /** - * Gets the value of the aangebodenStukken property. - * - * @return - * possible object is - * {@link KadasterV2AangebodenStukArray } - * - */ - public KadasterV2AangebodenStukArray getAangebodenStukken() { - return aangebodenStukken; - } - - /** - * Sets the value of the aangebodenStukken property. - * - * @param value - * allowed object is - * {@link KadasterV2AangebodenStukArray } - * - */ - public void setAangebodenStukken(KadasterV2AangebodenStukArray value) { - this.aangebodenStukken = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Tenaamstelling.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Tenaamstelling.java deleted file mode 100644 index 9fd254f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Tenaamstelling.java +++ /dev/null @@ -1,389 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2Tenaamstelling complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Tenaamstelling">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="aandeel" type="{http://www.webservices.nl/soap/}KadasterV2Breuk" minOccurs="0"/>
- *         <element name="burgerlijke_staat_ten_tijde_van_verkrijging" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="verklaring_inzake_derden_bescherming" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="verkregen_namens_samenwerkingsverband" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="betrokken_partner" type="{http://www.webservices.nl/soap/}KadasterV2Personen" minOccurs="0"/>
- *         <element name="betrokken_samenwerkingsverband" type="{http://www.webservices.nl/soap/}KadasterV2Personen" minOccurs="0"/>
- *         <element name="van" type="{http://www.webservices.nl/soap/}KadasterV2ZakelijkRecht" minOccurs="0"/>
- *         <element name="geldt_voor" type="{http://www.webservices.nl/soap/}KadasterV2GezamenlijkAandeel" minOccurs="0"/>
- *         <element name="gebaseerd_op" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
- *         <element name="vermeld_in" type="{http://www.webservices.nl/soap/}KadasterV2StukdeelArray" minOccurs="0"/>
- *         <element name="ten_name_van" type="{http://www.webservices.nl/soap/}KadasterV2Personen" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Tenaamstelling", propOrder = { - -}) -public class KadasterV2Tenaamstelling { - - protected String identificatie; - protected KadasterV2Breuk aandeel; - @XmlElement(name = "burgerlijke_staat_ten_tijde_van_verkrijging") - protected String burgerlijkeStaatTenTijdeVanVerkrijging; - protected String omschrijving; - @XmlElement(name = "verklaring_inzake_derden_bescherming") - protected String verklaringInzakeDerdenBescherming; - @XmlElement(name = "verkregen_namens_samenwerkingsverband") - protected String verkregenNamensSamenwerkingsverband; - @XmlElement(name = "betrokken_partner") - protected KadasterV2Personen betrokkenPartner; - @XmlElement(name = "betrokken_samenwerkingsverband") - protected KadasterV2Personen betrokkenSamenwerkingsverband; - protected KadasterV2ZakelijkRecht van; - @XmlElement(name = "geldt_voor") - protected KadasterV2GezamenlijkAandeel geldtVoor; - @XmlElement(name = "gebaseerd_op") - protected KadasterV2StukdeelArray gebaseerdOp; - @XmlElement(name = "vermeld_in") - protected KadasterV2StukdeelArray vermeldIn; - @XmlElement(name = "ten_name_van") - protected KadasterV2Personen tenNameVan; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the aandeel property. - * - * @return - * possible object is - * {@link KadasterV2Breuk } - * - */ - public KadasterV2Breuk getAandeel() { - return aandeel; - } - - /** - * Sets the value of the aandeel property. - * - * @param value - * allowed object is - * {@link KadasterV2Breuk } - * - */ - public void setAandeel(KadasterV2Breuk value) { - this.aandeel = value; - } - - /** - * Gets the value of the burgerlijkeStaatTenTijdeVanVerkrijging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBurgerlijkeStaatTenTijdeVanVerkrijging() { - return burgerlijkeStaatTenTijdeVanVerkrijging; - } - - /** - * Sets the value of the burgerlijkeStaatTenTijdeVanVerkrijging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBurgerlijkeStaatTenTijdeVanVerkrijging(String value) { - this.burgerlijkeStaatTenTijdeVanVerkrijging = value; - } - - /** - * Gets the value of the omschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijving() { - return omschrijving; - } - - /** - * Sets the value of the omschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijving(String value) { - this.omschrijving = value; - } - - /** - * Gets the value of the verklaringInzakeDerdenBescherming property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerklaringInzakeDerdenBescherming() { - return verklaringInzakeDerdenBescherming; - } - - /** - * Sets the value of the verklaringInzakeDerdenBescherming property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerklaringInzakeDerdenBescherming(String value) { - this.verklaringInzakeDerdenBescherming = value; - } - - /** - * Gets the value of the verkregenNamensSamenwerkingsverband property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerkregenNamensSamenwerkingsverband() { - return verkregenNamensSamenwerkingsverband; - } - - /** - * Sets the value of the verkregenNamensSamenwerkingsverband property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerkregenNamensSamenwerkingsverband(String value) { - this.verkregenNamensSamenwerkingsverband = value; - } - - /** - * Gets the value of the betrokkenPartner property. - * - * @return - * possible object is - * {@link KadasterV2Personen } - * - */ - public KadasterV2Personen getBetrokkenPartner() { - return betrokkenPartner; - } - - /** - * Sets the value of the betrokkenPartner property. - * - * @param value - * allowed object is - * {@link KadasterV2Personen } - * - */ - public void setBetrokkenPartner(KadasterV2Personen value) { - this.betrokkenPartner = value; - } - - /** - * Gets the value of the betrokkenSamenwerkingsverband property. - * - * @return - * possible object is - * {@link KadasterV2Personen } - * - */ - public KadasterV2Personen getBetrokkenSamenwerkingsverband() { - return betrokkenSamenwerkingsverband; - } - - /** - * Sets the value of the betrokkenSamenwerkingsverband property. - * - * @param value - * allowed object is - * {@link KadasterV2Personen } - * - */ - public void setBetrokkenSamenwerkingsverband(KadasterV2Personen value) { - this.betrokkenSamenwerkingsverband = value; - } - - /** - * Gets the value of the van property. - * - * @return - * possible object is - * {@link KadasterV2ZakelijkRecht } - * - */ - public KadasterV2ZakelijkRecht getVan() { - return van; - } - - /** - * Sets the value of the van property. - * - * @param value - * allowed object is - * {@link KadasterV2ZakelijkRecht } - * - */ - public void setVan(KadasterV2ZakelijkRecht value) { - this.van = value; - } - - /** - * Gets the value of the geldtVoor property. - * - * @return - * possible object is - * {@link KadasterV2GezamenlijkAandeel } - * - */ - public KadasterV2GezamenlijkAandeel getGeldtVoor() { - return geldtVoor; - } - - /** - * Sets the value of the geldtVoor property. - * - * @param value - * allowed object is - * {@link KadasterV2GezamenlijkAandeel } - * - */ - public void setGeldtVoor(KadasterV2GezamenlijkAandeel value) { - this.geldtVoor = value; - } - - /** - * Gets the value of the gebaseerdOp property. - * - * @return - * possible object is - * {@link KadasterV2StukdeelArray } - * - */ - public KadasterV2StukdeelArray getGebaseerdOp() { - return gebaseerdOp; - } - - /** - * Sets the value of the gebaseerdOp property. - * - * @param value - * allowed object is - * {@link KadasterV2StukdeelArray } - * - */ - public void setGebaseerdOp(KadasterV2StukdeelArray value) { - this.gebaseerdOp = value; - } - - /** - * Gets the value of the vermeldIn property. - * - * @return - * possible object is - * {@link KadasterV2StukdeelArray } - * - */ - public KadasterV2StukdeelArray getVermeldIn() { - return vermeldIn; - } - - /** - * Sets the value of the vermeldIn property. - * - * @param value - * allowed object is - * {@link KadasterV2StukdeelArray } - * - */ - public void setVermeldIn(KadasterV2StukdeelArray value) { - this.vermeldIn = value; - } - - /** - * Gets the value of the tenNameVan property. - * - * @return - * possible object is - * {@link KadasterV2Personen } - * - */ - public KadasterV2Personen getTenNameVan() { - return tenNameVan; - } - - /** - * Sets the value of the tenNameVan property. - * - * @param value - * allowed object is - * {@link KadasterV2Personen } - * - */ - public void setTenNameVan(KadasterV2Personen value) { - this.tenNameVan = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2TenaamstellingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2TenaamstellingArray.java deleted file mode 100644 index 87440e3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2TenaamstellingArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2TenaamstellingArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2TenaamstellingArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Tenaamstelling" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2TenaamstellingArray", propOrder = { - "item" -}) -public class KadasterV2TenaamstellingArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2Tenaamstelling } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2UittrekselKadastraleKaartResponse.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2UittrekselKadastraleKaartResponse.java deleted file mode 100644 index 85bfb8a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2UittrekselKadastraleKaartResponse.java +++ /dev/null @@ -1,120 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2UittrekselKadastraleKaartResponse complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2UittrekselKadastraleKaartResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
- *         <element name="overgegaan_in" type="{http://www.webservices.nl/soap/}KadasterV2OvergegaanIn" minOccurs="0"/>
- *         <element name="postcode_treffers" type="{http://www.webservices.nl/soap/}KadasterV2PostcodeTreffers" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2UittrekselKadastraleKaartResponse", propOrder = { - -}) -public class KadasterV2UittrekselKadastraleKaartResponse { - - protected byte[] document; - @XmlElement(name = "overgegaan_in") - protected KadasterV2OvergegaanIn overgegaanIn; - @XmlElement(name = "postcode_treffers") - protected KadasterV2PostcodeTreffers postcodeTreffers; - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - - /** - * Gets the value of the overgegaanIn property. - * - * @return - * possible object is - * {@link KadasterV2OvergegaanIn } - * - */ - public KadasterV2OvergegaanIn getOvergegaanIn() { - return overgegaanIn; - } - - /** - * Sets the value of the overgegaanIn property. - * - * @param value - * allowed object is - * {@link KadasterV2OvergegaanIn } - * - */ - public void setOvergegaanIn(KadasterV2OvergegaanIn value) { - this.overgegaanIn = value; - } - - /** - * Gets the value of the postcodeTreffers property. - * - * @return - * possible object is - * {@link KadasterV2PostcodeTreffers } - * - */ - public KadasterV2PostcodeTreffers getPostcodeTreffers() { - return postcodeTreffers; - } - - /** - * Sets the value of the postcodeTreffers property. - * - * @param value - * allowed object is - * {@link KadasterV2PostcodeTreffers } - * - */ - public void setPostcodeTreffers(KadasterV2PostcodeTreffers value) { - this.postcodeTreffers = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Verzoek.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Verzoek.java deleted file mode 100644 index d04352e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2Verzoek.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2Verzoek complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2Verzoek">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="aard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="redenen_verzoek" type="{http://www.webservices.nl/soap/}KadasterV2RedenVerzoekArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2Verzoek", propOrder = { - -}) -public class KadasterV2Verzoek { - - protected String identificatie; - protected String aard; - @XmlElement(name = "redenen_verzoek") - protected KadasterV2RedenVerzoekArray redenenVerzoek; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the aard property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAard() { - return aard; - } - - /** - * Sets the value of the aard property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAard(String value) { - this.aard = value; - } - - /** - * Gets the value of the redenenVerzoek property. - * - * @return - * possible object is - * {@link KadasterV2RedenVerzoekArray } - * - */ - public KadasterV2RedenVerzoekArray getRedenenVerzoek() { - return redenenVerzoek; - } - - /** - * Sets the value of the redenenVerzoek property. - * - * @param value - * allowed object is - * {@link KadasterV2RedenVerzoekArray } - * - */ - public void setRedenenVerzoek(KadasterV2RedenVerzoekArray value) { - this.redenenVerzoek = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2VerzoekArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2VerzoekArray.java deleted file mode 100644 index 9903558..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2VerzoekArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2VerzoekArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2VerzoekArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2Verzoek" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2VerzoekArray", propOrder = { - "item" -}) -public class KadasterV2VerzoekArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2Verzoek } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ZakelijkRecht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ZakelijkRecht.java deleted file mode 100644 index 4bbd19b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ZakelijkRecht.java +++ /dev/null @@ -1,283 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2ZakelijkRecht complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2ZakelijkRecht">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="identificatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="aard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="onroerende_zaak" type="{http://www.webservices.nl/soap/}KadasterV2OnroerendeZaak" minOccurs="0"/>
- *         <element name="belast_met" type="{http://www.webservices.nl/soap/}KadasterV2ZakelijkRechtArray" minOccurs="0"/>
- *         <element name="bestemt_tot" type="{http://www.webservices.nl/soap/}KadasterV2Mandeligheid" minOccurs="0"/>
- *         <element name="ontstaan_uit" type="{http://www.webservices.nl/soap/}KadasterV2Splitsing" minOccurs="0"/>
- *         <element name="betrokken_bij" type="{http://www.webservices.nl/soap/}KadasterV2Splitsing" minOccurs="0"/>
- *         <element name="beperkt_tot" type="{http://www.webservices.nl/soap/}KadasterV2TenaamstellingArray" minOccurs="0"/>
- *         <element name="indicatie_splitsing_betrokken" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2ZakelijkRecht", propOrder = { - -}) -public class KadasterV2ZakelijkRecht { - - protected String identificatie; - protected String aard; - @XmlElement(name = "onroerende_zaak") - protected KadasterV2OnroerendeZaak onroerendeZaak; - @XmlElement(name = "belast_met") - protected KadasterV2ZakelijkRechtArray belastMet; - @XmlElement(name = "bestemt_tot") - protected KadasterV2Mandeligheid bestemtTot; - @XmlElement(name = "ontstaan_uit") - protected KadasterV2Splitsing ontstaanUit; - @XmlElement(name = "betrokken_bij") - protected KadasterV2Splitsing betrokkenBij; - @XmlElement(name = "beperkt_tot") - protected KadasterV2TenaamstellingArray beperktTot; - @XmlElement(name = "indicatie_splitsing_betrokken") - protected Boolean indicatieSplitsingBetrokken; - - /** - * Gets the value of the identificatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIdentificatie() { - return identificatie; - } - - /** - * Sets the value of the identificatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIdentificatie(String value) { - this.identificatie = value; - } - - /** - * Gets the value of the aard property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAard() { - return aard; - } - - /** - * Sets the value of the aard property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAard(String value) { - this.aard = value; - } - - /** - * Gets the value of the onroerendeZaak property. - * - * @return - * possible object is - * {@link KadasterV2OnroerendeZaak } - * - */ - public KadasterV2OnroerendeZaak getOnroerendeZaak() { - return onroerendeZaak; - } - - /** - * Sets the value of the onroerendeZaak property. - * - * @param value - * allowed object is - * {@link KadasterV2OnroerendeZaak } - * - */ - public void setOnroerendeZaak(KadasterV2OnroerendeZaak value) { - this.onroerendeZaak = value; - } - - /** - * Gets the value of the belastMet property. - * - * @return - * possible object is - * {@link KadasterV2ZakelijkRechtArray } - * - */ - public KadasterV2ZakelijkRechtArray getBelastMet() { - return belastMet; - } - - /** - * Sets the value of the belastMet property. - * - * @param value - * allowed object is - * {@link KadasterV2ZakelijkRechtArray } - * - */ - public void setBelastMet(KadasterV2ZakelijkRechtArray value) { - this.belastMet = value; - } - - /** - * Gets the value of the bestemtTot property. - * - * @return - * possible object is - * {@link KadasterV2Mandeligheid } - * - */ - public KadasterV2Mandeligheid getBestemtTot() { - return bestemtTot; - } - - /** - * Sets the value of the bestemtTot property. - * - * @param value - * allowed object is - * {@link KadasterV2Mandeligheid } - * - */ - public void setBestemtTot(KadasterV2Mandeligheid value) { - this.bestemtTot = value; - } - - /** - * Gets the value of the ontstaanUit property. - * - * @return - * possible object is - * {@link KadasterV2Splitsing } - * - */ - public KadasterV2Splitsing getOntstaanUit() { - return ontstaanUit; - } - - /** - * Sets the value of the ontstaanUit property. - * - * @param value - * allowed object is - * {@link KadasterV2Splitsing } - * - */ - public void setOntstaanUit(KadasterV2Splitsing value) { - this.ontstaanUit = value; - } - - /** - * Gets the value of the betrokkenBij property. - * - * @return - * possible object is - * {@link KadasterV2Splitsing } - * - */ - public KadasterV2Splitsing getBetrokkenBij() { - return betrokkenBij; - } - - /** - * Sets the value of the betrokkenBij property. - * - * @param value - * allowed object is - * {@link KadasterV2Splitsing } - * - */ - public void setBetrokkenBij(KadasterV2Splitsing value) { - this.betrokkenBij = value; - } - - /** - * Gets the value of the beperktTot property. - * - * @return - * possible object is - * {@link KadasterV2TenaamstellingArray } - * - */ - public KadasterV2TenaamstellingArray getBeperktTot() { - return beperktTot; - } - - /** - * Sets the value of the beperktTot property. - * - * @param value - * allowed object is - * {@link KadasterV2TenaamstellingArray } - * - */ - public void setBeperktTot(KadasterV2TenaamstellingArray value) { - this.beperktTot = value; - } - - /** - * Gets the value of the indicatieSplitsingBetrokken property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicatieSplitsingBetrokken() { - return indicatieSplitsingBetrokken; - } - - /** - * Sets the value of the indicatieSplitsingBetrokken property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicatieSplitsingBetrokken(Boolean value) { - this.indicatieSplitsingBetrokken = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ZakelijkRechtArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ZakelijkRechtArray.java deleted file mode 100644 index a8c5ca7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterV2ZakelijkRechtArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterV2ZakelijkRechtArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterV2ZakelijkRechtArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadasterV2ZakelijkRecht" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterV2ZakelijkRechtArray", propOrder = { - "item" -}) -public class KadasterV2ZakelijkRechtArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadasterV2ZakelijkRecht } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueList.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueList.java deleted file mode 100644 index 38449df..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueList.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadasterValueList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadasterValueList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="list" type="{http://www.webservices.nl/soap/}KadasterListValueArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadasterValueList", propOrder = { - -}) -public class KadasterValueList { - - @XmlElement(required = true) - protected KadasterListValueArray list; - - /** - * Gets the value of the list property. - * - * @return - * possible object is - * {@link KadasterListValueArray } - * - */ - public KadasterListValueArray getList() { - return list; - } - - /** - * Sets the value of the list property. - * - * @param value - * allowed object is - * {@link KadasterListValueArray } - * - */ - public void setList(KadasterListValueArray value) { - this.list = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetMunicipalitiesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetMunicipalitiesRequestType.java deleted file mode 100644 index 75903fd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetMunicipalitiesRequestType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterValueListGetMunicipalitiesRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterValueListGetMunicipalitiesRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterValueListGetMunicipalitiesRequestType") -public class KadasterValueListGetMunicipalitiesRequestType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetMunicipalitiesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetMunicipalitiesResponseType.java deleted file mode 100644 index 3b378af..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetMunicipalitiesResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterValueListGetMunicipalitiesResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterValueListGetMunicipalitiesResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterValueList"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterValueListGetMunicipalitiesResponseType", propOrder = { - -}) -public class KadasterValueListGetMunicipalitiesResponseType { - - @XmlElement(required = true) - protected KadasterValueList out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KadasterValueList } - * - */ - public KadasterValueList getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KadasterValueList } - * - */ - public void setOut(KadasterValueList value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetRangesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetRangesRequestType.java deleted file mode 100644 index 8a18c7e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetRangesRequestType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterValueListGetRangesRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterValueListGetRangesRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterValueListGetRangesRequestType") -public class KadasterValueListGetRangesRequestType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetRangesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetRangesResponseType.java deleted file mode 100644 index 6162fd8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadasterValueListGetRangesResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kadasterValueListGetRangesResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kadasterValueListGetRangesResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KadasterValueList"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kadasterValueListGetRangesResponseType", propOrder = { - -}) -public class KadasterValueListGetRangesResponseType { - - @XmlElement(required = true) - protected KadasterValueList out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KadasterValueList } - * - */ - public KadasterValueList getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KadasterValueList } - * - */ - public void setOut(KadasterValueList value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraalPerceel.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraalPerceel.java deleted file mode 100644 index 43fa670..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraalPerceel.java +++ /dev/null @@ -1,142 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadastraalPerceel complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadastraalPerceel">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="x_coordinaat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="y_coordinaat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="grootte_perceel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="indicatie_grootte_geschat" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadastraalPerceel", propOrder = { - -}) -public class KadastraalPerceel { - - @XmlElement(name = "x_coordinaat") - protected String xCoordinaat; - @XmlElement(name = "y_coordinaat") - protected String yCoordinaat; - @XmlElement(name = "grootte_perceel") - protected String groottePerceel; - @XmlElement(name = "indicatie_grootte_geschat") - protected boolean indicatieGrootteGeschat; - - /** - * Gets the value of the xCoordinaat property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getXCoordinaat() { - return xCoordinaat; - } - - /** - * Sets the value of the xCoordinaat property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setXCoordinaat(String value) { - this.xCoordinaat = value; - } - - /** - * Gets the value of the yCoordinaat property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getYCoordinaat() { - return yCoordinaat; - } - - /** - * Sets the value of the yCoordinaat property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setYCoordinaat(String value) { - this.yCoordinaat = value; - } - - /** - * Gets the value of the groottePerceel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGroottePerceel() { - return groottePerceel; - } - - /** - * Sets the value of the groottePerceel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGroottePerceel(String value) { - this.groottePerceel = value; - } - - /** - * Gets the value of the indicatieGrootteGeschat property. - * - */ - public boolean isIndicatieGrootteGeschat() { - return indicatieGrootteGeschat; - } - - /** - * Sets the value of the indicatieGrootteGeschat property. - * - */ - public void setIndicatieGrootteGeschat(boolean value) { - this.indicatieGrootteGeschat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduiding.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduiding.java deleted file mode 100644 index 5aafb60..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduiding.java +++ /dev/null @@ -1,200 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadastraleAanduiding complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadastraleAanduiding">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="sectie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="relatiecode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="volgnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadastraleAanduiding", propOrder = { - -}) -public class KadastraleAanduiding { - - protected String gemeentecode; - protected String gemeentenaam; - @XmlElement(required = true) - protected String sectie; - @XmlElement(required = true) - protected String perceelnummer; - protected String relatiecode; - protected String volgnummer; - - /** - * Gets the value of the gemeentecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentecode() { - return gemeentecode; - } - - /** - * Sets the value of the gemeentecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentecode(String value) { - this.gemeentecode = value; - } - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the sectie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSectie() { - return sectie; - } - - /** - * Sets the value of the sectie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSectie(String value) { - this.sectie = value; - } - - /** - * Gets the value of the perceelnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPerceelnummer(String value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the relatiecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRelatiecode() { - return relatiecode; - } - - /** - * Sets the value of the relatiecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRelatiecode(String value) { - this.relatiecode = value; - } - - /** - * Gets the value of the volgnummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVolgnummer() { - return volgnummer; - } - - /** - * Sets the value of the volgnummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVolgnummer(String value) { - this.volgnummer = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduidingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduidingArray.java deleted file mode 100644 index 0ffbc1d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduidingArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadastraleAanduidingArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadastraleAanduidingArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KadastraleAanduiding" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadastraleAanduidingArray", propOrder = { - "item" -}) -public class KadastraleAanduidingArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KadastraleAanduiding } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduidingLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduidingLijst.java deleted file mode 100644 index 78122b4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KadastraleAanduidingLijst.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KadastraleAanduidingLijst complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KadastraleAanduidingLijst">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="kadastrale_aanduidingen" type="{http://www.webservices.nl/soap/}KadastraleAanduidingArray"/>
- *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KadastraleAanduidingLijst", propOrder = { - -}) -public class KadastraleAanduidingLijst { - - @XmlElement(name = "kadastrale_aanduidingen", required = true) - protected KadastraleAanduidingArray kadastraleAanduidingen; - @XmlElement(name = "indicatie_compleet") - protected boolean indicatieCompleet; - - /** - * Gets the value of the kadastraleAanduidingen property. - * - * @return - * possible object is - * {@link KadastraleAanduidingArray } - * - */ - public KadastraleAanduidingArray getKadastraleAanduidingen() { - return kadastraleAanduidingen; - } - - /** - * Sets the value of the kadastraleAanduidingen property. - * - * @param value - * allowed object is - * {@link KadastraleAanduidingArray } - * - */ - public void setKadastraleAanduidingen(KadastraleAanduidingArray value) { - this.kadastraleAanduidingen = value; - } - - /** - * Gets the value of the indicatieCompleet property. - * - */ - public boolean isIndicatieCompleet() { - return indicatieCompleet; - } - - /** - * Sets the value of the indicatieCompleet property. - * - */ - public void setIndicatieCompleet(boolean value) { - this.indicatieCompleet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Koopsom.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Koopsom.java deleted file mode 100644 index 8669bd5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Koopsom.java +++ /dev/null @@ -1,199 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for Koopsom complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Koopsom">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="koopdatum" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="bedrag" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="oppervlakte" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="meer_onroerende_goederen" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Koopsom", propOrder = { - -}) -public class Koopsom { - - @XmlElement(required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar koopdatum; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - protected int bedrag; - protected int oppervlakte; - @XmlElement(required = true) - protected String omschrijving; - @XmlElement(name = "meer_onroerende_goederen") - protected boolean meerOnroerendeGoederen; - - /** - * Gets the value of the koopdatum property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getKoopdatum() { - return koopdatum; - } - - /** - * Sets the value of the koopdatum property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setKoopdatum(XMLGregorianCalendar value) { - this.koopdatum = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the bedrag property. - * - */ - public int getBedrag() { - return bedrag; - } - - /** - * Sets the value of the bedrag property. - * - */ - public void setBedrag(int value) { - this.bedrag = value; - } - - /** - * Gets the value of the oppervlakte property. - * - */ - public int getOppervlakte() { - return oppervlakte; - } - - /** - * Sets the value of the oppervlakte property. - * - */ - public void setOppervlakte(int value) { - this.oppervlakte = value; - } - - /** - * Gets the value of the omschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijving() { - return omschrijving; - } - - /** - * Sets the value of the omschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijving(String value) { - this.omschrijving = value; - } - - /** - * Gets the value of the meerOnroerendeGoederen property. - * - */ - public boolean isMeerOnroerendeGoederen() { - return meerOnroerendeGoederen; - } - - /** - * Sets the value of the meerOnroerendeGoederen property. - * - */ - public void setMeerOnroerendeGoederen(boolean value) { - this.meerOnroerendeGoederen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsomArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsomArray.java deleted file mode 100644 index 8cd6488..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsomArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KoopsomArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KoopsomArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}Koopsom" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KoopsomArray", propOrder = { - "item" -}) -public class KoopsomArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Koopsom } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsommenOverzicht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsommenOverzicht.java deleted file mode 100644 index 1e5348f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsommenOverzicht.java +++ /dev/null @@ -1,218 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for KoopsommenOverzicht complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KoopsommenOverzicht">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="eind_datum" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="straatnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnr_van" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnr_tm" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="reeksindicatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeente" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="koopsommen" type="{http://www.webservices.nl/soap/}KoopsomArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KoopsommenOverzicht", propOrder = { - -}) -public class KoopsommenOverzicht { - - @XmlElement(name = "eind_datum", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar eindDatum; - @XmlElement(required = true) - protected String straatnaam; - @XmlElement(name = "huisnr_van") - protected int huisnrVan; - @XmlElement(name = "huisnr_tm") - protected int huisnrTm; - @XmlElement(required = true) - protected String reeksindicatie; - @XmlElement(required = true) - protected String gemeente; - @XmlElement(required = true) - protected KoopsomArray koopsommen; - - /** - * Gets the value of the eindDatum property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEindDatum() { - return eindDatum; - } - - /** - * Sets the value of the eindDatum property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEindDatum(XMLGregorianCalendar value) { - this.eindDatum = value; - } - - /** - * Gets the value of the straatnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStraatnaam() { - return straatnaam; - } - - /** - * Sets the value of the straatnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStraatnaam(String value) { - this.straatnaam = value; - } - - /** - * Gets the value of the huisnrVan property. - * - */ - public int getHuisnrVan() { - return huisnrVan; - } - - /** - * Sets the value of the huisnrVan property. - * - */ - public void setHuisnrVan(int value) { - this.huisnrVan = value; - } - - /** - * Gets the value of the huisnrTm property. - * - */ - public int getHuisnrTm() { - return huisnrTm; - } - - /** - * Sets the value of the huisnrTm property. - * - */ - public void setHuisnrTm(int value) { - this.huisnrTm = value; - } - - /** - * Gets the value of the reeksindicatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReeksindicatie() { - return reeksindicatie; - } - - /** - * Sets the value of the reeksindicatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReeksindicatie(String value) { - this.reeksindicatie = value; - } - - /** - * Gets the value of the gemeente property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeente() { - return gemeente; - } - - /** - * Sets the value of the gemeente property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeente(String value) { - this.gemeente = value; - } - - /** - * Gets the value of the koopsommen property. - * - * @return - * possible object is - * {@link KoopsomArray } - * - */ - public KoopsomArray getKoopsommen() { - return koopsommen; - } - - /** - * Sets the value of the koopsommen property. - * - * @param value - * allowed object is - * {@link KoopsomArray } - * - */ - public void setKoopsommen(KoopsomArray value) { - this.koopsommen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsommenOverzichtV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsommenOverzichtV2.java deleted file mode 100644 index 6e3e5b2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KoopsommenOverzichtV2.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KoopsommenOverzichtV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KoopsommenOverzichtV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
- *         <element name="overzicht" type="{http://www.webservices.nl/soap/}KoopsommenOverzicht"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KoopsommenOverzichtV2", propOrder = { - -}) -public class KoopsommenOverzichtV2 { - - protected byte[] document; - @XmlElement(required = true) - protected KoopsommenOverzicht overzicht; - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - - /** - * Gets the value of the overzicht property. - * - * @return - * possible object is - * {@link KoopsommenOverzicht } - * - */ - public KoopsommenOverzicht getOverzicht() { - return overzicht; - } - - /** - * Sets the value of the overzicht property. - * - * @param value - * allowed object is - * {@link KoopsommenOverzicht } - * - */ - public void setOverzicht(KoopsommenOverzicht value) { - this.overzicht = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkDate.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkDate.java deleted file mode 100644 index 907005f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkDate.java +++ /dev/null @@ -1,115 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KvkDate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KvkDate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="Year" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="Month" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="Day" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KvkDate", propOrder = { - -}) -public class KvkDate { - - @XmlElement(name = "Year") - protected int year; - @XmlElement(name = "Month") - protected Integer month; - @XmlElement(name = "Day") - protected Integer day; - - /** - * Gets the value of the year property. - * - */ - public int getYear() { - return year; - } - - /** - * Sets the value of the year property. - * - */ - public void setYear(int value) { - this.year = value; - } - - /** - * Gets the value of the month property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getMonth() { - return month; - } - - /** - * Sets the value of the month property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setMonth(Integer value) { - this.month = value; - } - - /** - * Gets the value of the day property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getDay() { - return day; - } - - /** - * Sets the value of the day property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setDay(Integer value) { - this.day = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkDossier.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkDossier.java deleted file mode 100644 index 0035620..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkDossier.java +++ /dev/null @@ -1,1573 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KvkDossier complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KvkDossier">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="update_info" type="{http://www.webservices.nl/soap/}KvkUpdateReference"/>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="main_establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="indication_main_establishment" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="chamber_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_form_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_form_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="indication_organisation_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="legal_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_name_45" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_name_full" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="establishment_postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="establishment_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="correspondence_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mobile_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="domain_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_title1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_title2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_initials" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_surname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contact_gender" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="primary_sbi_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="secondary_sbi_code1" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="secondary_sbi_code2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="primary_sbi_code_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="secondary_sbi_code1_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="secondary_sbi_code2_text" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="class_personnel" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="personnel_fulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="class_personnel_fulltime" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="personnel_reference_date" type="{http://www.webservices.nl/soap/}KvkDate" minOccurs="0"/>
- *         <element name="indication_import" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="indication_export" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="indication_economically_active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indication_non_mailing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indication_bankruptcy" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indication_dip" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="authorized_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="authorized_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="paid_up_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="paid_up_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="issued_share_capital" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="issued_share_capital_currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="founding_date" type="{http://www.webservices.nl/soap/}KvkDate" minOccurs="0"/>
- *         <element name="continuation_date" type="{http://www.webservices.nl/soap/}KvkDate" minOccurs="0"/>
- *         <element name="establishment_date" type="{http://www.webservices.nl/soap/}KvkDate" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KvkDossier", propOrder = { - -}) -public class KvkDossier { - - @XmlElement(name = "update_info", required = true) - protected KvkUpdateReference updateInfo; - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(name = "main_establishment_number") - protected String mainEstablishmentNumber; - @XmlElement(name = "indication_main_establishment") - protected boolean indicationMainEstablishment; - @XmlElement(name = "rsin_number") - protected String rsinNumber; - @XmlElement(name = "chamber_number", required = true) - protected String chamberNumber; - @XmlElement(name = "legal_form_code", required = true) - protected String legalFormCode; - @XmlElement(name = "legal_form_text", required = true) - protected String legalFormText; - @XmlElement(name = "indication_organisation_code", required = true) - protected String indicationOrganisationCode; - @XmlElement(name = "legal_name", required = true) - protected String legalName; - @XmlElement(name = "trade_name_45", required = true) - protected String tradeName45; - @XmlElement(name = "trade_name_full", required = true) - protected String tradeNameFull; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - @XmlElement(name = "establishment_postcode", required = true) - protected String establishmentPostcode; - @XmlElement(name = "establishment_city", required = true) - protected String establishmentCity; - @XmlElement(name = "establishment_street", required = true) - protected String establishmentStreet; - @XmlElement(name = "establishment_house_number") - protected int establishmentHouseNumber; - @XmlElement(name = "establishment_house_number_addition", required = true) - protected String establishmentHouseNumberAddition; - @XmlElement(name = "correspondence_postcode", required = true) - protected String correspondencePostcode; - @XmlElement(name = "correspondence_city", required = true) - protected String correspondenceCity; - @XmlElement(name = "correspondence_street", required = true) - protected String correspondenceStreet; - @XmlElement(name = "correspondence_house_number") - protected int correspondenceHouseNumber; - @XmlElement(name = "correspondence_house_number_addition", required = true) - protected String correspondenceHouseNumberAddition; - @XmlElement(name = "correspondence_country", required = true) - protected String correspondenceCountry; - @XmlElement(name = "telephone_number", required = true) - protected String telephoneNumber; - @XmlElement(name = "mobile_number", required = true) - protected String mobileNumber; - @XmlElement(name = "domain_name", required = true) - protected String domainName; - @XmlElement(name = "contact_title1", required = true) - protected String contactTitle1; - @XmlElement(name = "contact_title2", required = true) - protected String contactTitle2; - @XmlElement(name = "contact_initials", required = true) - protected String contactInitials; - @XmlElement(name = "contact_prefix", required = true) - protected String contactPrefix; - @XmlElement(name = "contact_surname", required = true) - protected String contactSurname; - @XmlElement(name = "contact_gender", required = true) - protected String contactGender; - @XmlElement(name = "primary_sbi_code", required = true) - protected String primarySbiCode; - @XmlElement(name = "secondary_sbi_code1", required = true) - protected String secondarySbiCode1; - @XmlElement(name = "secondary_sbi_code2", required = true) - protected String secondarySbiCode2; - @XmlElement(name = "primary_sbi_code_text", required = true) - protected String primarySbiCodeText; - @XmlElement(name = "secondary_sbi_code1_text", required = true) - protected String secondarySbiCode1Text; - @XmlElement(name = "secondary_sbi_code2_text", required = true) - protected String secondarySbiCode2Text; - protected int personnel; - @XmlElement(name = "class_personnel") - protected int classPersonnel; - @XmlElement(name = "personnel_fulltime") - protected int personnelFulltime; - @XmlElement(name = "class_personnel_fulltime") - protected int classPersonnelFulltime; - @XmlElement(name = "personnel_reference_date") - protected KvkDate personnelReferenceDate; - @XmlElement(name = "indication_import") - protected Boolean indicationImport; - @XmlElement(name = "indication_export") - protected Boolean indicationExport; - @XmlElement(name = "indication_economically_active") - protected boolean indicationEconomicallyActive; - @XmlElement(name = "indication_non_mailing") - protected boolean indicationNonMailing; - @XmlElement(name = "indication_bankruptcy") - protected boolean indicationBankruptcy; - @XmlElement(name = "indication_dip") - protected boolean indicationDip; - @XmlElement(name = "authorized_share_capital") - protected Long authorizedShareCapital; - @XmlElement(name = "authorized_share_capital_currency") - protected String authorizedShareCapitalCurrency; - @XmlElement(name = "paid_up_share_capital") - protected Long paidUpShareCapital; - @XmlElement(name = "paid_up_share_capital_currency") - protected String paidUpShareCapitalCurrency; - @XmlElement(name = "issued_share_capital") - protected Long issuedShareCapital; - @XmlElement(name = "issued_share_capital_currency") - protected String issuedShareCapitalCurrency; - @XmlElement(name = "founding_date") - protected KvkDate foundingDate; - @XmlElement(name = "continuation_date") - protected KvkDate continuationDate; - @XmlElement(name = "establishment_date") - protected KvkDate establishmentDate; - - /** - * Gets the value of the updateInfo property. - * - * @return - * possible object is - * {@link KvkUpdateReference } - * - */ - public KvkUpdateReference getUpdateInfo() { - return updateInfo; - } - - /** - * Sets the value of the updateInfo property. - * - * @param value - * allowed object is - * {@link KvkUpdateReference } - * - */ - public void setUpdateInfo(KvkUpdateReference value) { - this.updateInfo = value; - } - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the mainEstablishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMainEstablishmentNumber() { - return mainEstablishmentNumber; - } - - /** - * Sets the value of the mainEstablishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMainEstablishmentNumber(String value) { - this.mainEstablishmentNumber = value; - } - - /** - * Gets the value of the indicationMainEstablishment property. - * - */ - public boolean isIndicationMainEstablishment() { - return indicationMainEstablishment; - } - - /** - * Sets the value of the indicationMainEstablishment property. - * - */ - public void setIndicationMainEstablishment(boolean value) { - this.indicationMainEstablishment = value; - } - - /** - * Gets the value of the rsinNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsinNumber() { - return rsinNumber; - } - - /** - * Sets the value of the rsinNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsinNumber(String value) { - this.rsinNumber = value; - } - - /** - * Gets the value of the chamberNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getChamberNumber() { - return chamberNumber; - } - - /** - * Sets the value of the chamberNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChamberNumber(String value) { - this.chamberNumber = value; - } - - /** - * Gets the value of the legalFormCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormCode() { - return legalFormCode; - } - - /** - * Sets the value of the legalFormCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormCode(String value) { - this.legalFormCode = value; - } - - /** - * Gets the value of the legalFormText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalFormText() { - return legalFormText; - } - - /** - * Sets the value of the legalFormText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalFormText(String value) { - this.legalFormText = value; - } - - /** - * Gets the value of the indicationOrganisationCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIndicationOrganisationCode() { - return indicationOrganisationCode; - } - - /** - * Sets the value of the indicationOrganisationCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIndicationOrganisationCode(String value) { - this.indicationOrganisationCode = value; - } - - /** - * Gets the value of the legalName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLegalName() { - return legalName; - } - - /** - * Sets the value of the legalName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLegalName(String value) { - this.legalName = value; - } - - /** - * Gets the value of the tradeName45 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName45() { - return tradeName45; - } - - /** - * Sets the value of the tradeName45 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName45(String value) { - this.tradeName45 = value; - } - - /** - * Gets the value of the tradeNameFull property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeNameFull() { - return tradeNameFull; - } - - /** - * Sets the value of the tradeNameFull property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeNameFull(String value) { - this.tradeNameFull = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - - /** - * Gets the value of the establishmentPostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentPostcode() { - return establishmentPostcode; - } - - /** - * Sets the value of the establishmentPostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentPostcode(String value) { - this.establishmentPostcode = value; - } - - /** - * Gets the value of the establishmentCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCity() { - return establishmentCity; - } - - /** - * Sets the value of the establishmentCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCity(String value) { - this.establishmentCity = value; - } - - /** - * Gets the value of the establishmentStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentStreet() { - return establishmentStreet; - } - - /** - * Sets the value of the establishmentStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentStreet(String value) { - this.establishmentStreet = value; - } - - /** - * Gets the value of the establishmentHouseNumber property. - * - */ - public int getEstablishmentHouseNumber() { - return establishmentHouseNumber; - } - - /** - * Sets the value of the establishmentHouseNumber property. - * - */ - public void setEstablishmentHouseNumber(int value) { - this.establishmentHouseNumber = value; - } - - /** - * Gets the value of the establishmentHouseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentHouseNumberAddition() { - return establishmentHouseNumberAddition; - } - - /** - * Sets the value of the establishmentHouseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentHouseNumberAddition(String value) { - this.establishmentHouseNumberAddition = value; - } - - /** - * Gets the value of the correspondencePostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondencePostcode() { - return correspondencePostcode; - } - - /** - * Sets the value of the correspondencePostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondencePostcode(String value) { - this.correspondencePostcode = value; - } - - /** - * Gets the value of the correspondenceCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCity() { - return correspondenceCity; - } - - /** - * Sets the value of the correspondenceCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCity(String value) { - this.correspondenceCity = value; - } - - /** - * Gets the value of the correspondenceStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceStreet() { - return correspondenceStreet; - } - - /** - * Sets the value of the correspondenceStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceStreet(String value) { - this.correspondenceStreet = value; - } - - /** - * Gets the value of the correspondenceHouseNumber property. - * - */ - public int getCorrespondenceHouseNumber() { - return correspondenceHouseNumber; - } - - /** - * Sets the value of the correspondenceHouseNumber property. - * - */ - public void setCorrespondenceHouseNumber(int value) { - this.correspondenceHouseNumber = value; - } - - /** - * Gets the value of the correspondenceHouseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceHouseNumberAddition() { - return correspondenceHouseNumberAddition; - } - - /** - * Sets the value of the correspondenceHouseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceHouseNumberAddition(String value) { - this.correspondenceHouseNumberAddition = value; - } - - /** - * Gets the value of the correspondenceCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCountry() { - return correspondenceCountry; - } - - /** - * Sets the value of the correspondenceCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCountry(String value) { - this.correspondenceCountry = value; - } - - /** - * Gets the value of the telephoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNumber() { - return telephoneNumber; - } - - /** - * Sets the value of the telephoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNumber(String value) { - this.telephoneNumber = value; - } - - /** - * Gets the value of the mobileNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMobileNumber() { - return mobileNumber; - } - - /** - * Sets the value of the mobileNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMobileNumber(String value) { - this.mobileNumber = value; - } - - /** - * Gets the value of the domainName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomainName() { - return domainName; - } - - /** - * Sets the value of the domainName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomainName(String value) { - this.domainName = value; - } - - /** - * Gets the value of the contactTitle1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactTitle1() { - return contactTitle1; - } - - /** - * Sets the value of the contactTitle1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactTitle1(String value) { - this.contactTitle1 = value; - } - - /** - * Gets the value of the contactTitle2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactTitle2() { - return contactTitle2; - } - - /** - * Sets the value of the contactTitle2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactTitle2(String value) { - this.contactTitle2 = value; - } - - /** - * Gets the value of the contactInitials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactInitials() { - return contactInitials; - } - - /** - * Sets the value of the contactInitials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactInitials(String value) { - this.contactInitials = value; - } - - /** - * Gets the value of the contactPrefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactPrefix() { - return contactPrefix; - } - - /** - * Sets the value of the contactPrefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactPrefix(String value) { - this.contactPrefix = value; - } - - /** - * Gets the value of the contactSurname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactSurname() { - return contactSurname; - } - - /** - * Sets the value of the contactSurname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactSurname(String value) { - this.contactSurname = value; - } - - /** - * Gets the value of the contactGender property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactGender() { - return contactGender; - } - - /** - * Sets the value of the contactGender property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactGender(String value) { - this.contactGender = value; - } - - /** - * Gets the value of the primarySbiCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimarySbiCode() { - return primarySbiCode; - } - - /** - * Sets the value of the primarySbiCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimarySbiCode(String value) { - this.primarySbiCode = value; - } - - /** - * Gets the value of the secondarySbiCode1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySbiCode1() { - return secondarySbiCode1; - } - - /** - * Sets the value of the secondarySbiCode1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySbiCode1(String value) { - this.secondarySbiCode1 = value; - } - - /** - * Gets the value of the secondarySbiCode2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySbiCode2() { - return secondarySbiCode2; - } - - /** - * Sets the value of the secondarySbiCode2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySbiCode2(String value) { - this.secondarySbiCode2 = value; - } - - /** - * Gets the value of the primarySbiCodeText property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimarySbiCodeText() { - return primarySbiCodeText; - } - - /** - * Sets the value of the primarySbiCodeText property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimarySbiCodeText(String value) { - this.primarySbiCodeText = value; - } - - /** - * Gets the value of the secondarySbiCode1Text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySbiCode1Text() { - return secondarySbiCode1Text; - } - - /** - * Sets the value of the secondarySbiCode1Text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySbiCode1Text(String value) { - this.secondarySbiCode1Text = value; - } - - /** - * Gets the value of the secondarySbiCode2Text property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondarySbiCode2Text() { - return secondarySbiCode2Text; - } - - /** - * Sets the value of the secondarySbiCode2Text property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondarySbiCode2Text(String value) { - this.secondarySbiCode2Text = value; - } - - /** - * Gets the value of the personnel property. - * - */ - public int getPersonnel() { - return personnel; - } - - /** - * Sets the value of the personnel property. - * - */ - public void setPersonnel(int value) { - this.personnel = value; - } - - /** - * Gets the value of the classPersonnel property. - * - */ - public int getClassPersonnel() { - return classPersonnel; - } - - /** - * Sets the value of the classPersonnel property. - * - */ - public void setClassPersonnel(int value) { - this.classPersonnel = value; - } - - /** - * Gets the value of the personnelFulltime property. - * - */ - public int getPersonnelFulltime() { - return personnelFulltime; - } - - /** - * Sets the value of the personnelFulltime property. - * - */ - public void setPersonnelFulltime(int value) { - this.personnelFulltime = value; - } - - /** - * Gets the value of the classPersonnelFulltime property. - * - */ - public int getClassPersonnelFulltime() { - return classPersonnelFulltime; - } - - /** - * Sets the value of the classPersonnelFulltime property. - * - */ - public void setClassPersonnelFulltime(int value) { - this.classPersonnelFulltime = value; - } - - /** - * Gets the value of the personnelReferenceDate property. - * - * @return - * possible object is - * {@link KvkDate } - * - */ - public KvkDate getPersonnelReferenceDate() { - return personnelReferenceDate; - } - - /** - * Sets the value of the personnelReferenceDate property. - * - * @param value - * allowed object is - * {@link KvkDate } - * - */ - public void setPersonnelReferenceDate(KvkDate value) { - this.personnelReferenceDate = value; - } - - /** - * Gets the value of the indicationImport property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicationImport() { - return indicationImport; - } - - /** - * Sets the value of the indicationImport property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicationImport(Boolean value) { - this.indicationImport = value; - } - - /** - * Gets the value of the indicationExport property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isIndicationExport() { - return indicationExport; - } - - /** - * Sets the value of the indicationExport property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setIndicationExport(Boolean value) { - this.indicationExport = value; - } - - /** - * Gets the value of the indicationEconomicallyActive property. - * - */ - public boolean isIndicationEconomicallyActive() { - return indicationEconomicallyActive; - } - - /** - * Sets the value of the indicationEconomicallyActive property. - * - */ - public void setIndicationEconomicallyActive(boolean value) { - this.indicationEconomicallyActive = value; - } - - /** - * Gets the value of the indicationNonMailing property. - * - */ - public boolean isIndicationNonMailing() { - return indicationNonMailing; - } - - /** - * Sets the value of the indicationNonMailing property. - * - */ - public void setIndicationNonMailing(boolean value) { - this.indicationNonMailing = value; - } - - /** - * Gets the value of the indicationBankruptcy property. - * - */ - public boolean isIndicationBankruptcy() { - return indicationBankruptcy; - } - - /** - * Sets the value of the indicationBankruptcy property. - * - */ - public void setIndicationBankruptcy(boolean value) { - this.indicationBankruptcy = value; - } - - /** - * Gets the value of the indicationDip property. - * - */ - public boolean isIndicationDip() { - return indicationDip; - } - - /** - * Sets the value of the indicationDip property. - * - */ - public void setIndicationDip(boolean value) { - this.indicationDip = value; - } - - /** - * Gets the value of the authorizedShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getAuthorizedShareCapital() { - return authorizedShareCapital; - } - - /** - * Sets the value of the authorizedShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setAuthorizedShareCapital(Long value) { - this.authorizedShareCapital = value; - } - - /** - * Gets the value of the authorizedShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAuthorizedShareCapitalCurrency() { - return authorizedShareCapitalCurrency; - } - - /** - * Sets the value of the authorizedShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAuthorizedShareCapitalCurrency(String value) { - this.authorizedShareCapitalCurrency = value; - } - - /** - * Gets the value of the paidUpShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getPaidUpShareCapital() { - return paidUpShareCapital; - } - - /** - * Sets the value of the paidUpShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setPaidUpShareCapital(Long value) { - this.paidUpShareCapital = value; - } - - /** - * Gets the value of the paidUpShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPaidUpShareCapitalCurrency() { - return paidUpShareCapitalCurrency; - } - - /** - * Sets the value of the paidUpShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPaidUpShareCapitalCurrency(String value) { - this.paidUpShareCapitalCurrency = value; - } - - /** - * Gets the value of the issuedShareCapital property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getIssuedShareCapital() { - return issuedShareCapital; - } - - /** - * Sets the value of the issuedShareCapital property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setIssuedShareCapital(Long value) { - this.issuedShareCapital = value; - } - - /** - * Gets the value of the issuedShareCapitalCurrency property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIssuedShareCapitalCurrency() { - return issuedShareCapitalCurrency; - } - - /** - * Sets the value of the issuedShareCapitalCurrency property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIssuedShareCapitalCurrency(String value) { - this.issuedShareCapitalCurrency = value; - } - - /** - * Gets the value of the foundingDate property. - * - * @return - * possible object is - * {@link KvkDate } - * - */ - public KvkDate getFoundingDate() { - return foundingDate; - } - - /** - * Sets the value of the foundingDate property. - * - * @param value - * allowed object is - * {@link KvkDate } - * - */ - public void setFoundingDate(KvkDate value) { - this.foundingDate = value; - } - - /** - * Gets the value of the continuationDate property. - * - * @return - * possible object is - * {@link KvkDate } - * - */ - public KvkDate getContinuationDate() { - return continuationDate; - } - - /** - * Sets the value of the continuationDate property. - * - * @param value - * allowed object is - * {@link KvkDate } - * - */ - public void setContinuationDate(KvkDate value) { - this.continuationDate = value; - } - - /** - * Gets the value of the establishmentDate property. - * - * @return - * possible object is - * {@link KvkDate } - * - */ - public KvkDate getEstablishmentDate() { - return establishmentDate; - } - - /** - * Sets the value of the establishmentDate property. - * - * @param value - * allowed object is - * {@link KvkDate } - * - */ - public void setEstablishmentDate(KvkDate value) { - this.establishmentDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkExtractDocument.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkExtractDocument.java deleted file mode 100644 index c840254..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkExtractDocument.java +++ /dev/null @@ -1,97 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for KvkExtractDocument complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KvkExtractDocument">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="document" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="document_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KvkExtractDocument", propOrder = { - -}) -public class KvkExtractDocument { - - @XmlElement(required = true) - protected byte[] document; - @XmlElement(name = "document_date", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar documentDate; - - /** - * Gets the value of the document property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getDocument() { - return document; - } - - /** - * Sets the value of the document property. - * - * @param value - * allowed object is - * byte[] - */ - public void setDocument(byte[] value) { - this.document = value; - } - - /** - * Gets the value of the documentDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDocumentDate() { - return documentDate; - } - - /** - * Sets the value of the documentDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDocumentDate(XMLGregorianCalendar value) { - this.documentDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetDossierRequestType.java deleted file mode 100644 index 56aeff6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetDossierRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkGetDossierRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkGetDossierRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkGetDossierRequestType", propOrder = { - -}) -public class KvkGetDossierRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number", required = true) - protected String establishmentNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetDossierResponseType.java deleted file mode 100644 index 144c970..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetDossierResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkGetDossierResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkGetDossierResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KvkDossier"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkGetDossierResponseType", propOrder = { - -}) -public class KvkGetDossierResponseType { - - @XmlElement(required = true) - protected KvkDossier out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KvkDossier } - * - */ - public KvkDossier getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KvkDossier } - * - */ - public void setOut(KvkDossier value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetExtractDocumentRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetExtractDocumentRequestType.java deleted file mode 100644 index a7a90e4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetExtractDocumentRequestType.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkGetExtractDocumentRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkGetExtractDocumentRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="allow_caching" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkGetExtractDocumentRequestType", propOrder = { - -}) -public class KvkGetExtractDocumentRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "allow_caching") - protected boolean allowCaching; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the allowCaching property. - * - */ - public boolean isAllowCaching() { - return allowCaching; - } - - /** - * Sets the value of the allowCaching property. - * - */ - public void setAllowCaching(boolean value) { - this.allowCaching = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetExtractDocumentResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetExtractDocumentResponseType.java deleted file mode 100644 index effb7fe..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkGetExtractDocumentResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkGetExtractDocumentResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkGetExtractDocumentResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KvkExtractDocument"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkGetExtractDocumentResponseType", propOrder = { - -}) -public class KvkGetExtractDocumentResponseType { - - @XmlElement(required = true) - protected KvkExtractDocument out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KvkExtractDocument } - * - */ - public KvkExtractDocument getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KvkExtractDocument } - * - */ - public void setOut(KvkExtractDocument value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReference.java deleted file mode 100644 index 79702de..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReference.java +++ /dev/null @@ -1,250 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KvkReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KvkReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="correspondence_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="indication_economically_active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KvkReference", propOrder = { - -}) -public class KvkReference { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(name = "trade_name", required = true) - protected String tradeName; - @XmlElement(name = "establishment_city", required = true) - protected String establishmentCity; - @XmlElement(name = "establishment_street", required = true) - protected String establishmentStreet; - @XmlElement(name = "correspondence_city", required = true) - protected String correspondenceCity; - @XmlElement(name = "correspondence_street", required = true) - protected String correspondenceStreet; - @XmlElement(name = "indication_economically_active") - protected boolean indicationEconomicallyActive; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the tradeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName() { - return tradeName; - } - - /** - * Sets the value of the tradeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName(String value) { - this.tradeName = value; - } - - /** - * Gets the value of the establishmentCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentCity() { - return establishmentCity; - } - - /** - * Sets the value of the establishmentCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentCity(String value) { - this.establishmentCity = value; - } - - /** - * Gets the value of the establishmentStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentStreet() { - return establishmentStreet; - } - - /** - * Sets the value of the establishmentStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentStreet(String value) { - this.establishmentStreet = value; - } - - /** - * Gets the value of the correspondenceCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceCity() { - return correspondenceCity; - } - - /** - * Sets the value of the correspondenceCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceCity(String value) { - this.correspondenceCity = value; - } - - /** - * Gets the value of the correspondenceStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCorrespondenceStreet() { - return correspondenceStreet; - } - - /** - * Sets the value of the correspondenceStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCorrespondenceStreet(String value) { - this.correspondenceStreet = value; - } - - /** - * Gets the value of the indicationEconomicallyActive property. - * - */ - public boolean isIndicationEconomicallyActive() { - return indicationEconomicallyActive; - } - - /** - * Sets the value of the indicationEconomicallyActive property. - * - */ - public void setIndicationEconomicallyActive(boolean value) { - this.indicationEconomicallyActive = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReferenceArray.java deleted file mode 100644 index 03afcb9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KvkReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KvkReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KvkReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KvkReferenceArray", propOrder = { - "item" -}) -public class KvkReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KvkReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReferencePagedResult.java deleted file mode 100644 index aec2d98..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkReferencePagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KvkReferencePagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KvkReferencePagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}KvkReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KvkReferencePagedResult", propOrder = { - -}) -public class KvkReferencePagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected KvkReferenceArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link KvkReferenceArray } - * - */ - public KvkReferenceArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link KvkReferenceArray } - * - */ - public void setResults(KvkReferenceArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchDossierNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchDossierNumberRequestType.java deleted file mode 100644 index 0b7980d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchDossierNumberRequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkSearchDossierNumberRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkSearchDossierNumberRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="rsin_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkSearchDossierNumberRequestType", propOrder = { - -}) -public class KvkSearchDossierNumberRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number", required = true) - protected String establishmentNumber; - @XmlElement(name = "rsin_number", required = true) - protected String rsinNumber; - protected int page; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the rsinNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRsinNumber() { - return rsinNumber; - } - - /** - * Sets the value of the rsinNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRsinNumber(String value) { - this.rsinNumber = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchDossierNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchDossierNumberResponseType.java deleted file mode 100644 index 85098f2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchDossierNumberResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkSearchDossierNumberResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkSearchDossierNumberResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KvkReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkSearchDossierNumberResponseType", propOrder = { - -}) -public class KvkSearchDossierNumberResponseType { - - @XmlElement(required = true) - protected KvkReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KvkReferencePagedResult } - * - */ - public KvkReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KvkReferencePagedResult } - * - */ - public void setOut(KvkReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchParametersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchParametersRequestType.java deleted file mode 100644 index d1e034b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchParametersRequestType.java +++ /dev/null @@ -1,287 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkSearchParametersRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkSearchParametersRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="trade_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="domain_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="strict_search" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkSearchParametersRequestType", propOrder = { - -}) -public class KvkSearchParametersRequestType { - - @XmlElement(name = "trade_name", required = true) - protected String tradeName; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String street; - @XmlElement(required = true) - protected String postcode; - @XmlElement(name = "house_number") - protected int houseNumber; - @XmlElement(name = "house_number_addition", required = true) - protected String houseNumberAddition; - @XmlElement(name = "telephone_number", required = true) - protected String telephoneNumber; - @XmlElement(name = "domain_name", required = true) - protected String domainName; - @XmlElement(name = "strict_search") - protected boolean strictSearch; - protected int page; - - /** - * Gets the value of the tradeName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTradeName() { - return tradeName; - } - - /** - * Sets the value of the tradeName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTradeName(String value) { - this.tradeName = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the houseNumber property. - * - */ - public int getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - */ - public void setHouseNumber(int value) { - this.houseNumber = value; - } - - /** - * Gets the value of the houseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNumberAddition() { - return houseNumberAddition; - } - - /** - * Sets the value of the houseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNumberAddition(String value) { - this.houseNumberAddition = value; - } - - /** - * Gets the value of the telephoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNumber() { - return telephoneNumber; - } - - /** - * Sets the value of the telephoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNumber(String value) { - this.telephoneNumber = value; - } - - /** - * Gets the value of the domainName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomainName() { - return domainName; - } - - /** - * Sets the value of the domainName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomainName(String value) { - this.domainName = value; - } - - /** - * Gets the value of the strictSearch property. - * - */ - public boolean isStrictSearch() { - return strictSearch; - } - - /** - * Sets the value of the strictSearch property. - * - */ - public void setStrictSearch(boolean value) { - this.strictSearch = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchParametersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchParametersResponseType.java deleted file mode 100644 index 0baadbc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchParametersResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkSearchParametersResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkSearchParametersResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KvkReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkSearchParametersResponseType", propOrder = { - -}) -public class KvkSearchParametersResponseType { - - @XmlElement(required = true) - protected KvkReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KvkReferencePagedResult } - * - */ - public KvkReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KvkReferencePagedResult } - * - */ - public void setOut(KvkReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchPostcodeRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchPostcodeRequestType.java deleted file mode 100644 index 3d0dba4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchPostcodeRequestType.java +++ /dev/null @@ -1,133 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkSearchPostcodeRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkSearchPostcodeRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkSearchPostcodeRequestType", propOrder = { - -}) -public class KvkSearchPostcodeRequestType { - - @XmlElement(required = true) - protected String postcode; - @XmlElement(name = "house_number") - protected int houseNumber; - @XmlElement(name = "house_number_addition", required = true) - protected String houseNumberAddition; - protected int page; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the houseNumber property. - * - */ - public int getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - */ - public void setHouseNumber(int value) { - this.houseNumber = value; - } - - /** - * Gets the value of the houseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNumberAddition() { - return houseNumberAddition; - } - - /** - * Sets the value of the houseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNumberAddition(String value) { - this.houseNumberAddition = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchPostcodeResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchPostcodeResponseType.java deleted file mode 100644 index d0aea16..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchPostcodeResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkSearchPostcodeResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkSearchPostcodeResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KvkReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkSearchPostcodeResponseType", propOrder = { - -}) -public class KvkSearchPostcodeResponseType { - - @XmlElement(required = true) - protected KvkReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KvkReferencePagedResult } - * - */ - public KvkReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KvkReferencePagedResult } - * - */ - public void setOut(KvkReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchSelectionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchSelectionRequestType.java deleted file mode 100644 index bab3c34..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchSelectionRequestType.java +++ /dev/null @@ -1,333 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkSearchSelectionRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkSearchSelectionRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="city" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="postcode" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="sbi" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="primary_sbi_only" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="legal_form" type="{http://www.webservices.nl/soap/}intArray"/>
- *         <element name="employees_min" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="employees_max" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="economically_active" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="financial_status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="new_since" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkSearchSelectionRequestType", propOrder = { - -}) -public class KvkSearchSelectionRequestType { - - @XmlElement(required = true) - protected StringArray city; - @XmlElement(required = true) - protected StringArray postcode; - @XmlElement(required = true) - protected StringArray sbi; - @XmlElement(name = "primary_sbi_only") - protected boolean primarySbiOnly; - @XmlElement(name = "legal_form", required = true) - protected IntArray legalForm; - @XmlElement(name = "employees_min") - protected int employeesMin; - @XmlElement(name = "employees_max") - protected int employeesMax; - @XmlElement(name = "economically_active", required = true) - protected String economicallyActive; - @XmlElement(name = "financial_status", required = true) - protected String financialStatus; - @XmlElement(name = "changed_since", required = true) - protected String changedSince; - @XmlElement(name = "new_since", required = true) - protected String newSince; - protected int page; - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setCity(StringArray value) { - this.city = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setPostcode(StringArray value) { - this.postcode = value; - } - - /** - * Gets the value of the sbi property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getSbi() { - return sbi; - } - - /** - * Sets the value of the sbi property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setSbi(StringArray value) { - this.sbi = value; - } - - /** - * Gets the value of the primarySbiOnly property. - * - */ - public boolean isPrimarySbiOnly() { - return primarySbiOnly; - } - - /** - * Sets the value of the primarySbiOnly property. - * - */ - public void setPrimarySbiOnly(boolean value) { - this.primarySbiOnly = value; - } - - /** - * Gets the value of the legalForm property. - * - * @return - * possible object is - * {@link IntArray } - * - */ - public IntArray getLegalForm() { - return legalForm; - } - - /** - * Sets the value of the legalForm property. - * - * @param value - * allowed object is - * {@link IntArray } - * - */ - public void setLegalForm(IntArray value) { - this.legalForm = value; - } - - /** - * Gets the value of the employeesMin property. - * - */ - public int getEmployeesMin() { - return employeesMin; - } - - /** - * Sets the value of the employeesMin property. - * - */ - public void setEmployeesMin(int value) { - this.employeesMin = value; - } - - /** - * Gets the value of the employeesMax property. - * - */ - public int getEmployeesMax() { - return employeesMax; - } - - /** - * Sets the value of the employeesMax property. - * - */ - public void setEmployeesMax(int value) { - this.employeesMax = value; - } - - /** - * Gets the value of the economicallyActive property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEconomicallyActive() { - return economicallyActive; - } - - /** - * Sets the value of the economicallyActive property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEconomicallyActive(String value) { - this.economicallyActive = value; - } - - /** - * Gets the value of the financialStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFinancialStatus() { - return financialStatus; - } - - /** - * Sets the value of the financialStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFinancialStatus(String value) { - this.financialStatus = value; - } - - /** - * Gets the value of the changedSince property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getChangedSince() { - return changedSince; - } - - /** - * Sets the value of the changedSince property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChangedSince(String value) { - this.changedSince = value; - } - - /** - * Gets the value of the newSince property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNewSince() { - return newSince; - } - - /** - * Sets the value of the newSince property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNewSince(String value) { - this.newSince = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchSelectionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchSelectionResponseType.java deleted file mode 100644 index 031c108..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkSearchSelectionResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkSearchSelectionResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkSearchSelectionResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KvkReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkSearchSelectionResponseType", propOrder = { - -}) -public class KvkSearchSelectionResponseType { - - @XmlElement(required = true) - protected KvkReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KvkReferencePagedResult } - * - */ - public KvkReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KvkReferencePagedResult } - * - */ - public void setOut(KvkReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateAddDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateAddDossierRequestType.java deleted file mode 100644 index 7e26fcb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateAddDossierRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkUpdateAddDossierRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkUpdateAddDossierRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkUpdateAddDossierRequestType", propOrder = { - -}) -public class KvkUpdateAddDossierRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number", required = true) - protected String establishmentNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateAddDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateAddDossierResponseType.java deleted file mode 100644 index 36b7b6f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateAddDossierResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkUpdateAddDossierResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkUpdateAddDossierResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkUpdateAddDossierResponseType") -public class KvkUpdateAddDossierResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateCheckDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateCheckDossierRequestType.java deleted file mode 100644 index abedbfe..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateCheckDossierRequestType.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkUpdateCheckDossierRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkUpdateCheckDossierRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkUpdateCheckDossierRequestType", propOrder = { - -}) -public class KvkUpdateCheckDossierRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number", required = true) - protected String establishmentNumber; - @XmlElement(name = "update_types", required = true) - protected StringArray updateTypes; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the updateTypes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getUpdateTypes() { - return updateTypes; - } - - /** - * Sets the value of the updateTypes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setUpdateTypes(StringArray value) { - this.updateTypes = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateCheckDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateCheckDossierResponseType.java deleted file mode 100644 index 85afd74..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateCheckDossierResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkUpdateCheckDossierResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkUpdateCheckDossierResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KvkUpdateReference"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkUpdateCheckDossierResponseType", propOrder = { - -}) -public class KvkUpdateCheckDossierResponseType { - - @XmlElement(required = true) - protected KvkUpdateReference out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KvkUpdateReference } - * - */ - public KvkUpdateReference getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KvkUpdateReference } - * - */ - public void setOut(KvkUpdateReference value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetChangedDossiersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetChangedDossiersRequestType.java deleted file mode 100644 index 5e1dfec..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetChangedDossiersRequestType.java +++ /dev/null @@ -1,117 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for kvkUpdateGetChangedDossiersRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkUpdateGetChangedDossiersRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="changed_since" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkUpdateGetChangedDossiersRequestType", propOrder = { - -}) -public class KvkUpdateGetChangedDossiersRequestType { - - @XmlElement(name = "changed_since", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar changedSince; - @XmlElement(name = "update_types", required = true) - protected StringArray updateTypes; - protected int page; - - /** - * Gets the value of the changedSince property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getChangedSince() { - return changedSince; - } - - /** - * Sets the value of the changedSince property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setChangedSince(XMLGregorianCalendar value) { - this.changedSince = value; - } - - /** - * Gets the value of the updateTypes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getUpdateTypes() { - return updateTypes; - } - - /** - * Sets the value of the updateTypes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setUpdateTypes(StringArray value) { - this.updateTypes = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetChangedDossiersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetChangedDossiersResponseType.java deleted file mode 100644 index c86cb4d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetChangedDossiersResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkUpdateGetChangedDossiersResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkUpdateGetChangedDossiersResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KvkUpdateReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkUpdateGetChangedDossiersResponseType", propOrder = { - -}) -public class KvkUpdateGetChangedDossiersResponseType { - - @XmlElement(required = true) - protected KvkUpdateReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KvkUpdateReferencePagedResult } - * - */ - public KvkUpdateReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KvkUpdateReferencePagedResult } - * - */ - public void setOut(KvkUpdateReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetDossiersRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetDossiersRequestType.java deleted file mode 100644 index 9b5d065..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetDossiersRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkUpdateGetDossiersRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkUpdateGetDossiersRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkUpdateGetDossiersRequestType", propOrder = { - -}) -public class KvkUpdateGetDossiersRequestType { - - @XmlElement(name = "update_types", required = true) - protected StringArray updateTypes; - protected int page; - - /** - * Gets the value of the updateTypes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getUpdateTypes() { - return updateTypes; - } - - /** - * Sets the value of the updateTypes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setUpdateTypes(StringArray value) { - this.updateTypes = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetDossiersResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetDossiersResponseType.java deleted file mode 100644 index 7810c79..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateGetDossiersResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkUpdateGetDossiersResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkUpdateGetDossiersResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}KvkUpdateReferencePagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkUpdateGetDossiersResponseType", propOrder = { - -}) -public class KvkUpdateGetDossiersResponseType { - - @XmlElement(required = true) - protected KvkUpdateReferencePagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link KvkUpdateReferencePagedResult } - * - */ - public KvkUpdateReferencePagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link KvkUpdateReferencePagedResult } - * - */ - public void setOut(KvkUpdateReferencePagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReference.java deleted file mode 100644 index 5838dc3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReference.java +++ /dev/null @@ -1,153 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for KvkUpdateReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KvkUpdateReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="update_types" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="date_last_update" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KvkUpdateReference", propOrder = { - -}) -public class KvkUpdateReference { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - @XmlElement(name = "update_types", required = true) - protected StringArray updateTypes; - @XmlElement(name = "date_last_update", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar dateLastUpdate; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the updateTypes property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getUpdateTypes() { - return updateTypes; - } - - /** - * Sets the value of the updateTypes property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setUpdateTypes(StringArray value) { - this.updateTypes = value; - } - - /** - * Gets the value of the dateLastUpdate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDateLastUpdate() { - return dateLastUpdate; - } - - /** - * Sets the value of the dateLastUpdate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDateLastUpdate(XMLGregorianCalendar value) { - this.dateLastUpdate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReferenceArray.java deleted file mode 100644 index 566d40f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KvkUpdateReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KvkUpdateReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}KvkUpdateReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KvkUpdateReferenceArray", propOrder = { - "item" -}) -public class KvkUpdateReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link KvkUpdateReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReferencePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReferencePagedResult.java deleted file mode 100644 index 45c717f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateReferencePagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for KvkUpdateReferencePagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="KvkUpdateReferencePagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}KvkUpdateReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "KvkUpdateReferencePagedResult", propOrder = { - -}) -public class KvkUpdateReferencePagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected KvkUpdateReferenceArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link KvkUpdateReferenceArray } - * - */ - public KvkUpdateReferenceArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link KvkUpdateReferenceArray } - * - */ - public void setResults(KvkUpdateReferenceArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateRemoveDossierRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateRemoveDossierRequestType.java deleted file mode 100644 index af23f1e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateRemoveDossierRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkUpdateRemoveDossierRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkUpdateRemoveDossierRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkUpdateRemoveDossierRequestType", propOrder = { - -}) -public class KvkUpdateRemoveDossierRequestType { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number", required = true) - protected String establishmentNumber; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateRemoveDossierResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateRemoveDossierResponseType.java deleted file mode 100644 index f072186..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/KvkUpdateRemoveDossierResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for kvkUpdateRemoveDossierResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="kvkUpdateRemoveDossierResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "kvkUpdateRemoveDossierResponseType") -public class KvkUpdateRemoveDossierResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Landinrichtingsrente.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Landinrichtingsrente.java deleted file mode 100644 index 4282d9d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Landinrichtingsrente.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Landinrichtingsrente complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Landinrichtingsrente">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bedrag" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="eindjaar" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Landinrichtingsrente", propOrder = { - -}) -public class Landinrichtingsrente { - - @XmlElement(required = true) - protected String bedrag; - @XmlElement(required = true) - protected String eindjaar; - - /** - * Gets the value of the bedrag property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBedrag() { - return bedrag; - } - - /** - * Sets the value of the bedrag property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBedrag(String value) { - this.bedrag = value; - } - - /** - * Gets the value of the eindjaar property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEindjaar() { - return eindjaar; - } - - /** - * Sets the value of the eindjaar property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEindjaar(String value) { - this.eindjaar = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinates.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinates.java deleted file mode 100644 index 58ad818..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinates.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LatLonCoordinates complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LatLonCoordinates">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LatLonCoordinates", propOrder = { - -}) -public class LatLonCoordinates { - - protected float latitude; - protected float longitude; - - /** - * Gets the value of the latitude property. - * - */ - public float getLatitude() { - return latitude; - } - - /** - * Sets the value of the latitude property. - * - */ - public void setLatitude(float value) { - this.latitude = value; - } - - /** - * Gets the value of the longitude property. - * - */ - public float getLongitude() { - return longitude; - } - - /** - * Sets the value of the longitude property. - * - */ - public void setLongitude(float value) { - this.longitude = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesArray.java deleted file mode 100644 index f2504a5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LatLonCoordinatesArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LatLonCoordinatesArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}LatLonCoordinates" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LatLonCoordinatesArray", propOrder = { - "item" -}) -public class LatLonCoordinatesArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LatLonCoordinates } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesInternationalAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesInternationalAddress.java deleted file mode 100644 index 196b91f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesInternationalAddress.java +++ /dev/null @@ -1,213 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LatLonCoordinatesInternationalAddress complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LatLonCoordinatesInternationalAddress">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="province" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country_iso2" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LatLonCoordinatesInternationalAddress", propOrder = { - -}) -public class LatLonCoordinatesInternationalAddress { - - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String street; - @XmlElement(required = true) - protected String city; - @XmlElement(required = true) - protected String province; - @XmlElement(name = "country_iso2", required = true) - protected String countryIso2; - protected float latitude; - protected float longitude; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the province property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvince() { - return province; - } - - /** - * Sets the value of the province property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvince(String value) { - this.province = value; - } - - /** - * Gets the value of the countryIso2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryIso2() { - return countryIso2; - } - - /** - * Sets the value of the countryIso2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryIso2(String value) { - this.countryIso2 = value; - } - - /** - * Gets the value of the latitude property. - * - */ - public float getLatitude() { - return latitude; - } - - /** - * Sets the value of the latitude property. - * - */ - public void setLatitude(float value) { - this.latitude = value; - } - - /** - * Gets the value of the longitude property. - * - */ - public float getLongitude() { - return longitude; - } - - /** - * Sets the value of the longitude property. - * - */ - public void setLongitude(float value) { - this.longitude = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesInternationalAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesInternationalAddressArray.java deleted file mode 100644 index 1381d44..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesInternationalAddressArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LatLonCoordinatesInternationalAddressArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LatLonCoordinatesInternationalAddressArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}LatLonCoordinatesInternationalAddress" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LatLonCoordinatesInternationalAddressArray", propOrder = { - "item" -}) -public class LatLonCoordinatesInternationalAddressArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LatLonCoordinatesInternationalAddress } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesMatch.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesMatch.java deleted file mode 100644 index 0bd3ce7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LatLonCoordinatesMatch.java +++ /dev/null @@ -1,132 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LatLonCoordinatesMatch complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LatLonCoordinatesMatch">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="citymatch" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="streetmatch" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LatLonCoordinatesMatch", propOrder = { - -}) -public class LatLonCoordinatesMatch { - - protected float latitude; - protected float longitude; - @XmlElement(required = true) - protected String citymatch; - @XmlElement(required = true) - protected String streetmatch; - - /** - * Gets the value of the latitude property. - * - */ - public float getLatitude() { - return latitude; - } - - /** - * Sets the value of the latitude property. - * - */ - public void setLatitude(float value) { - this.latitude = value; - } - - /** - * Gets the value of the longitude property. - * - */ - public float getLongitude() { - return longitude; - } - - /** - * Sets the value of the longitude property. - * - */ - public void setLongitude(float value) { - this.longitude = value; - } - - /** - * Gets the value of the citymatch property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCitymatch() { - return citymatch; - } - - /** - * Sets the value of the citymatch property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCitymatch(String value) { - this.citymatch = value; - } - - /** - * Gets the value of the streetmatch property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetmatch() { - return streetmatch; - } - - /** - * Sets the value of the streetmatch property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetmatch(String value) { - this.streetmatch = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Lid.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Lid.java deleted file mode 100644 index 14ddcdb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Lid.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Lid complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Lid">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Lid", propOrder = { - -}) -public class Lid { - - @XmlElement(required = true) - protected String id; - @XmlElement(required = true) - protected String omschrijving; - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the omschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijving() { - return omschrijving; - } - - /** - * Sets the value of the omschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijving(String value) { - this.omschrijving = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LidArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LidArray.java deleted file mode 100644 index 265a5a6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LidArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LidArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LidArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}Lid" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LidArray", propOrder = { - "item" -}) -public class LidArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Lid } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LidLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LidLijst.java deleted file mode 100644 index 7974de8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LidLijst.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LidLijst complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LidLijst">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="leden" type="{http://www.webservices.nl/soap/}LidArray"/>
- *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LidLijst", propOrder = { - -}) -public class LidLijst { - - @XmlElement(required = true) - protected LidArray leden; - @XmlElement(name = "indicatie_compleet") - protected boolean indicatieCompleet; - - /** - * Gets the value of the leden property. - * - * @return - * possible object is - * {@link LidArray } - * - */ - public LidArray getLeden() { - return leden; - } - - /** - * Sets the value of the leden property. - * - * @param value - * allowed object is - * {@link LidArray } - * - */ - public void setLeden(LidArray value) { - this.leden = value; - } - - /** - * Gets the value of the indicatieCompleet property. - * - */ - public boolean isIndicatieCompleet() { - return indicatieCompleet; - } - - /** - * Sets the value of the indicatieCompleet property. - * - */ - public void setIndicatieCompleet(boolean value) { - this.indicatieCompleet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Locatie.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Locatie.java deleted file mode 100644 index aea6ee1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Locatie.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Locatie complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Locatie">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="locatie_binnenland" type="{http://www.webservices.nl/soap/}LocatieBinnenland" minOccurs="0"/>
- *         <element name="locatie_buitenland" type="{http://www.webservices.nl/soap/}LocatieBuitenland" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Locatie", propOrder = { - -}) -public class Locatie { - - @XmlElement(name = "locatie_binnenland") - protected LocatieBinnenland locatieBinnenland; - @XmlElement(name = "locatie_buitenland") - protected LocatieBuitenland locatieBuitenland; - - /** - * Gets the value of the locatieBinnenland property. - * - * @return - * possible object is - * {@link LocatieBinnenland } - * - */ - public LocatieBinnenland getLocatieBinnenland() { - return locatieBinnenland; - } - - /** - * Sets the value of the locatieBinnenland property. - * - * @param value - * allowed object is - * {@link LocatieBinnenland } - * - */ - public void setLocatieBinnenland(LocatieBinnenland value) { - this.locatieBinnenland = value; - } - - /** - * Gets the value of the locatieBuitenland property. - * - * @return - * possible object is - * {@link LocatieBuitenland } - * - */ - public LocatieBuitenland getLocatieBuitenland() { - return locatieBuitenland; - } - - /** - * Sets the value of the locatieBuitenland property. - * - * @param value - * allowed object is - * {@link LocatieBuitenland } - * - */ - public void setLocatieBuitenland(LocatieBuitenland value) { - this.locatieBuitenland = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenland.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenland.java deleted file mode 100644 index b22911e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenland.java +++ /dev/null @@ -1,199 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LocatieBinnenland complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LocatieBinnenland">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gemeente" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="straatnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="huisletter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LocatieBinnenland", propOrder = { - -}) -public class LocatieBinnenland { - - protected String gemeente; - protected String straatnaam; - protected String postcode; - protected Integer huisnummer; - @XmlElement(name = "huisnummer_toevoeging") - protected String huisnummerToevoeging; - protected String huisletter; - - /** - * Gets the value of the gemeente property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeente() { - return gemeente; - } - - /** - * Sets the value of the gemeente property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeente(String value) { - this.gemeente = value; - } - - /** - * Gets the value of the straatnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStraatnaam() { - return straatnaam; - } - - /** - * Sets the value of the straatnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStraatnaam(String value) { - this.straatnaam = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHuisnummer(Integer value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the huisletter property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisletter() { - return huisletter; - } - - /** - * Sets the value of the huisletter property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisletter(String value) { - this.huisletter = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenlandArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenlandArray.java deleted file mode 100644 index ab9ad69..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenlandArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LocatieBinnenlandArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LocatieBinnenlandArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}LocatieBinnenland" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LocatieBinnenlandArray", propOrder = { - "item" -}) -public class LocatieBinnenlandArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LocatieBinnenland } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenlandLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenlandLijst.java deleted file mode 100644 index 4df953d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBinnenlandLijst.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LocatieBinnenlandLijst complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LocatieBinnenlandLijst">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="locaties_binnenland" type="{http://www.webservices.nl/soap/}LocatieBinnenlandArray"/>
- *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LocatieBinnenlandLijst", propOrder = { - -}) -public class LocatieBinnenlandLijst { - - @XmlElement(name = "locaties_binnenland", required = true) - protected LocatieBinnenlandArray locatiesBinnenland; - @XmlElement(name = "indicatie_compleet") - protected boolean indicatieCompleet; - - /** - * Gets the value of the locatiesBinnenland property. - * - * @return - * possible object is - * {@link LocatieBinnenlandArray } - * - */ - public LocatieBinnenlandArray getLocatiesBinnenland() { - return locatiesBinnenland; - } - - /** - * Sets the value of the locatiesBinnenland property. - * - * @param value - * allowed object is - * {@link LocatieBinnenlandArray } - * - */ - public void setLocatiesBinnenland(LocatieBinnenlandArray value) { - this.locatiesBinnenland = value; - } - - /** - * Gets the value of the indicatieCompleet property. - * - */ - public boolean isIndicatieCompleet() { - return indicatieCompleet; - } - - /** - * Sets the value of the indicatieCompleet property. - * - */ - public void setIndicatieCompleet(boolean value) { - this.indicatieCompleet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBuitenland.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBuitenland.java deleted file mode 100644 index 5dc24f3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LocatieBuitenland.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LocatieBuitenland complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LocatieBuitenland">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="adres_buitenland1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="adres_buitenland2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="adres_buitenland3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="land" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LocatieBuitenland", propOrder = { - -}) -public class LocatieBuitenland { - - @XmlElement(name = "adres_buitenland1") - protected String adresBuitenland1; - @XmlElement(name = "adres_buitenland2") - protected String adresBuitenland2; - @XmlElement(name = "adres_buitenland3") - protected String adresBuitenland3; - protected String land; - - /** - * Gets the value of the adresBuitenland1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAdresBuitenland1() { - return adresBuitenland1; - } - - /** - * Sets the value of the adresBuitenland1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAdresBuitenland1(String value) { - this.adresBuitenland1 = value; - } - - /** - * Gets the value of the adresBuitenland2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAdresBuitenland2() { - return adresBuitenland2; - } - - /** - * Sets the value of the adresBuitenland2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAdresBuitenland2(String value) { - this.adresBuitenland2 = value; - } - - /** - * Gets the value of the adresBuitenland3 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAdresBuitenland3() { - return adresBuitenland3; - } - - /** - * Sets the value of the adresBuitenland3 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAdresBuitenland3(String value) { - this.adresBuitenland3 = value; - } - - /** - * Gets the value of the land property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLand() { - return land; - } - - /** - * Sets the value of the land property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLand(String value) { - this.land = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LoginRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LoginRequestType.java deleted file mode 100644 index ed76068..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LoginRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for loginRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="loginRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="username" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "loginRequestType", propOrder = { - -}) -public class LoginRequestType { - - @XmlElement(required = true) - protected String username; - @XmlElement(required = true) - protected String password; - - /** - * Gets the value of the username property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUsername() { - return username; - } - - /** - * Sets the value of the username property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUsername(String value) { - this.username = value; - } - - /** - * Gets the value of the password property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPassword() { - return password; - } - - /** - * Sets the value of the password property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPassword(String value) { - this.password = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LoginResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LoginResponseType.java deleted file mode 100644 index 1e0d4cb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LoginResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for loginResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="loginResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="reactid" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "loginResponseType", propOrder = { - -}) -public class LoginResponseType { - - @XmlElement(required = true) - protected String reactid; - - /** - * Gets the value of the reactid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReactid() { - return reactid; - } - - /** - * Sets the value of the reactid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReactid(String value) { - this.reactid = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LogoutRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LogoutRequestType.java deleted file mode 100644 index 57c9d07..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LogoutRequestType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for logoutRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="logoutRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "logoutRequestType") -public class LogoutRequestType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LogoutResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LogoutResponseType.java deleted file mode 100644 index 0996fd5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/LogoutResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for logoutResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="logoutResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "logoutResponseType") -public class LogoutResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Mandeligheid.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Mandeligheid.java deleted file mode 100644 index 77a0d81..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Mandeligheid.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Mandeligheid complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Mandeligheid">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="mandelige_percelen" type="{http://www.webservices.nl/soap/}KadastraleAanduidingLijst" minOccurs="0"/>
- *         <element name="hoofd_percelen" type="{http://www.webservices.nl/soap/}KadastraleAanduidingLijst" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Mandeligheid", propOrder = { - -}) -public class Mandeligheid { - - @XmlElement(name = "mandelige_percelen") - protected KadastraleAanduidingLijst mandeligePercelen; - @XmlElement(name = "hoofd_percelen") - protected KadastraleAanduidingLijst hoofdPercelen; - - /** - * Gets the value of the mandeligePercelen property. - * - * @return - * possible object is - * {@link KadastraleAanduidingLijst } - * - */ - public KadastraleAanduidingLijst getMandeligePercelen() { - return mandeligePercelen; - } - - /** - * Sets the value of the mandeligePercelen property. - * - * @param value - * allowed object is - * {@link KadastraleAanduidingLijst } - * - */ - public void setMandeligePercelen(KadastraleAanduidingLijst value) { - this.mandeligePercelen = value; - } - - /** - * Gets the value of the hoofdPercelen property. - * - * @return - * possible object is - * {@link KadastraleAanduidingLijst } - * - */ - public KadastraleAanduidingLijst getHoofdPercelen() { - return hoofdPercelen; - } - - /** - * Sets the value of the hoofdPercelen property. - * - * @param value - * allowed object is - * {@link KadastraleAanduidingLijst } - * - */ - public void setHoofdPercelen(KadastraleAanduidingLijst value) { - this.hoofdPercelen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewInternationalLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewInternationalLatLonRequestType.java deleted file mode 100644 index 71b27a7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewInternationalLatLonRequestType.java +++ /dev/null @@ -1,159 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for mapViewInternationalLatLonRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="mapViewInternationalLatLonRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="width" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="height" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="zoom" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "mapViewInternationalLatLonRequestType", propOrder = { - -}) -public class MapViewInternationalLatLonRequestType { - - protected float latitude; - protected float longitude; - @XmlElement(required = true) - protected String format; - protected int width; - protected int height; - protected float zoom; - - /** - * Gets the value of the latitude property. - * - */ - public float getLatitude() { - return latitude; - } - - /** - * Sets the value of the latitude property. - * - */ - public void setLatitude(float value) { - this.latitude = value; - } - - /** - * Gets the value of the longitude property. - * - */ - public float getLongitude() { - return longitude; - } - - /** - * Sets the value of the longitude property. - * - */ - public void setLongitude(float value) { - this.longitude = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - - /** - * Gets the value of the width property. - * - */ - public int getWidth() { - return width; - } - - /** - * Sets the value of the width property. - * - */ - public void setWidth(int value) { - this.width = value; - } - - /** - * Gets the value of the height property. - * - */ - public int getHeight() { - return height; - } - - /** - * Sets the value of the height property. - * - */ - public void setHeight(int value) { - this.height = value; - } - - /** - * Gets the value of the zoom property. - * - */ - public float getZoom() { - return zoom; - } - - /** - * Sets the value of the zoom property. - * - */ - public void setZoom(float value) { - this.zoom = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewInternationalLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewInternationalLatLonResponseType.java deleted file mode 100644 index 03a1c26..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewInternationalLatLonResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for mapViewInternationalLatLonResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="mapViewInternationalLatLonResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="image" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "mapViewInternationalLatLonResponseType", propOrder = { - -}) -public class MapViewInternationalLatLonResponseType { - - @XmlElement(required = true) - protected byte[] image; - - /** - * Gets the value of the image property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getImage() { - return image; - } - - /** - * Sets the value of the image property. - * - * @param value - * allowed object is - * byte[] - */ - public void setImage(byte[] value) { - this.image = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewLatLonRequestType.java deleted file mode 100644 index 3778d5d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewLatLonRequestType.java +++ /dev/null @@ -1,188 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for mapViewLatLonRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="mapViewLatLonRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="center_lat" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="center_lon" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="extra_latlon" type="{http://www.webservices.nl/soap/}LatLonCoordinatesArray"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="width" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="height" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="zoom" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "mapViewLatLonRequestType", propOrder = { - -}) -public class MapViewLatLonRequestType { - - @XmlElement(name = "center_lat") - protected float centerLat; - @XmlElement(name = "center_lon") - protected float centerLon; - @XmlElement(name = "extra_latlon", required = true) - protected LatLonCoordinatesArray extraLatlon; - @XmlElement(required = true) - protected String format; - protected int width; - protected int height; - protected float zoom; - - /** - * Gets the value of the centerLat property. - * - */ - public float getCenterLat() { - return centerLat; - } - - /** - * Sets the value of the centerLat property. - * - */ - public void setCenterLat(float value) { - this.centerLat = value; - } - - /** - * Gets the value of the centerLon property. - * - */ - public float getCenterLon() { - return centerLon; - } - - /** - * Sets the value of the centerLon property. - * - */ - public void setCenterLon(float value) { - this.centerLon = value; - } - - /** - * Gets the value of the extraLatlon property. - * - * @return - * possible object is - * {@link LatLonCoordinatesArray } - * - */ - public LatLonCoordinatesArray getExtraLatlon() { - return extraLatlon; - } - - /** - * Sets the value of the extraLatlon property. - * - * @param value - * allowed object is - * {@link LatLonCoordinatesArray } - * - */ - public void setExtraLatlon(LatLonCoordinatesArray value) { - this.extraLatlon = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - - /** - * Gets the value of the width property. - * - */ - public int getWidth() { - return width; - } - - /** - * Sets the value of the width property. - * - */ - public void setWidth(int value) { - this.width = value; - } - - /** - * Gets the value of the height property. - * - */ - public int getHeight() { - return height; - } - - /** - * Sets the value of the height property. - * - */ - public void setHeight(int value) { - this.height = value; - } - - /** - * Gets the value of the zoom property. - * - */ - public float getZoom() { - return zoom; - } - - /** - * Sets the value of the zoom property. - * - */ - public void setZoom(float value) { - this.zoom = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewLatLonResponseType.java deleted file mode 100644 index f69084a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewLatLonResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for mapViewLatLonResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="mapViewLatLonResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="image" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "mapViewLatLonResponseType", propOrder = { - -}) -public class MapViewLatLonResponseType { - - @XmlElement(required = true) - protected byte[] image; - - /** - * Gets the value of the image property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getImage() { - return image; - } - - /** - * Sets the value of the image property. - * - * @param value - * allowed object is - * byte[] - */ - public void setImage(byte[] value) { - this.image = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewPostcodeV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewPostcodeV2RequestType.java deleted file mode 100644 index 8499c25..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewPostcodeV2RequestType.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for mapViewPostcodeV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="mapViewPostcodeV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="width" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="height" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="zoom" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "mapViewPostcodeV2RequestType", propOrder = { - -}) -public class MapViewPostcodeV2RequestType { - - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String format; - protected int width; - protected int height; - protected float zoom; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - - /** - * Gets the value of the width property. - * - */ - public int getWidth() { - return width; - } - - /** - * Sets the value of the width property. - * - */ - public void setWidth(int value) { - this.width = value; - } - - /** - * Gets the value of the height property. - * - */ - public int getHeight() { - return height; - } - - /** - * Sets the value of the height property. - * - */ - public void setHeight(int value) { - this.height = value; - } - - /** - * Gets the value of the zoom property. - * - */ - public float getZoom() { - return zoom; - } - - /** - * Sets the value of the zoom property. - * - */ - public void setZoom(float value) { - this.zoom = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewPostcodeV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewPostcodeV2ResponseType.java deleted file mode 100644 index c03a6f1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewPostcodeV2ResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for mapViewPostcodeV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="mapViewPostcodeV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="image" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "mapViewPostcodeV2ResponseType", propOrder = { - -}) -public class MapViewPostcodeV2ResponseType { - - @XmlElement(required = true) - protected byte[] image; - - /** - * Gets the value of the image property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getImage() { - return image; - } - - /** - * Sets the value of the image property. - * - * @param value - * allowed object is - * byte[] - */ - public void setImage(byte[] value) { - this.image = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewRDRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewRDRequestType.java deleted file mode 100644 index 7a95e18..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewRDRequestType.java +++ /dev/null @@ -1,188 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for mapViewRDRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="mapViewRDRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="center_x" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="center_y" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="extra_xy" type="{http://www.webservices.nl/soap/}RDCoordinatesArray"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="width" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="height" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="zoom" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "mapViewRDRequestType", propOrder = { - -}) -public class MapViewRDRequestType { - - @XmlElement(name = "center_x") - protected int centerX; - @XmlElement(name = "center_y") - protected int centerY; - @XmlElement(name = "extra_xy", required = true) - protected RDCoordinatesArray extraXy; - @XmlElement(required = true) - protected String format; - protected int width; - protected int height; - protected float zoom; - - /** - * Gets the value of the centerX property. - * - */ - public int getCenterX() { - return centerX; - } - - /** - * Sets the value of the centerX property. - * - */ - public void setCenterX(int value) { - this.centerX = value; - } - - /** - * Gets the value of the centerY property. - * - */ - public int getCenterY() { - return centerY; - } - - /** - * Sets the value of the centerY property. - * - */ - public void setCenterY(int value) { - this.centerY = value; - } - - /** - * Gets the value of the extraXy property. - * - * @return - * possible object is - * {@link RDCoordinatesArray } - * - */ - public RDCoordinatesArray getExtraXy() { - return extraXy; - } - - /** - * Sets the value of the extraXy property. - * - * @param value - * allowed object is - * {@link RDCoordinatesArray } - * - */ - public void setExtraXy(RDCoordinatesArray value) { - this.extraXy = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - - /** - * Gets the value of the width property. - * - */ - public int getWidth() { - return width; - } - - /** - * Sets the value of the width property. - * - */ - public void setWidth(int value) { - this.width = value; - } - - /** - * Gets the value of the height property. - * - */ - public int getHeight() { - return height; - } - - /** - * Sets the value of the height property. - * - */ - public void setHeight(int value) { - this.height = value; - } - - /** - * Gets the value of the zoom property. - * - */ - public float getZoom() { - return zoom; - } - - /** - * Sets the value of the zoom property. - * - */ - public void setZoom(float value) { - this.zoom = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewRDResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewRDResponseType.java deleted file mode 100644 index fff94be..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MapViewRDResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for mapViewRDResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="mapViewRDResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="image" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "mapViewRDResponseType", propOrder = { - -}) -public class MapViewRDResponseType { - - @XmlElement(required = true) - protected byte[] image; - - /** - * Gets the value of the image property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getImage() { - return image; - } - - /** - * Sets the value of the image property. - * - * @param value - * allowed object is - * byte[] - */ - public void setImage(byte[] value) { - this.image = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaElementDefinition.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaElementDefinition.java deleted file mode 100644 index 3695979..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaElementDefinition.java +++ /dev/null @@ -1,221 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MetaElementDefinition complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MetaElementDefinition">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="documentation_url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="required" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="validations" type="{http://www.webservices.nl/soap/}MetaValidationDefinitionArray" minOccurs="0"/>
- *         <element name="default_value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MetaElementDefinition", propOrder = { - -}) -public class MetaElementDefinition { - - @XmlElement(required = true) - protected String name; - @XmlElement(required = true) - protected String type; - @XmlElement(required = true) - protected String description; - @XmlElement(name = "documentation_url") - protected String documentationUrl; - protected boolean required; - protected MetaValidationDefinitionArray validations; - @XmlElement(name = "default_value") - protected String defaultValue; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the documentationUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocumentationUrl() { - return documentationUrl; - } - - /** - * Sets the value of the documentationUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocumentationUrl(String value) { - this.documentationUrl = value; - } - - /** - * Gets the value of the required property. - * - */ - public boolean isRequired() { - return required; - } - - /** - * Sets the value of the required property. - * - */ - public void setRequired(boolean value) { - this.required = value; - } - - /** - * Gets the value of the validations property. - * - * @return - * possible object is - * {@link MetaValidationDefinitionArray } - * - */ - public MetaValidationDefinitionArray getValidations() { - return validations; - } - - /** - * Sets the value of the validations property. - * - * @param value - * allowed object is - * {@link MetaValidationDefinitionArray } - * - */ - public void setValidations(MetaValidationDefinitionArray value) { - this.validations = value; - } - - /** - * Gets the value of the defaultValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDefaultValue() { - return defaultValue; - } - - /** - * Sets the value of the defaultValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDefaultValue(String value) { - this.defaultValue = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaElementDefinitionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaElementDefinitionArray.java deleted file mode 100644 index e4916ce..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaElementDefinitionArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MetaElementDefinitionArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MetaElementDefinitionArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}MetaElementDefinition" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MetaElementDefinitionArray", propOrder = { - "item" -}) -public class MetaElementDefinitionArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MetaElementDefinition } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetMethodRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetMethodRequestType.java deleted file mode 100644 index 42f0670..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetMethodRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for metaGetMethodRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="metaGetMethodRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="service_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="method_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "metaGetMethodRequestType", propOrder = { - -}) -public class MetaGetMethodRequestType { - - @XmlElement(name = "service_name", required = true) - protected String serviceName; - @XmlElement(name = "method_name", required = true) - protected String methodName; - - /** - * Gets the value of the serviceName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getServiceName() { - return serviceName; - } - - /** - * Sets the value of the serviceName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setServiceName(String value) { - this.serviceName = value; - } - - /** - * Gets the value of the methodName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMethodName() { - return methodName; - } - - /** - * Sets the value of the methodName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMethodName(String value) { - this.methodName = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetMethodResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetMethodResponseType.java deleted file mode 100644 index aa86dac..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetMethodResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for metaGetMethodResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="metaGetMethodResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}MetaMethodDefinition"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "metaGetMethodResponseType", propOrder = { - -}) -public class MetaGetMethodResponseType { - - @XmlElement(required = true) - protected MetaMethodDefinition out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link MetaMethodDefinition } - * - */ - public MetaMethodDefinition getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link MetaMethodDefinition } - * - */ - public void setOut(MetaMethodDefinition value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServiceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServiceRequestType.java deleted file mode 100644 index 9bcc1cf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServiceRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for metaGetServiceRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="metaGetServiceRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="service_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "metaGetServiceRequestType", propOrder = { - -}) -public class MetaGetServiceRequestType { - - @XmlElement(name = "service_name", required = true) - protected String serviceName; - - /** - * Gets the value of the serviceName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getServiceName() { - return serviceName; - } - - /** - * Sets the value of the serviceName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setServiceName(String value) { - this.serviceName = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServiceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServiceResponseType.java deleted file mode 100644 index 7a54076..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServiceResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for metaGetServiceResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="metaGetServiceResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}MetaServiceDefinition"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "metaGetServiceResponseType", propOrder = { - -}) -public class MetaGetServiceResponseType { - - @XmlElement(required = true) - protected MetaServiceDefinition out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link MetaServiceDefinition } - * - */ - public MetaServiceDefinition getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link MetaServiceDefinition } - * - */ - public void setOut(MetaServiceDefinition value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServicesRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServicesRequestType.java deleted file mode 100644 index fdc1474..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServicesRequestType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for metaGetServicesRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="metaGetServicesRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "metaGetServicesRequestType") -public class MetaGetServicesRequestType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServicesResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServicesResponseType.java deleted file mode 100644 index 3f6e996..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaGetServicesResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for metaGetServicesResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="metaGetServicesResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}MetaServiceReferenceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "metaGetServicesResponseType", propOrder = { - -}) -public class MetaGetServicesResponseType { - - @XmlElement(required = true) - protected MetaServiceReferenceArray out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link MetaServiceReferenceArray } - * - */ - public MetaServiceReferenceArray getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link MetaServiceReferenceArray } - * - */ - public void setOut(MetaServiceReferenceArray value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodDefinition.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodDefinition.java deleted file mode 100644 index 6dc4fb3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodDefinition.java +++ /dev/null @@ -1,294 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MetaMethodDefinition complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MetaMethodDefinition">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="service_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="deprecated" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="latest" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="documentation" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="documentation_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="input_elements" type="{http://www.webservices.nl/soap/}MetaElementDefinitionArray" minOccurs="0"/>
- *         <element name="output_elements" type="{http://www.webservices.nl/soap/}MetaElementDefinitionArray" minOccurs="0"/>
- *         <element name="related_methods" type="{http://www.webservices.nl/soap/}MetaMethodReferenceArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MetaMethodDefinition", propOrder = { - -}) -public class MetaMethodDefinition { - - @XmlElement(required = true) - protected String name; - @XmlElement(name = "service_name", required = true) - protected String serviceName; - protected boolean deprecated; - protected boolean latest; - @XmlElement(required = true) - protected String description; - @XmlElement(required = true) - protected String documentation; - @XmlElement(name = "documentation_url", required = true) - protected String documentationUrl; - @XmlElement(name = "input_elements") - protected MetaElementDefinitionArray inputElements; - @XmlElement(name = "output_elements") - protected MetaElementDefinitionArray outputElements; - @XmlElement(name = "related_methods") - protected MetaMethodReferenceArray relatedMethods; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the serviceName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getServiceName() { - return serviceName; - } - - /** - * Sets the value of the serviceName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setServiceName(String value) { - this.serviceName = value; - } - - /** - * Gets the value of the deprecated property. - * - */ - public boolean isDeprecated() { - return deprecated; - } - - /** - * Sets the value of the deprecated property. - * - */ - public void setDeprecated(boolean value) { - this.deprecated = value; - } - - /** - * Gets the value of the latest property. - * - */ - public boolean isLatest() { - return latest; - } - - /** - * Sets the value of the latest property. - * - */ - public void setLatest(boolean value) { - this.latest = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the documentation property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocumentation() { - return documentation; - } - - /** - * Sets the value of the documentation property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocumentation(String value) { - this.documentation = value; - } - - /** - * Gets the value of the documentationUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocumentationUrl() { - return documentationUrl; - } - - /** - * Sets the value of the documentationUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocumentationUrl(String value) { - this.documentationUrl = value; - } - - /** - * Gets the value of the inputElements property. - * - * @return - * possible object is - * {@link MetaElementDefinitionArray } - * - */ - public MetaElementDefinitionArray getInputElements() { - return inputElements; - } - - /** - * Sets the value of the inputElements property. - * - * @param value - * allowed object is - * {@link MetaElementDefinitionArray } - * - */ - public void setInputElements(MetaElementDefinitionArray value) { - this.inputElements = value; - } - - /** - * Gets the value of the outputElements property. - * - * @return - * possible object is - * {@link MetaElementDefinitionArray } - * - */ - public MetaElementDefinitionArray getOutputElements() { - return outputElements; - } - - /** - * Sets the value of the outputElements property. - * - * @param value - * allowed object is - * {@link MetaElementDefinitionArray } - * - */ - public void setOutputElements(MetaElementDefinitionArray value) { - this.outputElements = value; - } - - /** - * Gets the value of the relatedMethods property. - * - * @return - * possible object is - * {@link MetaMethodReferenceArray } - * - */ - public MetaMethodReferenceArray getRelatedMethods() { - return relatedMethods; - } - - /** - * Sets the value of the relatedMethods property. - * - * @param value - * allowed object is - * {@link MetaMethodReferenceArray } - * - */ - public void setRelatedMethods(MetaMethodReferenceArray value) { - this.relatedMethods = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodDefinitionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodDefinitionArray.java deleted file mode 100644 index fb78c16..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodDefinitionArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MetaMethodDefinitionArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MetaMethodDefinitionArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}MetaMethodDefinition" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MetaMethodDefinitionArray", propOrder = { - "item" -}) -public class MetaMethodDefinitionArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MetaMethodDefinition } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodReference.java deleted file mode 100644 index a012f76..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodReference.java +++ /dev/null @@ -1,158 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MetaMethodReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MetaMethodReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="deprecated" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="latest" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="documentation_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MetaMethodReference", propOrder = { - -}) -public class MetaMethodReference { - - @XmlElement(required = true) - protected String name; - protected boolean deprecated; - protected boolean latest; - protected String description; - @XmlElement(name = "documentation_url", required = true) - protected String documentationUrl; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the deprecated property. - * - */ - public boolean isDeprecated() { - return deprecated; - } - - /** - * Sets the value of the deprecated property. - * - */ - public void setDeprecated(boolean value) { - this.deprecated = value; - } - - /** - * Gets the value of the latest property. - * - */ - public boolean isLatest() { - return latest; - } - - /** - * Sets the value of the latest property. - * - */ - public void setLatest(boolean value) { - this.latest = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the documentationUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocumentationUrl() { - return documentationUrl; - } - - /** - * Sets the value of the documentationUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocumentationUrl(String value) { - this.documentationUrl = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodReferenceArray.java deleted file mode 100644 index ae88f0e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaMethodReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MetaMethodReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MetaMethodReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}MetaMethodReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MetaMethodReferenceArray", propOrder = { - "item" -}) -public class MetaMethodReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MetaMethodReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaProtocolDefinition.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaProtocolDefinition.java deleted file mode 100644 index 7bb9dca..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaProtocolDefinition.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MetaProtocolDefinition complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MetaProtocolDefinition">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="documentation_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="location" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MetaProtocolDefinition", propOrder = { - -}) -public class MetaProtocolDefinition { - - @XmlElement(name = "documentation_url", required = true) - protected String documentationUrl; - @XmlElement(required = true) - protected String location; - @XmlElement(required = true) - protected String type; - - /** - * Gets the value of the documentationUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocumentationUrl() { - return documentationUrl; - } - - /** - * Sets the value of the documentationUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocumentationUrl(String value) { - this.documentationUrl = value; - } - - /** - * Gets the value of the location property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLocation() { - return location; - } - - /** - * Sets the value of the location property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLocation(String value) { - this.location = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaProtocolDefinitionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaProtocolDefinitionArray.java deleted file mode 100644 index 20a360b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaProtocolDefinitionArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MetaProtocolDefinitionArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MetaProtocolDefinitionArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}MetaProtocolDefinition" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MetaProtocolDefinitionArray", propOrder = { - "item" -}) -public class MetaProtocolDefinitionArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MetaProtocolDefinition } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceDefinition.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceDefinition.java deleted file mode 100644 index c89f081..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceDefinition.java +++ /dev/null @@ -1,227 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MetaServiceDefinition complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MetaServiceDefinition">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="documentation_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="methods" type="{http://www.webservices.nl/soap/}MetaMethodReferenceArray" minOccurs="0"/>
- *         <element name="protocols" type="{http://www.webservices.nl/soap/}MetaProtocolDefinitionArray" minOccurs="0"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MetaServiceDefinition", propOrder = { - -}) -public class MetaServiceDefinition { - - @XmlElement(required = true) - protected String name; - @XmlElement(required = true) - protected String category; - protected String description; - @XmlElement(name = "documentation_url", required = true) - protected String documentationUrl; - protected MetaMethodReferenceArray methods; - protected MetaProtocolDefinitionArray protocols; - protected String status; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the category property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCategory() { - return category; - } - - /** - * Sets the value of the category property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCategory(String value) { - this.category = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the documentationUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocumentationUrl() { - return documentationUrl; - } - - /** - * Sets the value of the documentationUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocumentationUrl(String value) { - this.documentationUrl = value; - } - - /** - * Gets the value of the methods property. - * - * @return - * possible object is - * {@link MetaMethodReferenceArray } - * - */ - public MetaMethodReferenceArray getMethods() { - return methods; - } - - /** - * Sets the value of the methods property. - * - * @param value - * allowed object is - * {@link MetaMethodReferenceArray } - * - */ - public void setMethods(MetaMethodReferenceArray value) { - this.methods = value; - } - - /** - * Gets the value of the protocols property. - * - * @return - * possible object is - * {@link MetaProtocolDefinitionArray } - * - */ - public MetaProtocolDefinitionArray getProtocols() { - return protocols; - } - - /** - * Sets the value of the protocols property. - * - * @param value - * allowed object is - * {@link MetaProtocolDefinitionArray } - * - */ - public void setProtocols(MetaProtocolDefinitionArray value) { - this.protocols = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceDefinitionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceDefinitionArray.java deleted file mode 100644 index 62fc554..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceDefinitionArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MetaServiceDefinitionArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MetaServiceDefinitionArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}MetaServiceDefinition" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MetaServiceDefinitionArray", propOrder = { - "item" -}) -public class MetaServiceDefinitionArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MetaServiceDefinition } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceReference.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceReference.java deleted file mode 100644 index 9129b26..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceReference.java +++ /dev/null @@ -1,176 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MetaServiceReference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MetaServiceReference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="documentation_url" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MetaServiceReference", propOrder = { - -}) -public class MetaServiceReference { - - @XmlElement(required = true) - protected String name; - @XmlElement(required = true) - protected String category; - protected String description; - @XmlElement(name = "documentation_url", required = true) - protected String documentationUrl; - @XmlElement(required = true) - protected String status; - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the category property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCategory() { - return category; - } - - /** - * Sets the value of the category property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCategory(String value) { - this.category = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the documentationUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDocumentationUrl() { - return documentationUrl; - } - - /** - * Sets the value of the documentationUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDocumentationUrl(String value) { - this.documentationUrl = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceReferenceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceReferenceArray.java deleted file mode 100644 index 753bffc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaServiceReferenceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MetaServiceReferenceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MetaServiceReferenceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}MetaServiceReference" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MetaServiceReferenceArray", propOrder = { - "item" -}) -public class MetaServiceReferenceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MetaServiceReference } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaValidationDefinition.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaValidationDefinition.java deleted file mode 100644 index e17823c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaValidationDefinition.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MetaValidationDefinition complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MetaValidationDefinition">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MetaValidationDefinition", propOrder = { - -}) -public class MetaValidationDefinition { - - @XmlElement(required = true) - protected String type; - @XmlElement(required = true) - protected String value; - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaValidationDefinitionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaValidationDefinitionArray.java deleted file mode 100644 index b7b06a1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/MetaValidationDefinitionArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MetaValidationDefinitionArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MetaValidationDefinitionArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}MetaValidationDefinition" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MetaValidationDefinitionArray", propOrder = { - "item" -}) -public class MetaValidationDefinitionArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MetaValidationDefinition } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NatuurlijkPersoon.java deleted file mode 100644 index 56ec7c1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NatuurlijkPersoon.java +++ /dev/null @@ -1,322 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for NatuurlijkPersoon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NatuurlijkPersoon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="voorvoegsel_geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="voornamen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="geslacht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="geboorteplaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="geboortedatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="datum_overlijden" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="indicatie_overleden" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indicatie_conform_gba" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="relatie_partnerid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="omschrijving_relatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NatuurlijkPersoon", propOrder = { - -}) -public class NatuurlijkPersoon { - - protected String geslachtsnaam; - @XmlElement(name = "voorvoegsel_geslachtsnaam") - protected String voorvoegselGeslachtsnaam; - protected String voornamen; - protected String geslacht; - protected String geboorteplaats; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar geboortedatum; - @XmlElement(name = "datum_overlijden") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar datumOverlijden; - @XmlElement(name = "indicatie_overleden") - protected boolean indicatieOverleden; - @XmlElement(name = "indicatie_conform_gba") - protected boolean indicatieConformGba; - @XmlElement(name = "relatie_partnerid") - protected String relatiePartnerid; - @XmlElement(name = "omschrijving_relatie") - protected String omschrijvingRelatie; - - /** - * Gets the value of the geslachtsnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeslachtsnaam() { - return geslachtsnaam; - } - - /** - * Sets the value of the geslachtsnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeslachtsnaam(String value) { - this.geslachtsnaam = value; - } - - /** - * Gets the value of the voorvoegselGeslachtsnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVoorvoegselGeslachtsnaam() { - return voorvoegselGeslachtsnaam; - } - - /** - * Sets the value of the voorvoegselGeslachtsnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVoorvoegselGeslachtsnaam(String value) { - this.voorvoegselGeslachtsnaam = value; - } - - /** - * Gets the value of the voornamen property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVoornamen() { - return voornamen; - } - - /** - * Sets the value of the voornamen property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVoornamen(String value) { - this.voornamen = value; - } - - /** - * Gets the value of the geslacht property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeslacht() { - return geslacht; - } - - /** - * Sets the value of the geslacht property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeslacht(String value) { - this.geslacht = value; - } - - /** - * Gets the value of the geboorteplaats property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeboorteplaats() { - return geboorteplaats; - } - - /** - * Sets the value of the geboorteplaats property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeboorteplaats(String value) { - this.geboorteplaats = value; - } - - /** - * Gets the value of the geboortedatum property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGeboortedatum() { - return geboortedatum; - } - - /** - * Sets the value of the geboortedatum property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGeboortedatum(XMLGregorianCalendar value) { - this.geboortedatum = value; - } - - /** - * Gets the value of the datumOverlijden property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDatumOverlijden() { - return datumOverlijden; - } - - /** - * Sets the value of the datumOverlijden property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDatumOverlijden(XMLGregorianCalendar value) { - this.datumOverlijden = value; - } - - /** - * Gets the value of the indicatieOverleden property. - * - */ - public boolean isIndicatieOverleden() { - return indicatieOverleden; - } - - /** - * Sets the value of the indicatieOverleden property. - * - */ - public void setIndicatieOverleden(boolean value) { - this.indicatieOverleden = value; - } - - /** - * Gets the value of the indicatieConformGba property. - * - */ - public boolean isIndicatieConformGba() { - return indicatieConformGba; - } - - /** - * Sets the value of the indicatieConformGba property. - * - */ - public void setIndicatieConformGba(boolean value) { - this.indicatieConformGba = value; - } - - /** - * Gets the value of the relatiePartnerid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRelatiePartnerid() { - return relatiePartnerid; - } - - /** - * Sets the value of the relatiePartnerid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRelatiePartnerid(String value) { - this.relatiePartnerid = value; - } - - /** - * Gets the value of the omschrijvingRelatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijvingRelatie() { - return omschrijvingRelatie; - } - - /** - * Sets the value of the omschrijvingRelatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijvingRelatie(String value) { - this.omschrijvingRelatie = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NatuurlijkPersoonV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NatuurlijkPersoonV2.java deleted file mode 100644 index b6d5d55..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NatuurlijkPersoonV2.java +++ /dev/null @@ -1,376 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for NatuurlijkPersoonV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NatuurlijkPersoonV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="adellijke_titel_geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="voorvoegsel_geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="adellijke_titel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="voornamen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="geslacht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="geboorteplaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="geboortedatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="datum_overlijden" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="indicatie_overleden" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indicatie_conform_gba" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="relatie_partnerid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="omschrijving_relatie" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NatuurlijkPersoonV2", propOrder = { - -}) -public class NatuurlijkPersoonV2 { - - @XmlElement(name = "adellijke_titel_geslachtsnaam") - protected String adellijkeTitelGeslachtsnaam; - protected String geslachtsnaam; - @XmlElement(name = "voorvoegsel_geslachtsnaam") - protected String voorvoegselGeslachtsnaam; - @XmlElement(name = "adellijke_titel") - protected String adellijkeTitel; - protected String voornamen; - protected String geslacht; - protected String geboorteplaats; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar geboortedatum; - @XmlElement(name = "datum_overlijden") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar datumOverlijden; - @XmlElement(name = "indicatie_overleden") - protected boolean indicatieOverleden; - @XmlElement(name = "indicatie_conform_gba") - protected boolean indicatieConformGba; - @XmlElement(name = "relatie_partnerid") - protected String relatiePartnerid; - @XmlElement(name = "omschrijving_relatie") - protected String omschrijvingRelatie; - - /** - * Gets the value of the adellijkeTitelGeslachtsnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAdellijkeTitelGeslachtsnaam() { - return adellijkeTitelGeslachtsnaam; - } - - /** - * Sets the value of the adellijkeTitelGeslachtsnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAdellijkeTitelGeslachtsnaam(String value) { - this.adellijkeTitelGeslachtsnaam = value; - } - - /** - * Gets the value of the geslachtsnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeslachtsnaam() { - return geslachtsnaam; - } - - /** - * Sets the value of the geslachtsnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeslachtsnaam(String value) { - this.geslachtsnaam = value; - } - - /** - * Gets the value of the voorvoegselGeslachtsnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVoorvoegselGeslachtsnaam() { - return voorvoegselGeslachtsnaam; - } - - /** - * Sets the value of the voorvoegselGeslachtsnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVoorvoegselGeslachtsnaam(String value) { - this.voorvoegselGeslachtsnaam = value; - } - - /** - * Gets the value of the adellijkeTitel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAdellijkeTitel() { - return adellijkeTitel; - } - - /** - * Sets the value of the adellijkeTitel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAdellijkeTitel(String value) { - this.adellijkeTitel = value; - } - - /** - * Gets the value of the voornamen property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVoornamen() { - return voornamen; - } - - /** - * Sets the value of the voornamen property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVoornamen(String value) { - this.voornamen = value; - } - - /** - * Gets the value of the geslacht property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeslacht() { - return geslacht; - } - - /** - * Sets the value of the geslacht property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeslacht(String value) { - this.geslacht = value; - } - - /** - * Gets the value of the geboorteplaats property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeboorteplaats() { - return geboorteplaats; - } - - /** - * Sets the value of the geboorteplaats property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeboorteplaats(String value) { - this.geboorteplaats = value; - } - - /** - * Gets the value of the geboortedatum property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getGeboortedatum() { - return geboortedatum; - } - - /** - * Sets the value of the geboortedatum property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setGeboortedatum(XMLGregorianCalendar value) { - this.geboortedatum = value; - } - - /** - * Gets the value of the datumOverlijden property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDatumOverlijden() { - return datumOverlijden; - } - - /** - * Sets the value of the datumOverlijden property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDatumOverlijden(XMLGregorianCalendar value) { - this.datumOverlijden = value; - } - - /** - * Gets the value of the indicatieOverleden property. - * - */ - public boolean isIndicatieOverleden() { - return indicatieOverleden; - } - - /** - * Sets the value of the indicatieOverleden property. - * - */ - public void setIndicatieOverleden(boolean value) { - this.indicatieOverleden = value; - } - - /** - * Gets the value of the indicatieConformGba property. - * - */ - public boolean isIndicatieConformGba() { - return indicatieConformGba; - } - - /** - * Sets the value of the indicatieConformGba property. - * - */ - public void setIndicatieConformGba(boolean value) { - this.indicatieConformGba = value; - } - - /** - * Gets the value of the relatiePartnerid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRelatiePartnerid() { - return relatiePartnerid; - } - - /** - * Sets the value of the relatiePartnerid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRelatiePartnerid(String value) { - this.relatiePartnerid = value; - } - - /** - * Gets the value of the omschrijvingRelatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijvingRelatie() { - return omschrijvingRelatie; - } - - /** - * Sets the value of the omschrijvingRelatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijvingRelatie(String value) { - this.omschrijvingRelatie = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoEstimateValueRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoEstimateValueRequestType.java deleted file mode 100644 index a078e24..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoEstimateValueRequestType.java +++ /dev/null @@ -1,204 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for nbwoEstimateValueRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="nbwoEstimateValueRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="prijspeil_datum" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="woningtype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="inhoud" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="grootte" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "nbwoEstimateValueRequestType", propOrder = { - -}) -public class NbwoEstimateValueRequestType { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - @XmlElement(name = "prijspeil_datum", required = true) - protected String prijspeilDatum; - @XmlElement(required = true) - protected String woningtype; - protected int inhoud; - protected int grootte; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the prijspeilDatum property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrijspeilDatum() { - return prijspeilDatum; - } - - /** - * Sets the value of the prijspeilDatum property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrijspeilDatum(String value) { - this.prijspeilDatum = value; - } - - /** - * Gets the value of the woningtype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWoningtype() { - return woningtype; - } - - /** - * Sets the value of the woningtype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWoningtype(String value) { - this.woningtype = value; - } - - /** - * Gets the value of the inhoud property. - * - */ - public int getInhoud() { - return inhoud; - } - - /** - * Sets the value of the inhoud property. - * - */ - public void setInhoud(int value) { - this.inhoud = value; - } - - /** - * Gets the value of the grootte property. - * - */ - public int getGrootte() { - return grootte; - } - - /** - * Sets the value of the grootte property. - * - */ - public void setGrootte(int value) { - this.grootte = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoEstimateValueResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoEstimateValueResponseType.java deleted file mode 100644 index b448ba4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoEstimateValueResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for nbwoEstimateValueResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="nbwoEstimateValueResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}NbwoWaarde"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "nbwoEstimateValueResponseType", propOrder = { - -}) -public class NbwoEstimateValueResponseType { - - @XmlElement(required = true) - protected NbwoWaarde out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link NbwoWaarde } - * - */ - public NbwoWaarde getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link NbwoWaarde } - * - */ - public void setOut(NbwoWaarde value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoKenmerkenModelResultaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoKenmerkenModelResultaat.java deleted file mode 100644 index 5d25485..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoKenmerkenModelResultaat.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for NbwoKenmerkenModelResultaat complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NbwoKenmerkenModelResultaat">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="waarde" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="betrouwbaarheid" type="{http://www.w3.org/2001/XMLSchema}double"/>
- *         <element name="aantal" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NbwoKenmerkenModelResultaat", propOrder = { - -}) -public class NbwoKenmerkenModelResultaat { - - protected int waarde; - protected double betrouwbaarheid; - protected int aantal; - - /** - * Gets the value of the waarde property. - * - */ - public int getWaarde() { - return waarde; - } - - /** - * Sets the value of the waarde property. - * - */ - public void setWaarde(int value) { - this.waarde = value; - } - - /** - * Gets the value of the betrouwbaarheid property. - * - */ - public double getBetrouwbaarheid() { - return betrouwbaarheid; - } - - /** - * Sets the value of the betrouwbaarheid property. - * - */ - public void setBetrouwbaarheid(double value) { - this.betrouwbaarheid = value; - } - - /** - * Gets the value of the aantal property. - * - */ - public int getAantal() { - return aantal; - } - - /** - * Sets the value of the aantal property. - * - */ - public void setAantal(int value) { - this.aantal = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoPostcodeStraatModelResultaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoPostcodeStraatModelResultaat.java deleted file mode 100644 index 626d794..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoPostcodeStraatModelResultaat.java +++ /dev/null @@ -1,207 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for NbwoPostcodeStraatModelResultaat complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NbwoPostcodeStraatModelResultaat">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="waarde" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="aantal" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="standaard_deviatie" type="{http://www.w3.org/2001/XMLSchema}double"/>
- *         <element name="straat" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="plaats" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="datum_van" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="waardeverdelingen" type="{http://www.webservices.nl/soap/}NbwoWaardeVerdelingArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NbwoPostcodeStraatModelResultaat", propOrder = { - -}) -public class NbwoPostcodeStraatModelResultaat { - - protected int waarde; - protected int aantal; - @XmlElement(name = "standaard_deviatie") - protected double standaardDeviatie; - @XmlElement(required = true) - protected String straat; - @XmlElement(required = true) - protected String plaats; - @XmlElement(name = "datum_van", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar datumVan; - protected NbwoWaardeVerdelingArray waardeverdelingen; - - /** - * Gets the value of the waarde property. - * - */ - public int getWaarde() { - return waarde; - } - - /** - * Sets the value of the waarde property. - * - */ - public void setWaarde(int value) { - this.waarde = value; - } - - /** - * Gets the value of the aantal property. - * - */ - public int getAantal() { - return aantal; - } - - /** - * Sets the value of the aantal property. - * - */ - public void setAantal(int value) { - this.aantal = value; - } - - /** - * Gets the value of the standaardDeviatie property. - * - */ - public double getStandaardDeviatie() { - return standaardDeviatie; - } - - /** - * Sets the value of the standaardDeviatie property. - * - */ - public void setStandaardDeviatie(double value) { - this.standaardDeviatie = value; - } - - /** - * Gets the value of the straat property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStraat() { - return straat; - } - - /** - * Sets the value of the straat property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStraat(String value) { - this.straat = value; - } - - /** - * Gets the value of the plaats property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaats() { - return plaats; - } - - /** - * Sets the value of the plaats property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaats(String value) { - this.plaats = value; - } - - /** - * Gets the value of the datumVan property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDatumVan() { - return datumVan; - } - - /** - * Sets the value of the datumVan property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDatumVan(XMLGregorianCalendar value) { - this.datumVan = value; - } - - /** - * Gets the value of the waardeverdelingen property. - * - * @return - * possible object is - * {@link NbwoWaardeVerdelingArray } - * - */ - public NbwoWaardeVerdelingArray getWaardeverdelingen() { - return waardeverdelingen; - } - - /** - * Sets the value of the waardeverdelingen property. - * - * @param value - * allowed object is - * {@link NbwoWaardeVerdelingArray } - * - */ - public void setWaardeverdelingen(NbwoWaardeVerdelingArray value) { - this.waardeverdelingen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoVorigeVerkoopModelResultaat.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoVorigeVerkoopModelResultaat.java deleted file mode 100644 index 4fa769e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoVorigeVerkoopModelResultaat.java +++ /dev/null @@ -1,181 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for NbwoVorigeVerkoopModelResultaat complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NbwoVorigeVerkoopModelResultaat">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="vorige_verkoop_datum" type="{http://www.w3.org/2001/XMLSchema}date"/>
- *         <element name="koopsom" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="vorige_verkoop_waarde" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NbwoVorigeVerkoopModelResultaat", propOrder = { - -}) -public class NbwoVorigeVerkoopModelResultaat { - - @XmlElement(required = true) - protected String postcode; - protected int huisnummer; - @XmlElement(name = "huisnummer_toevoeging", required = true) - protected String huisnummerToevoeging; - @XmlElement(name = "vorige_verkoop_datum", required = true) - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar vorigeVerkoopDatum; - protected int koopsom; - @XmlElement(name = "vorige_verkoop_waarde") - protected int vorigeVerkoopWaarde; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the huisnummer property. - * - */ - public int getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - */ - public void setHuisnummer(int value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the vorigeVerkoopDatum property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVorigeVerkoopDatum() { - return vorigeVerkoopDatum; - } - - /** - * Sets the value of the vorigeVerkoopDatum property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVorigeVerkoopDatum(XMLGregorianCalendar value) { - this.vorigeVerkoopDatum = value; - } - - /** - * Gets the value of the koopsom property. - * - */ - public int getKoopsom() { - return koopsom; - } - - /** - * Sets the value of the koopsom property. - * - */ - public void setKoopsom(int value) { - this.koopsom = value; - } - - /** - * Gets the value of the vorigeVerkoopWaarde property. - * - */ - public int getVorigeVerkoopWaarde() { - return vorigeVerkoopWaarde; - } - - /** - * Sets the value of the vorigeVerkoopWaarde property. - * - */ - public void setVorigeVerkoopWaarde(int value) { - this.vorigeVerkoopWaarde = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaarde.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaarde.java deleted file mode 100644 index bc07028..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaarde.java +++ /dev/null @@ -1,644 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for NbwoWaarde complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NbwoWaarde">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="waarde" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="betrouwbaarheid" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="datum_waardebepaling" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="cultuurcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="woningtype" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="prijspeil_datum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="straat" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="huisnummer" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="huisnummer_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="plaats" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="oppervlak" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="inhoud" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="bouwjaar" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="grootte" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="garage" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="tuin" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="monument" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="schuur" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="postcode_model_resultaat" type="{http://www.webservices.nl/soap/}NbwoPostcodeStraatModelResultaat" minOccurs="0"/>
- *         <element name="straat_model_resultaat" type="{http://www.webservices.nl/soap/}NbwoPostcodeStraatModelResultaat" minOccurs="0"/>
- *         <element name="vorige_verkoop_model_resultaat" type="{http://www.webservices.nl/soap/}NbwoVorigeVerkoopModelResultaat" minOccurs="0"/>
- *         <element name="kenmerken_model_resultaat" type="{http://www.webservices.nl/soap/}NbwoKenmerkenModelResultaat" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NbwoWaarde", propOrder = { - -}) -public class NbwoWaarde { - - protected int waarde; - @XmlElement(required = true) - protected String betrouwbaarheid; - @XmlElement(name = "datum_waardebepaling") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar datumWaardebepaling; - protected String cultuurcode; - protected String woningtype; - @XmlElement(name = "prijspeil_datum") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar prijspeilDatum; - protected String straat; - protected Integer huisnummer; - @XmlElement(name = "huisnummer_toevoeging") - protected String huisnummerToevoeging; - protected String postcode; - protected String plaats; - protected Integer oppervlak; - protected Integer inhoud; - protected Integer bouwjaar; - protected Integer grootte; - protected Boolean garage; - protected Boolean tuin; - protected Boolean monument; - protected Boolean schuur; - @XmlElement(name = "postcode_model_resultaat") - protected NbwoPostcodeStraatModelResultaat postcodeModelResultaat; - @XmlElement(name = "straat_model_resultaat") - protected NbwoPostcodeStraatModelResultaat straatModelResultaat; - @XmlElement(name = "vorige_verkoop_model_resultaat") - protected NbwoVorigeVerkoopModelResultaat vorigeVerkoopModelResultaat; - @XmlElement(name = "kenmerken_model_resultaat") - protected NbwoKenmerkenModelResultaat kenmerkenModelResultaat; - - /** - * Gets the value of the waarde property. - * - */ - public int getWaarde() { - return waarde; - } - - /** - * Sets the value of the waarde property. - * - */ - public void setWaarde(int value) { - this.waarde = value; - } - - /** - * Gets the value of the betrouwbaarheid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetrouwbaarheid() { - return betrouwbaarheid; - } - - /** - * Sets the value of the betrouwbaarheid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetrouwbaarheid(String value) { - this.betrouwbaarheid = value; - } - - /** - * Gets the value of the datumWaardebepaling property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDatumWaardebepaling() { - return datumWaardebepaling; - } - - /** - * Sets the value of the datumWaardebepaling property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDatumWaardebepaling(XMLGregorianCalendar value) { - this.datumWaardebepaling = value; - } - - /** - * Gets the value of the cultuurcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCultuurcode() { - return cultuurcode; - } - - /** - * Sets the value of the cultuurcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCultuurcode(String value) { - this.cultuurcode = value; - } - - /** - * Gets the value of the woningtype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWoningtype() { - return woningtype; - } - - /** - * Sets the value of the woningtype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWoningtype(String value) { - this.woningtype = value; - } - - /** - * Gets the value of the prijspeilDatum property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getPrijspeilDatum() { - return prijspeilDatum; - } - - /** - * Sets the value of the prijspeilDatum property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setPrijspeilDatum(XMLGregorianCalendar value) { - this.prijspeilDatum = value; - } - - /** - * Gets the value of the straat property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStraat() { - return straat; - } - - /** - * Sets the value of the straat property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStraat(String value) { - this.straat = value; - } - - /** - * Gets the value of the huisnummer property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHuisnummer() { - return huisnummer; - } - - /** - * Sets the value of the huisnummer property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHuisnummer(Integer value) { - this.huisnummer = value; - } - - /** - * Gets the value of the huisnummerToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnummerToevoeging() { - return huisnummerToevoeging; - } - - /** - * Sets the value of the huisnummerToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnummerToevoeging(String value) { - this.huisnummerToevoeging = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the plaats property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaats() { - return plaats; - } - - /** - * Sets the value of the plaats property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaats(String value) { - this.plaats = value; - } - - /** - * Gets the value of the oppervlak property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOppervlak() { - return oppervlak; - } - - /** - * Sets the value of the oppervlak property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOppervlak(Integer value) { - this.oppervlak = value; - } - - /** - * Gets the value of the inhoud property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getInhoud() { - return inhoud; - } - - /** - * Sets the value of the inhoud property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setInhoud(Integer value) { - this.inhoud = value; - } - - /** - * Gets the value of the bouwjaar property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getBouwjaar() { - return bouwjaar; - } - - /** - * Sets the value of the bouwjaar property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setBouwjaar(Integer value) { - this.bouwjaar = value; - } - - /** - * Gets the value of the grootte property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getGrootte() { - return grootte; - } - - /** - * Sets the value of the grootte property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setGrootte(Integer value) { - this.grootte = value; - } - - /** - * Gets the value of the garage property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isGarage() { - return garage; - } - - /** - * Sets the value of the garage property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setGarage(Boolean value) { - this.garage = value; - } - - /** - * Gets the value of the tuin property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isTuin() { - return tuin; - } - - /** - * Sets the value of the tuin property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setTuin(Boolean value) { - this.tuin = value; - } - - /** - * Gets the value of the monument property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isMonument() { - return monument; - } - - /** - * Sets the value of the monument property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setMonument(Boolean value) { - this.monument = value; - } - - /** - * Gets the value of the schuur property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isSchuur() { - return schuur; - } - - /** - * Sets the value of the schuur property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setSchuur(Boolean value) { - this.schuur = value; - } - - /** - * Gets the value of the postcodeModelResultaat property. - * - * @return - * possible object is - * {@link NbwoPostcodeStraatModelResultaat } - * - */ - public NbwoPostcodeStraatModelResultaat getPostcodeModelResultaat() { - return postcodeModelResultaat; - } - - /** - * Sets the value of the postcodeModelResultaat property. - * - * @param value - * allowed object is - * {@link NbwoPostcodeStraatModelResultaat } - * - */ - public void setPostcodeModelResultaat(NbwoPostcodeStraatModelResultaat value) { - this.postcodeModelResultaat = value; - } - - /** - * Gets the value of the straatModelResultaat property. - * - * @return - * possible object is - * {@link NbwoPostcodeStraatModelResultaat } - * - */ - public NbwoPostcodeStraatModelResultaat getStraatModelResultaat() { - return straatModelResultaat; - } - - /** - * Sets the value of the straatModelResultaat property. - * - * @param value - * allowed object is - * {@link NbwoPostcodeStraatModelResultaat } - * - */ - public void setStraatModelResultaat(NbwoPostcodeStraatModelResultaat value) { - this.straatModelResultaat = value; - } - - /** - * Gets the value of the vorigeVerkoopModelResultaat property. - * - * @return - * possible object is - * {@link NbwoVorigeVerkoopModelResultaat } - * - */ - public NbwoVorigeVerkoopModelResultaat getVorigeVerkoopModelResultaat() { - return vorigeVerkoopModelResultaat; - } - - /** - * Sets the value of the vorigeVerkoopModelResultaat property. - * - * @param value - * allowed object is - * {@link NbwoVorigeVerkoopModelResultaat } - * - */ - public void setVorigeVerkoopModelResultaat(NbwoVorigeVerkoopModelResultaat value) { - this.vorigeVerkoopModelResultaat = value; - } - - /** - * Gets the value of the kenmerkenModelResultaat property. - * - * @return - * possible object is - * {@link NbwoKenmerkenModelResultaat } - * - */ - public NbwoKenmerkenModelResultaat getKenmerkenModelResultaat() { - return kenmerkenModelResultaat; - } - - /** - * Sets the value of the kenmerkenModelResultaat property. - * - * @param value - * allowed object is - * {@link NbwoKenmerkenModelResultaat } - * - */ - public void setKenmerkenModelResultaat(NbwoKenmerkenModelResultaat value) { - this.kenmerkenModelResultaat = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaardeVerdeling.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaardeVerdeling.java deleted file mode 100644 index 1ef3a7f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaardeVerdeling.java +++ /dev/null @@ -1,98 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for NbwoWaardeVerdeling complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NbwoWaardeVerdeling">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="koopsom_van" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="koopsom_tot" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="aantal" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NbwoWaardeVerdeling", propOrder = { - -}) -public class NbwoWaardeVerdeling { - - @XmlElement(name = "koopsom_van") - protected int koopsomVan; - @XmlElement(name = "koopsom_tot") - protected int koopsomTot; - protected int aantal; - - /** - * Gets the value of the koopsomVan property. - * - */ - public int getKoopsomVan() { - return koopsomVan; - } - - /** - * Sets the value of the koopsomVan property. - * - */ - public void setKoopsomVan(int value) { - this.koopsomVan = value; - } - - /** - * Gets the value of the koopsomTot property. - * - */ - public int getKoopsomTot() { - return koopsomTot; - } - - /** - * Sets the value of the koopsomTot property. - * - */ - public void setKoopsomTot(int value) { - this.koopsomTot = value; - } - - /** - * Gets the value of the aantal property. - * - */ - public int getAantal() { - return aantal; - } - - /** - * Sets the value of the aantal property. - * - */ - public void setAantal(int value) { - this.aantal = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaardeVerdelingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaardeVerdelingArray.java deleted file mode 100644 index d30912d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NbwoWaardeVerdelingArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for NbwoWaardeVerdelingArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NbwoWaardeVerdelingArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}NbwoWaardeVerdeling" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NbwoWaardeVerdelingArray", propOrder = { - "item" -}) -public class NbwoWaardeVerdelingArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link NbwoWaardeVerdeling } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Neighborhood.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Neighborhood.java deleted file mode 100644 index 398c174..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Neighborhood.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Neighborhood complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Neighborhood">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Neighborhood", propOrder = { - -}) -public class Neighborhood { - - @XmlElement(required = true) - protected String nbcode; - - /** - * Gets the value of the nbcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcode() { - return nbcode; - } - - /** - * Sets the value of the nbcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcode(String value) { - this.nbcode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodArray.java deleted file mode 100644 index 46b0725..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for NeighborhoodArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NeighborhoodArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}Neighborhood" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NeighborhoodArray", propOrder = { - "item" -}) -public class NeighborhoodArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Neighborhood } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodName.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodName.java deleted file mode 100644 index 859932a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodName.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for NeighborhoodName complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NeighborhoodName">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="nbcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="nbname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NeighborhoodName", propOrder = { - -}) -public class NeighborhoodName { - - @XmlElement(required = true) - protected String nbcode; - @XmlElement(required = true) - protected String nbname; - - /** - * Gets the value of the nbcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbcode() { - return nbcode; - } - - /** - * Sets the value of the nbcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbcode(String value) { - this.nbcode = value; - } - - /** - * Gets the value of the nbname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbname() { - return nbname; - } - - /** - * Sets the value of the nbname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbname(String value) { - this.nbname = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodNameArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodNameArray.java deleted file mode 100644 index 92af63a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodNameArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for NeighborhoodNameArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NeighborhoodNameArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}NeighborhoodName" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NeighborhoodNameArray", propOrder = { - "item" -}) -public class NeighborhoodNameArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link NeighborhoodName } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodNamePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodNamePagedResult.java deleted file mode 100644 index 467913b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodNamePagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for NeighborhoodNamePagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NeighborhoodNamePagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}NeighborhoodNameArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NeighborhoodNamePagedResult", propOrder = { - -}) -public class NeighborhoodNamePagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected NeighborhoodNameArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link NeighborhoodNameArray } - * - */ - public NeighborhoodNameArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link NeighborhoodNameArray } - * - */ - public void setResults(NeighborhoodNameArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodPagedResult.java deleted file mode 100644 index 1bad56f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NeighborhoodPagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for NeighborhoodPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NeighborhoodPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}NeighborhoodArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NeighborhoodPagedResult", propOrder = { - -}) -public class NeighborhoodPagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected NeighborhoodArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link NeighborhoodArray } - * - */ - public NeighborhoodArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link NeighborhoodArray } - * - */ - public void setResults(NeighborhoodArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NietNatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NietNatuurlijkPersoon.java deleted file mode 100644 index c221f27..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/NietNatuurlijkPersoon.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for NietNatuurlijkPersoon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NietNatuurlijkPersoon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="naam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="statutaire_zetel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="leden_lijst" type="{http://www.webservices.nl/soap/}LidLijst" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NietNatuurlijkPersoon", propOrder = { - -}) -public class NietNatuurlijkPersoon { - - protected String naam; - @XmlElement(required = true) - protected String code; - @XmlElement(name = "statutaire_zetel") - protected String statutaireZetel; - @XmlElement(name = "leden_lijst") - protected LidLijst ledenLijst; - - /** - * Gets the value of the naam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNaam() { - return naam; - } - - /** - * Sets the value of the naam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNaam(String value) { - this.naam = value; - } - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - - /** - * Gets the value of the statutaireZetel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatutaireZetel() { - return statutaireZetel; - } - - /** - * Sets the value of the statutaireZetel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatutaireZetel(String value) { - this.statutaireZetel = value; - } - - /** - * Gets the value of the ledenLijst property. - * - * @return - * possible object is - * {@link LidLijst } - * - */ - public LidLijst getLedenLijst() { - return ledenLijst; - } - - /** - * Sets the value of the ledenLijst property. - * - * @param value - * allowed object is - * {@link LidLijst } - * - */ - public void setLedenLijst(LidLijst value) { - this.ledenLijst = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ObjectFactory.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ObjectFactory.java deleted file mode 100644 index 83a9bbf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ObjectFactory.java +++ /dev/null @@ -1,19024 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the org.suggs.companydatafinderlib.companyinfo.wsdl package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CreditsafeMonitorAddCompanyResponse_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeMonitorAddCompanyResponse"); - private final static QName _DutchBusinessGetLegalExtractDocumentDataV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetLegalExtractDocumentDataV3Response"); - private final static QName _NbwoEstimateValueResponse_QNAME = new QName("http://www.webservices.nl/soap/", "nbwoEstimateValueResponse"); - private final static QName _KadasterUittrekselKadastraleKaartPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPostcodeResponse"); - private final static QName _KadasterUittrekselKadastraleKaartPostcodeV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPostcodeV2Response"); - private final static QName _BovagGetMemberByBovagIdResponse_QNAME = new QName("http://www.webservices.nl/soap/", "bovagGetMemberByBovagIdResponse"); - private final static QName _CarRDWCarDataV2_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataV2"); - private final static QName _CarRDWCarDataV3_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataV3"); - private final static QName _DutchBusinessGetLegalEntity_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetLegalEntity"); - private final static QName _AddressProvinceListDistrictsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressProvinceListDistrictsResponse"); - private final static QName _CarRDWCarDataResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataResponse"); - private final static QName _BusinessUpdateRemoveDossier_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateRemoveDossier"); - private final static QName _DutchBusinessUBOPickupInvestigation_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOPickupInvestigation"); - private final static QName _GeoLocationLatLonToPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationLatLonToPostcodeResponse"); - private final static QName _DutchBusinessGetExtractDocumentDataResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractDocumentDataResponse"); - private final static QName _DutchBusinessGetDossierHistoryResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetDossierHistoryResponse"); - private final static QName _GeoLocationPostcodeCoordinatesLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationPostcodeCoordinatesLatLonResponse"); - private final static QName _KvkGetDossier_QNAME = new QName("http://www.webservices.nl/soap/", "kvkGetDossier"); - private final static QName _SepaConvertBankAccountNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "sepaConvertBankAccountNumberResponse"); - private final static QName _KadasterKadastraleKaartPostcodeV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKadastraleKaartPostcodeV2Response"); - private final static QName _CarRDWCarDataBPV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataBPV2Response"); - private final static QName _AddressCityListNeighborhoodsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressCityListNeighborhoodsResponse"); - private final static QName _KvkUpdateGetChangedDossiers_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateGetChangedDossiers"); - private final static QName _CreditsafeGetReportFullResponse_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeGetReportFullResponse"); - private final static QName _CarRDWCarDataPrice_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataPrice"); - private final static QName _DutchBusinessSearchSelectionSimple_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchSelectionSimple"); - private final static QName _DutchBusinessGetSBIDescription_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetSBIDescription"); - private final static QName _RoutePlannerRDDescriptionCoordinatesRDResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerRDDescriptionCoordinatesRDResponse"); - private final static QName _CreditsafeGetReportFull_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeGetReportFull"); - private final static QName _DutchBusinessGetExtractHistoryDocumentDataV3ByDossier_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryDocumentDataV3ByDossier"); - private final static QName _DutchBusinessUBOPickupInvestigationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOPickupInvestigationResponse"); - private final static QName _RoutePlannerEUDescriptionCoordinatesLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerEUDescriptionCoordinatesLatLon"); - private final static QName _AccountViewBalanceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "accountViewBalanceResponse"); - private final static QName _BusinessSearchPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchPostcodeResponse"); - private final static QName _KadasterHypothecairBerichtPerceelV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPerceelV2Response"); - private final static QName _RoutePlannerDescriptionShortest_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionShortest"); - private final static QName _KadasterV2GetKadastraalBerichtObjectByAdres_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetKadastraalBerichtObjectByAdres"); - private final static QName _AddressPerceelPhraseSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressPerceelPhraseSearch"); - private final static QName _AddressReeksAddressSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksAddressSearch"); - private final static QName _AddressNeighborhoodNameResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressNeighborhoodNameResponse"); - private final static QName _UserEditHostRestrictionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userEditHostRestrictionsResponse"); - private final static QName _AccountEditV2_QNAME = new QName("http://www.webservices.nl/soap/", "accountEditV2"); - private final static QName _VatValidateResponse_QNAME = new QName("http://www.webservices.nl/soap/", "vatValidateResponse"); - private final static QName _GeoLocationInternationalAddressCoordinatesLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationInternationalAddressCoordinatesLatLonResponse"); - private final static QName _ComplianceGetPerson_QNAME = new QName("http://www.webservices.nl/soap/", "complianceGetPerson"); - private final static QName _CarVWEVersionYearData_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEVersionYearData"); - private final static QName _CarVWEOptionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEOptionsResponse"); - private final static QName _AccountEditHostRestrictions_QNAME = new QName("http://www.webservices.nl/soap/", "accountEditHostRestrictions"); - private final static QName _BusinessGetDossierSBIResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetDossierSBIResponse"); - private final static QName _BusinessGetDossierV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetDossierV3Response"); - private final static QName _GeoLocationDistanceSortedNeighborhoodCodes_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationDistanceSortedNeighborhoodCodes"); - private final static QName _DutchVehicleGetVehicleV2_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetVehicleV2"); - private final static QName _DutchBusinessGetDossierHistory_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetDossierHistory"); - private final static QName _KadasterEigendomsBerichtPerceelV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtPerceelV2"); - private final static QName _BusinessUpdateRemoveDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateRemoveDossierResponse"); - private final static QName _RiskCheckGetRiskPersonCompanyReportResponse_QNAME = new QName("http://www.webservices.nl/soap/", "riskCheckGetRiskPersonCompanyReportResponse"); - private final static QName _KadasterValueListGetRanges_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterValueListGetRanges"); - private final static QName _KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponse"); - private final static QName _CarVWEListModelsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEListModelsResponse"); - private final static QName _DutchAddressRangePostcodeSearch_QNAME = new QName("http://www.webservices.nl/soap/", "dutchAddressRangePostcodeSearch"); - private final static QName _CarVWEListVersions_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEListVersions"); - private final static QName _DutchBusinessUBOClassifyInvestigation_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOClassifyInvestigation"); - private final static QName _DutchBusinessSearchSelection_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchSelection"); - private final static QName _KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponse"); - private final static QName _MetaGetMethod_QNAME = new QName("http://www.webservices.nl/soap/", "metaGetMethod"); - private final static QName _UserCreateV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "userCreateV2Response"); - private final static QName _AccountViewHostRestrictionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "accountViewHostRestrictionsResponse"); - private final static QName _KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponse"); - private final static QName _GraydonCreditCompanyLiaisonsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditCompanyLiaisonsResponse"); - private final static QName _DnbBusinessVerification_QNAME = new QName("http://www.webservices.nl/soap/", "dnbBusinessVerification"); - private final static QName _KadasterKadastraleKaartPerceelV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKadastraleKaartPerceelV2"); - private final static QName _RoutePlannerRDDescriptionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerRDDescriptionResponse"); - private final static QName _BusinessSearchAddress_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchAddress"); - private final static QName _GeoLocationDistanceSortedNeighborhoodCodesRadiusResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationDistanceSortedNeighborhoodCodesRadiusResponse"); - private final static QName _NbwoEstimateValue_QNAME = new QName("http://www.webservices.nl/soap/", "nbwoEstimateValue"); - private final static QName _DnbEnterpriseManagementResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dnbEnterpriseManagementResponse"); - private final static QName _KvkUpdateCheckDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateCheckDossierResponse"); - private final static QName _DutchBusinessGetSBI_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetSBI"); - private final static QName _DutchBusinessGetConcernRelationsDetails_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetConcernRelationsDetails"); - private final static QName _MetaGetServicesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "metaGetServicesResponse"); - private final static QName _GraydonCreditQuickscanResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditQuickscanResponse"); - private final static QName _KvkUpdateGetDossiersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateGetDossiersResponse"); - private final static QName _RoutePlannerGetRoute_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerGetRoute"); - private final static QName _GeoLocationDistanceSortedNeighborhoodCodesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationDistanceSortedNeighborhoodCodesResponse"); - private final static QName _KvkGetExtractDocument_QNAME = new QName("http://www.webservices.nl/soap/", "kvkGetExtractDocument"); - private final static QName _CreditsafeGetReportFullV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeGetReportFullV2Response"); - private final static QName _DutchBusinessGetAdditionalPositions_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetAdditionalPositions"); - private final static QName _KadasterKadastraleKaartPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKadastraleKaartPostcode"); - private final static QName _AccountUserSearchV2_QNAME = new QName("http://www.webservices.nl/soap/", "accountUserSearchV2"); - private final static QName _GraydonCreditRatings_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditRatings"); - private final static QName _UserEditExtendedV2_QNAME = new QName("http://www.webservices.nl/soap/", "userEditExtendedV2"); - private final static QName _CarVWEVersionPrice_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEVersionPrice"); - private final static QName _DutchVehicleGetMarketValue_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetMarketValue"); - private final static QName _DutchBusinessUpdateGetOverview_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateGetOverview"); - private final static QName _DutchBusinessGetVatNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetVatNumberResponse"); - private final static QName _DutchBusinessGetPositions_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetPositions"); - private final static QName _DutchBusinessSearchSelectionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchSelectionResponse"); - private final static QName _DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponse"); - private final static QName _UserEditBalanceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userEditBalanceResponse"); - private final static QName _Login_QNAME = new QName("http://www.webservices.nl/soap/", "login"); - private final static QName _MetaGetService_QNAME = new QName("http://www.webservices.nl/soap/", "metaGetService"); - private final static QName _BusinessGetBIKDescriptionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetBIKDescriptionResponse"); - private final static QName _DutchVehicleGetVehicle_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetVehicle"); - private final static QName _RoutePlannerEUDescriptionCoordinatesLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerEUDescriptionCoordinatesLatLonResponse"); - private final static QName _GeoLocationLatLonToAddressV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationLatLonToAddressV2Response"); - private final static QName _KadasterUittrekselKadastraleKaartPostcodeV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPostcodeV3Response"); - private final static QName _GeoLocationPostcodeCoordinatesRDResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationPostcodeCoordinatesRDResponse"); - private final static QName _KadasterHypothecairBerichtPerceelV3_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPerceelV3"); - private final static QName _KadasterEigendomsBerichtPerceelResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtPerceelResponse"); - private final static QName _KadasterHypothecairBerichtPerceelV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPerceelV2"); - private final static QName _DutchBusinessGetExtractDocumentDataV3_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractDocumentDataV3"); - private final static QName _SepaValidateInternationalBankAccountNumberFormatResponse_QNAME = new QName("http://www.webservices.nl/soap/", "sepaValidateInternationalBankAccountNumberFormatResponse"); - private final static QName _DutchBusinessGetExtractDocumentDataV2_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractDocumentDataV2"); - private final static QName _DutchBusinessUBOCheckInvestigationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOCheckInvestigationResponse"); - private final static QName _AccountGetOrderTokenResponse_QNAME = new QName("http://www.webservices.nl/soap/", "accountGetOrderTokenResponse"); - private final static QName _GeoLocationPostcodeDistance_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationPostcodeDistance"); - private final static QName _KadasterV2GetKoopsommenOverzicht_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetKoopsommenOverzicht"); - private final static QName _InternationalAddressSearchV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "internationalAddressSearchV2Response"); - private final static QName _AccountViewHostRestrictions_QNAME = new QName("http://www.webservices.nl/soap/", "accountViewHostRestrictions"); - private final static QName _CarRDWCarDataExtended_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataExtended"); - private final static QName _AddressPerceelPhraseSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressPerceelPhraseSearchResponse"); - private final static QName _KadasterUittrekselKadastraleKaartPostcodeV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPostcodeV2"); - private final static QName _AddressPerceelParameterSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressPerceelParameterSearchResponse"); - private final static QName _KadasterEigendomsBerichtPerceelV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtPerceelV2Response"); - private final static QName _CarRDWCarDataV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataV2Response"); - private final static QName _KadasterUittrekselKadastraleKaartPostcodeV3_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPostcodeV3"); - private final static QName _GraydonCreditManagement_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditManagement"); - private final static QName _UserChangePasswordResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userChangePasswordResponse"); - private final static QName _CreditsafeSearchCriteriaResponse_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeSearchCriteriaResponse"); - private final static QName _RiskCheckPersonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "riskCheckPersonResponse"); - private final static QName _DnbSearchReferenceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dnbSearchReferenceResponse"); - private final static QName _KadasterUittrekselKadastraleKaartPerceelV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPerceelV3Response"); - private final static QName _RoutePlannerEUInformationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerEUInformationResponse"); - private final static QName _GeoLocationDistanceSortedPostcodes_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationDistanceSortedPostcodes"); - private final static QName _GraydonCreditVatNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditVatNumberResponse"); - private final static QName _AreaCodeToNeighborhoodcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "areaCodeToNeighborhoodcodeResponse"); - private final static QName _DutchBusinessGetOrganizationTreeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetOrganizationTreeResponse"); - private final static QName _GeoLocationHaversineDistance_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationHaversineDistance"); - private final static QName _RoutePlannerRDDescription_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerRDDescription"); - private final static QName _CarVWEMeldcodeCheck_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEMeldcodeCheck"); - private final static QName _KadasterEigendomsBerichtDocumentPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtDocumentPostcodeResponse"); - private final static QName _DutchBusinessGetDossierV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetDossierV2Response"); - private final static QName _BusinessSearchSelectionV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchSelectionV2Response"); - private final static QName _AddressDistrictListCities_QNAME = new QName("http://www.webservices.nl/soap/", "addressDistrictListCities"); - private final static QName _GeoLocationPostcodeCoordinatesLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationPostcodeCoordinatesLatLon"); - private final static QName _KadasterV2GetKadastraalBerichtObjectByAdresResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetKadastraalBerichtObjectByAdresResponse"); - private final static QName _GeoLocationRDToAddressV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationRDToAddressV2Response"); - private final static QName _BovagGetMemberByBovagId_QNAME = new QName("http://www.webservices.nl/soap/", "bovagGetMemberByBovagId"); - private final static QName _KvkSearchSelectionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkSearchSelectionResponse"); - private final static QName _GeoLocationRDToAddressV2_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationRDToAddressV2"); - private final static QName _MetaGetServices_QNAME = new QName("http://www.webservices.nl/soap/", "metaGetServices"); - private final static QName _KadasterKadastraleKaartPostcodeV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKadastraleKaartPostcodeV2"); - private final static QName _AccountGetCreationTokenResponse_QNAME = new QName("http://www.webservices.nl/soap/", "accountGetCreationTokenResponse"); - private final static QName _GeoLocationInternationalAddressCoordinatesLatLonV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationInternationalAddressCoordinatesLatLonV2Response"); - private final static QName _RoutePlannerGetRouteResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerGetRouteResponse"); - private final static QName _UserSessionRemoveResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userSessionRemoveResponse"); - private final static QName _GeoLocationHaversineDistanceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationHaversineDistanceResponse"); - private final static QName _BusinessUpdateCheckDossier_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateCheckDossier"); - private final static QName _GeoLocationRDToPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationRDToPostcode"); - private final static QName _KadasterHypothecairBerichtPerceelResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPerceelResponse"); - private final static QName _AddressCityListNeighborhoods_QNAME = new QName("http://www.webservices.nl/soap/", "addressCityListNeighborhoods"); - private final static QName _DutchBusinessSearchParametersV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchParametersV2Response"); - private final static QName _BusinessSBIToBIKResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessSBIToBIKResponse"); - private final static QName _InsolvencyGetCaseByPublication_QNAME = new QName("http://www.webservices.nl/soap/", "insolvencyGetCaseByPublication"); - private final static QName _BusinessSearchSelectionV2_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchSelectionV2"); - private final static QName _CarRDWCarDataV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataV3Response"); - private final static QName _DnbWorldbaseMarketingPlus_QNAME = new QName("http://www.webservices.nl/soap/", "dnbWorldbaseMarketingPlus"); - private final static QName _DutchBusinessSearchDossierNumber_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchDossierNumber"); - private final static QName _KadasterEigendomsBerichtPostcodeV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtPostcodeV2"); - private final static QName _AddressProvinceSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressProvinceSearch"); - private final static QName _CarRDWCarCheckCodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarCheckCodeResponse"); - private final static QName _DutchBusinessSearch_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearch"); - private final static QName _DutchBusinessUpdateAddDossier_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateAddDossier"); - private final static QName _UserSessionListResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userSessionListResponse"); - private final static QName _InternationalAddressSearchV2_QNAME = new QName("http://www.webservices.nl/soap/", "internationalAddressSearchV2"); - private final static QName _DutchBusinessSearchPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchPostcodeResponse"); - private final static QName _KadasterAddressCoordinatesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterAddressCoordinatesResponse"); - private final static QName _GeoLocationInternationalAddressCoordinatesLatLonV2_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationInternationalAddressCoordinatesLatLonV2"); - private final static QName _BusinessSearchDossierNumber_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchDossierNumber"); - private final static QName _RoutePlannerDescriptionShortestResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionShortestResponse"); - private final static QName _DutchBusinessSearchDossierNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchDossierNumberResponse"); - private final static QName _DutchBusinessGetAnnualFinancialStatementResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetAnnualFinancialStatementResponse"); - private final static QName _InsolvencyGetCaseByPublicationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "insolvencyGetCaseByPublicationResponse"); - private final static QName _UserViewV2_QNAME = new QName("http://www.webservices.nl/soap/", "userViewV2"); - private final static QName _AddressNeighborhoodName_QNAME = new QName("http://www.webservices.nl/soap/", "addressNeighborhoodName"); - private final static QName _KadasterKoopsommenOverzichtV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKoopsommenOverzichtV2"); - private final static QName _BusinessGetDossierExtendedResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetDossierExtendedResponse"); - private final static QName _AddressDistrictSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressDistrictSearchResponse"); - private final static QName _BelgianBusinessGetDossier_QNAME = new QName("http://www.webservices.nl/soap/", "belgianBusinessGetDossier"); - private final static QName _GeoLocationInternationalPostcodeCoordinatesLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationInternationalPostcodeCoordinatesLatLon"); - private final static QName _DutchBusinessGetNonMarketingIndicator_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetNonMarketingIndicator"); - private final static QName _BovagGetMemberByDutchBusinessResponse_QNAME = new QName("http://www.webservices.nl/soap/", "bovagGetMemberByDutchBusinessResponse"); - private final static QName _DutchBusinessUBOStartInvestigation_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOStartInvestigation"); - private final static QName _DutchBusinessGetExtractHistoryChangedResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryChangedResponse"); - private final static QName _RoutePlannerDescriptionAddress_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionAddress"); - private final static QName _UserRemoveGroup_QNAME = new QName("http://www.webservices.nl/soap/", "userRemoveGroup"); - private final static QName _UserRemoveGroupResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userRemoveGroupResponse"); - private final static QName _KadasterBronDocument_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterBronDocument"); - private final static QName _DriveInfoTimeLookupResponse_QNAME = new QName("http://www.webservices.nl/soap/", "driveInfoTimeLookupResponse"); - private final static QName _AddressReeksParameterSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksParameterSearchResponse"); - private final static QName _AddressProvinceListNeighborhoodsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressProvinceListNeighborhoodsResponse"); - private final static QName _KadasterV2GetHypothecairBerichtObjectByAdres_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetHypothecairBerichtObjectByAdres"); - private final static QName _BusinessGetSBIDescriptionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetSBIDescriptionResponse"); - private final static QName _UserNotify_QNAME = new QName("http://www.webservices.nl/soap/", "userNotify"); - private final static QName _RoutePlannerInformationAddress_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerInformationAddress"); - private final static QName _AreaCodeLookup_QNAME = new QName("http://www.webservices.nl/soap/", "areaCodeLookup"); - private final static QName _DnbWorldbaseMarketing_QNAME = new QName("http://www.webservices.nl/soap/", "dnbWorldbaseMarketing"); - private final static QName _KadasterHypothecairBerichtPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPostcode"); - private final static QName _GeoLocationInternationalAddressCoordinatesLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationInternationalAddressCoordinatesLatLon"); - private final static QName _DutchBusinessUBOCostsInvestigationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOCostsInvestigationResponse"); - private final static QName _DutchBusinessSearchParameters_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchParameters"); - private final static QName _DutchBusinessUpdateGetChangedDossiers_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateGetChangedDossiers"); - private final static QName _BusinessUpdateAddDossier_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateAddDossier"); - private final static QName _RoutePlannerDescription_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescription"); - private final static QName _MapViewRDResponse_QNAME = new QName("http://www.webservices.nl/soap/", "mapViewRDResponse"); - private final static QName _BusinessBIKToSBI_QNAME = new QName("http://www.webservices.nl/soap/", "businessBIKToSBI"); - private final static QName _CarVWEBasicTypeData_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEBasicTypeData"); - private final static QName _DutchBusinessGetExtractHistoryResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryResponse"); - private final static QName _GeoLocationLatLonToRDResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationLatLonToRDResponse"); - private final static QName _InsolvencySearchPublicationsByCoCNumber_QNAME = new QName("http://www.webservices.nl/soap/", "insolvencySearchPublicationsByCoCNumber"); - private final static QName _KadasterHypothecairBerichtPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPostcodeResponse"); - private final static QName _AccountGetOrderToken_QNAME = new QName("http://www.webservices.nl/soap/", "accountGetOrderToken"); - private final static QName _BusinessSBIToBIK_QNAME = new QName("http://www.webservices.nl/soap/", "businessSBIToBIK"); - private final static QName _DutchBusinessGetExtractDocumentData_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractDocumentData"); - private final static QName _DnbSearchReferenceV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "dnbSearchReferenceV2Response"); - private final static QName _RoutePlannerRDDescriptionCoordinatesRD_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerRDDescriptionCoordinatesRD"); - private final static QName _SepaMatchAccountHolderResponse_QNAME = new QName("http://www.webservices.nl/soap/", "sepaMatchAccountHolderResponse"); - private final static QName _GeoLocationAddressCoordinatesLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationAddressCoordinatesLatLonResponse"); - private final static QName _DutchBusinessGetExtractDocumentResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractDocumentResponse"); - private final static QName _KvkUpdateGetDossiers_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateGetDossiers"); - private final static QName _DnbWorldbaseMarketingPlusLinkageResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dnbWorldbaseMarketingPlusLinkageResponse"); - private final static QName _CarRDWCarDataOptionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataOptionsResponse"); - private final static QName _DutchVehicleGetVehicleV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetVehicleV2Response"); - private final static QName _BusinessSearchParameters_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchParameters"); - private final static QName _RoutePlannerDescriptionDutchAddressResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionDutchAddressResponse"); - private final static QName _AddressProvinceListNeighborhoods_QNAME = new QName("http://www.webservices.nl/soap/", "addressProvinceListNeighborhoods"); - private final static QName _BusinessGetDossierSBI_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetDossierSBI"); - private final static QName _CarRDWCarDataExtendedResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataExtendedResponse"); - private final static QName _InternationalAddressSearchInteractiveResponse_QNAME = new QName("http://www.webservices.nl/soap/", "internationalAddressSearchInteractiveResponse"); - private final static QName _DutchBusinessUBOCheckInvestigation_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOCheckInvestigation"); - private final static QName _AccountViewV2_QNAME = new QName("http://www.webservices.nl/soap/", "accountViewV2"); - private final static QName _VatValidate_QNAME = new QName("http://www.webservices.nl/soap/", "vatValidate"); - private final static QName _DnbQuickCheck_QNAME = new QName("http://www.webservices.nl/soap/", "dnbQuickCheck"); - private final static QName _KadasterKadastraleKaartPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKadastraleKaartPostcodeResponse"); - private final static QName _DutchBusinessUpdateGetDossiers_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateGetDossiers"); - private final static QName _GraydonCreditSearchIdentificationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditSearchIdentificationResponse"); - private final static QName _KvkSearchPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "kvkSearchPostcode"); - private final static QName _AccountEditHostRestrictionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "accountEditHostRestrictionsResponse"); - private final static QName _AddressPerceelParameterSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressPerceelParameterSearch"); - private final static QName _DutchBusinessGetLegalExtractDocumentDataV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetLegalExtractDocumentDataV2Response"); - private final static QName _KvkSearchParameters_QNAME = new QName("http://www.webservices.nl/soap/", "kvkSearchParameters"); - private final static QName _HeaderLogin_QNAME = new QName("http://www.webservices.nl/soap/", "HeaderLogin"); - private final static QName _CreditsafeSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeSearchResponse"); - private final static QName _DutchBusinessGetExtractHistoryDocumentDataV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryDocumentDataV2Response"); - private final static QName _BusinessSearchParametersV3_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchParametersV3"); - private final static QName _BusinessSearchParametersV2_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchParametersV2"); - private final static QName _MapViewInternationalLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "mapViewInternationalLatLonResponse"); - private final static QName _BelgianBusinessGetDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "belgianBusinessGetDossierResponse"); - private final static QName _CreditsafeSearchV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeSearchV2Response"); - private final static QName _AddressCitySearchV2_QNAME = new QName("http://www.webservices.nl/soap/", "addressCitySearchV2"); - private final static QName _KvkUpdateAddDossier_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateAddDossier"); - private final static QName _AccountViewBalance_QNAME = new QName("http://www.webservices.nl/soap/", "accountViewBalance"); - private final static QName _BusinessSearchSelection_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchSelection"); - private final static QName _DutchBusinessUpdateRemoveDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateRemoveDossierResponse"); - private final static QName _Errorcode_QNAME = new QName("http://www.webservices.nl/soap/", "errorcode"); - private final static QName _CreditsafeMonitorRemoveCompanyResponse_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeMonitorRemoveCompanyResponse"); - private final static QName _ComplianceGetBusiness_QNAME = new QName("http://www.webservices.nl/soap/", "complianceGetBusiness"); - private final static QName _KadasterKoopsommenOverzichtV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKoopsommenOverzichtV2Response"); - private final static QName _BusinessGetDossierExtended_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetDossierExtended"); - private final static QName _KadasterV2GetBronDocument_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetBronDocument"); - private final static QName _KvkUpdateCheckDossier_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateCheckDossier"); - private final static QName _MapViewLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "mapViewLatLon"); - private final static QName _BusinessUpdateGetChangedDossiersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateGetChangedDossiersResponse"); - private final static QName _GraydonCreditGetReport_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditGetReport"); - private final static QName _AddressProvinceListResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressProvinceListResponse"); - private final static QName _CreditsafeMonitorRemoveCompany_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeMonitorRemoveCompany"); - private final static QName _CreditsafeSearch_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeSearch"); - private final static QName _DutchVehicleGetPurchaseReference_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetPurchaseReference"); - private final static QName _AccountEditV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "accountEditV2Response"); - private final static QName _DnbBusinessVerificationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dnbBusinessVerificationResponse"); - private final static QName _AddressDistrictListNeighborhoodsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressDistrictListNeighborhoodsResponse"); - private final static QName _DutchVehicleGetOwnerHistoryResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetOwnerHistoryResponse"); - private final static QName _KadasterV2GetHypothecairBerichtObjectByAdresResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetHypothecairBerichtObjectByAdresResponse"); - private final static QName _GeoLocationInternationalPostcodeCoordinatesLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationInternationalPostcodeCoordinatesLatLonResponse"); - private final static QName _MapViewPostcodeV2_QNAME = new QName("http://www.webservices.nl/soap/", "mapViewPostcodeV2"); - private final static QName _KvkSearchDossierNumber_QNAME = new QName("http://www.webservices.nl/soap/", "kvkSearchDossierNumber"); - private final static QName _UserEditExtendedV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "userEditExtendedV2Response"); - private final static QName _AddressDistrictListCitiesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressDistrictListCitiesResponse"); - private final static QName _DutchBusinessGetLegalExtractDocumentDataV3_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetLegalExtractDocumentDataV3"); - private final static QName _DutchVehicleGetMarketValueResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetMarketValueResponse"); - private final static QName _AreaCodeLookupResponse_QNAME = new QName("http://www.webservices.nl/soap/", "areaCodeLookupResponse"); - private final static QName _CarVWEVersionPriceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEVersionPriceResponse"); - private final static QName _DutchBusinessGetLegalExtractDocumentDataV2_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetLegalExtractDocumentDataV2"); - private final static QName _UserRemove_QNAME = new QName("http://www.webservices.nl/soap/", "userRemove"); - private final static QName _UserViewBalanceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userViewBalanceResponse"); - private final static QName _CarRDWCarData_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarData"); - private final static QName _UserAddGroup_QNAME = new QName("http://www.webservices.nl/soap/", "userAddGroup"); - private final static QName _DutchVehicleGetVehicleResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetVehicleResponse"); - private final static QName _DutchBusinessGetExtractHistory_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistory"); - private final static QName _KadasterEigendomsBerichtDocumentPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtDocumentPostcode"); - private final static QName _VatViesProxyCheckVat_QNAME = new QName("http://www.webservices.nl/soap/", "vatViesProxyCheckVat"); - private final static QName _DnbSearchReference_QNAME = new QName("http://www.webservices.nl/soap/", "dnbSearchReference"); - private final static QName _RoutePlannerDescriptionCoordinatesRD_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionCoordinatesRD"); - private final static QName _SepaConvertBasicBankAccountNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "sepaConvertBasicBankAccountNumberResponse"); - private final static QName _DutchVehicleGetOwnerHistory_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetOwnerHistory"); - private final static QName _KadasterKadastraleKaartPerceel_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKadastraleKaartPerceel"); - private final static QName _DnbWorldbaseMarketingResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dnbWorldbaseMarketingResponse"); - private final static QName _ComplianceGetPersonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "complianceGetPersonResponse"); - private final static QName _CreditsafeMonitorGetUpdatedCompaniesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeMonitorGetUpdatedCompaniesResponse"); - private final static QName _RoutePlannerRDInformation_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerRDInformation"); - private final static QName _DutchBusinessUpdateCheckDossier_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateCheckDossier"); - private final static QName _DutchBusinessGetExtractDocumentDataV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractDocumentDataV2Response"); - private final static QName _AddressReeksPostcodeSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksPostcodeSearch"); - private final static QName _GraydonCreditSearchPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditSearchPostcodeResponse"); - private final static QName _AreaCodePostcodeLookupResponse_QNAME = new QName("http://www.webservices.nl/soap/", "areaCodePostcodeLookupResponse"); - private final static QName _SepaIbanDetailsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "sepaIbanDetailsResponse"); - private final static QName _GraydonCreditQuickscan_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditQuickscan"); - private final static QName _GeoLocationInternationalLatLonToAddressResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationInternationalLatLonToAddressResponse"); - private final static QName _AccountGetCreationStatusResponse_QNAME = new QName("http://www.webservices.nl/soap/", "accountGetCreationStatusResponse"); - private final static QName _KadasterV2GetUittrekselKadastraleKaartByObjectId_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetUittrekselKadastraleKaartByObjectId"); - private final static QName _UserRemoveResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userRemoveResponse"); - private final static QName _MetaGetServiceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "metaGetServiceResponse"); - private final static QName _DutchBusinessGetLegalEntityResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetLegalEntityResponse"); - private final static QName _GeoLocationNeighborhoodCoordinatesLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationNeighborhoodCoordinatesLatLonResponse"); - private final static QName _DutchBusinessUpdateRemoveDossier_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateRemoveDossier"); - private final static QName _AddressNeighborhoodPhraseSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressNeighborhoodPhraseSearchResponse"); - private final static QName _CarVWEListBrands_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEListBrands"); - private final static QName _DutchBusinessSearchEstablishmentsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchEstablishmentsResponse"); - private final static QName _GeoLocationRDToPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationRDToPostcodeResponse"); - private final static QName _KadasterEigendomsBerichtDocumentPerceel_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtDocumentPerceel"); - private final static QName _UserSessionRemove_QNAME = new QName("http://www.webservices.nl/soap/", "userSessionRemove"); - private final static QName _KadasterV2GetUittrekselKadastraleKaartByAdresResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetUittrekselKadastraleKaartByAdresResponse"); - private final static QName _DutchBusinessSearchParametersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchParametersResponse"); - private final static QName _VatViesProxyCheckVatResponse_QNAME = new QName("http://www.webservices.nl/soap/", "vatViesProxyCheckVatResponse"); - private final static QName _DriveInfoDistanceLookup_QNAME = new QName("http://www.webservices.nl/soap/", "driveInfoDistanceLookup"); - private final static QName _GraydonCreditRatingsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditRatingsResponse"); - private final static QName _BusinessSearchParametersV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchParametersV2Response"); - private final static QName _RoutePlannerEUDescriptionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerEUDescriptionResponse"); - private final static QName _UserEditV2_QNAME = new QName("http://www.webservices.nl/soap/", "userEditV2"); - private final static QName _BusinessSearchName_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchName"); - private final static QName _InsolvencySearchPublicationsByCoCNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "insolvencySearchPublicationsByCoCNumberResponse"); - private final static QName _CarVWEListVersionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEListVersionsResponse"); - private final static QName _MetaGetMethodResponse_QNAME = new QName("http://www.webservices.nl/soap/", "metaGetMethodResponse"); - private final static QName _DutchBusinessGetConcernRelationsDetailsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetConcernRelationsDetailsResponse"); - private final static QName _GeoLocationInternationalLatLonToAddress_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationInternationalLatLonToAddress"); - private final static QName _LogoutResponse_QNAME = new QName("http://www.webservices.nl/soap/", "logoutResponse"); - private final static QName _DutchBusinessUBOClassifyInvestigationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOClassifyInvestigationResponse"); - private final static QName _AddressReeksFullParameterSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksFullParameterSearch"); - private final static QName _KadasterV2GetUittrekselKadastraleKaartByAdres_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetUittrekselKadastraleKaartByAdres"); - private final static QName _KadasterKoopsommenOverzicht_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKoopsommenOverzicht"); - private final static QName _AreaCodePostcodeLookup_QNAME = new QName("http://www.webservices.nl/soap/", "areaCodePostcodeLookup"); - private final static QName _AddressProvinceListDistricts_QNAME = new QName("http://www.webservices.nl/soap/", "addressProvinceListDistricts"); - private final static QName _BusinessSearchNameResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchNameResponse"); - private final static QName _GraydonCreditSearchIdentification_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditSearchIdentification"); - private final static QName _KadasterHypothecairBerichtPerceel_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPerceel"); - private final static QName _BusinessSearchAddressResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchAddressResponse"); - private final static QName _SepaValidateInternationalBankAccountNumberFormat_QNAME = new QName("http://www.webservices.nl/soap/", "sepaValidateInternationalBankAccountNumberFormat"); - private final static QName _EdrGetScoreResponse_QNAME = new QName("http://www.webservices.nl/soap/", "edrGetScoreResponse"); - private final static QName _RiskCheckGetRiskPersonCompanyReport_QNAME = new QName("http://www.webservices.nl/soap/", "riskCheckGetRiskPersonCompanyReport"); - private final static QName _DnbEnterpriseManagement_QNAME = new QName("http://www.webservices.nl/soap/", "dnbEnterpriseManagement"); - private final static QName _DutchBusinessGetOrganizationTree_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetOrganizationTree"); - private final static QName _BusinessGetEstablishmentNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetEstablishmentNumberResponse"); - private final static QName _CarVWEPhotos_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEPhotos"); - private final static QName _DutchBusinessGetLei_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetLei"); - private final static QName _GeoLocationLatLonToAddressV2_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationLatLonToAddressV2"); - private final static QName _AreaCodeToNeighborhoodcode_QNAME = new QName("http://www.webservices.nl/soap/", "areaCodeToNeighborhoodcode"); - private final static QName _AccountGetCreationToken_QNAME = new QName("http://www.webservices.nl/soap/", "accountGetCreationToken"); - private final static QName _EdrGetScore_QNAME = new QName("http://www.webservices.nl/soap/", "edrGetScore"); - private final static QName _RoutePlannerRDInformationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerRDInformationResponse"); - private final static QName _DutchBusinessSearchParametersV2_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchParametersV2"); - private final static QName _GeoLocationLatLonToRD_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationLatLonToRD"); - private final static QName _RoutePlannerEUDescription_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerEUDescription"); - private final static QName _GeoLocationLatLonToPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationLatLonToPostcode"); - private final static QName _KadasterUittrekselKadastraleKaartPerceelResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPerceelResponse"); - private final static QName _KvkUpdateAddDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateAddDossierResponse"); - private final static QName _GeoLocationRDToLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationRDToLatLonResponse"); - private final static QName _DutchBusinessGetExtractHistoryDocumentData_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryDocumentData"); - private final static QName _BusinessUpdateCheckDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateCheckDossierResponse"); - private final static QName _AddressPerceelFullParameterSearchV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "addressPerceelFullParameterSearchV2Response"); - private final static QName _KadasterHypothecairBerichtPostcodeV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPostcodeV3Response"); - private final static QName _KadasterValueListGetRangesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterValueListGetRangesResponse"); - private final static QName _KvkUpdateRemoveDossier_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateRemoveDossier"); - private final static QName _Logout_QNAME = new QName("http://www.webservices.nl/soap/", "logout"); - private final static QName _DutchBusinessUpdateCheckDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateCheckDossierResponse"); - private final static QName _BusinessSearchParametersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchParametersResponse"); - private final static QName _BusinessSearchParametersV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchParametersV3Response"); - private final static QName _CarRDWCarCheckCode_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarCheckCode"); - private final static QName _DutchBusinessGetExtractHistoryChanged_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryChanged"); - private final static QName _GeoLocationNeighborhoodCoordinatesRD_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationNeighborhoodCoordinatesRD"); - private final static QName _BusinessUpdateGetDossiers_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateGetDossiers"); - private final static QName _RoutePlannerInformationDutchAddress_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerInformationDutchAddress"); - private final static QName _GeoLocationNeighborhoodCoordinatesLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationNeighborhoodCoordinatesLatLon"); - private final static QName _KadasterV2GetKadastraalBerichtObjectByObjectIdResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetKadastraalBerichtObjectByObjectIdResponse"); - private final static QName _UserCreateV2_QNAME = new QName("http://www.webservices.nl/soap/", "userCreateV2"); - private final static QName _UserViewHostRestrictions_QNAME = new QName("http://www.webservices.nl/soap/", "userViewHostRestrictions"); - private final static QName _AddressProvinceSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressProvinceSearchResponse"); - private final static QName _DutchBusinessGetDossierV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetDossierV3Response"); - private final static QName _DnbWorldbaseMarketingPlusResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dnbWorldbaseMarketingPlusResponse"); - private final static QName _RiskCheckPerson_QNAME = new QName("http://www.webservices.nl/soap/", "riskCheckPerson"); - private final static QName _ComplianceGetBusinessResponse_QNAME = new QName("http://www.webservices.nl/soap/", "complianceGetBusinessResponse"); - private final static QName _GraydonCreditCompanyLiaisons_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditCompanyLiaisons"); - private final static QName _DutchBusinessGetConcernRelationsOverviewResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetConcernRelationsOverviewResponse"); - private final static QName _KadasterUittrekselKadastraleKaartPerceelV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPerceelV2Response"); - private final static QName _KadasterUittrekselKadastraleKaartPerceelV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPerceelV2"); - private final static QName _KvkUpdateGetChangedDossiersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateGetChangedDossiersResponse"); - private final static QName _KadasterUittrekselKadastraleKaartPerceelV3_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPerceelV3"); - private final static QName _UserSessionList_QNAME = new QName("http://www.webservices.nl/soap/", "userSessionList"); - private final static QName _KadasterKoopsommenOverzichtResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKoopsommenOverzichtResponse"); - private final static QName _ComplianceSearchPersons_QNAME = new QName("http://www.webservices.nl/soap/", "complianceSearchPersons"); - private final static QName _GeoLocationNeighborhoodDistance_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationNeighborhoodDistance"); - private final static QName _DutchBusinessSearchNewsByDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchNewsByDossierResponse"); - private final static QName _GraydonCreditManagementResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditManagementResponse"); - private final static QName _BusinessSearchPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchPostcode"); - private final static QName _BusinessSearchSelectionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchSelectionResponse"); - private final static QName _DutchBusinessGetExtractDocument_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractDocument"); - private final static QName _GraydonCreditGetReportResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditGetReportResponse"); - private final static QName _SepaIbanDetails_QNAME = new QName("http://www.webservices.nl/soap/", "sepaIbanDetails"); - private final static QName _BusinessUpdateGetChangedDossiers_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateGetChangedDossiers"); - private final static QName _BusinessGetEstablishmentNumber_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetEstablishmentNumber"); - private final static QName _KvkSearchDossierNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkSearchDossierNumberResponse"); - private final static QName _CarVWEPhotosResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEPhotosResponse"); - private final static QName _DutchBusinessSearchSelectionSimpleResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchSelectionSimpleResponse"); - private final static QName _CarRDWCarDataBP_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataBP"); - private final static QName _GraydonCreditVatNumber_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditVatNumber"); - private final static QName _KadasterV2GetBronDocumentResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetBronDocumentResponse"); - private final static QName _RoutePlannerDescriptionCoordinatesRDResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionCoordinatesRDResponse"); - private final static QName _KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduiding_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduiding"); - private final static QName _UserAddGroupResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userAddGroupResponse"); - private final static QName _KadasterEigendomsBerichtPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtPostcode"); - private final static QName _DutchBusinessSearchEstablishments_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchEstablishments"); - private final static QName _HeaderAuthenticate_QNAME = new QName("http://www.webservices.nl/soap/", "HeaderAuthenticate"); - private final static QName _DutchBusinessGetAnnualFinancialStatement_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetAnnualFinancialStatement"); - private final static QName _CarVWEListModels_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEListModels"); - private final static QName _UserEditV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "userEditV2Response"); - private final static QName _AddressPerceelFullParameterSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressPerceelFullParameterSearch"); - private final static QName _BusinessUpdateGetDossiersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateGetDossiersResponse"); - private final static QName _CreateTestUserResponse_QNAME = new QName("http://www.webservices.nl/soap/", "createTestUserResponse"); - private final static QName _AddressPerceelFullParameterSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressPerceelFullParameterSearchResponse"); - private final static QName _BovagGetMemberByDutchBusiness_QNAME = new QName("http://www.webservices.nl/soap/", "bovagGetMemberByDutchBusiness"); - private final static QName _InsolvencySearchPublicationsByPerson_QNAME = new QName("http://www.webservices.nl/soap/", "insolvencySearchPublicationsByPerson"); - private final static QName _GeoLocationRDToLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationRDToLatLon"); - private final static QName _DutchBusinessGetSBIResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetSBIResponse"); - private final static QName _UserEditBalance_QNAME = new QName("http://www.webservices.nl/soap/", "userEditBalance"); - private final static QName _AccountUserListV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "accountUserListV2Response"); - private final static QName _InternationalAddressSearchInteractive_QNAME = new QName("http://www.webservices.nl/soap/", "internationalAddressSearchInteractive"); - private final static QName _AddressDistrictSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressDistrictSearch"); - private final static QName _GeoLocationDistanceSortedNeighborhoodCodesRadius_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationDistanceSortedNeighborhoodCodesRadius"); - private final static QName _GeoLocationDistanceSortedPostcodesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationDistanceSortedPostcodesResponse"); - private final static QName _AddressProvinceList_QNAME = new QName("http://www.webservices.nl/soap/", "addressProvinceList"); - private final static QName _CarVWEListBrandsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEListBrandsResponse"); - private final static QName _AccountGetCreationStatus_QNAME = new QName("http://www.webservices.nl/soap/", "accountGetCreationStatus"); - private final static QName _GeoLocationDistanceSortedPostcodesRadius_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationDistanceSortedPostcodesRadius"); - private final static QName _AddressReeksPhraseSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksPhraseSearchResponse"); - private final static QName _DutchBusinessGetExtractHistoryDocumentDataV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryDocumentDataV3Response"); - private final static QName _DutchBusinessSearchNewsByDossier_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchNewsByDossier"); - private final static QName _GeoLocationAddressCoordinatesRDResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationAddressCoordinatesRDResponse"); - private final static QName _KadasterV2GetKadastraalBerichtObjectByObjectId_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetKadastraalBerichtObjectByObjectId"); - private final static QName _KadasterV2GetHypothecairBerichtObjectByKadastraleAanduiding_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetHypothecairBerichtObjectByKadastraleAanduiding"); - private final static QName _LoginResponse_QNAME = new QName("http://www.webservices.nl/soap/", "loginResponse"); - private final static QName _UserListAssignableGroups_QNAME = new QName("http://www.webservices.nl/soap/", "userListAssignableGroups"); - private final static QName _DutchBusinessSearchPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchPostcode"); - private final static QName _CarRDWCarDataPriceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataPriceResponse"); - private final static QName _KadasterHypothecairBerichtPostcodeV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPostcodeV2Response"); - private final static QName _KadasterBronDocumentResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterBronDocumentResponse"); - private final static QName _DutchBusinessUpdateAddDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateAddDossierResponse"); - private final static QName _AccountUserListV2_QNAME = new QName("http://www.webservices.nl/soap/", "accountUserListV2"); - private final static QName _BusinessGetSBIDescription_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetSBIDescription"); - private final static QName _RoutePlannerInformationDutchAddressResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerInformationDutchAddressResponse"); - private final static QName _UserListAssignableGroupsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userListAssignableGroupsResponse"); - private final static QName _BusinessSearchDossierNumberResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessSearchDossierNumberResponse"); - private final static QName _AddressNeighborhoodPhraseSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressNeighborhoodPhraseSearch"); - private final static QName _KadasterHypothecairBerichtPerceelV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPerceelV3Response"); - private final static QName _RoutePlannerEUMapResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerEUMapResponse"); - private final static QName _KadasterKadastraleKaartPerceelV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKadastraleKaartPerceelV2Response"); - private final static QName _KadasterV2GetHypothecairBerichtObjectByObjectIdResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetHypothecairBerichtObjectByObjectIdResponse"); - private final static QName _DutchBusinessUpdateGetDossiersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateGetDossiersResponse"); - private final static QName _AddressPerceelFullParameterSearchV2_QNAME = new QName("http://www.webservices.nl/soap/", "addressPerceelFullParameterSearchV2"); - private final static QName _DutchBusinessUBOStartInvestigationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOStartInvestigationResponse"); - private final static QName _AddressCitySearchV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "addressCitySearchV2Response"); - private final static QName _UserEditHostRestrictions_QNAME = new QName("http://www.webservices.nl/soap/", "userEditHostRestrictions"); - private final static QName _CarRDWCarDataOptions_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataOptions"); - private final static QName _MapViewPostcodeV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "mapViewPostcodeV2Response"); - private final static QName _DutchBusinessGetExtractHistoryDocumentDataV2_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryDocumentDataV2"); - private final static QName _CarVWEVersionYearDataResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEVersionYearDataResponse"); - private final static QName _DutchBusinessGetExtractHistoryDocumentDataV3_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryDocumentDataV3"); - private final static QName _KadasterV2GetHypothecairBerichtObjectByObjectId_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetHypothecairBerichtObjectByObjectId"); - private final static QName _KadasterUittrekselKadastraleKaartPerceel_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPerceel"); - private final static QName _KadasterEigendomsBerichtDocumentPerceelResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtDocumentPerceelResponse"); - private final static QName _AddressReeksPostcodeSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksPostcodeSearchResponse"); - private final static QName _CreditsafeGetReportFullV2_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeGetReportFullV2"); - private final static QName _AddressReeksParameterSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksParameterSearch"); - private final static QName _DutchBusinessUpdateGetOverviewResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateGetOverviewResponse"); - private final static QName _GeoLocationPostcodeCoordinatesRD_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationPostcodeCoordinatesRD"); - private final static QName _GeoLocationPostcodeDistanceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationPostcodeDistanceResponse"); - private final static QName _DutchBusinessUpdateGetChangedDossiersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUpdateGetChangedDossiersResponse"); - private final static QName _ComplianceSearchBusinesses_QNAME = new QName("http://www.webservices.nl/soap/", "complianceSearchBusinesses"); - private final static QName _ComplianceSearchBusinessesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "complianceSearchBusinessesResponse"); - private final static QName _GeoLocationDistanceSortedPostcodesRadiusResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationDistanceSortedPostcodesRadiusResponse"); - private final static QName _DutchBusinessGetAdditionalPositionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetAdditionalPositionsResponse"); - private final static QName _MapViewLatLonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "mapViewLatLonResponse"); - private final static QName _UserViewBalance_QNAME = new QName("http://www.webservices.nl/soap/", "userViewBalance"); - private final static QName _KvkSearchPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkSearchPostcodeResponse"); - private final static QName _KadasterV2GetKoopsommenOverzichtResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetKoopsommenOverzichtResponse"); - private final static QName _DnbGetReference_QNAME = new QName("http://www.webservices.nl/soap/", "dnbGetReference"); - private final static QName _MapViewRD_QNAME = new QName("http://www.webservices.nl/soap/", "mapViewRD"); - private final static QName _KvkGetExtractDocumentResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkGetExtractDocumentResponse"); - private final static QName _KadasterHypothecairBerichtPostcodeV3_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPostcodeV3"); - private final static QName _KadasterAddressCoordinates_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterAddressCoordinates"); - private final static QName _GraydonCreditSearchName_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditSearchName"); - private final static QName _RoutePlannerInformation_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerInformation"); - private final static QName _CreditsafeMonitorAddCompany_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeMonitorAddCompany"); - private final static QName _AddressReeksFullParameterSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksFullParameterSearchResponse"); - private final static QName _DutchBusinessGetSBIDescriptionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetSBIDescriptionResponse"); - private final static QName _DutchVehicleGetPurchaseReferenceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchVehicleGetPurchaseReferenceResponse"); - private final static QName _KadasterEigendomsBerichtPostcodeV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtPostcodeV2Response"); - private final static QName _DnbGetReferenceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dnbGetReferenceResponse"); - private final static QName _KadasterHypothecairBerichtPostcodeV2_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterHypothecairBerichtPostcodeV2"); - private final static QName _CarATDPriceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carATDPriceResponse"); - private final static QName _DutchAddressRangePostcodeSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchAddressRangePostcodeSearchResponse"); - private final static QName _DutchBusinessGetDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetDossierResponse"); - private final static QName _UserChangePassword_QNAME = new QName("http://www.webservices.nl/soap/", "userChangePassword"); - private final static QName _BusinessBIKToSBIResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessBIKToSBIResponse"); - private final static QName _CarVWEOptions_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEOptions"); - private final static QName _CarVWEBasicTypeDataResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEBasicTypeDataResponse"); - private final static QName _InsolvencySearchPublicationsByPersonResponse_QNAME = new QName("http://www.webservices.nl/soap/", "insolvencySearchPublicationsByPersonResponse"); - private final static QName _CarRDWCarDataBPResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataBPResponse"); - private final static QName _KadasterKadastraleKaartPerceelResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterKadastraleKaartPerceelResponse"); - private final static QName _GraydonCreditSearchPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditSearchPostcode"); - private final static QName _GeoLocationAddressCoordinatesRD_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationAddressCoordinatesRD"); - private final static QName _RoutePlannerInformationAddressResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerInformationAddressResponse"); - private final static QName _GeoLocationNeighborhoodCoordinatesRDResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationNeighborhoodCoordinatesRDResponse"); - private final static QName _AddressDistrictListNeighborhoods_QNAME = new QName("http://www.webservices.nl/soap/", "addressDistrictListNeighborhoods"); - private final static QName _BusinessGetDossierV3_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetDossierV3"); - private final static QName _BusinessGetBIKDescription_QNAME = new QName("http://www.webservices.nl/soap/", "businessGetBIKDescription"); - private final static QName _SepaConvertBasicBankAccountNumber_QNAME = new QName("http://www.webservices.nl/soap/", "sepaConvertBasicBankAccountNumber"); - private final static QName _KadasterUittrekselKadastraleKaartPostcode_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterUittrekselKadastraleKaartPostcode"); - private final static QName _DriveInfoDistanceLookupResponse_QNAME = new QName("http://www.webservices.nl/soap/", "driveInfoDistanceLookupResponse"); - private final static QName _KadasterValueListGetMunicipalities_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterValueListGetMunicipalities"); - private final static QName _RoutePlannerDescriptionResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionResponse"); - private final static QName _RoutePlannerEUInformation_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerEUInformation"); - private final static QName _DutchBusinessGetNonMarketingIndicatorResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetNonMarketingIndicatorResponse"); - private final static QName _AccountUserSearchV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "accountUserSearchV2Response"); - private final static QName _ComplianceSearchPersonsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "complianceSearchPersonsResponse"); - private final static QName _CreateTestUser_QNAME = new QName("http://www.webservices.nl/soap/", "createTestUser"); - private final static QName _CarVWEMeldcodeCheckResponse_QNAME = new QName("http://www.webservices.nl/soap/", "carVWEMeldcodeCheckResponse"); - private final static QName _CarATDPrice_QNAME = new QName("http://www.webservices.nl/soap/", "carATDPrice"); - private final static QName _DutchBusinessGetDossierV2_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetDossierV2"); - private final static QName _MapViewInternationalLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "mapViewInternationalLatLon"); - private final static QName _DnbSearchReferenceV2_QNAME = new QName("http://www.webservices.nl/soap/", "dnbSearchReferenceV2"); - private final static QName _DutchBusinessGetDossierV3_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetDossierV3"); - private final static QName _KadasterV2GetUittrekselKadastraleKaartByObjectIdResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetUittrekselKadastraleKaartByObjectIdResponse"); - private final static QName _SepaConvertBankAccountNumber_QNAME = new QName("http://www.webservices.nl/soap/", "sepaConvertBankAccountNumber"); - private final static QName _CarRDWCarDataBPV2_QNAME = new QName("http://www.webservices.nl/soap/", "carRDWCarDataBPV2"); - private final static QName _KvkGetDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkGetDossierResponse"); - private final static QName _RoutePlannerEUMap_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerEUMap"); - private final static QName _CreditsafeSearchCriteria_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeSearchCriteria"); - private final static QName _UserNotifyResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userNotifyResponse"); - private final static QName _KadasterEigendomsBerichtPostcodeResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtPostcodeResponse"); - private final static QName _SepaMatchAccountHolder_QNAME = new QName("http://www.webservices.nl/soap/", "sepaMatchAccountHolder"); - private final static QName _BusinessUpdateAddDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "businessUpdateAddDossierResponse"); - private final static QName _KvkSearchParametersResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkSearchParametersResponse"); - private final static QName _AccountViewV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "accountViewV2Response"); - private final static QName _DriveInfoTimeLookup_QNAME = new QName("http://www.webservices.nl/soap/", "driveInfoTimeLookup"); - private final static QName _KadasterV2GetKadastraalBerichtObjectByKadastraleAanduiding_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterV2GetKadastraalBerichtObjectByKadastraleAanduiding"); - private final static QName _RoutePlannerDescriptionDutchAddress_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionDutchAddress"); - private final static QName _DnbQuickCheckResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dnbQuickCheckResponse"); - private final static QName _GeoLocationNeighborhoodDistanceResponse_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationNeighborhoodDistanceResponse"); - private final static QName _KadasterValueListGetMunicipalitiesResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterValueListGetMunicipalitiesResponse"); - private final static QName _KvkUpdateRemoveDossierResponse_QNAME = new QName("http://www.webservices.nl/soap/", "kvkUpdateRemoveDossierResponse"); - private final static QName _DnbWorldbaseMarketingPlusLinkage_QNAME = new QName("http://www.webservices.nl/soap/", "dnbWorldbaseMarketingPlusLinkage"); - private final static QName _CreditsafeMonitorGetUpdatedCompanies_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeMonitorGetUpdatedCompanies"); - private final static QName _CreditsafeSearchV2_QNAME = new QName("http://www.webservices.nl/soap/", "creditsafeSearchV2"); - private final static QName _DutchBusinessSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessSearchResponse"); - private final static QName _DutchBusinessUBOCostsInvestigation_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessUBOCostsInvestigation"); - private final static QName _UserViewHostRestrictionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "userViewHostRestrictionsResponse"); - private final static QName _AddressReeksAddressSearchResponse_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksAddressSearchResponse"); - private final static QName _DutchBusinessGetExtractDocumentDataV3Response_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractDocumentDataV3Response"); - private final static QName _KvkSearchSelection_QNAME = new QName("http://www.webservices.nl/soap/", "kvkSearchSelection"); - private final static QName _DutchBusinessGetVatNumber_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetVatNumber"); - private final static QName _DutchBusinessGetDossier_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetDossier"); - private final static QName _GraydonCreditSearchNameResponse_QNAME = new QName("http://www.webservices.nl/soap/", "graydonCreditSearchNameResponse"); - private final static QName _RoutePlannerDescriptionAddressResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerDescriptionAddressResponse"); - private final static QName _RoutePlannerInformationResponse_QNAME = new QName("http://www.webservices.nl/soap/", "routePlannerInformationResponse"); - private final static QName _DutchBusinessGetConcernRelationsOverview_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetConcernRelationsOverview"); - private final static QName _GeoLocationAddressCoordinatesLatLon_QNAME = new QName("http://www.webservices.nl/soap/", "geoLocationAddressCoordinatesLatLon"); - private final static QName _KadasterEigendomsBerichtPerceel_QNAME = new QName("http://www.webservices.nl/soap/", "kadasterEigendomsBerichtPerceel"); - private final static QName _DutchBusinessGetExtractHistoryDocumentDataResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetExtractHistoryDocumentDataResponse"); - private final static QName _DutchBusinessGetPositionsResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetPositionsResponse"); - private final static QName _AddressReeksPhraseSearch_QNAME = new QName("http://www.webservices.nl/soap/", "addressReeksPhraseSearch"); - private final static QName _DutchBusinessGetLeiResponse_QNAME = new QName("http://www.webservices.nl/soap/", "dutchBusinessGetLeiResponse"); - private final static QName _UserViewV2Response_QNAME = new QName("http://www.webservices.nl/soap/", "userViewV2Response"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.suggs.companydatafinderlib.companyinfo.wsdl - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link KadasterHypothecairBerichtPostcodeResponseType } - * - */ - public KadasterHypothecairBerichtPostcodeResponseType createKadasterHypothecairBerichtPostcodeResponseType() { - return new KadasterHypothecairBerichtPostcodeResponseType(); - } - - /** - * Create an instance of {@link AccountGetOrderTokenRequestType } - * - */ - public AccountGetOrderTokenRequestType createAccountGetOrderTokenRequestType() { - return new AccountGetOrderTokenRequestType(); - } - - /** - * Create an instance of {@link BusinessSBIToBIKRequestType } - * - */ - public BusinessSBIToBIKRequestType createBusinessSBIToBIKRequestType() { - return new BusinessSBIToBIKRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractDocumentDataRequestType } - * - */ - public DutchBusinessGetExtractDocumentDataRequestType createDutchBusinessGetExtractDocumentDataRequestType() { - return new DutchBusinessGetExtractDocumentDataRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractHistoryResponseType } - * - */ - public DutchBusinessGetExtractHistoryResponseType createDutchBusinessGetExtractHistoryResponseType() { - return new DutchBusinessGetExtractHistoryResponseType(); - } - - /** - * Create an instance of {@link GeoLocationLatLonToRDResponseType } - * - */ - public GeoLocationLatLonToRDResponseType createGeoLocationLatLonToRDResponseType() { - return new GeoLocationLatLonToRDResponseType(); - } - - /** - * Create an instance of {@link InsolvencySearchPublicationsByCoCNumberRequestType } - * - */ - public InsolvencySearchPublicationsByCoCNumberRequestType createInsolvencySearchPublicationsByCoCNumberRequestType() { - return new InsolvencySearchPublicationsByCoCNumberRequestType(); - } - - /** - * Create an instance of {@link DnbSearchReferenceV2ResponseType } - * - */ - public DnbSearchReferenceV2ResponseType createDnbSearchReferenceV2ResponseType() { - return new DnbSearchReferenceV2ResponseType(); - } - - /** - * Create an instance of {@link RoutePlannerRDDescriptionCoordinatesRDRequestType } - * - */ - public RoutePlannerRDDescriptionCoordinatesRDRequestType createRoutePlannerRDDescriptionCoordinatesRDRequestType() { - return new RoutePlannerRDDescriptionCoordinatesRDRequestType(); - } - - /** - * Create an instance of {@link SepaMatchAccountHolderResponseType } - * - */ - public SepaMatchAccountHolderResponseType createSepaMatchAccountHolderResponseType() { - return new SepaMatchAccountHolderResponseType(); - } - - /** - * Create an instance of {@link GeoLocationAddressCoordinatesLatLonResponseType } - * - */ - public GeoLocationAddressCoordinatesLatLonResponseType createGeoLocationAddressCoordinatesLatLonResponseType() { - return new GeoLocationAddressCoordinatesLatLonResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractDocumentResponseType } - * - */ - public DutchBusinessGetExtractDocumentResponseType createDutchBusinessGetExtractDocumentResponseType() { - return new DutchBusinessGetExtractDocumentResponseType(); - } - - /** - * Create an instance of {@link KvkUpdateGetDossiersRequestType } - * - */ - public KvkUpdateGetDossiersRequestType createKvkUpdateGetDossiersRequestType() { - return new KvkUpdateGetDossiersRequestType(); - } - - /** - * Create an instance of {@link BusinessSearchParametersRequestType } - * - */ - public BusinessSearchParametersRequestType createBusinessSearchParametersRequestType() { - return new BusinessSearchParametersRequestType(); - } - - /** - * Create an instance of {@link RoutePlannerDescriptionDutchAddressResponseType } - * - */ - public RoutePlannerDescriptionDutchAddressResponseType createRoutePlannerDescriptionDutchAddressResponseType() { - return new RoutePlannerDescriptionDutchAddressResponseType(); - } - - /** - * Create an instance of {@link AddressProvinceListNeighborhoodsRequestType } - * - */ - public AddressProvinceListNeighborhoodsRequestType createAddressProvinceListNeighborhoodsRequestType() { - return new AddressProvinceListNeighborhoodsRequestType(); - } - - /** - * Create an instance of {@link BusinessGetDossierSBIRequestType } - * - */ - public BusinessGetDossierSBIRequestType createBusinessGetDossierSBIRequestType() { - return new BusinessGetDossierSBIRequestType(); - } - - /** - * Create an instance of {@link DnbWorldbaseMarketingPlusLinkageResponseType } - * - */ - public DnbWorldbaseMarketingPlusLinkageResponseType createDnbWorldbaseMarketingPlusLinkageResponseType() { - return new DnbWorldbaseMarketingPlusLinkageResponseType(); - } - - /** - * Create an instance of {@link CarRDWCarDataOptionsResponseType } - * - */ - public CarRDWCarDataOptionsResponseType createCarRDWCarDataOptionsResponseType() { - return new CarRDWCarDataOptionsResponseType(); - } - - /** - * Create an instance of {@link DutchVehicleGetVehicleV2ResponseType } - * - */ - public DutchVehicleGetVehicleV2ResponseType createDutchVehicleGetVehicleV2ResponseType() { - return new DutchVehicleGetVehicleV2ResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateGetDossiersRequestType } - * - */ - public DutchBusinessUpdateGetDossiersRequestType createDutchBusinessUpdateGetDossiersRequestType() { - return new DutchBusinessUpdateGetDossiersRequestType(); - } - - /** - * Create an instance of {@link GraydonCreditSearchIdentificationResponseType } - * - */ - public GraydonCreditSearchIdentificationResponseType createGraydonCreditSearchIdentificationResponseType() { - return new GraydonCreditSearchIdentificationResponseType(); - } - - /** - * Create an instance of {@link KvkSearchPostcodeRequestType } - * - */ - public KvkSearchPostcodeRequestType createKvkSearchPostcodeRequestType() { - return new KvkSearchPostcodeRequestType(); - } - - /** - * Create an instance of {@link AccountEditHostRestrictionsResponseType } - * - */ - public AccountEditHostRestrictionsResponseType createAccountEditHostRestrictionsResponseType() { - return new AccountEditHostRestrictionsResponseType(); - } - - /** - * Create an instance of {@link CarRDWCarDataExtendedResponseType } - * - */ - public CarRDWCarDataExtendedResponseType createCarRDWCarDataExtendedResponseType() { - return new CarRDWCarDataExtendedResponseType(); - } - - /** - * Create an instance of {@link InternationalAddressSearchInteractiveResponseType } - * - */ - public InternationalAddressSearchInteractiveResponseType createInternationalAddressSearchInteractiveResponseType() { - return new InternationalAddressSearchInteractiveResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessUBOCheckInvestigationRequestType } - * - */ - public DutchBusinessUBOCheckInvestigationRequestType createDutchBusinessUBOCheckInvestigationRequestType() { - return new DutchBusinessUBOCheckInvestigationRequestType(); - } - - /** - * Create an instance of {@link AccountViewV2RequestType } - * - */ - public AccountViewV2RequestType createAccountViewV2RequestType() { - return new AccountViewV2RequestType(); - } - - /** - * Create an instance of {@link VatValidateRequestType } - * - */ - public VatValidateRequestType createVatValidateRequestType() { - return new VatValidateRequestType(); - } - - /** - * Create an instance of {@link DnbQuickCheckRequestType } - * - */ - public DnbQuickCheckRequestType createDnbQuickCheckRequestType() { - return new DnbQuickCheckRequestType(); - } - - /** - * Create an instance of {@link KadasterKadastraleKaartPostcodeResponseType } - * - */ - public KadasterKadastraleKaartPostcodeResponseType createKadasterKadastraleKaartPostcodeResponseType() { - return new KadasterKadastraleKaartPostcodeResponseType(); - } - - /** - * Create an instance of {@link BelgianBusinessGetDossierResponseType } - * - */ - public BelgianBusinessGetDossierResponseType createBelgianBusinessGetDossierResponseType() { - return new BelgianBusinessGetDossierResponseType(); - } - - /** - * Create an instance of {@link CreditsafeSearchV2ResponseType } - * - */ - public CreditsafeSearchV2ResponseType createCreditsafeSearchV2ResponseType() { - return new CreditsafeSearchV2ResponseType(); - } - - /** - * Create an instance of {@link AddressCitySearchV2RequestType } - * - */ - public AddressCitySearchV2RequestType createAddressCitySearchV2RequestType() { - return new AddressCitySearchV2RequestType(); - } - - /** - * Create an instance of {@link KvkUpdateAddDossierRequestType } - * - */ - public KvkUpdateAddDossierRequestType createKvkUpdateAddDossierRequestType() { - return new KvkUpdateAddDossierRequestType(); - } - - /** - * Create an instance of {@link AccountViewBalanceRequestType } - * - */ - public AccountViewBalanceRequestType createAccountViewBalanceRequestType() { - return new AccountViewBalanceRequestType(); - } - - /** - * Create an instance of {@link BusinessSearchSelectionRequestType } - * - */ - public BusinessSearchSelectionRequestType createBusinessSearchSelectionRequestType() { - return new BusinessSearchSelectionRequestType(); - } - - /** - * Create an instance of {@link AddressPerceelParameterSearchRequestType } - * - */ - public AddressPerceelParameterSearchRequestType createAddressPerceelParameterSearchRequestType() { - return new AddressPerceelParameterSearchRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetLegalExtractDocumentDataV2ResponseType } - * - */ - public DutchBusinessGetLegalExtractDocumentDataV2ResponseType createDutchBusinessGetLegalExtractDocumentDataV2ResponseType() { - return new DutchBusinessGetLegalExtractDocumentDataV2ResponseType(); - } - - /** - * Create an instance of {@link KvkSearchParametersRequestType } - * - */ - public KvkSearchParametersRequestType createKvkSearchParametersRequestType() { - return new KvkSearchParametersRequestType(); - } - - /** - * Create an instance of {@link HeaderLoginType } - * - */ - public HeaderLoginType createHeaderLoginType() { - return new HeaderLoginType(); - } - - /** - * Create an instance of {@link CreditsafeSearchResponseType } - * - */ - public CreditsafeSearchResponseType createCreditsafeSearchResponseType() { - return new CreditsafeSearchResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractHistoryDocumentDataV2ResponseType } - * - */ - public DutchBusinessGetExtractHistoryDocumentDataV2ResponseType createDutchBusinessGetExtractHistoryDocumentDataV2ResponseType() { - return new DutchBusinessGetExtractHistoryDocumentDataV2ResponseType(); - } - - /** - * Create an instance of {@link BusinessSearchParametersV3RequestType } - * - */ - public BusinessSearchParametersV3RequestType createBusinessSearchParametersV3RequestType() { - return new BusinessSearchParametersV3RequestType(); - } - - /** - * Create an instance of {@link BusinessSearchParametersV2RequestType } - * - */ - public BusinessSearchParametersV2RequestType createBusinessSearchParametersV2RequestType() { - return new BusinessSearchParametersV2RequestType(); - } - - /** - * Create an instance of {@link MapViewInternationalLatLonResponseType } - * - */ - public MapViewInternationalLatLonResponseType createMapViewInternationalLatLonResponseType() { - return new MapViewInternationalLatLonResponseType(); - } - - /** - * Create an instance of {@link CreditsafeMonitorRemoveCompanyResponseType } - * - */ - public CreditsafeMonitorRemoveCompanyResponseType createCreditsafeMonitorRemoveCompanyResponseType() { - return new CreditsafeMonitorRemoveCompanyResponseType(); - } - - /** - * Create an instance of {@link ComplianceGetBusinessRequestType } - * - */ - public ComplianceGetBusinessRequestType createComplianceGetBusinessRequestType() { - return new ComplianceGetBusinessRequestType(); - } - - /** - * Create an instance of {@link KadasterKoopsommenOverzichtV2ResponseType } - * - */ - public KadasterKoopsommenOverzichtV2ResponseType createKadasterKoopsommenOverzichtV2ResponseType() { - return new KadasterKoopsommenOverzichtV2ResponseType(); - } - - /** - * Create an instance of {@link BusinessGetDossierExtendedRequestType } - * - */ - public BusinessGetDossierExtendedRequestType createBusinessGetDossierExtendedRequestType() { - return new BusinessGetDossierExtendedRequestType(); - } - - /** - * Create an instance of {@link KadasterV2GetBronDocumentRequestType } - * - */ - public KadasterV2GetBronDocumentRequestType createKadasterV2GetBronDocumentRequestType() { - return new KadasterV2GetBronDocumentRequestType(); - } - - /** - * Create an instance of {@link KvkUpdateCheckDossierRequestType } - * - */ - public KvkUpdateCheckDossierRequestType createKvkUpdateCheckDossierRequestType() { - return new KvkUpdateCheckDossierRequestType(); - } - - /** - * Create an instance of {@link MapViewLatLonRequestType } - * - */ - public MapViewLatLonRequestType createMapViewLatLonRequestType() { - return new MapViewLatLonRequestType(); - } - - /** - * Create an instance of {@link BusinessUpdateGetChangedDossiersResponseType } - * - */ - public BusinessUpdateGetChangedDossiersResponseType createBusinessUpdateGetChangedDossiersResponseType() { - return new BusinessUpdateGetChangedDossiersResponseType(); - } - - /** - * Create an instance of {@link GraydonCreditGetReportRequestType } - * - */ - public GraydonCreditGetReportRequestType createGraydonCreditGetReportRequestType() { - return new GraydonCreditGetReportRequestType(); - } - - /** - * Create an instance of {@link AddressProvinceListResponseType } - * - */ - public AddressProvinceListResponseType createAddressProvinceListResponseType() { - return new AddressProvinceListResponseType(); - } - - /** - * Create an instance of {@link CreditsafeMonitorRemoveCompanyRequestType } - * - */ - public CreditsafeMonitorRemoveCompanyRequestType createCreditsafeMonitorRemoveCompanyRequestType() { - return new CreditsafeMonitorRemoveCompanyRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateRemoveDossierResponseType } - * - */ - public DutchBusinessUpdateRemoveDossierResponseType createDutchBusinessUpdateRemoveDossierResponseType() { - return new DutchBusinessUpdateRemoveDossierResponseType(); - } - - /** - * Create an instance of {@link AddressDistrictListNeighborhoodsResponseType } - * - */ - public AddressDistrictListNeighborhoodsResponseType createAddressDistrictListNeighborhoodsResponseType() { - return new AddressDistrictListNeighborhoodsResponseType(); - } - - /** - * Create an instance of {@link DutchVehicleGetOwnerHistoryResponseType } - * - */ - public DutchVehicleGetOwnerHistoryResponseType createDutchVehicleGetOwnerHistoryResponseType() { - return new DutchVehicleGetOwnerHistoryResponseType(); - } - - /** - * Create an instance of {@link KadasterV2GetHypothecairBerichtObjectByAdresResponseType } - * - */ - public KadasterV2GetHypothecairBerichtObjectByAdresResponseType createKadasterV2GetHypothecairBerichtObjectByAdresResponseType() { - return new KadasterV2GetHypothecairBerichtObjectByAdresResponseType(); - } - - /** - * Create an instance of {@link CreditsafeSearchRequestType } - * - */ - public CreditsafeSearchRequestType createCreditsafeSearchRequestType() { - return new CreditsafeSearchRequestType(); - } - - /** - * Create an instance of {@link DutchVehicleGetPurchaseReferenceRequestType } - * - */ - public DutchVehicleGetPurchaseReferenceRequestType createDutchVehicleGetPurchaseReferenceRequestType() { - return new DutchVehicleGetPurchaseReferenceRequestType(); - } - - /** - * Create an instance of {@link AccountEditV2ResponseType } - * - */ - public AccountEditV2ResponseType createAccountEditV2ResponseType() { - return new AccountEditV2ResponseType(); - } - - /** - * Create an instance of {@link DnbBusinessVerificationResponseType } - * - */ - public DnbBusinessVerificationResponseType createDnbBusinessVerificationResponseType() { - return new DnbBusinessVerificationResponseType(); - } - - /** - * Create an instance of {@link CarVWEVersionPriceResponseType } - * - */ - public CarVWEVersionPriceResponseType createCarVWEVersionPriceResponseType() { - return new CarVWEVersionPriceResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetLegalExtractDocumentDataV2RequestType } - * - */ - public DutchBusinessGetLegalExtractDocumentDataV2RequestType createDutchBusinessGetLegalExtractDocumentDataV2RequestType() { - return new DutchBusinessGetLegalExtractDocumentDataV2RequestType(); - } - - /** - * Create an instance of {@link UserRemoveRequestType } - * - */ - public UserRemoveRequestType createUserRemoveRequestType() { - return new UserRemoveRequestType(); - } - - /** - * Create an instance of {@link UserViewBalanceResponseType } - * - */ - public UserViewBalanceResponseType createUserViewBalanceResponseType() { - return new UserViewBalanceResponseType(); - } - - /** - * Create an instance of {@link CarRDWCarDataRequestType } - * - */ - public CarRDWCarDataRequestType createCarRDWCarDataRequestType() { - return new CarRDWCarDataRequestType(); - } - - /** - * Create an instance of {@link UserAddGroupRequestType } - * - */ - public UserAddGroupRequestType createUserAddGroupRequestType() { - return new UserAddGroupRequestType(); - } - - /** - * Create an instance of {@link DutchVehicleGetVehicleResponseType } - * - */ - public DutchVehicleGetVehicleResponseType createDutchVehicleGetVehicleResponseType() { - return new DutchVehicleGetVehicleResponseType(); - } - - /** - * Create an instance of {@link GeoLocationInternationalPostcodeCoordinatesLatLonResponseType } - * - */ - public GeoLocationInternationalPostcodeCoordinatesLatLonResponseType createGeoLocationInternationalPostcodeCoordinatesLatLonResponseType() { - return new GeoLocationInternationalPostcodeCoordinatesLatLonResponseType(); - } - - /** - * Create an instance of {@link MapViewPostcodeV2RequestType } - * - */ - public MapViewPostcodeV2RequestType createMapViewPostcodeV2RequestType() { - return new MapViewPostcodeV2RequestType(); - } - - /** - * Create an instance of {@link KvkSearchDossierNumberRequestType } - * - */ - public KvkSearchDossierNumberRequestType createKvkSearchDossierNumberRequestType() { - return new KvkSearchDossierNumberRequestType(); - } - - /** - * Create an instance of {@link UserEditExtendedV2ResponseType } - * - */ - public UserEditExtendedV2ResponseType createUserEditExtendedV2ResponseType() { - return new UserEditExtendedV2ResponseType(); - } - - /** - * Create an instance of {@link AddressDistrictListCitiesResponseType } - * - */ - public AddressDistrictListCitiesResponseType createAddressDistrictListCitiesResponseType() { - return new AddressDistrictListCitiesResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetLegalExtractDocumentDataV3RequestType } - * - */ - public DutchBusinessGetLegalExtractDocumentDataV3RequestType createDutchBusinessGetLegalExtractDocumentDataV3RequestType() { - return new DutchBusinessGetLegalExtractDocumentDataV3RequestType(); - } - - /** - * Create an instance of {@link DutchVehicleGetMarketValueResponseType } - * - */ - public DutchVehicleGetMarketValueResponseType createDutchVehicleGetMarketValueResponseType() { - return new DutchVehicleGetMarketValueResponseType(); - } - - /** - * Create an instance of {@link AreaCodeLookupResponseType } - * - */ - public AreaCodeLookupResponseType createAreaCodeLookupResponseType() { - return new AreaCodeLookupResponseType(); - } - - /** - * Create an instance of {@link KadasterEigendomsBerichtDocumentPostcodeResponseType } - * - */ - public KadasterEigendomsBerichtDocumentPostcodeResponseType createKadasterEigendomsBerichtDocumentPostcodeResponseType() { - return new KadasterEigendomsBerichtDocumentPostcodeResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetDossierV2ResponseType } - * - */ - public DutchBusinessGetDossierV2ResponseType createDutchBusinessGetDossierV2ResponseType() { - return new DutchBusinessGetDossierV2ResponseType(); - } - - /** - * Create an instance of {@link BusinessSearchSelectionV2ResponseType } - * - */ - public BusinessSearchSelectionV2ResponseType createBusinessSearchSelectionV2ResponseType() { - return new BusinessSearchSelectionV2ResponseType(); - } - - /** - * Create an instance of {@link AddressDistrictListCitiesRequestType } - * - */ - public AddressDistrictListCitiesRequestType createAddressDistrictListCitiesRequestType() { - return new AddressDistrictListCitiesRequestType(); - } - - /** - * Create an instance of {@link GeoLocationPostcodeCoordinatesLatLonRequestType } - * - */ - public GeoLocationPostcodeCoordinatesLatLonRequestType createGeoLocationPostcodeCoordinatesLatLonRequestType() { - return new GeoLocationPostcodeCoordinatesLatLonRequestType(); - } - - /** - * Create an instance of {@link KadasterV2GetKadastraalBerichtObjectByAdresResponseType } - * - */ - public KadasterV2GetKadastraalBerichtObjectByAdresResponseType createKadasterV2GetKadastraalBerichtObjectByAdresResponseType() { - return new KadasterV2GetKadastraalBerichtObjectByAdresResponseType(); - } - - /** - * Create an instance of {@link GeoLocationRDToAddressV2ResponseType } - * - */ - public GeoLocationRDToAddressV2ResponseType createGeoLocationRDToAddressV2ResponseType() { - return new GeoLocationRDToAddressV2ResponseType(); - } - - /** - * Create an instance of {@link KadasterUittrekselKadastraleKaartPerceelV3ResponseType } - * - */ - public KadasterUittrekselKadastraleKaartPerceelV3ResponseType createKadasterUittrekselKadastraleKaartPerceelV3ResponseType() { - return new KadasterUittrekselKadastraleKaartPerceelV3ResponseType(); - } - - /** - * Create an instance of {@link RoutePlannerEUInformationResponseType } - * - */ - public RoutePlannerEUInformationResponseType createRoutePlannerEUInformationResponseType() { - return new RoutePlannerEUInformationResponseType(); - } - - /** - * Create an instance of {@link GeoLocationDistanceSortedPostcodesRequestType } - * - */ - public GeoLocationDistanceSortedPostcodesRequestType createGeoLocationDistanceSortedPostcodesRequestType() { - return new GeoLocationDistanceSortedPostcodesRequestType(); - } - - /** - * Create an instance of {@link GraydonCreditVatNumberResponseType } - * - */ - public GraydonCreditVatNumberResponseType createGraydonCreditVatNumberResponseType() { - return new GraydonCreditVatNumberResponseType(); - } - - /** - * Create an instance of {@link AreaCodeToNeighborhoodcodeResponseType } - * - */ - public AreaCodeToNeighborhoodcodeResponseType createAreaCodeToNeighborhoodcodeResponseType() { - return new AreaCodeToNeighborhoodcodeResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetOrganizationTreeResponseType } - * - */ - public DutchBusinessGetOrganizationTreeResponseType createDutchBusinessGetOrganizationTreeResponseType() { - return new DutchBusinessGetOrganizationTreeResponseType(); - } - - /** - * Create an instance of {@link GeoLocationHaversineDistanceRequestType } - * - */ - public GeoLocationHaversineDistanceRequestType createGeoLocationHaversineDistanceRequestType() { - return new GeoLocationHaversineDistanceRequestType(); - } - - /** - * Create an instance of {@link RoutePlannerRDDescriptionRequestType } - * - */ - public RoutePlannerRDDescriptionRequestType createRoutePlannerRDDescriptionRequestType() { - return new RoutePlannerRDDescriptionRequestType(); - } - - /** - * Create an instance of {@link CarVWEMeldcodeCheckRequestType } - * - */ - public CarVWEMeldcodeCheckRequestType createCarVWEMeldcodeCheckRequestType() { - return new CarVWEMeldcodeCheckRequestType(); - } - - /** - * Create an instance of {@link GeoLocationHaversineDistanceResponseType } - * - */ - public GeoLocationHaversineDistanceResponseType createGeoLocationHaversineDistanceResponseType() { - return new GeoLocationHaversineDistanceResponseType(); - } - - /** - * Create an instance of {@link BusinessUpdateCheckDossierRequestType } - * - */ - public BusinessUpdateCheckDossierRequestType createBusinessUpdateCheckDossierRequestType() { - return new BusinessUpdateCheckDossierRequestType(); - } - - /** - * Create an instance of {@link GeoLocationRDToPostcodeRequestType } - * - */ - public GeoLocationRDToPostcodeRequestType createGeoLocationRDToPostcodeRequestType() { - return new GeoLocationRDToPostcodeRequestType(); - } - - /** - * Create an instance of {@link BovagGetMemberByBovagIdRequestType } - * - */ - public BovagGetMemberByBovagIdRequestType createBovagGetMemberByBovagIdRequestType() { - return new BovagGetMemberByBovagIdRequestType(); - } - - /** - * Create an instance of {@link KvkSearchSelectionResponseType } - * - */ - public KvkSearchSelectionResponseType createKvkSearchSelectionResponseType() { - return new KvkSearchSelectionResponseType(); - } - - /** - * Create an instance of {@link GeoLocationRDToAddressV2RequestType } - * - */ - public GeoLocationRDToAddressV2RequestType createGeoLocationRDToAddressV2RequestType() { - return new GeoLocationRDToAddressV2RequestType(); - } - - /** - * Create an instance of {@link MetaGetServicesRequestType } - * - */ - public MetaGetServicesRequestType createMetaGetServicesRequestType() { - return new MetaGetServicesRequestType(); - } - - /** - * Create an instance of {@link KadasterKadastraleKaartPostcodeV2RequestType } - * - */ - public KadasterKadastraleKaartPostcodeV2RequestType createKadasterKadastraleKaartPostcodeV2RequestType() { - return new KadasterKadastraleKaartPostcodeV2RequestType(); - } - - /** - * Create an instance of {@link AccountGetCreationTokenResponseType } - * - */ - public AccountGetCreationTokenResponseType createAccountGetCreationTokenResponseType() { - return new AccountGetCreationTokenResponseType(); - } - - /** - * Create an instance of {@link GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType } - * - */ - public GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType createGeoLocationInternationalAddressCoordinatesLatLonV2ResponseType() { - return new GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType(); - } - - /** - * Create an instance of {@link RoutePlannerGetRouteResponseType } - * - */ - public RoutePlannerGetRouteResponseType createRoutePlannerGetRouteResponseType() { - return new RoutePlannerGetRouteResponseType(); - } - - /** - * Create an instance of {@link UserSessionRemoveResponseType } - * - */ - public UserSessionRemoveResponseType createUserSessionRemoveResponseType() { - return new UserSessionRemoveResponseType(); - } - - /** - * Create an instance of {@link BusinessSBIToBIKResponseType } - * - */ - public BusinessSBIToBIKResponseType createBusinessSBIToBIKResponseType() { - return new BusinessSBIToBIKResponseType(); - } - - /** - * Create an instance of {@link InsolvencyGetCaseByPublicationRequestType } - * - */ - public InsolvencyGetCaseByPublicationRequestType createInsolvencyGetCaseByPublicationRequestType() { - return new InsolvencyGetCaseByPublicationRequestType(); - } - - /** - * Create an instance of {@link BusinessSearchSelectionV2RequestType } - * - */ - public BusinessSearchSelectionV2RequestType createBusinessSearchSelectionV2RequestType() { - return new BusinessSearchSelectionV2RequestType(); - } - - /** - * Create an instance of {@link CarRDWCarDataV3ResponseType } - * - */ - public CarRDWCarDataV3ResponseType createCarRDWCarDataV3ResponseType() { - return new CarRDWCarDataV3ResponseType(); - } - - /** - * Create an instance of {@link DnbWorldbaseMarketingPlusRequestType } - * - */ - public DnbWorldbaseMarketingPlusRequestType createDnbWorldbaseMarketingPlusRequestType() { - return new DnbWorldbaseMarketingPlusRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchDossierNumberRequestType } - * - */ - public DutchBusinessSearchDossierNumberRequestType createDutchBusinessSearchDossierNumberRequestType() { - return new DutchBusinessSearchDossierNumberRequestType(); - } - - /** - * Create an instance of {@link KadasterEigendomsBerichtPostcodeV2RequestType } - * - */ - public KadasterEigendomsBerichtPostcodeV2RequestType createKadasterEigendomsBerichtPostcodeV2RequestType() { - return new KadasterEigendomsBerichtPostcodeV2RequestType(); - } - - /** - * Create an instance of {@link KadasterHypothecairBerichtPerceelResponseType } - * - */ - public KadasterHypothecairBerichtPerceelResponseType createKadasterHypothecairBerichtPerceelResponseType() { - return new KadasterHypothecairBerichtPerceelResponseType(); - } - - /** - * Create an instance of {@link AddressCityListNeighborhoodsRequestType } - * - */ - public AddressCityListNeighborhoodsRequestType createAddressCityListNeighborhoodsRequestType() { - return new AddressCityListNeighborhoodsRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchParametersV2ResponseType } - * - */ - public DutchBusinessSearchParametersV2ResponseType createDutchBusinessSearchParametersV2ResponseType() { - return new DutchBusinessSearchParametersV2ResponseType(); - } - - /** - * Create an instance of {@link UserSessionListResponseType } - * - */ - public UserSessionListResponseType createUserSessionListResponseType() { - return new UserSessionListResponseType(); - } - - /** - * Create an instance of {@link InternationalAddressSearchV2RequestType } - * - */ - public InternationalAddressSearchV2RequestType createInternationalAddressSearchV2RequestType() { - return new InternationalAddressSearchV2RequestType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchPostcodeResponseType } - * - */ - public DutchBusinessSearchPostcodeResponseType createDutchBusinessSearchPostcodeResponseType() { - return new DutchBusinessSearchPostcodeResponseType(); - } - - /** - * Create an instance of {@link KadasterAddressCoordinatesResponseType } - * - */ - public KadasterAddressCoordinatesResponseType createKadasterAddressCoordinatesResponseType() { - return new KadasterAddressCoordinatesResponseType(); - } - - /** - * Create an instance of {@link GeoLocationInternationalAddressCoordinatesLatLonV2RequestType } - * - */ - public GeoLocationInternationalAddressCoordinatesLatLonV2RequestType createGeoLocationInternationalAddressCoordinatesLatLonV2RequestType() { - return new GeoLocationInternationalAddressCoordinatesLatLonV2RequestType(); - } - - /** - * Create an instance of {@link BusinessSearchDossierNumberRequestType } - * - */ - public BusinessSearchDossierNumberRequestType createBusinessSearchDossierNumberRequestType() { - return new BusinessSearchDossierNumberRequestType(); - } - - /** - * Create an instance of {@link RoutePlannerDescriptionShortestResponseType } - * - */ - public RoutePlannerDescriptionShortestResponseType createRoutePlannerDescriptionShortestResponseType() { - return new RoutePlannerDescriptionShortestResponseType(); - } - - /** - * Create an instance of {@link AddressProvinceSearchRequestType } - * - */ - public AddressProvinceSearchRequestType createAddressProvinceSearchRequestType() { - return new AddressProvinceSearchRequestType(); - } - - /** - * Create an instance of {@link CarRDWCarCheckCodeResponseType } - * - */ - public CarRDWCarCheckCodeResponseType createCarRDWCarCheckCodeResponseType() { - return new CarRDWCarCheckCodeResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchRequestType } - * - */ - public DutchBusinessSearchRequestType createDutchBusinessSearchRequestType() { - return new DutchBusinessSearchRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateAddDossierRequestType } - * - */ - public DutchBusinessUpdateAddDossierRequestType createDutchBusinessUpdateAddDossierRequestType() { - return new DutchBusinessUpdateAddDossierRequestType(); - } - - /** - * Create an instance of {@link KadasterKoopsommenOverzichtV2RequestType } - * - */ - public KadasterKoopsommenOverzichtV2RequestType createKadasterKoopsommenOverzichtV2RequestType() { - return new KadasterKoopsommenOverzichtV2RequestType(); - } - - /** - * Create an instance of {@link BusinessGetDossierExtendedResponseType } - * - */ - public BusinessGetDossierExtendedResponseType createBusinessGetDossierExtendedResponseType() { - return new BusinessGetDossierExtendedResponseType(); - } - - /** - * Create an instance of {@link AddressDistrictSearchResponseType } - * - */ - public AddressDistrictSearchResponseType createAddressDistrictSearchResponseType() { - return new AddressDistrictSearchResponseType(); - } - - /** - * Create an instance of {@link BelgianBusinessGetDossierRequestType } - * - */ - public BelgianBusinessGetDossierRequestType createBelgianBusinessGetDossierRequestType() { - return new BelgianBusinessGetDossierRequestType(); - } - - /** - * Create an instance of {@link GeoLocationInternationalPostcodeCoordinatesLatLonRequestType } - * - */ - public GeoLocationInternationalPostcodeCoordinatesLatLonRequestType createGeoLocationInternationalPostcodeCoordinatesLatLonRequestType() { - return new GeoLocationInternationalPostcodeCoordinatesLatLonRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetNonMarketingIndicatorRequestType } - * - */ - public DutchBusinessGetNonMarketingIndicatorRequestType createDutchBusinessGetNonMarketingIndicatorRequestType() { - return new DutchBusinessGetNonMarketingIndicatorRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchDossierNumberResponseType } - * - */ - public DutchBusinessSearchDossierNumberResponseType createDutchBusinessSearchDossierNumberResponseType() { - return new DutchBusinessSearchDossierNumberResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetAnnualFinancialStatementResponseType } - * - */ - public DutchBusinessGetAnnualFinancialStatementResponseType createDutchBusinessGetAnnualFinancialStatementResponseType() { - return new DutchBusinessGetAnnualFinancialStatementResponseType(); - } - - /** - * Create an instance of {@link InsolvencyGetCaseByPublicationResponseType } - * - */ - public InsolvencyGetCaseByPublicationResponseType createInsolvencyGetCaseByPublicationResponseType() { - return new InsolvencyGetCaseByPublicationResponseType(); - } - - /** - * Create an instance of {@link UserViewV2RequestType } - * - */ - public UserViewV2RequestType createUserViewV2RequestType() { - return new UserViewV2RequestType(); - } - - /** - * Create an instance of {@link AddressNeighborhoodNameRequestType } - * - */ - public AddressNeighborhoodNameRequestType createAddressNeighborhoodNameRequestType() { - return new AddressNeighborhoodNameRequestType(); - } - - /** - * Create an instance of {@link DriveInfoTimeLookupResponseType } - * - */ - public DriveInfoTimeLookupResponseType createDriveInfoTimeLookupResponseType() { - return new DriveInfoTimeLookupResponseType(); - } - - /** - * Create an instance of {@link AddressReeksParameterSearchResponseType } - * - */ - public AddressReeksParameterSearchResponseType createAddressReeksParameterSearchResponseType() { - return new AddressReeksParameterSearchResponseType(); - } - - /** - * Create an instance of {@link AddressProvinceListNeighborhoodsResponseType } - * - */ - public AddressProvinceListNeighborhoodsResponseType createAddressProvinceListNeighborhoodsResponseType() { - return new AddressProvinceListNeighborhoodsResponseType(); - } - - /** - * Create an instance of {@link KadasterV2GetHypothecairBerichtObjectByAdresRequestType } - * - */ - public KadasterV2GetHypothecairBerichtObjectByAdresRequestType createKadasterV2GetHypothecairBerichtObjectByAdresRequestType() { - return new KadasterV2GetHypothecairBerichtObjectByAdresRequestType(); - } - - /** - * Create an instance of {@link BovagGetMemberByDutchBusinessResponseType } - * - */ - public BovagGetMemberByDutchBusinessResponseType createBovagGetMemberByDutchBusinessResponseType() { - return new BovagGetMemberByDutchBusinessResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessUBOStartInvestigationRequestType } - * - */ - public DutchBusinessUBOStartInvestigationRequestType createDutchBusinessUBOStartInvestigationRequestType() { - return new DutchBusinessUBOStartInvestigationRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractHistoryChangedResponseType } - * - */ - public DutchBusinessGetExtractHistoryChangedResponseType createDutchBusinessGetExtractHistoryChangedResponseType() { - return new DutchBusinessGetExtractHistoryChangedResponseType(); - } - - /** - * Create an instance of {@link RoutePlannerDescriptionAddressRequestType } - * - */ - public RoutePlannerDescriptionAddressRequestType createRoutePlannerDescriptionAddressRequestType() { - return new RoutePlannerDescriptionAddressRequestType(); - } - - /** - * Create an instance of {@link UserRemoveGroupRequestType } - * - */ - public UserRemoveGroupRequestType createUserRemoveGroupRequestType() { - return new UserRemoveGroupRequestType(); - } - - /** - * Create an instance of {@link UserRemoveGroupResponseType } - * - */ - public UserRemoveGroupResponseType createUserRemoveGroupResponseType() { - return new UserRemoveGroupResponseType(); - } - - /** - * Create an instance of {@link KadasterBronDocumentRequestType } - * - */ - public KadasterBronDocumentRequestType createKadasterBronDocumentRequestType() { - return new KadasterBronDocumentRequestType(); - } - - /** - * Create an instance of {@link RoutePlannerInformationAddressRequestType } - * - */ - public RoutePlannerInformationAddressRequestType createRoutePlannerInformationAddressRequestType() { - return new RoutePlannerInformationAddressRequestType(); - } - - /** - * Create an instance of {@link AreaCodeLookupRequestType } - * - */ - public AreaCodeLookupRequestType createAreaCodeLookupRequestType() { - return new AreaCodeLookupRequestType(); - } - - /** - * Create an instance of {@link DnbWorldbaseMarketingRequestType } - * - */ - public DnbWorldbaseMarketingRequestType createDnbWorldbaseMarketingRequestType() { - return new DnbWorldbaseMarketingRequestType(); - } - - /** - * Create an instance of {@link KadasterHypothecairBerichtPostcodeRequestType } - * - */ - public KadasterHypothecairBerichtPostcodeRequestType createKadasterHypothecairBerichtPostcodeRequestType() { - return new KadasterHypothecairBerichtPostcodeRequestType(); - } - - /** - * Create an instance of {@link GeoLocationInternationalAddressCoordinatesLatLonRequestType } - * - */ - public GeoLocationInternationalAddressCoordinatesLatLonRequestType createGeoLocationInternationalAddressCoordinatesLatLonRequestType() { - return new GeoLocationInternationalAddressCoordinatesLatLonRequestType(); - } - - /** - * Create an instance of {@link BusinessGetSBIDescriptionResponseType } - * - */ - public BusinessGetSBIDescriptionResponseType createBusinessGetSBIDescriptionResponseType() { - return new BusinessGetSBIDescriptionResponseType(); - } - - /** - * Create an instance of {@link UserNotifyRequestType } - * - */ - public UserNotifyRequestType createUserNotifyRequestType() { - return new UserNotifyRequestType(); - } - - /** - * Create an instance of {@link MapViewRDResponseType } - * - */ - public MapViewRDResponseType createMapViewRDResponseType() { - return new MapViewRDResponseType(); - } - - /** - * Create an instance of {@link BusinessBIKToSBIRequestType } - * - */ - public BusinessBIKToSBIRequestType createBusinessBIKToSBIRequestType() { - return new BusinessBIKToSBIRequestType(); - } - - /** - * Create an instance of {@link CarVWEBasicTypeDataRequestType } - * - */ - public CarVWEBasicTypeDataRequestType createCarVWEBasicTypeDataRequestType() { - return new CarVWEBasicTypeDataRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessUBOCostsInvestigationResponseType } - * - */ - public DutchBusinessUBOCostsInvestigationResponseType createDutchBusinessUBOCostsInvestigationResponseType() { - return new DutchBusinessUBOCostsInvestigationResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchParametersRequestType } - * - */ - public DutchBusinessSearchParametersRequestType createDutchBusinessSearchParametersRequestType() { - return new DutchBusinessSearchParametersRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateGetChangedDossiersRequestType } - * - */ - public DutchBusinessUpdateGetChangedDossiersRequestType createDutchBusinessUpdateGetChangedDossiersRequestType() { - return new DutchBusinessUpdateGetChangedDossiersRequestType(); - } - - /** - * Create an instance of {@link BusinessUpdateAddDossierRequestType } - * - */ - public BusinessUpdateAddDossierRequestType createBusinessUpdateAddDossierRequestType() { - return new BusinessUpdateAddDossierRequestType(); - } - - /** - * Create an instance of {@link RoutePlannerDescriptionRequestType } - * - */ - public RoutePlannerDescriptionRequestType createRoutePlannerDescriptionRequestType() { - return new RoutePlannerDescriptionRequestType(); - } - - /** - * Create an instance of {@link BusinessSearchAddressRequestType } - * - */ - public BusinessSearchAddressRequestType createBusinessSearchAddressRequestType() { - return new BusinessSearchAddressRequestType(); - } - - /** - * Create an instance of {@link GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType } - * - */ - public GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType createGeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType() { - return new GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType(); - } - - /** - * Create an instance of {@link KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType } - * - */ - public KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType createKadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType() { - return new KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType(); - } - - /** - * Create an instance of {@link GraydonCreditCompanyLiaisonsResponseType } - * - */ - public GraydonCreditCompanyLiaisonsResponseType createGraydonCreditCompanyLiaisonsResponseType() { - return new GraydonCreditCompanyLiaisonsResponseType(); - } - - /** - * Create an instance of {@link DnbBusinessVerificationRequestType } - * - */ - public DnbBusinessVerificationRequestType createDnbBusinessVerificationRequestType() { - return new DnbBusinessVerificationRequestType(); - } - - /** - * Create an instance of {@link KadasterKadastraleKaartPerceelV2RequestType } - * - */ - public KadasterKadastraleKaartPerceelV2RequestType createKadasterKadastraleKaartPerceelV2RequestType() { - return new KadasterKadastraleKaartPerceelV2RequestType(); - } - - /** - * Create an instance of {@link RoutePlannerRDDescriptionResponseType } - * - */ - public RoutePlannerRDDescriptionResponseType createRoutePlannerRDDescriptionResponseType() { - return new RoutePlannerRDDescriptionResponseType(); - } - - /** - * Create an instance of {@link KvkUpdateCheckDossierResponseType } - * - */ - public KvkUpdateCheckDossierResponseType createKvkUpdateCheckDossierResponseType() { - return new KvkUpdateCheckDossierResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetSBIRequestType } - * - */ - public DutchBusinessGetSBIRequestType createDutchBusinessGetSBIRequestType() { - return new DutchBusinessGetSBIRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetConcernRelationsDetailsRequestType } - * - */ - public DutchBusinessGetConcernRelationsDetailsRequestType createDutchBusinessGetConcernRelationsDetailsRequestType() { - return new DutchBusinessGetConcernRelationsDetailsRequestType(); - } - - /** - * Create an instance of {@link MetaGetServicesResponseType } - * - */ - public MetaGetServicesResponseType createMetaGetServicesResponseType() { - return new MetaGetServicesResponseType(); - } - - /** - * Create an instance of {@link GraydonCreditQuickscanResponseType } - * - */ - public GraydonCreditQuickscanResponseType createGraydonCreditQuickscanResponseType() { - return new GraydonCreditQuickscanResponseType(); - } - - /** - * Create an instance of {@link KvkUpdateGetDossiersResponseType } - * - */ - public KvkUpdateGetDossiersResponseType createKvkUpdateGetDossiersResponseType() { - return new KvkUpdateGetDossiersResponseType(); - } - - /** - * Create an instance of {@link RoutePlannerGetRouteRequestType } - * - */ - public RoutePlannerGetRouteRequestType createRoutePlannerGetRouteRequestType() { - return new RoutePlannerGetRouteRequestType(); - } - - /** - * Create an instance of {@link NbwoEstimateValueRequestType } - * - */ - public NbwoEstimateValueRequestType createNbwoEstimateValueRequestType() { - return new NbwoEstimateValueRequestType(); - } - - /** - * Create an instance of {@link DnbEnterpriseManagementResponseType } - * - */ - public DnbEnterpriseManagementResponseType createDnbEnterpriseManagementResponseType() { - return new DnbEnterpriseManagementResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetAdditionalPositionsRequestType } - * - */ - public DutchBusinessGetAdditionalPositionsRequestType createDutchBusinessGetAdditionalPositionsRequestType() { - return new DutchBusinessGetAdditionalPositionsRequestType(); - } - - /** - * Create an instance of {@link KadasterKadastraleKaartPostcodeRequestType } - * - */ - public KadasterKadastraleKaartPostcodeRequestType createKadasterKadastraleKaartPostcodeRequestType() { - return new KadasterKadastraleKaartPostcodeRequestType(); - } - - /** - * Create an instance of {@link AccountUserSearchV2RequestType } - * - */ - public AccountUserSearchV2RequestType createAccountUserSearchV2RequestType() { - return new AccountUserSearchV2RequestType(); - } - - /** - * Create an instance of {@link GraydonCreditRatingsRequestType } - * - */ - public GraydonCreditRatingsRequestType createGraydonCreditRatingsRequestType() { - return new GraydonCreditRatingsRequestType(); - } - - /** - * Create an instance of {@link GeoLocationDistanceSortedNeighborhoodCodesResponseType } - * - */ - public GeoLocationDistanceSortedNeighborhoodCodesResponseType createGeoLocationDistanceSortedNeighborhoodCodesResponseType() { - return new GeoLocationDistanceSortedNeighborhoodCodesResponseType(); - } - - /** - * Create an instance of {@link KvkGetExtractDocumentRequestType } - * - */ - public KvkGetExtractDocumentRequestType createKvkGetExtractDocumentRequestType() { - return new KvkGetExtractDocumentRequestType(); - } - - /** - * Create an instance of {@link CreditsafeGetReportFullV2ResponseType } - * - */ - public CreditsafeGetReportFullV2ResponseType createCreditsafeGetReportFullV2ResponseType() { - return new CreditsafeGetReportFullV2ResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateGetOverviewRequestType } - * - */ - public DutchBusinessUpdateGetOverviewRequestType createDutchBusinessUpdateGetOverviewRequestType() { - return new DutchBusinessUpdateGetOverviewRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetVatNumberResponseType } - * - */ - public DutchBusinessGetVatNumberResponseType createDutchBusinessGetVatNumberResponseType() { - return new DutchBusinessGetVatNumberResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetPositionsRequestType } - * - */ - public DutchBusinessGetPositionsRequestType createDutchBusinessGetPositionsRequestType() { - return new DutchBusinessGetPositionsRequestType(); - } - - /** - * Create an instance of {@link UserEditExtendedV2RequestType } - * - */ - public UserEditExtendedV2RequestType createUserEditExtendedV2RequestType() { - return new UserEditExtendedV2RequestType(); - } - - /** - * Create an instance of {@link CarVWEVersionPriceRequestType } - * - */ - public CarVWEVersionPriceRequestType createCarVWEVersionPriceRequestType() { - return new CarVWEVersionPriceRequestType(); - } - - /** - * Create an instance of {@link DutchVehicleGetMarketValueRequestType } - * - */ - public DutchVehicleGetMarketValueRequestType createDutchVehicleGetMarketValueRequestType() { - return new DutchVehicleGetMarketValueRequestType(); - } - - /** - * Create an instance of {@link RoutePlannerEUDescriptionCoordinatesLatLonResponseType } - * - */ - public RoutePlannerEUDescriptionCoordinatesLatLonResponseType createRoutePlannerEUDescriptionCoordinatesLatLonResponseType() { - return new RoutePlannerEUDescriptionCoordinatesLatLonResponseType(); - } - - /** - * Create an instance of {@link GeoLocationLatLonToAddressV2ResponseType } - * - */ - public GeoLocationLatLonToAddressV2ResponseType createGeoLocationLatLonToAddressV2ResponseType() { - return new GeoLocationLatLonToAddressV2ResponseType(); - } - - /** - * Create an instance of {@link KadasterUittrekselKadastraleKaartPostcodeV3ResponseType } - * - */ - public KadasterUittrekselKadastraleKaartPostcodeV3ResponseType createKadasterUittrekselKadastraleKaartPostcodeV3ResponseType() { - return new KadasterUittrekselKadastraleKaartPostcodeV3ResponseType(); - } - - /** - * Create an instance of {@link GeoLocationPostcodeCoordinatesRDResponseType } - * - */ - public GeoLocationPostcodeCoordinatesRDResponseType createGeoLocationPostcodeCoordinatesRDResponseType() { - return new GeoLocationPostcodeCoordinatesRDResponseType(); - } - - /** - * Create an instance of {@link KadasterHypothecairBerichtPerceelV3RequestType } - * - */ - public KadasterHypothecairBerichtPerceelV3RequestType createKadasterHypothecairBerichtPerceelV3RequestType() { - return new KadasterHypothecairBerichtPerceelV3RequestType(); - } - - /** - * Create an instance of {@link KadasterEigendomsBerichtPerceelResponseType } - * - */ - public KadasterEigendomsBerichtPerceelResponseType createKadasterEigendomsBerichtPerceelResponseType() { - return new KadasterEigendomsBerichtPerceelResponseType(); - } - - /** - * Create an instance of {@link KadasterHypothecairBerichtPerceelV2RequestType } - * - */ - public KadasterHypothecairBerichtPerceelV2RequestType createKadasterHypothecairBerichtPerceelV2RequestType() { - return new KadasterHypothecairBerichtPerceelV2RequestType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchSelectionResponseType } - * - */ - public DutchBusinessSearchSelectionResponseType createDutchBusinessSearchSelectionResponseType() { - return new DutchBusinessSearchSelectionResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType } - * - */ - public DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType createDutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType() { - return new DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType(); - } - - /** - * Create an instance of {@link UserEditBalanceResponseType } - * - */ - public UserEditBalanceResponseType createUserEditBalanceResponseType() { - return new UserEditBalanceResponseType(); - } - - /** - * Create an instance of {@link LoginRequestType } - * - */ - public LoginRequestType createLoginRequestType() { - return new LoginRequestType(); - } - - /** - * Create an instance of {@link MetaGetServiceRequestType } - * - */ - public MetaGetServiceRequestType createMetaGetServiceRequestType() { - return new MetaGetServiceRequestType(); - } - - /** - * Create an instance of {@link BusinessGetBIKDescriptionResponseType } - * - */ - public BusinessGetBIKDescriptionResponseType createBusinessGetBIKDescriptionResponseType() { - return new BusinessGetBIKDescriptionResponseType(); - } - - /** - * Create an instance of {@link DutchVehicleGetVehicleRequestType } - * - */ - public DutchVehicleGetVehicleRequestType createDutchVehicleGetVehicleRequestType() { - return new DutchVehicleGetVehicleRequestType(); - } - - /** - * Create an instance of {@link KadasterV2GetKoopsommenOverzichtRequestType } - * - */ - public KadasterV2GetKoopsommenOverzichtRequestType createKadasterV2GetKoopsommenOverzichtRequestType() { - return new KadasterV2GetKoopsommenOverzichtRequestType(); - } - - /** - * Create an instance of {@link InternationalAddressSearchV2ResponseType } - * - */ - public InternationalAddressSearchV2ResponseType createInternationalAddressSearchV2ResponseType() { - return new InternationalAddressSearchV2ResponseType(); - } - - /** - * Create an instance of {@link AccountViewHostRestrictionsRequestType } - * - */ - public AccountViewHostRestrictionsRequestType createAccountViewHostRestrictionsRequestType() { - return new AccountViewHostRestrictionsRequestType(); - } - - /** - * Create an instance of {@link CarRDWCarDataExtendedRequestType } - * - */ - public CarRDWCarDataExtendedRequestType createCarRDWCarDataExtendedRequestType() { - return new CarRDWCarDataExtendedRequestType(); - } - - /** - * Create an instance of {@link AddressPerceelPhraseSearchResponseType } - * - */ - public AddressPerceelPhraseSearchResponseType createAddressPerceelPhraseSearchResponseType() { - return new AddressPerceelPhraseSearchResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractDocumentDataV3RequestType } - * - */ - public DutchBusinessGetExtractDocumentDataV3RequestType createDutchBusinessGetExtractDocumentDataV3RequestType() { - return new DutchBusinessGetExtractDocumentDataV3RequestType(); - } - - /** - * Create an instance of {@link SepaValidateInternationalBankAccountNumberFormatResponseType } - * - */ - public SepaValidateInternationalBankAccountNumberFormatResponseType createSepaValidateInternationalBankAccountNumberFormatResponseType() { - return new SepaValidateInternationalBankAccountNumberFormatResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractDocumentDataV2RequestType } - * - */ - public DutchBusinessGetExtractDocumentDataV2RequestType createDutchBusinessGetExtractDocumentDataV2RequestType() { - return new DutchBusinessGetExtractDocumentDataV2RequestType(); - } - - /** - * Create an instance of {@link DutchBusinessUBOCheckInvestigationResponseType } - * - */ - public DutchBusinessUBOCheckInvestigationResponseType createDutchBusinessUBOCheckInvestigationResponseType() { - return new DutchBusinessUBOCheckInvestigationResponseType(); - } - - /** - * Create an instance of {@link AccountGetOrderTokenResponseType } - * - */ - public AccountGetOrderTokenResponseType createAccountGetOrderTokenResponseType() { - return new AccountGetOrderTokenResponseType(); - } - - /** - * Create an instance of {@link GeoLocationPostcodeDistanceRequestType } - * - */ - public GeoLocationPostcodeDistanceRequestType createGeoLocationPostcodeDistanceRequestType() { - return new GeoLocationPostcodeDistanceRequestType(); - } - - /** - * Create an instance of {@link GraydonCreditManagementRequestType } - * - */ - public GraydonCreditManagementRequestType createGraydonCreditManagementRequestType() { - return new GraydonCreditManagementRequestType(); - } - - /** - * Create an instance of {@link UserChangePasswordResponseType } - * - */ - public UserChangePasswordResponseType createUserChangePasswordResponseType() { - return new UserChangePasswordResponseType(); - } - - /** - * Create an instance of {@link KadasterUittrekselKadastraleKaartPostcodeV2RequestType } - * - */ - public KadasterUittrekselKadastraleKaartPostcodeV2RequestType createKadasterUittrekselKadastraleKaartPostcodeV2RequestType() { - return new KadasterUittrekselKadastraleKaartPostcodeV2RequestType(); - } - - /** - * Create an instance of {@link AddressPerceelParameterSearchResponseType } - * - */ - public AddressPerceelParameterSearchResponseType createAddressPerceelParameterSearchResponseType() { - return new AddressPerceelParameterSearchResponseType(); - } - - /** - * Create an instance of {@link KadasterEigendomsBerichtPerceelV2ResponseType } - * - */ - public KadasterEigendomsBerichtPerceelV2ResponseType createKadasterEigendomsBerichtPerceelV2ResponseType() { - return new KadasterEigendomsBerichtPerceelV2ResponseType(); - } - - /** - * Create an instance of {@link CarRDWCarDataV2ResponseType } - * - */ - public CarRDWCarDataV2ResponseType createCarRDWCarDataV2ResponseType() { - return new CarRDWCarDataV2ResponseType(); - } - - /** - * Create an instance of {@link KadasterUittrekselKadastraleKaartPostcodeV3RequestType } - * - */ - public KadasterUittrekselKadastraleKaartPostcodeV3RequestType createKadasterUittrekselKadastraleKaartPostcodeV3RequestType() { - return new KadasterUittrekselKadastraleKaartPostcodeV3RequestType(); - } - - /** - * Create an instance of {@link CreditsafeSearchCriteriaResponseType } - * - */ - public CreditsafeSearchCriteriaResponseType createCreditsafeSearchCriteriaResponseType() { - return new CreditsafeSearchCriteriaResponseType(); - } - - /** - * Create an instance of {@link RiskCheckPersonResponseType } - * - */ - public RiskCheckPersonResponseType createRiskCheckPersonResponseType() { - return new RiskCheckPersonResponseType(); - } - - /** - * Create an instance of {@link DnbSearchReferenceResponseType } - * - */ - public DnbSearchReferenceResponseType createDnbSearchReferenceResponseType() { - return new DnbSearchReferenceResponseType(); - } - - /** - * Create an instance of {@link KadasterUittrekselKadastraleKaartPostcodeResponseType } - * - */ - public KadasterUittrekselKadastraleKaartPostcodeResponseType createKadasterUittrekselKadastraleKaartPostcodeResponseType() { - return new KadasterUittrekselKadastraleKaartPostcodeResponseType(); - } - - /** - * Create an instance of {@link KadasterUittrekselKadastraleKaartPostcodeV2ResponseType } - * - */ - public KadasterUittrekselKadastraleKaartPostcodeV2ResponseType createKadasterUittrekselKadastraleKaartPostcodeV2ResponseType() { - return new KadasterUittrekselKadastraleKaartPostcodeV2ResponseType(); - } - - /** - * Create an instance of {@link CreditsafeMonitorAddCompanyResponseType } - * - */ - public CreditsafeMonitorAddCompanyResponseType createCreditsafeMonitorAddCompanyResponseType() { - return new CreditsafeMonitorAddCompanyResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetLegalExtractDocumentDataV3ResponseType } - * - */ - public DutchBusinessGetLegalExtractDocumentDataV3ResponseType createDutchBusinessGetLegalExtractDocumentDataV3ResponseType() { - return new DutchBusinessGetLegalExtractDocumentDataV3ResponseType(); - } - - /** - * Create an instance of {@link NbwoEstimateValueResponseType } - * - */ - public NbwoEstimateValueResponseType createNbwoEstimateValueResponseType() { - return new NbwoEstimateValueResponseType(); - } - - /** - * Create an instance of {@link GeoLocationLatLonToPostcodeResponseType } - * - */ - public GeoLocationLatLonToPostcodeResponseType createGeoLocationLatLonToPostcodeResponseType() { - return new GeoLocationLatLonToPostcodeResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractDocumentDataResponseType } - * - */ - public DutchBusinessGetExtractDocumentDataResponseType createDutchBusinessGetExtractDocumentDataResponseType() { - return new DutchBusinessGetExtractDocumentDataResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetDossierHistoryResponseType } - * - */ - public DutchBusinessGetDossierHistoryResponseType createDutchBusinessGetDossierHistoryResponseType() { - return new DutchBusinessGetDossierHistoryResponseType(); - } - - /** - * Create an instance of {@link BovagGetMemberByBovagIdResponseType } - * - */ - public BovagGetMemberByBovagIdResponseType createBovagGetMemberByBovagIdResponseType() { - return new BovagGetMemberByBovagIdResponseType(); - } - - /** - * Create an instance of {@link CarRDWCarDataV2RequestType } - * - */ - public CarRDWCarDataV2RequestType createCarRDWCarDataV2RequestType() { - return new CarRDWCarDataV2RequestType(); - } - - /** - * Create an instance of {@link CarRDWCarDataV3RequestType } - * - */ - public CarRDWCarDataV3RequestType createCarRDWCarDataV3RequestType() { - return new CarRDWCarDataV3RequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetLegalEntityRequestType } - * - */ - public DutchBusinessGetLegalEntityRequestType createDutchBusinessGetLegalEntityRequestType() { - return new DutchBusinessGetLegalEntityRequestType(); - } - - /** - * Create an instance of {@link AddressProvinceListDistrictsResponseType } - * - */ - public AddressProvinceListDistrictsResponseType createAddressProvinceListDistrictsResponseType() { - return new AddressProvinceListDistrictsResponseType(); - } - - /** - * Create an instance of {@link CarRDWCarDataResponseType } - * - */ - public CarRDWCarDataResponseType createCarRDWCarDataResponseType() { - return new CarRDWCarDataResponseType(); - } - - /** - * Create an instance of {@link BusinessUpdateRemoveDossierRequestType } - * - */ - public BusinessUpdateRemoveDossierRequestType createBusinessUpdateRemoveDossierRequestType() { - return new BusinessUpdateRemoveDossierRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessUBOPickupInvestigationRequestType } - * - */ - public DutchBusinessUBOPickupInvestigationRequestType createDutchBusinessUBOPickupInvestigationRequestType() { - return new DutchBusinessUBOPickupInvestigationRequestType(); - } - - /** - * Create an instance of {@link KadasterKadastraleKaartPostcodeV2ResponseType } - * - */ - public KadasterKadastraleKaartPostcodeV2ResponseType createKadasterKadastraleKaartPostcodeV2ResponseType() { - return new KadasterKadastraleKaartPostcodeV2ResponseType(); - } - - /** - * Create an instance of {@link CarRDWCarDataBPV2ResponseType } - * - */ - public CarRDWCarDataBPV2ResponseType createCarRDWCarDataBPV2ResponseType() { - return new CarRDWCarDataBPV2ResponseType(); - } - - /** - * Create an instance of {@link AddressCityListNeighborhoodsResponseType } - * - */ - public AddressCityListNeighborhoodsResponseType createAddressCityListNeighborhoodsResponseType() { - return new AddressCityListNeighborhoodsResponseType(); - } - - /** - * Create an instance of {@link KvkUpdateGetChangedDossiersRequestType } - * - */ - public KvkUpdateGetChangedDossiersRequestType createKvkUpdateGetChangedDossiersRequestType() { - return new KvkUpdateGetChangedDossiersRequestType(); - } - - /** - * Create an instance of {@link CreditsafeGetReportFullResponseType } - * - */ - public CreditsafeGetReportFullResponseType createCreditsafeGetReportFullResponseType() { - return new CreditsafeGetReportFullResponseType(); - } - - /** - * Create an instance of {@link GeoLocationPostcodeCoordinatesLatLonResponseType } - * - */ - public GeoLocationPostcodeCoordinatesLatLonResponseType createGeoLocationPostcodeCoordinatesLatLonResponseType() { - return new GeoLocationPostcodeCoordinatesLatLonResponseType(); - } - - /** - * Create an instance of {@link KvkGetDossierRequestType } - * - */ - public KvkGetDossierRequestType createKvkGetDossierRequestType() { - return new KvkGetDossierRequestType(); - } - - /** - * Create an instance of {@link SepaConvertBankAccountNumberResponseType } - * - */ - public SepaConvertBankAccountNumberResponseType createSepaConvertBankAccountNumberResponseType() { - return new SepaConvertBankAccountNumberResponseType(); - } - - /** - * Create an instance of {@link CreditsafeGetReportFullRequestType } - * - */ - public CreditsafeGetReportFullRequestType createCreditsafeGetReportFullRequestType() { - return new CreditsafeGetReportFullRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType } - * - */ - public DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType createDutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType() { - return new DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessUBOPickupInvestigationResponseType } - * - */ - public DutchBusinessUBOPickupInvestigationResponseType createDutchBusinessUBOPickupInvestigationResponseType() { - return new DutchBusinessUBOPickupInvestigationResponseType(); - } - - /** - * Create an instance of {@link RoutePlannerEUDescriptionCoordinatesLatLonRequestType } - * - */ - public RoutePlannerEUDescriptionCoordinatesLatLonRequestType createRoutePlannerEUDescriptionCoordinatesLatLonRequestType() { - return new RoutePlannerEUDescriptionCoordinatesLatLonRequestType(); - } - - /** - * Create an instance of {@link CarRDWCarDataPriceRequestType } - * - */ - public CarRDWCarDataPriceRequestType createCarRDWCarDataPriceRequestType() { - return new CarRDWCarDataPriceRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchSelectionSimpleRequestType } - * - */ - public DutchBusinessSearchSelectionSimpleRequestType createDutchBusinessSearchSelectionSimpleRequestType() { - return new DutchBusinessSearchSelectionSimpleRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetSBIDescriptionRequestType } - * - */ - public DutchBusinessGetSBIDescriptionRequestType createDutchBusinessGetSBIDescriptionRequestType() { - return new DutchBusinessGetSBIDescriptionRequestType(); - } - - /** - * Create an instance of {@link RoutePlannerRDDescriptionCoordinatesRDResponseType } - * - */ - public RoutePlannerRDDescriptionCoordinatesRDResponseType createRoutePlannerRDDescriptionCoordinatesRDResponseType() { - return new RoutePlannerRDDescriptionCoordinatesRDResponseType(); - } - - /** - * Create an instance of {@link AddressPerceelPhraseSearchRequestType } - * - */ - public AddressPerceelPhraseSearchRequestType createAddressPerceelPhraseSearchRequestType() { - return new AddressPerceelPhraseSearchRequestType(); - } - - /** - * Create an instance of {@link AddressReeksAddressSearchRequestType } - * - */ - public AddressReeksAddressSearchRequestType createAddressReeksAddressSearchRequestType() { - return new AddressReeksAddressSearchRequestType(); - } - - /** - * Create an instance of {@link AddressNeighborhoodNameResponseType } - * - */ - public AddressNeighborhoodNameResponseType createAddressNeighborhoodNameResponseType() { - return new AddressNeighborhoodNameResponseType(); - } - - /** - * Create an instance of {@link AccountViewBalanceResponseType } - * - */ - public AccountViewBalanceResponseType createAccountViewBalanceResponseType() { - return new AccountViewBalanceResponseType(); - } - - /** - * Create an instance of {@link BusinessSearchPostcodeResponseType } - * - */ - public BusinessSearchPostcodeResponseType createBusinessSearchPostcodeResponseType() { - return new BusinessSearchPostcodeResponseType(); - } - - /** - * Create an instance of {@link KadasterHypothecairBerichtPerceelV2ResponseType } - * - */ - public KadasterHypothecairBerichtPerceelV2ResponseType createKadasterHypothecairBerichtPerceelV2ResponseType() { - return new KadasterHypothecairBerichtPerceelV2ResponseType(); - } - - /** - * Create an instance of {@link RoutePlannerDescriptionShortestRequestType } - * - */ - public RoutePlannerDescriptionShortestRequestType createRoutePlannerDescriptionShortestRequestType() { - return new RoutePlannerDescriptionShortestRequestType(); - } - - /** - * Create an instance of {@link KadasterV2GetKadastraalBerichtObjectByAdresRequestType } - * - */ - public KadasterV2GetKadastraalBerichtObjectByAdresRequestType createKadasterV2GetKadastraalBerichtObjectByAdresRequestType() { - return new KadasterV2GetKadastraalBerichtObjectByAdresRequestType(); - } - - /** - * Create an instance of {@link GeoLocationInternationalAddressCoordinatesLatLonResponseType } - * - */ - public GeoLocationInternationalAddressCoordinatesLatLonResponseType createGeoLocationInternationalAddressCoordinatesLatLonResponseType() { - return new GeoLocationInternationalAddressCoordinatesLatLonResponseType(); - } - - /** - * Create an instance of {@link ComplianceGetPersonRequestType } - * - */ - public ComplianceGetPersonRequestType createComplianceGetPersonRequestType() { - return new ComplianceGetPersonRequestType(); - } - - /** - * Create an instance of {@link CarVWEVersionYearDataRequestType } - * - */ - public CarVWEVersionYearDataRequestType createCarVWEVersionYearDataRequestType() { - return new CarVWEVersionYearDataRequestType(); - } - - /** - * Create an instance of {@link UserEditHostRestrictionsResponseType } - * - */ - public UserEditHostRestrictionsResponseType createUserEditHostRestrictionsResponseType() { - return new UserEditHostRestrictionsResponseType(); - } - - /** - * Create an instance of {@link AccountEditV2RequestType } - * - */ - public AccountEditV2RequestType createAccountEditV2RequestType() { - return new AccountEditV2RequestType(); - } - - /** - * Create an instance of {@link VatValidateResponseType } - * - */ - public VatValidateResponseType createVatValidateResponseType() { - return new VatValidateResponseType(); - } - - /** - * Create an instance of {@link KadasterEigendomsBerichtPerceelV2RequestType } - * - */ - public KadasterEigendomsBerichtPerceelV2RequestType createKadasterEigendomsBerichtPerceelV2RequestType() { - return new KadasterEigendomsBerichtPerceelV2RequestType(); - } - - /** - * Create an instance of {@link BusinessUpdateRemoveDossierResponseType } - * - */ - public BusinessUpdateRemoveDossierResponseType createBusinessUpdateRemoveDossierResponseType() { - return new BusinessUpdateRemoveDossierResponseType(); - } - - /** - * Create an instance of {@link RiskCheckGetRiskPersonCompanyReportResponseType } - * - */ - public RiskCheckGetRiskPersonCompanyReportResponseType createRiskCheckGetRiskPersonCompanyReportResponseType() { - return new RiskCheckGetRiskPersonCompanyReportResponseType(); - } - - /** - * Create an instance of {@link KadasterValueListGetRangesRequestType } - * - */ - public KadasterValueListGetRangesRequestType createKadasterValueListGetRangesRequestType() { - return new KadasterValueListGetRangesRequestType(); - } - - /** - * Create an instance of {@link KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType } - * - */ - public KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType createKadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType() { - return new KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType(); - } - - /** - * Create an instance of {@link CarVWEListModelsResponseType } - * - */ - public CarVWEListModelsResponseType createCarVWEListModelsResponseType() { - return new CarVWEListModelsResponseType(); - } - - /** - * Create an instance of {@link CarVWEOptionsResponseType } - * - */ - public CarVWEOptionsResponseType createCarVWEOptionsResponseType() { - return new CarVWEOptionsResponseType(); - } - - /** - * Create an instance of {@link AccountEditHostRestrictionsRequestType } - * - */ - public AccountEditHostRestrictionsRequestType createAccountEditHostRestrictionsRequestType() { - return new AccountEditHostRestrictionsRequestType(); - } - - /** - * Create an instance of {@link BusinessGetDossierSBIResponseType } - * - */ - public BusinessGetDossierSBIResponseType createBusinessGetDossierSBIResponseType() { - return new BusinessGetDossierSBIResponseType(); - } - - /** - * Create an instance of {@link BusinessGetDossierV3ResponseType } - * - */ - public BusinessGetDossierV3ResponseType createBusinessGetDossierV3ResponseType() { - return new BusinessGetDossierV3ResponseType(); - } - - /** - * Create an instance of {@link GeoLocationDistanceSortedNeighborhoodCodesRequestType } - * - */ - public GeoLocationDistanceSortedNeighborhoodCodesRequestType createGeoLocationDistanceSortedNeighborhoodCodesRequestType() { - return new GeoLocationDistanceSortedNeighborhoodCodesRequestType(); - } - - /** - * Create an instance of {@link DutchVehicleGetVehicleV2RequestType } - * - */ - public DutchVehicleGetVehicleV2RequestType createDutchVehicleGetVehicleV2RequestType() { - return new DutchVehicleGetVehicleV2RequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetDossierHistoryRequestType } - * - */ - public DutchBusinessGetDossierHistoryRequestType createDutchBusinessGetDossierHistoryRequestType() { - return new DutchBusinessGetDossierHistoryRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchSelectionRequestType } - * - */ - public DutchBusinessSearchSelectionRequestType createDutchBusinessSearchSelectionRequestType() { - return new DutchBusinessSearchSelectionRequestType(); - } - - /** - * Create an instance of {@link KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType } - * - */ - public KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType createKadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType() { - return new KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType(); - } - - /** - * Create an instance of {@link MetaGetMethodRequestType } - * - */ - public MetaGetMethodRequestType createMetaGetMethodRequestType() { - return new MetaGetMethodRequestType(); - } - - /** - * Create an instance of {@link UserCreateV2ResponseType } - * - */ - public UserCreateV2ResponseType createUserCreateV2ResponseType() { - return new UserCreateV2ResponseType(); - } - - /** - * Create an instance of {@link AccountViewHostRestrictionsResponseType } - * - */ - public AccountViewHostRestrictionsResponseType createAccountViewHostRestrictionsResponseType() { - return new AccountViewHostRestrictionsResponseType(); - } - - /** - * Create an instance of {@link DutchAddressRangePostcodeSearchRequestType } - * - */ - public DutchAddressRangePostcodeSearchRequestType createDutchAddressRangePostcodeSearchRequestType() { - return new DutchAddressRangePostcodeSearchRequestType(); - } - - /** - * Create an instance of {@link CarVWEListVersionsRequestType } - * - */ - public CarVWEListVersionsRequestType createCarVWEListVersionsRequestType() { - return new CarVWEListVersionsRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessUBOClassifyInvestigationRequestType } - * - */ - public DutchBusinessUBOClassifyInvestigationRequestType createDutchBusinessUBOClassifyInvestigationRequestType() { - return new DutchBusinessUBOClassifyInvestigationRequestType(); - } - - /** - * Create an instance of {@link AddressReeksFullParameterSearchResponseType } - * - */ - public AddressReeksFullParameterSearchResponseType createAddressReeksFullParameterSearchResponseType() { - return new AddressReeksFullParameterSearchResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetSBIDescriptionResponseType } - * - */ - public DutchBusinessGetSBIDescriptionResponseType createDutchBusinessGetSBIDescriptionResponseType() { - return new DutchBusinessGetSBIDescriptionResponseType(); - } - - /** - * Create an instance of {@link DutchVehicleGetPurchaseReferenceResponseType } - * - */ - public DutchVehicleGetPurchaseReferenceResponseType createDutchVehicleGetPurchaseReferenceResponseType() { - return new DutchVehicleGetPurchaseReferenceResponseType(); - } - - /** - * Create an instance of {@link KadasterEigendomsBerichtPostcodeV2ResponseType } - * - */ - public KadasterEigendomsBerichtPostcodeV2ResponseType createKadasterEigendomsBerichtPostcodeV2ResponseType() { - return new KadasterEigendomsBerichtPostcodeV2ResponseType(); - } - - /** - * Create an instance of {@link DnbGetReferenceResponseType } - * - */ - public DnbGetReferenceResponseType createDnbGetReferenceResponseType() { - return new DnbGetReferenceResponseType(); - } - - /** - * Create an instance of {@link KadasterHypothecairBerichtPostcodeV2RequestType } - * - */ - public KadasterHypothecairBerichtPostcodeV2RequestType createKadasterHypothecairBerichtPostcodeV2RequestType() { - return new KadasterHypothecairBerichtPostcodeV2RequestType(); - } - - /** - * Create an instance of {@link KadasterHypothecairBerichtPostcodeV3RequestType } - * - */ - public KadasterHypothecairBerichtPostcodeV3RequestType createKadasterHypothecairBerichtPostcodeV3RequestType() { - return new KadasterHypothecairBerichtPostcodeV3RequestType(); - } - - /** - * Create an instance of {@link KadasterAddressCoordinatesRequestType } - * - */ - public KadasterAddressCoordinatesRequestType createKadasterAddressCoordinatesRequestType() { - return new KadasterAddressCoordinatesRequestType(); - } - - /** - * Create an instance of {@link GraydonCreditSearchNameRequestType } - * - */ - public GraydonCreditSearchNameRequestType createGraydonCreditSearchNameRequestType() { - return new GraydonCreditSearchNameRequestType(); - } - - /** - * Create an instance of {@link RoutePlannerInformationRequestType } - * - */ - public RoutePlannerInformationRequestType createRoutePlannerInformationRequestType() { - return new RoutePlannerInformationRequestType(); - } - - /** - * Create an instance of {@link CreditsafeMonitorAddCompanyRequestType } - * - */ - public CreditsafeMonitorAddCompanyRequestType createCreditsafeMonitorAddCompanyRequestType() { - return new CreditsafeMonitorAddCompanyRequestType(); - } - - /** - * Create an instance of {@link CarRDWCarDataBPResponseType } - * - */ - public CarRDWCarDataBPResponseType createCarRDWCarDataBPResponseType() { - return new CarRDWCarDataBPResponseType(); - } - - /** - * Create an instance of {@link KadasterKadastraleKaartPerceelResponseType } - * - */ - public KadasterKadastraleKaartPerceelResponseType createKadasterKadastraleKaartPerceelResponseType() { - return new KadasterKadastraleKaartPerceelResponseType(); - } - - /** - * Create an instance of {@link GraydonCreditSearchPostcodeRequestType } - * - */ - public GraydonCreditSearchPostcodeRequestType createGraydonCreditSearchPostcodeRequestType() { - return new GraydonCreditSearchPostcodeRequestType(); - } - - /** - * Create an instance of {@link GeoLocationAddressCoordinatesRDRequestType } - * - */ - public GeoLocationAddressCoordinatesRDRequestType createGeoLocationAddressCoordinatesRDRequestType() { - return new GeoLocationAddressCoordinatesRDRequestType(); - } - - /** - * Create an instance of {@link RoutePlannerInformationAddressResponseType } - * - */ - public RoutePlannerInformationAddressResponseType createRoutePlannerInformationAddressResponseType() { - return new RoutePlannerInformationAddressResponseType(); - } - - /** - * Create an instance of {@link GeoLocationNeighborhoodCoordinatesRDResponseType } - * - */ - public GeoLocationNeighborhoodCoordinatesRDResponseType createGeoLocationNeighborhoodCoordinatesRDResponseType() { - return new GeoLocationNeighborhoodCoordinatesRDResponseType(); - } - - /** - * Create an instance of {@link CarATDPriceResponseType } - * - */ - public CarATDPriceResponseType createCarATDPriceResponseType() { - return new CarATDPriceResponseType(); - } - - /** - * Create an instance of {@link DutchAddressRangePostcodeSearchResponseType } - * - */ - public DutchAddressRangePostcodeSearchResponseType createDutchAddressRangePostcodeSearchResponseType() { - return new DutchAddressRangePostcodeSearchResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetDossierResponseType } - * - */ - public DutchBusinessGetDossierResponseType createDutchBusinessGetDossierResponseType() { - return new DutchBusinessGetDossierResponseType(); - } - - /** - * Create an instance of {@link UserChangePasswordRequestType } - * - */ - public UserChangePasswordRequestType createUserChangePasswordRequestType() { - return new UserChangePasswordRequestType(); - } - - /** - * Create an instance of {@link BusinessBIKToSBIResponseType } - * - */ - public BusinessBIKToSBIResponseType createBusinessBIKToSBIResponseType() { - return new BusinessBIKToSBIResponseType(); - } - - /** - * Create an instance of {@link CarVWEOptionsRequestType } - * - */ - public CarVWEOptionsRequestType createCarVWEOptionsRequestType() { - return new CarVWEOptionsRequestType(); - } - - /** - * Create an instance of {@link CarVWEBasicTypeDataResponseType } - * - */ - public CarVWEBasicTypeDataResponseType createCarVWEBasicTypeDataResponseType() { - return new CarVWEBasicTypeDataResponseType(); - } - - /** - * Create an instance of {@link InsolvencySearchPublicationsByPersonResponseType } - * - */ - public InsolvencySearchPublicationsByPersonResponseType createInsolvencySearchPublicationsByPersonResponseType() { - return new InsolvencySearchPublicationsByPersonResponseType(); - } - - /** - * Create an instance of {@link RoutePlannerDescriptionResponseType } - * - */ - public RoutePlannerDescriptionResponseType createRoutePlannerDescriptionResponseType() { - return new RoutePlannerDescriptionResponseType(); - } - - /** - * Create an instance of {@link RoutePlannerEUInformationRequestType } - * - */ - public RoutePlannerEUInformationRequestType createRoutePlannerEUInformationRequestType() { - return new RoutePlannerEUInformationRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetNonMarketingIndicatorResponseType } - * - */ - public DutchBusinessGetNonMarketingIndicatorResponseType createDutchBusinessGetNonMarketingIndicatorResponseType() { - return new DutchBusinessGetNonMarketingIndicatorResponseType(); - } - - /** - * Create an instance of {@link AccountUserSearchV2ResponseType } - * - */ - public AccountUserSearchV2ResponseType createAccountUserSearchV2ResponseType() { - return new AccountUserSearchV2ResponseType(); - } - - /** - * Create an instance of {@link AddressDistrictListNeighborhoodsRequestType } - * - */ - public AddressDistrictListNeighborhoodsRequestType createAddressDistrictListNeighborhoodsRequestType() { - return new AddressDistrictListNeighborhoodsRequestType(); - } - - /** - * Create an instance of {@link BusinessGetDossierV3RequestType } - * - */ - public BusinessGetDossierV3RequestType createBusinessGetDossierV3RequestType() { - return new BusinessGetDossierV3RequestType(); - } - - /** - * Create an instance of {@link BusinessGetBIKDescriptionRequestType } - * - */ - public BusinessGetBIKDescriptionRequestType createBusinessGetBIKDescriptionRequestType() { - return new BusinessGetBIKDescriptionRequestType(); - } - - /** - * Create an instance of {@link SepaConvertBasicBankAccountNumberRequestType } - * - */ - public SepaConvertBasicBankAccountNumberRequestType createSepaConvertBasicBankAccountNumberRequestType() { - return new SepaConvertBasicBankAccountNumberRequestType(); - } - - /** - * Create an instance of {@link KadasterUittrekselKadastraleKaartPostcodeRequestType } - * - */ - public KadasterUittrekselKadastraleKaartPostcodeRequestType createKadasterUittrekselKadastraleKaartPostcodeRequestType() { - return new KadasterUittrekselKadastraleKaartPostcodeRequestType(); - } - - /** - * Create an instance of {@link DriveInfoDistanceLookupResponseType } - * - */ - public DriveInfoDistanceLookupResponseType createDriveInfoDistanceLookupResponseType() { - return new DriveInfoDistanceLookupResponseType(); - } - - /** - * Create an instance of {@link KadasterValueListGetMunicipalitiesRequestType } - * - */ - public KadasterValueListGetMunicipalitiesRequestType createKadasterValueListGetMunicipalitiesRequestType() { - return new KadasterValueListGetMunicipalitiesRequestType(); - } - - /** - * Create an instance of {@link CarATDPriceRequestType } - * - */ - public CarATDPriceRequestType createCarATDPriceRequestType() { - return new CarATDPriceRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetDossierV2RequestType } - * - */ - public DutchBusinessGetDossierV2RequestType createDutchBusinessGetDossierV2RequestType() { - return new DutchBusinessGetDossierV2RequestType(); - } - - /** - * Create an instance of {@link MapViewInternationalLatLonRequestType } - * - */ - public MapViewInternationalLatLonRequestType createMapViewInternationalLatLonRequestType() { - return new MapViewInternationalLatLonRequestType(); - } - - /** - * Create an instance of {@link DnbSearchReferenceV2RequestType } - * - */ - public DnbSearchReferenceV2RequestType createDnbSearchReferenceV2RequestType() { - return new DnbSearchReferenceV2RequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetDossierV3RequestType } - * - */ - public DutchBusinessGetDossierV3RequestType createDutchBusinessGetDossierV3RequestType() { - return new DutchBusinessGetDossierV3RequestType(); - } - - /** - * Create an instance of {@link KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType } - * - */ - public KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType createKadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType() { - return new KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType(); - } - - /** - * Create an instance of {@link SepaConvertBankAccountNumberRequestType } - * - */ - public SepaConvertBankAccountNumberRequestType createSepaConvertBankAccountNumberRequestType() { - return new SepaConvertBankAccountNumberRequestType(); - } - - /** - * Create an instance of {@link ComplianceSearchPersonsResponseType } - * - */ - public ComplianceSearchPersonsResponseType createComplianceSearchPersonsResponseType() { - return new ComplianceSearchPersonsResponseType(); - } - - /** - * Create an instance of {@link CreateTestUserRequestType } - * - */ - public CreateTestUserRequestType createCreateTestUserRequestType() { - return new CreateTestUserRequestType(); - } - - /** - * Create an instance of {@link CarVWEMeldcodeCheckResponseType } - * - */ - public CarVWEMeldcodeCheckResponseType createCarVWEMeldcodeCheckResponseType() { - return new CarVWEMeldcodeCheckResponseType(); - } - - /** - * Create an instance of {@link BusinessUpdateAddDossierResponseType } - * - */ - public BusinessUpdateAddDossierResponseType createBusinessUpdateAddDossierResponseType() { - return new BusinessUpdateAddDossierResponseType(); - } - - /** - * Create an instance of {@link KvkSearchParametersResponseType } - * - */ - public KvkSearchParametersResponseType createKvkSearchParametersResponseType() { - return new KvkSearchParametersResponseType(); - } - - /** - * Create an instance of {@link AccountViewV2ResponseType } - * - */ - public AccountViewV2ResponseType createAccountViewV2ResponseType() { - return new AccountViewV2ResponseType(); - } - - /** - * Create an instance of {@link DriveInfoTimeLookupRequestType } - * - */ - public DriveInfoTimeLookupRequestType createDriveInfoTimeLookupRequestType() { - return new DriveInfoTimeLookupRequestType(); - } - - /** - * Create an instance of {@link KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType } - * - */ - public KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType createKadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType() { - return new KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType(); - } - - /** - * Create an instance of {@link RoutePlannerDescriptionDutchAddressRequestType } - * - */ - public RoutePlannerDescriptionDutchAddressRequestType createRoutePlannerDescriptionDutchAddressRequestType() { - return new RoutePlannerDescriptionDutchAddressRequestType(); - } - - /** - * Create an instance of {@link DnbQuickCheckResponseType } - * - */ - public DnbQuickCheckResponseType createDnbQuickCheckResponseType() { - return new DnbQuickCheckResponseType(); - } - - /** - * Create an instance of {@link GeoLocationNeighborhoodDistanceResponseType } - * - */ - public GeoLocationNeighborhoodDistanceResponseType createGeoLocationNeighborhoodDistanceResponseType() { - return new GeoLocationNeighborhoodDistanceResponseType(); - } - - /** - * Create an instance of {@link KadasterValueListGetMunicipalitiesResponseType } - * - */ - public KadasterValueListGetMunicipalitiesResponseType createKadasterValueListGetMunicipalitiesResponseType() { - return new KadasterValueListGetMunicipalitiesResponseType(); - } - - /** - * Create an instance of {@link KvkUpdateRemoveDossierResponseType } - * - */ - public KvkUpdateRemoveDossierResponseType createKvkUpdateRemoveDossierResponseType() { - return new KvkUpdateRemoveDossierResponseType(); - } - - /** - * Create an instance of {@link CarRDWCarDataBPV2RequestType } - * - */ - public CarRDWCarDataBPV2RequestType createCarRDWCarDataBPV2RequestType() { - return new CarRDWCarDataBPV2RequestType(); - } - - /** - * Create an instance of {@link KvkGetDossierResponseType } - * - */ - public KvkGetDossierResponseType createKvkGetDossierResponseType() { - return new KvkGetDossierResponseType(); - } - - /** - * Create an instance of {@link RoutePlannerEUMapRequestType } - * - */ - public RoutePlannerEUMapRequestType createRoutePlannerEUMapRequestType() { - return new RoutePlannerEUMapRequestType(); - } - - /** - * Create an instance of {@link CreditsafeSearchCriteriaRequestType } - * - */ - public CreditsafeSearchCriteriaRequestType createCreditsafeSearchCriteriaRequestType() { - return new CreditsafeSearchCriteriaRequestType(); - } - - /** - * Create an instance of {@link UserNotifyResponseType } - * - */ - public UserNotifyResponseType createUserNotifyResponseType() { - return new UserNotifyResponseType(); - } - - /** - * Create an instance of {@link KadasterEigendomsBerichtPostcodeResponseType } - * - */ - public KadasterEigendomsBerichtPostcodeResponseType createKadasterEigendomsBerichtPostcodeResponseType() { - return new KadasterEigendomsBerichtPostcodeResponseType(); - } - - /** - * Create an instance of {@link SepaMatchAccountHolderRequestType } - * - */ - public SepaMatchAccountHolderRequestType createSepaMatchAccountHolderRequestType() { - return new SepaMatchAccountHolderRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractDocumentDataV3ResponseType } - * - */ - public DutchBusinessGetExtractDocumentDataV3ResponseType createDutchBusinessGetExtractDocumentDataV3ResponseType() { - return new DutchBusinessGetExtractDocumentDataV3ResponseType(); - } - - /** - * Create an instance of {@link KvkSearchSelectionRequestType } - * - */ - public KvkSearchSelectionRequestType createKvkSearchSelectionRequestType() { - return new KvkSearchSelectionRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetVatNumberRequestType } - * - */ - public DutchBusinessGetVatNumberRequestType createDutchBusinessGetVatNumberRequestType() { - return new DutchBusinessGetVatNumberRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetDossierRequestType } - * - */ - public DutchBusinessGetDossierRequestType createDutchBusinessGetDossierRequestType() { - return new DutchBusinessGetDossierRequestType(); - } - - /** - * Create an instance of {@link DnbWorldbaseMarketingPlusLinkageRequestType } - * - */ - public DnbWorldbaseMarketingPlusLinkageRequestType createDnbWorldbaseMarketingPlusLinkageRequestType() { - return new DnbWorldbaseMarketingPlusLinkageRequestType(); - } - - /** - * Create an instance of {@link CreditsafeMonitorGetUpdatedCompaniesRequestType } - * - */ - public CreditsafeMonitorGetUpdatedCompaniesRequestType createCreditsafeMonitorGetUpdatedCompaniesRequestType() { - return new CreditsafeMonitorGetUpdatedCompaniesRequestType(); - } - - /** - * Create an instance of {@link CreditsafeSearchV2RequestType } - * - */ - public CreditsafeSearchV2RequestType createCreditsafeSearchV2RequestType() { - return new CreditsafeSearchV2RequestType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchResponseType } - * - */ - public DutchBusinessSearchResponseType createDutchBusinessSearchResponseType() { - return new DutchBusinessSearchResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessUBOCostsInvestigationRequestType } - * - */ - public DutchBusinessUBOCostsInvestigationRequestType createDutchBusinessUBOCostsInvestigationRequestType() { - return new DutchBusinessUBOCostsInvestigationRequestType(); - } - - /** - * Create an instance of {@link UserViewHostRestrictionsResponseType } - * - */ - public UserViewHostRestrictionsResponseType createUserViewHostRestrictionsResponseType() { - return new UserViewHostRestrictionsResponseType(); - } - - /** - * Create an instance of {@link AddressReeksAddressSearchResponseType } - * - */ - public AddressReeksAddressSearchResponseType createAddressReeksAddressSearchResponseType() { - return new AddressReeksAddressSearchResponseType(); - } - - /** - * Create an instance of {@link KadasterEigendomsBerichtPerceelRequestType } - * - */ - public KadasterEigendomsBerichtPerceelRequestType createKadasterEigendomsBerichtPerceelRequestType() { - return new KadasterEigendomsBerichtPerceelRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractHistoryDocumentDataResponseType } - * - */ - public DutchBusinessGetExtractHistoryDocumentDataResponseType createDutchBusinessGetExtractHistoryDocumentDataResponseType() { - return new DutchBusinessGetExtractHistoryDocumentDataResponseType(); - } - - /** - * Create an instance of {@link GraydonCreditSearchNameResponseType } - * - */ - public GraydonCreditSearchNameResponseType createGraydonCreditSearchNameResponseType() { - return new GraydonCreditSearchNameResponseType(); - } - - /** - * Create an instance of {@link RoutePlannerDescriptionAddressResponseType } - * - */ - public RoutePlannerDescriptionAddressResponseType createRoutePlannerDescriptionAddressResponseType() { - return new RoutePlannerDescriptionAddressResponseType(); - } - - /** - * Create an instance of {@link RoutePlannerInformationResponseType } - * - */ - public RoutePlannerInformationResponseType createRoutePlannerInformationResponseType() { - return new RoutePlannerInformationResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetConcernRelationsOverviewRequestType } - * - */ - public DutchBusinessGetConcernRelationsOverviewRequestType createDutchBusinessGetConcernRelationsOverviewRequestType() { - return new DutchBusinessGetConcernRelationsOverviewRequestType(); - } - - /** - * Create an instance of {@link GeoLocationAddressCoordinatesLatLonRequestType } - * - */ - public GeoLocationAddressCoordinatesLatLonRequestType createGeoLocationAddressCoordinatesLatLonRequestType() { - return new GeoLocationAddressCoordinatesLatLonRequestType(); - } - - /** - * Create an instance of {@link UserViewV2ResponseType } - * - */ - public UserViewV2ResponseType createUserViewV2ResponseType() { - return new UserViewV2ResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetPositionsResponseType } - * - */ - public DutchBusinessGetPositionsResponseType createDutchBusinessGetPositionsResponseType() { - return new DutchBusinessGetPositionsResponseType(); - } - - /** - * Create an instance of {@link AddressReeksPhraseSearchRequestType } - * - */ - public AddressReeksPhraseSearchRequestType createAddressReeksPhraseSearchRequestType() { - return new AddressReeksPhraseSearchRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetLeiResponseType } - * - */ - public DutchBusinessGetLeiResponseType createDutchBusinessGetLeiResponseType() { - return new DutchBusinessGetLeiResponseType(); - } - - /** - * Create an instance of {@link UserEditBalanceRequestType } - * - */ - public UserEditBalanceRequestType createUserEditBalanceRequestType() { - return new UserEditBalanceRequestType(); - } - - /** - * Create an instance of {@link AccountUserListV2ResponseType } - * - */ - public AccountUserListV2ResponseType createAccountUserListV2ResponseType() { - return new AccountUserListV2ResponseType(); - } - - /** - * Create an instance of {@link InternationalAddressSearchInteractiveRequestType } - * - */ - public InternationalAddressSearchInteractiveRequestType createInternationalAddressSearchInteractiveRequestType() { - return new InternationalAddressSearchInteractiveRequestType(); - } - - /** - * Create an instance of {@link AddressDistrictSearchRequestType } - * - */ - public AddressDistrictSearchRequestType createAddressDistrictSearchRequestType() { - return new AddressDistrictSearchRequestType(); - } - - /** - * Create an instance of {@link GeoLocationRDToLatLonRequestType } - * - */ - public GeoLocationRDToLatLonRequestType createGeoLocationRDToLatLonRequestType() { - return new GeoLocationRDToLatLonRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetSBIResponseType } - * - */ - public DutchBusinessGetSBIResponseType createDutchBusinessGetSBIResponseType() { - return new DutchBusinessGetSBIResponseType(); - } - - /** - * Create an instance of {@link AddressProvinceListRequestType } - * - */ - public AddressProvinceListRequestType createAddressProvinceListRequestType() { - return new AddressProvinceListRequestType(); - } - - /** - * Create an instance of {@link CarVWEListBrandsResponseType } - * - */ - public CarVWEListBrandsResponseType createCarVWEListBrandsResponseType() { - return new CarVWEListBrandsResponseType(); - } - - /** - * Create an instance of {@link AccountGetCreationStatusRequestType } - * - */ - public AccountGetCreationStatusRequestType createAccountGetCreationStatusRequestType() { - return new AccountGetCreationStatusRequestType(); - } - - /** - * Create an instance of {@link GeoLocationDistanceSortedPostcodesRadiusRequestType } - * - */ - public GeoLocationDistanceSortedPostcodesRadiusRequestType createGeoLocationDistanceSortedPostcodesRadiusRequestType() { - return new GeoLocationDistanceSortedPostcodesRadiusRequestType(); - } - - /** - * Create an instance of {@link AddressReeksPhraseSearchResponseType } - * - */ - public AddressReeksPhraseSearchResponseType createAddressReeksPhraseSearchResponseType() { - return new AddressReeksPhraseSearchResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractHistoryDocumentDataV3ResponseType } - * - */ - public DutchBusinessGetExtractHistoryDocumentDataV3ResponseType createDutchBusinessGetExtractHistoryDocumentDataV3ResponseType() { - return new DutchBusinessGetExtractHistoryDocumentDataV3ResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchNewsByDossierRequestType } - * - */ - public DutchBusinessSearchNewsByDossierRequestType createDutchBusinessSearchNewsByDossierRequestType() { - return new DutchBusinessSearchNewsByDossierRequestType(); - } - - /** - * Create an instance of {@link GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType } - * - */ - public GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType createGeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType() { - return new GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType(); - } - - /** - * Create an instance of {@link GeoLocationDistanceSortedPostcodesResponseType } - * - */ - public GeoLocationDistanceSortedPostcodesResponseType createGeoLocationDistanceSortedPostcodesResponseType() { - return new GeoLocationDistanceSortedPostcodesResponseType(); - } - - /** - * Create an instance of {@link KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType } - * - */ - public KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType createKadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType() { - return new KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType(); - } - - /** - * Create an instance of {@link LoginResponseType } - * - */ - public LoginResponseType createLoginResponseType() { - return new LoginResponseType(); - } - - /** - * Create an instance of {@link UserListAssignableGroupsRequestType } - * - */ - public UserListAssignableGroupsRequestType createUserListAssignableGroupsRequestType() { - return new UserListAssignableGroupsRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchPostcodeRequestType } - * - */ - public DutchBusinessSearchPostcodeRequestType createDutchBusinessSearchPostcodeRequestType() { - return new DutchBusinessSearchPostcodeRequestType(); - } - - /** - * Create an instance of {@link CarRDWCarDataPriceResponseType } - * - */ - public CarRDWCarDataPriceResponseType createCarRDWCarDataPriceResponseType() { - return new CarRDWCarDataPriceResponseType(); - } - - /** - * Create an instance of {@link KadasterHypothecairBerichtPostcodeV2ResponseType } - * - */ - public KadasterHypothecairBerichtPostcodeV2ResponseType createKadasterHypothecairBerichtPostcodeV2ResponseType() { - return new KadasterHypothecairBerichtPostcodeV2ResponseType(); - } - - /** - * Create an instance of {@link GeoLocationAddressCoordinatesRDResponseType } - * - */ - public GeoLocationAddressCoordinatesRDResponseType createGeoLocationAddressCoordinatesRDResponseType() { - return new GeoLocationAddressCoordinatesRDResponseType(); - } - - /** - * Create an instance of {@link KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType } - * - */ - public KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType createKadasterV2GetKadastraalBerichtObjectByObjectIdRequestType() { - return new KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType(); - } - - /** - * Create an instance of {@link UserListAssignableGroupsResponseType } - * - */ - public UserListAssignableGroupsResponseType createUserListAssignableGroupsResponseType() { - return new UserListAssignableGroupsResponseType(); - } - - /** - * Create an instance of {@link BusinessSearchDossierNumberResponseType } - * - */ - public BusinessSearchDossierNumberResponseType createBusinessSearchDossierNumberResponseType() { - return new BusinessSearchDossierNumberResponseType(); - } - - /** - * Create an instance of {@link AddressNeighborhoodPhraseSearchRequestType } - * - */ - public AddressNeighborhoodPhraseSearchRequestType createAddressNeighborhoodPhraseSearchRequestType() { - return new AddressNeighborhoodPhraseSearchRequestType(); - } - - /** - * Create an instance of {@link KadasterHypothecairBerichtPerceelV3ResponseType } - * - */ - public KadasterHypothecairBerichtPerceelV3ResponseType createKadasterHypothecairBerichtPerceelV3ResponseType() { - return new KadasterHypothecairBerichtPerceelV3ResponseType(); - } - - /** - * Create an instance of {@link RoutePlannerEUMapResponseType } - * - */ - public RoutePlannerEUMapResponseType createRoutePlannerEUMapResponseType() { - return new RoutePlannerEUMapResponseType(); - } - - /** - * Create an instance of {@link KadasterBronDocumentResponseType } - * - */ - public KadasterBronDocumentResponseType createKadasterBronDocumentResponseType() { - return new KadasterBronDocumentResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateAddDossierResponseType } - * - */ - public DutchBusinessUpdateAddDossierResponseType createDutchBusinessUpdateAddDossierResponseType() { - return new DutchBusinessUpdateAddDossierResponseType(); - } - - /** - * Create an instance of {@link AccountUserListV2RequestType } - * - */ - public AccountUserListV2RequestType createAccountUserListV2RequestType() { - return new AccountUserListV2RequestType(); - } - - /** - * Create an instance of {@link BusinessGetSBIDescriptionRequestType } - * - */ - public BusinessGetSBIDescriptionRequestType createBusinessGetSBIDescriptionRequestType() { - return new BusinessGetSBIDescriptionRequestType(); - } - - /** - * Create an instance of {@link RoutePlannerInformationDutchAddressResponseType } - * - */ - public RoutePlannerInformationDutchAddressResponseType createRoutePlannerInformationDutchAddressResponseType() { - return new RoutePlannerInformationDutchAddressResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateGetDossiersResponseType } - * - */ - public DutchBusinessUpdateGetDossiersResponseType createDutchBusinessUpdateGetDossiersResponseType() { - return new DutchBusinessUpdateGetDossiersResponseType(); - } - - /** - * Create an instance of {@link AddressPerceelFullParameterSearchV2RequestType } - * - */ - public AddressPerceelFullParameterSearchV2RequestType createAddressPerceelFullParameterSearchV2RequestType() { - return new AddressPerceelFullParameterSearchV2RequestType(); - } - - /** - * Create an instance of {@link DutchBusinessUBOStartInvestigationResponseType } - * - */ - public DutchBusinessUBOStartInvestigationResponseType createDutchBusinessUBOStartInvestigationResponseType() { - return new DutchBusinessUBOStartInvestigationResponseType(); - } - - /** - * Create an instance of {@link KadasterKadastraleKaartPerceelV2ResponseType } - * - */ - public KadasterKadastraleKaartPerceelV2ResponseType createKadasterKadastraleKaartPerceelV2ResponseType() { - return new KadasterKadastraleKaartPerceelV2ResponseType(); - } - - /** - * Create an instance of {@link KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType } - * - */ - public KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType createKadasterV2GetHypothecairBerichtObjectByObjectIdResponseType() { - return new KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType(); - } - - /** - * Create an instance of {@link KadasterUittrekselKadastraleKaartPerceelRequestType } - * - */ - public KadasterUittrekselKadastraleKaartPerceelRequestType createKadasterUittrekselKadastraleKaartPerceelRequestType() { - return new KadasterUittrekselKadastraleKaartPerceelRequestType(); - } - - /** - * Create an instance of {@link KadasterEigendomsBerichtDocumentPerceelResponseType } - * - */ - public KadasterEigendomsBerichtDocumentPerceelResponseType createKadasterEigendomsBerichtDocumentPerceelResponseType() { - return new KadasterEigendomsBerichtDocumentPerceelResponseType(); - } - - /** - * Create an instance of {@link AddressCitySearchV2ResponseType } - * - */ - public AddressCitySearchV2ResponseType createAddressCitySearchV2ResponseType() { - return new AddressCitySearchV2ResponseType(); - } - - /** - * Create an instance of {@link UserEditHostRestrictionsRequestType } - * - */ - public UserEditHostRestrictionsRequestType createUserEditHostRestrictionsRequestType() { - return new UserEditHostRestrictionsRequestType(); - } - - /** - * Create an instance of {@link CarRDWCarDataOptionsRequestType } - * - */ - public CarRDWCarDataOptionsRequestType createCarRDWCarDataOptionsRequestType() { - return new CarRDWCarDataOptionsRequestType(); - } - - /** - * Create an instance of {@link MapViewPostcodeV2ResponseType } - * - */ - public MapViewPostcodeV2ResponseType createMapViewPostcodeV2ResponseType() { - return new MapViewPostcodeV2ResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractHistoryDocumentDataV2RequestType } - * - */ - public DutchBusinessGetExtractHistoryDocumentDataV2RequestType createDutchBusinessGetExtractHistoryDocumentDataV2RequestType() { - return new DutchBusinessGetExtractHistoryDocumentDataV2RequestType(); - } - - /** - * Create an instance of {@link CarVWEVersionYearDataResponseType } - * - */ - public CarVWEVersionYearDataResponseType createCarVWEVersionYearDataResponseType() { - return new CarVWEVersionYearDataResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractHistoryDocumentDataV3RequestType } - * - */ - public DutchBusinessGetExtractHistoryDocumentDataV3RequestType createDutchBusinessGetExtractHistoryDocumentDataV3RequestType() { - return new DutchBusinessGetExtractHistoryDocumentDataV3RequestType(); - } - - /** - * Create an instance of {@link KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType } - * - */ - public KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType createKadasterV2GetHypothecairBerichtObjectByObjectIdRequestType() { - return new KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateGetOverviewResponseType } - * - */ - public DutchBusinessUpdateGetOverviewResponseType createDutchBusinessUpdateGetOverviewResponseType() { - return new DutchBusinessUpdateGetOverviewResponseType(); - } - - /** - * Create an instance of {@link GeoLocationPostcodeCoordinatesRDRequestType } - * - */ - public GeoLocationPostcodeCoordinatesRDRequestType createGeoLocationPostcodeCoordinatesRDRequestType() { - return new GeoLocationPostcodeCoordinatesRDRequestType(); - } - - /** - * Create an instance of {@link GeoLocationPostcodeDistanceResponseType } - * - */ - public GeoLocationPostcodeDistanceResponseType createGeoLocationPostcodeDistanceResponseType() { - return new GeoLocationPostcodeDistanceResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateGetChangedDossiersResponseType } - * - */ - public DutchBusinessUpdateGetChangedDossiersResponseType createDutchBusinessUpdateGetChangedDossiersResponseType() { - return new DutchBusinessUpdateGetChangedDossiersResponseType(); - } - - /** - * Create an instance of {@link ComplianceSearchBusinessesRequestType } - * - */ - public ComplianceSearchBusinessesRequestType createComplianceSearchBusinessesRequestType() { - return new ComplianceSearchBusinessesRequestType(); - } - - /** - * Create an instance of {@link ComplianceSearchBusinessesResponseType } - * - */ - public ComplianceSearchBusinessesResponseType createComplianceSearchBusinessesResponseType() { - return new ComplianceSearchBusinessesResponseType(); - } - - /** - * Create an instance of {@link GeoLocationDistanceSortedPostcodesRadiusResponseType } - * - */ - public GeoLocationDistanceSortedPostcodesRadiusResponseType createGeoLocationDistanceSortedPostcodesRadiusResponseType() { - return new GeoLocationDistanceSortedPostcodesRadiusResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetAdditionalPositionsResponseType } - * - */ - public DutchBusinessGetAdditionalPositionsResponseType createDutchBusinessGetAdditionalPositionsResponseType() { - return new DutchBusinessGetAdditionalPositionsResponseType(); - } - - /** - * Create an instance of {@link MapViewLatLonResponseType } - * - */ - public MapViewLatLonResponseType createMapViewLatLonResponseType() { - return new MapViewLatLonResponseType(); - } - - /** - * Create an instance of {@link AddressReeksPostcodeSearchResponseType } - * - */ - public AddressReeksPostcodeSearchResponseType createAddressReeksPostcodeSearchResponseType() { - return new AddressReeksPostcodeSearchResponseType(); - } - - /** - * Create an instance of {@link CreditsafeGetReportFullV2RequestType } - * - */ - public CreditsafeGetReportFullV2RequestType createCreditsafeGetReportFullV2RequestType() { - return new CreditsafeGetReportFullV2RequestType(); - } - - /** - * Create an instance of {@link AddressReeksParameterSearchRequestType } - * - */ - public AddressReeksParameterSearchRequestType createAddressReeksParameterSearchRequestType() { - return new AddressReeksParameterSearchRequestType(); - } - - /** - * Create an instance of {@link DnbGetReferenceRequestType } - * - */ - public DnbGetReferenceRequestType createDnbGetReferenceRequestType() { - return new DnbGetReferenceRequestType(); - } - - /** - * Create an instance of {@link MapViewRDRequestType } - * - */ - public MapViewRDRequestType createMapViewRDRequestType() { - return new MapViewRDRequestType(); - } - - /** - * Create an instance of {@link KvkGetExtractDocumentResponseType } - * - */ - public KvkGetExtractDocumentResponseType createKvkGetExtractDocumentResponseType() { - return new KvkGetExtractDocumentResponseType(); - } - - /** - * Create an instance of {@link UserViewBalanceRequestType } - * - */ - public UserViewBalanceRequestType createUserViewBalanceRequestType() { - return new UserViewBalanceRequestType(); - } - - /** - * Create an instance of {@link KvkSearchPostcodeResponseType } - * - */ - public KvkSearchPostcodeResponseType createKvkSearchPostcodeResponseType() { - return new KvkSearchPostcodeResponseType(); - } - - /** - * Create an instance of {@link KadasterV2GetKoopsommenOverzichtResponseType } - * - */ - public KadasterV2GetKoopsommenOverzichtResponseType createKadasterV2GetKoopsommenOverzichtResponseType() { - return new KadasterV2GetKoopsommenOverzichtResponseType(); - } - - /** - * Create an instance of {@link GeoLocationRDToLatLonResponseType } - * - */ - public GeoLocationRDToLatLonResponseType createGeoLocationRDToLatLonResponseType() { - return new GeoLocationRDToLatLonResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractHistoryDocumentDataRequestType } - * - */ - public DutchBusinessGetExtractHistoryDocumentDataRequestType createDutchBusinessGetExtractHistoryDocumentDataRequestType() { - return new DutchBusinessGetExtractHistoryDocumentDataRequestType(); - } - - /** - * Create an instance of {@link BusinessUpdateCheckDossierResponseType } - * - */ - public BusinessUpdateCheckDossierResponseType createBusinessUpdateCheckDossierResponseType() { - return new BusinessUpdateCheckDossierResponseType(); - } - - /** - * Create an instance of {@link LogoutRequestType } - * - */ - public LogoutRequestType createLogoutRequestType() { - return new LogoutRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateCheckDossierResponseType } - * - */ - public DutchBusinessUpdateCheckDossierResponseType createDutchBusinessUpdateCheckDossierResponseType() { - return new DutchBusinessUpdateCheckDossierResponseType(); - } - - /** - * Create an instance of {@link BusinessSearchParametersResponseType } - * - */ - public BusinessSearchParametersResponseType createBusinessSearchParametersResponseType() { - return new BusinessSearchParametersResponseType(); - } - - /** - * Create an instance of {@link BusinessSearchParametersV3ResponseType } - * - */ - public BusinessSearchParametersV3ResponseType createBusinessSearchParametersV3ResponseType() { - return new BusinessSearchParametersV3ResponseType(); - } - - /** - * Create an instance of {@link AddressPerceelFullParameterSearchV2ResponseType } - * - */ - public AddressPerceelFullParameterSearchV2ResponseType createAddressPerceelFullParameterSearchV2ResponseType() { - return new AddressPerceelFullParameterSearchV2ResponseType(); - } - - /** - * Create an instance of {@link KadasterHypothecairBerichtPostcodeV3ResponseType } - * - */ - public KadasterHypothecairBerichtPostcodeV3ResponseType createKadasterHypothecairBerichtPostcodeV3ResponseType() { - return new KadasterHypothecairBerichtPostcodeV3ResponseType(); - } - - /** - * Create an instance of {@link KadasterValueListGetRangesResponseType } - * - */ - public KadasterValueListGetRangesResponseType createKadasterValueListGetRangesResponseType() { - return new KadasterValueListGetRangesResponseType(); - } - - /** - * Create an instance of {@link KvkUpdateRemoveDossierRequestType } - * - */ - public KvkUpdateRemoveDossierRequestType createKvkUpdateRemoveDossierRequestType() { - return new KvkUpdateRemoveDossierRequestType(); - } - - /** - * Create an instance of {@link BusinessUpdateGetDossiersRequestType } - * - */ - public BusinessUpdateGetDossiersRequestType createBusinessUpdateGetDossiersRequestType() { - return new BusinessUpdateGetDossiersRequestType(); - } - - /** - * Create an instance of {@link RoutePlannerInformationDutchAddressRequestType } - * - */ - public RoutePlannerInformationDutchAddressRequestType createRoutePlannerInformationDutchAddressRequestType() { - return new RoutePlannerInformationDutchAddressRequestType(); - } - - /** - * Create an instance of {@link GeoLocationNeighborhoodCoordinatesLatLonRequestType } - * - */ - public GeoLocationNeighborhoodCoordinatesLatLonRequestType createGeoLocationNeighborhoodCoordinatesLatLonRequestType() { - return new GeoLocationNeighborhoodCoordinatesLatLonRequestType(); - } - - /** - * Create an instance of {@link KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType } - * - */ - public KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType createKadasterV2GetKadastraalBerichtObjectByObjectIdResponseType() { - return new KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType(); - } - - /** - * Create an instance of {@link CarRDWCarCheckCodeRequestType } - * - */ - public CarRDWCarCheckCodeRequestType createCarRDWCarCheckCodeRequestType() { - return new CarRDWCarCheckCodeRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractHistoryChangedRequestType } - * - */ - public DutchBusinessGetExtractHistoryChangedRequestType createDutchBusinessGetExtractHistoryChangedRequestType() { - return new DutchBusinessGetExtractHistoryChangedRequestType(); - } - - /** - * Create an instance of {@link GeoLocationNeighborhoodCoordinatesRDRequestType } - * - */ - public GeoLocationNeighborhoodCoordinatesRDRequestType createGeoLocationNeighborhoodCoordinatesRDRequestType() { - return new GeoLocationNeighborhoodCoordinatesRDRequestType(); - } - - /** - * Create an instance of {@link ComplianceGetBusinessResponseType } - * - */ - public ComplianceGetBusinessResponseType createComplianceGetBusinessResponseType() { - return new ComplianceGetBusinessResponseType(); - } - - /** - * Create an instance of {@link GraydonCreditCompanyLiaisonsRequestType } - * - */ - public GraydonCreditCompanyLiaisonsRequestType createGraydonCreditCompanyLiaisonsRequestType() { - return new GraydonCreditCompanyLiaisonsRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetConcernRelationsOverviewResponseType } - * - */ - public DutchBusinessGetConcernRelationsOverviewResponseType createDutchBusinessGetConcernRelationsOverviewResponseType() { - return new DutchBusinessGetConcernRelationsOverviewResponseType(); - } - - /** - * Create an instance of {@link KadasterUittrekselKadastraleKaartPerceelV2ResponseType } - * - */ - public KadasterUittrekselKadastraleKaartPerceelV2ResponseType createKadasterUittrekselKadastraleKaartPerceelV2ResponseType() { - return new KadasterUittrekselKadastraleKaartPerceelV2ResponseType(); - } - - /** - * Create an instance of {@link UserCreateV2RequestType } - * - */ - public UserCreateV2RequestType createUserCreateV2RequestType() { - return new UserCreateV2RequestType(); - } - - /** - * Create an instance of {@link UserViewHostRestrictionsRequestType } - * - */ - public UserViewHostRestrictionsRequestType createUserViewHostRestrictionsRequestType() { - return new UserViewHostRestrictionsRequestType(); - } - - /** - * Create an instance of {@link AddressProvinceSearchResponseType } - * - */ - public AddressProvinceSearchResponseType createAddressProvinceSearchResponseType() { - return new AddressProvinceSearchResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetDossierV3ResponseType } - * - */ - public DutchBusinessGetDossierV3ResponseType createDutchBusinessGetDossierV3ResponseType() { - return new DutchBusinessGetDossierV3ResponseType(); - } - - /** - * Create an instance of {@link DnbWorldbaseMarketingPlusResponseType } - * - */ - public DnbWorldbaseMarketingPlusResponseType createDnbWorldbaseMarketingPlusResponseType() { - return new DnbWorldbaseMarketingPlusResponseType(); - } - - /** - * Create an instance of {@link RiskCheckPersonRequestType } - * - */ - public RiskCheckPersonRequestType createRiskCheckPersonRequestType() { - return new RiskCheckPersonRequestType(); - } - - /** - * Create an instance of {@link ComplianceSearchPersonsRequestType } - * - */ - public ComplianceSearchPersonsRequestType createComplianceSearchPersonsRequestType() { - return new ComplianceSearchPersonsRequestType(); - } - - /** - * Create an instance of {@link GeoLocationNeighborhoodDistanceRequestType } - * - */ - public GeoLocationNeighborhoodDistanceRequestType createGeoLocationNeighborhoodDistanceRequestType() { - return new GeoLocationNeighborhoodDistanceRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchNewsByDossierResponseType } - * - */ - public DutchBusinessSearchNewsByDossierResponseType createDutchBusinessSearchNewsByDossierResponseType() { - return new DutchBusinessSearchNewsByDossierResponseType(); - } - - /** - * Create an instance of {@link GraydonCreditManagementResponseType } - * - */ - public GraydonCreditManagementResponseType createGraydonCreditManagementResponseType() { - return new GraydonCreditManagementResponseType(); - } - - /** - * Create an instance of {@link KadasterUittrekselKadastraleKaartPerceelV2RequestType } - * - */ - public KadasterUittrekselKadastraleKaartPerceelV2RequestType createKadasterUittrekselKadastraleKaartPerceelV2RequestType() { - return new KadasterUittrekselKadastraleKaartPerceelV2RequestType(); - } - - /** - * Create an instance of {@link KvkUpdateGetChangedDossiersResponseType } - * - */ - public KvkUpdateGetChangedDossiersResponseType createKvkUpdateGetChangedDossiersResponseType() { - return new KvkUpdateGetChangedDossiersResponseType(); - } - - /** - * Create an instance of {@link KadasterUittrekselKadastraleKaartPerceelV3RequestType } - * - */ - public KadasterUittrekselKadastraleKaartPerceelV3RequestType createKadasterUittrekselKadastraleKaartPerceelV3RequestType() { - return new KadasterUittrekselKadastraleKaartPerceelV3RequestType(); - } - - /** - * Create an instance of {@link UserSessionListRequestType } - * - */ - public UserSessionListRequestType createUserSessionListRequestType() { - return new UserSessionListRequestType(); - } - - /** - * Create an instance of {@link KadasterKoopsommenOverzichtResponseType } - * - */ - public KadasterKoopsommenOverzichtResponseType createKadasterKoopsommenOverzichtResponseType() { - return new KadasterKoopsommenOverzichtResponseType(); - } - - /** - * Create an instance of {@link GraydonCreditGetReportResponseType } - * - */ - public GraydonCreditGetReportResponseType createGraydonCreditGetReportResponseType() { - return new GraydonCreditGetReportResponseType(); - } - - /** - * Create an instance of {@link SepaIbanDetailsRequestType } - * - */ - public SepaIbanDetailsRequestType createSepaIbanDetailsRequestType() { - return new SepaIbanDetailsRequestType(); - } - - /** - * Create an instance of {@link BusinessUpdateGetChangedDossiersRequestType } - * - */ - public BusinessUpdateGetChangedDossiersRequestType createBusinessUpdateGetChangedDossiersRequestType() { - return new BusinessUpdateGetChangedDossiersRequestType(); - } - - /** - * Create an instance of {@link BusinessGetEstablishmentNumberRequestType } - * - */ - public BusinessGetEstablishmentNumberRequestType createBusinessGetEstablishmentNumberRequestType() { - return new BusinessGetEstablishmentNumberRequestType(); - } - - /** - * Create an instance of {@link KvkSearchDossierNumberResponseType } - * - */ - public KvkSearchDossierNumberResponseType createKvkSearchDossierNumberResponseType() { - return new KvkSearchDossierNumberResponseType(); - } - - /** - * Create an instance of {@link BusinessSearchPostcodeRequestType } - * - */ - public BusinessSearchPostcodeRequestType createBusinessSearchPostcodeRequestType() { - return new BusinessSearchPostcodeRequestType(); - } - - /** - * Create an instance of {@link BusinessSearchSelectionResponseType } - * - */ - public BusinessSearchSelectionResponseType createBusinessSearchSelectionResponseType() { - return new BusinessSearchSelectionResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractDocumentRequestType } - * - */ - public DutchBusinessGetExtractDocumentRequestType createDutchBusinessGetExtractDocumentRequestType() { - return new DutchBusinessGetExtractDocumentRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchEstablishmentsRequestType } - * - */ - public DutchBusinessSearchEstablishmentsRequestType createDutchBusinessSearchEstablishmentsRequestType() { - return new DutchBusinessSearchEstablishmentsRequestType(); - } - - /** - * Create an instance of {@link HeaderAuthenticateType } - * - */ - public HeaderAuthenticateType createHeaderAuthenticateType() { - return new HeaderAuthenticateType(); - } - - /** - * Create an instance of {@link DutchBusinessGetAnnualFinancialStatementRequestType } - * - */ - public DutchBusinessGetAnnualFinancialStatementRequestType createDutchBusinessGetAnnualFinancialStatementRequestType() { - return new DutchBusinessGetAnnualFinancialStatementRequestType(); - } - - /** - * Create an instance of {@link CarVWEPhotosResponseType } - * - */ - public CarVWEPhotosResponseType createCarVWEPhotosResponseType() { - return new CarVWEPhotosResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchSelectionSimpleResponseType } - * - */ - public DutchBusinessSearchSelectionSimpleResponseType createDutchBusinessSearchSelectionSimpleResponseType() { - return new DutchBusinessSearchSelectionSimpleResponseType(); - } - - /** - * Create an instance of {@link CarRDWCarDataBPRequestType } - * - */ - public CarRDWCarDataBPRequestType createCarRDWCarDataBPRequestType() { - return new CarRDWCarDataBPRequestType(); - } - - /** - * Create an instance of {@link GraydonCreditVatNumberRequestType } - * - */ - public GraydonCreditVatNumberRequestType createGraydonCreditVatNumberRequestType() { - return new GraydonCreditVatNumberRequestType(); - } - - /** - * Create an instance of {@link KadasterV2GetBronDocumentResponseType } - * - */ - public KadasterV2GetBronDocumentResponseType createKadasterV2GetBronDocumentResponseType() { - return new KadasterV2GetBronDocumentResponseType(); - } - - /** - * Create an instance of {@link RoutePlannerDescriptionCoordinatesRDResponseType } - * - */ - public RoutePlannerDescriptionCoordinatesRDResponseType createRoutePlannerDescriptionCoordinatesRDResponseType() { - return new RoutePlannerDescriptionCoordinatesRDResponseType(); - } - - /** - * Create an instance of {@link KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType } - * - */ - public KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType createKadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType() { - return new KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType(); - } - - /** - * Create an instance of {@link UserAddGroupResponseType } - * - */ - public UserAddGroupResponseType createUserAddGroupResponseType() { - return new UserAddGroupResponseType(); - } - - /** - * Create an instance of {@link KadasterEigendomsBerichtPostcodeRequestType } - * - */ - public KadasterEigendomsBerichtPostcodeRequestType createKadasterEigendomsBerichtPostcodeRequestType() { - return new KadasterEigendomsBerichtPostcodeRequestType(); - } - - /** - * Create an instance of {@link AddressPerceelFullParameterSearchResponseType } - * - */ - public AddressPerceelFullParameterSearchResponseType createAddressPerceelFullParameterSearchResponseType() { - return new AddressPerceelFullParameterSearchResponseType(); - } - - /** - * Create an instance of {@link BovagGetMemberByDutchBusinessRequestType } - * - */ - public BovagGetMemberByDutchBusinessRequestType createBovagGetMemberByDutchBusinessRequestType() { - return new BovagGetMemberByDutchBusinessRequestType(); - } - - /** - * Create an instance of {@link InsolvencySearchPublicationsByPersonRequestType } - * - */ - public InsolvencySearchPublicationsByPersonRequestType createInsolvencySearchPublicationsByPersonRequestType() { - return new InsolvencySearchPublicationsByPersonRequestType(); - } - - /** - * Create an instance of {@link CarVWEListModelsRequestType } - * - */ - public CarVWEListModelsRequestType createCarVWEListModelsRequestType() { - return new CarVWEListModelsRequestType(); - } - - /** - * Create an instance of {@link UserEditV2ResponseType } - * - */ - public UserEditV2ResponseType createUserEditV2ResponseType() { - return new UserEditV2ResponseType(); - } - - /** - * Create an instance of {@link AddressPerceelFullParameterSearchRequestType } - * - */ - public AddressPerceelFullParameterSearchRequestType createAddressPerceelFullParameterSearchRequestType() { - return new AddressPerceelFullParameterSearchRequestType(); - } - - /** - * Create an instance of {@link BusinessUpdateGetDossiersResponseType } - * - */ - public BusinessUpdateGetDossiersResponseType createBusinessUpdateGetDossiersResponseType() { - return new BusinessUpdateGetDossiersResponseType(); - } - - /** - * Create an instance of {@link CreateTestUserResponseType } - * - */ - public CreateTestUserResponseType createCreateTestUserResponseType() { - return new CreateTestUserResponseType(); - } - - /** - * Create an instance of {@link DnbSearchReferenceRequestType } - * - */ - public DnbSearchReferenceRequestType createDnbSearchReferenceRequestType() { - return new DnbSearchReferenceRequestType(); - } - - /** - * Create an instance of {@link RoutePlannerDescriptionCoordinatesRDRequestType } - * - */ - public RoutePlannerDescriptionCoordinatesRDRequestType createRoutePlannerDescriptionCoordinatesRDRequestType() { - return new RoutePlannerDescriptionCoordinatesRDRequestType(); - } - - /** - * Create an instance of {@link SepaConvertBasicBankAccountNumberResponseType } - * - */ - public SepaConvertBasicBankAccountNumberResponseType createSepaConvertBasicBankAccountNumberResponseType() { - return new SepaConvertBasicBankAccountNumberResponseType(); - } - - /** - * Create an instance of {@link DutchVehicleGetOwnerHistoryRequestType } - * - */ - public DutchVehicleGetOwnerHistoryRequestType createDutchVehicleGetOwnerHistoryRequestType() { - return new DutchVehicleGetOwnerHistoryRequestType(); - } - - /** - * Create an instance of {@link KadasterKadastraleKaartPerceelRequestType } - * - */ - public KadasterKadastraleKaartPerceelRequestType createKadasterKadastraleKaartPerceelRequestType() { - return new KadasterKadastraleKaartPerceelRequestType(); - } - - /** - * Create an instance of {@link DnbWorldbaseMarketingResponseType } - * - */ - public DnbWorldbaseMarketingResponseType createDnbWorldbaseMarketingResponseType() { - return new DnbWorldbaseMarketingResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractHistoryRequestType } - * - */ - public DutchBusinessGetExtractHistoryRequestType createDutchBusinessGetExtractHistoryRequestType() { - return new DutchBusinessGetExtractHistoryRequestType(); - } - - /** - * Create an instance of {@link KadasterEigendomsBerichtDocumentPostcodeRequestType } - * - */ - public KadasterEigendomsBerichtDocumentPostcodeRequestType createKadasterEigendomsBerichtDocumentPostcodeRequestType() { - return new KadasterEigendomsBerichtDocumentPostcodeRequestType(); - } - - /** - * Create an instance of {@link VatViesProxyCheckVatRequestType } - * - */ - public VatViesProxyCheckVatRequestType createVatViesProxyCheckVatRequestType() { - return new VatViesProxyCheckVatRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateCheckDossierRequestType } - * - */ - public DutchBusinessUpdateCheckDossierRequestType createDutchBusinessUpdateCheckDossierRequestType() { - return new DutchBusinessUpdateCheckDossierRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetExtractDocumentDataV2ResponseType } - * - */ - public DutchBusinessGetExtractDocumentDataV2ResponseType createDutchBusinessGetExtractDocumentDataV2ResponseType() { - return new DutchBusinessGetExtractDocumentDataV2ResponseType(); - } - - /** - * Create an instance of {@link AddressReeksPostcodeSearchRequestType } - * - */ - public AddressReeksPostcodeSearchRequestType createAddressReeksPostcodeSearchRequestType() { - return new AddressReeksPostcodeSearchRequestType(); - } - - /** - * Create an instance of {@link GraydonCreditSearchPostcodeResponseType } - * - */ - public GraydonCreditSearchPostcodeResponseType createGraydonCreditSearchPostcodeResponseType() { - return new GraydonCreditSearchPostcodeResponseType(); - } - - /** - * Create an instance of {@link ComplianceGetPersonResponseType } - * - */ - public ComplianceGetPersonResponseType createComplianceGetPersonResponseType() { - return new ComplianceGetPersonResponseType(); - } - - /** - * Create an instance of {@link CreditsafeMonitorGetUpdatedCompaniesResponseType } - * - */ - public CreditsafeMonitorGetUpdatedCompaniesResponseType createCreditsafeMonitorGetUpdatedCompaniesResponseType() { - return new CreditsafeMonitorGetUpdatedCompaniesResponseType(); - } - - /** - * Create an instance of {@link RoutePlannerRDInformationRequestType } - * - */ - public RoutePlannerRDInformationRequestType createRoutePlannerRDInformationRequestType() { - return new RoutePlannerRDInformationRequestType(); - } - - /** - * Create an instance of {@link UserRemoveResponseType } - * - */ - public UserRemoveResponseType createUserRemoveResponseType() { - return new UserRemoveResponseType(); - } - - /** - * Create an instance of {@link MetaGetServiceResponseType } - * - */ - public MetaGetServiceResponseType createMetaGetServiceResponseType() { - return new MetaGetServiceResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetLegalEntityResponseType } - * - */ - public DutchBusinessGetLegalEntityResponseType createDutchBusinessGetLegalEntityResponseType() { - return new DutchBusinessGetLegalEntityResponseType(); - } - - /** - * Create an instance of {@link GeoLocationNeighborhoodCoordinatesLatLonResponseType } - * - */ - public GeoLocationNeighborhoodCoordinatesLatLonResponseType createGeoLocationNeighborhoodCoordinatesLatLonResponseType() { - return new GeoLocationNeighborhoodCoordinatesLatLonResponseType(); - } - - /** - * Create an instance of {@link AreaCodePostcodeLookupResponseType } - * - */ - public AreaCodePostcodeLookupResponseType createAreaCodePostcodeLookupResponseType() { - return new AreaCodePostcodeLookupResponseType(); - } - - /** - * Create an instance of {@link SepaIbanDetailsResponseType } - * - */ - public SepaIbanDetailsResponseType createSepaIbanDetailsResponseType() { - return new SepaIbanDetailsResponseType(); - } - - /** - * Create an instance of {@link GraydonCreditQuickscanRequestType } - * - */ - public GraydonCreditQuickscanRequestType createGraydonCreditQuickscanRequestType() { - return new GraydonCreditQuickscanRequestType(); - } - - /** - * Create an instance of {@link GeoLocationInternationalLatLonToAddressResponseType } - * - */ - public GeoLocationInternationalLatLonToAddressResponseType createGeoLocationInternationalLatLonToAddressResponseType() { - return new GeoLocationInternationalLatLonToAddressResponseType(); - } - - /** - * Create an instance of {@link AccountGetCreationStatusResponseType } - * - */ - public AccountGetCreationStatusResponseType createAccountGetCreationStatusResponseType() { - return new AccountGetCreationStatusResponseType(); - } - - /** - * Create an instance of {@link KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType } - * - */ - public KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType createKadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType() { - return new KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType(); - } - - /** - * Create an instance of {@link GeoLocationRDToPostcodeResponseType } - * - */ - public GeoLocationRDToPostcodeResponseType createGeoLocationRDToPostcodeResponseType() { - return new GeoLocationRDToPostcodeResponseType(); - } - - /** - * Create an instance of {@link KadasterEigendomsBerichtDocumentPerceelRequestType } - * - */ - public KadasterEigendomsBerichtDocumentPerceelRequestType createKadasterEigendomsBerichtDocumentPerceelRequestType() { - return new KadasterEigendomsBerichtDocumentPerceelRequestType(); - } - - /** - * Create an instance of {@link UserSessionRemoveRequestType } - * - */ - public UserSessionRemoveRequestType createUserSessionRemoveRequestType() { - return new UserSessionRemoveRequestType(); - } - - /** - * Create an instance of {@link KadasterV2GetUittrekselKadastraleKaartByAdresResponseType } - * - */ - public KadasterV2GetUittrekselKadastraleKaartByAdresResponseType createKadasterV2GetUittrekselKadastraleKaartByAdresResponseType() { - return new KadasterV2GetUittrekselKadastraleKaartByAdresResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateRemoveDossierRequestType } - * - */ - public DutchBusinessUpdateRemoveDossierRequestType createDutchBusinessUpdateRemoveDossierRequestType() { - return new DutchBusinessUpdateRemoveDossierRequestType(); - } - - /** - * Create an instance of {@link AddressNeighborhoodPhraseSearchResponseType } - * - */ - public AddressNeighborhoodPhraseSearchResponseType createAddressNeighborhoodPhraseSearchResponseType() { - return new AddressNeighborhoodPhraseSearchResponseType(); - } - - /** - * Create an instance of {@link CarVWEListBrandsRequestType } - * - */ - public CarVWEListBrandsRequestType createCarVWEListBrandsRequestType() { - return new CarVWEListBrandsRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchEstablishmentsResponseType } - * - */ - public DutchBusinessSearchEstablishmentsResponseType createDutchBusinessSearchEstablishmentsResponseType() { - return new DutchBusinessSearchEstablishmentsResponseType(); - } - - /** - * Create an instance of {@link GeoLocationInternationalLatLonToAddressRequestType } - * - */ - public GeoLocationInternationalLatLonToAddressRequestType createGeoLocationInternationalLatLonToAddressRequestType() { - return new GeoLocationInternationalLatLonToAddressRequestType(); - } - - /** - * Create an instance of {@link LogoutResponseType } - * - */ - public LogoutResponseType createLogoutResponseType() { - return new LogoutResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchParametersResponseType } - * - */ - public DutchBusinessSearchParametersResponseType createDutchBusinessSearchParametersResponseType() { - return new DutchBusinessSearchParametersResponseType(); - } - - /** - * Create an instance of {@link VatViesProxyCheckVatResponseType } - * - */ - public VatViesProxyCheckVatResponseType createVatViesProxyCheckVatResponseType() { - return new VatViesProxyCheckVatResponseType(); - } - - /** - * Create an instance of {@link DriveInfoDistanceLookupRequestType } - * - */ - public DriveInfoDistanceLookupRequestType createDriveInfoDistanceLookupRequestType() { - return new DriveInfoDistanceLookupRequestType(); - } - - /** - * Create an instance of {@link GraydonCreditRatingsResponseType } - * - */ - public GraydonCreditRatingsResponseType createGraydonCreditRatingsResponseType() { - return new GraydonCreditRatingsResponseType(); - } - - /** - * Create an instance of {@link BusinessSearchParametersV2ResponseType } - * - */ - public BusinessSearchParametersV2ResponseType createBusinessSearchParametersV2ResponseType() { - return new BusinessSearchParametersV2ResponseType(); - } - - /** - * Create an instance of {@link RoutePlannerEUDescriptionResponseType } - * - */ - public RoutePlannerEUDescriptionResponseType createRoutePlannerEUDescriptionResponseType() { - return new RoutePlannerEUDescriptionResponseType(); - } - - /** - * Create an instance of {@link UserEditV2RequestType } - * - */ - public UserEditV2RequestType createUserEditV2RequestType() { - return new UserEditV2RequestType(); - } - - /** - * Create an instance of {@link BusinessSearchNameRequestType } - * - */ - public BusinessSearchNameRequestType createBusinessSearchNameRequestType() { - return new BusinessSearchNameRequestType(); - } - - /** - * Create an instance of {@link InsolvencySearchPublicationsByCoCNumberResponseType } - * - */ - public InsolvencySearchPublicationsByCoCNumberResponseType createInsolvencySearchPublicationsByCoCNumberResponseType() { - return new InsolvencySearchPublicationsByCoCNumberResponseType(); - } - - /** - * Create an instance of {@link CarVWEListVersionsResponseType } - * - */ - public CarVWEListVersionsResponseType createCarVWEListVersionsResponseType() { - return new CarVWEListVersionsResponseType(); - } - - /** - * Create an instance of {@link MetaGetMethodResponseType } - * - */ - public MetaGetMethodResponseType createMetaGetMethodResponseType() { - return new MetaGetMethodResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetConcernRelationsDetailsResponseType } - * - */ - public DutchBusinessGetConcernRelationsDetailsResponseType createDutchBusinessGetConcernRelationsDetailsResponseType() { - return new DutchBusinessGetConcernRelationsDetailsResponseType(); - } - - /** - * Create an instance of {@link AddressProvinceListDistrictsRequestType } - * - */ - public AddressProvinceListDistrictsRequestType createAddressProvinceListDistrictsRequestType() { - return new AddressProvinceListDistrictsRequestType(); - } - - /** - * Create an instance of {@link BusinessSearchNameResponseType } - * - */ - public BusinessSearchNameResponseType createBusinessSearchNameResponseType() { - return new BusinessSearchNameResponseType(); - } - - /** - * Create an instance of {@link GraydonCreditSearchIdentificationRequestType } - * - */ - public GraydonCreditSearchIdentificationRequestType createGraydonCreditSearchIdentificationRequestType() { - return new GraydonCreditSearchIdentificationRequestType(); - } - - /** - * Create an instance of {@link KadasterHypothecairBerichtPerceelRequestType } - * - */ - public KadasterHypothecairBerichtPerceelRequestType createKadasterHypothecairBerichtPerceelRequestType() { - return new KadasterHypothecairBerichtPerceelRequestType(); - } - - /** - * Create an instance of {@link BusinessSearchAddressResponseType } - * - */ - public BusinessSearchAddressResponseType createBusinessSearchAddressResponseType() { - return new BusinessSearchAddressResponseType(); - } - - /** - * Create an instance of {@link SepaValidateInternationalBankAccountNumberFormatRequestType } - * - */ - public SepaValidateInternationalBankAccountNumberFormatRequestType createSepaValidateInternationalBankAccountNumberFormatRequestType() { - return new SepaValidateInternationalBankAccountNumberFormatRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessUBOClassifyInvestigationResponseType } - * - */ - public DutchBusinessUBOClassifyInvestigationResponseType createDutchBusinessUBOClassifyInvestigationResponseType() { - return new DutchBusinessUBOClassifyInvestigationResponseType(); - } - - /** - * Create an instance of {@link AddressReeksFullParameterSearchRequestType } - * - */ - public AddressReeksFullParameterSearchRequestType createAddressReeksFullParameterSearchRequestType() { - return new AddressReeksFullParameterSearchRequestType(); - } - - /** - * Create an instance of {@link KadasterV2GetUittrekselKadastraleKaartByAdresRequestType } - * - */ - public KadasterV2GetUittrekselKadastraleKaartByAdresRequestType createKadasterV2GetUittrekselKadastraleKaartByAdresRequestType() { - return new KadasterV2GetUittrekselKadastraleKaartByAdresRequestType(); - } - - /** - * Create an instance of {@link KadasterKoopsommenOverzichtRequestType } - * - */ - public KadasterKoopsommenOverzichtRequestType createKadasterKoopsommenOverzichtRequestType() { - return new KadasterKoopsommenOverzichtRequestType(); - } - - /** - * Create an instance of {@link AreaCodePostcodeLookupRequestType } - * - */ - public AreaCodePostcodeLookupRequestType createAreaCodePostcodeLookupRequestType() { - return new AreaCodePostcodeLookupRequestType(); - } - - /** - * Create an instance of {@link DnbEnterpriseManagementRequestType } - * - */ - public DnbEnterpriseManagementRequestType createDnbEnterpriseManagementRequestType() { - return new DnbEnterpriseManagementRequestType(); - } - - /** - * Create an instance of {@link DutchBusinessGetOrganizationTreeRequestType } - * - */ - public DutchBusinessGetOrganizationTreeRequestType createDutchBusinessGetOrganizationTreeRequestType() { - return new DutchBusinessGetOrganizationTreeRequestType(); - } - - /** - * Create an instance of {@link BusinessGetEstablishmentNumberResponseType } - * - */ - public BusinessGetEstablishmentNumberResponseType createBusinessGetEstablishmentNumberResponseType() { - return new BusinessGetEstablishmentNumberResponseType(); - } - - /** - * Create an instance of {@link CarVWEPhotosRequestType } - * - */ - public CarVWEPhotosRequestType createCarVWEPhotosRequestType() { - return new CarVWEPhotosRequestType(); - } - - /** - * Create an instance of {@link EdrGetScoreResponseType } - * - */ - public EdrGetScoreResponseType createEdrGetScoreResponseType() { - return new EdrGetScoreResponseType(); - } - - /** - * Create an instance of {@link RiskCheckGetRiskPersonCompanyReportRequestType } - * - */ - public RiskCheckGetRiskPersonCompanyReportRequestType createRiskCheckGetRiskPersonCompanyReportRequestType() { - return new RiskCheckGetRiskPersonCompanyReportRequestType(); - } - - /** - * Create an instance of {@link EdrGetScoreRequestType } - * - */ - public EdrGetScoreRequestType createEdrGetScoreRequestType() { - return new EdrGetScoreRequestType(); - } - - /** - * Create an instance of {@link RoutePlannerRDInformationResponseType } - * - */ - public RoutePlannerRDInformationResponseType createRoutePlannerRDInformationResponseType() { - return new RoutePlannerRDInformationResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessSearchParametersV2RequestType } - * - */ - public DutchBusinessSearchParametersV2RequestType createDutchBusinessSearchParametersV2RequestType() { - return new DutchBusinessSearchParametersV2RequestType(); - } - - /** - * Create an instance of {@link GeoLocationLatLonToRDRequestType } - * - */ - public GeoLocationLatLonToRDRequestType createGeoLocationLatLonToRDRequestType() { - return new GeoLocationLatLonToRDRequestType(); - } - - /** - * Create an instance of {@link RoutePlannerEUDescriptionRequestType } - * - */ - public RoutePlannerEUDescriptionRequestType createRoutePlannerEUDescriptionRequestType() { - return new RoutePlannerEUDescriptionRequestType(); - } - - /** - * Create an instance of {@link GeoLocationLatLonToPostcodeRequestType } - * - */ - public GeoLocationLatLonToPostcodeRequestType createGeoLocationLatLonToPostcodeRequestType() { - return new GeoLocationLatLonToPostcodeRequestType(); - } - - /** - * Create an instance of {@link KadasterUittrekselKadastraleKaartPerceelResponseType } - * - */ - public KadasterUittrekselKadastraleKaartPerceelResponseType createKadasterUittrekselKadastraleKaartPerceelResponseType() { - return new KadasterUittrekselKadastraleKaartPerceelResponseType(); - } - - /** - * Create an instance of {@link KvkUpdateAddDossierResponseType } - * - */ - public KvkUpdateAddDossierResponseType createKvkUpdateAddDossierResponseType() { - return new KvkUpdateAddDossierResponseType(); - } - - /** - * Create an instance of {@link DutchBusinessGetLeiRequestType } - * - */ - public DutchBusinessGetLeiRequestType createDutchBusinessGetLeiRequestType() { - return new DutchBusinessGetLeiRequestType(); - } - - /** - * Create an instance of {@link GeoLocationLatLonToAddressV2RequestType } - * - */ - public GeoLocationLatLonToAddressV2RequestType createGeoLocationLatLonToAddressV2RequestType() { - return new GeoLocationLatLonToAddressV2RequestType(); - } - - /** - * Create an instance of {@link AreaCodeToNeighborhoodcodeRequestType } - * - */ - public AreaCodeToNeighborhoodcodeRequestType createAreaCodeToNeighborhoodcodeRequestType() { - return new AreaCodeToNeighborhoodcodeRequestType(); - } - - /** - * Create an instance of {@link AccountGetCreationTokenRequestType } - * - */ - public AccountGetCreationTokenRequestType createAccountGetCreationTokenRequestType() { - return new AccountGetCreationTokenRequestType(); - } - - /** - * Create an instance of {@link CreditsafeCompanyCreditScoreV2Array } - * - */ - public CreditsafeCompanyCreditScoreV2Array createCreditsafeCompanyCreditScoreV2Array() { - return new CreditsafeCompanyCreditScoreV2Array(); - } - - /** - * Create an instance of {@link KadasterV2MandeligheidArray } - * - */ - public KadasterV2MandeligheidArray createKadasterV2MandeligheidArray() { - return new KadasterV2MandeligheidArray(); - } - - /** - * Create an instance of {@link KadasterV2NietNatuurlijkPersoonArray } - * - */ - public KadasterV2NietNatuurlijkPersoonArray createKadasterV2NietNatuurlijkPersoonArray() { - return new KadasterV2NietNatuurlijkPersoonArray(); - } - - /** - * Create an instance of {@link KadasterV2DeelEnNummer } - * - */ - public KadasterV2DeelEnNummer createKadasterV2DeelEnNummer() { - return new KadasterV2DeelEnNummer(); - } - - /** - * Create an instance of {@link DutchBusinessAdditionalPosition } - * - */ - public DutchBusinessAdditionalPosition createDutchBusinessAdditionalPosition() { - return new DutchBusinessAdditionalPosition(); - } - - /** - * Create an instance of {@link CreditsafeAdvisorArray } - * - */ - public CreditsafeAdvisorArray createCreditsafeAdvisorArray() { - return new CreditsafeAdvisorArray(); - } - - /** - * Create an instance of {@link DutchBusinessGetConcernRelationsOverviewReference } - * - */ - public DutchBusinessGetConcernRelationsOverviewReference createDutchBusinessGetConcernRelationsOverviewReference() { - return new DutchBusinessGetConcernRelationsOverviewReference(); - } - - /** - * Create an instance of {@link DistrictArray } - * - */ - public DistrictArray createDistrictArray() { - return new DistrictArray(); - } - - /** - * Create an instance of {@link CreditsafeDirectorArray } - * - */ - public CreditsafeDirectorArray createCreditsafeDirectorArray() { - return new CreditsafeDirectorArray(); - } - - /** - * Create an instance of {@link CreditsafeCompany } - * - */ - public CreditsafeCompany createCreditsafeCompany() { - return new CreditsafeCompany(); - } - - /** - * Create an instance of {@link DutchBusinessSBISection } - * - */ - public DutchBusinessSBISection createDutchBusinessSBISection() { - return new DutchBusinessSBISection(); - } - - /** - * Create an instance of {@link RiskCompanyArray } - * - */ - public RiskCompanyArray createRiskCompanyArray() { - return new RiskCompanyArray(); - } - - /** - * Create an instance of {@link ComplianceNoteReference } - * - */ - public ComplianceNoteReference createComplianceNoteReference() { - return new ComplianceNoteReference(); - } - - /** - * Create an instance of {@link DutchBusinessLeiSuccessor } - * - */ - public DutchBusinessLeiSuccessor createDutchBusinessLeiSuccessor() { - return new DutchBusinessLeiSuccessor(); - } - - /** - * Create an instance of {@link BusinessDossierV2Array } - * - */ - public BusinessDossierV2Array createBusinessDossierV2Array() { - return new BusinessDossierV2Array(); - } - - /** - * Create an instance of {@link DutchBusinessUBOReceipt } - * - */ - public DutchBusinessUBOReceipt createDutchBusinessUBOReceipt() { - return new DutchBusinessUBOReceipt(); - } - - /** - * Create an instance of {@link CarStatus } - * - */ - public CarStatus createCarStatus() { - return new CarStatus(); - } - - /** - * Create an instance of {@link KadasterLocatieBinnenlandArray } - * - */ - public KadasterLocatieBinnenlandArray createKadasterLocatieBinnenlandArray() { - return new KadasterLocatieBinnenlandArray(); - } - - /** - * Create an instance of {@link GCRPersonnel } - * - */ - public GCRPersonnel createGCRPersonnel() { - return new GCRPersonnel(); - } - - /** - * Create an instance of {@link CreditsafeIndustryQuartilyAnalysis } - * - */ - public CreditsafeIndustryQuartilyAnalysis createCreditsafeIndustryQuartilyAnalysis() { - return new CreditsafeIndustryQuartilyAnalysis(); - } - - /** - * Create an instance of {@link RouteDescriptionCoordinatesLatLon } - * - */ - public RouteDescriptionCoordinatesLatLon createRouteDescriptionCoordinatesLatLon() { - return new RouteDescriptionCoordinatesLatLon(); - } - - /** - * Create an instance of {@link Landinrichtingsrente } - * - */ - public Landinrichtingsrente createLandinrichtingsrente() { - return new Landinrichtingsrente(); - } - - /** - * Create an instance of {@link ComplianceDocumentReferenceArray } - * - */ - public ComplianceDocumentReferenceArray createComplianceDocumentReferenceArray() { - return new ComplianceDocumentReferenceArray(); - } - - /** - * Create an instance of {@link CarVWEBrandPagedResult } - * - */ - public CarVWEBrandPagedResult createCarVWEBrandPagedResult() { - return new CarVWEBrandPagedResult(); - } - - /** - * Create an instance of {@link DutchBusinessEnterprise } - * - */ - public DutchBusinessEnterprise createDutchBusinessEnterprise() { - return new DutchBusinessEnterprise(); - } - - /** - * Create an instance of {@link GraydonCreditReportNormal } - * - */ - public GraydonCreditReportNormal createGraydonCreditReportNormal() { - return new GraydonCreditReportNormal(); - } - - /** - * Create an instance of {@link GCRNumberOfEmployees } - * - */ - public GCRNumberOfEmployees createGCRNumberOfEmployees() { - return new GCRNumberOfEmployees(); - } - - /** - * Create an instance of {@link RDCoordinates } - * - */ - public RDCoordinates createRDCoordinates() { - return new RDCoordinates(); - } - - /** - * Create an instance of {@link BelgianBusinessSocialBalance } - * - */ - public BelgianBusinessSocialBalance createBelgianBusinessSocialBalance() { - return new BelgianBusinessSocialBalance(); - } - - /** - * Create an instance of {@link DutchBusinessPositionV3Array } - * - */ - public DutchBusinessPositionV3Array createDutchBusinessPositionV3Array() { - return new DutchBusinessPositionV3Array(); - } - - /** - * Create an instance of {@link CityArray } - * - */ - public CityArray createCityArray() { - return new CityArray(); - } - - /** - * Create an instance of {@link CarVWEBrand } - * - */ - public CarVWEBrand createCarVWEBrand() { - return new CarVWEBrand(); - } - - /** - * Create an instance of {@link KadasterDomicilieKeuzeLijst } - * - */ - public KadasterDomicilieKeuzeLijst createKadasterDomicilieKeuzeLijst() { - return new KadasterDomicilieKeuzeLijst(); - } - - /** - * Create an instance of {@link CreditsafeCompanyActivityClassificationV2 } - * - */ - public CreditsafeCompanyActivityClassificationV2 createCreditsafeCompanyActivityClassificationV2() { - return new CreditsafeCompanyActivityClassificationV2(); - } - - /** - * Create an instance of {@link GCRPersonSimpleArray } - * - */ - public GCRPersonSimpleArray createGCRPersonSimpleArray() { - return new GCRPersonSimpleArray(); - } - - /** - * Create an instance of {@link GCRLiaisonContactDetails } - * - */ - public GCRLiaisonContactDetails createGCRLiaisonContactDetails() { - return new GCRLiaisonContactDetails(); - } - - /** - * Create an instance of {@link MetaElementDefinition } - * - */ - public MetaElementDefinition createMetaElementDefinition() { - return new MetaElementDefinition(); - } - - /** - * Create an instance of {@link CarVWEOptionsPackage } - * - */ - public CarVWEOptionsPackage createCarVWEOptionsPackage() { - return new CarVWEOptionsPackage(); - } - - /** - * Create an instance of {@link InsolvencyReportArray } - * - */ - public InsolvencyReportArray createInsolvencyReportArray() { - return new InsolvencyReportArray(); - } - - /** - * Create an instance of {@link CreditsafeNlLettersOfLiabilityArray } - * - */ - public CreditsafeNlLettersOfLiabilityArray createCreditsafeNlLettersOfLiabilityArray() { - return new CreditsafeNlLettersOfLiabilityArray(); - } - - /** - * Create an instance of {@link CreditsafeSearchCriteriaParamArray } - * - */ - public CreditsafeSearchCriteriaParamArray createCreditsafeSearchCriteriaParamArray() { - return new CreditsafeSearchCriteriaParamArray(); - } - - /** - * Create an instance of {@link CarExtended } - * - */ - public CarExtended createCarExtended() { - return new CarExtended(); - } - - /** - * Create an instance of {@link CreditsafeDirector } - * - */ - public CreditsafeDirector createCreditsafeDirector() { - return new CreditsafeDirector(); - } - - /** - * Create an instance of {@link DutchBusinessUBOOrganisation } - * - */ - public DutchBusinessUBOOrganisation createDutchBusinessUBOOrganisation() { - return new DutchBusinessUBOOrganisation(); - } - - /** - * Create an instance of {@link CreditsafeCompanyReportFull } - * - */ - public CreditsafeCompanyReportFull createCreditsafeCompanyReportFull() { - return new CreditsafeCompanyReportFull(); - } - - /** - * Create an instance of {@link GCRBirthInformation } - * - */ - public GCRBirthInformation createGCRBirthInformation() { - return new GCRBirthInformation(); - } - - /** - * Create an instance of {@link GCRAnnualFigures } - * - */ - public GCRAnnualFigures createGCRAnnualFigures() { - return new GCRAnnualFigures(); - } - - /** - * Create an instance of {@link RiskLegalRestraintDecisionArray } - * - */ - public RiskLegalRestraintDecisionArray createRiskLegalRestraintDecisionArray() { - return new RiskLegalRestraintDecisionArray(); - } - - /** - * Create an instance of {@link StringArray } - * - */ - public StringArray createStringArray() { - return new StringArray(); - } - - /** - * Create an instance of {@link VerenigingVanEigenaren } - * - */ - public VerenigingVanEigenaren createVerenigingVanEigenaren() { - return new VerenigingVanEigenaren(); - } - - /** - * Create an instance of {@link KadasterV2BijlageArray } - * - */ - public KadasterV2BijlageArray createKadasterV2BijlageArray() { - return new KadasterV2BijlageArray(); - } - - /** - * Create an instance of {@link GCRFounded } - * - */ - public GCRFounded createGCRFounded() { - return new GCRFounded(); - } - - /** - * Create an instance of {@link CreditsafeCompanyCompanyV2 } - * - */ - public CreditsafeCompanyCompanyV2 createCreditsafeCompanyCompanyV2() { - return new CreditsafeCompanyCompanyV2(); - } - - /** - * Create an instance of {@link DutchBusinessNewsItem } - * - */ - public DutchBusinessNewsItem createDutchBusinessNewsItem() { - return new DutchBusinessNewsItem(); - } - - /** - * Create an instance of {@link KadasterStukdeel } - * - */ - public KadasterStukdeel createKadasterStukdeel() { - return new KadasterStukdeel(); - } - - /** - * Create an instance of {@link CreditsafeCompanyActivity } - * - */ - public CreditsafeCompanyActivity createCreditsafeCompanyActivity() { - return new CreditsafeCompanyActivity(); - } - - /** - * Create an instance of {@link CarOption } - * - */ - public CarOption createCarOption() { - return new CarOption(); - } - - /** - * Create an instance of {@link CreditsafeCompanyReportFullV2 } - * - */ - public CreditsafeCompanyReportFullV2 createCreditsafeCompanyReportFullV2() { - return new CreditsafeCompanyReportFullV2(); - } - - /** - * Create an instance of {@link InsolvencyPublicationArray } - * - */ - public InsolvencyPublicationArray createInsolvencyPublicationArray() { - return new InsolvencyPublicationArray(); - } - - /** - * Create an instance of {@link CreditsafePersonPreviousDirectorV2 } - * - */ - public CreditsafePersonPreviousDirectorV2 createCreditsafePersonPreviousDirectorV2() { - return new CreditsafePersonPreviousDirectorV2(); - } - - /** - * Create an instance of {@link KadasterV2Breuk } - * - */ - public KadasterV2Breuk createKadasterV2Breuk() { - return new KadasterV2Breuk(); - } - - /** - * Create an instance of {@link InternationalFormattedAddressArray } - * - */ - public InternationalFormattedAddressArray createInternationalFormattedAddressArray() { - return new InternationalFormattedAddressArray(); - } - - /** - * Create an instance of {@link KadasterBedrag } - * - */ - public KadasterBedrag createKadasterBedrag() { - return new KadasterBedrag(); - } - - /** - * Create an instance of {@link BusinessReferenceV3PagedResult } - * - */ - public BusinessReferenceV3PagedResult createBusinessReferenceV3PagedResult() { - return new BusinessReferenceV3PagedResult(); - } - - /** - * Create an instance of {@link CreditsafeCompanySummaryV2Array } - * - */ - public CreditsafeCompanySummaryV2Array createCreditsafeCompanySummaryV2Array() { - return new CreditsafeCompanySummaryV2Array(); - } - - /** - * Create an instance of {@link CarBP } - * - */ - public CarBP createCarBP() { - return new CarBP(); - } - - /** - * Create an instance of {@link GCRCompany } - * - */ - public GCRCompany createGCRCompany() { - return new GCRCompany(); - } - - /** - * Create an instance of {@link GCRCompanyContinuedUnderArray } - * - */ - public GCRCompanyContinuedUnderArray createGCRCompanyContinuedUnderArray() { - return new GCRCompanyContinuedUnderArray(); - } - - /** - * Create an instance of {@link DocumentOverzicht } - * - */ - public DocumentOverzicht createDocumentOverzicht() { - return new DocumentOverzicht(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationNLV2Array } - * - */ - public CreditsafeCompanyNegativeInformationNLV2Array createCreditsafeCompanyNegativeInformationNLV2Array() { - return new CreditsafeCompanyNegativeInformationNLV2Array(); - } - - /** - * Create an instance of {@link CreditsafeCompanyOtherFinancialsV2Array } - * - */ - public CreditsafeCompanyOtherFinancialsV2Array createCreditsafeCompanyOtherFinancialsV2Array() { - return new CreditsafeCompanyOtherFinancialsV2Array(); - } - - /** - * Create an instance of {@link DutchVehiclePriceValuation } - * - */ - public DutchVehiclePriceValuation createDutchVehiclePriceValuation() { - return new DutchVehiclePriceValuation(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationDEDirectorEventV2Array } - * - */ - public CreditsafeCompanyNegativeInformationDEDirectorEventV2Array createCreditsafeCompanyNegativeInformationDEDirectorEventV2Array() { - return new CreditsafeCompanyNegativeInformationDEDirectorEventV2Array(); - } - - /** - * Create an instance of {@link OverzichtPersoon } - * - */ - public OverzichtPersoon createOverzichtPersoon() { - return new OverzichtPersoon(); - } - - /** - * Create an instance of {@link ComplianceAddressReferenceArray } - * - */ - public ComplianceAddressReferenceArray createComplianceAddressReferenceArray() { - return new ComplianceAddressReferenceArray(); - } - - /** - * Create an instance of {@link KadasterV2GevraagdGebied } - * - */ - public KadasterV2GevraagdGebied createKadasterV2GevraagdGebied() { - return new KadasterV2GevraagdGebied(); - } - - /** - * Create an instance of {@link GCRLiabilities } - * - */ - public GCRLiabilities createGCRLiabilities() { - return new GCRLiabilities(); - } - - /** - * Create an instance of {@link BelgianBusinessFinancialValues } - * - */ - public BelgianBusinessFinancialValues createBelgianBusinessFinancialValues() { - return new BelgianBusinessFinancialValues(); - } - - /** - * Create an instance of {@link RouteLocation } - * - */ - public RouteLocation createRouteLocation() { - return new RouteLocation(); - } - - /** - * Create an instance of {@link RiskInsolvencyJudge } - * - */ - public RiskInsolvencyJudge createRiskInsolvencyJudge() { - return new RiskInsolvencyJudge(); - } - - /** - * Create an instance of {@link OverzichtPersoonArray } - * - */ - public OverzichtPersoonArray createOverzichtPersoonArray() { - return new OverzichtPersoonArray(); - } - - /** - * Create an instance of {@link KadasterV2BronDocumentResponse } - * - */ - public KadasterV2BronDocumentResponse createKadasterV2BronDocumentResponse() { - return new KadasterV2BronDocumentResponse(); - } - - /** - * Create an instance of {@link LatLonCoordinates } - * - */ - public LatLonCoordinates createLatLonCoordinates() { - return new LatLonCoordinates(); - } - - /** - * Create an instance of {@link DutchBusinessEstablishmentV3 } - * - */ - public DutchBusinessEstablishmentV3 createDutchBusinessEstablishmentV3() { - return new DutchBusinessEstablishmentV3(); - } - - /** - * Create an instance of {@link GCRCreditRating } - * - */ - public GCRCreditRating createGCRCreditRating() { - return new GCRCreditRating(); - } - - /** - * Create an instance of {@link DutchBusinessEstablishmentV2 } - * - */ - public DutchBusinessEstablishmentV2 createDutchBusinessEstablishmentV2() { - return new DutchBusinessEstablishmentV2(); - } - - /** - * Create an instance of {@link BusinessReferenceV3Array } - * - */ - public BusinessReferenceV3Array createBusinessReferenceV3Array() { - return new BusinessReferenceV3Array(); - } - - /** - * Create an instance of {@link CreditsafePersonPositionV2 } - * - */ - public CreditsafePersonPositionV2 createCreditsafePersonPositionV2() { - return new CreditsafePersonPositionV2(); - } - - /** - * Create an instance of {@link GCRCountryArray } - * - */ - public GCRCountryArray createGCRCountryArray() { - return new GCRCountryArray(); - } - - /** - * Create an instance of {@link CarBPV2 } - * - */ - public CarBPV2 createCarBPV2() { - return new CarBPV2(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLKvkFilingV2 } - * - */ - public CreditsafeCompanyAdditionalInformationNLKvkFilingV2 createCreditsafeCompanyAdditionalInformationNLKvkFilingV2() { - return new CreditsafeCompanyAdditionalInformationNLKvkFilingV2(); - } - - /** - * Create an instance of {@link KadasterV2GerelateerdeOpenbareRuimte } - * - */ - public KadasterV2GerelateerdeOpenbareRuimte createKadasterV2GerelateerdeOpenbareRuimte() { - return new KadasterV2GerelateerdeOpenbareRuimte(); - } - - /** - * Create an instance of {@link DutchBusinessUBOClassifiedRole } - * - */ - public DutchBusinessUBOClassifiedRole createDutchBusinessUBOClassifiedRole() { - return new DutchBusinessUBOClassifiedRole(); - } - - /** - * Create an instance of {@link DutchBusinessChangeSet } - * - */ - public DutchBusinessChangeSet createDutchBusinessChangeSet() { - return new DutchBusinessChangeSet(); - } - - /** - * Create an instance of {@link DutchVehicleBodyApprovalArray } - * - */ - public DutchVehicleBodyApprovalArray createDutchVehicleBodyApprovalArray() { - return new DutchVehicleBodyApprovalArray(); - } - - /** - * Create an instance of {@link GraydonCreditReportVatNumber } - * - */ - public GraydonCreditReportVatNumber createGraydonCreditReportVatNumber() { - return new GraydonCreditReportVatNumber(); - } - - /** - * Create an instance of {@link InternationalV2 } - * - */ - public InternationalV2 createInternationalV2() { - return new InternationalV2(); - } - - /** - * Create an instance of {@link PerceelArray } - * - */ - public PerceelArray createPerceelArray() { - return new PerceelArray(); - } - - /** - * Create an instance of {@link GCRSectorOfIndustryArray } - * - */ - public GCRSectorOfIndustryArray createGCRSectorOfIndustryArray() { - return new GCRSectorOfIndustryArray(); - } - - /** - * Create an instance of {@link DutchBusinessGetConcernRelationsOverviewReferenceArray } - * - */ - public DutchBusinessGetConcernRelationsOverviewReferenceArray createDutchBusinessGetConcernRelationsOverviewReferenceArray() { - return new DutchBusinessGetConcernRelationsOverviewReferenceArray(); - } - - /** - * Create an instance of {@link GCRTitle } - * - */ - public GCRTitle createGCRTitle() { - return new GCRTitle(); - } - - /** - * Create an instance of {@link GCRCapitalArray } - * - */ - public GCRCapitalArray createGCRCapitalArray() { - return new GCRCapitalArray(); - } - - /** - * Create an instance of {@link GCRBranchOfficeArray } - * - */ - public GCRBranchOfficeArray createGCRBranchOfficeArray() { - return new GCRBranchOfficeArray(); - } - - /** - * Create an instance of {@link DutchBusinessUBORoleArray } - * - */ - public DutchBusinessUBORoleArray createDutchBusinessUBORoleArray() { - return new DutchBusinessUBORoleArray(); - } - - /** - * Create an instance of {@link NbwoPostcodeStraatModelResultaat } - * - */ - public NbwoPostcodeStraatModelResultaat createNbwoPostcodeStraatModelResultaat() { - return new NbwoPostcodeStraatModelResultaat(); - } - - /** - * Create an instance of {@link KadasterDomicilieKeuzeArray } - * - */ - public KadasterDomicilieKeuzeArray createKadasterDomicilieKeuzeArray() { - return new KadasterDomicilieKeuzeArray(); - } - - /** - * Create an instance of {@link MetaProtocolDefinitionArray } - * - */ - public MetaProtocolDefinitionArray createMetaProtocolDefinitionArray() { - return new MetaProtocolDefinitionArray(); - } - - /** - * Create an instance of {@link GCRDiscontinuance } - * - */ - public GCRDiscontinuance createGCRDiscontinuance() { - return new GCRDiscontinuance(); - } - - /** - * Create an instance of {@link InternationalArray } - * - */ - public InternationalArray createInternationalArray() { - return new InternationalArray(); - } - - /** - * Create an instance of {@link BovagDepartment } - * - */ - public BovagDepartment createBovagDepartment() { - return new BovagDepartment(); - } - - /** - * Create an instance of {@link SepaMatchBankAccountHolder } - * - */ - public SepaMatchBankAccountHolder createSepaMatchBankAccountHolder() { - return new SepaMatchBankAccountHolder(); - } - - /** - * Create an instance of {@link CreditsafeBeBankruptcyEventArray } - * - */ - public CreditsafeBeBankruptcyEventArray createCreditsafeBeBankruptcyEventArray() { - return new CreditsafeBeBankruptcyEventArray(); - } - - /** - * Create an instance of {@link CarEnvironment } - * - */ - public CarEnvironment createCarEnvironment() { - return new CarEnvironment(); - } - - /** - * Create an instance of {@link DutchBusinessSBICollection } - * - */ - public DutchBusinessSBICollection createDutchBusinessSBICollection() { - return new DutchBusinessSBICollection(); - } - - /** - * Create an instance of {@link PCReeks } - * - */ - public PCReeks createPCReeks() { - return new PCReeks(); - } - - /** - * Create an instance of {@link GCRContinuationArray } - * - */ - public GCRContinuationArray createGCRContinuationArray() { - return new GCRContinuationArray(); - } - - /** - * Create an instance of {@link ComplianceDocumentReference } - * - */ - public ComplianceDocumentReference createComplianceDocumentReference() { - return new ComplianceDocumentReference(); - } - - /** - * Create an instance of {@link DutchVehiclePurchase } - * - */ - public DutchVehiclePurchase createDutchVehiclePurchase() { - return new DutchVehiclePurchase(); - } - - /** - * Create an instance of {@link DutchBusinessLeiRegistration } - * - */ - public DutchBusinessLeiRegistration createDutchBusinessLeiRegistration() { - return new DutchBusinessLeiRegistration(); - } - - /** - * Create an instance of {@link Perceel } - * - */ - public Perceel createPerceel() { - return new Perceel(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateReference } - * - */ - public DutchBusinessUpdateReference createDutchBusinessUpdateReference() { - return new DutchBusinessUpdateReference(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array } - * - */ - public CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array createCreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array() { - return new CreditsafeCompanyNegativeInformationDEInsolvencyEventV2Array(); - } - - /** - * Create an instance of {@link GCRCompanyAnnualAccount } - * - */ - public GCRCompanyAnnualAccount createGCRCompanyAnnualAccount() { - return new GCRCompanyAnnualAccount(); - } - - /** - * Create an instance of {@link DutchBusinessLegalEntityV3 } - * - */ - public DutchBusinessLegalEntityV3 createDutchBusinessLegalEntityV3() { - return new DutchBusinessLegalEntityV3(); - } - - /** - * Create an instance of {@link DutchBusinessLegalEntityV2 } - * - */ - public DutchBusinessLegalEntityV2 createDutchBusinessLegalEntityV2() { - return new DutchBusinessLegalEntityV2(); - } - - /** - * Create an instance of {@link MetaElementDefinitionArray } - * - */ - public MetaElementDefinitionArray createMetaElementDefinitionArray() { - return new MetaElementDefinitionArray(); - } - - /** - * Create an instance of {@link GemeenteStukArray } - * - */ - public GemeenteStukArray createGemeenteStukArray() { - return new GemeenteStukArray(); - } - - /** - * Create an instance of {@link CreditsafeCompanyKeyValueV2Array } - * - */ - public CreditsafeCompanyKeyValueV2Array createCreditsafeCompanyKeyValueV2Array() { - return new CreditsafeCompanyKeyValueV2Array(); - } - - /** - * Create an instance of {@link CreditsafeCompanyShareCapitalStructureV2 } - * - */ - public CreditsafeCompanyShareCapitalStructureV2 createCreditsafeCompanyShareCapitalStructureV2() { - return new CreditsafeCompanyShareCapitalStructureV2(); - } - - /** - * Create an instance of {@link KvkUpdateReferencePagedResult } - * - */ - public KvkUpdateReferencePagedResult createKvkUpdateReferencePagedResult() { - return new KvkUpdateReferencePagedResult(); - } - - /** - * Create an instance of {@link DutchVehicleRemarkArray } - * - */ - public DutchVehicleRemarkArray createDutchVehicleRemarkArray() { - return new DutchVehicleRemarkArray(); - } - - /** - * Create an instance of {@link KadasterHypothecairBerichtResultaatV2 } - * - */ - public KadasterHypothecairBerichtResultaatV2 createKadasterHypothecairBerichtResultaatV2() { - return new KadasterHypothecairBerichtResultaatV2(); - } - - /** - * Create an instance of {@link CreditsafeAdvisor } - * - */ - public CreditsafeAdvisor createCreditsafeAdvisor() { - return new CreditsafeAdvisor(); - } - - /** - * Create an instance of {@link CreditsafeBeIndustryComparison } - * - */ - public CreditsafeBeIndustryComparison createCreditsafeBeIndustryComparison() { - return new CreditsafeBeIndustryComparison(); - } - - /** - * Create an instance of {@link CreditsafeNlLettersOfLiability } - * - */ - public CreditsafeNlLettersOfLiability createCreditsafeNlLettersOfLiability() { - return new CreditsafeNlLettersOfLiability(); - } - - /** - * Create an instance of {@link GCRFinancialDetails } - * - */ - public GCRFinancialDetails createGCRFinancialDetails() { - return new GCRFinancialDetails(); - } - - /** - * Create an instance of {@link CreditsafeCompanyKeyValueV2 } - * - */ - public CreditsafeCompanyKeyValueV2 createCreditsafeCompanyKeyValueV2() { - return new CreditsafeCompanyKeyValueV2(); - } - - /** - * Create an instance of {@link RiskAddress } - * - */ - public RiskAddress createRiskAddress() { - return new RiskAddress(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationDEV2 } - * - */ - public CreditsafeCompanyNegativeInformationDEV2 createCreditsafeCompanyNegativeInformationDEV2() { - return new CreditsafeCompanyNegativeInformationDEV2(); - } - - /** - * Create an instance of {@link InsolvencyAddress } - * - */ - public InsolvencyAddress createInsolvencyAddress() { - return new InsolvencyAddress(); - } - - /** - * Create an instance of {@link GCRRating } - * - */ - public GCRRating createGCRRating() { - return new GCRRating(); - } - - /** - * Create an instance of {@link DutchBusinessFormattedAddress } - * - */ - public DutchBusinessFormattedAddress createDutchBusinessFormattedAddress() { - return new DutchBusinessFormattedAddress(); - } - - /** - * Create an instance of {@link DutchBusinessGetConcernRelationsDetailsGraphNodeArray } - * - */ - public DutchBusinessGetConcernRelationsDetailsGraphNodeArray createDutchBusinessGetConcernRelationsDetailsGraphNodeArray() { - return new DutchBusinessGetConcernRelationsDetailsGraphNodeArray(); - } - - /** - * Create an instance of {@link GCRAddressArray } - * - */ - public GCRAddressArray createGCRAddressArray() { - return new GCRAddressArray(); - } - - /** - * Create an instance of {@link KadasterUittrekselKadastraleKaartV2 } - * - */ - public KadasterUittrekselKadastraleKaartV2 createKadasterUittrekselKadastraleKaartV2() { - return new KadasterUittrekselKadastraleKaartV2(); - } - - /** - * Create an instance of {@link RouteCoordinateLatLong } - * - */ - public RouteCoordinateLatLong createRouteCoordinateLatLong() { - return new RouteCoordinateLatLong(); - } - - /** - * Create an instance of {@link DutchBusinessUBOCostsInvestigationResult } - * - */ - public DutchBusinessUBOCostsInvestigationResult createDutchBusinessUBOCostsInvestigationResult() { - return new DutchBusinessUBOCostsInvestigationResult(); - } - - /** - * Create an instance of {@link BelgianBusinessRevisor } - * - */ - public BelgianBusinessRevisor createBelgianBusinessRevisor() { - return new BelgianBusinessRevisor(); - } - - /** - * Create an instance of {@link Koopsom } - * - */ - public Koopsom createKoopsom() { - return new Koopsom(); - } - - /** - * Create an instance of {@link KadasterV2Stukken } - * - */ - public KadasterV2Stukken createKadasterV2Stukken() { - return new KadasterV2Stukken(); - } - - /** - * Create an instance of {@link KadasterV2JaarlijksBedrag } - * - */ - public KadasterV2JaarlijksBedrag createKadasterV2JaarlijksBedrag() { - return new KadasterV2JaarlijksBedrag(); - } - - /** - * Create an instance of {@link BelgianBusinessStakeHolderArray } - * - */ - public BelgianBusinessStakeHolderArray createBelgianBusinessStakeHolderArray() { - return new BelgianBusinessStakeHolderArray(); - } - - /** - * Create an instance of {@link RiskCompanyAddress } - * - */ - public RiskCompanyAddress createRiskCompanyAddress() { - return new RiskCompanyAddress(); - } - - /** - * Create an instance of {@link KadasterValueList } - * - */ - public KadasterValueList createKadasterValueList() { - return new KadasterValueList(); - } - - /** - * Create an instance of {@link KadasterV2KoopsommenOverzichtResponse } - * - */ - public KadasterV2KoopsommenOverzichtResponse createKadasterV2KoopsommenOverzichtResponse() { - return new KadasterV2KoopsommenOverzichtResponse(); - } - - /** - * Create an instance of {@link KadasterV2PostcodeTreffers } - * - */ - public KadasterV2PostcodeTreffers createKadasterV2PostcodeTreffers() { - return new KadasterV2PostcodeTreffers(); - } - - /** - * Create an instance of {@link ResultInfo } - * - */ - public ResultInfo createResultInfo() { - return new ResultInfo(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationDEImageAccountV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationDEImageAccountV2Array createCreditsafeCompanyAdditionalInformationDEImageAccountV2Array() { - return new CreditsafeCompanyAdditionalInformationDEImageAccountV2Array(); - } - - /** - * Create an instance of {@link InternationalAddressSearchV2Result } - * - */ - public InternationalAddressSearchV2Result createInternationalAddressSearchV2Result() { - return new InternationalAddressSearchV2Result(); - } - - /** - * Create an instance of {@link DutchVehicleFeature } - * - */ - public DutchVehicleFeature createDutchVehicleFeature() { - return new DutchVehicleFeature(); - } - - /** - * Create an instance of {@link CreditsafeBeMisc } - * - */ - public CreditsafeBeMisc createCreditsafeBeMisc() { - return new CreditsafeBeMisc(); - } - - /** - * Create an instance of {@link CreditsafeValueV2 } - * - */ - public CreditsafeValueV2 createCreditsafeValueV2() { - return new CreditsafeValueV2(); - } - - /** - * Create an instance of {@link GCRTradeName } - * - */ - public GCRTradeName createGCRTradeName() { - return new GCRTradeName(); - } - - /** - * Create an instance of {@link BelgianBusinessBankAccount } - * - */ - public BelgianBusinessBankAccount createBelgianBusinessBankAccount() { - return new BelgianBusinessBankAccount(); - } - - /** - * Create an instance of {@link CreditsafePersonPreviousDirectorV2Array } - * - */ - public CreditsafePersonPreviousDirectorV2Array createCreditsafePersonPreviousDirectorV2Array() { - return new CreditsafePersonPreviousDirectorV2Array(); - } - - /** - * Create an instance of {@link CreditsafeCompanyCreditScoreV2 } - * - */ - public CreditsafeCompanyCreditScoreV2 createCreditsafeCompanyCreditScoreV2() { - return new CreditsafeCompanyCreditScoreV2(); - } - - /** - * Create an instance of {@link OnroerendeZaak } - * - */ - public OnroerendeZaak createOnroerendeZaak() { - return new OnroerendeZaak(); - } - - /** - * Create an instance of {@link KadasterOverzichtPersoonV2 } - * - */ - public KadasterOverzichtPersoonV2 createKadasterOverzichtPersoonV2() { - return new KadasterOverzichtPersoonV2(); - } - - /** - * Create an instance of {@link GCRPaymentInformation } - * - */ - public GCRPaymentInformation createGCRPaymentInformation() { - return new GCRPaymentInformation(); - } - - /** - * Create an instance of {@link KvkUpdateReference } - * - */ - public KvkUpdateReference createKvkUpdateReference() { - return new KvkUpdateReference(); - } - - /** - * Create an instance of {@link GraydonCreditReportRatings } - * - */ - public GraydonCreditReportRatings createGraydonCreditReportRatings() { - return new GraydonCreditReportRatings(); - } - - /** - * Create an instance of {@link KadasterOverzichtPersoonArray } - * - */ - public KadasterOverzichtPersoonArray createKadasterOverzichtPersoonArray() { - return new KadasterOverzichtPersoonArray(); - } - - /** - * Create an instance of {@link CarTypeArray } - * - */ - public CarTypeArray createCarTypeArray() { - return new CarTypeArray(); - } - - /** - * Create an instance of {@link DutchBusinessUBOOrganisationArray } - * - */ - public DutchBusinessUBOOrganisationArray createDutchBusinessUBOOrganisationArray() { - return new DutchBusinessUBOOrganisationArray(); - } - - /** - * Create an instance of {@link CreditsafeLtdFinancialStatement } - * - */ - public CreditsafeLtdFinancialStatement createCreditsafeLtdFinancialStatement() { - return new CreditsafeLtdFinancialStatement(); - } - - /** - * Create an instance of {@link CreditsafeChangedString } - * - */ - public CreditsafeChangedString createCreditsafeChangedString() { - return new CreditsafeChangedString(); - } - - /** - * Create an instance of {@link GCRCalamityEvent } - * - */ - public GCRCalamityEvent createGCRCalamityEvent() { - return new GCRCalamityEvent(); - } - - /** - * Create an instance of {@link CreditsafeCompanyEmployeeInformationV2Array } - * - */ - public CreditsafeCompanyEmployeeInformationV2Array createCreditsafeCompanyEmployeeInformationV2Array() { - return new CreditsafeCompanyEmployeeInformationV2Array(); - } - - /** - * Create an instance of {@link NeighborhoodArray } - * - */ - public NeighborhoodArray createNeighborhoodArray() { - return new NeighborhoodArray(); - } - - /** - * Create an instance of {@link InsolvencyLegalPerformingPersonArray } - * - */ - public InsolvencyLegalPerformingPersonArray createInsolvencyLegalPerformingPersonArray() { - return new InsolvencyLegalPerformingPersonArray(); - } - - /** - * Create an instance of {@link InsolvencyCourtSession } - * - */ - public InsolvencyCourtSession createInsolvencyCourtSession() { - return new InsolvencyCourtSession(); - } - - /** - * Create an instance of {@link KadasterV2RedenVerzoekArray } - * - */ - public KadasterV2RedenVerzoekArray createKadasterV2RedenVerzoekArray() { - return new KadasterV2RedenVerzoekArray(); - } - - /** - * Create an instance of {@link CarATDPrices } - * - */ - public CarATDPrices createCarATDPrices() { - return new CarATDPrices(); - } - - /** - * Create an instance of {@link MetaServiceReference } - * - */ - public MetaServiceReference createMetaServiceReference() { - return new MetaServiceReference(); - } - - /** - * Create an instance of {@link KadasterV2RDCoordinaat } - * - */ - public KadasterV2RDCoordinaat createKadasterV2RDCoordinaat() { - return new KadasterV2RDCoordinaat(); - } - - /** - * Create an instance of {@link BelgianBusinessLegalRepresentativeCompanyArray } - * - */ - public BelgianBusinessLegalRepresentativeCompanyArray createBelgianBusinessLegalRepresentativeCompanyArray() { - return new BelgianBusinessLegalRepresentativeCompanyArray(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 } - * - */ - public CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2 createCreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2() { - return new CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2(); - } - - /** - * Create an instance of {@link District } - * - */ - public District createDistrict() { - return new District(); - } - - /** - * Create an instance of {@link LatLonCoordinatesArray } - * - */ - public LatLonCoordinatesArray createLatLonCoordinatesArray() { - return new LatLonCoordinatesArray(); - } - - /** - * Create an instance of {@link CreditsafePersonDirectorV2Array } - * - */ - public CreditsafePersonDirectorV2Array createCreditsafePersonDirectorV2Array() { - return new CreditsafePersonDirectorV2Array(); - } - - /** - * Create an instance of {@link CreditsafeCompanyGroupStructureV2 } - * - */ - public CreditsafeCompanyGroupStructureV2 createCreditsafeCompanyGroupStructureV2() { - return new CreditsafeCompanyGroupStructureV2(); - } - - /** - * Create an instance of {@link CarVWEPhoto } - * - */ - public CarVWEPhoto createCarVWEPhoto() { - return new CarVWEPhoto(); - } - - /** - * Create an instance of {@link SepaBankAccountIbanData } - * - */ - public SepaBankAccountIbanData createSepaBankAccountIbanData() { - return new SepaBankAccountIbanData(); - } - - /** - * Create an instance of {@link KadasterOverzichtNietNatuurlijkPersoon } - * - */ - public KadasterOverzichtNietNatuurlijkPersoon createKadasterOverzichtNietNatuurlijkPersoon() { - return new KadasterOverzichtNietNatuurlijkPersoon(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array createCreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array() { - return new CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2Array(); - } - - /** - * Create an instance of {@link KvkDate } - * - */ - public KvkDate createKvkDate() { - return new KvkDate(); - } - - /** - * Create an instance of {@link CreditsafeCompanyV2 } - * - */ - public CreditsafeCompanyV2 createCreditsafeCompanyV2() { - return new CreditsafeCompanyV2(); - } - - /** - * Create an instance of {@link DutchBusinessUBOClassificationResult } - * - */ - public DutchBusinessUBOClassificationResult createDutchBusinessUBOClassificationResult() { - return new DutchBusinessUBOClassificationResult(); - } - - /** - * Create an instance of {@link KadasterKadastraleKaartResultaat } - * - */ - public KadasterKadastraleKaartResultaat createKadasterKadastraleKaartResultaat() { - return new KadasterKadastraleKaartResultaat(); - } - - /** - * Create an instance of {@link MetaValidationDefinitionArray } - * - */ - public MetaValidationDefinitionArray createMetaValidationDefinitionArray() { - return new MetaValidationDefinitionArray(); - } - - /** - * Create an instance of {@link RiskCompanyReport } - * - */ - public RiskCompanyReport createRiskCompanyReport() { - return new RiskCompanyReport(); - } - - /** - * Create an instance of {@link DutchBusinessDate } - * - */ - public DutchBusinessDate createDutchBusinessDate() { - return new DutchBusinessDate(); - } - - /** - * Create an instance of {@link CreditsafeProfitAndLossFigures } - * - */ - public CreditsafeProfitAndLossFigures createCreditsafeProfitAndLossFigures() { - return new CreditsafeProfitAndLossFigures(); - } - - /** - * Create an instance of {@link CarVWEModelPagedResult } - * - */ - public CarVWEModelPagedResult createCarVWEModelPagedResult() { - return new CarVWEModelPagedResult(); - } - - /** - * Create an instance of {@link SepaMatchAccountHolderResult } - * - */ - public SepaMatchAccountHolderResult createSepaMatchAccountHolderResult() { - return new SepaMatchAccountHolderResult(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationDEImageAccountV2 } - * - */ - public CreditsafeCompanyAdditionalInformationDEImageAccountV2 createCreditsafeCompanyAdditionalInformationDEImageAccountV2() { - return new CreditsafeCompanyAdditionalInformationDEImageAccountV2(); - } - - /** - * Create an instance of {@link CreditsafeCompanyStatusV2 } - * - */ - public CreditsafeCompanyStatusV2 createCreditsafeCompanyStatusV2() { - return new CreditsafeCompanyStatusV2(); - } - - /** - * Create an instance of {@link KadasterUittrekselKadastraleKaartResultaatV2 } - * - */ - public KadasterUittrekselKadastraleKaartResultaatV2 createKadasterUittrekselKadastraleKaartResultaatV2() { - return new KadasterUittrekselKadastraleKaartResultaatV2(); - } - - /** - * Create an instance of {@link KadasterV2LocatieBuitenland } - * - */ - public KadasterV2LocatieBuitenland createKadasterV2LocatieBuitenland() { - return new KadasterV2LocatieBuitenland(); - } - - /** - * Create an instance of {@link RouteCoordinatesLatLon } - * - */ - public RouteCoordinatesLatLon createRouteCoordinatesLatLon() { - return new RouteCoordinatesLatLon(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationHistoricalEventV2 } - * - */ - public CreditsafeCompanyAdditionalInformationHistoricalEventV2 createCreditsafeCompanyAdditionalInformationHistoricalEventV2() { - return new CreditsafeCompanyAdditionalInformationHistoricalEventV2(); - } - - /** - * Create an instance of {@link ComplianceBusinessReferenceArray } - * - */ - public ComplianceBusinessReferenceArray createComplianceBusinessReferenceArray() { - return new ComplianceBusinessReferenceArray(); - } - - /** - * Create an instance of {@link DutchVehicleData } - * - */ - public DutchVehicleData createDutchVehicleData() { - return new DutchVehicleData(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationDEBankruptcyV2 } - * - */ - public CreditsafeCompanyNegativeInformationDEBankruptcyV2 createCreditsafeCompanyNegativeInformationDEBankruptcyV2() { - return new CreditsafeCompanyNegativeInformationDEBankruptcyV2(); - } - - /** - * Create an instance of {@link CarVWEVersionArray } - * - */ - public CarVWEVersionArray createCarVWEVersionArray() { - return new CarVWEVersionArray(); - } - - /** - * Create an instance of {@link CreditsafeCompanyShareHolderV2Array } - * - */ - public CreditsafeCompanyShareHolderV2Array createCreditsafeCompanyShareHolderV2Array() { - return new CreditsafeCompanyShareHolderV2Array(); - } - - /** - * Create an instance of {@link CarVWEVersionPrice } - * - */ - public CarVWEVersionPrice createCarVWEVersionPrice() { - return new CarVWEVersionPrice(); - } - - /** - * Create an instance of {@link DutchBusinessGetConcernRelationsDetailsGraphNode } - * - */ - public DutchBusinessGetConcernRelationsDetailsGraphNode createDutchBusinessGetConcernRelationsDetailsGraphNode() { - return new DutchBusinessGetConcernRelationsDetailsGraphNode(); - } - - /** - * Create an instance of {@link BbanDetails } - * - */ - public BbanDetails createBbanDetails() { - return new BbanDetails(); - } - - /** - * Create an instance of {@link DutchBusinessPositionArray } - * - */ - public DutchBusinessPositionArray createDutchBusinessPositionArray() { - return new DutchBusinessPositionArray(); - } - - /** - * Create an instance of {@link KvkDossier } - * - */ - public KvkDossier createKvkDossier() { - return new KvkDossier(); - } - - /** - * Create an instance of {@link CreditsafeDescriptionV2Array } - * - */ - public CreditsafeDescriptionV2Array createCreditsafeDescriptionV2Array() { - return new CreditsafeDescriptionV2Array(); - } - - /** - * Create an instance of {@link GCRAddress } - * - */ - public GCRAddress createGCRAddress() { - return new GCRAddress(); - } - - /** - * Create an instance of {@link DNBBusinessVerification } - * - */ - public DNBBusinessVerification createDNBBusinessVerification() { - return new DNBBusinessVerification(); - } - - /** - * Create an instance of {@link DutchBusinessSbiCodeV3 } - * - */ - public DutchBusinessSbiCodeV3 createDutchBusinessSbiCodeV3() { - return new DutchBusinessSbiCodeV3(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array createCreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array() { - return new CreditsafeCompanyAdditionalInformationDETurnoverRangeV2Array(); - } - - /** - * Create an instance of {@link DutchBusinessSbiCodeV2 } - * - */ - public DutchBusinessSbiCodeV2 createDutchBusinessSbiCodeV2() { - return new DutchBusinessSbiCodeV2(); - } - - /** - * Create an instance of {@link KadasterOverzichtV2 } - * - */ - public KadasterOverzichtV2 createKadasterOverzichtV2() { - return new KadasterOverzichtV2(); - } - - /** - * Create an instance of {@link AreaCodeArray } - * - */ - public AreaCodeArray createAreaCodeArray() { - return new AreaCodeArray(); - } - - /** - * Create an instance of {@link DutchBusinessGetConcernRelationsDetailsGraph } - * - */ - public DutchBusinessGetConcernRelationsDetailsGraph createDutchBusinessGetConcernRelationsDetailsGraph() { - return new DutchBusinessGetConcernRelationsDetailsGraph(); - } - - /** - * Create an instance of {@link GCRPersonArray } - * - */ - public GCRPersonArray createGCRPersonArray() { - return new GCRPersonArray(); - } - - /** - * Create an instance of {@link ComplianceRoleReference } - * - */ - public ComplianceRoleReference createComplianceRoleReference() { - return new ComplianceRoleReference(); - } - - /** - * Create an instance of {@link GCRTextSequence } - * - */ - public GCRTextSequence createGCRTextSequence() { - return new GCRTextSequence(); - } - - /** - * Create an instance of {@link KadasterV2UittrekselKadastraleKaartResponse } - * - */ - public KadasterV2UittrekselKadastraleKaartResponse createKadasterV2UittrekselKadastraleKaartResponse() { - return new KadasterV2UittrekselKadastraleKaartResponse(); - } - - /** - * Create an instance of {@link CreditsafeLtdShareCapitalStructure } - * - */ - public CreditsafeLtdShareCapitalStructure createCreditsafeLtdShareCapitalStructure() { - return new CreditsafeLtdShareCapitalStructure(); - } - - /** - * Create an instance of {@link NbwoWaardeVerdeling } - * - */ - public NbwoWaardeVerdeling createNbwoWaardeVerdeling() { - return new NbwoWaardeVerdeling(); - } - - /** - * Create an instance of {@link DNBBusinessReferenceV2 } - * - */ - public DNBBusinessReferenceV2 createDNBBusinessReferenceV2() { - return new DNBBusinessReferenceV2(); - } - - /** - * Create an instance of {@link DutchBusinessPositionAuthorization } - * - */ - public DutchBusinessPositionAuthorization createDutchBusinessPositionAuthorization() { - return new DutchBusinessPositionAuthorization(); - } - - /** - * Create an instance of {@link GCRItemArray } - * - */ - public GCRItemArray createGCRItemArray() { - return new GCRItemArray(); - } - - /** - * Create an instance of {@link DutchBusinessLeiRegistrationAuthority } - * - */ - public DutchBusinessLeiRegistrationAuthority createDutchBusinessLeiRegistrationAuthority() { - return new DutchBusinessLeiRegistrationAuthority(); - } - - /** - * Create an instance of {@link RoutePartArray } - * - */ - public RoutePartArray createRoutePartArray() { - return new RoutePartArray(); - } - - /** - * Create an instance of {@link CarVWEVersionPriceReferenceArray } - * - */ - public CarVWEVersionPriceReferenceArray createCarVWEVersionPriceReferenceArray() { - return new CarVWEVersionPriceReferenceArray(); - } - - /** - * Create an instance of {@link RiskPerson } - * - */ - public RiskPerson createRiskPerson() { - return new RiskPerson(); - } - - /** - * Create an instance of {@link RiskInsolvencyRegistration } - * - */ - public RiskInsolvencyRegistration createRiskInsolvencyRegistration() { - return new RiskInsolvencyRegistration(); - } - - /** - * Create an instance of {@link DutchBusinessEstablishment } - * - */ - public DutchBusinessEstablishment createDutchBusinessEstablishment() { - return new DutchBusinessEstablishment(); - } - - /** - * Create an instance of {@link BusinessDossierExtendedPart } - * - */ - public BusinessDossierExtendedPart createBusinessDossierExtendedPart() { - return new BusinessDossierExtendedPart(); - } - - /** - * Create an instance of {@link BelgianBusinessInternationalAddressArray } - * - */ - public BelgianBusinessInternationalAddressArray createBelgianBusinessInternationalAddressArray() { - return new BelgianBusinessInternationalAddressArray(); - } - - /** - * Create an instance of {@link PCReeksSearchPartsPagedResult } - * - */ - public PCReeksSearchPartsPagedResult createPCReeksSearchPartsPagedResult() { - return new PCReeksSearchPartsPagedResult(); - } - - /** - * Create an instance of {@link GCRPersonalDetails } - * - */ - public GCRPersonalDetails createGCRPersonalDetails() { - return new GCRPersonalDetails(); - } - - /** - * Create an instance of {@link KvkReference } - * - */ - public KvkReference createKvkReference() { - return new KvkReference(); - } - - /** - * Create an instance of {@link Mandeligheid } - * - */ - public Mandeligheid createMandeligheid() { - return new Mandeligheid(); - } - - /** - * Create an instance of {@link DutchVehicleRemark } - * - */ - public DutchVehicleRemark createDutchVehicleRemark() { - return new DutchVehicleRemark(); - } - - /** - * Create an instance of {@link GCRFinancialCalamityArray } - * - */ - public GCRFinancialCalamityArray createGCRFinancialCalamityArray() { - return new GCRFinancialCalamityArray(); - } - - /** - * Create an instance of {@link CreditsafeLtdOtherInformation } - * - */ - public CreditsafeLtdOtherInformation createCreditsafeLtdOtherInformation() { - return new CreditsafeLtdOtherInformation(); - } - - /** - * Create an instance of {@link NatuurlijkPersoonV2 } - * - */ - public NatuurlijkPersoonV2 createNatuurlijkPersoonV2() { - return new NatuurlijkPersoonV2(); - } - - /** - * Create an instance of {@link KadastraleAanduiding } - * - */ - public KadastraleAanduiding createKadastraleAanduiding() { - return new KadastraleAanduiding(); - } - - /** - * Create an instance of {@link NeighborhoodName } - * - */ - public NeighborhoodName createNeighborhoodName() { - return new NeighborhoodName(); - } - - /** - * Create an instance of {@link KadasterV2OnroerendeZaakReference } - * - */ - public KadasterV2OnroerendeZaakReference createKadasterV2OnroerendeZaakReference() { - return new KadasterV2OnroerendeZaakReference(); - } - - /** - * Create an instance of {@link CarCheckCode } - * - */ - public CarCheckCode createCarCheckCode() { - return new CarCheckCode(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array createCreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array() { - return new CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2Array(); - } - - /** - * Create an instance of {@link InsolvencyLegalPerformingPerson } - * - */ - public InsolvencyLegalPerformingPerson createInsolvencyLegalPerformingPerson() { - return new InsolvencyLegalPerformingPerson(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array createCreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array() { - return new CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2Array(); - } - - /** - * Create an instance of {@link KoopsommenOverzichtV2 } - * - */ - public KoopsommenOverzichtV2 createKoopsommenOverzichtV2() { - return new KoopsommenOverzichtV2(); - } - - /** - * Create an instance of {@link BusinessUpdateReferenceArray } - * - */ - public BusinessUpdateReferenceArray createBusinessUpdateReferenceArray() { - return new BusinessUpdateReferenceArray(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateReferencePagedResult } - * - */ - public DutchBusinessUpdateReferencePagedResult createDutchBusinessUpdateReferencePagedResult() { - return new DutchBusinessUpdateReferencePagedResult(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 } - * - */ - public CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2 createCreditsafeCompanyAdditionalInformationNLIndustryComparisonV2() { - return new CreditsafeCompanyAdditionalInformationNLIndustryComparisonV2(); - } - - /** - * Create an instance of {@link BelgianBusinessAddressArray } - * - */ - public BelgianBusinessAddressArray createBelgianBusinessAddressArray() { - return new BelgianBusinessAddressArray(); - } - - /** - * Create an instance of {@link GCRLiaisonOfficialData } - * - */ - public GCRLiaisonOfficialData createGCRLiaisonOfficialData() { - return new GCRLiaisonOfficialData(); - } - - /** - * Create an instance of {@link ProvinceArray } - * - */ - public ProvinceArray createProvinceArray() { - return new ProvinceArray(); - } - - /** - * Create an instance of {@link CreditsafeCompanyActivityV2 } - * - */ - public CreditsafeCompanyActivityV2 createCreditsafeCompanyActivityV2() { - return new CreditsafeCompanyActivityV2(); - } - - /** - * Create an instance of {@link GCRFirstDirectorArray } - * - */ - public GCRFirstDirectorArray createGCRFirstDirectorArray() { - return new GCRFirstDirectorArray(); - } - - /** - * Create an instance of {@link Session } - * - */ - public Session createSession() { - return new Session(); - } - - /** - * Create an instance of {@link MetaProtocolDefinition } - * - */ - public MetaProtocolDefinition createMetaProtocolDefinition() { - return new MetaProtocolDefinition(); - } - - /** - * Create an instance of {@link GCRAssets } - * - */ - public GCRAssets createGCRAssets() { - return new GCRAssets(); - } - - /** - * Create an instance of {@link AantekeningRecht } - * - */ - public AantekeningRecht createAantekeningRecht() { - return new AantekeningRecht(); - } - - /** - * Create an instance of {@link DNBCommentaryArray } - * - */ - public DNBCommentaryArray createDNBCommentaryArray() { - return new DNBCommentaryArray(); - } - - /** - * Create an instance of {@link StukReferentiesLijst } - * - */ - public StukReferentiesLijst createStukReferentiesLijst() { - return new StukReferentiesLijst(); - } - - /** - * Create an instance of {@link BelgianBusinessInternationalAddress } - * - */ - public BelgianBusinessInternationalAddress createBelgianBusinessInternationalAddress() { - return new BelgianBusinessInternationalAddress(); - } - - /** - * Create an instance of {@link StukMetKadastraleAanduidingLijst } - * - */ - public StukMetKadastraleAanduidingLijst createStukMetKadastraleAanduidingLijst() { - return new StukMetKadastraleAanduidingLijst(); - } - - /** - * Create an instance of {@link KadasterOverzichtPersoon } - * - */ - public KadasterOverzichtPersoon createKadasterOverzichtPersoon() { - return new KadasterOverzichtPersoon(); - } - - /** - * Create an instance of {@link CreditsafeLtdDirectors } - * - */ - public CreditsafeLtdDirectors createCreditsafeLtdDirectors() { - return new CreditsafeLtdDirectors(); - } - - /** - * Create an instance of {@link InsolvencyPublicationList } - * - */ - public InsolvencyPublicationList createInsolvencyPublicationList() { - return new InsolvencyPublicationList(); - } - - /** - * Create an instance of {@link CompliancePersonSearchReferenceArray } - * - */ - public CompliancePersonSearchReferenceArray createCompliancePersonSearchReferenceArray() { - return new CompliancePersonSearchReferenceArray(); - } - - /** - * Create an instance of {@link CreditsafeBeEventArray } - * - */ - public CreditsafeBeEventArray createCreditsafeBeEventArray() { - return new CreditsafeBeEventArray(); - } - - /** - * Create an instance of {@link SepaIbanDetails } - * - */ - public SepaIbanDetails createSepaIbanDetails() { - return new SepaIbanDetails(); - } - - /** - * Create an instance of {@link CarVWEOptionsStandard } - * - */ - public CarVWEOptionsStandard createCarVWEOptionsStandard() { - return new CarVWEOptionsStandard(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationV2 } - * - */ - public CreditsafeCompanyNegativeInformationV2 createCreditsafeCompanyNegativeInformationV2() { - return new CreditsafeCompanyNegativeInformationV2(); - } - - /** - * Create an instance of {@link ComplianceNoteReferenceArray } - * - */ - public ComplianceNoteReferenceArray createComplianceNoteReferenceArray() { - return new ComplianceNoteReferenceArray(); - } - - /** - * Create an instance of {@link CreditsafeEmployeeInformationArray } - * - */ - public CreditsafeEmployeeInformationArray createCreditsafeEmployeeInformationArray() { - return new CreditsafeEmployeeInformationArray(); - } - - /** - * Create an instance of {@link CreditsafeBeEvent } - * - */ - public CreditsafeBeEvent createCreditsafeBeEvent() { - return new CreditsafeBeEvent(); - } - - /** - * Create an instance of {@link BusinessDossier } - * - */ - public BusinessDossier createBusinessDossier() { - return new BusinessDossier(); - } - - /** - * Create an instance of {@link DutchBusinessPartnership } - * - */ - public DutchBusinessPartnership createDutchBusinessPartnership() { - return new DutchBusinessPartnership(); - } - - /** - * Create an instance of {@link NeighborhoodNameArray } - * - */ - public NeighborhoodNameArray createNeighborhoodNameArray() { - return new NeighborhoodNameArray(); - } - - /** - * Create an instance of {@link AccountV2Array } - * - */ - public AccountV2Array createAccountV2Array() { - return new AccountV2Array(); - } - - /** - * Create an instance of {@link CarATDValuationArray } - * - */ - public CarATDValuationArray createCarATDValuationArray() { - return new CarATDValuationArray(); - } - - /** - * Create an instance of {@link RDCoordinatesMatch } - * - */ - public RDCoordinatesMatch createRDCoordinatesMatch() { - return new RDCoordinatesMatch(); - } - - /** - * Create an instance of {@link RiskResult } - * - */ - public RiskResult createRiskResult() { - return new RiskResult(); - } - - /** - * Create an instance of {@link GCRRatingHistoryArray } - * - */ - public GCRRatingHistoryArray createGCRRatingHistoryArray() { - return new GCRRatingHistoryArray(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLFinancialItemV2 } - * - */ - public CreditsafeCompanyAdditionalInformationNLFinancialItemV2 createCreditsafeCompanyAdditionalInformationNLFinancialItemV2() { - return new CreditsafeCompanyAdditionalInformationNLFinancialItemV2(); - } - - /** - * Create an instance of {@link GCRLiaisonCompanyArray } - * - */ - public GCRLiaisonCompanyArray createGCRLiaisonCompanyArray() { - return new GCRLiaisonCompanyArray(); - } - - /** - * Create an instance of {@link RangeAddressArray } - * - */ - public RangeAddressArray createRangeAddressArray() { - return new RangeAddressArray(); - } - - /** - * Create an instance of {@link KadasterOverzichtPersoonV2Array } - * - */ - public KadasterOverzichtPersoonV2Array createKadasterOverzichtPersoonV2Array() { - return new KadasterOverzichtPersoonV2Array(); - } - - /** - * Create an instance of {@link RouteDescriptionCoordinatesRD } - * - */ - public RouteDescriptionCoordinatesRD createRouteDescriptionCoordinatesRD() { - return new RouteDescriptionCoordinatesRD(); - } - - /** - * Create an instance of {@link CreditsafeCompanyArray } - * - */ - public CreditsafeCompanyArray createCreditsafeCompanyArray() { - return new CreditsafeCompanyArray(); - } - - /** - * Create an instance of {@link KadasterV2LocatiePostbusArray } - * - */ - public KadasterV2LocatiePostbusArray createKadasterV2LocatiePostbusArray() { - return new KadasterV2LocatiePostbusArray(); - } - - /** - * Create an instance of {@link PRBeperkingLijst } - * - */ - public PRBeperkingLijst createPRBeperkingLijst() { - return new PRBeperkingLijst(); - } - - /** - * Create an instance of {@link NeighborhoodNamePagedResult } - * - */ - public NeighborhoodNamePagedResult createNeighborhoodNamePagedResult() { - return new NeighborhoodNamePagedResult(); - } - - /** - * Create an instance of {@link CreditsafeBeNegativeInformation } - * - */ - public CreditsafeBeNegativeInformation createCreditsafeBeNegativeInformation() { - return new CreditsafeBeNegativeInformation(); - } - - /** - * Create an instance of {@link VatProxyViesCheckVatResponse } - * - */ - public VatProxyViesCheckVatResponse createVatProxyViesCheckVatResponse() { - return new VatProxyViesCheckVatResponse(); - } - - /** - * Create an instance of {@link BelgianBusinessLegalRepresentativeArray } - * - */ - public BelgianBusinessLegalRepresentativeArray createBelgianBusinessLegalRepresentativeArray() { - return new BelgianBusinessLegalRepresentativeArray(); - } - - /** - * Create an instance of {@link DNBSICCodeArray } - * - */ - public DNBSICCodeArray createDNBSICCodeArray() { - return new DNBSICCodeArray(); - } - - /** - * Create an instance of {@link KadasterV2Personen } - * - */ - public KadasterV2Personen createKadasterV2Personen() { - return new KadasterV2Personen(); - } - - /** - * Create an instance of {@link KadasterNatuurlijkPersoon } - * - */ - public KadasterNatuurlijkPersoon createKadasterNatuurlijkPersoon() { - return new KadasterNatuurlijkPersoon(); - } - - /** - * Create an instance of {@link DutchBusinessNewsCompany } - * - */ - public DutchBusinessNewsCompany createDutchBusinessNewsCompany() { - return new DutchBusinessNewsCompany(); - } - - /** - * Create an instance of {@link KadasterKadastraleKaartResultaatV2 } - * - */ - public KadasterKadastraleKaartResultaatV2 createKadasterKadastraleKaartResultaatV2() { - return new KadasterKadastraleKaartResultaatV2(); - } - - /** - * Create an instance of {@link GCRCalamityEventArray } - * - */ - public GCRCalamityEventArray createGCRCalamityEventArray() { - return new GCRCalamityEventArray(); - } - - /** - * Create an instance of {@link DutchBusinessOrganizationReferenceV3 } - * - */ - public DutchBusinessOrganizationReferenceV3 createDutchBusinessOrganizationReferenceV3() { - return new DutchBusinessOrganizationReferenceV3(); - } - - /** - * Create an instance of {@link DutchBusinessExtractReference } - * - */ - public DutchBusinessExtractReference createDutchBusinessExtractReference() { - return new DutchBusinessExtractReference(); - } - - /** - * Create an instance of {@link DutchBusinessOrganizationReferenceV2 } - * - */ - public DutchBusinessOrganizationReferenceV2 createDutchBusinessOrganizationReferenceV2() { - return new DutchBusinessOrganizationReferenceV2(); - } - - /** - * Create an instance of {@link PRBeperking } - * - */ - public PRBeperking createPRBeperking() { - return new PRBeperking(); - } - - /** - * Create an instance of {@link DutchBusinessNewsItemPagedResult } - * - */ - public DutchBusinessNewsItemPagedResult createDutchBusinessNewsItemPagedResult() { - return new DutchBusinessNewsItemPagedResult(); - } - - /** - * Create an instance of {@link InsolvencyPublication } - * - */ - public InsolvencyPublication createInsolvencyPublication() { - return new InsolvencyPublication(); - } - - /** - * Create an instance of {@link KadasterGerelateerdStukdeelArray } - * - */ - public KadasterGerelateerdStukdeelArray createKadasterGerelateerdStukdeelArray() { - return new KadasterGerelateerdStukdeelArray(); - } - - /** - * Create an instance of {@link BusinessSBISectionArray } - * - */ - public BusinessSBISectionArray createBusinessSBISectionArray() { - return new BusinessSBISectionArray(); - } - - /** - * Create an instance of {@link RouteAddress } - * - */ - public RouteAddress createRouteAddress() { - return new RouteAddress(); - } - - /** - * Create an instance of {@link RiskPersonCompanyReport } - * - */ - public RiskPersonCompanyReport createRiskPersonCompanyReport() { - return new RiskPersonCompanyReport(); - } - - /** - * Create an instance of {@link Locatie } - * - */ - public Locatie createLocatie() { - return new Locatie(); - } - - /** - * Create an instance of {@link KadasterV2KadastraalBericht } - * - */ - public KadasterV2KadastraalBericht createKadasterV2KadastraalBericht() { - return new KadasterV2KadastraalBericht(); - } - - /** - * Create an instance of {@link CreditsafeStreetAddress } - * - */ - public CreditsafeStreetAddress createCreditsafeStreetAddress() { - return new CreditsafeStreetAddress(); - } - - /** - * Create an instance of {@link KadasterHypotheek } - * - */ - public KadasterHypotheek createKadasterHypotheek() { - return new KadasterHypotheek(); - } - - /** - * Create an instance of {@link GCRPercentageHistoryArray } - * - */ - public GCRPercentageHistoryArray createGCRPercentageHistoryArray() { - return new GCRPercentageHistoryArray(); - } - - /** - * Create an instance of {@link CreditsafeSearchCriteriaParam } - * - */ - public CreditsafeSearchCriteriaParam createCreditsafeSearchCriteriaParam() { - return new CreditsafeSearchCriteriaParam(); - } - - /** - * Create an instance of {@link International } - * - */ - public International createInternational() { - return new International(); - } - - /** - * Create an instance of {@link KadasterV2ErfpachtCanon } - * - */ - public KadasterV2ErfpachtCanon createKadasterV2ErfpachtCanon() { - return new KadasterV2ErfpachtCanon(); - } - - /** - * Create an instance of {@link CreditsafeCompanyListEntry } - * - */ - public CreditsafeCompanyListEntry createCreditsafeCompanyListEntry() { - return new CreditsafeCompanyListEntry(); - } - - /** - * Create an instance of {@link DNBAddress } - * - */ - public DNBAddress createDNBAddress() { - return new DNBAddress(); - } - - /** - * Create an instance of {@link GCRCompanyItselfCalamity } - * - */ - public GCRCompanyItselfCalamity createGCRCompanyItselfCalamity() { - return new GCRCompanyItselfCalamity(); - } - - /** - * Create an instance of {@link BusinessBIKCode } - * - */ - public BusinessBIKCode createBusinessBIKCode() { - return new BusinessBIKCode(); - } - - /** - * Create an instance of {@link CreditsafeSearchResultV2 } - * - */ - public CreditsafeSearchResultV2 createCreditsafeSearchResultV2() { - return new CreditsafeSearchResultV2(); - } - - /** - * Create an instance of {@link KadasterV2LocatieBuitenlandArray } - * - */ - public KadasterV2LocatieBuitenlandArray createKadasterV2LocatieBuitenlandArray() { - return new KadasterV2LocatieBuitenlandArray(); - } - - /** - * Create an instance of {@link ComplianceSanctionReference } - * - */ - public ComplianceSanctionReference createComplianceSanctionReference() { - return new ComplianceSanctionReference(); - } - - /** - * Create an instance of {@link GCROriginatedFrom } - * - */ - public GCROriginatedFrom createGCROriginatedFrom() { - return new GCROriginatedFrom(); - } - - /** - * Create an instance of {@link CreditsafeCompanyBankerV2Array } - * - */ - public CreditsafeCompanyBankerV2Array createCreditsafeCompanyBankerV2Array() { - return new CreditsafeCompanyBankerV2Array(); - } - - /** - * Create an instance of {@link GCRCurator } - * - */ - public GCRCurator createGCRCurator() { - return new GCRCurator(); - } - - /** - * Create an instance of {@link DistrictPagedResult } - * - */ - public DistrictPagedResult createDistrictPagedResult() { - return new DistrictPagedResult(); - } - - /** - * Create an instance of {@link BusinessReferenceV2PagedResult } - * - */ - public BusinessReferenceV2PagedResult createBusinessReferenceV2PagedResult() { - return new BusinessReferenceV2PagedResult(); - } - - /** - * Create an instance of {@link DutchBusinessEstablishmentArray } - * - */ - public DutchBusinessEstablishmentArray createDutchBusinessEstablishmentArray() { - return new DutchBusinessEstablishmentArray(); - } - - /** - * Create an instance of {@link NatuurlijkPersoon } - * - */ - public NatuurlijkPersoon createNatuurlijkPersoon() { - return new NatuurlijkPersoon(); - } - - /** - * Create an instance of {@link KadasterV2LocatiePostbus } - * - */ - public KadasterV2LocatiePostbus createKadasterV2LocatiePostbus() { - return new KadasterV2LocatiePostbus(); - } - - /** - * Create an instance of {@link DutchBusinessAdditionalPositionArray } - * - */ - public DutchBusinessAdditionalPositionArray createDutchBusinessAdditionalPositionArray() { - return new DutchBusinessAdditionalPositionArray(); - } - - /** - * Create an instance of {@link DutchBusinessEnterpriseV3 } - * - */ - public DutchBusinessEnterpriseV3 createDutchBusinessEnterpriseV3() { - return new DutchBusinessEnterpriseV3(); - } - - /** - * Create an instance of {@link DutchBusinessEnterpriseV2 } - * - */ - public DutchBusinessEnterpriseV2 createDutchBusinessEnterpriseV2() { - return new DutchBusinessEnterpriseV2(); - } - - /** - * Create an instance of {@link SepaBankDetails } - * - */ - public SepaBankDetails createSepaBankDetails() { - return new SepaBankDetails(); - } - - /** - * Create an instance of {@link DutchBusinessEstablishmentReferenceArray } - * - */ - public DutchBusinessEstablishmentReferenceArray createDutchBusinessEstablishmentReferenceArray() { - return new DutchBusinessEstablishmentReferenceArray(); - } - - /** - * Create an instance of {@link AreaCodePagedResult } - * - */ - public AreaCodePagedResult createAreaCodePagedResult() { - return new AreaCodePagedResult(); - } - - /** - * Create an instance of {@link CreditsafeChangedStringArray } - * - */ - public CreditsafeChangedStringArray createCreditsafeChangedStringArray() { - return new CreditsafeChangedStringArray(); - } - - /** - * Create an instance of {@link AantekeningKadastraalObjectLijst } - * - */ - public AantekeningKadastraalObjectLijst createAantekeningKadastraalObjectLijst() { - return new AantekeningKadastraalObjectLijst(); - } - - /** - * Create an instance of {@link CarType } - * - */ - public CarType createCarType() { - return new CarType(); - } - - /** - * Create an instance of {@link DutchBusinessGetConcernRelationsDetailsGraphLink } - * - */ - public DutchBusinessGetConcernRelationsDetailsGraphLink createDutchBusinessGetConcernRelationsDetailsGraphLink() { - return new DutchBusinessGetConcernRelationsDetailsGraphLink(); - } - - /** - * Create an instance of {@link KvkReferenceArray } - * - */ - public KvkReferenceArray createKvkReferenceArray() { - return new KvkReferenceArray(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2 } - * - */ - public CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2 createCreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2() { - return new CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2(); - } - - /** - * Create an instance of {@link RiskInsolvencyCuratorArray } - * - */ - public RiskInsolvencyCuratorArray createRiskInsolvencyCuratorArray() { - return new RiskInsolvencyCuratorArray(); - } - - /** - * Create an instance of {@link BelgianBusinessRevisorArray } - * - */ - public BelgianBusinessRevisorArray createBelgianBusinessRevisorArray() { - return new BelgianBusinessRevisorArray(); - } - - /** - * Create an instance of {@link KadasterV2OnroerendeZaakArray } - * - */ - public KadasterV2OnroerendeZaakArray createKadasterV2OnroerendeZaakArray() { - return new KadasterV2OnroerendeZaakArray(); - } - - /** - * Create an instance of {@link KadasterOverzichtRecht } - * - */ - public KadasterOverzichtRecht createKadasterOverzichtRecht() { - return new KadasterOverzichtRecht(); - } - - /** - * Create an instance of {@link KadasterV2LocatieBinnenland } - * - */ - public KadasterV2LocatieBinnenland createKadasterV2LocatieBinnenland() { - return new KadasterV2LocatieBinnenland(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 } - * - */ - public CreditsafeCompanyAdditionalInformationDEMiscellaneousV2 createCreditsafeCompanyAdditionalInformationDEMiscellaneousV2() { - return new CreditsafeCompanyAdditionalInformationDEMiscellaneousV2(); - } - - /** - * Create an instance of {@link DutchBusinessDossierReference } - * - */ - public DutchBusinessDossierReference createDutchBusinessDossierReference() { - return new DutchBusinessDossierReference(); - } - - /** - * Create an instance of {@link DutchBusinessDossierV3 } - * - */ - public DutchBusinessDossierV3 createDutchBusinessDossierV3() { - return new DutchBusinessDossierV3(); - } - - /** - * Create an instance of {@link KadasterV2KadastraleAanduiding } - * - */ - public KadasterV2KadastraleAanduiding createKadasterV2KadastraleAanduiding() { - return new KadasterV2KadastraleAanduiding(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateReferenceArray } - * - */ - public DutchBusinessUpdateReferenceArray createDutchBusinessUpdateReferenceArray() { - return new DutchBusinessUpdateReferenceArray(); - } - - /** - * Create an instance of {@link DutchVehicleEnvironmentArray } - * - */ - public DutchVehicleEnvironmentArray createDutchVehicleEnvironmentArray() { - return new DutchVehicleEnvironmentArray(); - } - - /** - * Create an instance of {@link BusinessBIKCodeInfo } - * - */ - public BusinessBIKCodeInfo createBusinessBIKCodeInfo() { - return new BusinessBIKCodeInfo(); - } - - /** - * Create an instance of {@link GCRAlarmContactDetails } - * - */ - public GCRAlarmContactDetails createGCRAlarmContactDetails() { - return new GCRAlarmContactDetails(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateSubscriptionPagedResult } - * - */ - public DutchBusinessUpdateSubscriptionPagedResult createDutchBusinessUpdateSubscriptionPagedResult() { - return new DutchBusinessUpdateSubscriptionPagedResult(); - } - - /** - * Create an instance of {@link DutchBusinessDossierV2 } - * - */ - public DutchBusinessDossierV2 createDutchBusinessDossierV2() { - return new DutchBusinessDossierV2(); - } - - /** - * Create an instance of {@link DNBQuickCheck } - * - */ - public DNBQuickCheck createDNBQuickCheck() { - return new DNBQuickCheck(); - } - - /** - * Create an instance of {@link KadasterV2TenaamstellingArray } - * - */ - public KadasterV2TenaamstellingArray createKadasterV2TenaamstellingArray() { - return new KadasterV2TenaamstellingArray(); - } - - /** - * Create an instance of {@link KadasterV2KoopsommenOverzicht } - * - */ - public KadasterV2KoopsommenOverzicht createKadasterV2KoopsommenOverzicht() { - return new KadasterV2KoopsommenOverzicht(); - } - - /** - * Create an instance of {@link InternationalPagedResult } - * - */ - public InternationalPagedResult createInternationalPagedResult() { - return new InternationalPagedResult(); - } - - /** - * Create an instance of {@link DutchBusinessReferenceV2PagedResult } - * - */ - public DutchBusinessReferenceV2PagedResult createDutchBusinessReferenceV2PagedResult() { - return new DutchBusinessReferenceV2PagedResult(); - } - - /** - * Create an instance of {@link AccountOrderToken } - * - */ - public AccountOrderToken createAccountOrderToken() { - return new AccountOrderToken(); - } - - /** - * Create an instance of {@link CreditsafePersonDirectorV2 } - * - */ - public CreditsafePersonDirectorV2 createCreditsafePersonDirectorV2() { - return new CreditsafePersonDirectorV2(); - } - - /** - * Create an instance of {@link KadasterV2Beslaglegging } - * - */ - public KadasterV2Beslaglegging createKadasterV2Beslaglegging() { - return new KadasterV2Beslaglegging(); - } - - /** - * Create an instance of {@link KadasterKadastraleKaart } - * - */ - public KadasterKadastraleKaart createKadasterKadastraleKaart() { - return new KadasterKadastraleKaart(); - } - - /** - * Create an instance of {@link PRBeperkingenKadastraalObject } - * - */ - public PRBeperkingenKadastraalObject createPRBeperkingenKadastraalObject() { - return new PRBeperkingenKadastraalObject(); - } - - /** - * Create an instance of {@link BelgianBusinessAnnualFinancialStatementArray } - * - */ - public BelgianBusinessAnnualFinancialStatementArray createBelgianBusinessAnnualFinancialStatementArray() { - return new BelgianBusinessAnnualFinancialStatementArray(); - } - - /** - * Create an instance of {@link KadasterV2Hoofdzaak } - * - */ - public KadasterV2Hoofdzaak createKadasterV2Hoofdzaak() { - return new KadasterV2Hoofdzaak(); - } - - /** - * Create an instance of {@link DNBBusinessReference } - * - */ - public DNBBusinessReference createDNBBusinessReference() { - return new DNBBusinessReference(); - } - - /** - * Create an instance of {@link DNBBusinessReferenceV2Array } - * - */ - public DNBBusinessReferenceV2Array createDNBBusinessReferenceV2Array() { - return new DNBBusinessReferenceV2Array(); - } - - /** - * Create an instance of {@link KadasterBeknoptOnroerendeZaakArray } - * - */ - public KadasterBeknoptOnroerendeZaakArray createKadasterBeknoptOnroerendeZaakArray() { - return new KadasterBeknoptOnroerendeZaakArray(); - } - - /** - * Create an instance of {@link KadasterV2GezamenlijkAandeelArray } - * - */ - public KadasterV2GezamenlijkAandeelArray createKadasterV2GezamenlijkAandeelArray() { - return new KadasterV2GezamenlijkAandeelArray(); - } - - /** - * Create an instance of {@link Recht } - * - */ - public Recht createRecht() { - return new Recht(); - } - - /** - * Create an instance of {@link CreditsafeCompanyRatiosV2 } - * - */ - public CreditsafeCompanyRatiosV2 createCreditsafeCompanyRatiosV2() { - return new CreditsafeCompanyRatiosV2(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationV2Array createCreditsafeCompanyAdditionalInformationV2Array() { - return new CreditsafeCompanyAdditionalInformationV2Array(); - } - - /** - * Create an instance of {@link DutchBusinessUBOInvestigationToken } - * - */ - public DutchBusinessUBOInvestigationToken createDutchBusinessUBOInvestigationToken() { - return new DutchBusinessUBOInvestigationToken(); - } - - /** - * Create an instance of {@link CreditsafeBeNSSODetail } - * - */ - public CreditsafeBeNSSODetail createCreditsafeBeNSSODetail() { - return new CreditsafeBeNSSODetail(); - } - - /** - * Create an instance of {@link KadasterV2HypothecairBericht } - * - */ - public KadasterV2HypothecairBericht createKadasterV2HypothecairBericht() { - return new KadasterV2HypothecairBericht(); - } - - /** - * Create an instance of {@link BelgianBusinessLegalRepresentativeCompany } - * - */ - public BelgianBusinessLegalRepresentativeCompany createBelgianBusinessLegalRepresentativeCompany() { - return new BelgianBusinessLegalRepresentativeCompany(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdvisorV2Array } - * - */ - public CreditsafeCompanyAdvisorV2Array createCreditsafeCompanyAdvisorV2Array() { - return new CreditsafeCompanyAdvisorV2Array(); - } - - /** - * Create an instance of {@link GCRPercentageHistory } - * - */ - public GCRPercentageHistory createGCRPercentageHistory() { - return new GCRPercentageHistory(); - } - - /** - * Create an instance of {@link CarVWEOptionArray } - * - */ - public CarVWEOptionArray createCarVWEOptionArray() { - return new CarVWEOptionArray(); - } - - /** - * Create an instance of {@link InternationalV2Array } - * - */ - public InternationalV2Array createInternationalV2Array() { - return new InternationalV2Array(); - } - - /** - * Create an instance of {@link GCRItem } - * - */ - public GCRItem createGCRItem() { - return new GCRItem(); - } - - /** - * Create an instance of {@link BerichtObjectV2 } - * - */ - public BerichtObjectV2 createBerichtObjectV2() { - return new BerichtObjectV2(); - } - - /** - * Create an instance of {@link BusinessDate } - * - */ - public BusinessDate createBusinessDate() { - return new BusinessDate(); - } - - /** - * Create an instance of {@link CarVWEBasicTypeData } - * - */ - public CarVWEBasicTypeData createCarVWEBasicTypeData() { - return new CarVWEBasicTypeData(); - } - - /** - * Create an instance of {@link DutchBusinessUBOReceiptItem } - * - */ - public DutchBusinessUBOReceiptItem createDutchBusinessUBOReceiptItem() { - return new DutchBusinessUBOReceiptItem(); - } - - /** - * Create an instance of {@link CarRDWCarDataPrice } - * - */ - public CarRDWCarDataPrice createCarRDWCarDataPrice() { - return new CarRDWCarDataPrice(); - } - - /** - * Create an instance of {@link DutchVehicleTypeApproval } - * - */ - public DutchVehicleTypeApproval createDutchVehicleTypeApproval() { - return new DutchVehicleTypeApproval(); - } - - /** - * Create an instance of {@link CreditsafeCompanyProfitAndLossV2 } - * - */ - public CreditsafeCompanyProfitAndLossV2 createCreditsafeCompanyProfitAndLossV2() { - return new CreditsafeCompanyProfitAndLossV2(); - } - - /** - * Create an instance of {@link CreditsafeCompanyProfitAndLossV2Array } - * - */ - public CreditsafeCompanyProfitAndLossV2Array createCreditsafeCompanyProfitAndLossV2Array() { - return new CreditsafeCompanyProfitAndLossV2Array(); - } - - /** - * Create an instance of {@link RiskCompanyAddressArray } - * - */ - public RiskCompanyAddressArray createRiskCompanyAddressArray() { - return new RiskCompanyAddressArray(); - } - - /** - * Create an instance of {@link KadasterV2KadastraleGrootte } - * - */ - public KadasterV2KadastraleGrootte createKadasterV2KadastraleGrootte() { - return new KadasterV2KadastraleGrootte(); - } - - /** - * Create an instance of {@link DutchBusinessSBICollectionArray } - * - */ - public DutchBusinessSBICollectionArray createDutchBusinessSBICollectionArray() { - return new DutchBusinessSBICollectionArray(); - } - - /** - * Create an instance of {@link AantekeningKadastraalObjectArray } - * - */ - public AantekeningKadastraalObjectArray createAantekeningKadastraalObjectArray() { - return new AantekeningKadastraalObjectArray(); - } - - /** - * Create an instance of {@link DutchBusinessExtractDocumentData } - * - */ - public DutchBusinessExtractDocumentData createDutchBusinessExtractDocumentData() { - return new DutchBusinessExtractDocumentData(); - } - - /** - * Create an instance of {@link StukMetKadastraleAanduiding } - * - */ - public StukMetKadastraleAanduiding createStukMetKadastraleAanduiding() { - return new StukMetKadastraleAanduiding(); - } - - /** - * Create an instance of {@link DutchBusinessEstablishmentV3Array } - * - */ - public DutchBusinessEstablishmentV3Array createDutchBusinessEstablishmentV3Array() { - return new DutchBusinessEstablishmentV3Array(); - } - - /** - * Create an instance of {@link KadasterBeknoptOnroerendeZaak } - * - */ - public KadasterBeknoptOnroerendeZaak createKadasterBeknoptOnroerendeZaak() { - return new KadasterBeknoptOnroerendeZaak(); - } - - /** - * Create an instance of {@link LatLonCoordinatesInternationalAddressArray } - * - */ - public LatLonCoordinatesInternationalAddressArray createLatLonCoordinatesInternationalAddressArray() { - return new LatLonCoordinatesInternationalAddressArray(); - } - - /** - * Create an instance of {@link OverzichtPersoonV2Array } - * - */ - public OverzichtPersoonV2Array createOverzichtPersoonV2Array() { - return new OverzichtPersoonV2Array(); - } - - /** - * Create an instance of {@link CarVWEOptionsManufacture } - * - */ - public CarVWEOptionsManufacture createCarVWEOptionsManufacture() { - return new CarVWEOptionsManufacture(); - } - - /** - * Create an instance of {@link GCRTextSequenceArray } - * - */ - public GCRTextSequenceArray createGCRTextSequenceArray() { - return new GCRTextSequenceArray(); - } - - /** - * Create an instance of {@link KadasterUittrekselKadastraleKaartResultaat } - * - */ - public KadasterUittrekselKadastraleKaartResultaat createKadasterUittrekselKadastraleKaartResultaat() { - return new KadasterUittrekselKadastraleKaartResultaat(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 } - * - */ - public CreditsafeCompanyAdditionalInformationNLMiscellaneousV2 createCreditsafeCompanyAdditionalInformationNLMiscellaneousV2() { - return new CreditsafeCompanyAdditionalInformationNLMiscellaneousV2(); - } - - /** - * Create an instance of {@link DutchVehicleTaxData } - * - */ - public DutchVehicleTaxData createDutchVehicleTaxData() { - return new DutchVehicleTaxData(); - } - - /** - * Create an instance of {@link AccountPagedResult } - * - */ - public AccountPagedResult createAccountPagedResult() { - return new AccountPagedResult(); - } - - /** - * Create an instance of {@link GeoLocationAddressV2 } - * - */ - public GeoLocationAddressV2 createGeoLocationAddressV2() { - return new GeoLocationAddressV2(); - } - - /** - * Create an instance of {@link SortedPostcodePagedResult } - * - */ - public SortedPostcodePagedResult createSortedPostcodePagedResult() { - return new SortedPostcodePagedResult(); - } - - /** - * Create an instance of {@link GCRHistory } - * - */ - public GCRHistory createGCRHistory() { - return new GCRHistory(); - } - - /** - * Create an instance of {@link BusinessDossierExtended } - * - */ - public BusinessDossierExtended createBusinessDossierExtended() { - return new BusinessDossierExtended(); - } - - /** - * Create an instance of {@link KadasterV2Stukdeel } - * - */ - public KadasterV2Stukdeel createKadasterV2Stukdeel() { - return new KadasterV2Stukdeel(); - } - - /** - * Create an instance of {@link UserV2Array } - * - */ - public UserV2Array createUserV2Array() { - return new UserV2Array(); - } - - /** - * Create an instance of {@link GCROfficialData } - * - */ - public GCROfficialData createGCROfficialData() { - return new GCROfficialData(); - } - - /** - * Create an instance of {@link CreditsafeCompanyListEntryArray } - * - */ - public CreditsafeCompanyListEntryArray createCreditsafeCompanyListEntryArray() { - return new CreditsafeCompanyListEntryArray(); - } - - /** - * Create an instance of {@link DutchBusinessPosition } - * - */ - public DutchBusinessPosition createDutchBusinessPosition() { - return new DutchBusinessPosition(); - } - - /** - * Create an instance of {@link KvkExtractDocument } - * - */ - public KvkExtractDocument createKvkExtractDocument() { - return new KvkExtractDocument(); - } - - /** - * Create an instance of {@link CarV3 } - * - */ - public CarV3 createCarV3() { - return new CarV3(); - } - - /** - * Create an instance of {@link DutchBusinessGetAdditionalPositionsResult } - * - */ - public DutchBusinessGetAdditionalPositionsResult createDutchBusinessGetAdditionalPositionsResult() { - return new DutchBusinessGetAdditionalPositionsResult(); - } - - /** - * Create an instance of {@link CarV2 } - * - */ - public CarV2 createCarV2() { - return new CarV2(); - } - - /** - * Create an instance of {@link CreditsafeBeProtestedBillArray } - * - */ - public CreditsafeBeProtestedBillArray createCreditsafeBeProtestedBillArray() { - return new CreditsafeBeProtestedBillArray(); - } - - /** - * Create an instance of {@link RiskLegalRestraintRegistry } - * - */ - public RiskLegalRestraintRegistry createRiskLegalRestraintRegistry() { - return new RiskLegalRestraintRegistry(); - } - - /** - * Create an instance of {@link ComplianceBusinessReference } - * - */ - public ComplianceBusinessReference createComplianceBusinessReference() { - return new ComplianceBusinessReference(); - } - - /** - * Create an instance of {@link CreditsafeCompanyIdentificationV2Array } - * - */ - public CreditsafeCompanyIdentificationV2Array createCreditsafeCompanyIdentificationV2Array() { - return new CreditsafeCompanyIdentificationV2Array(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationDETrusteeV2Array } - * - */ - public CreditsafeCompanyNegativeInformationDETrusteeV2Array createCreditsafeCompanyNegativeInformationDETrusteeV2Array() { - return new CreditsafeCompanyNegativeInformationDETrusteeV2Array(); - } - - /** - * Create an instance of {@link RiskInsolvencyPublicationArray } - * - */ - public RiskInsolvencyPublicationArray createRiskInsolvencyPublicationArray() { - return new RiskInsolvencyPublicationArray(); - } - - /** - * Create an instance of {@link CarVWEMeldcodeCheck } - * - */ - public CarVWEMeldcodeCheck createCarVWEMeldcodeCheck() { - return new CarVWEMeldcodeCheck(); - } - - /** - * Create an instance of {@link DutchBusinessDossierHistory } - * - */ - public DutchBusinessDossierHistory createDutchBusinessDossierHistory() { - return new DutchBusinessDossierHistory(); - } - - /** - * Create an instance of {@link RouteCoordinateRD } - * - */ - public RouteCoordinateRD createRouteCoordinateRD() { - return new RouteCoordinateRD(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateSubscriptionArray } - * - */ - public DutchBusinessUpdateSubscriptionArray createDutchBusinessUpdateSubscriptionArray() { - return new DutchBusinessUpdateSubscriptionArray(); - } - - /** - * Create an instance of {@link DNBMarketingPlusLinkageResult } - * - */ - public DNBMarketingPlusLinkageResult createDNBMarketingPlusLinkageResult() { - return new DNBMarketingPlusLinkageResult(); - } - - /** - * Create an instance of {@link AantekeningKadastraalObject } - * - */ - public AantekeningKadastraalObject createAantekeningKadastraalObject() { - return new AantekeningKadastraalObject(); - } - - /** - * Create an instance of {@link CreditsafeFinancialRatios } - * - */ - public CreditsafeFinancialRatios createCreditsafeFinancialRatios() { - return new CreditsafeFinancialRatios(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationDEV2Array } - * - */ - public CreditsafeCompanyNegativeInformationDEV2Array createCreditsafeCompanyNegativeInformationDEV2Array() { - return new CreditsafeCompanyNegativeInformationDEV2Array(); - } - - /** - * Create an instance of {@link GCRBalanceSheet } - * - */ - public GCRBalanceSheet createGCRBalanceSheet() { - return new GCRBalanceSheet(); - } - - /** - * Create an instance of {@link InsolvencyCase } - * - */ - public InsolvencyCase createInsolvencyCase() { - return new InsolvencyCase(); - } - - /** - * Create an instance of {@link GCRBranchOffice } - * - */ - public GCRBranchOffice createGCRBranchOffice() { - return new GCRBranchOffice(); - } - - /** - * Create an instance of {@link DutchBusinessExtractDocument } - * - */ - public DutchBusinessExtractDocument createDutchBusinessExtractDocument() { - return new DutchBusinessExtractDocument(); - } - - /** - * Create an instance of {@link DutchBusinessNewsItemArray } - * - */ - public DutchBusinessNewsItemArray createDutchBusinessNewsItemArray() { - return new DutchBusinessNewsItemArray(); - } - - /** - * Create an instance of {@link GCRCompanyContinuedUnder } - * - */ - public GCRCompanyContinuedUnder createGCRCompanyContinuedUnder() { - return new GCRCompanyContinuedUnder(); - } - - /** - * Create an instance of {@link KadasterBerichtObjectDocument } - * - */ - public KadasterBerichtObjectDocument createKadasterBerichtObjectDocument() { - return new KadasterBerichtObjectDocument(); - } - - /** - * Create an instance of {@link CarVWEVersionPriceReference } - * - */ - public CarVWEVersionPriceReference createCarVWEVersionPriceReference() { - return new CarVWEVersionPriceReference(); - } - - /** - * Create an instance of {@link DutchVehicleRegistration } - * - */ - public DutchVehicleRegistration createDutchVehicleRegistration() { - return new DutchVehicleRegistration(); - } - - /** - * Create an instance of {@link GCRFinancialCalamity } - * - */ - public GCRFinancialCalamity createGCRFinancialCalamity() { - return new GCRFinancialCalamity(); - } - - /** - * Create an instance of {@link GCRBankruptcy } - * - */ - public GCRBankruptcy createGCRBankruptcy() { - return new GCRBankruptcy(); - } - - /** - * Create an instance of {@link BusinessSBISection } - * - */ - public BusinessSBISection createBusinessSBISection() { - return new BusinessSBISection(); - } - - /** - * Create an instance of {@link GCRPerson } - * - */ - public GCRPerson createGCRPerson() { - return new GCRPerson(); - } - - /** - * Create an instance of {@link DutchBusinessInsolvencyArray } - * - */ - public DutchBusinessInsolvencyArray createDutchBusinessInsolvencyArray() { - return new DutchBusinessInsolvencyArray(); - } - - /** - * Create an instance of {@link DutchBusinessExtractChangeForecast } - * - */ - public DutchBusinessExtractChangeForecast createDutchBusinessExtractChangeForecast() { - return new DutchBusinessExtractChangeForecast(); - } - - /** - * Create an instance of {@link DutchBusinessUBOOrganizationNodeArray } - * - */ - public DutchBusinessUBOOrganizationNodeArray createDutchBusinessUBOOrganizationNodeArray() { - return new DutchBusinessUBOOrganizationNodeArray(); - } - - /** - * Create an instance of {@link GCRHistoryAdvisedLimit } - * - */ - public GCRHistoryAdvisedLimit createGCRHistoryAdvisedLimit() { - return new GCRHistoryAdvisedLimit(); - } - - /** - * Create an instance of {@link CompliancePersonSearchReference } - * - */ - public CompliancePersonSearchReference createCompliancePersonSearchReference() { - return new CompliancePersonSearchReference(); - } - - /** - * Create an instance of {@link DutchBusinessVatNumber } - * - */ - public DutchBusinessVatNumber createDutchBusinessVatNumber() { - return new DutchBusinessVatNumber(); - } - - /** - * Create an instance of {@link KadasterV2AanvullingArray } - * - */ - public KadasterV2AanvullingArray createKadasterV2AanvullingArray() { - return new KadasterV2AanvullingArray(); - } - - /** - * Create an instance of {@link DutchBusinessOrganizationNode } - * - */ - public DutchBusinessOrganizationNode createDutchBusinessOrganizationNode() { - return new DutchBusinessOrganizationNode(); - } - - /** - * Create an instance of {@link GCRReceiver } - * - */ - public GCRReceiver createGCRReceiver() { - return new GCRReceiver(); - } - - /** - * Create an instance of {@link PRBeperkingArray } - * - */ - public PRBeperkingArray createPRBeperkingArray() { - return new PRBeperkingArray(); - } - - /** - * Create an instance of {@link DutchBusinessExtractDataV2 } - * - */ - public DutchBusinessExtractDataV2 createDutchBusinessExtractDataV2() { - return new DutchBusinessExtractDataV2(); - } - - /** - * Create an instance of {@link DutchBusinessNonMarketingIndicator } - * - */ - public DutchBusinessNonMarketingIndicator createDutchBusinessNonMarketingIndicator() { - return new DutchBusinessNonMarketingIndicator(); - } - - /** - * Create an instance of {@link DutchBusinessExtractChangeSet } - * - */ - public DutchBusinessExtractChangeSet createDutchBusinessExtractChangeSet() { - return new DutchBusinessExtractChangeSet(); - } - - /** - * Create an instance of {@link CreditsafeCompanyGroupStructureV2Array } - * - */ - public CreditsafeCompanyGroupStructureV2Array createCreditsafeCompanyGroupStructureV2Array() { - return new CreditsafeCompanyGroupStructureV2Array(); - } - - /** - * Create an instance of {@link StukMetKadastraleAanduidingArray } - * - */ - public StukMetKadastraleAanduidingArray createStukMetKadastraleAanduidingArray() { - return new StukMetKadastraleAanduidingArray(); - } - - /** - * Create an instance of {@link DutchBusinessReferenceV2Array } - * - */ - public DutchBusinessReferenceV2Array createDutchBusinessReferenceV2Array() { - return new DutchBusinessReferenceV2Array(); - } - - /** - * Create an instance of {@link KadasterV2AantekeningWKPBArray } - * - */ - public KadasterV2AantekeningWKPBArray createKadasterV2AantekeningWKPBArray() { - return new KadasterV2AantekeningWKPBArray(); - } - - /** - * Create an instance of {@link KadasterV2ZakelijkRechtArray } - * - */ - public KadasterV2ZakelijkRechtArray createKadasterV2ZakelijkRechtArray() { - return new KadasterV2ZakelijkRechtArray(); - } - - /** - * Create an instance of {@link KadasterHypotheekStukArray } - * - */ - public KadasterHypotheekStukArray createKadasterHypotheekStukArray() { - return new KadasterHypotheekStukArray(); - } - - /** - * Create an instance of {@link KoopsommenOverzicht } - * - */ - public KoopsommenOverzicht createKoopsommenOverzicht() { - return new KoopsommenOverzicht(); - } - - /** - * Create an instance of {@link MetaMethodDefinition } - * - */ - public MetaMethodDefinition createMetaMethodDefinition() { - return new MetaMethodDefinition(); - } - - /** - * Create an instance of {@link CreditsafeCompanyUpdatePagedResult } - * - */ - public CreditsafeCompanyUpdatePagedResult createCreditsafeCompanyUpdatePagedResult() { - return new CreditsafeCompanyUpdatePagedResult(); - } - - /** - * Create an instance of {@link DutchBusinessInsolvency } - * - */ - public DutchBusinessInsolvency createDutchBusinessInsolvency() { - return new DutchBusinessInsolvency(); - } - - /** - * Create an instance of {@link KadasterV2Bedrag } - * - */ - public KadasterV2Bedrag createKadasterV2Bedrag() { - return new KadasterV2Bedrag(); - } - - /** - * Create an instance of {@link KadasterV2Splitsing } - * - */ - public KadasterV2Splitsing createKadasterV2Splitsing() { - return new KadasterV2Splitsing(); - } - - /** - * Create an instance of {@link DutchBusinessExtractDataV3 } - * - */ - public DutchBusinessExtractDataV3 createDutchBusinessExtractDataV3() { - return new DutchBusinessExtractDataV3(); - } - - /** - * Create an instance of {@link DutchBusinessUBOInvestigationResult } - * - */ - public DutchBusinessUBOInvestigationResult createDutchBusinessUBOInvestigationResult() { - return new DutchBusinessUBOInvestigationResult(); - } - - /** - * Create an instance of {@link KadasterHypotheekStukLijst } - * - */ - public KadasterHypotheekStukLijst createKadasterHypotheekStukLijst() { - return new KadasterHypotheekStukLijst(); - } - - /** - * Create an instance of {@link InsolvencyLegalSubject } - * - */ - public InsolvencyLegalSubject createInsolvencyLegalSubject() { - return new InsolvencyLegalSubject(); - } - - /** - * Create an instance of {@link KadasterV2Tenaamstelling } - * - */ - public KadasterV2Tenaamstelling createKadasterV2Tenaamstelling() { - return new KadasterV2Tenaamstelling(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array createCreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array() { - return new CreditsafeCompanyAdditionalInformationDEMiscellaneousV2Array(); - } - - /** - * Create an instance of {@link LidArray } - * - */ - public LidArray createLidArray() { - return new LidArray(); - } - - /** - * Create an instance of {@link KadasterV2LocatieBinnenlandArray } - * - */ - public KadasterV2LocatieBinnenlandArray createKadasterV2LocatieBinnenlandArray() { - return new KadasterV2LocatieBinnenlandArray(); - } - - /** - * Create an instance of {@link DutchBusinessDossier } - * - */ - public DutchBusinessDossier createDutchBusinessDossier() { - return new DutchBusinessDossier(); - } - - /** - * Create an instance of {@link SearchParts } - * - */ - public SearchParts createSearchParts() { - return new SearchParts(); - } - - /** - * Create an instance of {@link GCRAlarm } - * - */ - public GCRAlarm createGCRAlarm() { - return new GCRAlarm(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationV2Array } - * - */ - public CreditsafeCompanyNegativeInformationV2Array createCreditsafeCompanyNegativeInformationV2Array() { - return new CreditsafeCompanyNegativeInformationV2Array(); - } - - /** - * Create an instance of {@link GCRCompanyRelationsSimple } - * - */ - public GCRCompanyRelationsSimple createGCRCompanyRelationsSimple() { - return new GCRCompanyRelationsSimple(); - } - - /** - * Create an instance of {@link DNBRelatedBusiness } - * - */ - public DNBRelatedBusiness createDNBRelatedBusiness() { - return new DNBRelatedBusiness(); - } - - /** - * Create an instance of {@link CompliancePersonSearchReferencePagedResult } - * - */ - public CompliancePersonSearchReferencePagedResult createCompliancePersonSearchReferencePagedResult() { - return new CompliancePersonSearchReferencePagedResult(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 } - * - */ - public CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2 createCreditsafeCompanyAdditionalInformationNLAdditionalInformationV2() { - return new CreditsafeCompanyAdditionalInformationNLAdditionalInformationV2(); - } - - /** - * Create an instance of {@link MetaMethodDefinitionArray } - * - */ - public MetaMethodDefinitionArray createMetaMethodDefinitionArray() { - return new MetaMethodDefinitionArray(); - } - - /** - * Create an instance of {@link IntArray } - * - */ - public IntArray createIntArray() { - return new IntArray(); - } - - /** - * Create an instance of {@link Province } - * - */ - public Province createProvince() { - return new Province(); - } - - /** - * Create an instance of {@link InsolvencyAffectedCompany } - * - */ - public InsolvencyAffectedCompany createInsolvencyAffectedCompany() { - return new InsolvencyAffectedCompany(); - } - - /** - * Create an instance of {@link KadasterV2ZakelijkRecht } - * - */ - public KadasterV2ZakelijkRecht createKadasterV2ZakelijkRecht() { - return new KadasterV2ZakelijkRecht(); - } - - /** - * Create an instance of {@link Car } - * - */ - public Car createCar() { - return new Car(); - } - - /** - * Create an instance of {@link KadasterPersoon } - * - */ - public KadasterPersoon createKadasterPersoon() { - return new KadasterPersoon(); - } - - /** - * Create an instance of {@link DutchBusinessLegalEntityData } - * - */ - public DutchBusinessLegalEntityData createDutchBusinessLegalEntityData() { - return new DutchBusinessLegalEntityData(); - } - - /** - * Create an instance of {@link CarVWEOptions } - * - */ - public CarVWEOptions createCarVWEOptions() { - return new CarVWEOptions(); - } - - /** - * Create an instance of {@link RouteSummary } - * - */ - public RouteSummary createRouteSummary() { - return new RouteSummary(); - } - - /** - * Create an instance of {@link CreditsafePersonPositionV2Array } - * - */ - public CreditsafePersonPositionV2Array createCreditsafePersonPositionV2Array() { - return new CreditsafePersonPositionV2Array(); - } - - /** - * Create an instance of {@link GCRCuratorArray } - * - */ - public GCRCuratorArray createGCRCuratorArray() { - return new GCRCuratorArray(); - } - - /** - * Create an instance of {@link LidLijst } - * - */ - public LidLijst createLidLijst() { - return new LidLijst(); - } - - /** - * Create an instance of {@link KadasterV2AangebodenStukArray } - * - */ - public KadasterV2AangebodenStukArray createKadasterV2AangebodenStukArray() { - return new KadasterV2AangebodenStukArray(); - } - - /** - * Create an instance of {@link BelgianBusinessAnnualFinancialStatement } - * - */ - public BelgianBusinessAnnualFinancialStatement createBelgianBusinessAnnualFinancialStatement() { - return new BelgianBusinessAnnualFinancialStatement(); - } - - /** - * Create an instance of {@link CarBodyArray } - * - */ - public CarBodyArray createCarBodyArray() { - return new CarBodyArray(); - } - - /** - * Create an instance of {@link GCRContinuation } - * - */ - public GCRContinuation createGCRContinuation() { - return new GCRContinuation(); - } - - /** - * Create an instance of {@link DutchVehicleAxleArray } - * - */ - public DutchVehicleAxleArray createDutchVehicleAxleArray() { - return new DutchVehicleAxleArray(); - } - - /** - * Create an instance of {@link ComplianceBusinessSearchReferenceArray } - * - */ - public ComplianceBusinessSearchReferenceArray createComplianceBusinessSearchReferenceArray() { - return new ComplianceBusinessSearchReferenceArray(); - } - - /** - * Create an instance of {@link AccountV2 } - * - */ - public AccountV2 createAccountV2() { - return new AccountV2(); - } - - /** - * Create an instance of {@link CreditsafeBeRegisteredContractorArray } - * - */ - public CreditsafeBeRegisteredContractorArray createCreditsafeBeRegisteredContractorArray() { - return new CreditsafeBeRegisteredContractorArray(); - } - - /** - * Create an instance of {@link InsolvencyAddresses } - * - */ - public InsolvencyAddresses createInsolvencyAddresses() { - return new InsolvencyAddresses(); - } - - /** - * Create an instance of {@link BusinessReferenceArray } - * - */ - public BusinessReferenceArray createBusinessReferenceArray() { - return new BusinessReferenceArray(); - } - - /** - * Create an instance of {@link GraydonCreditReportManagement } - * - */ - public GraydonCreditReportManagement createGraydonCreditReportManagement() { - return new GraydonCreditReportManagement(); - } - - /** - * Create an instance of {@link PersoonV2Array } - * - */ - public PersoonV2Array createPersoonV2Array() { - return new PersoonV2Array(); - } - - /** - * Create an instance of {@link RiskInsolvencyPublication } - * - */ - public RiskInsolvencyPublication createRiskInsolvencyPublication() { - return new RiskInsolvencyPublication(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationNLV2 } - * - */ - public CreditsafeCompanyNegativeInformationNLV2 createCreditsafeCompanyNegativeInformationNLV2() { - return new CreditsafeCompanyNegativeInformationNLV2(); - } - - /** - * Create an instance of {@link BusinessReferenceV2Array } - * - */ - public BusinessReferenceV2Array createBusinessReferenceV2Array() { - return new BusinessReferenceV2Array(); - } - - /** - * Create an instance of {@link CreditsafeCompanyUpdateArray } - * - */ - public CreditsafeCompanyUpdateArray createCreditsafeCompanyUpdateArray() { - return new CreditsafeCompanyUpdateArray(); - } - - /** - * Create an instance of {@link CreditsafeDescriptionV2 } - * - */ - public CreditsafeDescriptionV2 createCreditsafeDescriptionV2() { - return new CreditsafeDescriptionV2(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array } - * - */ - public CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array createCreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array() { - return new CreditsafeCompanyAdditionalInformationNLLetterOfLiabilityInformation403V2Array(); - } - - /** - * Create an instance of {@link StukArray } - * - */ - public StukArray createStukArray() { - return new StukArray(); - } - - /** - * Create an instance of {@link BelgianBusinessRatios } - * - */ - public BelgianBusinessRatios createBelgianBusinessRatios() { - return new BelgianBusinessRatios(); - } - - /** - * Create an instance of {@link DutchBusinessPositionAuthorizationArray } - * - */ - public DutchBusinessPositionAuthorizationArray createDutchBusinessPositionAuthorizationArray() { - return new DutchBusinessPositionAuthorizationArray(); - } - - /** - * Create an instance of {@link CreditsafeBeBankruptcyEvent } - * - */ - public CreditsafeBeBankruptcyEvent createCreditsafeBeBankruptcyEvent() { - return new CreditsafeBeBankruptcyEvent(); - } - - /** - * Create an instance of {@link GCRCompanyRelations } - * - */ - public GCRCompanyRelations createGCRCompanyRelations() { - return new GCRCompanyRelations(); - } - - /** - * Create an instance of {@link DutchAddressPostcodeRange } - * - */ - public DutchAddressPostcodeRange createDutchAddressPostcodeRange() { - return new DutchAddressPostcodeRange(); - } - - /** - * Create an instance of {@link DNBMarketingPlusLinkage } - * - */ - public DNBMarketingPlusLinkage createDNBMarketingPlusLinkage() { - return new DNBMarketingPlusLinkage(); - } - - /** - * Create an instance of {@link BusinessSBICode } - * - */ - public BusinessSBICode createBusinessSBICode() { - return new BusinessSBICode(); - } - - /** - * Create an instance of {@link GCRBankAndInsurerData } - * - */ - public GCRBankAndInsurerData createGCRBankAndInsurerData() { - return new GCRBankAndInsurerData(); - } - - /** - * Create an instance of {@link OverzichtRechtArray } - * - */ - public OverzichtRechtArray createOverzichtRechtArray() { - return new OverzichtRechtArray(); - } - - /** - * Create an instance of {@link CreditsafeCompanyActivityClassificationV2Array } - * - */ - public CreditsafeCompanyActivityClassificationV2Array createCreditsafeCompanyActivityClassificationV2Array() { - return new CreditsafeCompanyActivityClassificationV2Array(); - } - - /** - * Create an instance of {@link GCRRatingArray } - * - */ - public GCRRatingArray createGCRRatingArray() { - return new GCRRatingArray(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationDEBankruptcyV2Array } - * - */ - public CreditsafeCompanyNegativeInformationDEBankruptcyV2Array createCreditsafeCompanyNegativeInformationDEBankruptcyV2Array() { - return new CreditsafeCompanyNegativeInformationDEBankruptcyV2Array(); - } - - /** - * Create an instance of {@link CompliancePerson } - * - */ - public CompliancePerson createCompliancePerson() { - return new CompliancePerson(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array createCreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array() { - return new CreditsafeCompanyAdditionalInformationNLMiscellaneousV2Array(); - } - - /** - * Create an instance of {@link BelgianBusinessAddress } - * - */ - public BelgianBusinessAddress createBelgianBusinessAddress() { - return new BelgianBusinessAddress(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationDEOwnerV2 } - * - */ - public CreditsafeCompanyAdditionalInformationDEOwnerV2 createCreditsafeCompanyAdditionalInformationDEOwnerV2() { - return new CreditsafeCompanyAdditionalInformationDEOwnerV2(); - } - - /** - * Create an instance of {@link BusinessUpdateReference } - * - */ - public BusinessUpdateReference createBusinessUpdateReference() { - return new BusinessUpdateReference(); - } - - /** - * Create an instance of {@link GCRFinancialDetailValueArray } - * - */ - public GCRFinancialDetailValueArray createGCRFinancialDetailValueArray() { - return new GCRFinancialDetailValueArray(); - } - - /** - * Create an instance of {@link DutchBusinessGetConcernRelationsDetailsGraphLinkArray } - * - */ - public DutchBusinessGetConcernRelationsDetailsGraphLinkArray createDutchBusinessGetConcernRelationsDetailsGraphLinkArray() { - return new DutchBusinessGetConcernRelationsDetailsGraphLinkArray(); - } - - /** - * Create an instance of {@link DutchBusinessEstablishmentReference } - * - */ - public DutchBusinessEstablishmentReference createDutchBusinessEstablishmentReference() { - return new DutchBusinessEstablishmentReference(); - } - - /** - * Create an instance of {@link DutchBusinessAnnualFinancialStatement } - * - */ - public DutchBusinessAnnualFinancialStatement createDutchBusinessAnnualFinancialStatement() { - return new DutchBusinessAnnualFinancialStatement(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationCommentV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationCommentV2Array createCreditsafeCompanyAdditionalInformationCommentV2Array() { - return new CreditsafeCompanyAdditionalInformationCommentV2Array(); - } - - /** - * Create an instance of {@link KadasterV2HoofdzaakArray } - * - */ - public KadasterV2HoofdzaakArray createKadasterV2HoofdzaakArray() { - return new KadasterV2HoofdzaakArray(); - } - - /** - * Create an instance of {@link DNBCommentary } - * - */ - public DNBCommentary createDNBCommentary() { - return new DNBCommentary(); - } - - /** - * Create an instance of {@link GraydonReferenceArray } - * - */ - public GraydonReferenceArray createGraydonReferenceArray() { - return new GraydonReferenceArray(); - } - - /** - * Create an instance of {@link GCRCreditAdviceData } - * - */ - public GCRCreditAdviceData createGCRCreditAdviceData() { - return new GCRCreditAdviceData(); - } - - /** - * Create an instance of {@link DutchBusinessPersonnelInfoV2 } - * - */ - public DutchBusinessPersonnelInfoV2 createDutchBusinessPersonnelInfoV2() { - return new DutchBusinessPersonnelInfoV2(); - } - - /** - * Create an instance of {@link DutchBusinessPersonnelInfoV3 } - * - */ - public DutchBusinessPersonnelInfoV3 createDutchBusinessPersonnelInfoV3() { - return new DutchBusinessPersonnelInfoV3(); - } - - /** - * Create an instance of {@link DutchVehicleStatus } - * - */ - public DutchVehicleStatus createDutchVehicleStatus() { - return new DutchVehicleStatus(); - } - - /** - * Create an instance of {@link GCRSpecialCompanyInformationArray } - * - */ - public GCRSpecialCompanyInformationArray createGCRSpecialCompanyInformationArray() { - return new GCRSpecialCompanyInformationArray(); - } - - /** - * Create an instance of {@link CarVWEOption } - * - */ - public CarVWEOption createCarVWEOption() { - return new CarVWEOption(); - } - - /** - * Create an instance of {@link CityPagedResult } - * - */ - public CityPagedResult createCityPagedResult() { - return new CityPagedResult(); - } - - /** - * Create an instance of {@link Base64BinaryArray } - * - */ - public Base64BinaryArray createBase64BinaryArray() { - return new Base64BinaryArray(); - } - - /** - * Create an instance of {@link LocatieBinnenlandArray } - * - */ - public LocatieBinnenlandArray createLocatieBinnenlandArray() { - return new LocatieBinnenlandArray(); - } - - /** - * Create an instance of {@link AreaCode } - * - */ - public AreaCode createAreaCode() { - return new AreaCode(); - } - - /** - * Create an instance of {@link DutchVehicleOwnerHistory } - * - */ - public DutchVehicleOwnerHistory createDutchVehicleOwnerHistory() { - return new DutchVehicleOwnerHistory(); - } - - /** - * Create an instance of {@link DutchBusinessSBICodeInfo } - * - */ - public DutchBusinessSBICodeInfo createDutchBusinessSBICodeInfo() { - return new DutchBusinessSBICodeInfo(); - } - - /** - * Create an instance of {@link MetaMethodReference } - * - */ - public MetaMethodReference createMetaMethodReference() { - return new MetaMethodReference(); - } - - /** - * Create an instance of {@link GCRLiaisonCompany } - * - */ - public GCRLiaisonCompany createGCRLiaisonCompany() { - return new GCRLiaisonCompany(); - } - - /** - * Create an instance of {@link CreditsafeCompanyOtherInformationV2Array } - * - */ - public CreditsafeCompanyOtherInformationV2Array createCreditsafeCompanyOtherInformationV2Array() { - return new CreditsafeCompanyOtherInformationV2Array(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array createCreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array() { - return new CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisV2Array(); - } - - /** - * Create an instance of {@link DutchBusinessUBORole } - * - */ - public DutchBusinessUBORole createDutchBusinessUBORole() { - return new DutchBusinessUBORole(); - } - - /** - * Create an instance of {@link DriveInfo } - * - */ - public DriveInfo createDriveInfo() { - return new DriveInfo(); - } - - /** - * Create an instance of {@link GCRManagementArray } - * - */ - public GCRManagementArray createGCRManagementArray() { - return new GCRManagementArray(); - } - - /** - * Create an instance of {@link ComplianceRoleReferenceArray } - * - */ - public ComplianceRoleReferenceArray createComplianceRoleReferenceArray() { - return new ComplianceRoleReferenceArray(); - } - - /** - * Create an instance of {@link KadasterBronDocument } - * - */ - public KadasterBronDocument createKadasterBronDocument() { - return new KadasterBronDocument(); - } - - /** - * Create an instance of {@link CreditsafeBeRegisteredContractor } - * - */ - public CreditsafeBeRegisteredContractor createCreditsafeBeRegisteredContractor() { - return new CreditsafeBeRegisteredContractor(); - } - - /** - * Create an instance of {@link GemeenteStuk } - * - */ - public GemeenteStuk createGemeenteStuk() { - return new GemeenteStuk(); - } - - /** - * Create an instance of {@link RiskLegalRestraint } - * - */ - public RiskLegalRestraint createRiskLegalRestraint() { - return new RiskLegalRestraint(); - } - - /** - * Create an instance of {@link BelgianBusinessStakeHolder } - * - */ - public BelgianBusinessStakeHolder createBelgianBusinessStakeHolder() { - return new BelgianBusinessStakeHolder(); - } - - /** - * Create an instance of {@link BusinessUpdateReferencePagedResult } - * - */ - public BusinessUpdateReferencePagedResult createBusinessUpdateReferencePagedResult() { - return new BusinessUpdateReferencePagedResult(); - } - - /** - * Create an instance of {@link BusinessDossierV3Array } - * - */ - public BusinessDossierV3Array createBusinessDossierV3Array() { - return new BusinessDossierV3Array(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 } - * - */ - public CreditsafeCompanyAdditionalInformationDETurnoverRangeV2 createCreditsafeCompanyAdditionalInformationDETurnoverRangeV2() { - return new CreditsafeCompanyAdditionalInformationDETurnoverRangeV2(); - } - - /** - * Create an instance of {@link KadasterHypotheekStuk } - * - */ - public KadasterHypotheekStuk createKadasterHypotheekStuk() { - return new KadasterHypotheekStuk(); - } - - /** - * Create an instance of {@link GCRDeclarationOfLiability } - * - */ - public GCRDeclarationOfLiability createGCRDeclarationOfLiability() { - return new GCRDeclarationOfLiability(); - } - - /** - * Create an instance of {@link KadasterNietNatuurlijkPersoon } - * - */ - public KadasterNietNatuurlijkPersoon createKadasterNietNatuurlijkPersoon() { - return new KadasterNietNatuurlijkPersoon(); - } - - /** - * Create an instance of {@link GeoLocationAddress } - * - */ - public GeoLocationAddress createGeoLocationAddress() { - return new GeoLocationAddress(); - } - - /** - * Create an instance of {@link CreditsafeLtdCreditScore } - * - */ - public CreditsafeLtdCreditScore createCreditsafeLtdCreditScore() { - return new CreditsafeLtdCreditScore(); - } - - /** - * Create an instance of {@link CreditsafeCompanyV2Array } - * - */ - public CreditsafeCompanyV2Array createCreditsafeCompanyV2Array() { - return new CreditsafeCompanyV2Array(); - } - - /** - * Create an instance of {@link KadasterStukdeelRechtArray } - * - */ - public KadasterStukdeelRechtArray createKadasterStukdeelRechtArray() { - return new KadasterStukdeelRechtArray(); - } - - /** - * Create an instance of {@link SepaMatchNameMatchingResult } - * - */ - public SepaMatchNameMatchingResult createSepaMatchNameMatchingResult() { - return new SepaMatchNameMatchingResult(); - } - - /** - * Create an instance of {@link DutchBusinessUpdateSubscription } - * - */ - public DutchBusinessUpdateSubscription createDutchBusinessUpdateSubscription() { - return new DutchBusinessUpdateSubscription(); - } - - /** - * Create an instance of {@link DutchVehiclePrice } - * - */ - public DutchVehiclePrice createDutchVehiclePrice() { - return new DutchVehiclePrice(); - } - - /** - * Create an instance of {@link CompliancePersonReference } - * - */ - public CompliancePersonReference createCompliancePersonReference() { - return new CompliancePersonReference(); - } - - /** - * Create an instance of {@link LatLonCoordinatesMatch } - * - */ - public LatLonCoordinatesMatch createLatLonCoordinatesMatch() { - return new LatLonCoordinatesMatch(); - } - - /** - * Create an instance of {@link CityV2 } - * - */ - public CityV2 createCityV2() { - return new CityV2(); - } - - /** - * Create an instance of {@link GCRDeclarationOfLiabilityArray } - * - */ - public GCRDeclarationOfLiabilityArray createGCRDeclarationOfLiabilityArray() { - return new GCRDeclarationOfLiabilityArray(); - } - - /** - * Create an instance of {@link BelgianBusinessDossier } - * - */ - public BelgianBusinessDossier createBelgianBusinessDossier() { - return new BelgianBusinessDossier(); - } - - /** - * Create an instance of {@link CreditsafeStreetAddressWithTelephoneArray } - * - */ - public CreditsafeStreetAddressWithTelephoneArray createCreditsafeStreetAddressWithTelephoneArray() { - return new CreditsafeStreetAddressWithTelephoneArray(); - } - - /** - * Create an instance of {@link DutchBusinessPositionV2Array } - * - */ - public DutchBusinessPositionV2Array createDutchBusinessPositionV2Array() { - return new DutchBusinessPositionV2Array(); - } - - /** - * Create an instance of {@link BelgianBusinessDatedItem } - * - */ - public BelgianBusinessDatedItem createBelgianBusinessDatedItem() { - return new BelgianBusinessDatedItem(); - } - - /** - * Create an instance of {@link BerichtObject } - * - */ - public BerichtObject createBerichtObject() { - return new BerichtObject(); - } - - /** - * Create an instance of {@link SepaMatchBankAccountDetails } - * - */ - public SepaMatchBankAccountDetails createSepaMatchBankAccountDetails() { - return new SepaMatchBankAccountDetails(); - } - - /** - * Create an instance of {@link InsolvencyConcernedPerson } - * - */ - public InsolvencyConcernedPerson createInsolvencyConcernedPerson() { - return new InsolvencyConcernedPerson(); - } - - /** - * Create an instance of {@link CarVWEVersionYearData } - * - */ - public CarVWEVersionYearData createCarVWEVersionYearData() { - return new CarVWEVersionYearData(); - } - - /** - * Create an instance of {@link CreditsafeCompanyStatusV2Array } - * - */ - public CreditsafeCompanyStatusV2Array createCreditsafeCompanyStatusV2Array() { - return new CreditsafeCompanyStatusV2Array(); - } - - /** - * Create an instance of {@link InsolvencyTreatingAuthority } - * - */ - public InsolvencyTreatingAuthority createInsolvencyTreatingAuthority() { - return new InsolvencyTreatingAuthority(); - } - - /** - * Create an instance of {@link KadasterV2AdresLocatie } - * - */ - public KadasterV2AdresLocatie createKadasterV2AdresLocatie() { - return new KadasterV2AdresLocatie(); - } - - /** - * Create an instance of {@link BusinessBIKCodeArray } - * - */ - public BusinessBIKCodeArray createBusinessBIKCodeArray() { - return new BusinessBIKCodeArray(); - } - - /** - * Create an instance of {@link SepaInternationalBankAccountNumberFormatValidationReport } - * - */ - public SepaInternationalBankAccountNumberFormatValidationReport createSepaInternationalBankAccountNumberFormatValidationReport() { - return new SepaInternationalBankAccountNumberFormatValidationReport(); - } - - /** - * Create an instance of {@link InternationalFormattedAddressPagedResult } - * - */ - public InternationalFormattedAddressPagedResult createInternationalFormattedAddressPagedResult() { - return new InternationalFormattedAddressPagedResult(); - } - - /** - * Create an instance of {@link DutchBusinessExtractReferenceArray } - * - */ - public DutchBusinessExtractReferenceArray createDutchBusinessExtractReferenceArray() { - return new DutchBusinessExtractReferenceArray(); - } - - /** - * Create an instance of {@link UserGroupArray } - * - */ - public UserGroupArray createUserGroupArray() { - return new UserGroupArray(); - } - - /** - * Create an instance of {@link DutchBusinessPartnershipArray } - * - */ - public DutchBusinessPartnershipArray createDutchBusinessPartnershipArray() { - return new DutchBusinessPartnershipArray(); - } - - /** - * Create an instance of {@link CreditsafeCompanyUpdate } - * - */ - public CreditsafeCompanyUpdate createCreditsafeCompanyUpdate() { - return new CreditsafeCompanyUpdate(); - } - - /** - * Create an instance of {@link KoopsomArray } - * - */ - public KoopsomArray createKoopsomArray() { - return new KoopsomArray(); - } - - /** - * Create an instance of {@link OverzichtNatuurlijkPersoon } - * - */ - public OverzichtNatuurlijkPersoon createOverzichtNatuurlijkPersoon() { - return new OverzichtNatuurlijkPersoon(); - } - - /** - * Create an instance of {@link CreditsafeAdditionalInformation } - * - */ - public CreditsafeAdditionalInformation createCreditsafeAdditionalInformation() { - return new CreditsafeAdditionalInformation(); - } - - /** - * Create an instance of {@link CreditsafeBalanceSheet } - * - */ - public CreditsafeBalanceSheet createCreditsafeBalanceSheet() { - return new CreditsafeBalanceSheet(); - } - - /** - * Create an instance of {@link AccountArray } - * - */ - public AccountArray createAccountArray() { - return new AccountArray(); - } - - /** - * Create an instance of {@link CreditsafeNlAdditionalInformation } - * - */ - public CreditsafeNlAdditionalInformation createCreditsafeNlAdditionalInformation() { - return new CreditsafeNlAdditionalInformation(); - } - - /** - * Create an instance of {@link GCRTradeNameArray } - * - */ - public GCRTradeNameArray createGCRTradeNameArray() { - return new GCRTradeNameArray(); - } - - /** - * Create an instance of {@link KadasterHypothecairBerichtResultaat } - * - */ - public KadasterHypothecairBerichtResultaat createKadasterHypothecairBerichtResultaat() { - return new KadasterHypothecairBerichtResultaat(); - } - - /** - * Create an instance of {@link InsolvencyReceivers } - * - */ - public InsolvencyReceivers createInsolvencyReceivers() { - return new InsolvencyReceivers(); - } - - /** - * Create an instance of {@link DutchBusinessAddressV2 } - * - */ - public DutchBusinessAddressV2 createDutchBusinessAddressV2() { - return new DutchBusinessAddressV2(); - } - - /** - * Create an instance of {@link DutchBusinessAddressV3 } - * - */ - public DutchBusinessAddressV3 createDutchBusinessAddressV3() { - return new DutchBusinessAddressV3(); - } - - /** - * Create an instance of {@link RiskLegalRestraintDecision } - * - */ - public RiskLegalRestraintDecision createRiskLegalRestraintDecision() { - return new RiskLegalRestraintDecision(); - } - - /** - * Create an instance of {@link DutchBusinessReferenceV2 } - * - */ - public DutchBusinessReferenceV2 createDutchBusinessReferenceV2() { - return new DutchBusinessReferenceV2(); - } - - /** - * Create an instance of {@link DutchBusinessInsolvencyPublication } - * - */ - public DutchBusinessInsolvencyPublication createDutchBusinessInsolvencyPublication() { - return new DutchBusinessInsolvencyPublication(); - } - - /** - * Create an instance of {@link KadasterListValue } - * - */ - public KadasterListValue createKadasterListValue() { - return new KadasterListValue(); - } - - /** - * Create an instance of {@link BerichtObjectResultaat } - * - */ - public BerichtObjectResultaat createBerichtObjectResultaat() { - return new BerichtObjectResultaat(); - } - - /** - * Create an instance of {@link BusinessReferenceV3 } - * - */ - public BusinessReferenceV3 createBusinessReferenceV3() { - return new BusinessReferenceV3(); - } - - /** - * Create an instance of {@link BusinessReferenceV2 } - * - */ - public BusinessReferenceV2 createBusinessReferenceV2() { - return new BusinessReferenceV2(); - } - - /** - * Create an instance of {@link CreditsafeNlPaymentExpectationsSummary } - * - */ - public CreditsafeNlPaymentExpectationsSummary createCreditsafeNlPaymentExpectationsSummary() { - return new CreditsafeNlPaymentExpectationsSummary(); - } - - /** - * Create an instance of {@link GCRHistoryAdvisedLimitArray } - * - */ - public GCRHistoryAdvisedLimitArray createGCRHistoryAdvisedLimitArray() { - return new GCRHistoryAdvisedLimitArray(); - } - - /** - * Create an instance of {@link KadasterV2Stuk } - * - */ - public KadasterV2Stuk createKadasterV2Stuk() { - return new KadasterV2Stuk(); - } - - /** - * Create an instance of {@link KadasterV2StukdeelArray } - * - */ - public KadasterV2StukdeelArray createKadasterV2StukdeelArray() { - return new KadasterV2StukdeelArray(); - } - - /** - * Create an instance of {@link CityV2PagedResult } - * - */ - public CityV2PagedResult createCityV2PagedResult() { - return new CityV2PagedResult(); - } - - /** - * Create an instance of {@link DutchBusinessPositionV3 } - * - */ - public DutchBusinessPositionV3 createDutchBusinessPositionV3() { - return new DutchBusinessPositionV3(); - } - - /** - * Create an instance of {@link KadasterStukdeelArray } - * - */ - public KadasterStukdeelArray createKadasterStukdeelArray() { - return new KadasterStukdeelArray(); - } - - /** - * Create an instance of {@link DutchBusinessPositions } - * - */ - public DutchBusinessPositions createDutchBusinessPositions() { - return new DutchBusinessPositions(); - } - - /** - * Create an instance of {@link DutchBusinessPositionV2 } - * - */ - public DutchBusinessPositionV2 createDutchBusinessPositionV2() { - return new DutchBusinessPositionV2(); - } - - /** - * Create an instance of {@link GCRBankAndInsurerKeyFigures } - * - */ - public GCRBankAndInsurerKeyFigures createGCRBankAndInsurerKeyFigures() { - return new GCRBankAndInsurerKeyFigures(); - } - - /** - * Create an instance of {@link GCRSectorOfIndustry } - * - */ - public GCRSectorOfIndustry createGCRSectorOfIndustry() { - return new GCRSectorOfIndustry(); - } - - /** - * Create an instance of {@link DutchBusinessReferencePagedResult } - * - */ - public DutchBusinessReferencePagedResult createDutchBusinessReferencePagedResult() { - return new DutchBusinessReferencePagedResult(); - } - - /** - * Create an instance of {@link MetaServiceDefinitionArray } - * - */ - public MetaServiceDefinitionArray createMetaServiceDefinitionArray() { - return new MetaServiceDefinitionArray(); - } - - /** - * Create an instance of {@link CityV2Array } - * - */ - public CityV2Array createCityV2Array() { - return new CityV2Array(); - } - - /** - * Create an instance of {@link NietNatuurlijkPersoon } - * - */ - public NietNatuurlijkPersoon createNietNatuurlijkPersoon() { - return new NietNatuurlijkPersoon(); - } - - /** - * Create an instance of {@link GCRTelephoneNumber } - * - */ - public GCRTelephoneNumber createGCRTelephoneNumber() { - return new GCRTelephoneNumber(); - } - - /** - * Create an instance of {@link KadasterStukdeelRecht } - * - */ - public KadasterStukdeelRecht createKadasterStukdeelRecht() { - return new KadasterStukdeelRecht(); - } - - /** - * Create an instance of {@link DutchBusinessPositionCompany } - * - */ - public DutchBusinessPositionCompany createDutchBusinessPositionCompany() { - return new DutchBusinessPositionCompany(); - } - - /** - * Create an instance of {@link CarVWEModelArray } - * - */ - public CarVWEModelArray createCarVWEModelArray() { - return new CarVWEModelArray(); - } - - /** - * Create an instance of {@link DutchBusinessStructure } - * - */ - public DutchBusinessStructure createDutchBusinessStructure() { - return new DutchBusinessStructure(); - } - - /** - * Create an instance of {@link CreditsafeStreetAddressArray } - * - */ - public CreditsafeStreetAddressArray createCreditsafeStreetAddressArray() { - return new CreditsafeStreetAddressArray(); - } - - /** - * Create an instance of {@link CreditsafeSearchCriteriaCombination } - * - */ - public CreditsafeSearchCriteriaCombination createCreditsafeSearchCriteriaCombination() { - return new CreditsafeSearchCriteriaCombination(); - } - - /** - * Create an instance of {@link KadasterOverzichtRechtArray } - * - */ - public KadasterOverzichtRechtArray createKadasterOverzichtRechtArray() { - return new KadasterOverzichtRechtArray(); - } - - /** - * Create an instance of {@link DutchVehicle } - * - */ - public DutchVehicle createDutchVehicle() { - return new DutchVehicle(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array createCreditsafeCompanyAdditionalInformationNLKvkFilingV2Array() { - return new CreditsafeCompanyAdditionalInformationNLKvkFilingV2Array(); - } - - /** - * Create an instance of {@link CreditsafeBanker } - * - */ - public CreditsafeBanker createCreditsafeBanker() { - return new CreditsafeBanker(); - } - - /** - * Create an instance of {@link BusinessBIKSection } - * - */ - public BusinessBIKSection createBusinessBIKSection() { - return new BusinessBIKSection(); - } - - /** - * Create an instance of {@link GCRCreditFactorArray } - * - */ - public GCRCreditFactorArray createGCRCreditFactorArray() { - return new GCRCreditFactorArray(); - } - - /** - * Create an instance of {@link DutchBusinessNewsCompanyArray } - * - */ - public DutchBusinessNewsCompanyArray createDutchBusinessNewsCompanyArray() { - return new DutchBusinessNewsCompanyArray(); - } - - /** - * Create an instance of {@link LocatieBinnenlandLijst } - * - */ - public LocatieBinnenlandLijst createLocatieBinnenlandLijst() { - return new LocatieBinnenlandLijst(); - } - - /** - * Create an instance of {@link GCRReceiverArray } - * - */ - public GCRReceiverArray createGCRReceiverArray() { - return new GCRReceiverArray(); - } - - /** - * Create an instance of {@link CreditsafeLtdCompanyBasicInformation } - * - */ - public CreditsafeLtdCompanyBasicInformation createCreditsafeLtdCompanyBasicInformation() { - return new CreditsafeLtdCompanyBasicInformation(); - } - - /** - * Create an instance of {@link GCRPersonSimple } - * - */ - public GCRPersonSimple createGCRPersonSimple() { - return new GCRPersonSimple(); - } - - /** - * Create an instance of {@link InsolvencyCurators } - * - */ - public InsolvencyCurators createInsolvencyCurators() { - return new InsolvencyCurators(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationNLCourtItemV2Array } - * - */ - public CreditsafeCompanyNegativeInformationNLCourtItemV2Array createCreditsafeCompanyNegativeInformationNLCourtItemV2Array() { - return new CreditsafeCompanyNegativeInformationNLCourtItemV2Array(); - } - - /** - * Create an instance of {@link KadasterV2NietNatuurlijkPersoon } - * - */ - public KadasterV2NietNatuurlijkPersoon createKadasterV2NietNatuurlijkPersoon() { - return new KadasterV2NietNatuurlijkPersoon(); - } - - /** - * Create an instance of {@link VatValidation } - * - */ - public VatValidation createVatValidation() { - return new VatValidation(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array createCreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array() { - return new CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2Array(); - } - - /** - * Create an instance of {@link RoutePlannerRoute } - * - */ - public RoutePlannerRoute createRoutePlannerRoute() { - return new RoutePlannerRoute(); - } - - /** - * Create an instance of {@link CreditsafeCompanyPaymentDataV2 } - * - */ - public CreditsafeCompanyPaymentDataV2 createCreditsafeCompanyPaymentDataV2() { - return new CreditsafeCompanyPaymentDataV2(); - } - - /** - * Create an instance of {@link KadasterV2Aantekening } - * - */ - public KadasterV2Aantekening createKadasterV2Aantekening() { - return new KadasterV2Aantekening(); - } - - /** - * Create an instance of {@link GCRAnnualFiguresArray } - * - */ - public GCRAnnualFiguresArray createGCRAnnualFiguresArray() { - return new GCRAnnualFiguresArray(); - } - - /** - * Create an instance of {@link InternationalFormattedAddress } - * - */ - public InternationalFormattedAddress createInternationalFormattedAddress() { - return new InternationalFormattedAddress(); - } - - /** - * Create an instance of {@link Lid } - * - */ - public Lid createLid() { - return new Lid(); - } - - /** - * Create an instance of {@link DutchBusinessGetLeiResult } - * - */ - public DutchBusinessGetLeiResult createDutchBusinessGetLeiResult() { - return new DutchBusinessGetLeiResult(); - } - - /** - * Create an instance of {@link BusinessDossierArray } - * - */ - public BusinessDossierArray createBusinessDossierArray() { - return new BusinessDossierArray(); - } - - /** - * Create an instance of {@link GCROriginatedFromArray } - * - */ - public GCROriginatedFromArray createGCROriginatedFromArray() { - return new GCROriginatedFromArray(); - } - - /** - * Create an instance of {@link OverzichtV2 } - * - */ - public OverzichtV2 createOverzichtV2() { - return new OverzichtV2(); - } - - /** - * Create an instance of {@link DutchBusinessOrganizationNodeArray } - * - */ - public DutchBusinessOrganizationNodeArray createDutchBusinessOrganizationNodeArray() { - return new DutchBusinessOrganizationNodeArray(); - } - - /** - * Create an instance of {@link RouteCoordinatesRD } - * - */ - public RouteCoordinatesRD createRouteCoordinatesRD() { - return new RouteCoordinatesRD(); - } - - /** - * Create an instance of {@link CreditsafeNlNegativeInformation } - * - */ - public CreditsafeNlNegativeInformation createCreditsafeNlNegativeInformation() { - return new CreditsafeNlNegativeInformation(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationDEInsolvencyEventV2 } - * - */ - public CreditsafeCompanyNegativeInformationDEInsolvencyEventV2 createCreditsafeCompanyNegativeInformationDEInsolvencyEventV2() { - return new CreditsafeCompanyNegativeInformationDEInsolvencyEventV2(); - } - - /** - * Create an instance of {@link BusinessSBICodeInfo } - * - */ - public BusinessSBICodeInfo createBusinessSBICodeInfo() { - return new BusinessSBICodeInfo(); - } - - /** - * Create an instance of {@link GCRRatioArray } - * - */ - public GCRRatioArray createGCRRatioArray() { - return new GCRRatioArray(); - } - - /** - * Create an instance of {@link KadasterV2SplitsingArray } - * - */ - public KadasterV2SplitsingArray createKadasterV2SplitsingArray() { - return new KadasterV2SplitsingArray(); - } - - /** - * Create an instance of {@link ComplianceBusiness } - * - */ - public ComplianceBusiness createComplianceBusiness() { - return new ComplianceBusiness(); - } - - /** - * Create an instance of {@link CreditsafeNlCourtDataReceiver } - * - */ - public CreditsafeNlCourtDataReceiver createCreditsafeNlCourtDataReceiver() { - return new CreditsafeNlCourtDataReceiver(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationDEDirectorEventV2 } - * - */ - public CreditsafeCompanyNegativeInformationDEDirectorEventV2 createCreditsafeCompanyNegativeInformationDEDirectorEventV2() { - return new CreditsafeCompanyNegativeInformationDEDirectorEventV2(); - } - - /** - * Create an instance of {@link AantekeningRechtArray } - * - */ - public AantekeningRechtArray createAantekeningRechtArray() { - return new AantekeningRechtArray(); - } - - /** - * Create an instance of {@link PCReeksArray } - * - */ - public PCReeksArray createPCReeksArray() { - return new PCReeksArray(); - } - - /** - * Create an instance of {@link GCRMoratorium } - * - */ - public GCRMoratorium createGCRMoratorium() { - return new GCRMoratorium(); - } - - /** - * Create an instance of {@link MetaServiceDefinition } - * - */ - public MetaServiceDefinition createMetaServiceDefinition() { - return new MetaServiceDefinition(); - } - - /** - * Create an instance of {@link KadasterV2AantekeningWKPB } - * - */ - public KadasterV2AantekeningWKPB createKadasterV2AantekeningWKPB() { - return new KadasterV2AantekeningWKPB(); - } - - /** - * Create an instance of {@link DutchBusinessSbiCodeV3Array } - * - */ - public DutchBusinessSbiCodeV3Array createDutchBusinessSbiCodeV3Array() { - return new DutchBusinessSbiCodeV3Array(); - } - - /** - * Create an instance of {@link DutchVehicleMarketValue } - * - */ - public DutchVehicleMarketValue createDutchVehicleMarketValue() { - return new DutchVehicleMarketValue(); - } - - /** - * Create an instance of {@link KadasterV2BeslagleggingArray } - * - */ - public KadasterV2BeslagleggingArray createKadasterV2BeslagleggingArray() { - return new KadasterV2BeslagleggingArray(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 } - * - */ - public CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2 createCreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2() { - return new CreditsafeCompanyAdditionalInformationNLIndustryQuartileAnalysisDayV2(); - } - - /** - * Create an instance of {@link CreditsafeLtdGroupStructure } - * - */ - public CreditsafeLtdGroupStructure createCreditsafeLtdGroupStructure() { - return new CreditsafeLtdGroupStructure(); - } - - /** - * Create an instance of {@link DutchBusinessPeriod } - * - */ - public DutchBusinessPeriod createDutchBusinessPeriod() { - return new DutchBusinessPeriod(); - } - - /** - * Create an instance of {@link DutchBusinessUBOReceiptItemArray } - * - */ - public DutchBusinessUBOReceiptItemArray createDutchBusinessUBOReceiptItemArray() { - return new DutchBusinessUBOReceiptItemArray(); - } - - /** - * Create an instance of {@link DutchBusinessGetConcernRelationsOverviewResult } - * - */ - public DutchBusinessGetConcernRelationsOverviewResult createDutchBusinessGetConcernRelationsOverviewResult() { - return new DutchBusinessGetConcernRelationsOverviewResult(); - } - - /** - * Create an instance of {@link KadasterV2OvergegaanIn } - * - */ - public KadasterV2OvergegaanIn createKadasterV2OvergegaanIn() { - return new KadasterV2OvergegaanIn(); - } - - /** - * Create an instance of {@link CreditsafeLtdContactInformation } - * - */ - public CreditsafeLtdContactInformation createCreditsafeLtdContactInformation() { - return new CreditsafeLtdContactInformation(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array } - * - */ - public CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array createCreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array() { - return new CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2Array(); - } - - /** - * Create an instance of {@link CreditsafeBePaymentExpectationsSummary } - * - */ - public CreditsafeBePaymentExpectationsSummary createCreditsafeBePaymentExpectationsSummary() { - return new CreditsafeBePaymentExpectationsSummary(); - } - - /** - * Create an instance of {@link DutchVehicleV2 } - * - */ - public DutchVehicleV2 createDutchVehicleV2() { - return new DutchVehicleV2(); - } - - /** - * Create an instance of {@link AantekeningRechtLijst } - * - */ - public AantekeningRechtLijst createAantekeningRechtLijst() { - return new AantekeningRechtLijst(); - } - - /** - * Create an instance of {@link KadasterV2StukArray } - * - */ - public KadasterV2StukArray createKadasterV2StukArray() { - return new KadasterV2StukArray(); - } - - /** - * Create an instance of {@link CreditsafeCompanyBalanceSheetV2 } - * - */ - public CreditsafeCompanyBalanceSheetV2 createCreditsafeCompanyBalanceSheetV2() { - return new CreditsafeCompanyBalanceSheetV2(); - } - - /** - * Create an instance of {@link DutchVehicleMileage } - * - */ - public DutchVehicleMileage createDutchVehicleMileage() { - return new DutchVehicleMileage(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 } - * - */ - public CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2 createCreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2() { - return new CreditsafeCompanyAdditionalInformationNLPaymentExpectationsSummaryV2(); - } - - /** - * Create an instance of {@link BelgianBusinessDossierErrors } - * - */ - public BelgianBusinessDossierErrors createBelgianBusinessDossierErrors() { - return new BelgianBusinessDossierErrors(); - } - - /** - * Create an instance of {@link UserGroup } - * - */ - public UserGroup createUserGroup() { - return new UserGroup(); - } - - /** - * Create an instance of {@link NeighborhoodPagedResult } - * - */ - public NeighborhoodPagedResult createNeighborhoodPagedResult() { - return new NeighborhoodPagedResult(); - } - - /** - * Create an instance of {@link GCRCompanyItself } - * - */ - public GCRCompanyItself createGCRCompanyItself() { - return new GCRCompanyItself(); - } - - /** - * Create an instance of {@link CreditsafeBeAdditionalInformation } - * - */ - public CreditsafeBeAdditionalInformation createCreditsafeBeAdditionalInformation() { - return new CreditsafeBeAdditionalInformation(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationHistoricalEventV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationHistoricalEventV2Array createCreditsafeCompanyAdditionalInformationHistoricalEventV2Array() { - return new CreditsafeCompanyAdditionalInformationHistoricalEventV2Array(); - } - - /** - * Create an instance of {@link DNBEmployeeCount } - * - */ - public DNBEmployeeCount createDNBEmployeeCount() { - return new DNBEmployeeCount(); - } - - /** - * Create an instance of {@link DutchVehicleOwnership } - * - */ - public DutchVehicleOwnership createDutchVehicleOwnership() { - return new DutchVehicleOwnership(); - } - - /** - * Create an instance of {@link CreditsafeCompanyEmployeeInformationV2 } - * - */ - public CreditsafeCompanyEmployeeInformationV2 createCreditsafeCompanyEmployeeInformationV2() { - return new CreditsafeCompanyEmployeeInformationV2(); - } - - /** - * Create an instance of {@link KadasterV2Bijlage } - * - */ - public KadasterV2Bijlage createKadasterV2Bijlage() { - return new KadasterV2Bijlage(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationNLCourtItemV2 } - * - */ - public CreditsafeCompanyNegativeInformationNLCourtItemV2 createCreditsafeCompanyNegativeInformationNLCourtItemV2() { - return new CreditsafeCompanyNegativeInformationNLCourtItemV2(); - } - - /** - * Create an instance of {@link GCRCreditFactor } - * - */ - public GCRCreditFactor createGCRCreditFactor() { - return new GCRCreditFactor(); - } - - /** - * Create an instance of {@link DNBSICCode } - * - */ - public DNBSICCode createDNBSICCode() { - return new DNBSICCode(); - } - - /** - * Create an instance of {@link BusinessSBICodeArray } - * - */ - public BusinessSBICodeArray createBusinessSBICodeArray() { - return new BusinessSBICodeArray(); - } - - /** - * Create an instance of {@link KadasterV2KadastraalBerichtResponse } - * - */ - public KadasterV2KadastraalBerichtResponse createKadasterV2KadastraalBerichtResponse() { - return new KadasterV2KadastraalBerichtResponse(); - } - - /** - * Create an instance of {@link EDRScore } - * - */ - public EDRScore createEDRScore() { - return new EDRScore(); - } - - /** - * Create an instance of {@link CreditsafePreviousDirectorArray } - * - */ - public CreditsafePreviousDirectorArray createCreditsafePreviousDirectorArray() { - return new CreditsafePreviousDirectorArray(); - } - - /** - * Create an instance of {@link DutchVehicleEngine } - * - */ - public DutchVehicleEngine createDutchVehicleEngine() { - return new DutchVehicleEngine(); - } - - /** - * Create an instance of {@link CreditsafeNlLettersOfLiabilityInformation403 } - * - */ - public CreditsafeNlLettersOfLiabilityInformation403 createCreditsafeNlLettersOfLiabilityInformation403() { - return new CreditsafeNlLettersOfLiabilityInformation403(); - } - - /** - * Create an instance of {@link CreditsafeShareHolder } - * - */ - public CreditsafeShareHolder createCreditsafeShareHolder() { - return new CreditsafeShareHolder(); - } - - /** - * Create an instance of {@link DutchBusinessDossierReferenceArray } - * - */ - public DutchBusinessDossierReferenceArray createDutchBusinessDossierReferenceArray() { - return new DutchBusinessDossierReferenceArray(); - } - - /** - * Create an instance of {@link KadasterOverzicht } - * - */ - public KadasterOverzicht createKadasterOverzicht() { - return new KadasterOverzicht(); - } - - /** - * Create an instance of {@link RangeAddress } - * - */ - public RangeAddress createRangeAddress() { - return new RangeAddress(); - } - - /** - * Create an instance of {@link KadasterListValueArray } - * - */ - public KadasterListValueArray createKadasterListValueArray() { - return new KadasterListValueArray(); - } - - /** - * Create an instance of {@link GCRParticipation } - * - */ - public GCRParticipation createGCRParticipation() { - return new GCRParticipation(); - } - - /** - * Create an instance of {@link CarVWEOptionPackageArray } - * - */ - public CarVWEOptionPackageArray createCarVWEOptionPackageArray() { - return new CarVWEOptionPackageArray(); - } - - /** - * Create an instance of {@link RiskInsolvencyArray } - * - */ - public RiskInsolvencyArray createRiskInsolvencyArray() { - return new RiskInsolvencyArray(); - } - - /** - * Create an instance of {@link KadasterV2LandinrichtingsRenteArray } - * - */ - public KadasterV2LandinrichtingsRenteArray createKadasterV2LandinrichtingsRenteArray() { - return new KadasterV2LandinrichtingsRenteArray(); - } - - /** - * Create an instance of {@link GCRCountry } - * - */ - public GCRCountry createGCRCountry() { - return new GCRCountry(); - } - - /** - * Create an instance of {@link CreditsafeCompanyRatiosV2Array } - * - */ - public CreditsafeCompanyRatiosV2Array createCreditsafeCompanyRatiosV2Array() { - return new CreditsafeCompanyRatiosV2Array(); - } - - /** - * Create an instance of {@link DutchBusinessUBOExtract } - * - */ - public DutchBusinessUBOExtract createDutchBusinessUBOExtract() { - return new DutchBusinessUBOExtract(); - } - - /** - * Create an instance of {@link DutchVehiclePriceValuationArray } - * - */ - public DutchVehiclePriceValuationArray createDutchVehiclePriceValuationArray() { - return new DutchVehiclePriceValuationArray(); - } - - /** - * Create an instance of {@link KadasterV2ErfpachtCanonArray } - * - */ - public KadasterV2ErfpachtCanonArray createKadasterV2ErfpachtCanonArray() { - return new KadasterV2ErfpachtCanonArray(); - } - - /** - * Create an instance of {@link DutchBusinessReference } - * - */ - public DutchBusinessReference createDutchBusinessReference() { - return new DutchBusinessReference(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 } - * - */ - public CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2 createCreditsafeCompanyNegativeInformationDEInsolvencyInformationV2() { - return new CreditsafeCompanyNegativeInformationDEInsolvencyInformationV2(); - } - - /** - * Create an instance of {@link DNBMarketing } - * - */ - public DNBMarketing createDNBMarketing() { - return new DNBMarketing(); - } - - /** - * Create an instance of {@link SortedPostcode } - * - */ - public SortedPostcode createSortedPostcode() { - return new SortedPostcode(); - } - - /** - * Create an instance of {@link GCRDebtRestructuringPrivatePersons } - * - */ - public GCRDebtRestructuringPrivatePersons createGCRDebtRestructuringPrivatePersons() { - return new GCRDebtRestructuringPrivatePersons(); - } - - /** - * Create an instance of {@link ProvincePagedResult } - * - */ - public ProvincePagedResult createProvincePagedResult() { - return new ProvincePagedResult(); - } - - /** - * Create an instance of {@link ComplianceBusinessSearchReferencePagedResult } - * - */ - public ComplianceBusinessSearchReferencePagedResult createComplianceBusinessSearchReferencePagedResult() { - return new ComplianceBusinessSearchReferencePagedResult(); - } - - /** - * Create an instance of {@link GraydonReference } - * - */ - public GraydonReference createGraydonReference() { - return new GraydonReference(); - } - - /** - * Create an instance of {@link DutchVehicleAxle } - * - */ - public DutchVehicleAxle createDutchVehicleAxle() { - return new DutchVehicleAxle(); - } - - /** - * Create an instance of {@link RechtenLijst } - * - */ - public RechtenLijst createRechtenLijst() { - return new RechtenLijst(); - } - - /** - * Create an instance of {@link CreditsafeNlCourtData } - * - */ - public CreditsafeNlCourtData createCreditsafeNlCourtData() { - return new CreditsafeNlCourtData(); - } - - /** - * Create an instance of {@link BelgianBusinessBankAccountArray } - * - */ - public BelgianBusinessBankAccountArray createBelgianBusinessBankAccountArray() { - return new BelgianBusinessBankAccountArray(); - } - - /** - * Create an instance of {@link ComplianceSanctionReferenceArray } - * - */ - public ComplianceSanctionReferenceArray createComplianceSanctionReferenceArray() { - return new ComplianceSanctionReferenceArray(); - } - - /** - * Create an instance of {@link DutchBusinessPartnershipV3 } - * - */ - public DutchBusinessPartnershipV3 createDutchBusinessPartnershipV3() { - return new DutchBusinessPartnershipV3(); - } - - /** - * Create an instance of {@link DutchBusinessPartnershipV2 } - * - */ - public DutchBusinessPartnershipV2 createDutchBusinessPartnershipV2() { - return new DutchBusinessPartnershipV2(); - } - - /** - * Create an instance of {@link DutchBusinessGetConcernRelationsDetailsResult } - * - */ - public DutchBusinessGetConcernRelationsDetailsResult createDutchBusinessGetConcernRelationsDetailsResult() { - return new DutchBusinessGetConcernRelationsDetailsResult(); - } - - /** - * Create an instance of {@link CreditsafeLtdCompanySummary } - * - */ - public CreditsafeLtdCompanySummary createCreditsafeLtdCompanySummary() { - return new CreditsafeLtdCompanySummary(); - } - - /** - * Create an instance of {@link KadasterV2Verzoek } - * - */ - public KadasterV2Verzoek createKadasterV2Verzoek() { - return new KadasterV2Verzoek(); - } - - /** - * Create an instance of {@link KadasterGerelateerdStukdeel } - * - */ - public KadasterGerelateerdStukdeel createKadasterGerelateerdStukdeel() { - return new KadasterGerelateerdStukdeel(); - } - - /** - * Create an instance of {@link CompliancePersonReferenceArray } - * - */ - public CompliancePersonReferenceArray createCompliancePersonReferenceArray() { - return new CompliancePersonReferenceArray(); - } - - /** - * Create an instance of {@link CreditsafeSearchCriteriaCombinationArray } - * - */ - public CreditsafeSearchCriteriaCombinationArray createCreditsafeSearchCriteriaCombinationArray() { - return new CreditsafeSearchCriteriaCombinationArray(); - } - - /** - * Create an instance of {@link DutchBusinessUBOClassifiedPerson } - * - */ - public DutchBusinessUBOClassifiedPerson createDutchBusinessUBOClassifiedPerson() { - return new DutchBusinessUBOClassifiedPerson(); - } - - /** - * Create an instance of {@link KadasterV2AantekeningArray } - * - */ - public KadasterV2AantekeningArray createKadasterV2AantekeningArray() { - return new KadasterV2AantekeningArray(); - } - - /** - * Create an instance of {@link DNBScoreGroup } - * - */ - public DNBScoreGroup createDNBScoreGroup() { - return new DNBScoreGroup(); - } - - /** - * Create an instance of {@link DutchVehicleTechnicalWeight } - * - */ - public DutchVehicleTechnicalWeight createDutchVehicleTechnicalWeight() { - return new DutchVehicleTechnicalWeight(); - } - - /** - * Create an instance of {@link DNBScoreGroupArray } - * - */ - public DNBScoreGroupArray createDNBScoreGroupArray() { - return new DNBScoreGroupArray(); - } - - /** - * Create an instance of {@link BelgianBusinessDatedItemArray } - * - */ - public BelgianBusinessDatedItemArray createBelgianBusinessDatedItemArray() { - return new BelgianBusinessDatedItemArray(); - } - - /** - * Create an instance of {@link NbwoVorigeVerkoopModelResultaat } - * - */ - public NbwoVorigeVerkoopModelResultaat createNbwoVorigeVerkoopModelResultaat() { - return new NbwoVorigeVerkoopModelResultaat(); - } - - /** - * Create an instance of {@link SessionPagedResult } - * - */ - public SessionPagedResult createSessionPagedResult() { - return new SessionPagedResult(); - } - - /** - * Create an instance of {@link KadasterV2Coordinaat } - * - */ - public KadasterV2Coordinaat createKadasterV2Coordinaat() { - return new KadasterV2Coordinaat(); - } - - /** - * Create an instance of {@link OverzichtPersoonV2 } - * - */ - public OverzichtPersoonV2 createOverzichtPersoonV2() { - return new OverzichtPersoonV2(); - } - - /** - * Create an instance of {@link KadasterV2NatuurlijkPersoon } - * - */ - public KadasterV2NatuurlijkPersoon createKadasterV2NatuurlijkPersoon() { - return new KadasterV2NatuurlijkPersoon(); - } - - /** - * Create an instance of {@link DutchBusinessUBOClassifiedSuspect } - * - */ - public DutchBusinessUBOClassifiedSuspect createDutchBusinessUBOClassifiedSuspect() { - return new DutchBusinessUBOClassifiedSuspect(); - } - - /** - * Create an instance of {@link KadasterV2OnroerendeZaak } - * - */ - public KadasterV2OnroerendeZaak createKadasterV2OnroerendeZaak() { - return new KadasterV2OnroerendeZaak(); - } - - /** - * Create an instance of {@link KadasterOverzichtOnroerendeZaakArray } - * - */ - public KadasterOverzichtOnroerendeZaakArray createKadasterOverzichtOnroerendeZaakArray() { - return new KadasterOverzichtOnroerendeZaakArray(); - } - - /** - * Create an instance of {@link BusinessBIKSectionArray } - * - */ - public BusinessBIKSectionArray createBusinessBIKSectionArray() { - return new BusinessBIKSectionArray(); - } - - /** - * Create an instance of {@link DutchBusinessPersonV3 } - * - */ - public DutchBusinessPersonV3 createDutchBusinessPersonV3() { - return new DutchBusinessPersonV3(); - } - - /** - * Create an instance of {@link KadasterDomicilieKeuze } - * - */ - public KadasterDomicilieKeuze createKadasterDomicilieKeuze() { - return new KadasterDomicilieKeuze(); - } - - /** - * Create an instance of {@link DutchBusinessPersonV2 } - * - */ - public DutchBusinessPersonV2 createDutchBusinessPersonV2() { - return new DutchBusinessPersonV2(); - } - - /** - * Create an instance of {@link BelgianBusinessCompany } - * - */ - public BelgianBusinessCompany createBelgianBusinessCompany() { - return new BelgianBusinessCompany(); - } - - /** - * Create an instance of {@link KadasterStukdeelReferentiesLijst } - * - */ - public KadasterStukdeelReferentiesLijst createKadasterStukdeelReferentiesLijst() { - return new KadasterStukdeelReferentiesLijst(); - } - - /** - * Create an instance of {@link KadasterV2JaarlijksBedragArray } - * - */ - public KadasterV2JaarlijksBedragArray createKadasterV2JaarlijksBedragArray() { - return new KadasterV2JaarlijksBedragArray(); - } - - /** - * Create an instance of {@link GCRLiaison } - * - */ - public GCRLiaison createGCRLiaison() { - return new GCRLiaison(); - } - - /** - * Create an instance of {@link OverzichtRecht } - * - */ - public OverzichtRecht createOverzichtRecht() { - return new OverzichtRecht(); - } - - /** - * Create an instance of {@link BusinessDossierV2PagedResult } - * - */ - public BusinessDossierV2PagedResult createBusinessDossierV2PagedResult() { - return new BusinessDossierV2PagedResult(); - } - - /** - * Create an instance of {@link KadasterV2Hypotheek } - * - */ - public KadasterV2Hypotheek createKadasterV2Hypotheek() { - return new KadasterV2Hypotheek(); - } - - /** - * Create an instance of {@link UserV2 } - * - */ - public UserV2 createUserV2() { - return new UserV2(); - } - - /** - * Create an instance of {@link DutchBusinessUBOClassifiedSuspectArray } - * - */ - public DutchBusinessUBOClassifiedSuspectArray createDutchBusinessUBOClassifiedSuspectArray() { - return new DutchBusinessUBOClassifiedSuspectArray(); - } - - /** - * Create an instance of {@link KadasterV2Historie } - * - */ - public KadasterV2Historie createKadasterV2Historie() { - return new KadasterV2Historie(); - } - - /** - * Create an instance of {@link CarATDValuation } - * - */ - public CarATDValuation createCarATDValuation() { - return new CarATDValuation(); - } - - /** - * Create an instance of {@link GCRContactDetails } - * - */ - public GCRContactDetails createGCRContactDetails() { - return new GCRContactDetails(); - } - - /** - * Create an instance of {@link CarOptions } - * - */ - public CarOptions createCarOptions() { - return new CarOptions(); - } - - /** - * Create an instance of {@link DutchBusinessSBICode } - * - */ - public DutchBusinessSBICode createDutchBusinessSBICode() { - return new DutchBusinessSBICode(); - } - - /** - * Create an instance of {@link CreditsafeCompanyReportFullV2Array } - * - */ - public CreditsafeCompanyReportFullV2Array createCreditsafeCompanyReportFullV2Array() { - return new CreditsafeCompanyReportFullV2Array(); - } - - /** - * Create an instance of {@link DutchBusinessAdditionalPositionFunctionary } - * - */ - public DutchBusinessAdditionalPositionFunctionary createDutchBusinessAdditionalPositionFunctionary() { - return new DutchBusinessAdditionalPositionFunctionary(); - } - - /** - * Create an instance of {@link BerichtObjectResultaatV2 } - * - */ - public BerichtObjectResultaatV2 createBerichtObjectResultaatV2() { - return new BerichtObjectResultaatV2(); - } - - /** - * Create an instance of {@link SortedPostcodeArray } - * - */ - public SortedPostcodeArray createSortedPostcodeArray() { - return new SortedPostcodeArray(); - } - - /** - * Create an instance of {@link LocatieBinnenland } - * - */ - public LocatieBinnenland createLocatieBinnenland() { - return new LocatieBinnenland(); - } - - /** - * Create an instance of {@link DutchBusinessAnnualFinancialStatementSummary } - * - */ - public DutchBusinessAnnualFinancialStatementSummary createDutchBusinessAnnualFinancialStatementSummary() { - return new DutchBusinessAnnualFinancialStatementSummary(); - } - - /** - * Create an instance of {@link CreditsafePersonDirectorsV2 } - * - */ - public CreditsafePersonDirectorsV2 createCreditsafePersonDirectorsV2() { - return new CreditsafePersonDirectorsV2(); - } - - /** - * Create an instance of {@link DutchBusinessDateV2 } - * - */ - public DutchBusinessDateV2 createDutchBusinessDateV2() { - return new DutchBusinessDateV2(); - } - - /** - * Create an instance of {@link CreditsafeCompanyPaymentDataV2Array } - * - */ - public CreditsafeCompanyPaymentDataV2Array createCreditsafeCompanyPaymentDataV2Array() { - return new CreditsafeCompanyPaymentDataV2Array(); - } - - /** - * Create an instance of {@link DutchBusinessDateV3 } - * - */ - public DutchBusinessDateV3 createDutchBusinessDateV3() { - return new DutchBusinessDateV3(); - } - - /** - * Create an instance of {@link DutchVehicleOwnershipArray } - * - */ - public DutchVehicleOwnershipArray createDutchVehicleOwnershipArray() { - return new DutchVehicleOwnershipArray(); - } - - /** - * Create an instance of {@link GraydonCreditReport } - * - */ - public GraydonCreditReport createGraydonCreditReport() { - return new GraydonCreditReport(); - } - - /** - * Create an instance of {@link UittrekselKadastraleKaart } - * - */ - public UittrekselKadastraleKaart createUittrekselKadastraleKaart() { - return new UittrekselKadastraleKaart(); - } - - /** - * Create an instance of {@link CarVWEBrandArray } - * - */ - public CarVWEBrandArray createCarVWEBrandArray() { - return new CarVWEBrandArray(); - } - - /** - * Create an instance of {@link KadasterV2HypothecairBerichtResponse } - * - */ - public KadasterV2HypothecairBerichtResponse createKadasterV2HypothecairBerichtResponse() { - return new KadasterV2HypothecairBerichtResponse(); - } - - /** - * Create an instance of {@link DutchBusinessOrganizationTree } - * - */ - public DutchBusinessOrganizationTree createDutchBusinessOrganizationTree() { - return new DutchBusinessOrganizationTree(); - } - - /** - * Create an instance of {@link InsolvencyPublications } - * - */ - public InsolvencyPublications createInsolvencyPublications() { - return new InsolvencyPublications(); - } - - /** - * Create an instance of {@link Neighborhood } - * - */ - public Neighborhood createNeighborhood() { - return new Neighborhood(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationCommentV2 } - * - */ - public CreditsafeCompanyAdditionalInformationCommentV2 createCreditsafeCompanyAdditionalInformationCommentV2() { - return new CreditsafeCompanyAdditionalInformationCommentV2(); - } - - /** - * Create an instance of {@link KadasterV2GezamenlijkAandeel } - * - */ - public KadasterV2GezamenlijkAandeel createKadasterV2GezamenlijkAandeel() { - return new KadasterV2GezamenlijkAandeel(); - } - - /** - * Create an instance of {@link KadasterV2HypotheekArray } - * - */ - public KadasterV2HypotheekArray createKadasterV2HypotheekArray() { - return new KadasterV2HypotheekArray(); - } - - /** - * Create an instance of {@link GeoLocationInternationalAddress } - * - */ - public GeoLocationInternationalAddress createGeoLocationInternationalAddress() { - return new GeoLocationInternationalAddress(); - } - - /** - * Create an instance of {@link RouteCoordinates } - * - */ - public RouteCoordinates createRouteCoordinates() { - return new RouteCoordinates(); - } - - /** - * Create an instance of {@link GraydonCreditReportCalamity } - * - */ - public GraydonCreditReportCalamity createGraydonCreditReportCalamity() { - return new GraydonCreditReportCalamity(); - } - - /** - * Create an instance of {@link CreditsafeCompanyBalanceSheetV2Array } - * - */ - public CreditsafeCompanyBalanceSheetV2Array createCreditsafeCompanyBalanceSheetV2Array() { - return new CreditsafeCompanyBalanceSheetV2Array(); - } - - /** - * Create an instance of {@link DutchBusinessExtractHistory } - * - */ - public DutchBusinessExtractHistory createDutchBusinessExtractHistory() { - return new DutchBusinessExtractHistory(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdvisorV2 } - * - */ - public CreditsafeCompanyAdvisorV2 createCreditsafeCompanyAdvisorV2() { - return new CreditsafeCompanyAdvisorV2(); - } - - /** - * Create an instance of {@link RoutePart } - * - */ - public RoutePart createRoutePart() { - return new RoutePart(); - } - - /** - * Create an instance of {@link CarVWEPhotoArray } - * - */ - public CarVWEPhotoArray createCarVWEPhotoArray() { - return new CarVWEPhotoArray(); - } - - /** - * Create an instance of {@link KadasterPersoonArray } - * - */ - public KadasterPersoonArray createKadasterPersoonArray() { - return new KadasterPersoonArray(); - } - - /** - * Create an instance of {@link AccountCreationToken } - * - */ - public AccountCreationToken createAccountCreationToken() { - return new AccountCreationToken(); - } - - /** - * Create an instance of {@link CreditsafeCompanyActivityV2Array } - * - */ - public CreditsafeCompanyActivityV2Array createCreditsafeCompanyActivityV2Array() { - return new CreditsafeCompanyActivityV2Array(); - } - - /** - * Create an instance of {@link GCRTelephoneNumberArray } - * - */ - public GCRTelephoneNumberArray createGCRTelephoneNumberArray() { - return new GCRTelephoneNumberArray(); - } - - /** - * Create an instance of {@link GCRCompanySimple } - * - */ - public GCRCompanySimple createGCRCompanySimple() { - return new GCRCompanySimple(); - } - - /** - * Create an instance of {@link CreditsafeAddressV2 } - * - */ - public CreditsafeAddressV2 createCreditsafeAddressV2() { - return new CreditsafeAddressV2(); - } - - /** - * Create an instance of {@link Stuk } - * - */ - public Stuk createStuk() { - return new Stuk(); - } - - /** - * Create an instance of {@link CreditsafeQuartiles } - * - */ - public CreditsafeQuartiles createCreditsafeQuartiles() { - return new CreditsafeQuartiles(); - } - - /** - * Create an instance of {@link LatLonCoordinatesInternationalAddress } - * - */ - public LatLonCoordinatesInternationalAddress createLatLonCoordinatesInternationalAddress() { - return new LatLonCoordinatesInternationalAddress(); - } - - /** - * Create an instance of {@link KadasterLocatieBinnenland } - * - */ - public KadasterLocatieBinnenland createKadasterLocatieBinnenland() { - return new KadasterLocatieBinnenland(); - } - - /** - * Create an instance of {@link GCRTitleArray } - * - */ - public GCRTitleArray createGCRTitleArray() { - return new GCRTitleArray(); - } - - /** - * Create an instance of {@link DNBMarketingPlusResult } - * - */ - public DNBMarketingPlusResult createDNBMarketingPlusResult() { - return new DNBMarketingPlusResult(); - } - - /** - * Create an instance of {@link DNBBusinessReferenceArray } - * - */ - public DNBBusinessReferenceArray createDNBBusinessReferenceArray() { - return new DNBBusinessReferenceArray(); - } - - /** - * Create an instance of {@link GCRJobTitleArray } - * - */ - public GCRJobTitleArray createGCRJobTitleArray() { - return new GCRJobTitleArray(); - } - - /** - * Create an instance of {@link OverzichtOnroerendeZaakArray } - * - */ - public OverzichtOnroerendeZaakArray createOverzichtOnroerendeZaakArray() { - return new OverzichtOnroerendeZaakArray(); - } - - /** - * Create an instance of {@link NbwoWaarde } - * - */ - public NbwoWaarde createNbwoWaarde() { - return new NbwoWaarde(); - } - - /** - * Create an instance of {@link CreditsafeShareHolderArray } - * - */ - public CreditsafeShareHolderArray createCreditsafeShareHolderArray() { - return new CreditsafeShareHolderArray(); - } - - /** - * Create an instance of {@link CreditsafeCompanyBasicInformationV2 } - * - */ - public CreditsafeCompanyBasicInformationV2 createCreditsafeCompanyBasicInformationV2() { - return new CreditsafeCompanyBasicInformationV2(); - } - - /** - * Create an instance of {@link DutchBusinessEstablishmentV2Array } - * - */ - public DutchBusinessEstablishmentV2Array createDutchBusinessEstablishmentV2Array() { - return new DutchBusinessEstablishmentV2Array(); - } - - /** - * Create an instance of {@link GCRCapital } - * - */ - public GCRCapital createGCRCapital() { - return new GCRCapital(); - } - - /** - * Create an instance of {@link CreditsafeEmployeeInformation } - * - */ - public CreditsafeEmployeeInformation createCreditsafeEmployeeInformation() { - return new CreditsafeEmployeeInformation(); - } - - /** - * Create an instance of {@link DutchBusinessLeiBusinessEntity } - * - */ - public DutchBusinessLeiBusinessEntity createDutchBusinessLeiBusinessEntity() { - return new DutchBusinessLeiBusinessEntity(); - } - - /** - * Create an instance of {@link CreditsafeCompanyActivityArray } - * - */ - public CreditsafeCompanyActivityArray createCreditsafeCompanyActivityArray() { - return new CreditsafeCompanyActivityArray(); - } - - /** - * Create an instance of {@link GCRShareHolderArray } - * - */ - public GCRShareHolderArray createGCRShareHolderArray() { - return new GCRShareHolderArray(); - } - - /** - * Create an instance of {@link BusinessReference } - * - */ - public BusinessReference createBusinessReference() { - return new BusinessReference(); - } - - /** - * Create an instance of {@link CreditsafeNlMisc } - * - */ - public CreditsafeNlMisc createCreditsafeNlMisc() { - return new CreditsafeNlMisc(); - } - - /** - * Create an instance of {@link OverzichtOnroerendeZaak } - * - */ - public OverzichtOnroerendeZaak createOverzichtOnroerendeZaak() { - return new OverzichtOnroerendeZaak(); - } - - /** - * Create an instance of {@link DNBMonetaryAmount } - * - */ - public DNBMonetaryAmount createDNBMonetaryAmount() { - return new DNBMonetaryAmount(); - } - - /** - * Create an instance of {@link RiskInsolvency } - * - */ - public RiskInsolvency createRiskInsolvency() { - return new RiskInsolvency(); - } - - /** - * Create an instance of {@link KadasterV2Aanvulling } - * - */ - public KadasterV2Aanvulling createKadasterV2Aanvulling() { - return new KadasterV2Aanvulling(); - } - - /** - * Create an instance of {@link CreditsafeCompanyBasicInformationV2Array } - * - */ - public CreditsafeCompanyBasicInformationV2Array createCreditsafeCompanyBasicInformationV2Array() { - return new CreditsafeCompanyBasicInformationV2Array(); - } - - /** - * Create an instance of {@link GCRManagement } - * - */ - public GCRManagement createGCRManagement() { - return new GCRManagement(); - } - - /** - * Create an instance of {@link CreditsafeCompanyNegativeInformationDETrusteeV2 } - * - */ - public CreditsafeCompanyNegativeInformationDETrusteeV2 createCreditsafeCompanyNegativeInformationDETrusteeV2() { - return new CreditsafeCompanyNegativeInformationDETrusteeV2(); - } - - /** - * Create an instance of {@link KadasterV2KoopsomGegeven } - * - */ - public KadasterV2KoopsomGegeven createKadasterV2KoopsomGegeven() { - return new KadasterV2KoopsomGegeven(); - } - - /** - * Create an instance of {@link RDCoordinatesArray } - * - */ - public RDCoordinatesArray createRDCoordinatesArray() { - return new RDCoordinatesArray(); - } - - /** - * Create an instance of {@link DNBBusinessReferencePagedResult } - * - */ - public DNBBusinessReferencePagedResult createDNBBusinessReferencePagedResult() { - return new DNBBusinessReferencePagedResult(); - } - - /** - * Create an instance of {@link KvkReferencePagedResult } - * - */ - public KvkReferencePagedResult createKvkReferencePagedResult() { - return new KvkReferencePagedResult(); - } - - /** - * Create an instance of {@link KadasterV2OnroerendeZaakFiliatie } - * - */ - public KadasterV2OnroerendeZaakFiliatie createKadasterV2OnroerendeZaakFiliatie() { - return new KadasterV2OnroerendeZaakFiliatie(); - } - - /** - * Create an instance of {@link Persoon } - * - */ - public Persoon createPersoon() { - return new Persoon(); - } - - /** - * Create an instance of {@link CarVWEVersion } - * - */ - public CarVWEVersion createCarVWEVersion() { - return new CarVWEVersion(); - } - - /** - * Create an instance of {@link CreditsafeBeProtestedBill } - * - */ - public CreditsafeBeProtestedBill createCreditsafeBeProtestedBill() { - return new CreditsafeBeProtestedBill(); - } - - /** - * Create an instance of {@link GCRFoundedArray } - * - */ - public GCRFoundedArray createGCRFoundedArray() { - return new GCRFoundedArray(); - } - - /** - * Create an instance of {@link Overzicht } - * - */ - public Overzicht createOverzicht() { - return new Overzicht(); - } - - /** - * Create an instance of {@link AccountV2PagedResult } - * - */ - public AccountV2PagedResult createAccountV2PagedResult() { - return new AccountV2PagedResult(); - } - - /** - * Create an instance of {@link KadasterOverzichtOnroerendeZaak } - * - */ - public KadasterOverzichtOnroerendeZaak createKadasterOverzichtOnroerendeZaak() { - return new KadasterOverzichtOnroerendeZaak(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationV2 } - * - */ - public CreditsafeCompanyAdditionalInformationV2 createCreditsafeCompanyAdditionalInformationV2() { - return new CreditsafeCompanyAdditionalInformationV2(); - } - - /** - * Create an instance of {@link GCRCalamityOther } - * - */ - public GCRCalamityOther createGCRCalamityOther() { - return new GCRCalamityOther(); - } - - /** - * Create an instance of {@link ComplianceBusinessSearchReference } - * - */ - public ComplianceBusinessSearchReference createComplianceBusinessSearchReference() { - return new ComplianceBusinessSearchReference(); - } - - /** - * Create an instance of {@link CreditsafeCompanyIdentificationV2 } - * - */ - public CreditsafeCompanyIdentificationV2 createCreditsafeCompanyIdentificationV2() { - return new CreditsafeCompanyIdentificationV2(); - } - - /** - * Create an instance of {@link DutchBusinessSBICodeArray } - * - */ - public DutchBusinessSBICodeArray createDutchBusinessSBICodeArray() { - return new DutchBusinessSBICodeArray(); - } - - /** - * Create an instance of {@link DutchBusinessUBOInvestigationStatus } - * - */ - public DutchBusinessUBOInvestigationStatus createDutchBusinessUBOInvestigationStatus() { - return new DutchBusinessUBOInvestigationStatus(); - } - - /** - * Create an instance of {@link BusinessDossierPagedResult } - * - */ - public BusinessDossierPagedResult createBusinessDossierPagedResult() { - return new BusinessDossierPagedResult(); - } - - /** - * Create an instance of {@link GCRLiaisonArray } - * - */ - public GCRLiaisonArray createGCRLiaisonArray() { - return new GCRLiaisonArray(); - } - - /** - * Create an instance of {@link OverzichtNietNatuurlijkPersoon } - * - */ - public OverzichtNietNatuurlijkPersoon createOverzichtNietNatuurlijkPersoon() { - return new OverzichtNietNatuurlijkPersoon(); - } - - /** - * Create an instance of {@link KadasterV2RedenVerzoek } - * - */ - public KadasterV2RedenVerzoek createKadasterV2RedenVerzoek() { - return new KadasterV2RedenVerzoek(); - } - - /** - * Create an instance of {@link City } - * - */ - public City createCity() { - return new City(); - } - - /** - * Create an instance of {@link UserV2PagedResult } - * - */ - public UserV2PagedResult createUserV2PagedResult() { - return new UserV2PagedResult(); - } - - /** - * Create an instance of {@link CreditsafeCompanyFinancialStatementV2Array } - * - */ - public CreditsafeCompanyFinancialStatementV2Array createCreditsafeCompanyFinancialStatementV2Array() { - return new CreditsafeCompanyFinancialStatementV2Array(); - } - - /** - * Create an instance of {@link SepaBankAccountData } - * - */ - public SepaBankAccountData createSepaBankAccountData() { - return new SepaBankAccountData(); - } - - /** - * Create an instance of {@link CarVWEPrices } - * - */ - public CarVWEPrices createCarVWEPrices() { - return new CarVWEPrices(); - } - - /** - * Create an instance of {@link MetaValidationDefinition } - * - */ - public MetaValidationDefinition createMetaValidationDefinition() { - return new MetaValidationDefinition(); - } - - /** - * Create an instance of {@link GCRCompanyArray } - * - */ - public GCRCompanyArray createGCRCompanyArray() { - return new GCRCompanyArray(); - } - - /** - * Create an instance of {@link DutchBusinessUBOPerson } - * - */ - public DutchBusinessUBOPerson createDutchBusinessUBOPerson() { - return new DutchBusinessUBOPerson(); - } - - /** - * Create an instance of {@link GCRChamberOfCommerce } - * - */ - public GCRChamberOfCommerce createGCRChamberOfCommerce() { - return new GCRChamberOfCommerce(); - } - - /** - * Create an instance of {@link DNBEnterpriseManagement } - * - */ - public DNBEnterpriseManagement createDNBEnterpriseManagement() { - return new DNBEnterpriseManagement(); - } - - /** - * Create an instance of {@link BusinessDossierSBI } - * - */ - public BusinessDossierSBI createBusinessDossierSBI() { - return new BusinessDossierSBI(); - } - - /** - * Create an instance of {@link DutchBusinessExtractDocumentDataV2 } - * - */ - public DutchBusinessExtractDocumentDataV2 createDutchBusinessExtractDocumentDataV2() { - return new DutchBusinessExtractDocumentDataV2(); - } - - /** - * Create an instance of {@link DutchBusinessIdentifiers } - * - */ - public DutchBusinessIdentifiers createDutchBusinessIdentifiers() { - return new DutchBusinessIdentifiers(); - } - - /** - * Create an instance of {@link DutchBusinessExtractDocumentDataV3 } - * - */ - public DutchBusinessExtractDocumentDataV3 createDutchBusinessExtractDocumentDataV3() { - return new DutchBusinessExtractDocumentDataV3(); - } - - /** - * Create an instance of {@link DutchBusinessLeiAddress } - * - */ - public DutchBusinessLeiAddress createDutchBusinessLeiAddress() { - return new DutchBusinessLeiAddress(); - } - - /** - * Create an instance of {@link DutchBusinessLegalEntity } - * - */ - public DutchBusinessLegalEntity createDutchBusinessLegalEntity() { - return new DutchBusinessLegalEntity(); - } - - /** - * Create an instance of {@link KadasterV2OnroerendeZaakReferenceArray } - * - */ - public KadasterV2OnroerendeZaakReferenceArray createKadasterV2OnroerendeZaakReferenceArray() { - return new KadasterV2OnroerendeZaakReferenceArray(); - } - - /** - * Create an instance of {@link ComplianceDate } - * - */ - public ComplianceDate createComplianceDate() { - return new ComplianceDate(); - } - - /** - * Create an instance of {@link GCRCompanyAnnualAccountArray } - * - */ - public GCRCompanyAnnualAccountArray createGCRCompanyAnnualAccountArray() { - return new GCRCompanyAnnualAccountArray(); - } - - /** - * Create an instance of {@link GraydonCreditReportQuickscan } - * - */ - public GraydonCreditReportQuickscan createGraydonCreditReportQuickscan() { - return new GraydonCreditReportQuickscan(); - } - - /** - * Create an instance of {@link CreditsafeCompanyPagedResult } - * - */ - public CreditsafeCompanyPagedResult createCreditsafeCompanyPagedResult() { - return new CreditsafeCompanyPagedResult(); - } - - /** - * Create an instance of {@link UserCredentials } - * - */ - public UserCredentials createUserCredentials() { - return new UserCredentials(); - } - - /** - * Create an instance of {@link BerichtObjectDocumentResultaat } - * - */ - public BerichtObjectDocumentResultaat createBerichtObjectDocumentResultaat() { - return new BerichtObjectDocumentResultaat(); - } - - /** - * Create an instance of {@link DNBBusinessReferenceV2PagedResult } - * - */ - public DNBBusinessReferenceV2PagedResult createDNBBusinessReferenceV2PagedResult() { - return new DNBBusinessReferenceV2PagedResult(); - } - - /** - * Create an instance of {@link CreditsafeCompanyOtherInformationV2 } - * - */ - public CreditsafeCompanyOtherInformationV2 createCreditsafeCompanyOtherInformationV2() { - return new CreditsafeCompanyOtherInformationV2(); - } - - /** - * Create an instance of {@link CreditsafePreviousDirector } - * - */ - public CreditsafePreviousDirector createCreditsafePreviousDirector() { - return new CreditsafePreviousDirector(); - } - - /** - * Create an instance of {@link PersoonV2 } - * - */ - public PersoonV2 createPersoonV2() { - return new PersoonV2(); - } - - /** - * Create an instance of {@link AantekeningenKadastraalObject } - * - */ - public AantekeningenKadastraalObject createAantekeningenKadastraalObject() { - return new AantekeningenKadastraalObject(); - } - - /** - * Create an instance of {@link InsolvencyAffectedCompanyArray } - * - */ - public InsolvencyAffectedCompanyArray createInsolvencyAffectedCompanyArray() { - return new InsolvencyAffectedCompanyArray(); - } - - /** - * Create an instance of {@link CreditsafeCompanyBankerV2 } - * - */ - public CreditsafeCompanyBankerV2 createCreditsafeCompanyBankerV2() { - return new CreditsafeCompanyBankerV2(); - } - - /** - * Create an instance of {@link BusinessDossierV3 } - * - */ - public BusinessDossierV3 createBusinessDossierV3() { - return new BusinessDossierV3(); - } - - /** - * Create an instance of {@link CreditsafeOtherFinancials } - * - */ - public CreditsafeOtherFinancials createCreditsafeOtherFinancials() { - return new CreditsafeOtherFinancials(); - } - - /** - * Create an instance of {@link BusinessDossierV2 } - * - */ - public BusinessDossierV2 createBusinessDossierV2() { - return new BusinessDossierV2(); - } - - /** - * Create an instance of {@link CreditsafeNlCourtDataFacts } - * - */ - public CreditsafeNlCourtDataFacts createCreditsafeNlCourtDataFacts() { - return new CreditsafeNlCourtDataFacts(); - } - - /** - * Create an instance of {@link KadasterV2NatuurlijkPersoonArray } - * - */ - public KadasterV2NatuurlijkPersoonArray createKadasterV2NatuurlijkPersoonArray() { - return new KadasterV2NatuurlijkPersoonArray(); - } - - /** - * Create an instance of {@link DutchVehicleRecall } - * - */ - public DutchVehicleRecall createDutchVehicleRecall() { - return new DutchVehicleRecall(); - } - - /** - * Create an instance of {@link KadasterV2LandinrichtingsRente } - * - */ - public KadasterV2LandinrichtingsRente createKadasterV2LandinrichtingsRente() { - return new KadasterV2LandinrichtingsRente(); - } - - /** - * Create an instance of {@link GCRJobTitle } - * - */ - public GCRJobTitle createGCRJobTitle() { - return new GCRJobTitle(); - } - - /** - * Create an instance of {@link DutchVehiclePurchaseReference } - * - */ - public DutchVehiclePurchaseReference createDutchVehiclePurchaseReference() { - return new DutchVehiclePurchaseReference(); - } - - /** - * Create an instance of {@link MetaMethodReferenceArray } - * - */ - public MetaMethodReferenceArray createMetaMethodReferenceArray() { - return new MetaMethodReferenceArray(); - } - - /** - * Create an instance of {@link DutchBusinessUBOOrganizationNode } - * - */ - public DutchBusinessUBOOrganizationNode createDutchBusinessUBOOrganizationNode() { - return new DutchBusinessUBOOrganizationNode(); - } - - /** - * Create an instance of {@link GCRNumberOfEmployeesArray } - * - */ - public GCRNumberOfEmployeesArray createGCRNumberOfEmployeesArray() { - return new GCRNumberOfEmployeesArray(); - } - - /** - * Create an instance of {@link KadasterV2KoopsomGegevenArray } - * - */ - public KadasterV2KoopsomGegevenArray createKadasterV2KoopsomGegevenArray() { - return new KadasterV2KoopsomGegevenArray(); - } - - /** - * Create an instance of {@link KadastraleAanduidingArray } - * - */ - public KadastraleAanduidingArray createKadastraleAanduidingArray() { - return new KadastraleAanduidingArray(); - } - - /** - * Create an instance of {@link GCRCompanySimpleArray } - * - */ - public GCRCompanySimpleArray createGCRCompanySimpleArray() { - return new GCRCompanySimpleArray(); - } - - /** - * Create an instance of {@link GCRPaymentInformationArray } - * - */ - public GCRPaymentInformationArray createGCRPaymentInformationArray() { - return new GCRPaymentInformationArray(); - } - - /** - * Create an instance of {@link GCRShareHolder } - * - */ - public GCRShareHolder createGCRShareHolder() { - return new GCRShareHolder(); - } - - /** - * Create an instance of {@link KadasterLocatieBuitenland } - * - */ - public KadasterLocatieBuitenland createKadasterLocatieBuitenland() { - return new KadasterLocatieBuitenland(); - } - - /** - * Create an instance of {@link DutchVehicleBodyApproval } - * - */ - public DutchVehicleBodyApproval createDutchVehicleBodyApproval() { - return new DutchVehicleBodyApproval(); - } - - /** - * Create an instance of {@link CreditsafeCompanyCreditRatingV2 } - * - */ - public CreditsafeCompanyCreditRatingV2 createCreditsafeCompanyCreditRatingV2() { - return new CreditsafeCompanyCreditRatingV2(); - } - - /** - * Create an instance of {@link CreditsafeBankerArray } - * - */ - public CreditsafeBankerArray createCreditsafeBankerArray() { - return new CreditsafeBankerArray(); - } - - /** - * Create an instance of {@link CarDataV3Result } - * - */ - public CarDataV3Result createCarDataV3Result() { - return new CarDataV3Result(); - } - - /** - * Create an instance of {@link GCRRatingHistory } - * - */ - public GCRRatingHistory createGCRRatingHistory() { - return new GCRRatingHistory(); - } - - /** - * Create an instance of {@link BusinessDossierV3PagedResult } - * - */ - public BusinessDossierV3PagedResult createBusinessDossierV3PagedResult() { - return new BusinessDossierV3PagedResult(); - } - - /** - * Create an instance of {@link KvkUpdateReferenceArray } - * - */ - public KvkUpdateReferenceArray createKvkUpdateReferenceArray() { - return new KvkUpdateReferenceArray(); - } - - /** - * Create an instance of {@link DutchBusinessLeiLegalForm } - * - */ - public DutchBusinessLeiLegalForm createDutchBusinessLeiLegalForm() { - return new DutchBusinessLeiLegalForm(); - } - - /** - * Create an instance of {@link GCRCalamity } - * - */ - public GCRCalamity createGCRCalamity() { - return new GCRCalamity(); - } - - /** - * Create an instance of {@link PersoonArray } - * - */ - public PersoonArray createPersoonArray() { - return new PersoonArray(); - } - - /** - * Create an instance of {@link CreditsafeCompanyCreditRatingV2Array } - * - */ - public CreditsafeCompanyCreditRatingV2Array createCreditsafeCompanyCreditRatingV2Array() { - return new CreditsafeCompanyCreditRatingV2Array(); - } - - /** - * Create an instance of {@link CreditsafeCompanyContactInformationV2Array } - * - */ - public CreditsafeCompanyContactInformationV2Array createCreditsafeCompanyContactInformationV2Array() { - return new CreditsafeCompanyContactInformationV2Array(); - } - - /** - * Create an instance of {@link RangeAddressPagedResult } - * - */ - public RangeAddressPagedResult createRangeAddressPagedResult() { - return new RangeAddressPagedResult(); - } - - /** - * Create an instance of {@link CreditsafeBeNSSODetailArray } - * - */ - public CreditsafeBeNSSODetailArray createCreditsafeBeNSSODetailArray() { - return new CreditsafeBeNSSODetailArray(); - } - - /** - * Create an instance of {@link CreditsafeSearchCriteria } - * - */ - public CreditsafeSearchCriteria createCreditsafeSearchCriteria() { - return new CreditsafeSearchCriteria(); - } - - /** - * Create an instance of {@link SessionArray } - * - */ - public SessionArray createSessionArray() { - return new SessionArray(); - } - - /** - * Create an instance of {@link DutchBusinessEstablishmentReferencePagedResult } - * - */ - public DutchBusinessEstablishmentReferencePagedResult createDutchBusinessEstablishmentReferencePagedResult() { - return new DutchBusinessEstablishmentReferencePagedResult(); - } - - /** - * Create an instance of {@link NbwoKenmerkenModelResultaat } - * - */ - public NbwoKenmerkenModelResultaat createNbwoKenmerkenModelResultaat() { - return new NbwoKenmerkenModelResultaat(); - } - - /** - * Create an instance of {@link KadasterHypothecairBerichtObject } - * - */ - public KadasterHypothecairBerichtObject createKadasterHypothecairBerichtObject() { - return new KadasterHypothecairBerichtObject(); - } - - /** - * Create an instance of {@link CarVWEVersionPagedResult } - * - */ - public CarVWEVersionPagedResult createCarVWEVersionPagedResult() { - return new CarVWEVersionPagedResult(); - } - - /** - * Create an instance of {@link DNBMarketingPlus } - * - */ - public DNBMarketingPlus createDNBMarketingPlus() { - return new DNBMarketingPlus(); - } - - /** - * Create an instance of {@link GCRCreditAdviceMother } - * - */ - public GCRCreditAdviceMother createGCRCreditAdviceMother() { - return new GCRCreditAdviceMother(); - } - - /** - * Create an instance of {@link PerceelSearchPartsPagedResult } - * - */ - public PerceelSearchPartsPagedResult createPerceelSearchPartsPagedResult() { - return new PerceelSearchPartsPagedResult(); - } - - /** - * Create an instance of {@link CreditsafeCompanyCompanyV2Array } - * - */ - public CreditsafeCompanyCompanyV2Array createCreditsafeCompanyCompanyV2Array() { - return new CreditsafeCompanyCompanyV2Array(); - } - - /** - * Create an instance of {@link GCRFinancialDetailValue } - * - */ - public GCRFinancialDetailValue createGCRFinancialDetailValue() { - return new GCRFinancialDetailValue(); - } - - /** - * Create an instance of {@link BelgianBusinessLegalRepresentative } - * - */ - public BelgianBusinessLegalRepresentative createBelgianBusinessLegalRepresentative() { - return new BelgianBusinessLegalRepresentative(); - } - - /** - * Create an instance of {@link KadasterPersoonLijst } - * - */ - public KadasterPersoonLijst createKadasterPersoonLijst() { - return new KadasterPersoonLijst(); - } - - /** - * Create an instance of {@link RiskLegalRestraintAdministrator } - * - */ - public RiskLegalRestraintAdministrator createRiskLegalRestraintAdministrator() { - return new RiskLegalRestraintAdministrator(); - } - - /** - * Create an instance of {@link LocatieBuitenland } - * - */ - public LocatieBuitenland createLocatieBuitenland() { - return new LocatieBuitenland(); - } - - /** - * Create an instance of {@link RiskLegalRestraintPerson } - * - */ - public RiskLegalRestraintPerson createRiskLegalRestraintPerson() { - return new RiskLegalRestraintPerson(); - } - - /** - * Create an instance of {@link GCRRatio } - * - */ - public GCRRatio createGCRRatio() { - return new GCRRatio(); - } - - /** - * Create an instance of {@link GCRSpecialCompanyInformation } - * - */ - public GCRSpecialCompanyInformation createGCRSpecialCompanyInformation() { - return new GCRSpecialCompanyInformation(); - } - - /** - * Create an instance of {@link BelgianBusinessDate } - * - */ - public BelgianBusinessDate createBelgianBusinessDate() { - return new BelgianBusinessDate(); - } - - /** - * Create an instance of {@link DutchVehicleEnvironment } - * - */ - public DutchVehicleEnvironment createDutchVehicleEnvironment() { - return new DutchVehicleEnvironment(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array createCreditsafeCompanyAdditionalInformationNLFinancialItemV2Array() { - return new CreditsafeCompanyAdditionalInformationNLFinancialItemV2Array(); - } - - /** - * Create an instance of {@link Account } - * - */ - public Account createAccount() { - return new Account(); - } - - /** - * Create an instance of {@link KadasterLocatie } - * - */ - public KadasterLocatie createKadasterLocatie() { - return new KadasterLocatie(); - } - - /** - * Create an instance of {@link NbwoWaardeVerdelingArray } - * - */ - public NbwoWaardeVerdelingArray createNbwoWaardeVerdelingArray() { - return new NbwoWaardeVerdelingArray(); - } - - /** - * Create an instance of {@link CreditsafeCompanyContactInformationV2 } - * - */ - public CreditsafeCompanyContactInformationV2 createCreditsafeCompanyContactInformationV2() { - return new CreditsafeCompanyContactInformationV2(); - } - - /** - * Create an instance of {@link BerichtObjectDocument } - * - */ - public BerichtObjectDocument createBerichtObjectDocument() { - return new BerichtObjectDocument(); - } - - /** - * Create an instance of {@link GCRImportExport } - * - */ - public GCRImportExport createGCRImportExport() { - return new GCRImportExport(); - } - - /** - * Create an instance of {@link RouteInfo } - * - */ - public RouteInfo createRouteInfo() { - return new RouteInfo(); - } - - /** - * Create an instance of {@link DutchBusinessInsolvencyPublicationArray } - * - */ - public DutchBusinessInsolvencyPublicationArray createDutchBusinessInsolvencyPublicationArray() { - return new DutchBusinessInsolvencyPublicationArray(); - } - - /** - * Create an instance of {@link DutchBusinessUBOPayment } - * - */ - public DutchBusinessUBOPayment createDutchBusinessUBOPayment() { - return new DutchBusinessUBOPayment(); - } - - /** - * Create an instance of {@link CreditsafeCompanyShareHolderV2 } - * - */ - public CreditsafeCompanyShareHolderV2 createCreditsafeCompanyShareHolderV2() { - return new CreditsafeCompanyShareHolderV2(); - } - - /** - * Create an instance of {@link KadasterV2VerzoekArray } - * - */ - public KadasterV2VerzoekArray createKadasterV2VerzoekArray() { - return new KadasterV2VerzoekArray(); - } - - /** - * Create an instance of {@link DutchVehicleReference } - * - */ - public DutchVehicleReference createDutchVehicleReference() { - return new DutchVehicleReference(); - } - - /** - * Create an instance of {@link ComplianceAddressReference } - * - */ - public ComplianceAddressReference createComplianceAddressReference() { - return new ComplianceAddressReference(); - } - - /** - * Create an instance of {@link CreditsafeCompanyFinancialStatementV2 } - * - */ - public CreditsafeCompanyFinancialStatementV2 createCreditsafeCompanyFinancialStatementV2() { - return new CreditsafeCompanyFinancialStatementV2(); - } - - /** - * Create an instance of {@link CreditsafeValueV2Array } - * - */ - public CreditsafeValueV2Array createCreditsafeValueV2Array() { - return new CreditsafeValueV2Array(); - } - - /** - * Create an instance of {@link KadasterV2Mandeligheid } - * - */ - public KadasterV2Mandeligheid createKadasterV2Mandeligheid() { - return new KadasterV2Mandeligheid(); - } - - /** - * Create an instance of {@link DutchBusinessUBOPersonArray } - * - */ - public DutchBusinessUBOPersonArray createDutchBusinessUBOPersonArray() { - return new DutchBusinessUBOPersonArray(); - } - - /** - * Create an instance of {@link DutchBusinessMoneyV3 } - * - */ - public DutchBusinessMoneyV3 createDutchBusinessMoneyV3() { - return new DutchBusinessMoneyV3(); - } - - /** - * Create an instance of {@link DutchBusinessMoneyV2 } - * - */ - public DutchBusinessMoneyV2 createDutchBusinessMoneyV2() { - return new DutchBusinessMoneyV2(); - } - - /** - * Create an instance of {@link DutchBusinessSbiCodeV2Array } - * - */ - public DutchBusinessSbiCodeV2Array createDutchBusinessSbiCodeV2Array() { - return new DutchBusinessSbiCodeV2Array(); - } - - /** - * Create an instance of {@link CreditsafeAddressV2Array } - * - */ - public CreditsafeAddressV2Array createCreditsafeAddressV2Array() { - return new CreditsafeAddressV2Array(); - } - - /** - * Create an instance of {@link CarBody } - * - */ - public CarBody createCarBody() { - return new CarBody(); - } - - /** - * Create an instance of {@link CreditsafeCompanyOtherFinancialsV2 } - * - */ - public CreditsafeCompanyOtherFinancialsV2 createCreditsafeCompanyOtherFinancialsV2() { - return new CreditsafeCompanyOtherFinancialsV2(); - } - - /** - * Create an instance of {@link CreditsafeStreetAddressWithTelephone } - * - */ - public CreditsafeStreetAddressWithTelephone createCreditsafeStreetAddressWithTelephone() { - return new CreditsafeStreetAddressWithTelephone(); - } - - /** - * Create an instance of {@link GCRCreditAdvice } - * - */ - public GCRCreditAdvice createGCRCreditAdvice() { - return new GCRCreditAdvice(); - } - - /** - * Create an instance of {@link InsolvencyAddressArray } - * - */ - public InsolvencyAddressArray createInsolvencyAddressArray() { - return new InsolvencyAddressArray(); - } - - /** - * Create an instance of {@link MetaServiceReferenceArray } - * - */ - public MetaServiceReferenceArray createMetaServiceReferenceArray() { - return new MetaServiceReferenceArray(); - } - - /** - * Create an instance of {@link CreditsafeCompanyShareCapitalStructureV2Array } - * - */ - public CreditsafeCompanyShareCapitalStructureV2Array createCreditsafeCompanyShareCapitalStructureV2Array() { - return new CreditsafeCompanyShareCapitalStructureV2Array(); - } - - /** - * Create an instance of {@link KadastraleAanduidingLijst } - * - */ - public KadastraleAanduidingLijst createKadastraleAanduidingLijst() { - return new KadastraleAanduidingLijst(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array createCreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array() { - return new CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2Array(); - } - - /** - * Create an instance of {@link GCRCalamityOtherArray } - * - */ - public GCRCalamityOtherArray createGCRCalamityOtherArray() { - return new GCRCalamityOtherArray(); - } - - /** - * Create an instance of {@link InsolvencyReport } - * - */ - public InsolvencyReport createInsolvencyReport() { - return new InsolvencyReport(); - } - - /** - * Create an instance of {@link KadasterV2Koopsom } - * - */ - public KadasterV2Koopsom createKadasterV2Koopsom() { - return new KadasterV2Koopsom(); - } - - /** - * Create an instance of {@link BovagMember } - * - */ - public BovagMember createBovagMember() { - return new BovagMember(); - } - - /** - * Create an instance of {@link UserGroupPagedResult } - * - */ - public UserGroupPagedResult createUserGroupPagedResult() { - return new UserGroupPagedResult(); - } - - /** - * Create an instance of {@link BovagDepartmentArray } - * - */ - public BovagDepartmentArray createBovagDepartmentArray() { - return new BovagDepartmentArray(); - } - - /** - * Create an instance of {@link RiskCompany } - * - */ - public RiskCompany createRiskCompany() { - return new RiskCompany(); - } - - /** - * Create an instance of {@link KadasterV2AcgIdentificatie } - * - */ - public KadasterV2AcgIdentificatie createKadasterV2AcgIdentificatie() { - return new KadasterV2AcgIdentificatie(); - } - - /** - * Create an instance of {@link BusinessReferencePagedResult } - * - */ - public BusinessReferencePagedResult createBusinessReferencePagedResult() { - return new BusinessReferencePagedResult(); - } - - /** - * Create an instance of {@link CarVWEModel } - * - */ - public CarVWEModel createCarVWEModel() { - return new CarVWEModel(); - } - - /** - * Create an instance of {@link KadasterOverzichtNatuurlijkPersoon } - * - */ - public KadasterOverzichtNatuurlijkPersoon createKadasterOverzichtNatuurlijkPersoon() { - return new KadasterOverzichtNatuurlijkPersoon(); - } - - /** - * Create an instance of {@link KadasterV2OnroerendeZaakFiliatieArray } - * - */ - public KadasterV2OnroerendeZaakFiliatieArray createKadasterV2OnroerendeZaakFiliatieArray() { - return new KadasterV2OnroerendeZaakFiliatieArray(); - } - - /** - * Create an instance of {@link GCRCompanyManagement } - * - */ - public GCRCompanyManagement createGCRCompanyManagement() { - return new GCRCompanyManagement(); - } - - /** - * Create an instance of {@link CreditsafePersonDirectorsV2Array } - * - */ - public CreditsafePersonDirectorsV2Array createCreditsafePersonDirectorsV2Array() { - return new CreditsafePersonDirectorsV2Array(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 } - * - */ - public CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2 createCreditsafeCompanyAdditionalInformationDEAdditionalInformationV2() { - return new CreditsafeCompanyAdditionalInformationDEAdditionalInformationV2(); - } - - /** - * Create an instance of {@link User } - * - */ - public User createUser() { - return new User(); - } - - /** - * Create an instance of {@link PerceelDetails } - * - */ - public PerceelDetails createPerceelDetails() { - return new PerceelDetails(); - } - - /** - * Create an instance of {@link KadasterV2AangebodenStuk } - * - */ - public KadasterV2AangebodenStuk createKadasterV2AangebodenStuk() { - return new KadasterV2AangebodenStuk(); - } - - /** - * Create an instance of {@link CarVWEOptionPackage } - * - */ - public CarVWEOptionPackage createCarVWEOptionPackage() { - return new CarVWEOptionPackage(); - } - - /** - * Create an instance of {@link GraydonCreditReportCompanyLiaisons } - * - */ - public GraydonCreditReportCompanyLiaisons createGraydonCreditReportCompanyLiaisons() { - return new GraydonCreditReportCompanyLiaisons(); - } - - /** - * Create an instance of {@link KadasterCoordinates } - * - */ - public KadasterCoordinates createKadasterCoordinates() { - return new KadasterCoordinates(); - } - - /** - * Create an instance of {@link CreditsafeCompanyAdditionalInformationDEOwnerV2Array } - * - */ - public CreditsafeCompanyAdditionalInformationDEOwnerV2Array createCreditsafeCompanyAdditionalInformationDEOwnerV2Array() { - return new CreditsafeCompanyAdditionalInformationDEOwnerV2Array(); - } - - /** - * Create an instance of {@link GCRFiling } - * - */ - public GCRFiling createGCRFiling() { - return new GCRFiling(); - } - - /** - * Create an instance of {@link RechtArray } - * - */ - public RechtArray createRechtArray() { - return new RechtArray(); - } - - /** - * Create an instance of {@link KadastraalPerceel } - * - */ - public KadastraalPerceel createKadastraalPerceel() { - return new KadastraalPerceel(); - } - - /** - * Create an instance of {@link GCRBankAndInsurerDataArray } - * - */ - public GCRBankAndInsurerDataArray createGCRBankAndInsurerDataArray() { - return new GCRBankAndInsurerDataArray(); - } - - /** - * Create an instance of {@link GCRCompanyItselfAlarm } - * - */ - public GCRCompanyItselfAlarm createGCRCompanyItselfAlarm() { - return new GCRCompanyItselfAlarm(); - } - - /** - * Create an instance of {@link GraydonCreditReportAlarm } - * - */ - public GraydonCreditReportAlarm createGraydonCreditReportAlarm() { - return new GraydonCreditReportAlarm(); - } - - /** - * Create an instance of {@link GCRParticipationArray } - * - */ - public GCRParticipationArray createGCRParticipationArray() { - return new GCRParticipationArray(); - } - - /** - * Create an instance of {@link CreditsafeLtdCompanyIdentification } - * - */ - public CreditsafeLtdCompanyIdentification createCreditsafeLtdCompanyIdentification() { - return new CreditsafeLtdCompanyIdentification(); - } - - /** - * Create an instance of {@link CreditsafeCompanySummaryV2 } - * - */ - public CreditsafeCompanySummaryV2 createCreditsafeCompanySummaryV2() { - return new CreditsafeCompanySummaryV2(); - } - - /** - * Create an instance of {@link RiskInsolvencyCurator } - * - */ - public RiskInsolvencyCurator createRiskInsolvencyCurator() { - return new RiskInsolvencyCurator(); - } - - /** - * Create an instance of {@link CreditsafeLtdFinancialStatementArray } - * - */ - public CreditsafeLtdFinancialStatementArray createCreditsafeLtdFinancialStatementArray() { - return new CreditsafeLtdFinancialStatementArray(); - } - - /** - * Create an instance of {@link DutchBusinessReferenceArray } - * - */ - public DutchBusinessReferenceArray createDutchBusinessReferenceArray() { - return new DutchBusinessReferenceArray(); - } - - /** - * Create an instance of {@link KadasterV2AdresLocatieArray } - * - */ - public KadasterV2AdresLocatieArray createKadasterV2AdresLocatieArray() { - return new KadasterV2AdresLocatieArray(); - } - - /** - * Create an instance of {@link GCRFirstDirector } - * - */ - public GCRFirstDirector createGCRFirstDirector() { - return new GCRFirstDirector(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeMonitorAddCompanyResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeMonitorAddCompanyResponse") - public JAXBElement createCreditsafeMonitorAddCompanyResponse(CreditsafeMonitorAddCompanyResponseType value) { - return new JAXBElement(_CreditsafeMonitorAddCompanyResponse_QNAME, CreditsafeMonitorAddCompanyResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetLegalExtractDocumentDataV3ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetLegalExtractDocumentDataV3Response") - public JAXBElement createDutchBusinessGetLegalExtractDocumentDataV3Response(DutchBusinessGetLegalExtractDocumentDataV3ResponseType value) { - return new JAXBElement(_DutchBusinessGetLegalExtractDocumentDataV3Response_QNAME, DutchBusinessGetLegalExtractDocumentDataV3ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link NbwoEstimateValueResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "nbwoEstimateValueResponse") - public JAXBElement createNbwoEstimateValueResponse(NbwoEstimateValueResponseType value) { - return new JAXBElement(_NbwoEstimateValueResponse_QNAME, NbwoEstimateValueResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPostcodeResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPostcodeResponse") - public JAXBElement createKadasterUittrekselKadastraleKaartPostcodeResponse(KadasterUittrekselKadastraleKaartPostcodeResponseType value) { - return new JAXBElement(_KadasterUittrekselKadastraleKaartPostcodeResponse_QNAME, KadasterUittrekselKadastraleKaartPostcodeResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPostcodeV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPostcodeV2Response") - public JAXBElement createKadasterUittrekselKadastraleKaartPostcodeV2Response(KadasterUittrekselKadastraleKaartPostcodeV2ResponseType value) { - return new JAXBElement(_KadasterUittrekselKadastraleKaartPostcodeV2Response_QNAME, KadasterUittrekselKadastraleKaartPostcodeV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BovagGetMemberByBovagIdResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "bovagGetMemberByBovagIdResponse") - public JAXBElement createBovagGetMemberByBovagIdResponse(BovagGetMemberByBovagIdResponseType value) { - return new JAXBElement(_BovagGetMemberByBovagIdResponse_QNAME, BovagGetMemberByBovagIdResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataV2") - public JAXBElement createCarRDWCarDataV2(CarRDWCarDataV2RequestType value) { - return new JAXBElement(_CarRDWCarDataV2_QNAME, CarRDWCarDataV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataV3RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataV3") - public JAXBElement createCarRDWCarDataV3(CarRDWCarDataV3RequestType value) { - return new JAXBElement(_CarRDWCarDataV3_QNAME, CarRDWCarDataV3RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetLegalEntityRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetLegalEntity") - public JAXBElement createDutchBusinessGetLegalEntity(DutchBusinessGetLegalEntityRequestType value) { - return new JAXBElement(_DutchBusinessGetLegalEntity_QNAME, DutchBusinessGetLegalEntityRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressProvinceListDistrictsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressProvinceListDistrictsResponse") - public JAXBElement createAddressProvinceListDistrictsResponse(AddressProvinceListDistrictsResponseType value) { - return new JAXBElement(_AddressProvinceListDistrictsResponse_QNAME, AddressProvinceListDistrictsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataResponse") - public JAXBElement createCarRDWCarDataResponse(CarRDWCarDataResponseType value) { - return new JAXBElement(_CarRDWCarDataResponse_QNAME, CarRDWCarDataResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateRemoveDossierRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateRemoveDossier") - public JAXBElement createBusinessUpdateRemoveDossier(BusinessUpdateRemoveDossierRequestType value) { - return new JAXBElement(_BusinessUpdateRemoveDossier_QNAME, BusinessUpdateRemoveDossierRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOPickupInvestigationRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOPickupInvestigation") - public JAXBElement createDutchBusinessUBOPickupInvestigation(DutchBusinessUBOPickupInvestigationRequestType value) { - return new JAXBElement(_DutchBusinessUBOPickupInvestigation_QNAME, DutchBusinessUBOPickupInvestigationRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationLatLonToPostcodeResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationLatLonToPostcodeResponse") - public JAXBElement createGeoLocationLatLonToPostcodeResponse(GeoLocationLatLonToPostcodeResponseType value) { - return new JAXBElement(_GeoLocationLatLonToPostcodeResponse_QNAME, GeoLocationLatLonToPostcodeResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractDocumentDataResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractDocumentDataResponse") - public JAXBElement createDutchBusinessGetExtractDocumentDataResponse(DutchBusinessGetExtractDocumentDataResponseType value) { - return new JAXBElement(_DutchBusinessGetExtractDocumentDataResponse_QNAME, DutchBusinessGetExtractDocumentDataResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetDossierHistoryResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetDossierHistoryResponse") - public JAXBElement createDutchBusinessGetDossierHistoryResponse(DutchBusinessGetDossierHistoryResponseType value) { - return new JAXBElement(_DutchBusinessGetDossierHistoryResponse_QNAME, DutchBusinessGetDossierHistoryResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationPostcodeCoordinatesLatLonResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationPostcodeCoordinatesLatLonResponse") - public JAXBElement createGeoLocationPostcodeCoordinatesLatLonResponse(GeoLocationPostcodeCoordinatesLatLonResponseType value) { - return new JAXBElement(_GeoLocationPostcodeCoordinatesLatLonResponse_QNAME, GeoLocationPostcodeCoordinatesLatLonResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkGetDossierRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkGetDossier") - public JAXBElement createKvkGetDossier(KvkGetDossierRequestType value) { - return new JAXBElement(_KvkGetDossier_QNAME, KvkGetDossierRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SepaConvertBankAccountNumberResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaConvertBankAccountNumberResponse") - public JAXBElement createSepaConvertBankAccountNumberResponse(SepaConvertBankAccountNumberResponseType value) { - return new JAXBElement(_SepaConvertBankAccountNumberResponse_QNAME, SepaConvertBankAccountNumberResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKadastraleKaartPostcodeV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKadastraleKaartPostcodeV2Response") - public JAXBElement createKadasterKadastraleKaartPostcodeV2Response(KadasterKadastraleKaartPostcodeV2ResponseType value) { - return new JAXBElement(_KadasterKadastraleKaartPostcodeV2Response_QNAME, KadasterKadastraleKaartPostcodeV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataBPV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataBPV2Response") - public JAXBElement createCarRDWCarDataBPV2Response(CarRDWCarDataBPV2ResponseType value) { - return new JAXBElement(_CarRDWCarDataBPV2Response_QNAME, CarRDWCarDataBPV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressCityListNeighborhoodsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressCityListNeighborhoodsResponse") - public JAXBElement createAddressCityListNeighborhoodsResponse(AddressCityListNeighborhoodsResponseType value) { - return new JAXBElement(_AddressCityListNeighborhoodsResponse_QNAME, AddressCityListNeighborhoodsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateGetChangedDossiersRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateGetChangedDossiers") - public JAXBElement createKvkUpdateGetChangedDossiers(KvkUpdateGetChangedDossiersRequestType value) { - return new JAXBElement(_KvkUpdateGetChangedDossiers_QNAME, KvkUpdateGetChangedDossiersRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeGetReportFullResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeGetReportFullResponse") - public JAXBElement createCreditsafeGetReportFullResponse(CreditsafeGetReportFullResponseType value) { - return new JAXBElement(_CreditsafeGetReportFullResponse_QNAME, CreditsafeGetReportFullResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataPriceRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataPrice") - public JAXBElement createCarRDWCarDataPrice(CarRDWCarDataPriceRequestType value) { - return new JAXBElement(_CarRDWCarDataPrice_QNAME, CarRDWCarDataPriceRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchSelectionSimpleRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchSelectionSimple") - public JAXBElement createDutchBusinessSearchSelectionSimple(DutchBusinessSearchSelectionSimpleRequestType value) { - return new JAXBElement(_DutchBusinessSearchSelectionSimple_QNAME, DutchBusinessSearchSelectionSimpleRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetSBIDescriptionRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetSBIDescription") - public JAXBElement createDutchBusinessGetSBIDescription(DutchBusinessGetSBIDescriptionRequestType value) { - return new JAXBElement(_DutchBusinessGetSBIDescription_QNAME, DutchBusinessGetSBIDescriptionRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerRDDescriptionCoordinatesRDResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerRDDescriptionCoordinatesRDResponse") - public JAXBElement createRoutePlannerRDDescriptionCoordinatesRDResponse(RoutePlannerRDDescriptionCoordinatesRDResponseType value) { - return new JAXBElement(_RoutePlannerRDDescriptionCoordinatesRDResponse_QNAME, RoutePlannerRDDescriptionCoordinatesRDResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeGetReportFullRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeGetReportFull") - public JAXBElement createCreditsafeGetReportFull(CreditsafeGetReportFullRequestType value) { - return new JAXBElement(_CreditsafeGetReportFull_QNAME, CreditsafeGetReportFullRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryDocumentDataV3ByDossier") - public JAXBElement createDutchBusinessGetExtractHistoryDocumentDataV3ByDossier(DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType value) { - return new JAXBElement(_DutchBusinessGetExtractHistoryDocumentDataV3ByDossier_QNAME, DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOPickupInvestigationResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOPickupInvestigationResponse") - public JAXBElement createDutchBusinessUBOPickupInvestigationResponse(DutchBusinessUBOPickupInvestigationResponseType value) { - return new JAXBElement(_DutchBusinessUBOPickupInvestigationResponse_QNAME, DutchBusinessUBOPickupInvestigationResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerEUDescriptionCoordinatesLatLonRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerEUDescriptionCoordinatesLatLon") - public JAXBElement createRoutePlannerEUDescriptionCoordinatesLatLon(RoutePlannerEUDescriptionCoordinatesLatLonRequestType value) { - return new JAXBElement(_RoutePlannerEUDescriptionCoordinatesLatLon_QNAME, RoutePlannerEUDescriptionCoordinatesLatLonRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountViewBalanceResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountViewBalanceResponse") - public JAXBElement createAccountViewBalanceResponse(AccountViewBalanceResponseType value) { - return new JAXBElement(_AccountViewBalanceResponse_QNAME, AccountViewBalanceResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchPostcodeResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchPostcodeResponse") - public JAXBElement createBusinessSearchPostcodeResponse(BusinessSearchPostcodeResponseType value) { - return new JAXBElement(_BusinessSearchPostcodeResponse_QNAME, BusinessSearchPostcodeResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPerceelV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPerceelV2Response") - public JAXBElement createKadasterHypothecairBerichtPerceelV2Response(KadasterHypothecairBerichtPerceelV2ResponseType value) { - return new JAXBElement(_KadasterHypothecairBerichtPerceelV2Response_QNAME, KadasterHypothecairBerichtPerceelV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionShortestRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionShortest") - public JAXBElement createRoutePlannerDescriptionShortest(RoutePlannerDescriptionShortestRequestType value) { - return new JAXBElement(_RoutePlannerDescriptionShortest_QNAME, RoutePlannerDescriptionShortestRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetKadastraalBerichtObjectByAdresRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetKadastraalBerichtObjectByAdres") - public JAXBElement createKadasterV2GetKadastraalBerichtObjectByAdres(KadasterV2GetKadastraalBerichtObjectByAdresRequestType value) { - return new JAXBElement(_KadasterV2GetKadastraalBerichtObjectByAdres_QNAME, KadasterV2GetKadastraalBerichtObjectByAdresRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressPerceelPhraseSearchRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressPerceelPhraseSearch") - public JAXBElement createAddressPerceelPhraseSearch(AddressPerceelPhraseSearchRequestType value) { - return new JAXBElement(_AddressPerceelPhraseSearch_QNAME, AddressPerceelPhraseSearchRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksAddressSearchRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksAddressSearch") - public JAXBElement createAddressReeksAddressSearch(AddressReeksAddressSearchRequestType value) { - return new JAXBElement(_AddressReeksAddressSearch_QNAME, AddressReeksAddressSearchRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressNeighborhoodNameResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressNeighborhoodNameResponse") - public JAXBElement createAddressNeighborhoodNameResponse(AddressNeighborhoodNameResponseType value) { - return new JAXBElement(_AddressNeighborhoodNameResponse_QNAME, AddressNeighborhoodNameResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserEditHostRestrictionsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userEditHostRestrictionsResponse") - public JAXBElement createUserEditHostRestrictionsResponse(UserEditHostRestrictionsResponseType value) { - return new JAXBElement(_UserEditHostRestrictionsResponse_QNAME, UserEditHostRestrictionsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountEditV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountEditV2") - public JAXBElement createAccountEditV2(AccountEditV2RequestType value) { - return new JAXBElement(_AccountEditV2_QNAME, AccountEditV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VatValidateResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "vatValidateResponse") - public JAXBElement createVatValidateResponse(VatValidateResponseType value) { - return new JAXBElement(_VatValidateResponse_QNAME, VatValidateResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationInternationalAddressCoordinatesLatLonResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationInternationalAddressCoordinatesLatLonResponse") - public JAXBElement createGeoLocationInternationalAddressCoordinatesLatLonResponse(GeoLocationInternationalAddressCoordinatesLatLonResponseType value) { - return new JAXBElement(_GeoLocationInternationalAddressCoordinatesLatLonResponse_QNAME, GeoLocationInternationalAddressCoordinatesLatLonResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ComplianceGetPersonRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "complianceGetPerson") - public JAXBElement createComplianceGetPerson(ComplianceGetPersonRequestType value) { - return new JAXBElement(_ComplianceGetPerson_QNAME, ComplianceGetPersonRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEVersionYearDataRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEVersionYearData") - public JAXBElement createCarVWEVersionYearData(CarVWEVersionYearDataRequestType value) { - return new JAXBElement(_CarVWEVersionYearData_QNAME, CarVWEVersionYearDataRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEOptionsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEOptionsResponse") - public JAXBElement createCarVWEOptionsResponse(CarVWEOptionsResponseType value) { - return new JAXBElement(_CarVWEOptionsResponse_QNAME, CarVWEOptionsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountEditHostRestrictionsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountEditHostRestrictions") - public JAXBElement createAccountEditHostRestrictions(AccountEditHostRestrictionsRequestType value) { - return new JAXBElement(_AccountEditHostRestrictions_QNAME, AccountEditHostRestrictionsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetDossierSBIResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetDossierSBIResponse") - public JAXBElement createBusinessGetDossierSBIResponse(BusinessGetDossierSBIResponseType value) { - return new JAXBElement(_BusinessGetDossierSBIResponse_QNAME, BusinessGetDossierSBIResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetDossierV3ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetDossierV3Response") - public JAXBElement createBusinessGetDossierV3Response(BusinessGetDossierV3ResponseType value) { - return new JAXBElement(_BusinessGetDossierV3Response_QNAME, BusinessGetDossierV3ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationDistanceSortedNeighborhoodCodesRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationDistanceSortedNeighborhoodCodes") - public JAXBElement createGeoLocationDistanceSortedNeighborhoodCodes(GeoLocationDistanceSortedNeighborhoodCodesRequestType value) { - return new JAXBElement(_GeoLocationDistanceSortedNeighborhoodCodes_QNAME, GeoLocationDistanceSortedNeighborhoodCodesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetVehicleV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetVehicleV2") - public JAXBElement createDutchVehicleGetVehicleV2(DutchVehicleGetVehicleV2RequestType value) { - return new JAXBElement(_DutchVehicleGetVehicleV2_QNAME, DutchVehicleGetVehicleV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetDossierHistoryRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetDossierHistory") - public JAXBElement createDutchBusinessGetDossierHistory(DutchBusinessGetDossierHistoryRequestType value) { - return new JAXBElement(_DutchBusinessGetDossierHistory_QNAME, DutchBusinessGetDossierHistoryRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtPerceelV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtPerceelV2") - public JAXBElement createKadasterEigendomsBerichtPerceelV2(KadasterEigendomsBerichtPerceelV2RequestType value) { - return new JAXBElement(_KadasterEigendomsBerichtPerceelV2_QNAME, KadasterEigendomsBerichtPerceelV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateRemoveDossierResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateRemoveDossierResponse") - public JAXBElement createBusinessUpdateRemoveDossierResponse(BusinessUpdateRemoveDossierResponseType value) { - return new JAXBElement(_BusinessUpdateRemoveDossierResponse_QNAME, BusinessUpdateRemoveDossierResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RiskCheckGetRiskPersonCompanyReportResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "riskCheckGetRiskPersonCompanyReportResponse") - public JAXBElement createRiskCheckGetRiskPersonCompanyReportResponse(RiskCheckGetRiskPersonCompanyReportResponseType value) { - return new JAXBElement(_RiskCheckGetRiskPersonCompanyReportResponse_QNAME, RiskCheckGetRiskPersonCompanyReportResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterValueListGetRangesRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterValueListGetRanges") - public JAXBElement createKadasterValueListGetRanges(KadasterValueListGetRangesRequestType value) { - return new JAXBElement(_KadasterValueListGetRanges_QNAME, KadasterValueListGetRangesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponse") - public JAXBElement createKadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponse(KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType value) { - return new JAXBElement(_KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponse_QNAME, KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEListModelsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEListModelsResponse") - public JAXBElement createCarVWEListModelsResponse(CarVWEListModelsResponseType value) { - return new JAXBElement(_CarVWEListModelsResponse_QNAME, CarVWEListModelsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchAddressRangePostcodeSearchRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchAddressRangePostcodeSearch") - public JAXBElement createDutchAddressRangePostcodeSearch(DutchAddressRangePostcodeSearchRequestType value) { - return new JAXBElement(_DutchAddressRangePostcodeSearch_QNAME, DutchAddressRangePostcodeSearchRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEListVersionsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEListVersions") - public JAXBElement createCarVWEListVersions(CarVWEListVersionsRequestType value) { - return new JAXBElement(_CarVWEListVersions_QNAME, CarVWEListVersionsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOClassifyInvestigationRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOClassifyInvestigation") - public JAXBElement createDutchBusinessUBOClassifyInvestigation(DutchBusinessUBOClassifyInvestigationRequestType value) { - return new JAXBElement(_DutchBusinessUBOClassifyInvestigation_QNAME, DutchBusinessUBOClassifyInvestigationRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchSelectionRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchSelection") - public JAXBElement createDutchBusinessSearchSelection(DutchBusinessSearchSelectionRequestType value) { - return new JAXBElement(_DutchBusinessSearchSelection_QNAME, DutchBusinessSearchSelectionRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponse") - public JAXBElement createKadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponse(KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType value) { - return new JAXBElement(_KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponse_QNAME, KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MetaGetMethodRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "metaGetMethod") - public JAXBElement createMetaGetMethod(MetaGetMethodRequestType value) { - return new JAXBElement(_MetaGetMethod_QNAME, MetaGetMethodRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserCreateV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userCreateV2Response") - public JAXBElement createUserCreateV2Response(UserCreateV2ResponseType value) { - return new JAXBElement(_UserCreateV2Response_QNAME, UserCreateV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountViewHostRestrictionsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountViewHostRestrictionsResponse") - public JAXBElement createAccountViewHostRestrictionsResponse(AccountViewHostRestrictionsResponseType value) { - return new JAXBElement(_AccountViewHostRestrictionsResponse_QNAME, AccountViewHostRestrictionsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponse") - public JAXBElement createKadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponse(KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType value) { - return new JAXBElement(_KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponse_QNAME, KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditCompanyLiaisonsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditCompanyLiaisonsResponse") - public JAXBElement createGraydonCreditCompanyLiaisonsResponse(GraydonCreditCompanyLiaisonsResponseType value) { - return new JAXBElement(_GraydonCreditCompanyLiaisonsResponse_QNAME, GraydonCreditCompanyLiaisonsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbBusinessVerificationRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbBusinessVerification") - public JAXBElement createDnbBusinessVerification(DnbBusinessVerificationRequestType value) { - return new JAXBElement(_DnbBusinessVerification_QNAME, DnbBusinessVerificationRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKadastraleKaartPerceelV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKadastraleKaartPerceelV2") - public JAXBElement createKadasterKadastraleKaartPerceelV2(KadasterKadastraleKaartPerceelV2RequestType value) { - return new JAXBElement(_KadasterKadastraleKaartPerceelV2_QNAME, KadasterKadastraleKaartPerceelV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerRDDescriptionResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerRDDescriptionResponse") - public JAXBElement createRoutePlannerRDDescriptionResponse(RoutePlannerRDDescriptionResponseType value) { - return new JAXBElement(_RoutePlannerRDDescriptionResponse_QNAME, RoutePlannerRDDescriptionResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchAddressRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchAddress") - public JAXBElement createBusinessSearchAddress(BusinessSearchAddressRequestType value) { - return new JAXBElement(_BusinessSearchAddress_QNAME, BusinessSearchAddressRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationDistanceSortedNeighborhoodCodesRadiusResponse") - public JAXBElement createGeoLocationDistanceSortedNeighborhoodCodesRadiusResponse(GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType value) { - return new JAXBElement(_GeoLocationDistanceSortedNeighborhoodCodesRadiusResponse_QNAME, GeoLocationDistanceSortedNeighborhoodCodesRadiusResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link NbwoEstimateValueRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "nbwoEstimateValue") - public JAXBElement createNbwoEstimateValue(NbwoEstimateValueRequestType value) { - return new JAXBElement(_NbwoEstimateValue_QNAME, NbwoEstimateValueRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbEnterpriseManagementResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbEnterpriseManagementResponse") - public JAXBElement createDnbEnterpriseManagementResponse(DnbEnterpriseManagementResponseType value) { - return new JAXBElement(_DnbEnterpriseManagementResponse_QNAME, DnbEnterpriseManagementResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateCheckDossierResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateCheckDossierResponse") - public JAXBElement createKvkUpdateCheckDossierResponse(KvkUpdateCheckDossierResponseType value) { - return new JAXBElement(_KvkUpdateCheckDossierResponse_QNAME, KvkUpdateCheckDossierResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetSBIRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetSBI") - public JAXBElement createDutchBusinessGetSBI(DutchBusinessGetSBIRequestType value) { - return new JAXBElement(_DutchBusinessGetSBI_QNAME, DutchBusinessGetSBIRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetConcernRelationsDetailsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetConcernRelationsDetails") - public JAXBElement createDutchBusinessGetConcernRelationsDetails(DutchBusinessGetConcernRelationsDetailsRequestType value) { - return new JAXBElement(_DutchBusinessGetConcernRelationsDetails_QNAME, DutchBusinessGetConcernRelationsDetailsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MetaGetServicesResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "metaGetServicesResponse") - public JAXBElement createMetaGetServicesResponse(MetaGetServicesResponseType value) { - return new JAXBElement(_MetaGetServicesResponse_QNAME, MetaGetServicesResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditQuickscanResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditQuickscanResponse") - public JAXBElement createGraydonCreditQuickscanResponse(GraydonCreditQuickscanResponseType value) { - return new JAXBElement(_GraydonCreditQuickscanResponse_QNAME, GraydonCreditQuickscanResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateGetDossiersResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateGetDossiersResponse") - public JAXBElement createKvkUpdateGetDossiersResponse(KvkUpdateGetDossiersResponseType value) { - return new JAXBElement(_KvkUpdateGetDossiersResponse_QNAME, KvkUpdateGetDossiersResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerGetRouteRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerGetRoute") - public JAXBElement createRoutePlannerGetRoute(RoutePlannerGetRouteRequestType value) { - return new JAXBElement(_RoutePlannerGetRoute_QNAME, RoutePlannerGetRouteRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationDistanceSortedNeighborhoodCodesResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationDistanceSortedNeighborhoodCodesResponse") - public JAXBElement createGeoLocationDistanceSortedNeighborhoodCodesResponse(GeoLocationDistanceSortedNeighborhoodCodesResponseType value) { - return new JAXBElement(_GeoLocationDistanceSortedNeighborhoodCodesResponse_QNAME, GeoLocationDistanceSortedNeighborhoodCodesResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkGetExtractDocumentRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkGetExtractDocument") - public JAXBElement createKvkGetExtractDocument(KvkGetExtractDocumentRequestType value) { - return new JAXBElement(_KvkGetExtractDocument_QNAME, KvkGetExtractDocumentRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeGetReportFullV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeGetReportFullV2Response") - public JAXBElement createCreditsafeGetReportFullV2Response(CreditsafeGetReportFullV2ResponseType value) { - return new JAXBElement(_CreditsafeGetReportFullV2Response_QNAME, CreditsafeGetReportFullV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetAdditionalPositionsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetAdditionalPositions") - public JAXBElement createDutchBusinessGetAdditionalPositions(DutchBusinessGetAdditionalPositionsRequestType value) { - return new JAXBElement(_DutchBusinessGetAdditionalPositions_QNAME, DutchBusinessGetAdditionalPositionsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKadastraleKaartPostcodeRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKadastraleKaartPostcode") - public JAXBElement createKadasterKadastraleKaartPostcode(KadasterKadastraleKaartPostcodeRequestType value) { - return new JAXBElement(_KadasterKadastraleKaartPostcode_QNAME, KadasterKadastraleKaartPostcodeRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountUserSearchV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountUserSearchV2") - public JAXBElement createAccountUserSearchV2(AccountUserSearchV2RequestType value) { - return new JAXBElement(_AccountUserSearchV2_QNAME, AccountUserSearchV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditRatingsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditRatings") - public JAXBElement createGraydonCreditRatings(GraydonCreditRatingsRequestType value) { - return new JAXBElement(_GraydonCreditRatings_QNAME, GraydonCreditRatingsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserEditExtendedV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userEditExtendedV2") - public JAXBElement createUserEditExtendedV2(UserEditExtendedV2RequestType value) { - return new JAXBElement(_UserEditExtendedV2_QNAME, UserEditExtendedV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEVersionPriceRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEVersionPrice") - public JAXBElement createCarVWEVersionPrice(CarVWEVersionPriceRequestType value) { - return new JAXBElement(_CarVWEVersionPrice_QNAME, CarVWEVersionPriceRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetMarketValueRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetMarketValue") - public JAXBElement createDutchVehicleGetMarketValue(DutchVehicleGetMarketValueRequestType value) { - return new JAXBElement(_DutchVehicleGetMarketValue_QNAME, DutchVehicleGetMarketValueRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateGetOverviewRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateGetOverview") - public JAXBElement createDutchBusinessUpdateGetOverview(DutchBusinessUpdateGetOverviewRequestType value) { - return new JAXBElement(_DutchBusinessUpdateGetOverview_QNAME, DutchBusinessUpdateGetOverviewRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetVatNumberResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetVatNumberResponse") - public JAXBElement createDutchBusinessGetVatNumberResponse(DutchBusinessGetVatNumberResponseType value) { - return new JAXBElement(_DutchBusinessGetVatNumberResponse_QNAME, DutchBusinessGetVatNumberResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetPositionsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetPositions") - public JAXBElement createDutchBusinessGetPositions(DutchBusinessGetPositionsRequestType value) { - return new JAXBElement(_DutchBusinessGetPositions_QNAME, DutchBusinessGetPositionsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchSelectionResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchSelectionResponse") - public JAXBElement createDutchBusinessSearchSelectionResponse(DutchBusinessSearchSelectionResponseType value) { - return new JAXBElement(_DutchBusinessSearchSelectionResponse_QNAME, DutchBusinessSearchSelectionResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponse") - public JAXBElement createDutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponse(DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType value) { - return new JAXBElement(_DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponse_QNAME, DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserEditBalanceResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userEditBalanceResponse") - public JAXBElement createUserEditBalanceResponse(UserEditBalanceResponseType value) { - return new JAXBElement(_UserEditBalanceResponse_QNAME, UserEditBalanceResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LoginRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "login") - public JAXBElement createLogin(LoginRequestType value) { - return new JAXBElement(_Login_QNAME, LoginRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MetaGetServiceRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "metaGetService") - public JAXBElement createMetaGetService(MetaGetServiceRequestType value) { - return new JAXBElement(_MetaGetService_QNAME, MetaGetServiceRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetBIKDescriptionResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetBIKDescriptionResponse") - public JAXBElement createBusinessGetBIKDescriptionResponse(BusinessGetBIKDescriptionResponseType value) { - return new JAXBElement(_BusinessGetBIKDescriptionResponse_QNAME, BusinessGetBIKDescriptionResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetVehicleRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetVehicle") - public JAXBElement createDutchVehicleGetVehicle(DutchVehicleGetVehicleRequestType value) { - return new JAXBElement(_DutchVehicleGetVehicle_QNAME, DutchVehicleGetVehicleRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerEUDescriptionCoordinatesLatLonResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerEUDescriptionCoordinatesLatLonResponse") - public JAXBElement createRoutePlannerEUDescriptionCoordinatesLatLonResponse(RoutePlannerEUDescriptionCoordinatesLatLonResponseType value) { - return new JAXBElement(_RoutePlannerEUDescriptionCoordinatesLatLonResponse_QNAME, RoutePlannerEUDescriptionCoordinatesLatLonResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationLatLonToAddressV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationLatLonToAddressV2Response") - public JAXBElement createGeoLocationLatLonToAddressV2Response(GeoLocationLatLonToAddressV2ResponseType value) { - return new JAXBElement(_GeoLocationLatLonToAddressV2Response_QNAME, GeoLocationLatLonToAddressV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPostcodeV3ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPostcodeV3Response") - public JAXBElement createKadasterUittrekselKadastraleKaartPostcodeV3Response(KadasterUittrekselKadastraleKaartPostcodeV3ResponseType value) { - return new JAXBElement(_KadasterUittrekselKadastraleKaartPostcodeV3Response_QNAME, KadasterUittrekselKadastraleKaartPostcodeV3ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationPostcodeCoordinatesRDResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationPostcodeCoordinatesRDResponse") - public JAXBElement createGeoLocationPostcodeCoordinatesRDResponse(GeoLocationPostcodeCoordinatesRDResponseType value) { - return new JAXBElement(_GeoLocationPostcodeCoordinatesRDResponse_QNAME, GeoLocationPostcodeCoordinatesRDResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPerceelV3RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPerceelV3") - public JAXBElement createKadasterHypothecairBerichtPerceelV3(KadasterHypothecairBerichtPerceelV3RequestType value) { - return new JAXBElement(_KadasterHypothecairBerichtPerceelV3_QNAME, KadasterHypothecairBerichtPerceelV3RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtPerceelResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtPerceelResponse") - public JAXBElement createKadasterEigendomsBerichtPerceelResponse(KadasterEigendomsBerichtPerceelResponseType value) { - return new JAXBElement(_KadasterEigendomsBerichtPerceelResponse_QNAME, KadasterEigendomsBerichtPerceelResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPerceelV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPerceelV2") - public JAXBElement createKadasterHypothecairBerichtPerceelV2(KadasterHypothecairBerichtPerceelV2RequestType value) { - return new JAXBElement(_KadasterHypothecairBerichtPerceelV2_QNAME, KadasterHypothecairBerichtPerceelV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractDocumentDataV3RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractDocumentDataV3") - public JAXBElement createDutchBusinessGetExtractDocumentDataV3(DutchBusinessGetExtractDocumentDataV3RequestType value) { - return new JAXBElement(_DutchBusinessGetExtractDocumentDataV3_QNAME, DutchBusinessGetExtractDocumentDataV3RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SepaValidateInternationalBankAccountNumberFormatResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaValidateInternationalBankAccountNumberFormatResponse") - public JAXBElement createSepaValidateInternationalBankAccountNumberFormatResponse(SepaValidateInternationalBankAccountNumberFormatResponseType value) { - return new JAXBElement(_SepaValidateInternationalBankAccountNumberFormatResponse_QNAME, SepaValidateInternationalBankAccountNumberFormatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractDocumentDataV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractDocumentDataV2") - public JAXBElement createDutchBusinessGetExtractDocumentDataV2(DutchBusinessGetExtractDocumentDataV2RequestType value) { - return new JAXBElement(_DutchBusinessGetExtractDocumentDataV2_QNAME, DutchBusinessGetExtractDocumentDataV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOCheckInvestigationResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOCheckInvestigationResponse") - public JAXBElement createDutchBusinessUBOCheckInvestigationResponse(DutchBusinessUBOCheckInvestigationResponseType value) { - return new JAXBElement(_DutchBusinessUBOCheckInvestigationResponse_QNAME, DutchBusinessUBOCheckInvestigationResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountGetOrderTokenResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountGetOrderTokenResponse") - public JAXBElement createAccountGetOrderTokenResponse(AccountGetOrderTokenResponseType value) { - return new JAXBElement(_AccountGetOrderTokenResponse_QNAME, AccountGetOrderTokenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationPostcodeDistanceRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationPostcodeDistance") - public JAXBElement createGeoLocationPostcodeDistance(GeoLocationPostcodeDistanceRequestType value) { - return new JAXBElement(_GeoLocationPostcodeDistance_QNAME, GeoLocationPostcodeDistanceRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetKoopsommenOverzichtRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetKoopsommenOverzicht") - public JAXBElement createKadasterV2GetKoopsommenOverzicht(KadasterV2GetKoopsommenOverzichtRequestType value) { - return new JAXBElement(_KadasterV2GetKoopsommenOverzicht_QNAME, KadasterV2GetKoopsommenOverzichtRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InternationalAddressSearchV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "internationalAddressSearchV2Response") - public JAXBElement createInternationalAddressSearchV2Response(InternationalAddressSearchV2ResponseType value) { - return new JAXBElement(_InternationalAddressSearchV2Response_QNAME, InternationalAddressSearchV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountViewHostRestrictionsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountViewHostRestrictions") - public JAXBElement createAccountViewHostRestrictions(AccountViewHostRestrictionsRequestType value) { - return new JAXBElement(_AccountViewHostRestrictions_QNAME, AccountViewHostRestrictionsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataExtendedRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataExtended") - public JAXBElement createCarRDWCarDataExtended(CarRDWCarDataExtendedRequestType value) { - return new JAXBElement(_CarRDWCarDataExtended_QNAME, CarRDWCarDataExtendedRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressPerceelPhraseSearchResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressPerceelPhraseSearchResponse") - public JAXBElement createAddressPerceelPhraseSearchResponse(AddressPerceelPhraseSearchResponseType value) { - return new JAXBElement(_AddressPerceelPhraseSearchResponse_QNAME, AddressPerceelPhraseSearchResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPostcodeV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPostcodeV2") - public JAXBElement createKadasterUittrekselKadastraleKaartPostcodeV2(KadasterUittrekselKadastraleKaartPostcodeV2RequestType value) { - return new JAXBElement(_KadasterUittrekselKadastraleKaartPostcodeV2_QNAME, KadasterUittrekselKadastraleKaartPostcodeV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressPerceelParameterSearchResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressPerceelParameterSearchResponse") - public JAXBElement createAddressPerceelParameterSearchResponse(AddressPerceelParameterSearchResponseType value) { - return new JAXBElement(_AddressPerceelParameterSearchResponse_QNAME, AddressPerceelParameterSearchResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtPerceelV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtPerceelV2Response") - public JAXBElement createKadasterEigendomsBerichtPerceelV2Response(KadasterEigendomsBerichtPerceelV2ResponseType value) { - return new JAXBElement(_KadasterEigendomsBerichtPerceelV2Response_QNAME, KadasterEigendomsBerichtPerceelV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataV2Response") - public JAXBElement createCarRDWCarDataV2Response(CarRDWCarDataV2ResponseType value) { - return new JAXBElement(_CarRDWCarDataV2Response_QNAME, CarRDWCarDataV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPostcodeV3RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPostcodeV3") - public JAXBElement createKadasterUittrekselKadastraleKaartPostcodeV3(KadasterUittrekselKadastraleKaartPostcodeV3RequestType value) { - return new JAXBElement(_KadasterUittrekselKadastraleKaartPostcodeV3_QNAME, KadasterUittrekselKadastraleKaartPostcodeV3RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditManagementRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditManagement") - public JAXBElement createGraydonCreditManagement(GraydonCreditManagementRequestType value) { - return new JAXBElement(_GraydonCreditManagement_QNAME, GraydonCreditManagementRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserChangePasswordResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userChangePasswordResponse") - public JAXBElement createUserChangePasswordResponse(UserChangePasswordResponseType value) { - return new JAXBElement(_UserChangePasswordResponse_QNAME, UserChangePasswordResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeSearchCriteriaResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeSearchCriteriaResponse") - public JAXBElement createCreditsafeSearchCriteriaResponse(CreditsafeSearchCriteriaResponseType value) { - return new JAXBElement(_CreditsafeSearchCriteriaResponse_QNAME, CreditsafeSearchCriteriaResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RiskCheckPersonResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "riskCheckPersonResponse") - public JAXBElement createRiskCheckPersonResponse(RiskCheckPersonResponseType value) { - return new JAXBElement(_RiskCheckPersonResponse_QNAME, RiskCheckPersonResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbSearchReferenceResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbSearchReferenceResponse") - public JAXBElement createDnbSearchReferenceResponse(DnbSearchReferenceResponseType value) { - return new JAXBElement(_DnbSearchReferenceResponse_QNAME, DnbSearchReferenceResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPerceelV3ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPerceelV3Response") - public JAXBElement createKadasterUittrekselKadastraleKaartPerceelV3Response(KadasterUittrekselKadastraleKaartPerceelV3ResponseType value) { - return new JAXBElement(_KadasterUittrekselKadastraleKaartPerceelV3Response_QNAME, KadasterUittrekselKadastraleKaartPerceelV3ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerEUInformationResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerEUInformationResponse") - public JAXBElement createRoutePlannerEUInformationResponse(RoutePlannerEUInformationResponseType value) { - return new JAXBElement(_RoutePlannerEUInformationResponse_QNAME, RoutePlannerEUInformationResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationDistanceSortedPostcodesRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationDistanceSortedPostcodes") - public JAXBElement createGeoLocationDistanceSortedPostcodes(GeoLocationDistanceSortedPostcodesRequestType value) { - return new JAXBElement(_GeoLocationDistanceSortedPostcodes_QNAME, GeoLocationDistanceSortedPostcodesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditVatNumberResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditVatNumberResponse") - public JAXBElement createGraydonCreditVatNumberResponse(GraydonCreditVatNumberResponseType value) { - return new JAXBElement(_GraydonCreditVatNumberResponse_QNAME, GraydonCreditVatNumberResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AreaCodeToNeighborhoodcodeResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "areaCodeToNeighborhoodcodeResponse") - public JAXBElement createAreaCodeToNeighborhoodcodeResponse(AreaCodeToNeighborhoodcodeResponseType value) { - return new JAXBElement(_AreaCodeToNeighborhoodcodeResponse_QNAME, AreaCodeToNeighborhoodcodeResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetOrganizationTreeResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetOrganizationTreeResponse") - public JAXBElement createDutchBusinessGetOrganizationTreeResponse(DutchBusinessGetOrganizationTreeResponseType value) { - return new JAXBElement(_DutchBusinessGetOrganizationTreeResponse_QNAME, DutchBusinessGetOrganizationTreeResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationHaversineDistanceRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationHaversineDistance") - public JAXBElement createGeoLocationHaversineDistance(GeoLocationHaversineDistanceRequestType value) { - return new JAXBElement(_GeoLocationHaversineDistance_QNAME, GeoLocationHaversineDistanceRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerRDDescriptionRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerRDDescription") - public JAXBElement createRoutePlannerRDDescription(RoutePlannerRDDescriptionRequestType value) { - return new JAXBElement(_RoutePlannerRDDescription_QNAME, RoutePlannerRDDescriptionRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEMeldcodeCheckRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEMeldcodeCheck") - public JAXBElement createCarVWEMeldcodeCheck(CarVWEMeldcodeCheckRequestType value) { - return new JAXBElement(_CarVWEMeldcodeCheck_QNAME, CarVWEMeldcodeCheckRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtDocumentPostcodeResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtDocumentPostcodeResponse") - public JAXBElement createKadasterEigendomsBerichtDocumentPostcodeResponse(KadasterEigendomsBerichtDocumentPostcodeResponseType value) { - return new JAXBElement(_KadasterEigendomsBerichtDocumentPostcodeResponse_QNAME, KadasterEigendomsBerichtDocumentPostcodeResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetDossierV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetDossierV2Response") - public JAXBElement createDutchBusinessGetDossierV2Response(DutchBusinessGetDossierV2ResponseType value) { - return new JAXBElement(_DutchBusinessGetDossierV2Response_QNAME, DutchBusinessGetDossierV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchSelectionV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchSelectionV2Response") - public JAXBElement createBusinessSearchSelectionV2Response(BusinessSearchSelectionV2ResponseType value) { - return new JAXBElement(_BusinessSearchSelectionV2Response_QNAME, BusinessSearchSelectionV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressDistrictListCitiesRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressDistrictListCities") - public JAXBElement createAddressDistrictListCities(AddressDistrictListCitiesRequestType value) { - return new JAXBElement(_AddressDistrictListCities_QNAME, AddressDistrictListCitiesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationPostcodeCoordinatesLatLonRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationPostcodeCoordinatesLatLon") - public JAXBElement createGeoLocationPostcodeCoordinatesLatLon(GeoLocationPostcodeCoordinatesLatLonRequestType value) { - return new JAXBElement(_GeoLocationPostcodeCoordinatesLatLon_QNAME, GeoLocationPostcodeCoordinatesLatLonRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetKadastraalBerichtObjectByAdresResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetKadastraalBerichtObjectByAdresResponse") - public JAXBElement createKadasterV2GetKadastraalBerichtObjectByAdresResponse(KadasterV2GetKadastraalBerichtObjectByAdresResponseType value) { - return new JAXBElement(_KadasterV2GetKadastraalBerichtObjectByAdresResponse_QNAME, KadasterV2GetKadastraalBerichtObjectByAdresResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationRDToAddressV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationRDToAddressV2Response") - public JAXBElement createGeoLocationRDToAddressV2Response(GeoLocationRDToAddressV2ResponseType value) { - return new JAXBElement(_GeoLocationRDToAddressV2Response_QNAME, GeoLocationRDToAddressV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BovagGetMemberByBovagIdRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "bovagGetMemberByBovagId") - public JAXBElement createBovagGetMemberByBovagId(BovagGetMemberByBovagIdRequestType value) { - return new JAXBElement(_BovagGetMemberByBovagId_QNAME, BovagGetMemberByBovagIdRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkSearchSelectionResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkSearchSelectionResponse") - public JAXBElement createKvkSearchSelectionResponse(KvkSearchSelectionResponseType value) { - return new JAXBElement(_KvkSearchSelectionResponse_QNAME, KvkSearchSelectionResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationRDToAddressV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationRDToAddressV2") - public JAXBElement createGeoLocationRDToAddressV2(GeoLocationRDToAddressV2RequestType value) { - return new JAXBElement(_GeoLocationRDToAddressV2_QNAME, GeoLocationRDToAddressV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MetaGetServicesRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "metaGetServices") - public JAXBElement createMetaGetServices(MetaGetServicesRequestType value) { - return new JAXBElement(_MetaGetServices_QNAME, MetaGetServicesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKadastraleKaartPostcodeV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKadastraleKaartPostcodeV2") - public JAXBElement createKadasterKadastraleKaartPostcodeV2(KadasterKadastraleKaartPostcodeV2RequestType value) { - return new JAXBElement(_KadasterKadastraleKaartPostcodeV2_QNAME, KadasterKadastraleKaartPostcodeV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountGetCreationTokenResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountGetCreationTokenResponse") - public JAXBElement createAccountGetCreationTokenResponse(AccountGetCreationTokenResponseType value) { - return new JAXBElement(_AccountGetCreationTokenResponse_QNAME, AccountGetCreationTokenResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationInternationalAddressCoordinatesLatLonV2Response") - public JAXBElement createGeoLocationInternationalAddressCoordinatesLatLonV2Response(GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType value) { - return new JAXBElement(_GeoLocationInternationalAddressCoordinatesLatLonV2Response_QNAME, GeoLocationInternationalAddressCoordinatesLatLonV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerGetRouteResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerGetRouteResponse") - public JAXBElement createRoutePlannerGetRouteResponse(RoutePlannerGetRouteResponseType value) { - return new JAXBElement(_RoutePlannerGetRouteResponse_QNAME, RoutePlannerGetRouteResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserSessionRemoveResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userSessionRemoveResponse") - public JAXBElement createUserSessionRemoveResponse(UserSessionRemoveResponseType value) { - return new JAXBElement(_UserSessionRemoveResponse_QNAME, UserSessionRemoveResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationHaversineDistanceResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationHaversineDistanceResponse") - public JAXBElement createGeoLocationHaversineDistanceResponse(GeoLocationHaversineDistanceResponseType value) { - return new JAXBElement(_GeoLocationHaversineDistanceResponse_QNAME, GeoLocationHaversineDistanceResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateCheckDossierRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateCheckDossier") - public JAXBElement createBusinessUpdateCheckDossier(BusinessUpdateCheckDossierRequestType value) { - return new JAXBElement(_BusinessUpdateCheckDossier_QNAME, BusinessUpdateCheckDossierRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationRDToPostcodeRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationRDToPostcode") - public JAXBElement createGeoLocationRDToPostcode(GeoLocationRDToPostcodeRequestType value) { - return new JAXBElement(_GeoLocationRDToPostcode_QNAME, GeoLocationRDToPostcodeRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPerceelResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPerceelResponse") - public JAXBElement createKadasterHypothecairBerichtPerceelResponse(KadasterHypothecairBerichtPerceelResponseType value) { - return new JAXBElement(_KadasterHypothecairBerichtPerceelResponse_QNAME, KadasterHypothecairBerichtPerceelResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressCityListNeighborhoodsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressCityListNeighborhoods") - public JAXBElement createAddressCityListNeighborhoods(AddressCityListNeighborhoodsRequestType value) { - return new JAXBElement(_AddressCityListNeighborhoods_QNAME, AddressCityListNeighborhoodsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchParametersV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchParametersV2Response") - public JAXBElement createDutchBusinessSearchParametersV2Response(DutchBusinessSearchParametersV2ResponseType value) { - return new JAXBElement(_DutchBusinessSearchParametersV2Response_QNAME, DutchBusinessSearchParametersV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSBIToBIKResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSBIToBIKResponse") - public JAXBElement createBusinessSBIToBIKResponse(BusinessSBIToBIKResponseType value) { - return new JAXBElement(_BusinessSBIToBIKResponse_QNAME, BusinessSBIToBIKResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InsolvencyGetCaseByPublicationRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "insolvencyGetCaseByPublication") - public JAXBElement createInsolvencyGetCaseByPublication(InsolvencyGetCaseByPublicationRequestType value) { - return new JAXBElement(_InsolvencyGetCaseByPublication_QNAME, InsolvencyGetCaseByPublicationRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchSelectionV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchSelectionV2") - public JAXBElement createBusinessSearchSelectionV2(BusinessSearchSelectionV2RequestType value) { - return new JAXBElement(_BusinessSearchSelectionV2_QNAME, BusinessSearchSelectionV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataV3ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataV3Response") - public JAXBElement createCarRDWCarDataV3Response(CarRDWCarDataV3ResponseType value) { - return new JAXBElement(_CarRDWCarDataV3Response_QNAME, CarRDWCarDataV3ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbWorldbaseMarketingPlusRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbWorldbaseMarketingPlus") - public JAXBElement createDnbWorldbaseMarketingPlus(DnbWorldbaseMarketingPlusRequestType value) { - return new JAXBElement(_DnbWorldbaseMarketingPlus_QNAME, DnbWorldbaseMarketingPlusRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchDossierNumberRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchDossierNumber") - public JAXBElement createDutchBusinessSearchDossierNumber(DutchBusinessSearchDossierNumberRequestType value) { - return new JAXBElement(_DutchBusinessSearchDossierNumber_QNAME, DutchBusinessSearchDossierNumberRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtPostcodeV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtPostcodeV2") - public JAXBElement createKadasterEigendomsBerichtPostcodeV2(KadasterEigendomsBerichtPostcodeV2RequestType value) { - return new JAXBElement(_KadasterEigendomsBerichtPostcodeV2_QNAME, KadasterEigendomsBerichtPostcodeV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressProvinceSearchRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressProvinceSearch") - public JAXBElement createAddressProvinceSearch(AddressProvinceSearchRequestType value) { - return new JAXBElement(_AddressProvinceSearch_QNAME, AddressProvinceSearchRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarCheckCodeResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarCheckCodeResponse") - public JAXBElement createCarRDWCarCheckCodeResponse(CarRDWCarCheckCodeResponseType value) { - return new JAXBElement(_CarRDWCarCheckCodeResponse_QNAME, CarRDWCarCheckCodeResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearch") - public JAXBElement createDutchBusinessSearch(DutchBusinessSearchRequestType value) { - return new JAXBElement(_DutchBusinessSearch_QNAME, DutchBusinessSearchRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateAddDossierRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateAddDossier") - public JAXBElement createDutchBusinessUpdateAddDossier(DutchBusinessUpdateAddDossierRequestType value) { - return new JAXBElement(_DutchBusinessUpdateAddDossier_QNAME, DutchBusinessUpdateAddDossierRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserSessionListResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userSessionListResponse") - public JAXBElement createUserSessionListResponse(UserSessionListResponseType value) { - return new JAXBElement(_UserSessionListResponse_QNAME, UserSessionListResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InternationalAddressSearchV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "internationalAddressSearchV2") - public JAXBElement createInternationalAddressSearchV2(InternationalAddressSearchV2RequestType value) { - return new JAXBElement(_InternationalAddressSearchV2_QNAME, InternationalAddressSearchV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchPostcodeResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchPostcodeResponse") - public JAXBElement createDutchBusinessSearchPostcodeResponse(DutchBusinessSearchPostcodeResponseType value) { - return new JAXBElement(_DutchBusinessSearchPostcodeResponse_QNAME, DutchBusinessSearchPostcodeResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterAddressCoordinatesResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterAddressCoordinatesResponse") - public JAXBElement createKadasterAddressCoordinatesResponse(KadasterAddressCoordinatesResponseType value) { - return new JAXBElement(_KadasterAddressCoordinatesResponse_QNAME, KadasterAddressCoordinatesResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationInternationalAddressCoordinatesLatLonV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationInternationalAddressCoordinatesLatLonV2") - public JAXBElement createGeoLocationInternationalAddressCoordinatesLatLonV2(GeoLocationInternationalAddressCoordinatesLatLonV2RequestType value) { - return new JAXBElement(_GeoLocationInternationalAddressCoordinatesLatLonV2_QNAME, GeoLocationInternationalAddressCoordinatesLatLonV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchDossierNumberRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchDossierNumber") - public JAXBElement createBusinessSearchDossierNumber(BusinessSearchDossierNumberRequestType value) { - return new JAXBElement(_BusinessSearchDossierNumber_QNAME, BusinessSearchDossierNumberRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionShortestResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionShortestResponse") - public JAXBElement createRoutePlannerDescriptionShortestResponse(RoutePlannerDescriptionShortestResponseType value) { - return new JAXBElement(_RoutePlannerDescriptionShortestResponse_QNAME, RoutePlannerDescriptionShortestResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchDossierNumberResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchDossierNumberResponse") - public JAXBElement createDutchBusinessSearchDossierNumberResponse(DutchBusinessSearchDossierNumberResponseType value) { - return new JAXBElement(_DutchBusinessSearchDossierNumberResponse_QNAME, DutchBusinessSearchDossierNumberResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetAnnualFinancialStatementResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetAnnualFinancialStatementResponse") - public JAXBElement createDutchBusinessGetAnnualFinancialStatementResponse(DutchBusinessGetAnnualFinancialStatementResponseType value) { - return new JAXBElement(_DutchBusinessGetAnnualFinancialStatementResponse_QNAME, DutchBusinessGetAnnualFinancialStatementResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InsolvencyGetCaseByPublicationResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "insolvencyGetCaseByPublicationResponse") - public JAXBElement createInsolvencyGetCaseByPublicationResponse(InsolvencyGetCaseByPublicationResponseType value) { - return new JAXBElement(_InsolvencyGetCaseByPublicationResponse_QNAME, InsolvencyGetCaseByPublicationResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserViewV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userViewV2") - public JAXBElement createUserViewV2(UserViewV2RequestType value) { - return new JAXBElement(_UserViewV2_QNAME, UserViewV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressNeighborhoodNameRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressNeighborhoodName") - public JAXBElement createAddressNeighborhoodName(AddressNeighborhoodNameRequestType value) { - return new JAXBElement(_AddressNeighborhoodName_QNAME, AddressNeighborhoodNameRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKoopsommenOverzichtV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKoopsommenOverzichtV2") - public JAXBElement createKadasterKoopsommenOverzichtV2(KadasterKoopsommenOverzichtV2RequestType value) { - return new JAXBElement(_KadasterKoopsommenOverzichtV2_QNAME, KadasterKoopsommenOverzichtV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetDossierExtendedResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetDossierExtendedResponse") - public JAXBElement createBusinessGetDossierExtendedResponse(BusinessGetDossierExtendedResponseType value) { - return new JAXBElement(_BusinessGetDossierExtendedResponse_QNAME, BusinessGetDossierExtendedResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressDistrictSearchResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressDistrictSearchResponse") - public JAXBElement createAddressDistrictSearchResponse(AddressDistrictSearchResponseType value) { - return new JAXBElement(_AddressDistrictSearchResponse_QNAME, AddressDistrictSearchResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BelgianBusinessGetDossierRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "belgianBusinessGetDossier") - public JAXBElement createBelgianBusinessGetDossier(BelgianBusinessGetDossierRequestType value) { - return new JAXBElement(_BelgianBusinessGetDossier_QNAME, BelgianBusinessGetDossierRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationInternationalPostcodeCoordinatesLatLonRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationInternationalPostcodeCoordinatesLatLon") - public JAXBElement createGeoLocationInternationalPostcodeCoordinatesLatLon(GeoLocationInternationalPostcodeCoordinatesLatLonRequestType value) { - return new JAXBElement(_GeoLocationInternationalPostcodeCoordinatesLatLon_QNAME, GeoLocationInternationalPostcodeCoordinatesLatLonRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetNonMarketingIndicatorRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetNonMarketingIndicator") - public JAXBElement createDutchBusinessGetNonMarketingIndicator(DutchBusinessGetNonMarketingIndicatorRequestType value) { - return new JAXBElement(_DutchBusinessGetNonMarketingIndicator_QNAME, DutchBusinessGetNonMarketingIndicatorRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BovagGetMemberByDutchBusinessResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "bovagGetMemberByDutchBusinessResponse") - public JAXBElement createBovagGetMemberByDutchBusinessResponse(BovagGetMemberByDutchBusinessResponseType value) { - return new JAXBElement(_BovagGetMemberByDutchBusinessResponse_QNAME, BovagGetMemberByDutchBusinessResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOStartInvestigationRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOStartInvestigation") - public JAXBElement createDutchBusinessUBOStartInvestigation(DutchBusinessUBOStartInvestigationRequestType value) { - return new JAXBElement(_DutchBusinessUBOStartInvestigation_QNAME, DutchBusinessUBOStartInvestigationRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryChangedResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryChangedResponse") - public JAXBElement createDutchBusinessGetExtractHistoryChangedResponse(DutchBusinessGetExtractHistoryChangedResponseType value) { - return new JAXBElement(_DutchBusinessGetExtractHistoryChangedResponse_QNAME, DutchBusinessGetExtractHistoryChangedResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionAddressRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionAddress") - public JAXBElement createRoutePlannerDescriptionAddress(RoutePlannerDescriptionAddressRequestType value) { - return new JAXBElement(_RoutePlannerDescriptionAddress_QNAME, RoutePlannerDescriptionAddressRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserRemoveGroupRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userRemoveGroup") - public JAXBElement createUserRemoveGroup(UserRemoveGroupRequestType value) { - return new JAXBElement(_UserRemoveGroup_QNAME, UserRemoveGroupRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserRemoveGroupResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userRemoveGroupResponse") - public JAXBElement createUserRemoveGroupResponse(UserRemoveGroupResponseType value) { - return new JAXBElement(_UserRemoveGroupResponse_QNAME, UserRemoveGroupResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterBronDocumentRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterBronDocument") - public JAXBElement createKadasterBronDocument(KadasterBronDocumentRequestType value) { - return new JAXBElement(_KadasterBronDocument_QNAME, KadasterBronDocumentRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DriveInfoTimeLookupResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "driveInfoTimeLookupResponse") - public JAXBElement createDriveInfoTimeLookupResponse(DriveInfoTimeLookupResponseType value) { - return new JAXBElement(_DriveInfoTimeLookupResponse_QNAME, DriveInfoTimeLookupResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksParameterSearchResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksParameterSearchResponse") - public JAXBElement createAddressReeksParameterSearchResponse(AddressReeksParameterSearchResponseType value) { - return new JAXBElement(_AddressReeksParameterSearchResponse_QNAME, AddressReeksParameterSearchResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressProvinceListNeighborhoodsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressProvinceListNeighborhoodsResponse") - public JAXBElement createAddressProvinceListNeighborhoodsResponse(AddressProvinceListNeighborhoodsResponseType value) { - return new JAXBElement(_AddressProvinceListNeighborhoodsResponse_QNAME, AddressProvinceListNeighborhoodsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetHypothecairBerichtObjectByAdresRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetHypothecairBerichtObjectByAdres") - public JAXBElement createKadasterV2GetHypothecairBerichtObjectByAdres(KadasterV2GetHypothecairBerichtObjectByAdresRequestType value) { - return new JAXBElement(_KadasterV2GetHypothecairBerichtObjectByAdres_QNAME, KadasterV2GetHypothecairBerichtObjectByAdresRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetSBIDescriptionResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetSBIDescriptionResponse") - public JAXBElement createBusinessGetSBIDescriptionResponse(BusinessGetSBIDescriptionResponseType value) { - return new JAXBElement(_BusinessGetSBIDescriptionResponse_QNAME, BusinessGetSBIDescriptionResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserNotifyRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userNotify") - public JAXBElement createUserNotify(UserNotifyRequestType value) { - return new JAXBElement(_UserNotify_QNAME, UserNotifyRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerInformationAddressRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerInformationAddress") - public JAXBElement createRoutePlannerInformationAddress(RoutePlannerInformationAddressRequestType value) { - return new JAXBElement(_RoutePlannerInformationAddress_QNAME, RoutePlannerInformationAddressRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AreaCodeLookupRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "areaCodeLookup") - public JAXBElement createAreaCodeLookup(AreaCodeLookupRequestType value) { - return new JAXBElement(_AreaCodeLookup_QNAME, AreaCodeLookupRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbWorldbaseMarketingRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbWorldbaseMarketing") - public JAXBElement createDnbWorldbaseMarketing(DnbWorldbaseMarketingRequestType value) { - return new JAXBElement(_DnbWorldbaseMarketing_QNAME, DnbWorldbaseMarketingRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPostcodeRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPostcode") - public JAXBElement createKadasterHypothecairBerichtPostcode(KadasterHypothecairBerichtPostcodeRequestType value) { - return new JAXBElement(_KadasterHypothecairBerichtPostcode_QNAME, KadasterHypothecairBerichtPostcodeRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationInternationalAddressCoordinatesLatLonRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationInternationalAddressCoordinatesLatLon") - public JAXBElement createGeoLocationInternationalAddressCoordinatesLatLon(GeoLocationInternationalAddressCoordinatesLatLonRequestType value) { - return new JAXBElement(_GeoLocationInternationalAddressCoordinatesLatLon_QNAME, GeoLocationInternationalAddressCoordinatesLatLonRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOCostsInvestigationResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOCostsInvestigationResponse") - public JAXBElement createDutchBusinessUBOCostsInvestigationResponse(DutchBusinessUBOCostsInvestigationResponseType value) { - return new JAXBElement(_DutchBusinessUBOCostsInvestigationResponse_QNAME, DutchBusinessUBOCostsInvestigationResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchParametersRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchParameters") - public JAXBElement createDutchBusinessSearchParameters(DutchBusinessSearchParametersRequestType value) { - return new JAXBElement(_DutchBusinessSearchParameters_QNAME, DutchBusinessSearchParametersRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateGetChangedDossiersRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateGetChangedDossiers") - public JAXBElement createDutchBusinessUpdateGetChangedDossiers(DutchBusinessUpdateGetChangedDossiersRequestType value) { - return new JAXBElement(_DutchBusinessUpdateGetChangedDossiers_QNAME, DutchBusinessUpdateGetChangedDossiersRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateAddDossierRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateAddDossier") - public JAXBElement createBusinessUpdateAddDossier(BusinessUpdateAddDossierRequestType value) { - return new JAXBElement(_BusinessUpdateAddDossier_QNAME, BusinessUpdateAddDossierRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescription") - public JAXBElement createRoutePlannerDescription(RoutePlannerDescriptionRequestType value) { - return new JAXBElement(_RoutePlannerDescription_QNAME, RoutePlannerDescriptionRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MapViewRDResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "mapViewRDResponse") - public JAXBElement createMapViewRDResponse(MapViewRDResponseType value) { - return new JAXBElement(_MapViewRDResponse_QNAME, MapViewRDResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessBIKToSBIRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessBIKToSBI") - public JAXBElement createBusinessBIKToSBI(BusinessBIKToSBIRequestType value) { - return new JAXBElement(_BusinessBIKToSBI_QNAME, BusinessBIKToSBIRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEBasicTypeDataRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEBasicTypeData") - public JAXBElement createCarVWEBasicTypeData(CarVWEBasicTypeDataRequestType value) { - return new JAXBElement(_CarVWEBasicTypeData_QNAME, CarVWEBasicTypeDataRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryResponse") - public JAXBElement createDutchBusinessGetExtractHistoryResponse(DutchBusinessGetExtractHistoryResponseType value) { - return new JAXBElement(_DutchBusinessGetExtractHistoryResponse_QNAME, DutchBusinessGetExtractHistoryResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationLatLonToRDResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationLatLonToRDResponse") - public JAXBElement createGeoLocationLatLonToRDResponse(GeoLocationLatLonToRDResponseType value) { - return new JAXBElement(_GeoLocationLatLonToRDResponse_QNAME, GeoLocationLatLonToRDResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InsolvencySearchPublicationsByCoCNumberRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "insolvencySearchPublicationsByCoCNumber") - public JAXBElement createInsolvencySearchPublicationsByCoCNumber(InsolvencySearchPublicationsByCoCNumberRequestType value) { - return new JAXBElement(_InsolvencySearchPublicationsByCoCNumber_QNAME, InsolvencySearchPublicationsByCoCNumberRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPostcodeResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPostcodeResponse") - public JAXBElement createKadasterHypothecairBerichtPostcodeResponse(KadasterHypothecairBerichtPostcodeResponseType value) { - return new JAXBElement(_KadasterHypothecairBerichtPostcodeResponse_QNAME, KadasterHypothecairBerichtPostcodeResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountGetOrderTokenRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountGetOrderToken") - public JAXBElement createAccountGetOrderToken(AccountGetOrderTokenRequestType value) { - return new JAXBElement(_AccountGetOrderToken_QNAME, AccountGetOrderTokenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSBIToBIKRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSBIToBIK") - public JAXBElement createBusinessSBIToBIK(BusinessSBIToBIKRequestType value) { - return new JAXBElement(_BusinessSBIToBIK_QNAME, BusinessSBIToBIKRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractDocumentDataRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractDocumentData") - public JAXBElement createDutchBusinessGetExtractDocumentData(DutchBusinessGetExtractDocumentDataRequestType value) { - return new JAXBElement(_DutchBusinessGetExtractDocumentData_QNAME, DutchBusinessGetExtractDocumentDataRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbSearchReferenceV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbSearchReferenceV2Response") - public JAXBElement createDnbSearchReferenceV2Response(DnbSearchReferenceV2ResponseType value) { - return new JAXBElement(_DnbSearchReferenceV2Response_QNAME, DnbSearchReferenceV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerRDDescriptionCoordinatesRDRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerRDDescriptionCoordinatesRD") - public JAXBElement createRoutePlannerRDDescriptionCoordinatesRD(RoutePlannerRDDescriptionCoordinatesRDRequestType value) { - return new JAXBElement(_RoutePlannerRDDescriptionCoordinatesRD_QNAME, RoutePlannerRDDescriptionCoordinatesRDRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SepaMatchAccountHolderResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaMatchAccountHolderResponse") - public JAXBElement createSepaMatchAccountHolderResponse(SepaMatchAccountHolderResponseType value) { - return new JAXBElement(_SepaMatchAccountHolderResponse_QNAME, SepaMatchAccountHolderResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationAddressCoordinatesLatLonResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationAddressCoordinatesLatLonResponse") - public JAXBElement createGeoLocationAddressCoordinatesLatLonResponse(GeoLocationAddressCoordinatesLatLonResponseType value) { - return new JAXBElement(_GeoLocationAddressCoordinatesLatLonResponse_QNAME, GeoLocationAddressCoordinatesLatLonResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractDocumentResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractDocumentResponse") - public JAXBElement createDutchBusinessGetExtractDocumentResponse(DutchBusinessGetExtractDocumentResponseType value) { - return new JAXBElement(_DutchBusinessGetExtractDocumentResponse_QNAME, DutchBusinessGetExtractDocumentResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateGetDossiersRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateGetDossiers") - public JAXBElement createKvkUpdateGetDossiers(KvkUpdateGetDossiersRequestType value) { - return new JAXBElement(_KvkUpdateGetDossiers_QNAME, KvkUpdateGetDossiersRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbWorldbaseMarketingPlusLinkageResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbWorldbaseMarketingPlusLinkageResponse") - public JAXBElement createDnbWorldbaseMarketingPlusLinkageResponse(DnbWorldbaseMarketingPlusLinkageResponseType value) { - return new JAXBElement(_DnbWorldbaseMarketingPlusLinkageResponse_QNAME, DnbWorldbaseMarketingPlusLinkageResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataOptionsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataOptionsResponse") - public JAXBElement createCarRDWCarDataOptionsResponse(CarRDWCarDataOptionsResponseType value) { - return new JAXBElement(_CarRDWCarDataOptionsResponse_QNAME, CarRDWCarDataOptionsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetVehicleV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetVehicleV2Response") - public JAXBElement createDutchVehicleGetVehicleV2Response(DutchVehicleGetVehicleV2ResponseType value) { - return new JAXBElement(_DutchVehicleGetVehicleV2Response_QNAME, DutchVehicleGetVehicleV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchParametersRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchParameters") - public JAXBElement createBusinessSearchParameters(BusinessSearchParametersRequestType value) { - return new JAXBElement(_BusinessSearchParameters_QNAME, BusinessSearchParametersRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionDutchAddressResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionDutchAddressResponse") - public JAXBElement createRoutePlannerDescriptionDutchAddressResponse(RoutePlannerDescriptionDutchAddressResponseType value) { - return new JAXBElement(_RoutePlannerDescriptionDutchAddressResponse_QNAME, RoutePlannerDescriptionDutchAddressResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressProvinceListNeighborhoodsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressProvinceListNeighborhoods") - public JAXBElement createAddressProvinceListNeighborhoods(AddressProvinceListNeighborhoodsRequestType value) { - return new JAXBElement(_AddressProvinceListNeighborhoods_QNAME, AddressProvinceListNeighborhoodsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetDossierSBIRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetDossierSBI") - public JAXBElement createBusinessGetDossierSBI(BusinessGetDossierSBIRequestType value) { - return new JAXBElement(_BusinessGetDossierSBI_QNAME, BusinessGetDossierSBIRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataExtendedResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataExtendedResponse") - public JAXBElement createCarRDWCarDataExtendedResponse(CarRDWCarDataExtendedResponseType value) { - return new JAXBElement(_CarRDWCarDataExtendedResponse_QNAME, CarRDWCarDataExtendedResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InternationalAddressSearchInteractiveResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "internationalAddressSearchInteractiveResponse") - public JAXBElement createInternationalAddressSearchInteractiveResponse(InternationalAddressSearchInteractiveResponseType value) { - return new JAXBElement(_InternationalAddressSearchInteractiveResponse_QNAME, InternationalAddressSearchInteractiveResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOCheckInvestigationRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOCheckInvestigation") - public JAXBElement createDutchBusinessUBOCheckInvestigation(DutchBusinessUBOCheckInvestigationRequestType value) { - return new JAXBElement(_DutchBusinessUBOCheckInvestigation_QNAME, DutchBusinessUBOCheckInvestigationRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountViewV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountViewV2") - public JAXBElement createAccountViewV2(AccountViewV2RequestType value) { - return new JAXBElement(_AccountViewV2_QNAME, AccountViewV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VatValidateRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "vatValidate") - public JAXBElement createVatValidate(VatValidateRequestType value) { - return new JAXBElement(_VatValidate_QNAME, VatValidateRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbQuickCheckRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbQuickCheck") - public JAXBElement createDnbQuickCheck(DnbQuickCheckRequestType value) { - return new JAXBElement(_DnbQuickCheck_QNAME, DnbQuickCheckRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKadastraleKaartPostcodeResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKadastraleKaartPostcodeResponse") - public JAXBElement createKadasterKadastraleKaartPostcodeResponse(KadasterKadastraleKaartPostcodeResponseType value) { - return new JAXBElement(_KadasterKadastraleKaartPostcodeResponse_QNAME, KadasterKadastraleKaartPostcodeResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateGetDossiersRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateGetDossiers") - public JAXBElement createDutchBusinessUpdateGetDossiers(DutchBusinessUpdateGetDossiersRequestType value) { - return new JAXBElement(_DutchBusinessUpdateGetDossiers_QNAME, DutchBusinessUpdateGetDossiersRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditSearchIdentificationResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditSearchIdentificationResponse") - public JAXBElement createGraydonCreditSearchIdentificationResponse(GraydonCreditSearchIdentificationResponseType value) { - return new JAXBElement(_GraydonCreditSearchIdentificationResponse_QNAME, GraydonCreditSearchIdentificationResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkSearchPostcodeRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkSearchPostcode") - public JAXBElement createKvkSearchPostcode(KvkSearchPostcodeRequestType value) { - return new JAXBElement(_KvkSearchPostcode_QNAME, KvkSearchPostcodeRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountEditHostRestrictionsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountEditHostRestrictionsResponse") - public JAXBElement createAccountEditHostRestrictionsResponse(AccountEditHostRestrictionsResponseType value) { - return new JAXBElement(_AccountEditHostRestrictionsResponse_QNAME, AccountEditHostRestrictionsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressPerceelParameterSearchRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressPerceelParameterSearch") - public JAXBElement createAddressPerceelParameterSearch(AddressPerceelParameterSearchRequestType value) { - return new JAXBElement(_AddressPerceelParameterSearch_QNAME, AddressPerceelParameterSearchRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetLegalExtractDocumentDataV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetLegalExtractDocumentDataV2Response") - public JAXBElement createDutchBusinessGetLegalExtractDocumentDataV2Response(DutchBusinessGetLegalExtractDocumentDataV2ResponseType value) { - return new JAXBElement(_DutchBusinessGetLegalExtractDocumentDataV2Response_QNAME, DutchBusinessGetLegalExtractDocumentDataV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkSearchParametersRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkSearchParameters") - public JAXBElement createKvkSearchParameters(KvkSearchParametersRequestType value) { - return new JAXBElement(_KvkSearchParameters_QNAME, KvkSearchParametersRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link HeaderLoginType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "HeaderLogin") - public JAXBElement createHeaderLogin(HeaderLoginType value) { - return new JAXBElement(_HeaderLogin_QNAME, HeaderLoginType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeSearchResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeSearchResponse") - public JAXBElement createCreditsafeSearchResponse(CreditsafeSearchResponseType value) { - return new JAXBElement(_CreditsafeSearchResponse_QNAME, CreditsafeSearchResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryDocumentDataV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryDocumentDataV2Response") - public JAXBElement createDutchBusinessGetExtractHistoryDocumentDataV2Response(DutchBusinessGetExtractHistoryDocumentDataV2ResponseType value) { - return new JAXBElement(_DutchBusinessGetExtractHistoryDocumentDataV2Response_QNAME, DutchBusinessGetExtractHistoryDocumentDataV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchParametersV3RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchParametersV3") - public JAXBElement createBusinessSearchParametersV3(BusinessSearchParametersV3RequestType value) { - return new JAXBElement(_BusinessSearchParametersV3_QNAME, BusinessSearchParametersV3RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchParametersV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchParametersV2") - public JAXBElement createBusinessSearchParametersV2(BusinessSearchParametersV2RequestType value) { - return new JAXBElement(_BusinessSearchParametersV2_QNAME, BusinessSearchParametersV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MapViewInternationalLatLonResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "mapViewInternationalLatLonResponse") - public JAXBElement createMapViewInternationalLatLonResponse(MapViewInternationalLatLonResponseType value) { - return new JAXBElement(_MapViewInternationalLatLonResponse_QNAME, MapViewInternationalLatLonResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BelgianBusinessGetDossierResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "belgianBusinessGetDossierResponse") - public JAXBElement createBelgianBusinessGetDossierResponse(BelgianBusinessGetDossierResponseType value) { - return new JAXBElement(_BelgianBusinessGetDossierResponse_QNAME, BelgianBusinessGetDossierResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeSearchV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeSearchV2Response") - public JAXBElement createCreditsafeSearchV2Response(CreditsafeSearchV2ResponseType value) { - return new JAXBElement(_CreditsafeSearchV2Response_QNAME, CreditsafeSearchV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressCitySearchV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressCitySearchV2") - public JAXBElement createAddressCitySearchV2(AddressCitySearchV2RequestType value) { - return new JAXBElement(_AddressCitySearchV2_QNAME, AddressCitySearchV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateAddDossierRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateAddDossier") - public JAXBElement createKvkUpdateAddDossier(KvkUpdateAddDossierRequestType value) { - return new JAXBElement(_KvkUpdateAddDossier_QNAME, KvkUpdateAddDossierRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountViewBalanceRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountViewBalance") - public JAXBElement createAccountViewBalance(AccountViewBalanceRequestType value) { - return new JAXBElement(_AccountViewBalance_QNAME, AccountViewBalanceRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchSelectionRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchSelection") - public JAXBElement createBusinessSearchSelection(BusinessSearchSelectionRequestType value) { - return new JAXBElement(_BusinessSearchSelection_QNAME, BusinessSearchSelectionRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateRemoveDossierResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateRemoveDossierResponse") - public JAXBElement createDutchBusinessUpdateRemoveDossierResponse(DutchBusinessUpdateRemoveDossierResponseType value) { - return new JAXBElement(_DutchBusinessUpdateRemoveDossierResponse_QNAME, DutchBusinessUpdateRemoveDossierResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "errorcode") - public JAXBElement createErrorcode(String value) { - return new JAXBElement(_Errorcode_QNAME, String.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeMonitorRemoveCompanyResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeMonitorRemoveCompanyResponse") - public JAXBElement createCreditsafeMonitorRemoveCompanyResponse(CreditsafeMonitorRemoveCompanyResponseType value) { - return new JAXBElement(_CreditsafeMonitorRemoveCompanyResponse_QNAME, CreditsafeMonitorRemoveCompanyResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ComplianceGetBusinessRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "complianceGetBusiness") - public JAXBElement createComplianceGetBusiness(ComplianceGetBusinessRequestType value) { - return new JAXBElement(_ComplianceGetBusiness_QNAME, ComplianceGetBusinessRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKoopsommenOverzichtV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKoopsommenOverzichtV2Response") - public JAXBElement createKadasterKoopsommenOverzichtV2Response(KadasterKoopsommenOverzichtV2ResponseType value) { - return new JAXBElement(_KadasterKoopsommenOverzichtV2Response_QNAME, KadasterKoopsommenOverzichtV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetDossierExtendedRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetDossierExtended") - public JAXBElement createBusinessGetDossierExtended(BusinessGetDossierExtendedRequestType value) { - return new JAXBElement(_BusinessGetDossierExtended_QNAME, BusinessGetDossierExtendedRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetBronDocumentRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetBronDocument") - public JAXBElement createKadasterV2GetBronDocument(KadasterV2GetBronDocumentRequestType value) { - return new JAXBElement(_KadasterV2GetBronDocument_QNAME, KadasterV2GetBronDocumentRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateCheckDossierRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateCheckDossier") - public JAXBElement createKvkUpdateCheckDossier(KvkUpdateCheckDossierRequestType value) { - return new JAXBElement(_KvkUpdateCheckDossier_QNAME, KvkUpdateCheckDossierRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MapViewLatLonRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "mapViewLatLon") - public JAXBElement createMapViewLatLon(MapViewLatLonRequestType value) { - return new JAXBElement(_MapViewLatLon_QNAME, MapViewLatLonRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateGetChangedDossiersResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateGetChangedDossiersResponse") - public JAXBElement createBusinessUpdateGetChangedDossiersResponse(BusinessUpdateGetChangedDossiersResponseType value) { - return new JAXBElement(_BusinessUpdateGetChangedDossiersResponse_QNAME, BusinessUpdateGetChangedDossiersResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditGetReportRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditGetReport") - public JAXBElement createGraydonCreditGetReport(GraydonCreditGetReportRequestType value) { - return new JAXBElement(_GraydonCreditGetReport_QNAME, GraydonCreditGetReportRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressProvinceListResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressProvinceListResponse") - public JAXBElement createAddressProvinceListResponse(AddressProvinceListResponseType value) { - return new JAXBElement(_AddressProvinceListResponse_QNAME, AddressProvinceListResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeMonitorRemoveCompanyRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeMonitorRemoveCompany") - public JAXBElement createCreditsafeMonitorRemoveCompany(CreditsafeMonitorRemoveCompanyRequestType value) { - return new JAXBElement(_CreditsafeMonitorRemoveCompany_QNAME, CreditsafeMonitorRemoveCompanyRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeSearchRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeSearch") - public JAXBElement createCreditsafeSearch(CreditsafeSearchRequestType value) { - return new JAXBElement(_CreditsafeSearch_QNAME, CreditsafeSearchRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetPurchaseReferenceRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetPurchaseReference") - public JAXBElement createDutchVehicleGetPurchaseReference(DutchVehicleGetPurchaseReferenceRequestType value) { - return new JAXBElement(_DutchVehicleGetPurchaseReference_QNAME, DutchVehicleGetPurchaseReferenceRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountEditV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountEditV2Response") - public JAXBElement createAccountEditV2Response(AccountEditV2ResponseType value) { - return new JAXBElement(_AccountEditV2Response_QNAME, AccountEditV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbBusinessVerificationResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbBusinessVerificationResponse") - public JAXBElement createDnbBusinessVerificationResponse(DnbBusinessVerificationResponseType value) { - return new JAXBElement(_DnbBusinessVerificationResponse_QNAME, DnbBusinessVerificationResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressDistrictListNeighborhoodsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressDistrictListNeighborhoodsResponse") - public JAXBElement createAddressDistrictListNeighborhoodsResponse(AddressDistrictListNeighborhoodsResponseType value) { - return new JAXBElement(_AddressDistrictListNeighborhoodsResponse_QNAME, AddressDistrictListNeighborhoodsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetOwnerHistoryResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetOwnerHistoryResponse") - public JAXBElement createDutchVehicleGetOwnerHistoryResponse(DutchVehicleGetOwnerHistoryResponseType value) { - return new JAXBElement(_DutchVehicleGetOwnerHistoryResponse_QNAME, DutchVehicleGetOwnerHistoryResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetHypothecairBerichtObjectByAdresResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetHypothecairBerichtObjectByAdresResponse") - public JAXBElement createKadasterV2GetHypothecairBerichtObjectByAdresResponse(KadasterV2GetHypothecairBerichtObjectByAdresResponseType value) { - return new JAXBElement(_KadasterV2GetHypothecairBerichtObjectByAdresResponse_QNAME, KadasterV2GetHypothecairBerichtObjectByAdresResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationInternationalPostcodeCoordinatesLatLonResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationInternationalPostcodeCoordinatesLatLonResponse") - public JAXBElement createGeoLocationInternationalPostcodeCoordinatesLatLonResponse(GeoLocationInternationalPostcodeCoordinatesLatLonResponseType value) { - return new JAXBElement(_GeoLocationInternationalPostcodeCoordinatesLatLonResponse_QNAME, GeoLocationInternationalPostcodeCoordinatesLatLonResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MapViewPostcodeV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "mapViewPostcodeV2") - public JAXBElement createMapViewPostcodeV2(MapViewPostcodeV2RequestType value) { - return new JAXBElement(_MapViewPostcodeV2_QNAME, MapViewPostcodeV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkSearchDossierNumberRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkSearchDossierNumber") - public JAXBElement createKvkSearchDossierNumber(KvkSearchDossierNumberRequestType value) { - return new JAXBElement(_KvkSearchDossierNumber_QNAME, KvkSearchDossierNumberRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserEditExtendedV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userEditExtendedV2Response") - public JAXBElement createUserEditExtendedV2Response(UserEditExtendedV2ResponseType value) { - return new JAXBElement(_UserEditExtendedV2Response_QNAME, UserEditExtendedV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressDistrictListCitiesResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressDistrictListCitiesResponse") - public JAXBElement createAddressDistrictListCitiesResponse(AddressDistrictListCitiesResponseType value) { - return new JAXBElement(_AddressDistrictListCitiesResponse_QNAME, AddressDistrictListCitiesResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetLegalExtractDocumentDataV3RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetLegalExtractDocumentDataV3") - public JAXBElement createDutchBusinessGetLegalExtractDocumentDataV3(DutchBusinessGetLegalExtractDocumentDataV3RequestType value) { - return new JAXBElement(_DutchBusinessGetLegalExtractDocumentDataV3_QNAME, DutchBusinessGetLegalExtractDocumentDataV3RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetMarketValueResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetMarketValueResponse") - public JAXBElement createDutchVehicleGetMarketValueResponse(DutchVehicleGetMarketValueResponseType value) { - return new JAXBElement(_DutchVehicleGetMarketValueResponse_QNAME, DutchVehicleGetMarketValueResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AreaCodeLookupResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "areaCodeLookupResponse") - public JAXBElement createAreaCodeLookupResponse(AreaCodeLookupResponseType value) { - return new JAXBElement(_AreaCodeLookupResponse_QNAME, AreaCodeLookupResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEVersionPriceResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEVersionPriceResponse") - public JAXBElement createCarVWEVersionPriceResponse(CarVWEVersionPriceResponseType value) { - return new JAXBElement(_CarVWEVersionPriceResponse_QNAME, CarVWEVersionPriceResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetLegalExtractDocumentDataV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetLegalExtractDocumentDataV2") - public JAXBElement createDutchBusinessGetLegalExtractDocumentDataV2(DutchBusinessGetLegalExtractDocumentDataV2RequestType value) { - return new JAXBElement(_DutchBusinessGetLegalExtractDocumentDataV2_QNAME, DutchBusinessGetLegalExtractDocumentDataV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserRemoveRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userRemove") - public JAXBElement createUserRemove(UserRemoveRequestType value) { - return new JAXBElement(_UserRemove_QNAME, UserRemoveRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserViewBalanceResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userViewBalanceResponse") - public JAXBElement createUserViewBalanceResponse(UserViewBalanceResponseType value) { - return new JAXBElement(_UserViewBalanceResponse_QNAME, UserViewBalanceResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarData") - public JAXBElement createCarRDWCarData(CarRDWCarDataRequestType value) { - return new JAXBElement(_CarRDWCarData_QNAME, CarRDWCarDataRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserAddGroupRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userAddGroup") - public JAXBElement createUserAddGroup(UserAddGroupRequestType value) { - return new JAXBElement(_UserAddGroup_QNAME, UserAddGroupRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetVehicleResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetVehicleResponse") - public JAXBElement createDutchVehicleGetVehicleResponse(DutchVehicleGetVehicleResponseType value) { - return new JAXBElement(_DutchVehicleGetVehicleResponse_QNAME, DutchVehicleGetVehicleResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistory") - public JAXBElement createDutchBusinessGetExtractHistory(DutchBusinessGetExtractHistoryRequestType value) { - return new JAXBElement(_DutchBusinessGetExtractHistory_QNAME, DutchBusinessGetExtractHistoryRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtDocumentPostcodeRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtDocumentPostcode") - public JAXBElement createKadasterEigendomsBerichtDocumentPostcode(KadasterEigendomsBerichtDocumentPostcodeRequestType value) { - return new JAXBElement(_KadasterEigendomsBerichtDocumentPostcode_QNAME, KadasterEigendomsBerichtDocumentPostcodeRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VatViesProxyCheckVatRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "vatViesProxyCheckVat") - public JAXBElement createVatViesProxyCheckVat(VatViesProxyCheckVatRequestType value) { - return new JAXBElement(_VatViesProxyCheckVat_QNAME, VatViesProxyCheckVatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbSearchReferenceRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbSearchReference") - public JAXBElement createDnbSearchReference(DnbSearchReferenceRequestType value) { - return new JAXBElement(_DnbSearchReference_QNAME, DnbSearchReferenceRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionCoordinatesRDRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionCoordinatesRD") - public JAXBElement createRoutePlannerDescriptionCoordinatesRD(RoutePlannerDescriptionCoordinatesRDRequestType value) { - return new JAXBElement(_RoutePlannerDescriptionCoordinatesRD_QNAME, RoutePlannerDescriptionCoordinatesRDRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SepaConvertBasicBankAccountNumberResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaConvertBasicBankAccountNumberResponse") - public JAXBElement createSepaConvertBasicBankAccountNumberResponse(SepaConvertBasicBankAccountNumberResponseType value) { - return new JAXBElement(_SepaConvertBasicBankAccountNumberResponse_QNAME, SepaConvertBasicBankAccountNumberResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetOwnerHistoryRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetOwnerHistory") - public JAXBElement createDutchVehicleGetOwnerHistory(DutchVehicleGetOwnerHistoryRequestType value) { - return new JAXBElement(_DutchVehicleGetOwnerHistory_QNAME, DutchVehicleGetOwnerHistoryRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKadastraleKaartPerceelRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKadastraleKaartPerceel") - public JAXBElement createKadasterKadastraleKaartPerceel(KadasterKadastraleKaartPerceelRequestType value) { - return new JAXBElement(_KadasterKadastraleKaartPerceel_QNAME, KadasterKadastraleKaartPerceelRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbWorldbaseMarketingResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbWorldbaseMarketingResponse") - public JAXBElement createDnbWorldbaseMarketingResponse(DnbWorldbaseMarketingResponseType value) { - return new JAXBElement(_DnbWorldbaseMarketingResponse_QNAME, DnbWorldbaseMarketingResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ComplianceGetPersonResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "complianceGetPersonResponse") - public JAXBElement createComplianceGetPersonResponse(ComplianceGetPersonResponseType value) { - return new JAXBElement(_ComplianceGetPersonResponse_QNAME, ComplianceGetPersonResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeMonitorGetUpdatedCompaniesResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeMonitorGetUpdatedCompaniesResponse") - public JAXBElement createCreditsafeMonitorGetUpdatedCompaniesResponse(CreditsafeMonitorGetUpdatedCompaniesResponseType value) { - return new JAXBElement(_CreditsafeMonitorGetUpdatedCompaniesResponse_QNAME, CreditsafeMonitorGetUpdatedCompaniesResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerRDInformationRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerRDInformation") - public JAXBElement createRoutePlannerRDInformation(RoutePlannerRDInformationRequestType value) { - return new JAXBElement(_RoutePlannerRDInformation_QNAME, RoutePlannerRDInformationRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateCheckDossierRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateCheckDossier") - public JAXBElement createDutchBusinessUpdateCheckDossier(DutchBusinessUpdateCheckDossierRequestType value) { - return new JAXBElement(_DutchBusinessUpdateCheckDossier_QNAME, DutchBusinessUpdateCheckDossierRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractDocumentDataV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractDocumentDataV2Response") - public JAXBElement createDutchBusinessGetExtractDocumentDataV2Response(DutchBusinessGetExtractDocumentDataV2ResponseType value) { - return new JAXBElement(_DutchBusinessGetExtractDocumentDataV2Response_QNAME, DutchBusinessGetExtractDocumentDataV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksPostcodeSearchRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksPostcodeSearch") - public JAXBElement createAddressReeksPostcodeSearch(AddressReeksPostcodeSearchRequestType value) { - return new JAXBElement(_AddressReeksPostcodeSearch_QNAME, AddressReeksPostcodeSearchRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditSearchPostcodeResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditSearchPostcodeResponse") - public JAXBElement createGraydonCreditSearchPostcodeResponse(GraydonCreditSearchPostcodeResponseType value) { - return new JAXBElement(_GraydonCreditSearchPostcodeResponse_QNAME, GraydonCreditSearchPostcodeResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AreaCodePostcodeLookupResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "areaCodePostcodeLookupResponse") - public JAXBElement createAreaCodePostcodeLookupResponse(AreaCodePostcodeLookupResponseType value) { - return new JAXBElement(_AreaCodePostcodeLookupResponse_QNAME, AreaCodePostcodeLookupResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SepaIbanDetailsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaIbanDetailsResponse") - public JAXBElement createSepaIbanDetailsResponse(SepaIbanDetailsResponseType value) { - return new JAXBElement(_SepaIbanDetailsResponse_QNAME, SepaIbanDetailsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditQuickscanRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditQuickscan") - public JAXBElement createGraydonCreditQuickscan(GraydonCreditQuickscanRequestType value) { - return new JAXBElement(_GraydonCreditQuickscan_QNAME, GraydonCreditQuickscanRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationInternationalLatLonToAddressResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationInternationalLatLonToAddressResponse") - public JAXBElement createGeoLocationInternationalLatLonToAddressResponse(GeoLocationInternationalLatLonToAddressResponseType value) { - return new JAXBElement(_GeoLocationInternationalLatLonToAddressResponse_QNAME, GeoLocationInternationalLatLonToAddressResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountGetCreationStatusResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountGetCreationStatusResponse") - public JAXBElement createAccountGetCreationStatusResponse(AccountGetCreationStatusResponseType value) { - return new JAXBElement(_AccountGetCreationStatusResponse_QNAME, AccountGetCreationStatusResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetUittrekselKadastraleKaartByObjectId") - public JAXBElement createKadasterV2GetUittrekselKadastraleKaartByObjectId(KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType value) { - return new JAXBElement(_KadasterV2GetUittrekselKadastraleKaartByObjectId_QNAME, KadasterV2GetUittrekselKadastraleKaartByObjectIdRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserRemoveResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userRemoveResponse") - public JAXBElement createUserRemoveResponse(UserRemoveResponseType value) { - return new JAXBElement(_UserRemoveResponse_QNAME, UserRemoveResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MetaGetServiceResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "metaGetServiceResponse") - public JAXBElement createMetaGetServiceResponse(MetaGetServiceResponseType value) { - return new JAXBElement(_MetaGetServiceResponse_QNAME, MetaGetServiceResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetLegalEntityResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetLegalEntityResponse") - public JAXBElement createDutchBusinessGetLegalEntityResponse(DutchBusinessGetLegalEntityResponseType value) { - return new JAXBElement(_DutchBusinessGetLegalEntityResponse_QNAME, DutchBusinessGetLegalEntityResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationNeighborhoodCoordinatesLatLonResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationNeighborhoodCoordinatesLatLonResponse") - public JAXBElement createGeoLocationNeighborhoodCoordinatesLatLonResponse(GeoLocationNeighborhoodCoordinatesLatLonResponseType value) { - return new JAXBElement(_GeoLocationNeighborhoodCoordinatesLatLonResponse_QNAME, GeoLocationNeighborhoodCoordinatesLatLonResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateRemoveDossierRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateRemoveDossier") - public JAXBElement createDutchBusinessUpdateRemoveDossier(DutchBusinessUpdateRemoveDossierRequestType value) { - return new JAXBElement(_DutchBusinessUpdateRemoveDossier_QNAME, DutchBusinessUpdateRemoveDossierRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressNeighborhoodPhraseSearchResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressNeighborhoodPhraseSearchResponse") - public JAXBElement createAddressNeighborhoodPhraseSearchResponse(AddressNeighborhoodPhraseSearchResponseType value) { - return new JAXBElement(_AddressNeighborhoodPhraseSearchResponse_QNAME, AddressNeighborhoodPhraseSearchResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEListBrandsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEListBrands") - public JAXBElement createCarVWEListBrands(CarVWEListBrandsRequestType value) { - return new JAXBElement(_CarVWEListBrands_QNAME, CarVWEListBrandsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchEstablishmentsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchEstablishmentsResponse") - public JAXBElement createDutchBusinessSearchEstablishmentsResponse(DutchBusinessSearchEstablishmentsResponseType value) { - return new JAXBElement(_DutchBusinessSearchEstablishmentsResponse_QNAME, DutchBusinessSearchEstablishmentsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationRDToPostcodeResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationRDToPostcodeResponse") - public JAXBElement createGeoLocationRDToPostcodeResponse(GeoLocationRDToPostcodeResponseType value) { - return new JAXBElement(_GeoLocationRDToPostcodeResponse_QNAME, GeoLocationRDToPostcodeResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtDocumentPerceelRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtDocumentPerceel") - public JAXBElement createKadasterEigendomsBerichtDocumentPerceel(KadasterEigendomsBerichtDocumentPerceelRequestType value) { - return new JAXBElement(_KadasterEigendomsBerichtDocumentPerceel_QNAME, KadasterEigendomsBerichtDocumentPerceelRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserSessionRemoveRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userSessionRemove") - public JAXBElement createUserSessionRemove(UserSessionRemoveRequestType value) { - return new JAXBElement(_UserSessionRemove_QNAME, UserSessionRemoveRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetUittrekselKadastraleKaartByAdresResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetUittrekselKadastraleKaartByAdresResponse") - public JAXBElement createKadasterV2GetUittrekselKadastraleKaartByAdresResponse(KadasterV2GetUittrekselKadastraleKaartByAdresResponseType value) { - return new JAXBElement(_KadasterV2GetUittrekselKadastraleKaartByAdresResponse_QNAME, KadasterV2GetUittrekselKadastraleKaartByAdresResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchParametersResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchParametersResponse") - public JAXBElement createDutchBusinessSearchParametersResponse(DutchBusinessSearchParametersResponseType value) { - return new JAXBElement(_DutchBusinessSearchParametersResponse_QNAME, DutchBusinessSearchParametersResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link VatViesProxyCheckVatResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "vatViesProxyCheckVatResponse") - public JAXBElement createVatViesProxyCheckVatResponse(VatViesProxyCheckVatResponseType value) { - return new JAXBElement(_VatViesProxyCheckVatResponse_QNAME, VatViesProxyCheckVatResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DriveInfoDistanceLookupRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "driveInfoDistanceLookup") - public JAXBElement createDriveInfoDistanceLookup(DriveInfoDistanceLookupRequestType value) { - return new JAXBElement(_DriveInfoDistanceLookup_QNAME, DriveInfoDistanceLookupRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditRatingsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditRatingsResponse") - public JAXBElement createGraydonCreditRatingsResponse(GraydonCreditRatingsResponseType value) { - return new JAXBElement(_GraydonCreditRatingsResponse_QNAME, GraydonCreditRatingsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchParametersV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchParametersV2Response") - public JAXBElement createBusinessSearchParametersV2Response(BusinessSearchParametersV2ResponseType value) { - return new JAXBElement(_BusinessSearchParametersV2Response_QNAME, BusinessSearchParametersV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerEUDescriptionResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerEUDescriptionResponse") - public JAXBElement createRoutePlannerEUDescriptionResponse(RoutePlannerEUDescriptionResponseType value) { - return new JAXBElement(_RoutePlannerEUDescriptionResponse_QNAME, RoutePlannerEUDescriptionResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserEditV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userEditV2") - public JAXBElement createUserEditV2(UserEditV2RequestType value) { - return new JAXBElement(_UserEditV2_QNAME, UserEditV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchNameRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchName") - public JAXBElement createBusinessSearchName(BusinessSearchNameRequestType value) { - return new JAXBElement(_BusinessSearchName_QNAME, BusinessSearchNameRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InsolvencySearchPublicationsByCoCNumberResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "insolvencySearchPublicationsByCoCNumberResponse") - public JAXBElement createInsolvencySearchPublicationsByCoCNumberResponse(InsolvencySearchPublicationsByCoCNumberResponseType value) { - return new JAXBElement(_InsolvencySearchPublicationsByCoCNumberResponse_QNAME, InsolvencySearchPublicationsByCoCNumberResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEListVersionsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEListVersionsResponse") - public JAXBElement createCarVWEListVersionsResponse(CarVWEListVersionsResponseType value) { - return new JAXBElement(_CarVWEListVersionsResponse_QNAME, CarVWEListVersionsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MetaGetMethodResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "metaGetMethodResponse") - public JAXBElement createMetaGetMethodResponse(MetaGetMethodResponseType value) { - return new JAXBElement(_MetaGetMethodResponse_QNAME, MetaGetMethodResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetConcernRelationsDetailsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetConcernRelationsDetailsResponse") - public JAXBElement createDutchBusinessGetConcernRelationsDetailsResponse(DutchBusinessGetConcernRelationsDetailsResponseType value) { - return new JAXBElement(_DutchBusinessGetConcernRelationsDetailsResponse_QNAME, DutchBusinessGetConcernRelationsDetailsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationInternationalLatLonToAddressRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationInternationalLatLonToAddress") - public JAXBElement createGeoLocationInternationalLatLonToAddress(GeoLocationInternationalLatLonToAddressRequestType value) { - return new JAXBElement(_GeoLocationInternationalLatLonToAddress_QNAME, GeoLocationInternationalLatLonToAddressRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LogoutResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "logoutResponse") - public JAXBElement createLogoutResponse(LogoutResponseType value) { - return new JAXBElement(_LogoutResponse_QNAME, LogoutResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOClassifyInvestigationResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOClassifyInvestigationResponse") - public JAXBElement createDutchBusinessUBOClassifyInvestigationResponse(DutchBusinessUBOClassifyInvestigationResponseType value) { - return new JAXBElement(_DutchBusinessUBOClassifyInvestigationResponse_QNAME, DutchBusinessUBOClassifyInvestigationResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksFullParameterSearchRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksFullParameterSearch") - public JAXBElement createAddressReeksFullParameterSearch(AddressReeksFullParameterSearchRequestType value) { - return new JAXBElement(_AddressReeksFullParameterSearch_QNAME, AddressReeksFullParameterSearchRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetUittrekselKadastraleKaartByAdresRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetUittrekselKadastraleKaartByAdres") - public JAXBElement createKadasterV2GetUittrekselKadastraleKaartByAdres(KadasterV2GetUittrekselKadastraleKaartByAdresRequestType value) { - return new JAXBElement(_KadasterV2GetUittrekselKadastraleKaartByAdres_QNAME, KadasterV2GetUittrekselKadastraleKaartByAdresRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKoopsommenOverzichtRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKoopsommenOverzicht") - public JAXBElement createKadasterKoopsommenOverzicht(KadasterKoopsommenOverzichtRequestType value) { - return new JAXBElement(_KadasterKoopsommenOverzicht_QNAME, KadasterKoopsommenOverzichtRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AreaCodePostcodeLookupRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "areaCodePostcodeLookup") - public JAXBElement createAreaCodePostcodeLookup(AreaCodePostcodeLookupRequestType value) { - return new JAXBElement(_AreaCodePostcodeLookup_QNAME, AreaCodePostcodeLookupRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressProvinceListDistrictsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressProvinceListDistricts") - public JAXBElement createAddressProvinceListDistricts(AddressProvinceListDistrictsRequestType value) { - return new JAXBElement(_AddressProvinceListDistricts_QNAME, AddressProvinceListDistrictsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchNameResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchNameResponse") - public JAXBElement createBusinessSearchNameResponse(BusinessSearchNameResponseType value) { - return new JAXBElement(_BusinessSearchNameResponse_QNAME, BusinessSearchNameResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditSearchIdentificationRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditSearchIdentification") - public JAXBElement createGraydonCreditSearchIdentification(GraydonCreditSearchIdentificationRequestType value) { - return new JAXBElement(_GraydonCreditSearchIdentification_QNAME, GraydonCreditSearchIdentificationRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPerceelRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPerceel") - public JAXBElement createKadasterHypothecairBerichtPerceel(KadasterHypothecairBerichtPerceelRequestType value) { - return new JAXBElement(_KadasterHypothecairBerichtPerceel_QNAME, KadasterHypothecairBerichtPerceelRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchAddressResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchAddressResponse") - public JAXBElement createBusinessSearchAddressResponse(BusinessSearchAddressResponseType value) { - return new JAXBElement(_BusinessSearchAddressResponse_QNAME, BusinessSearchAddressResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SepaValidateInternationalBankAccountNumberFormatRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaValidateInternationalBankAccountNumberFormat") - public JAXBElement createSepaValidateInternationalBankAccountNumberFormat(SepaValidateInternationalBankAccountNumberFormatRequestType value) { - return new JAXBElement(_SepaValidateInternationalBankAccountNumberFormat_QNAME, SepaValidateInternationalBankAccountNumberFormatRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link EdrGetScoreResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "edrGetScoreResponse") - public JAXBElement createEdrGetScoreResponse(EdrGetScoreResponseType value) { - return new JAXBElement(_EdrGetScoreResponse_QNAME, EdrGetScoreResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RiskCheckGetRiskPersonCompanyReportRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "riskCheckGetRiskPersonCompanyReport") - public JAXBElement createRiskCheckGetRiskPersonCompanyReport(RiskCheckGetRiskPersonCompanyReportRequestType value) { - return new JAXBElement(_RiskCheckGetRiskPersonCompanyReport_QNAME, RiskCheckGetRiskPersonCompanyReportRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbEnterpriseManagementRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbEnterpriseManagement") - public JAXBElement createDnbEnterpriseManagement(DnbEnterpriseManagementRequestType value) { - return new JAXBElement(_DnbEnterpriseManagement_QNAME, DnbEnterpriseManagementRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetOrganizationTreeRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetOrganizationTree") - public JAXBElement createDutchBusinessGetOrganizationTree(DutchBusinessGetOrganizationTreeRequestType value) { - return new JAXBElement(_DutchBusinessGetOrganizationTree_QNAME, DutchBusinessGetOrganizationTreeRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetEstablishmentNumberResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetEstablishmentNumberResponse") - public JAXBElement createBusinessGetEstablishmentNumberResponse(BusinessGetEstablishmentNumberResponseType value) { - return new JAXBElement(_BusinessGetEstablishmentNumberResponse_QNAME, BusinessGetEstablishmentNumberResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEPhotosRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEPhotos") - public JAXBElement createCarVWEPhotos(CarVWEPhotosRequestType value) { - return new JAXBElement(_CarVWEPhotos_QNAME, CarVWEPhotosRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetLeiRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetLei") - public JAXBElement createDutchBusinessGetLei(DutchBusinessGetLeiRequestType value) { - return new JAXBElement(_DutchBusinessGetLei_QNAME, DutchBusinessGetLeiRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationLatLonToAddressV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationLatLonToAddressV2") - public JAXBElement createGeoLocationLatLonToAddressV2(GeoLocationLatLonToAddressV2RequestType value) { - return new JAXBElement(_GeoLocationLatLonToAddressV2_QNAME, GeoLocationLatLonToAddressV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AreaCodeToNeighborhoodcodeRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "areaCodeToNeighborhoodcode") - public JAXBElement createAreaCodeToNeighborhoodcode(AreaCodeToNeighborhoodcodeRequestType value) { - return new JAXBElement(_AreaCodeToNeighborhoodcode_QNAME, AreaCodeToNeighborhoodcodeRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountGetCreationTokenRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountGetCreationToken") - public JAXBElement createAccountGetCreationToken(AccountGetCreationTokenRequestType value) { - return new JAXBElement(_AccountGetCreationToken_QNAME, AccountGetCreationTokenRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link EdrGetScoreRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "edrGetScore") - public JAXBElement createEdrGetScore(EdrGetScoreRequestType value) { - return new JAXBElement(_EdrGetScore_QNAME, EdrGetScoreRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerRDInformationResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerRDInformationResponse") - public JAXBElement createRoutePlannerRDInformationResponse(RoutePlannerRDInformationResponseType value) { - return new JAXBElement(_RoutePlannerRDInformationResponse_QNAME, RoutePlannerRDInformationResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchParametersV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchParametersV2") - public JAXBElement createDutchBusinessSearchParametersV2(DutchBusinessSearchParametersV2RequestType value) { - return new JAXBElement(_DutchBusinessSearchParametersV2_QNAME, DutchBusinessSearchParametersV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationLatLonToRDRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationLatLonToRD") - public JAXBElement createGeoLocationLatLonToRD(GeoLocationLatLonToRDRequestType value) { - return new JAXBElement(_GeoLocationLatLonToRD_QNAME, GeoLocationLatLonToRDRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerEUDescriptionRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerEUDescription") - public JAXBElement createRoutePlannerEUDescription(RoutePlannerEUDescriptionRequestType value) { - return new JAXBElement(_RoutePlannerEUDescription_QNAME, RoutePlannerEUDescriptionRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationLatLonToPostcodeRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationLatLonToPostcode") - public JAXBElement createGeoLocationLatLonToPostcode(GeoLocationLatLonToPostcodeRequestType value) { - return new JAXBElement(_GeoLocationLatLonToPostcode_QNAME, GeoLocationLatLonToPostcodeRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPerceelResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPerceelResponse") - public JAXBElement createKadasterUittrekselKadastraleKaartPerceelResponse(KadasterUittrekselKadastraleKaartPerceelResponseType value) { - return new JAXBElement(_KadasterUittrekselKadastraleKaartPerceelResponse_QNAME, KadasterUittrekselKadastraleKaartPerceelResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateAddDossierResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateAddDossierResponse") - public JAXBElement createKvkUpdateAddDossierResponse(KvkUpdateAddDossierResponseType value) { - return new JAXBElement(_KvkUpdateAddDossierResponse_QNAME, KvkUpdateAddDossierResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationRDToLatLonResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationRDToLatLonResponse") - public JAXBElement createGeoLocationRDToLatLonResponse(GeoLocationRDToLatLonResponseType value) { - return new JAXBElement(_GeoLocationRDToLatLonResponse_QNAME, GeoLocationRDToLatLonResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryDocumentDataRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryDocumentData") - public JAXBElement createDutchBusinessGetExtractHistoryDocumentData(DutchBusinessGetExtractHistoryDocumentDataRequestType value) { - return new JAXBElement(_DutchBusinessGetExtractHistoryDocumentData_QNAME, DutchBusinessGetExtractHistoryDocumentDataRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateCheckDossierResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateCheckDossierResponse") - public JAXBElement createBusinessUpdateCheckDossierResponse(BusinessUpdateCheckDossierResponseType value) { - return new JAXBElement(_BusinessUpdateCheckDossierResponse_QNAME, BusinessUpdateCheckDossierResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressPerceelFullParameterSearchV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressPerceelFullParameterSearchV2Response") - public JAXBElement createAddressPerceelFullParameterSearchV2Response(AddressPerceelFullParameterSearchV2ResponseType value) { - return new JAXBElement(_AddressPerceelFullParameterSearchV2Response_QNAME, AddressPerceelFullParameterSearchV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPostcodeV3ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPostcodeV3Response") - public JAXBElement createKadasterHypothecairBerichtPostcodeV3Response(KadasterHypothecairBerichtPostcodeV3ResponseType value) { - return new JAXBElement(_KadasterHypothecairBerichtPostcodeV3Response_QNAME, KadasterHypothecairBerichtPostcodeV3ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterValueListGetRangesResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterValueListGetRangesResponse") - public JAXBElement createKadasterValueListGetRangesResponse(KadasterValueListGetRangesResponseType value) { - return new JAXBElement(_KadasterValueListGetRangesResponse_QNAME, KadasterValueListGetRangesResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateRemoveDossierRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateRemoveDossier") - public JAXBElement createKvkUpdateRemoveDossier(KvkUpdateRemoveDossierRequestType value) { - return new JAXBElement(_KvkUpdateRemoveDossier_QNAME, KvkUpdateRemoveDossierRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LogoutRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "logout") - public JAXBElement createLogout(LogoutRequestType value) { - return new JAXBElement(_Logout_QNAME, LogoutRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateCheckDossierResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateCheckDossierResponse") - public JAXBElement createDutchBusinessUpdateCheckDossierResponse(DutchBusinessUpdateCheckDossierResponseType value) { - return new JAXBElement(_DutchBusinessUpdateCheckDossierResponse_QNAME, DutchBusinessUpdateCheckDossierResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchParametersResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchParametersResponse") - public JAXBElement createBusinessSearchParametersResponse(BusinessSearchParametersResponseType value) { - return new JAXBElement(_BusinessSearchParametersResponse_QNAME, BusinessSearchParametersResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchParametersV3ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchParametersV3Response") - public JAXBElement createBusinessSearchParametersV3Response(BusinessSearchParametersV3ResponseType value) { - return new JAXBElement(_BusinessSearchParametersV3Response_QNAME, BusinessSearchParametersV3ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarCheckCodeRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarCheckCode") - public JAXBElement createCarRDWCarCheckCode(CarRDWCarCheckCodeRequestType value) { - return new JAXBElement(_CarRDWCarCheckCode_QNAME, CarRDWCarCheckCodeRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryChangedRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryChanged") - public JAXBElement createDutchBusinessGetExtractHistoryChanged(DutchBusinessGetExtractHistoryChangedRequestType value) { - return new JAXBElement(_DutchBusinessGetExtractHistoryChanged_QNAME, DutchBusinessGetExtractHistoryChangedRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationNeighborhoodCoordinatesRDRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationNeighborhoodCoordinatesRD") - public JAXBElement createGeoLocationNeighborhoodCoordinatesRD(GeoLocationNeighborhoodCoordinatesRDRequestType value) { - return new JAXBElement(_GeoLocationNeighborhoodCoordinatesRD_QNAME, GeoLocationNeighborhoodCoordinatesRDRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateGetDossiersRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateGetDossiers") - public JAXBElement createBusinessUpdateGetDossiers(BusinessUpdateGetDossiersRequestType value) { - return new JAXBElement(_BusinessUpdateGetDossiers_QNAME, BusinessUpdateGetDossiersRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerInformationDutchAddressRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerInformationDutchAddress") - public JAXBElement createRoutePlannerInformationDutchAddress(RoutePlannerInformationDutchAddressRequestType value) { - return new JAXBElement(_RoutePlannerInformationDutchAddress_QNAME, RoutePlannerInformationDutchAddressRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationNeighborhoodCoordinatesLatLonRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationNeighborhoodCoordinatesLatLon") - public JAXBElement createGeoLocationNeighborhoodCoordinatesLatLon(GeoLocationNeighborhoodCoordinatesLatLonRequestType value) { - return new JAXBElement(_GeoLocationNeighborhoodCoordinatesLatLon_QNAME, GeoLocationNeighborhoodCoordinatesLatLonRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetKadastraalBerichtObjectByObjectIdResponse") - public JAXBElement createKadasterV2GetKadastraalBerichtObjectByObjectIdResponse(KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType value) { - return new JAXBElement(_KadasterV2GetKadastraalBerichtObjectByObjectIdResponse_QNAME, KadasterV2GetKadastraalBerichtObjectByObjectIdResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserCreateV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userCreateV2") - public JAXBElement createUserCreateV2(UserCreateV2RequestType value) { - return new JAXBElement(_UserCreateV2_QNAME, UserCreateV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserViewHostRestrictionsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userViewHostRestrictions") - public JAXBElement createUserViewHostRestrictions(UserViewHostRestrictionsRequestType value) { - return new JAXBElement(_UserViewHostRestrictions_QNAME, UserViewHostRestrictionsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressProvinceSearchResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressProvinceSearchResponse") - public JAXBElement createAddressProvinceSearchResponse(AddressProvinceSearchResponseType value) { - return new JAXBElement(_AddressProvinceSearchResponse_QNAME, AddressProvinceSearchResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetDossierV3ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetDossierV3Response") - public JAXBElement createDutchBusinessGetDossierV3Response(DutchBusinessGetDossierV3ResponseType value) { - return new JAXBElement(_DutchBusinessGetDossierV3Response_QNAME, DutchBusinessGetDossierV3ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbWorldbaseMarketingPlusResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbWorldbaseMarketingPlusResponse") - public JAXBElement createDnbWorldbaseMarketingPlusResponse(DnbWorldbaseMarketingPlusResponseType value) { - return new JAXBElement(_DnbWorldbaseMarketingPlusResponse_QNAME, DnbWorldbaseMarketingPlusResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RiskCheckPersonRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "riskCheckPerson") - public JAXBElement createRiskCheckPerson(RiskCheckPersonRequestType value) { - return new JAXBElement(_RiskCheckPerson_QNAME, RiskCheckPersonRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ComplianceGetBusinessResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "complianceGetBusinessResponse") - public JAXBElement createComplianceGetBusinessResponse(ComplianceGetBusinessResponseType value) { - return new JAXBElement(_ComplianceGetBusinessResponse_QNAME, ComplianceGetBusinessResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditCompanyLiaisonsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditCompanyLiaisons") - public JAXBElement createGraydonCreditCompanyLiaisons(GraydonCreditCompanyLiaisonsRequestType value) { - return new JAXBElement(_GraydonCreditCompanyLiaisons_QNAME, GraydonCreditCompanyLiaisonsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetConcernRelationsOverviewResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetConcernRelationsOverviewResponse") - public JAXBElement createDutchBusinessGetConcernRelationsOverviewResponse(DutchBusinessGetConcernRelationsOverviewResponseType value) { - return new JAXBElement(_DutchBusinessGetConcernRelationsOverviewResponse_QNAME, DutchBusinessGetConcernRelationsOverviewResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPerceelV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPerceelV2Response") - public JAXBElement createKadasterUittrekselKadastraleKaartPerceelV2Response(KadasterUittrekselKadastraleKaartPerceelV2ResponseType value) { - return new JAXBElement(_KadasterUittrekselKadastraleKaartPerceelV2Response_QNAME, KadasterUittrekselKadastraleKaartPerceelV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPerceelV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPerceelV2") - public JAXBElement createKadasterUittrekselKadastraleKaartPerceelV2(KadasterUittrekselKadastraleKaartPerceelV2RequestType value) { - return new JAXBElement(_KadasterUittrekselKadastraleKaartPerceelV2_QNAME, KadasterUittrekselKadastraleKaartPerceelV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateGetChangedDossiersResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateGetChangedDossiersResponse") - public JAXBElement createKvkUpdateGetChangedDossiersResponse(KvkUpdateGetChangedDossiersResponseType value) { - return new JAXBElement(_KvkUpdateGetChangedDossiersResponse_QNAME, KvkUpdateGetChangedDossiersResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPerceelV3RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPerceelV3") - public JAXBElement createKadasterUittrekselKadastraleKaartPerceelV3(KadasterUittrekselKadastraleKaartPerceelV3RequestType value) { - return new JAXBElement(_KadasterUittrekselKadastraleKaartPerceelV3_QNAME, KadasterUittrekselKadastraleKaartPerceelV3RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserSessionListRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userSessionList") - public JAXBElement createUserSessionList(UserSessionListRequestType value) { - return new JAXBElement(_UserSessionList_QNAME, UserSessionListRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKoopsommenOverzichtResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKoopsommenOverzichtResponse") - public JAXBElement createKadasterKoopsommenOverzichtResponse(KadasterKoopsommenOverzichtResponseType value) { - return new JAXBElement(_KadasterKoopsommenOverzichtResponse_QNAME, KadasterKoopsommenOverzichtResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ComplianceSearchPersonsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "complianceSearchPersons") - public JAXBElement createComplianceSearchPersons(ComplianceSearchPersonsRequestType value) { - return new JAXBElement(_ComplianceSearchPersons_QNAME, ComplianceSearchPersonsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationNeighborhoodDistanceRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationNeighborhoodDistance") - public JAXBElement createGeoLocationNeighborhoodDistance(GeoLocationNeighborhoodDistanceRequestType value) { - return new JAXBElement(_GeoLocationNeighborhoodDistance_QNAME, GeoLocationNeighborhoodDistanceRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchNewsByDossierResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchNewsByDossierResponse") - public JAXBElement createDutchBusinessSearchNewsByDossierResponse(DutchBusinessSearchNewsByDossierResponseType value) { - return new JAXBElement(_DutchBusinessSearchNewsByDossierResponse_QNAME, DutchBusinessSearchNewsByDossierResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditManagementResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditManagementResponse") - public JAXBElement createGraydonCreditManagementResponse(GraydonCreditManagementResponseType value) { - return new JAXBElement(_GraydonCreditManagementResponse_QNAME, GraydonCreditManagementResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchPostcodeRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchPostcode") - public JAXBElement createBusinessSearchPostcode(BusinessSearchPostcodeRequestType value) { - return new JAXBElement(_BusinessSearchPostcode_QNAME, BusinessSearchPostcodeRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchSelectionResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchSelectionResponse") - public JAXBElement createBusinessSearchSelectionResponse(BusinessSearchSelectionResponseType value) { - return new JAXBElement(_BusinessSearchSelectionResponse_QNAME, BusinessSearchSelectionResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractDocumentRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractDocument") - public JAXBElement createDutchBusinessGetExtractDocument(DutchBusinessGetExtractDocumentRequestType value) { - return new JAXBElement(_DutchBusinessGetExtractDocument_QNAME, DutchBusinessGetExtractDocumentRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditGetReportResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditGetReportResponse") - public JAXBElement createGraydonCreditGetReportResponse(GraydonCreditGetReportResponseType value) { - return new JAXBElement(_GraydonCreditGetReportResponse_QNAME, GraydonCreditGetReportResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SepaIbanDetailsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaIbanDetails") - public JAXBElement createSepaIbanDetails(SepaIbanDetailsRequestType value) { - return new JAXBElement(_SepaIbanDetails_QNAME, SepaIbanDetailsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateGetChangedDossiersRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateGetChangedDossiers") - public JAXBElement createBusinessUpdateGetChangedDossiers(BusinessUpdateGetChangedDossiersRequestType value) { - return new JAXBElement(_BusinessUpdateGetChangedDossiers_QNAME, BusinessUpdateGetChangedDossiersRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetEstablishmentNumberRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetEstablishmentNumber") - public JAXBElement createBusinessGetEstablishmentNumber(BusinessGetEstablishmentNumberRequestType value) { - return new JAXBElement(_BusinessGetEstablishmentNumber_QNAME, BusinessGetEstablishmentNumberRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkSearchDossierNumberResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkSearchDossierNumberResponse") - public JAXBElement createKvkSearchDossierNumberResponse(KvkSearchDossierNumberResponseType value) { - return new JAXBElement(_KvkSearchDossierNumberResponse_QNAME, KvkSearchDossierNumberResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEPhotosResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEPhotosResponse") - public JAXBElement createCarVWEPhotosResponse(CarVWEPhotosResponseType value) { - return new JAXBElement(_CarVWEPhotosResponse_QNAME, CarVWEPhotosResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchSelectionSimpleResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchSelectionSimpleResponse") - public JAXBElement createDutchBusinessSearchSelectionSimpleResponse(DutchBusinessSearchSelectionSimpleResponseType value) { - return new JAXBElement(_DutchBusinessSearchSelectionSimpleResponse_QNAME, DutchBusinessSearchSelectionSimpleResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataBPRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataBP") - public JAXBElement createCarRDWCarDataBP(CarRDWCarDataBPRequestType value) { - return new JAXBElement(_CarRDWCarDataBP_QNAME, CarRDWCarDataBPRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditVatNumberRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditVatNumber") - public JAXBElement createGraydonCreditVatNumber(GraydonCreditVatNumberRequestType value) { - return new JAXBElement(_GraydonCreditVatNumber_QNAME, GraydonCreditVatNumberRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetBronDocumentResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetBronDocumentResponse") - public JAXBElement createKadasterV2GetBronDocumentResponse(KadasterV2GetBronDocumentResponseType value) { - return new JAXBElement(_KadasterV2GetBronDocumentResponse_QNAME, KadasterV2GetBronDocumentResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionCoordinatesRDResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionCoordinatesRDResponse") - public JAXBElement createRoutePlannerDescriptionCoordinatesRDResponse(RoutePlannerDescriptionCoordinatesRDResponseType value) { - return new JAXBElement(_RoutePlannerDescriptionCoordinatesRDResponse_QNAME, RoutePlannerDescriptionCoordinatesRDResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetUittrekselKadastraleKaartByKadastraleAanduiding") - public JAXBElement createKadasterV2GetUittrekselKadastraleKaartByKadastraleAanduiding(KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType value) { - return new JAXBElement(_KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduiding_QNAME, KadasterV2GetUittrekselKadastraleKaartByKadastraleAanduidingRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserAddGroupResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userAddGroupResponse") - public JAXBElement createUserAddGroupResponse(UserAddGroupResponseType value) { - return new JAXBElement(_UserAddGroupResponse_QNAME, UserAddGroupResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtPostcodeRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtPostcode") - public JAXBElement createKadasterEigendomsBerichtPostcode(KadasterEigendomsBerichtPostcodeRequestType value) { - return new JAXBElement(_KadasterEigendomsBerichtPostcode_QNAME, KadasterEigendomsBerichtPostcodeRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchEstablishmentsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchEstablishments") - public JAXBElement createDutchBusinessSearchEstablishments(DutchBusinessSearchEstablishmentsRequestType value) { - return new JAXBElement(_DutchBusinessSearchEstablishments_QNAME, DutchBusinessSearchEstablishmentsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link HeaderAuthenticateType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "HeaderAuthenticate") - public JAXBElement createHeaderAuthenticate(HeaderAuthenticateType value) { - return new JAXBElement(_HeaderAuthenticate_QNAME, HeaderAuthenticateType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetAnnualFinancialStatementRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetAnnualFinancialStatement") - public JAXBElement createDutchBusinessGetAnnualFinancialStatement(DutchBusinessGetAnnualFinancialStatementRequestType value) { - return new JAXBElement(_DutchBusinessGetAnnualFinancialStatement_QNAME, DutchBusinessGetAnnualFinancialStatementRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEListModelsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEListModels") - public JAXBElement createCarVWEListModels(CarVWEListModelsRequestType value) { - return new JAXBElement(_CarVWEListModels_QNAME, CarVWEListModelsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserEditV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userEditV2Response") - public JAXBElement createUserEditV2Response(UserEditV2ResponseType value) { - return new JAXBElement(_UserEditV2Response_QNAME, UserEditV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressPerceelFullParameterSearchRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressPerceelFullParameterSearch") - public JAXBElement createAddressPerceelFullParameterSearch(AddressPerceelFullParameterSearchRequestType value) { - return new JAXBElement(_AddressPerceelFullParameterSearch_QNAME, AddressPerceelFullParameterSearchRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateGetDossiersResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateGetDossiersResponse") - public JAXBElement createBusinessUpdateGetDossiersResponse(BusinessUpdateGetDossiersResponseType value) { - return new JAXBElement(_BusinessUpdateGetDossiersResponse_QNAME, BusinessUpdateGetDossiersResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateTestUserResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "createTestUserResponse") - public JAXBElement createCreateTestUserResponse(CreateTestUserResponseType value) { - return new JAXBElement(_CreateTestUserResponse_QNAME, CreateTestUserResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressPerceelFullParameterSearchResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressPerceelFullParameterSearchResponse") - public JAXBElement createAddressPerceelFullParameterSearchResponse(AddressPerceelFullParameterSearchResponseType value) { - return new JAXBElement(_AddressPerceelFullParameterSearchResponse_QNAME, AddressPerceelFullParameterSearchResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BovagGetMemberByDutchBusinessRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "bovagGetMemberByDutchBusiness") - public JAXBElement createBovagGetMemberByDutchBusiness(BovagGetMemberByDutchBusinessRequestType value) { - return new JAXBElement(_BovagGetMemberByDutchBusiness_QNAME, BovagGetMemberByDutchBusinessRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InsolvencySearchPublicationsByPersonRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "insolvencySearchPublicationsByPerson") - public JAXBElement createInsolvencySearchPublicationsByPerson(InsolvencySearchPublicationsByPersonRequestType value) { - return new JAXBElement(_InsolvencySearchPublicationsByPerson_QNAME, InsolvencySearchPublicationsByPersonRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationRDToLatLonRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationRDToLatLon") - public JAXBElement createGeoLocationRDToLatLon(GeoLocationRDToLatLonRequestType value) { - return new JAXBElement(_GeoLocationRDToLatLon_QNAME, GeoLocationRDToLatLonRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetSBIResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetSBIResponse") - public JAXBElement createDutchBusinessGetSBIResponse(DutchBusinessGetSBIResponseType value) { - return new JAXBElement(_DutchBusinessGetSBIResponse_QNAME, DutchBusinessGetSBIResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserEditBalanceRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userEditBalance") - public JAXBElement createUserEditBalance(UserEditBalanceRequestType value) { - return new JAXBElement(_UserEditBalance_QNAME, UserEditBalanceRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountUserListV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountUserListV2Response") - public JAXBElement createAccountUserListV2Response(AccountUserListV2ResponseType value) { - return new JAXBElement(_AccountUserListV2Response_QNAME, AccountUserListV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InternationalAddressSearchInteractiveRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "internationalAddressSearchInteractive") - public JAXBElement createInternationalAddressSearchInteractive(InternationalAddressSearchInteractiveRequestType value) { - return new JAXBElement(_InternationalAddressSearchInteractive_QNAME, InternationalAddressSearchInteractiveRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressDistrictSearchRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressDistrictSearch") - public JAXBElement createAddressDistrictSearch(AddressDistrictSearchRequestType value) { - return new JAXBElement(_AddressDistrictSearch_QNAME, AddressDistrictSearchRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationDistanceSortedNeighborhoodCodesRadius") - public JAXBElement createGeoLocationDistanceSortedNeighborhoodCodesRadius(GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType value) { - return new JAXBElement(_GeoLocationDistanceSortedNeighborhoodCodesRadius_QNAME, GeoLocationDistanceSortedNeighborhoodCodesRadiusRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationDistanceSortedPostcodesResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationDistanceSortedPostcodesResponse") - public JAXBElement createGeoLocationDistanceSortedPostcodesResponse(GeoLocationDistanceSortedPostcodesResponseType value) { - return new JAXBElement(_GeoLocationDistanceSortedPostcodesResponse_QNAME, GeoLocationDistanceSortedPostcodesResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressProvinceListRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressProvinceList") - public JAXBElement createAddressProvinceList(AddressProvinceListRequestType value) { - return new JAXBElement(_AddressProvinceList_QNAME, AddressProvinceListRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEListBrandsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEListBrandsResponse") - public JAXBElement createCarVWEListBrandsResponse(CarVWEListBrandsResponseType value) { - return new JAXBElement(_CarVWEListBrandsResponse_QNAME, CarVWEListBrandsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountGetCreationStatusRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountGetCreationStatus") - public JAXBElement createAccountGetCreationStatus(AccountGetCreationStatusRequestType value) { - return new JAXBElement(_AccountGetCreationStatus_QNAME, AccountGetCreationStatusRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationDistanceSortedPostcodesRadiusRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationDistanceSortedPostcodesRadius") - public JAXBElement createGeoLocationDistanceSortedPostcodesRadius(GeoLocationDistanceSortedPostcodesRadiusRequestType value) { - return new JAXBElement(_GeoLocationDistanceSortedPostcodesRadius_QNAME, GeoLocationDistanceSortedPostcodesRadiusRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksPhraseSearchResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksPhraseSearchResponse") - public JAXBElement createAddressReeksPhraseSearchResponse(AddressReeksPhraseSearchResponseType value) { - return new JAXBElement(_AddressReeksPhraseSearchResponse_QNAME, AddressReeksPhraseSearchResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryDocumentDataV3ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryDocumentDataV3Response") - public JAXBElement createDutchBusinessGetExtractHistoryDocumentDataV3Response(DutchBusinessGetExtractHistoryDocumentDataV3ResponseType value) { - return new JAXBElement(_DutchBusinessGetExtractHistoryDocumentDataV3Response_QNAME, DutchBusinessGetExtractHistoryDocumentDataV3ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchNewsByDossierRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchNewsByDossier") - public JAXBElement createDutchBusinessSearchNewsByDossier(DutchBusinessSearchNewsByDossierRequestType value) { - return new JAXBElement(_DutchBusinessSearchNewsByDossier_QNAME, DutchBusinessSearchNewsByDossierRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationAddressCoordinatesRDResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationAddressCoordinatesRDResponse") - public JAXBElement createGeoLocationAddressCoordinatesRDResponse(GeoLocationAddressCoordinatesRDResponseType value) { - return new JAXBElement(_GeoLocationAddressCoordinatesRDResponse_QNAME, GeoLocationAddressCoordinatesRDResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetKadastraalBerichtObjectByObjectId") - public JAXBElement createKadasterV2GetKadastraalBerichtObjectByObjectId(KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType value) { - return new JAXBElement(_KadasterV2GetKadastraalBerichtObjectByObjectId_QNAME, KadasterV2GetKadastraalBerichtObjectByObjectIdRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetHypothecairBerichtObjectByKadastraleAanduiding") - public JAXBElement createKadasterV2GetHypothecairBerichtObjectByKadastraleAanduiding(KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType value) { - return new JAXBElement(_KadasterV2GetHypothecairBerichtObjectByKadastraleAanduiding_QNAME, KadasterV2GetHypothecairBerichtObjectByKadastraleAanduidingRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link LoginResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "loginResponse") - public JAXBElement createLoginResponse(LoginResponseType value) { - return new JAXBElement(_LoginResponse_QNAME, LoginResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserListAssignableGroupsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userListAssignableGroups") - public JAXBElement createUserListAssignableGroups(UserListAssignableGroupsRequestType value) { - return new JAXBElement(_UserListAssignableGroups_QNAME, UserListAssignableGroupsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchPostcodeRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchPostcode") - public JAXBElement createDutchBusinessSearchPostcode(DutchBusinessSearchPostcodeRequestType value) { - return new JAXBElement(_DutchBusinessSearchPostcode_QNAME, DutchBusinessSearchPostcodeRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataPriceResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataPriceResponse") - public JAXBElement createCarRDWCarDataPriceResponse(CarRDWCarDataPriceResponseType value) { - return new JAXBElement(_CarRDWCarDataPriceResponse_QNAME, CarRDWCarDataPriceResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPostcodeV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPostcodeV2Response") - public JAXBElement createKadasterHypothecairBerichtPostcodeV2Response(KadasterHypothecairBerichtPostcodeV2ResponseType value) { - return new JAXBElement(_KadasterHypothecairBerichtPostcodeV2Response_QNAME, KadasterHypothecairBerichtPostcodeV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterBronDocumentResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterBronDocumentResponse") - public JAXBElement createKadasterBronDocumentResponse(KadasterBronDocumentResponseType value) { - return new JAXBElement(_KadasterBronDocumentResponse_QNAME, KadasterBronDocumentResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateAddDossierResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateAddDossierResponse") - public JAXBElement createDutchBusinessUpdateAddDossierResponse(DutchBusinessUpdateAddDossierResponseType value) { - return new JAXBElement(_DutchBusinessUpdateAddDossierResponse_QNAME, DutchBusinessUpdateAddDossierResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountUserListV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountUserListV2") - public JAXBElement createAccountUserListV2(AccountUserListV2RequestType value) { - return new JAXBElement(_AccountUserListV2_QNAME, AccountUserListV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetSBIDescriptionRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetSBIDescription") - public JAXBElement createBusinessGetSBIDescription(BusinessGetSBIDescriptionRequestType value) { - return new JAXBElement(_BusinessGetSBIDescription_QNAME, BusinessGetSBIDescriptionRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerInformationDutchAddressResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerInformationDutchAddressResponse") - public JAXBElement createRoutePlannerInformationDutchAddressResponse(RoutePlannerInformationDutchAddressResponseType value) { - return new JAXBElement(_RoutePlannerInformationDutchAddressResponse_QNAME, RoutePlannerInformationDutchAddressResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserListAssignableGroupsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userListAssignableGroupsResponse") - public JAXBElement createUserListAssignableGroupsResponse(UserListAssignableGroupsResponseType value) { - return new JAXBElement(_UserListAssignableGroupsResponse_QNAME, UserListAssignableGroupsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessSearchDossierNumberResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessSearchDossierNumberResponse") - public JAXBElement createBusinessSearchDossierNumberResponse(BusinessSearchDossierNumberResponseType value) { - return new JAXBElement(_BusinessSearchDossierNumberResponse_QNAME, BusinessSearchDossierNumberResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressNeighborhoodPhraseSearchRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressNeighborhoodPhraseSearch") - public JAXBElement createAddressNeighborhoodPhraseSearch(AddressNeighborhoodPhraseSearchRequestType value) { - return new JAXBElement(_AddressNeighborhoodPhraseSearch_QNAME, AddressNeighborhoodPhraseSearchRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPerceelV3ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPerceelV3Response") - public JAXBElement createKadasterHypothecairBerichtPerceelV3Response(KadasterHypothecairBerichtPerceelV3ResponseType value) { - return new JAXBElement(_KadasterHypothecairBerichtPerceelV3Response_QNAME, KadasterHypothecairBerichtPerceelV3ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerEUMapResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerEUMapResponse") - public JAXBElement createRoutePlannerEUMapResponse(RoutePlannerEUMapResponseType value) { - return new JAXBElement(_RoutePlannerEUMapResponse_QNAME, RoutePlannerEUMapResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKadastraleKaartPerceelV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKadastraleKaartPerceelV2Response") - public JAXBElement createKadasterKadastraleKaartPerceelV2Response(KadasterKadastraleKaartPerceelV2ResponseType value) { - return new JAXBElement(_KadasterKadastraleKaartPerceelV2Response_QNAME, KadasterKadastraleKaartPerceelV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetHypothecairBerichtObjectByObjectIdResponse") - public JAXBElement createKadasterV2GetHypothecairBerichtObjectByObjectIdResponse(KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType value) { - return new JAXBElement(_KadasterV2GetHypothecairBerichtObjectByObjectIdResponse_QNAME, KadasterV2GetHypothecairBerichtObjectByObjectIdResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateGetDossiersResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateGetDossiersResponse") - public JAXBElement createDutchBusinessUpdateGetDossiersResponse(DutchBusinessUpdateGetDossiersResponseType value) { - return new JAXBElement(_DutchBusinessUpdateGetDossiersResponse_QNAME, DutchBusinessUpdateGetDossiersResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressPerceelFullParameterSearchV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressPerceelFullParameterSearchV2") - public JAXBElement createAddressPerceelFullParameterSearchV2(AddressPerceelFullParameterSearchV2RequestType value) { - return new JAXBElement(_AddressPerceelFullParameterSearchV2_QNAME, AddressPerceelFullParameterSearchV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOStartInvestigationResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOStartInvestigationResponse") - public JAXBElement createDutchBusinessUBOStartInvestigationResponse(DutchBusinessUBOStartInvestigationResponseType value) { - return new JAXBElement(_DutchBusinessUBOStartInvestigationResponse_QNAME, DutchBusinessUBOStartInvestigationResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressCitySearchV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressCitySearchV2Response") - public JAXBElement createAddressCitySearchV2Response(AddressCitySearchV2ResponseType value) { - return new JAXBElement(_AddressCitySearchV2Response_QNAME, AddressCitySearchV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserEditHostRestrictionsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userEditHostRestrictions") - public JAXBElement createUserEditHostRestrictions(UserEditHostRestrictionsRequestType value) { - return new JAXBElement(_UserEditHostRestrictions_QNAME, UserEditHostRestrictionsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataOptionsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataOptions") - public JAXBElement createCarRDWCarDataOptions(CarRDWCarDataOptionsRequestType value) { - return new JAXBElement(_CarRDWCarDataOptions_QNAME, CarRDWCarDataOptionsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MapViewPostcodeV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "mapViewPostcodeV2Response") - public JAXBElement createMapViewPostcodeV2Response(MapViewPostcodeV2ResponseType value) { - return new JAXBElement(_MapViewPostcodeV2Response_QNAME, MapViewPostcodeV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryDocumentDataV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryDocumentDataV2") - public JAXBElement createDutchBusinessGetExtractHistoryDocumentDataV2(DutchBusinessGetExtractHistoryDocumentDataV2RequestType value) { - return new JAXBElement(_DutchBusinessGetExtractHistoryDocumentDataV2_QNAME, DutchBusinessGetExtractHistoryDocumentDataV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEVersionYearDataResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEVersionYearDataResponse") - public JAXBElement createCarVWEVersionYearDataResponse(CarVWEVersionYearDataResponseType value) { - return new JAXBElement(_CarVWEVersionYearDataResponse_QNAME, CarVWEVersionYearDataResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryDocumentDataV3RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryDocumentDataV3") - public JAXBElement createDutchBusinessGetExtractHistoryDocumentDataV3(DutchBusinessGetExtractHistoryDocumentDataV3RequestType value) { - return new JAXBElement(_DutchBusinessGetExtractHistoryDocumentDataV3_QNAME, DutchBusinessGetExtractHistoryDocumentDataV3RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetHypothecairBerichtObjectByObjectId") - public JAXBElement createKadasterV2GetHypothecairBerichtObjectByObjectId(KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType value) { - return new JAXBElement(_KadasterV2GetHypothecairBerichtObjectByObjectId_QNAME, KadasterV2GetHypothecairBerichtObjectByObjectIdRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPerceelRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPerceel") - public JAXBElement createKadasterUittrekselKadastraleKaartPerceel(KadasterUittrekselKadastraleKaartPerceelRequestType value) { - return new JAXBElement(_KadasterUittrekselKadastraleKaartPerceel_QNAME, KadasterUittrekselKadastraleKaartPerceelRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtDocumentPerceelResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtDocumentPerceelResponse") - public JAXBElement createKadasterEigendomsBerichtDocumentPerceelResponse(KadasterEigendomsBerichtDocumentPerceelResponseType value) { - return new JAXBElement(_KadasterEigendomsBerichtDocumentPerceelResponse_QNAME, KadasterEigendomsBerichtDocumentPerceelResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksPostcodeSearchResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksPostcodeSearchResponse") - public JAXBElement createAddressReeksPostcodeSearchResponse(AddressReeksPostcodeSearchResponseType value) { - return new JAXBElement(_AddressReeksPostcodeSearchResponse_QNAME, AddressReeksPostcodeSearchResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeGetReportFullV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeGetReportFullV2") - public JAXBElement createCreditsafeGetReportFullV2(CreditsafeGetReportFullV2RequestType value) { - return new JAXBElement(_CreditsafeGetReportFullV2_QNAME, CreditsafeGetReportFullV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksParameterSearchRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksParameterSearch") - public JAXBElement createAddressReeksParameterSearch(AddressReeksParameterSearchRequestType value) { - return new JAXBElement(_AddressReeksParameterSearch_QNAME, AddressReeksParameterSearchRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateGetOverviewResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateGetOverviewResponse") - public JAXBElement createDutchBusinessUpdateGetOverviewResponse(DutchBusinessUpdateGetOverviewResponseType value) { - return new JAXBElement(_DutchBusinessUpdateGetOverviewResponse_QNAME, DutchBusinessUpdateGetOverviewResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationPostcodeCoordinatesRDRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationPostcodeCoordinatesRD") - public JAXBElement createGeoLocationPostcodeCoordinatesRD(GeoLocationPostcodeCoordinatesRDRequestType value) { - return new JAXBElement(_GeoLocationPostcodeCoordinatesRD_QNAME, GeoLocationPostcodeCoordinatesRDRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationPostcodeDistanceResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationPostcodeDistanceResponse") - public JAXBElement createGeoLocationPostcodeDistanceResponse(GeoLocationPostcodeDistanceResponseType value) { - return new JAXBElement(_GeoLocationPostcodeDistanceResponse_QNAME, GeoLocationPostcodeDistanceResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUpdateGetChangedDossiersResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUpdateGetChangedDossiersResponse") - public JAXBElement createDutchBusinessUpdateGetChangedDossiersResponse(DutchBusinessUpdateGetChangedDossiersResponseType value) { - return new JAXBElement(_DutchBusinessUpdateGetChangedDossiersResponse_QNAME, DutchBusinessUpdateGetChangedDossiersResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ComplianceSearchBusinessesRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "complianceSearchBusinesses") - public JAXBElement createComplianceSearchBusinesses(ComplianceSearchBusinessesRequestType value) { - return new JAXBElement(_ComplianceSearchBusinesses_QNAME, ComplianceSearchBusinessesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ComplianceSearchBusinessesResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "complianceSearchBusinessesResponse") - public JAXBElement createComplianceSearchBusinessesResponse(ComplianceSearchBusinessesResponseType value) { - return new JAXBElement(_ComplianceSearchBusinessesResponse_QNAME, ComplianceSearchBusinessesResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationDistanceSortedPostcodesRadiusResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationDistanceSortedPostcodesRadiusResponse") - public JAXBElement createGeoLocationDistanceSortedPostcodesRadiusResponse(GeoLocationDistanceSortedPostcodesRadiusResponseType value) { - return new JAXBElement(_GeoLocationDistanceSortedPostcodesRadiusResponse_QNAME, GeoLocationDistanceSortedPostcodesRadiusResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetAdditionalPositionsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetAdditionalPositionsResponse") - public JAXBElement createDutchBusinessGetAdditionalPositionsResponse(DutchBusinessGetAdditionalPositionsResponseType value) { - return new JAXBElement(_DutchBusinessGetAdditionalPositionsResponse_QNAME, DutchBusinessGetAdditionalPositionsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MapViewLatLonResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "mapViewLatLonResponse") - public JAXBElement createMapViewLatLonResponse(MapViewLatLonResponseType value) { - return new JAXBElement(_MapViewLatLonResponse_QNAME, MapViewLatLonResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserViewBalanceRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userViewBalance") - public JAXBElement createUserViewBalance(UserViewBalanceRequestType value) { - return new JAXBElement(_UserViewBalance_QNAME, UserViewBalanceRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkSearchPostcodeResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkSearchPostcodeResponse") - public JAXBElement createKvkSearchPostcodeResponse(KvkSearchPostcodeResponseType value) { - return new JAXBElement(_KvkSearchPostcodeResponse_QNAME, KvkSearchPostcodeResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetKoopsommenOverzichtResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetKoopsommenOverzichtResponse") - public JAXBElement createKadasterV2GetKoopsommenOverzichtResponse(KadasterV2GetKoopsommenOverzichtResponseType value) { - return new JAXBElement(_KadasterV2GetKoopsommenOverzichtResponse_QNAME, KadasterV2GetKoopsommenOverzichtResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbGetReferenceRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbGetReference") - public JAXBElement createDnbGetReference(DnbGetReferenceRequestType value) { - return new JAXBElement(_DnbGetReference_QNAME, DnbGetReferenceRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MapViewRDRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "mapViewRD") - public JAXBElement createMapViewRD(MapViewRDRequestType value) { - return new JAXBElement(_MapViewRD_QNAME, MapViewRDRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkGetExtractDocumentResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkGetExtractDocumentResponse") - public JAXBElement createKvkGetExtractDocumentResponse(KvkGetExtractDocumentResponseType value) { - return new JAXBElement(_KvkGetExtractDocumentResponse_QNAME, KvkGetExtractDocumentResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPostcodeV3RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPostcodeV3") - public JAXBElement createKadasterHypothecairBerichtPostcodeV3(KadasterHypothecairBerichtPostcodeV3RequestType value) { - return new JAXBElement(_KadasterHypothecairBerichtPostcodeV3_QNAME, KadasterHypothecairBerichtPostcodeV3RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterAddressCoordinatesRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterAddressCoordinates") - public JAXBElement createKadasterAddressCoordinates(KadasterAddressCoordinatesRequestType value) { - return new JAXBElement(_KadasterAddressCoordinates_QNAME, KadasterAddressCoordinatesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditSearchNameRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditSearchName") - public JAXBElement createGraydonCreditSearchName(GraydonCreditSearchNameRequestType value) { - return new JAXBElement(_GraydonCreditSearchName_QNAME, GraydonCreditSearchNameRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerInformationRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerInformation") - public JAXBElement createRoutePlannerInformation(RoutePlannerInformationRequestType value) { - return new JAXBElement(_RoutePlannerInformation_QNAME, RoutePlannerInformationRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeMonitorAddCompanyRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeMonitorAddCompany") - public JAXBElement createCreditsafeMonitorAddCompany(CreditsafeMonitorAddCompanyRequestType value) { - return new JAXBElement(_CreditsafeMonitorAddCompany_QNAME, CreditsafeMonitorAddCompanyRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksFullParameterSearchResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksFullParameterSearchResponse") - public JAXBElement createAddressReeksFullParameterSearchResponse(AddressReeksFullParameterSearchResponseType value) { - return new JAXBElement(_AddressReeksFullParameterSearchResponse_QNAME, AddressReeksFullParameterSearchResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetSBIDescriptionResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetSBIDescriptionResponse") - public JAXBElement createDutchBusinessGetSBIDescriptionResponse(DutchBusinessGetSBIDescriptionResponseType value) { - return new JAXBElement(_DutchBusinessGetSBIDescriptionResponse_QNAME, DutchBusinessGetSBIDescriptionResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchVehicleGetPurchaseReferenceResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchVehicleGetPurchaseReferenceResponse") - public JAXBElement createDutchVehicleGetPurchaseReferenceResponse(DutchVehicleGetPurchaseReferenceResponseType value) { - return new JAXBElement(_DutchVehicleGetPurchaseReferenceResponse_QNAME, DutchVehicleGetPurchaseReferenceResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtPostcodeV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtPostcodeV2Response") - public JAXBElement createKadasterEigendomsBerichtPostcodeV2Response(KadasterEigendomsBerichtPostcodeV2ResponseType value) { - return new JAXBElement(_KadasterEigendomsBerichtPostcodeV2Response_QNAME, KadasterEigendomsBerichtPostcodeV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbGetReferenceResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbGetReferenceResponse") - public JAXBElement createDnbGetReferenceResponse(DnbGetReferenceResponseType value) { - return new JAXBElement(_DnbGetReferenceResponse_QNAME, DnbGetReferenceResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterHypothecairBerichtPostcodeV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterHypothecairBerichtPostcodeV2") - public JAXBElement createKadasterHypothecairBerichtPostcodeV2(KadasterHypothecairBerichtPostcodeV2RequestType value) { - return new JAXBElement(_KadasterHypothecairBerichtPostcodeV2_QNAME, KadasterHypothecairBerichtPostcodeV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarATDPriceResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carATDPriceResponse") - public JAXBElement createCarATDPriceResponse(CarATDPriceResponseType value) { - return new JAXBElement(_CarATDPriceResponse_QNAME, CarATDPriceResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchAddressRangePostcodeSearchResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchAddressRangePostcodeSearchResponse") - public JAXBElement createDutchAddressRangePostcodeSearchResponse(DutchAddressRangePostcodeSearchResponseType value) { - return new JAXBElement(_DutchAddressRangePostcodeSearchResponse_QNAME, DutchAddressRangePostcodeSearchResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetDossierResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetDossierResponse") - public JAXBElement createDutchBusinessGetDossierResponse(DutchBusinessGetDossierResponseType value) { - return new JAXBElement(_DutchBusinessGetDossierResponse_QNAME, DutchBusinessGetDossierResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserChangePasswordRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userChangePassword") - public JAXBElement createUserChangePassword(UserChangePasswordRequestType value) { - return new JAXBElement(_UserChangePassword_QNAME, UserChangePasswordRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessBIKToSBIResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessBIKToSBIResponse") - public JAXBElement createBusinessBIKToSBIResponse(BusinessBIKToSBIResponseType value) { - return new JAXBElement(_BusinessBIKToSBIResponse_QNAME, BusinessBIKToSBIResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEOptionsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEOptions") - public JAXBElement createCarVWEOptions(CarVWEOptionsRequestType value) { - return new JAXBElement(_CarVWEOptions_QNAME, CarVWEOptionsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEBasicTypeDataResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEBasicTypeDataResponse") - public JAXBElement createCarVWEBasicTypeDataResponse(CarVWEBasicTypeDataResponseType value) { - return new JAXBElement(_CarVWEBasicTypeDataResponse_QNAME, CarVWEBasicTypeDataResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link InsolvencySearchPublicationsByPersonResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "insolvencySearchPublicationsByPersonResponse") - public JAXBElement createInsolvencySearchPublicationsByPersonResponse(InsolvencySearchPublicationsByPersonResponseType value) { - return new JAXBElement(_InsolvencySearchPublicationsByPersonResponse_QNAME, InsolvencySearchPublicationsByPersonResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataBPResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataBPResponse") - public JAXBElement createCarRDWCarDataBPResponse(CarRDWCarDataBPResponseType value) { - return new JAXBElement(_CarRDWCarDataBPResponse_QNAME, CarRDWCarDataBPResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterKadastraleKaartPerceelResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterKadastraleKaartPerceelResponse") - public JAXBElement createKadasterKadastraleKaartPerceelResponse(KadasterKadastraleKaartPerceelResponseType value) { - return new JAXBElement(_KadasterKadastraleKaartPerceelResponse_QNAME, KadasterKadastraleKaartPerceelResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditSearchPostcodeRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditSearchPostcode") - public JAXBElement createGraydonCreditSearchPostcode(GraydonCreditSearchPostcodeRequestType value) { - return new JAXBElement(_GraydonCreditSearchPostcode_QNAME, GraydonCreditSearchPostcodeRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationAddressCoordinatesRDRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationAddressCoordinatesRD") - public JAXBElement createGeoLocationAddressCoordinatesRD(GeoLocationAddressCoordinatesRDRequestType value) { - return new JAXBElement(_GeoLocationAddressCoordinatesRD_QNAME, GeoLocationAddressCoordinatesRDRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerInformationAddressResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerInformationAddressResponse") - public JAXBElement createRoutePlannerInformationAddressResponse(RoutePlannerInformationAddressResponseType value) { - return new JAXBElement(_RoutePlannerInformationAddressResponse_QNAME, RoutePlannerInformationAddressResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationNeighborhoodCoordinatesRDResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationNeighborhoodCoordinatesRDResponse") - public JAXBElement createGeoLocationNeighborhoodCoordinatesRDResponse(GeoLocationNeighborhoodCoordinatesRDResponseType value) { - return new JAXBElement(_GeoLocationNeighborhoodCoordinatesRDResponse_QNAME, GeoLocationNeighborhoodCoordinatesRDResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressDistrictListNeighborhoodsRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressDistrictListNeighborhoods") - public JAXBElement createAddressDistrictListNeighborhoods(AddressDistrictListNeighborhoodsRequestType value) { - return new JAXBElement(_AddressDistrictListNeighborhoods_QNAME, AddressDistrictListNeighborhoodsRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetDossierV3RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetDossierV3") - public JAXBElement createBusinessGetDossierV3(BusinessGetDossierV3RequestType value) { - return new JAXBElement(_BusinessGetDossierV3_QNAME, BusinessGetDossierV3RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessGetBIKDescriptionRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessGetBIKDescription") - public JAXBElement createBusinessGetBIKDescription(BusinessGetBIKDescriptionRequestType value) { - return new JAXBElement(_BusinessGetBIKDescription_QNAME, BusinessGetBIKDescriptionRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SepaConvertBasicBankAccountNumberRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaConvertBasicBankAccountNumber") - public JAXBElement createSepaConvertBasicBankAccountNumber(SepaConvertBasicBankAccountNumberRequestType value) { - return new JAXBElement(_SepaConvertBasicBankAccountNumber_QNAME, SepaConvertBasicBankAccountNumberRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterUittrekselKadastraleKaartPostcodeRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterUittrekselKadastraleKaartPostcode") - public JAXBElement createKadasterUittrekselKadastraleKaartPostcode(KadasterUittrekselKadastraleKaartPostcodeRequestType value) { - return new JAXBElement(_KadasterUittrekselKadastraleKaartPostcode_QNAME, KadasterUittrekselKadastraleKaartPostcodeRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DriveInfoDistanceLookupResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "driveInfoDistanceLookupResponse") - public JAXBElement createDriveInfoDistanceLookupResponse(DriveInfoDistanceLookupResponseType value) { - return new JAXBElement(_DriveInfoDistanceLookupResponse_QNAME, DriveInfoDistanceLookupResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterValueListGetMunicipalitiesRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterValueListGetMunicipalities") - public JAXBElement createKadasterValueListGetMunicipalities(KadasterValueListGetMunicipalitiesRequestType value) { - return new JAXBElement(_KadasterValueListGetMunicipalities_QNAME, KadasterValueListGetMunicipalitiesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionResponse") - public JAXBElement createRoutePlannerDescriptionResponse(RoutePlannerDescriptionResponseType value) { - return new JAXBElement(_RoutePlannerDescriptionResponse_QNAME, RoutePlannerDescriptionResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerEUInformationRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerEUInformation") - public JAXBElement createRoutePlannerEUInformation(RoutePlannerEUInformationRequestType value) { - return new JAXBElement(_RoutePlannerEUInformation_QNAME, RoutePlannerEUInformationRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetNonMarketingIndicatorResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetNonMarketingIndicatorResponse") - public JAXBElement createDutchBusinessGetNonMarketingIndicatorResponse(DutchBusinessGetNonMarketingIndicatorResponseType value) { - return new JAXBElement(_DutchBusinessGetNonMarketingIndicatorResponse_QNAME, DutchBusinessGetNonMarketingIndicatorResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountUserSearchV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountUserSearchV2Response") - public JAXBElement createAccountUserSearchV2Response(AccountUserSearchV2ResponseType value) { - return new JAXBElement(_AccountUserSearchV2Response_QNAME, AccountUserSearchV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link ComplianceSearchPersonsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "complianceSearchPersonsResponse") - public JAXBElement createComplianceSearchPersonsResponse(ComplianceSearchPersonsResponseType value) { - return new JAXBElement(_ComplianceSearchPersonsResponse_QNAME, ComplianceSearchPersonsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreateTestUserRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "createTestUser") - public JAXBElement createCreateTestUser(CreateTestUserRequestType value) { - return new JAXBElement(_CreateTestUser_QNAME, CreateTestUserRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarVWEMeldcodeCheckResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carVWEMeldcodeCheckResponse") - public JAXBElement createCarVWEMeldcodeCheckResponse(CarVWEMeldcodeCheckResponseType value) { - return new JAXBElement(_CarVWEMeldcodeCheckResponse_QNAME, CarVWEMeldcodeCheckResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarATDPriceRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carATDPrice") - public JAXBElement createCarATDPrice(CarATDPriceRequestType value) { - return new JAXBElement(_CarATDPrice_QNAME, CarATDPriceRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetDossierV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetDossierV2") - public JAXBElement createDutchBusinessGetDossierV2(DutchBusinessGetDossierV2RequestType value) { - return new JAXBElement(_DutchBusinessGetDossierV2_QNAME, DutchBusinessGetDossierV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link MapViewInternationalLatLonRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "mapViewInternationalLatLon") - public JAXBElement createMapViewInternationalLatLon(MapViewInternationalLatLonRequestType value) { - return new JAXBElement(_MapViewInternationalLatLon_QNAME, MapViewInternationalLatLonRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbSearchReferenceV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbSearchReferenceV2") - public JAXBElement createDnbSearchReferenceV2(DnbSearchReferenceV2RequestType value) { - return new JAXBElement(_DnbSearchReferenceV2_QNAME, DnbSearchReferenceV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetDossierV3RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetDossierV3") - public JAXBElement createDutchBusinessGetDossierV3(DutchBusinessGetDossierV3RequestType value) { - return new JAXBElement(_DutchBusinessGetDossierV3_QNAME, DutchBusinessGetDossierV3RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetUittrekselKadastraleKaartByObjectIdResponse") - public JAXBElement createKadasterV2GetUittrekselKadastraleKaartByObjectIdResponse(KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType value) { - return new JAXBElement(_KadasterV2GetUittrekselKadastraleKaartByObjectIdResponse_QNAME, KadasterV2GetUittrekselKadastraleKaartByObjectIdResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SepaConvertBankAccountNumberRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaConvertBankAccountNumber") - public JAXBElement createSepaConvertBankAccountNumber(SepaConvertBankAccountNumberRequestType value) { - return new JAXBElement(_SepaConvertBankAccountNumber_QNAME, SepaConvertBankAccountNumberRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CarRDWCarDataBPV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "carRDWCarDataBPV2") - public JAXBElement createCarRDWCarDataBPV2(CarRDWCarDataBPV2RequestType value) { - return new JAXBElement(_CarRDWCarDataBPV2_QNAME, CarRDWCarDataBPV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkGetDossierResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkGetDossierResponse") - public JAXBElement createKvkGetDossierResponse(KvkGetDossierResponseType value) { - return new JAXBElement(_KvkGetDossierResponse_QNAME, KvkGetDossierResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerEUMapRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerEUMap") - public JAXBElement createRoutePlannerEUMap(RoutePlannerEUMapRequestType value) { - return new JAXBElement(_RoutePlannerEUMap_QNAME, RoutePlannerEUMapRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeSearchCriteriaRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeSearchCriteria") - public JAXBElement createCreditsafeSearchCriteria(CreditsafeSearchCriteriaRequestType value) { - return new JAXBElement(_CreditsafeSearchCriteria_QNAME, CreditsafeSearchCriteriaRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserNotifyResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userNotifyResponse") - public JAXBElement createUserNotifyResponse(UserNotifyResponseType value) { - return new JAXBElement(_UserNotifyResponse_QNAME, UserNotifyResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtPostcodeResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtPostcodeResponse") - public JAXBElement createKadasterEigendomsBerichtPostcodeResponse(KadasterEigendomsBerichtPostcodeResponseType value) { - return new JAXBElement(_KadasterEigendomsBerichtPostcodeResponse_QNAME, KadasterEigendomsBerichtPostcodeResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link SepaMatchAccountHolderRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "sepaMatchAccountHolder") - public JAXBElement createSepaMatchAccountHolder(SepaMatchAccountHolderRequestType value) { - return new JAXBElement(_SepaMatchAccountHolder_QNAME, SepaMatchAccountHolderRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link BusinessUpdateAddDossierResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "businessUpdateAddDossierResponse") - public JAXBElement createBusinessUpdateAddDossierResponse(BusinessUpdateAddDossierResponseType value) { - return new JAXBElement(_BusinessUpdateAddDossierResponse_QNAME, BusinessUpdateAddDossierResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkSearchParametersResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkSearchParametersResponse") - public JAXBElement createKvkSearchParametersResponse(KvkSearchParametersResponseType value) { - return new JAXBElement(_KvkSearchParametersResponse_QNAME, KvkSearchParametersResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AccountViewV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "accountViewV2Response") - public JAXBElement createAccountViewV2Response(AccountViewV2ResponseType value) { - return new JAXBElement(_AccountViewV2Response_QNAME, AccountViewV2ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DriveInfoTimeLookupRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "driveInfoTimeLookup") - public JAXBElement createDriveInfoTimeLookup(DriveInfoTimeLookupRequestType value) { - return new JAXBElement(_DriveInfoTimeLookup_QNAME, DriveInfoTimeLookupRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterV2GetKadastraalBerichtObjectByKadastraleAanduiding") - public JAXBElement createKadasterV2GetKadastraalBerichtObjectByKadastraleAanduiding(KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType value) { - return new JAXBElement(_KadasterV2GetKadastraalBerichtObjectByKadastraleAanduiding_QNAME, KadasterV2GetKadastraalBerichtObjectByKadastraleAanduidingRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionDutchAddressRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionDutchAddress") - public JAXBElement createRoutePlannerDescriptionDutchAddress(RoutePlannerDescriptionDutchAddressRequestType value) { - return new JAXBElement(_RoutePlannerDescriptionDutchAddress_QNAME, RoutePlannerDescriptionDutchAddressRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbQuickCheckResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbQuickCheckResponse") - public JAXBElement createDnbQuickCheckResponse(DnbQuickCheckResponseType value) { - return new JAXBElement(_DnbQuickCheckResponse_QNAME, DnbQuickCheckResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationNeighborhoodDistanceResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationNeighborhoodDistanceResponse") - public JAXBElement createGeoLocationNeighborhoodDistanceResponse(GeoLocationNeighborhoodDistanceResponseType value) { - return new JAXBElement(_GeoLocationNeighborhoodDistanceResponse_QNAME, GeoLocationNeighborhoodDistanceResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterValueListGetMunicipalitiesResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterValueListGetMunicipalitiesResponse") - public JAXBElement createKadasterValueListGetMunicipalitiesResponse(KadasterValueListGetMunicipalitiesResponseType value) { - return new JAXBElement(_KadasterValueListGetMunicipalitiesResponse_QNAME, KadasterValueListGetMunicipalitiesResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkUpdateRemoveDossierResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkUpdateRemoveDossierResponse") - public JAXBElement createKvkUpdateRemoveDossierResponse(KvkUpdateRemoveDossierResponseType value) { - return new JAXBElement(_KvkUpdateRemoveDossierResponse_QNAME, KvkUpdateRemoveDossierResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DnbWorldbaseMarketingPlusLinkageRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dnbWorldbaseMarketingPlusLinkage") - public JAXBElement createDnbWorldbaseMarketingPlusLinkage(DnbWorldbaseMarketingPlusLinkageRequestType value) { - return new JAXBElement(_DnbWorldbaseMarketingPlusLinkage_QNAME, DnbWorldbaseMarketingPlusLinkageRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeMonitorGetUpdatedCompaniesRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeMonitorGetUpdatedCompanies") - public JAXBElement createCreditsafeMonitorGetUpdatedCompanies(CreditsafeMonitorGetUpdatedCompaniesRequestType value) { - return new JAXBElement(_CreditsafeMonitorGetUpdatedCompanies_QNAME, CreditsafeMonitorGetUpdatedCompaniesRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CreditsafeSearchV2RequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "creditsafeSearchV2") - public JAXBElement createCreditsafeSearchV2(CreditsafeSearchV2RequestType value) { - return new JAXBElement(_CreditsafeSearchV2_QNAME, CreditsafeSearchV2RequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessSearchResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessSearchResponse") - public JAXBElement createDutchBusinessSearchResponse(DutchBusinessSearchResponseType value) { - return new JAXBElement(_DutchBusinessSearchResponse_QNAME, DutchBusinessSearchResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessUBOCostsInvestigationRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessUBOCostsInvestigation") - public JAXBElement createDutchBusinessUBOCostsInvestigation(DutchBusinessUBOCostsInvestigationRequestType value) { - return new JAXBElement(_DutchBusinessUBOCostsInvestigation_QNAME, DutchBusinessUBOCostsInvestigationRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserViewHostRestrictionsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userViewHostRestrictionsResponse") - public JAXBElement createUserViewHostRestrictionsResponse(UserViewHostRestrictionsResponseType value) { - return new JAXBElement(_UserViewHostRestrictionsResponse_QNAME, UserViewHostRestrictionsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksAddressSearchResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksAddressSearchResponse") - public JAXBElement createAddressReeksAddressSearchResponse(AddressReeksAddressSearchResponseType value) { - return new JAXBElement(_AddressReeksAddressSearchResponse_QNAME, AddressReeksAddressSearchResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractDocumentDataV3ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractDocumentDataV3Response") - public JAXBElement createDutchBusinessGetExtractDocumentDataV3Response(DutchBusinessGetExtractDocumentDataV3ResponseType value) { - return new JAXBElement(_DutchBusinessGetExtractDocumentDataV3Response_QNAME, DutchBusinessGetExtractDocumentDataV3ResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KvkSearchSelectionRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kvkSearchSelection") - public JAXBElement createKvkSearchSelection(KvkSearchSelectionRequestType value) { - return new JAXBElement(_KvkSearchSelection_QNAME, KvkSearchSelectionRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetVatNumberRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetVatNumber") - public JAXBElement createDutchBusinessGetVatNumber(DutchBusinessGetVatNumberRequestType value) { - return new JAXBElement(_DutchBusinessGetVatNumber_QNAME, DutchBusinessGetVatNumberRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetDossierRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetDossier") - public JAXBElement createDutchBusinessGetDossier(DutchBusinessGetDossierRequestType value) { - return new JAXBElement(_DutchBusinessGetDossier_QNAME, DutchBusinessGetDossierRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GraydonCreditSearchNameResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "graydonCreditSearchNameResponse") - public JAXBElement createGraydonCreditSearchNameResponse(GraydonCreditSearchNameResponseType value) { - return new JAXBElement(_GraydonCreditSearchNameResponse_QNAME, GraydonCreditSearchNameResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerDescriptionAddressResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerDescriptionAddressResponse") - public JAXBElement createRoutePlannerDescriptionAddressResponse(RoutePlannerDescriptionAddressResponseType value) { - return new JAXBElement(_RoutePlannerDescriptionAddressResponse_QNAME, RoutePlannerDescriptionAddressResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link RoutePlannerInformationResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "routePlannerInformationResponse") - public JAXBElement createRoutePlannerInformationResponse(RoutePlannerInformationResponseType value) { - return new JAXBElement(_RoutePlannerInformationResponse_QNAME, RoutePlannerInformationResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetConcernRelationsOverviewRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetConcernRelationsOverview") - public JAXBElement createDutchBusinessGetConcernRelationsOverview(DutchBusinessGetConcernRelationsOverviewRequestType value) { - return new JAXBElement(_DutchBusinessGetConcernRelationsOverview_QNAME, DutchBusinessGetConcernRelationsOverviewRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link GeoLocationAddressCoordinatesLatLonRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "geoLocationAddressCoordinatesLatLon") - public JAXBElement createGeoLocationAddressCoordinatesLatLon(GeoLocationAddressCoordinatesLatLonRequestType value) { - return new JAXBElement(_GeoLocationAddressCoordinatesLatLon_QNAME, GeoLocationAddressCoordinatesLatLonRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link KadasterEigendomsBerichtPerceelRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "kadasterEigendomsBerichtPerceel") - public JAXBElement createKadasterEigendomsBerichtPerceel(KadasterEigendomsBerichtPerceelRequestType value) { - return new JAXBElement(_KadasterEigendomsBerichtPerceel_QNAME, KadasterEigendomsBerichtPerceelRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetExtractHistoryDocumentDataResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetExtractHistoryDocumentDataResponse") - public JAXBElement createDutchBusinessGetExtractHistoryDocumentDataResponse(DutchBusinessGetExtractHistoryDocumentDataResponseType value) { - return new JAXBElement(_DutchBusinessGetExtractHistoryDocumentDataResponse_QNAME, DutchBusinessGetExtractHistoryDocumentDataResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetPositionsResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetPositionsResponse") - public JAXBElement createDutchBusinessGetPositionsResponse(DutchBusinessGetPositionsResponseType value) { - return new JAXBElement(_DutchBusinessGetPositionsResponse_QNAME, DutchBusinessGetPositionsResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link AddressReeksPhraseSearchRequestType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "addressReeksPhraseSearch") - public JAXBElement createAddressReeksPhraseSearch(AddressReeksPhraseSearchRequestType value) { - return new JAXBElement(_AddressReeksPhraseSearch_QNAME, AddressReeksPhraseSearchRequestType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link DutchBusinessGetLeiResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "dutchBusinessGetLeiResponse") - public JAXBElement createDutchBusinessGetLeiResponse(DutchBusinessGetLeiResponseType value) { - return new JAXBElement(_DutchBusinessGetLeiResponse_QNAME, DutchBusinessGetLeiResponseType.class, null, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link UserViewV2ResponseType }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://www.webservices.nl/soap/", name = "userViewV2Response") - public JAXBElement createUserViewV2Response(UserViewV2ResponseType value) { - return new JAXBElement(_UserViewV2Response_QNAME, UserViewV2ResponseType.class, null, value); - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OnroerendeZaak.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OnroerendeZaak.java deleted file mode 100644 index 6b9e0bb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OnroerendeZaak.java +++ /dev/null @@ -1,474 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for OnroerendeZaak complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OnroerendeZaak">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="kadastrale_aanduiding" type="{http://www.webservices.nl/soap/}KadastraleAanduiding"/>
- *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="locaties" type="{http://www.webservices.nl/soap/}LocatieBinnenlandLijst" minOccurs="0"/>
- *         <element name="datum_ontstaan" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="onroerende_zaak_historie" type="{http://www.webservices.nl/soap/}KadastraleAanduidingLijst" minOccurs="0"/>
- *         <element name="perceel_details" type="{http://www.webservices.nl/soap/}PerceelDetails"/>
- *         <element name="koopsom" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="koopjaar" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="indicatie_meer_onroerende_zaken" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="landinrichtingsrente" type="{http://www.webservices.nl/soap/}Landinrichtingsrente" minOccurs="0"/>
- *         <element name="indicatie_voorgenomen_splitsing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indicatie_voorlopige_aantekening" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="niet_volledig_verwerkt_stukken_lijst" type="{http://www.webservices.nl/soap/}StukReferentiesLijst" minOccurs="0"/>
- *         <element name="mandeligheid" type="{http://www.webservices.nl/soap/}Mandeligheid" minOccurs="0"/>
- *         <element name="aantekeningen_kadastraal_object" type="{http://www.webservices.nl/soap/}AantekeningenKadastraalObject" minOccurs="0"/>
- *         <element name="pr_beperkingen_kadastraal_object" type="{http://www.webservices.nl/soap/}PRBeperkingenKadastraalObject" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OnroerendeZaak", propOrder = { - -}) -public class OnroerendeZaak { - - @XmlElement(name = "object_id") - protected String objectId; - @XmlElement(name = "kadastrale_aanduiding", required = true) - protected KadastraleAanduiding kadastraleAanduiding; - protected String omschrijving; - protected LocatieBinnenlandLijst locaties; - @XmlElement(name = "datum_ontstaan") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar datumOntstaan; - @XmlElement(name = "onroerende_zaak_historie") - protected KadastraleAanduidingLijst onroerendeZaakHistorie; - @XmlElement(name = "perceel_details", required = true) - protected PerceelDetails perceelDetails; - protected String koopsom; - protected String koopjaar; - @XmlElement(name = "indicatie_meer_onroerende_zaken") - protected boolean indicatieMeerOnroerendeZaken; - protected Landinrichtingsrente landinrichtingsrente; - @XmlElement(name = "indicatie_voorgenomen_splitsing") - protected boolean indicatieVoorgenomenSplitsing; - @XmlElement(name = "indicatie_voorlopige_aantekening") - protected boolean indicatieVoorlopigeAantekening; - @XmlElement(name = "niet_volledig_verwerkt_stukken_lijst") - protected StukReferentiesLijst nietVolledigVerwerktStukkenLijst; - protected Mandeligheid mandeligheid; - @XmlElement(name = "aantekeningen_kadastraal_object") - protected AantekeningenKadastraalObject aantekeningenKadastraalObject; - @XmlElement(name = "pr_beperkingen_kadastraal_object") - protected PRBeperkingenKadastraalObject prBeperkingenKadastraalObject; - - /** - * Gets the value of the objectId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjectId() { - return objectId; - } - - /** - * Sets the value of the objectId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjectId(String value) { - this.objectId = value; - } - - /** - * Gets the value of the kadastraleAanduiding property. - * - * @return - * possible object is - * {@link KadastraleAanduiding } - * - */ - public KadastraleAanduiding getKadastraleAanduiding() { - return kadastraleAanduiding; - } - - /** - * Sets the value of the kadastraleAanduiding property. - * - * @param value - * allowed object is - * {@link KadastraleAanduiding } - * - */ - public void setKadastraleAanduiding(KadastraleAanduiding value) { - this.kadastraleAanduiding = value; - } - - /** - * Gets the value of the omschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijving() { - return omschrijving; - } - - /** - * Sets the value of the omschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijving(String value) { - this.omschrijving = value; - } - - /** - * Gets the value of the locaties property. - * - * @return - * possible object is - * {@link LocatieBinnenlandLijst } - * - */ - public LocatieBinnenlandLijst getLocaties() { - return locaties; - } - - /** - * Sets the value of the locaties property. - * - * @param value - * allowed object is - * {@link LocatieBinnenlandLijst } - * - */ - public void setLocaties(LocatieBinnenlandLijst value) { - this.locaties = value; - } - - /** - * Gets the value of the datumOntstaan property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDatumOntstaan() { - return datumOntstaan; - } - - /** - * Sets the value of the datumOntstaan property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDatumOntstaan(XMLGregorianCalendar value) { - this.datumOntstaan = value; - } - - /** - * Gets the value of the onroerendeZaakHistorie property. - * - * @return - * possible object is - * {@link KadastraleAanduidingLijst } - * - */ - public KadastraleAanduidingLijst getOnroerendeZaakHistorie() { - return onroerendeZaakHistorie; - } - - /** - * Sets the value of the onroerendeZaakHistorie property. - * - * @param value - * allowed object is - * {@link KadastraleAanduidingLijst } - * - */ - public void setOnroerendeZaakHistorie(KadastraleAanduidingLijst value) { - this.onroerendeZaakHistorie = value; - } - - /** - * Gets the value of the perceelDetails property. - * - * @return - * possible object is - * {@link PerceelDetails } - * - */ - public PerceelDetails getPerceelDetails() { - return perceelDetails; - } - - /** - * Sets the value of the perceelDetails property. - * - * @param value - * allowed object is - * {@link PerceelDetails } - * - */ - public void setPerceelDetails(PerceelDetails value) { - this.perceelDetails = value; - } - - /** - * Gets the value of the koopsom property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKoopsom() { - return koopsom; - } - - /** - * Sets the value of the koopsom property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKoopsom(String value) { - this.koopsom = value; - } - - /** - * Gets the value of the koopjaar property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKoopjaar() { - return koopjaar; - } - - /** - * Sets the value of the koopjaar property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKoopjaar(String value) { - this.koopjaar = value; - } - - /** - * Gets the value of the indicatieMeerOnroerendeZaken property. - * - */ - public boolean isIndicatieMeerOnroerendeZaken() { - return indicatieMeerOnroerendeZaken; - } - - /** - * Sets the value of the indicatieMeerOnroerendeZaken property. - * - */ - public void setIndicatieMeerOnroerendeZaken(boolean value) { - this.indicatieMeerOnroerendeZaken = value; - } - - /** - * Gets the value of the landinrichtingsrente property. - * - * @return - * possible object is - * {@link Landinrichtingsrente } - * - */ - public Landinrichtingsrente getLandinrichtingsrente() { - return landinrichtingsrente; - } - - /** - * Sets the value of the landinrichtingsrente property. - * - * @param value - * allowed object is - * {@link Landinrichtingsrente } - * - */ - public void setLandinrichtingsrente(Landinrichtingsrente value) { - this.landinrichtingsrente = value; - } - - /** - * Gets the value of the indicatieVoorgenomenSplitsing property. - * - */ - public boolean isIndicatieVoorgenomenSplitsing() { - return indicatieVoorgenomenSplitsing; - } - - /** - * Sets the value of the indicatieVoorgenomenSplitsing property. - * - */ - public void setIndicatieVoorgenomenSplitsing(boolean value) { - this.indicatieVoorgenomenSplitsing = value; - } - - /** - * Gets the value of the indicatieVoorlopigeAantekening property. - * - */ - public boolean isIndicatieVoorlopigeAantekening() { - return indicatieVoorlopigeAantekening; - } - - /** - * Sets the value of the indicatieVoorlopigeAantekening property. - * - */ - public void setIndicatieVoorlopigeAantekening(boolean value) { - this.indicatieVoorlopigeAantekening = value; - } - - /** - * Gets the value of the nietVolledigVerwerktStukkenLijst property. - * - * @return - * possible object is - * {@link StukReferentiesLijst } - * - */ - public StukReferentiesLijst getNietVolledigVerwerktStukkenLijst() { - return nietVolledigVerwerktStukkenLijst; - } - - /** - * Sets the value of the nietVolledigVerwerktStukkenLijst property. - * - * @param value - * allowed object is - * {@link StukReferentiesLijst } - * - */ - public void setNietVolledigVerwerktStukkenLijst(StukReferentiesLijst value) { - this.nietVolledigVerwerktStukkenLijst = value; - } - - /** - * Gets the value of the mandeligheid property. - * - * @return - * possible object is - * {@link Mandeligheid } - * - */ - public Mandeligheid getMandeligheid() { - return mandeligheid; - } - - /** - * Sets the value of the mandeligheid property. - * - * @param value - * allowed object is - * {@link Mandeligheid } - * - */ - public void setMandeligheid(Mandeligheid value) { - this.mandeligheid = value; - } - - /** - * Gets the value of the aantekeningenKadastraalObject property. - * - * @return - * possible object is - * {@link AantekeningenKadastraalObject } - * - */ - public AantekeningenKadastraalObject getAantekeningenKadastraalObject() { - return aantekeningenKadastraalObject; - } - - /** - * Sets the value of the aantekeningenKadastraalObject property. - * - * @param value - * allowed object is - * {@link AantekeningenKadastraalObject } - * - */ - public void setAantekeningenKadastraalObject(AantekeningenKadastraalObject value) { - this.aantekeningenKadastraalObject = value; - } - - /** - * Gets the value of the prBeperkingenKadastraalObject property. - * - * @return - * possible object is - * {@link PRBeperkingenKadastraalObject } - * - */ - public PRBeperkingenKadastraalObject getPrBeperkingenKadastraalObject() { - return prBeperkingenKadastraalObject; - } - - /** - * Sets the value of the prBeperkingenKadastraalObject property. - * - * @param value - * allowed object is - * {@link PRBeperkingenKadastraalObject } - * - */ - public void setPrBeperkingenKadastraalObject(PRBeperkingenKadastraalObject value) { - this.prBeperkingenKadastraalObject = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Overzicht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Overzicht.java deleted file mode 100644 index 8c42c6e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Overzicht.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Overzicht complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Overzicht">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="onroerende_zaken" type="{http://www.webservices.nl/soap/}OverzichtOnroerendeZaakArray"/>
- *         <element name="rechten" type="{http://www.webservices.nl/soap/}OverzichtRechtArray"/>
- *         <element name="personen" type="{http://www.webservices.nl/soap/}OverzichtPersoonArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Overzicht", propOrder = { - -}) -public class Overzicht { - - @XmlElement(name = "onroerende_zaken", required = true) - protected OverzichtOnroerendeZaakArray onroerendeZaken; - @XmlElement(required = true) - protected OverzichtRechtArray rechten; - protected OverzichtPersoonArray personen; - - /** - * Gets the value of the onroerendeZaken property. - * - * @return - * possible object is - * {@link OverzichtOnroerendeZaakArray } - * - */ - public OverzichtOnroerendeZaakArray getOnroerendeZaken() { - return onroerendeZaken; - } - - /** - * Sets the value of the onroerendeZaken property. - * - * @param value - * allowed object is - * {@link OverzichtOnroerendeZaakArray } - * - */ - public void setOnroerendeZaken(OverzichtOnroerendeZaakArray value) { - this.onroerendeZaken = value; - } - - /** - * Gets the value of the rechten property. - * - * @return - * possible object is - * {@link OverzichtRechtArray } - * - */ - public OverzichtRechtArray getRechten() { - return rechten; - } - - /** - * Sets the value of the rechten property. - * - * @param value - * allowed object is - * {@link OverzichtRechtArray } - * - */ - public void setRechten(OverzichtRechtArray value) { - this.rechten = value; - } - - /** - * Gets the value of the personen property. - * - * @return - * possible object is - * {@link OverzichtPersoonArray } - * - */ - public OverzichtPersoonArray getPersonen() { - return personen; - } - - /** - * Sets the value of the personen property. - * - * @param value - * allowed object is - * {@link OverzichtPersoonArray } - * - */ - public void setPersonen(OverzichtPersoonArray value) { - this.personen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtNatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtNatuurlijkPersoon.java deleted file mode 100644 index ad7e1ae..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtNatuurlijkPersoon.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OverzichtNatuurlijkPersoon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OverzichtNatuurlijkPersoon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="voorvoegsel_geslachtsnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="voornamen" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OverzichtNatuurlijkPersoon", propOrder = { - -}) -public class OverzichtNatuurlijkPersoon { - - @XmlElement(required = true) - protected String geslachtsnaam; - @XmlElement(name = "voorvoegsel_geslachtsnaam") - protected String voorvoegselGeslachtsnaam; - protected String voornamen; - - /** - * Gets the value of the geslachtsnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeslachtsnaam() { - return geslachtsnaam; - } - - /** - * Sets the value of the geslachtsnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeslachtsnaam(String value) { - this.geslachtsnaam = value; - } - - /** - * Gets the value of the voorvoegselGeslachtsnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVoorvoegselGeslachtsnaam() { - return voorvoegselGeslachtsnaam; - } - - /** - * Sets the value of the voorvoegselGeslachtsnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVoorvoegselGeslachtsnaam(String value) { - this.voorvoegselGeslachtsnaam = value; - } - - /** - * Gets the value of the voornamen property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVoornamen() { - return voornamen; - } - - /** - * Sets the value of the voornamen property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVoornamen(String value) { - this.voornamen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtNietNatuurlijkPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtNietNatuurlijkPersoon.java deleted file mode 100644 index e5f3074..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtNietNatuurlijkPersoon.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OverzichtNietNatuurlijkPersoon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OverzichtNietNatuurlijkPersoon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="naam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OverzichtNietNatuurlijkPersoon", propOrder = { - -}) -public class OverzichtNietNatuurlijkPersoon { - - @XmlElement(required = true) - protected String naam; - @XmlElement(required = true) - protected String code; - - /** - * Gets the value of the naam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNaam() { - return naam; - } - - /** - * Sets the value of the naam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNaam(String value) { - this.naam = value; - } - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCode(String value) { - this.code = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtOnroerendeZaak.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtOnroerendeZaak.java deleted file mode 100644 index 5da6834..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtOnroerendeZaak.java +++ /dev/null @@ -1,148 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OverzichtOnroerendeZaak complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OverzichtOnroerendeZaak">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="kadastrale_aanduiding" type="{http://www.webservices.nl/soap/}KadastraleAanduiding"/>
- *         <element name="locatie" type="{http://www.webservices.nl/soap/}LocatieBinnenland" minOccurs="0"/>
- *         <element name="omschrijving" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OverzichtOnroerendeZaak", propOrder = { - -}) -public class OverzichtOnroerendeZaak { - - @XmlElement(name = "object_id", required = true) - protected String objectId; - @XmlElement(name = "kadastrale_aanduiding", required = true) - protected KadastraleAanduiding kadastraleAanduiding; - protected LocatieBinnenland locatie; - protected String omschrijving; - - /** - * Gets the value of the objectId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjectId() { - return objectId; - } - - /** - * Sets the value of the objectId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjectId(String value) { - this.objectId = value; - } - - /** - * Gets the value of the kadastraleAanduiding property. - * - * @return - * possible object is - * {@link KadastraleAanduiding } - * - */ - public KadastraleAanduiding getKadastraleAanduiding() { - return kadastraleAanduiding; - } - - /** - * Sets the value of the kadastraleAanduiding property. - * - * @param value - * allowed object is - * {@link KadastraleAanduiding } - * - */ - public void setKadastraleAanduiding(KadastraleAanduiding value) { - this.kadastraleAanduiding = value; - } - - /** - * Gets the value of the locatie property. - * - * @return - * possible object is - * {@link LocatieBinnenland } - * - */ - public LocatieBinnenland getLocatie() { - return locatie; - } - - /** - * Sets the value of the locatie property. - * - * @param value - * allowed object is - * {@link LocatieBinnenland } - * - */ - public void setLocatie(LocatieBinnenland value) { - this.locatie = value; - } - - /** - * Gets the value of the omschrijving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijving() { - return omschrijving; - } - - /** - * Sets the value of the omschrijving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijving(String value) { - this.omschrijving = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtOnroerendeZaakArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtOnroerendeZaakArray.java deleted file mode 100644 index fe2b3fc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtOnroerendeZaakArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OverzichtOnroerendeZaakArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OverzichtOnroerendeZaakArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}OverzichtOnroerendeZaak" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OverzichtOnroerendeZaakArray", propOrder = { - "item" -}) -public class OverzichtOnroerendeZaakArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OverzichtOnroerendeZaak } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoon.java deleted file mode 100644 index 208dc2a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoon.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OverzichtPersoon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OverzichtPersoon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="natuurlijk_persoon" type="{http://www.webservices.nl/soap/}OverzichtNatuurlijkPersoon" minOccurs="0"/>
- *         <element name="niet_natuurlijk_persoon" type="{http://www.webservices.nl/soap/}OverzichtNietNatuurlijkPersoon" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OverzichtPersoon", propOrder = { - -}) -public class OverzichtPersoon { - - protected String id; - @XmlElement(name = "natuurlijk_persoon") - protected OverzichtNatuurlijkPersoon natuurlijkPersoon; - @XmlElement(name = "niet_natuurlijk_persoon") - protected OverzichtNietNatuurlijkPersoon nietNatuurlijkPersoon; - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the natuurlijkPersoon property. - * - * @return - * possible object is - * {@link OverzichtNatuurlijkPersoon } - * - */ - public OverzichtNatuurlijkPersoon getNatuurlijkPersoon() { - return natuurlijkPersoon; - } - - /** - * Sets the value of the natuurlijkPersoon property. - * - * @param value - * allowed object is - * {@link OverzichtNatuurlijkPersoon } - * - */ - public void setNatuurlijkPersoon(OverzichtNatuurlijkPersoon value) { - this.natuurlijkPersoon = value; - } - - /** - * Gets the value of the nietNatuurlijkPersoon property. - * - * @return - * possible object is - * {@link OverzichtNietNatuurlijkPersoon } - * - */ - public OverzichtNietNatuurlijkPersoon getNietNatuurlijkPersoon() { - return nietNatuurlijkPersoon; - } - - /** - * Sets the value of the nietNatuurlijkPersoon property. - * - * @param value - * allowed object is - * {@link OverzichtNietNatuurlijkPersoon } - * - */ - public void setNietNatuurlijkPersoon(OverzichtNietNatuurlijkPersoon value) { - this.nietNatuurlijkPersoon = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonArray.java deleted file mode 100644 index 12990bc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OverzichtPersoonArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OverzichtPersoonArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}OverzichtPersoon" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OverzichtPersoonArray", propOrder = { - "item" -}) -public class OverzichtPersoonArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OverzichtPersoon } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonV2.java deleted file mode 100644 index 1ec333b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonV2.java +++ /dev/null @@ -1,148 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OverzichtPersoonV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OverzichtPersoonV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="natuurlijk_persoon" type="{http://www.webservices.nl/soap/}OverzichtNatuurlijkPersoon" minOccurs="0"/>
- *         <element name="niet_natuurlijk_persoon" type="{http://www.webservices.nl/soap/}OverzichtNietNatuurlijkPersoon" minOccurs="0"/>
- *         <element name="melding" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OverzichtPersoonV2", propOrder = { - -}) -public class OverzichtPersoonV2 { - - protected String id; - @XmlElement(name = "natuurlijk_persoon") - protected OverzichtNatuurlijkPersoon natuurlijkPersoon; - @XmlElement(name = "niet_natuurlijk_persoon") - protected OverzichtNietNatuurlijkPersoon nietNatuurlijkPersoon; - protected String melding; - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the natuurlijkPersoon property. - * - * @return - * possible object is - * {@link OverzichtNatuurlijkPersoon } - * - */ - public OverzichtNatuurlijkPersoon getNatuurlijkPersoon() { - return natuurlijkPersoon; - } - - /** - * Sets the value of the natuurlijkPersoon property. - * - * @param value - * allowed object is - * {@link OverzichtNatuurlijkPersoon } - * - */ - public void setNatuurlijkPersoon(OverzichtNatuurlijkPersoon value) { - this.natuurlijkPersoon = value; - } - - /** - * Gets the value of the nietNatuurlijkPersoon property. - * - * @return - * possible object is - * {@link OverzichtNietNatuurlijkPersoon } - * - */ - public OverzichtNietNatuurlijkPersoon getNietNatuurlijkPersoon() { - return nietNatuurlijkPersoon; - } - - /** - * Sets the value of the nietNatuurlijkPersoon property. - * - * @param value - * allowed object is - * {@link OverzichtNietNatuurlijkPersoon } - * - */ - public void setNietNatuurlijkPersoon(OverzichtNietNatuurlijkPersoon value) { - this.nietNatuurlijkPersoon = value; - } - - /** - * Gets the value of the melding property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMelding() { - return melding; - } - - /** - * Sets the value of the melding property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMelding(String value) { - this.melding = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonV2Array.java deleted file mode 100644 index f3e0fc0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtPersoonV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OverzichtPersoonV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OverzichtPersoonV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}OverzichtPersoonV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OverzichtPersoonV2Array", propOrder = { - "item" -}) -public class OverzichtPersoonV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OverzichtPersoonV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtRecht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtRecht.java deleted file mode 100644 index 660afa6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtRecht.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OverzichtRecht complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OverzichtRecht">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gerechtigde_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OverzichtRecht", propOrder = { - -}) -public class OverzichtRecht { - - @XmlElement(name = "object_id", required = true) - protected String objectId; - @XmlElement(name = "gerechtigde_id", required = true) - protected String gerechtigdeId; - - /** - * Gets the value of the objectId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjectId() { - return objectId; - } - - /** - * Sets the value of the objectId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjectId(String value) { - this.objectId = value; - } - - /** - * Gets the value of the gerechtigdeId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGerechtigdeId() { - return gerechtigdeId; - } - - /** - * Sets the value of the gerechtigdeId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGerechtigdeId(String value) { - this.gerechtigdeId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtRechtArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtRechtArray.java deleted file mode 100644 index 296d114..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtRechtArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OverzichtRechtArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OverzichtRechtArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}OverzichtRecht" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OverzichtRechtArray", propOrder = { - "item" -}) -public class OverzichtRechtArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link OverzichtRecht } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtV2.java deleted file mode 100644 index 506593a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/OverzichtV2.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for OverzichtV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="OverzichtV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="onroerende_zaken" type="{http://www.webservices.nl/soap/}OverzichtOnroerendeZaakArray"/>
- *         <element name="rechten" type="{http://www.webservices.nl/soap/}OverzichtRechtArray"/>
- *         <element name="personen" type="{http://www.webservices.nl/soap/}OverzichtPersoonV2Array" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "OverzichtV2", propOrder = { - -}) -public class OverzichtV2 { - - @XmlElement(name = "onroerende_zaken", required = true) - protected OverzichtOnroerendeZaakArray onroerendeZaken; - @XmlElement(required = true) - protected OverzichtRechtArray rechten; - protected OverzichtPersoonV2Array personen; - - /** - * Gets the value of the onroerendeZaken property. - * - * @return - * possible object is - * {@link OverzichtOnroerendeZaakArray } - * - */ - public OverzichtOnroerendeZaakArray getOnroerendeZaken() { - return onroerendeZaken; - } - - /** - * Sets the value of the onroerendeZaken property. - * - * @param value - * allowed object is - * {@link OverzichtOnroerendeZaakArray } - * - */ - public void setOnroerendeZaken(OverzichtOnroerendeZaakArray value) { - this.onroerendeZaken = value; - } - - /** - * Gets the value of the rechten property. - * - * @return - * possible object is - * {@link OverzichtRechtArray } - * - */ - public OverzichtRechtArray getRechten() { - return rechten; - } - - /** - * Sets the value of the rechten property. - * - * @param value - * allowed object is - * {@link OverzichtRechtArray } - * - */ - public void setRechten(OverzichtRechtArray value) { - this.rechten = value; - } - - /** - * Gets the value of the personen property. - * - * @return - * possible object is - * {@link OverzichtPersoonV2Array } - * - */ - public OverzichtPersoonV2Array getPersonen() { - return personen; - } - - /** - * Sets the value of the personen property. - * - * @param value - * allowed object is - * {@link OverzichtPersoonV2Array } - * - */ - public void setPersonen(OverzichtPersoonV2Array value) { - this.personen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeks.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeks.java deleted file mode 100644 index a7b1577..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeks.java +++ /dev/null @@ -1,539 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PCReeks complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PCReeks">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="reeksid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnr_van" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnr_tm" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="wijkcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="lettercombinatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="reeksindicatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="straatid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="straatnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="straatnaam_nen" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="straatnaam_ptt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="straatnaam_extract" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="plaatsid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="plaatsnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="plaatsnaam_ptt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="plaatsnaam_extract" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeenteid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="cebucocode" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="provinciecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="provincienaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PCReeks", propOrder = { - -}) -public class PCReeks { - - protected int reeksid; - @XmlElement(name = "huisnr_van") - protected int huisnrVan; - @XmlElement(name = "huisnr_tm") - protected int huisnrTm; - @XmlElement(required = true) - protected String wijkcode; - @XmlElement(required = true) - protected String lettercombinatie; - @XmlElement(required = true) - protected String reeksindicatie; - protected int straatid; - @XmlElement(required = true) - protected String straatnaam; - @XmlElement(name = "straatnaam_nen", required = true) - protected String straatnaamNen; - @XmlElement(name = "straatnaam_ptt", required = true) - protected String straatnaamPtt; - @XmlElement(name = "straatnaam_extract", required = true) - protected String straatnaamExtract; - protected int plaatsid; - @XmlElement(required = true) - protected String plaatsnaam; - @XmlElement(name = "plaatsnaam_ptt", required = true) - protected String plaatsnaamPtt; - @XmlElement(name = "plaatsnaam_extract", required = true) - protected String plaatsnaamExtract; - protected int gemeenteid; - @XmlElement(required = true) - protected String gemeentenaam; - protected int gemeentecode; - protected int cebucocode; - @XmlElement(required = true) - protected String provinciecode; - @XmlElement(required = true) - protected String provincienaam; - - /** - * Gets the value of the reeksid property. - * - */ - public int getReeksid() { - return reeksid; - } - - /** - * Sets the value of the reeksid property. - * - */ - public void setReeksid(int value) { - this.reeksid = value; - } - - /** - * Gets the value of the huisnrVan property. - * - */ - public int getHuisnrVan() { - return huisnrVan; - } - - /** - * Sets the value of the huisnrVan property. - * - */ - public void setHuisnrVan(int value) { - this.huisnrVan = value; - } - - /** - * Gets the value of the huisnrTm property. - * - */ - public int getHuisnrTm() { - return huisnrTm; - } - - /** - * Sets the value of the huisnrTm property. - * - */ - public void setHuisnrTm(int value) { - this.huisnrTm = value; - } - - /** - * Gets the value of the wijkcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWijkcode() { - return wijkcode; - } - - /** - * Sets the value of the wijkcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWijkcode(String value) { - this.wijkcode = value; - } - - /** - * Gets the value of the lettercombinatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLettercombinatie() { - return lettercombinatie; - } - - /** - * Sets the value of the lettercombinatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLettercombinatie(String value) { - this.lettercombinatie = value; - } - - /** - * Gets the value of the reeksindicatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReeksindicatie() { - return reeksindicatie; - } - - /** - * Sets the value of the reeksindicatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReeksindicatie(String value) { - this.reeksindicatie = value; - } - - /** - * Gets the value of the straatid property. - * - */ - public int getStraatid() { - return straatid; - } - - /** - * Sets the value of the straatid property. - * - */ - public void setStraatid(int value) { - this.straatid = value; - } - - /** - * Gets the value of the straatnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStraatnaam() { - return straatnaam; - } - - /** - * Sets the value of the straatnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStraatnaam(String value) { - this.straatnaam = value; - } - - /** - * Gets the value of the straatnaamNen property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStraatnaamNen() { - return straatnaamNen; - } - - /** - * Sets the value of the straatnaamNen property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStraatnaamNen(String value) { - this.straatnaamNen = value; - } - - /** - * Gets the value of the straatnaamPtt property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStraatnaamPtt() { - return straatnaamPtt; - } - - /** - * Sets the value of the straatnaamPtt property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStraatnaamPtt(String value) { - this.straatnaamPtt = value; - } - - /** - * Gets the value of the straatnaamExtract property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStraatnaamExtract() { - return straatnaamExtract; - } - - /** - * Sets the value of the straatnaamExtract property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStraatnaamExtract(String value) { - this.straatnaamExtract = value; - } - - /** - * Gets the value of the plaatsid property. - * - */ - public int getPlaatsid() { - return plaatsid; - } - - /** - * Sets the value of the plaatsid property. - * - */ - public void setPlaatsid(int value) { - this.plaatsid = value; - } - - /** - * Gets the value of the plaatsnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaatsnaam() { - return plaatsnaam; - } - - /** - * Sets the value of the plaatsnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaatsnaam(String value) { - this.plaatsnaam = value; - } - - /** - * Gets the value of the plaatsnaamPtt property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaatsnaamPtt() { - return plaatsnaamPtt; - } - - /** - * Sets the value of the plaatsnaamPtt property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaatsnaamPtt(String value) { - this.plaatsnaamPtt = value; - } - - /** - * Gets the value of the plaatsnaamExtract property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaatsnaamExtract() { - return plaatsnaamExtract; - } - - /** - * Sets the value of the plaatsnaamExtract property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaatsnaamExtract(String value) { - this.plaatsnaamExtract = value; - } - - /** - * Gets the value of the gemeenteid property. - * - */ - public int getGemeenteid() { - return gemeenteid; - } - - /** - * Sets the value of the gemeenteid property. - * - */ - public void setGemeenteid(int value) { - this.gemeenteid = value; - } - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the gemeentecode property. - * - */ - public int getGemeentecode() { - return gemeentecode; - } - - /** - * Sets the value of the gemeentecode property. - * - */ - public void setGemeentecode(int value) { - this.gemeentecode = value; - } - - /** - * Gets the value of the cebucocode property. - * - */ - public int getCebucocode() { - return cebucocode; - } - - /** - * Sets the value of the cebucocode property. - * - */ - public void setCebucocode(int value) { - this.cebucocode = value; - } - - /** - * Gets the value of the provinciecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvinciecode() { - return provinciecode; - } - - /** - * Sets the value of the provinciecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvinciecode(String value) { - this.provinciecode = value; - } - - /** - * Gets the value of the provincienaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvincienaam() { - return provincienaam; - } - - /** - * Sets the value of the provincienaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvincienaam(String value) { - this.provincienaam = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeksArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeksArray.java deleted file mode 100644 index 0017140..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeksArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PCReeksArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PCReeksArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}PCReeks" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PCReeksArray", propOrder = { - "item" -}) -public class PCReeksArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PCReeks } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeksSearchPartsPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeksSearchPartsPagedResult.java deleted file mode 100644 index d18a668..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PCReeksSearchPartsPagedResult.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PCReeksSearchPartsPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PCReeksSearchPartsPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="extra" type="{http://www.webservices.nl/soap/}SearchParts"/>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}PCReeksArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PCReeksSearchPartsPagedResult", propOrder = { - -}) -public class PCReeksSearchPartsPagedResult { - - @XmlElement(required = true) - protected SearchParts extra; - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected PCReeksArray results; - - /** - * Gets the value of the extra property. - * - * @return - * possible object is - * {@link SearchParts } - * - */ - public SearchParts getExtra() { - return extra; - } - - /** - * Sets the value of the extra property. - * - * @param value - * allowed object is - * {@link SearchParts } - * - */ - public void setExtra(SearchParts value) { - this.extra = value; - } - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link PCReeksArray } - * - */ - public PCReeksArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link PCReeksArray } - * - */ - public void setResults(PCReeksArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperking.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperking.java deleted file mode 100644 index 5ed59e6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperking.java +++ /dev/null @@ -1,231 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PRBeperking complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PRBeperking">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="stuk_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="betrokkene_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeente_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeentelijke_registratie_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="omschrijving_pr_beperking" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="beschrijving_pr_beperking" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="splitsing_pr_beperking" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PRBeperking", propOrder = { - -}) -public class PRBeperking { - - @XmlElement(name = "stuk_id", required = true) - protected String stukId; - @XmlElement(name = "betrokkene_id", required = true) - protected String betrokkeneId; - @XmlElement(name = "gemeente_id", required = true) - protected String gemeenteId; - @XmlElement(name = "gemeentelijke_registratie_id", required = true) - protected String gemeentelijkeRegistratieId; - @XmlElement(name = "omschrijving_pr_beperking", required = true) - protected String omschrijvingPrBeperking; - @XmlElement(name = "beschrijving_pr_beperking") - protected String beschrijvingPrBeperking; - @XmlElement(name = "splitsing_pr_beperking") - protected String splitsingPrBeperking; - - /** - * Gets the value of the stukId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStukId() { - return stukId; - } - - /** - * Sets the value of the stukId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStukId(String value) { - this.stukId = value; - } - - /** - * Gets the value of the betrokkeneId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBetrokkeneId() { - return betrokkeneId; - } - - /** - * Sets the value of the betrokkeneId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBetrokkeneId(String value) { - this.betrokkeneId = value; - } - - /** - * Gets the value of the gemeenteId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeenteId() { - return gemeenteId; - } - - /** - * Sets the value of the gemeenteId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeenteId(String value) { - this.gemeenteId = value; - } - - /** - * Gets the value of the gemeentelijkeRegistratieId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentelijkeRegistratieId() { - return gemeentelijkeRegistratieId; - } - - /** - * Sets the value of the gemeentelijkeRegistratieId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentelijkeRegistratieId(String value) { - this.gemeentelijkeRegistratieId = value; - } - - /** - * Gets the value of the omschrijvingPrBeperking property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijvingPrBeperking() { - return omschrijvingPrBeperking; - } - - /** - * Sets the value of the omschrijvingPrBeperking property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijvingPrBeperking(String value) { - this.omschrijvingPrBeperking = value; - } - - /** - * Gets the value of the beschrijvingPrBeperking property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBeschrijvingPrBeperking() { - return beschrijvingPrBeperking; - } - - /** - * Sets the value of the beschrijvingPrBeperking property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBeschrijvingPrBeperking(String value) { - this.beschrijvingPrBeperking = value; - } - - /** - * Gets the value of the splitsingPrBeperking property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSplitsingPrBeperking() { - return splitsingPrBeperking; - } - - /** - * Sets the value of the splitsingPrBeperking property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSplitsingPrBeperking(String value) { - this.splitsingPrBeperking = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingArray.java deleted file mode 100644 index 5c6eb8c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PRBeperkingArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PRBeperkingArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}PRBeperking" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PRBeperkingArray", propOrder = { - "item" -}) -public class PRBeperkingArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PRBeperking } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingLijst.java deleted file mode 100644 index 62eb774..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingLijst.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PRBeperkingLijst complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PRBeperkingLijst">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="pr_beperkingen" type="{http://www.webservices.nl/soap/}PRBeperkingArray"/>
- *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PRBeperkingLijst", propOrder = { - -}) -public class PRBeperkingLijst { - - @XmlElement(name = "pr_beperkingen", required = true) - protected PRBeperkingArray prBeperkingen; - @XmlElement(name = "indicatie_compleet") - protected boolean indicatieCompleet; - - /** - * Gets the value of the prBeperkingen property. - * - * @return - * possible object is - * {@link PRBeperkingArray } - * - */ - public PRBeperkingArray getPrBeperkingen() { - return prBeperkingen; - } - - /** - * Sets the value of the prBeperkingen property. - * - * @param value - * allowed object is - * {@link PRBeperkingArray } - * - */ - public void setPrBeperkingen(PRBeperkingArray value) { - this.prBeperkingen = value; - } - - /** - * Gets the value of the indicatieCompleet property. - * - */ - public boolean isIndicatieCompleet() { - return indicatieCompleet; - } - - /** - * Sets the value of the indicatieCompleet property. - * - */ - public void setIndicatieCompleet(boolean value) { - this.indicatieCompleet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingenKadastraalObject.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingenKadastraalObject.java deleted file mode 100644 index 014c786..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PRBeperkingenKadastraalObject.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PRBeperkingenKadastraalObject complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PRBeperkingenKadastraalObject">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="pr_beperkingen_lijst" type="{http://www.webservices.nl/soap/}PRBeperkingLijst" minOccurs="0"/>
- *         <element name="melding" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PRBeperkingenKadastraalObject", propOrder = { - -}) -public class PRBeperkingenKadastraalObject { - - @XmlElement(name = "pr_beperkingen_lijst") - protected PRBeperkingLijst prBeperkingenLijst; - protected String melding; - - /** - * Gets the value of the prBeperkingenLijst property. - * - * @return - * possible object is - * {@link PRBeperkingLijst } - * - */ - public PRBeperkingLijst getPrBeperkingenLijst() { - return prBeperkingenLijst; - } - - /** - * Sets the value of the prBeperkingenLijst property. - * - * @param value - * allowed object is - * {@link PRBeperkingLijst } - * - */ - public void setPrBeperkingenLijst(PRBeperkingLijst value) { - this.prBeperkingenLijst = value; - } - - /** - * Gets the value of the melding property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMelding() { - return melding; - } - - /** - * Sets the value of the melding property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMelding(String value) { - this.melding = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Perceel.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Perceel.java deleted file mode 100644 index d43d8a2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Perceel.java +++ /dev/null @@ -1,620 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Perceel complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Perceel">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="perceelid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnr" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnr_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="perceelnummer" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="reeksid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnr_van" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="huisnr_tm" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="wijkcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="lettercombinatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="reeksindicatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="straatid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="straatnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="straatnaam_nen" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="straatnaam_ptt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="straatnaam_extract" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="plaatsid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="plaatsnaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="plaatsnaam_ptt" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="plaatsnaam_extract" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeenteid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="gemeentenaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeentecode" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="cebucocode" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="provinciecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="provincienaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Perceel", propOrder = { - -}) -public class Perceel { - - protected int perceelid; - protected int huisnr; - @XmlElement(name = "huisnr_toevoeging", required = true) - protected String huisnrToevoeging; - protected int perceelnummer; - protected int reeksid; - @XmlElement(name = "huisnr_van") - protected int huisnrVan; - @XmlElement(name = "huisnr_tm") - protected int huisnrTm; - @XmlElement(required = true) - protected String wijkcode; - @XmlElement(required = true) - protected String lettercombinatie; - @XmlElement(required = true) - protected String reeksindicatie; - protected int straatid; - @XmlElement(required = true) - protected String straatnaam; - @XmlElement(name = "straatnaam_nen", required = true) - protected String straatnaamNen; - @XmlElement(name = "straatnaam_ptt", required = true) - protected String straatnaamPtt; - @XmlElement(name = "straatnaam_extract", required = true) - protected String straatnaamExtract; - protected int plaatsid; - @XmlElement(required = true) - protected String plaatsnaam; - @XmlElement(name = "plaatsnaam_ptt", required = true) - protected String plaatsnaamPtt; - @XmlElement(name = "plaatsnaam_extract", required = true) - protected String plaatsnaamExtract; - protected int gemeenteid; - @XmlElement(required = true) - protected String gemeentenaam; - protected int gemeentecode; - protected int cebucocode; - @XmlElement(required = true) - protected String provinciecode; - @XmlElement(required = true) - protected String provincienaam; - - /** - * Gets the value of the perceelid property. - * - */ - public int getPerceelid() { - return perceelid; - } - - /** - * Sets the value of the perceelid property. - * - */ - public void setPerceelid(int value) { - this.perceelid = value; - } - - /** - * Gets the value of the huisnr property. - * - */ - public int getHuisnr() { - return huisnr; - } - - /** - * Sets the value of the huisnr property. - * - */ - public void setHuisnr(int value) { - this.huisnr = value; - } - - /** - * Gets the value of the huisnrToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnrToevoeging() { - return huisnrToevoeging; - } - - /** - * Sets the value of the huisnrToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnrToevoeging(String value) { - this.huisnrToevoeging = value; - } - - /** - * Gets the value of the perceelnummer property. - * - */ - public int getPerceelnummer() { - return perceelnummer; - } - - /** - * Sets the value of the perceelnummer property. - * - */ - public void setPerceelnummer(int value) { - this.perceelnummer = value; - } - - /** - * Gets the value of the reeksid property. - * - */ - public int getReeksid() { - return reeksid; - } - - /** - * Sets the value of the reeksid property. - * - */ - public void setReeksid(int value) { - this.reeksid = value; - } - - /** - * Gets the value of the huisnrVan property. - * - */ - public int getHuisnrVan() { - return huisnrVan; - } - - /** - * Sets the value of the huisnrVan property. - * - */ - public void setHuisnrVan(int value) { - this.huisnrVan = value; - } - - /** - * Gets the value of the huisnrTm property. - * - */ - public int getHuisnrTm() { - return huisnrTm; - } - - /** - * Sets the value of the huisnrTm property. - * - */ - public void setHuisnrTm(int value) { - this.huisnrTm = value; - } - - /** - * Gets the value of the wijkcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWijkcode() { - return wijkcode; - } - - /** - * Sets the value of the wijkcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWijkcode(String value) { - this.wijkcode = value; - } - - /** - * Gets the value of the lettercombinatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLettercombinatie() { - return lettercombinatie; - } - - /** - * Sets the value of the lettercombinatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLettercombinatie(String value) { - this.lettercombinatie = value; - } - - /** - * Gets the value of the reeksindicatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReeksindicatie() { - return reeksindicatie; - } - - /** - * Sets the value of the reeksindicatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReeksindicatie(String value) { - this.reeksindicatie = value; - } - - /** - * Gets the value of the straatid property. - * - */ - public int getStraatid() { - return straatid; - } - - /** - * Sets the value of the straatid property. - * - */ - public void setStraatid(int value) { - this.straatid = value; - } - - /** - * Gets the value of the straatnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStraatnaam() { - return straatnaam; - } - - /** - * Sets the value of the straatnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStraatnaam(String value) { - this.straatnaam = value; - } - - /** - * Gets the value of the straatnaamNen property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStraatnaamNen() { - return straatnaamNen; - } - - /** - * Sets the value of the straatnaamNen property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStraatnaamNen(String value) { - this.straatnaamNen = value; - } - - /** - * Gets the value of the straatnaamPtt property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStraatnaamPtt() { - return straatnaamPtt; - } - - /** - * Sets the value of the straatnaamPtt property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStraatnaamPtt(String value) { - this.straatnaamPtt = value; - } - - /** - * Gets the value of the straatnaamExtract property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStraatnaamExtract() { - return straatnaamExtract; - } - - /** - * Sets the value of the straatnaamExtract property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStraatnaamExtract(String value) { - this.straatnaamExtract = value; - } - - /** - * Gets the value of the plaatsid property. - * - */ - public int getPlaatsid() { - return plaatsid; - } - - /** - * Sets the value of the plaatsid property. - * - */ - public void setPlaatsid(int value) { - this.plaatsid = value; - } - - /** - * Gets the value of the plaatsnaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaatsnaam() { - return plaatsnaam; - } - - /** - * Sets the value of the plaatsnaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaatsnaam(String value) { - this.plaatsnaam = value; - } - - /** - * Gets the value of the plaatsnaamPtt property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaatsnaamPtt() { - return plaatsnaamPtt; - } - - /** - * Sets the value of the plaatsnaamPtt property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaatsnaamPtt(String value) { - this.plaatsnaamPtt = value; - } - - /** - * Gets the value of the plaatsnaamExtract property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaatsnaamExtract() { - return plaatsnaamExtract; - } - - /** - * Sets the value of the plaatsnaamExtract property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaatsnaamExtract(String value) { - this.plaatsnaamExtract = value; - } - - /** - * Gets the value of the gemeenteid property. - * - */ - public int getGemeenteid() { - return gemeenteid; - } - - /** - * Sets the value of the gemeenteid property. - * - */ - public void setGemeenteid(int value) { - this.gemeenteid = value; - } - - /** - * Gets the value of the gemeentenaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeentenaam() { - return gemeentenaam; - } - - /** - * Sets the value of the gemeentenaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeentenaam(String value) { - this.gemeentenaam = value; - } - - /** - * Gets the value of the gemeentecode property. - * - */ - public int getGemeentecode() { - return gemeentecode; - } - - /** - * Sets the value of the gemeentecode property. - * - */ - public void setGemeentecode(int value) { - this.gemeentecode = value; - } - - /** - * Gets the value of the cebucocode property. - * - */ - public int getCebucocode() { - return cebucocode; - } - - /** - * Sets the value of the cebucocode property. - * - */ - public void setCebucocode(int value) { - this.cebucocode = value; - } - - /** - * Gets the value of the provinciecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvinciecode() { - return provinciecode; - } - - /** - * Sets the value of the provinciecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvinciecode(String value) { - this.provinciecode = value; - } - - /** - * Gets the value of the provincienaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvincienaam() { - return provincienaam; - } - - /** - * Sets the value of the provincienaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvincienaam(String value) { - this.provincienaam = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelArray.java deleted file mode 100644 index 0809912..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PerceelArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PerceelArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}Perceel" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PerceelArray", propOrder = { - "item" -}) -public class PerceelArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Perceel } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelDetails.java deleted file mode 100644 index ecd7961..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelDetails.java +++ /dev/null @@ -1,93 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PerceelDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PerceelDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="perceel" type="{http://www.webservices.nl/soap/}KadastraalPerceel" minOccurs="0"/>
- *         <element name="appartementsrecht" type="{http://www.webservices.nl/soap/}VerenigingVanEigenaren" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PerceelDetails", propOrder = { - -}) -public class PerceelDetails { - - protected KadastraalPerceel perceel; - protected VerenigingVanEigenaren appartementsrecht; - - /** - * Gets the value of the perceel property. - * - * @return - * possible object is - * {@link KadastraalPerceel } - * - */ - public KadastraalPerceel getPerceel() { - return perceel; - } - - /** - * Sets the value of the perceel property. - * - * @param value - * allowed object is - * {@link KadastraalPerceel } - * - */ - public void setPerceel(KadastraalPerceel value) { - this.perceel = value; - } - - /** - * Gets the value of the appartementsrecht property. - * - * @return - * possible object is - * {@link VerenigingVanEigenaren } - * - */ - public VerenigingVanEigenaren getAppartementsrecht() { - return appartementsrecht; - } - - /** - * Sets the value of the appartementsrecht property. - * - * @param value - * allowed object is - * {@link VerenigingVanEigenaren } - * - */ - public void setAppartementsrecht(VerenigingVanEigenaren value) { - this.appartementsrecht = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelSearchPartsPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelSearchPartsPagedResult.java deleted file mode 100644 index 25832b4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PerceelSearchPartsPagedResult.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PerceelSearchPartsPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PerceelSearchPartsPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="extra" type="{http://www.webservices.nl/soap/}SearchParts"/>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}PerceelArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PerceelSearchPartsPagedResult", propOrder = { - -}) -public class PerceelSearchPartsPagedResult { - - @XmlElement(required = true) - protected SearchParts extra; - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected PerceelArray results; - - /** - * Gets the value of the extra property. - * - * @return - * possible object is - * {@link SearchParts } - * - */ - public SearchParts getExtra() { - return extra; - } - - /** - * Sets the value of the extra property. - * - * @param value - * allowed object is - * {@link SearchParts } - * - */ - public void setExtra(SearchParts value) { - this.extra = value; - } - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link PerceelArray } - * - */ - public PerceelArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link PerceelArray } - * - */ - public void setResults(PerceelArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Persoon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Persoon.java deleted file mode 100644 index bbb7c03..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Persoon.java +++ /dev/null @@ -1,267 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Persoon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Persoon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="natuurlijk_persoon" type="{http://www.webservices.nl/soap/}NatuurlijkPersoon" minOccurs="0"/>
- *         <element name="niet_natuurlijk_persoon" type="{http://www.webservices.nl/soap/}NietNatuurlijkPersoon" minOccurs="0"/>
- *         <element name="aantekening_beschikkingsbevoegdheid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indicatie_meer_onroerende_zaken" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="woonlocatie" type="{http://www.webservices.nl/soap/}Locatie" minOccurs="0"/>
- *         <element name="postlocatie" type="{http://www.webservices.nl/soap/}Locatie" minOccurs="0"/>
- *         <element name="niet_volledig_verwerkt_stukken_lijst" type="{http://www.webservices.nl/soap/}StukReferentiesLijst" minOccurs="0"/>
- *         <element name="mogelijk_van_belang_stukken_lijst" type="{http://www.webservices.nl/soap/}StukReferentiesLijst" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Persoon", propOrder = { - -}) -public class Persoon { - - @XmlElement(required = true) - protected String id; - @XmlElement(name = "natuurlijk_persoon") - protected NatuurlijkPersoon natuurlijkPersoon; - @XmlElement(name = "niet_natuurlijk_persoon") - protected NietNatuurlijkPersoon nietNatuurlijkPersoon; - @XmlElement(name = "aantekening_beschikkingsbevoegdheid") - protected boolean aantekeningBeschikkingsbevoegdheid; - @XmlElement(name = "indicatie_meer_onroerende_zaken") - protected boolean indicatieMeerOnroerendeZaken; - protected Locatie woonlocatie; - protected Locatie postlocatie; - @XmlElement(name = "niet_volledig_verwerkt_stukken_lijst") - protected StukReferentiesLijst nietVolledigVerwerktStukkenLijst; - @XmlElement(name = "mogelijk_van_belang_stukken_lijst") - protected StukReferentiesLijst mogelijkVanBelangStukkenLijst; - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the natuurlijkPersoon property. - * - * @return - * possible object is - * {@link NatuurlijkPersoon } - * - */ - public NatuurlijkPersoon getNatuurlijkPersoon() { - return natuurlijkPersoon; - } - - /** - * Sets the value of the natuurlijkPersoon property. - * - * @param value - * allowed object is - * {@link NatuurlijkPersoon } - * - */ - public void setNatuurlijkPersoon(NatuurlijkPersoon value) { - this.natuurlijkPersoon = value; - } - - /** - * Gets the value of the nietNatuurlijkPersoon property. - * - * @return - * possible object is - * {@link NietNatuurlijkPersoon } - * - */ - public NietNatuurlijkPersoon getNietNatuurlijkPersoon() { - return nietNatuurlijkPersoon; - } - - /** - * Sets the value of the nietNatuurlijkPersoon property. - * - * @param value - * allowed object is - * {@link NietNatuurlijkPersoon } - * - */ - public void setNietNatuurlijkPersoon(NietNatuurlijkPersoon value) { - this.nietNatuurlijkPersoon = value; - } - - /** - * Gets the value of the aantekeningBeschikkingsbevoegdheid property. - * - */ - public boolean isAantekeningBeschikkingsbevoegdheid() { - return aantekeningBeschikkingsbevoegdheid; - } - - /** - * Sets the value of the aantekeningBeschikkingsbevoegdheid property. - * - */ - public void setAantekeningBeschikkingsbevoegdheid(boolean value) { - this.aantekeningBeschikkingsbevoegdheid = value; - } - - /** - * Gets the value of the indicatieMeerOnroerendeZaken property. - * - */ - public boolean isIndicatieMeerOnroerendeZaken() { - return indicatieMeerOnroerendeZaken; - } - - /** - * Sets the value of the indicatieMeerOnroerendeZaken property. - * - */ - public void setIndicatieMeerOnroerendeZaken(boolean value) { - this.indicatieMeerOnroerendeZaken = value; - } - - /** - * Gets the value of the woonlocatie property. - * - * @return - * possible object is - * {@link Locatie } - * - */ - public Locatie getWoonlocatie() { - return woonlocatie; - } - - /** - * Sets the value of the woonlocatie property. - * - * @param value - * allowed object is - * {@link Locatie } - * - */ - public void setWoonlocatie(Locatie value) { - this.woonlocatie = value; - } - - /** - * Gets the value of the postlocatie property. - * - * @return - * possible object is - * {@link Locatie } - * - */ - public Locatie getPostlocatie() { - return postlocatie; - } - - /** - * Sets the value of the postlocatie property. - * - * @param value - * allowed object is - * {@link Locatie } - * - */ - public void setPostlocatie(Locatie value) { - this.postlocatie = value; - } - - /** - * Gets the value of the nietVolledigVerwerktStukkenLijst property. - * - * @return - * possible object is - * {@link StukReferentiesLijst } - * - */ - public StukReferentiesLijst getNietVolledigVerwerktStukkenLijst() { - return nietVolledigVerwerktStukkenLijst; - } - - /** - * Sets the value of the nietVolledigVerwerktStukkenLijst property. - * - * @param value - * allowed object is - * {@link StukReferentiesLijst } - * - */ - public void setNietVolledigVerwerktStukkenLijst(StukReferentiesLijst value) { - this.nietVolledigVerwerktStukkenLijst = value; - } - - /** - * Gets the value of the mogelijkVanBelangStukkenLijst property. - * - * @return - * possible object is - * {@link StukReferentiesLijst } - * - */ - public StukReferentiesLijst getMogelijkVanBelangStukkenLijst() { - return mogelijkVanBelangStukkenLijst; - } - - /** - * Sets the value of the mogelijkVanBelangStukkenLijst property. - * - * @param value - * allowed object is - * {@link StukReferentiesLijst } - * - */ - public void setMogelijkVanBelangStukkenLijst(StukReferentiesLijst value) { - this.mogelijkVanBelangStukkenLijst = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonArray.java deleted file mode 100644 index ba22986..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PersoonArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PersoonArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}Persoon" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PersoonArray", propOrder = { - "item" -}) -public class PersoonArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Persoon } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonV2.java deleted file mode 100644 index 3528524..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonV2.java +++ /dev/null @@ -1,267 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PersoonV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PersoonV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="natuurlijk_persoon" type="{http://www.webservices.nl/soap/}NatuurlijkPersoonV2" minOccurs="0"/>
- *         <element name="niet_natuurlijk_persoon" type="{http://www.webservices.nl/soap/}NietNatuurlijkPersoon" minOccurs="0"/>
- *         <element name="aantekening_beschikkingsbevoegdheid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="indicatie_meer_onroerende_zaken" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="woonlocatie" type="{http://www.webservices.nl/soap/}Locatie" minOccurs="0"/>
- *         <element name="postlocatie" type="{http://www.webservices.nl/soap/}Locatie" minOccurs="0"/>
- *         <element name="niet_volledig_verwerkt_stukken_lijst" type="{http://www.webservices.nl/soap/}StukReferentiesLijst" minOccurs="0"/>
- *         <element name="mogelijk_van_belang_stukken_lijst" type="{http://www.webservices.nl/soap/}StukReferentiesLijst" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PersoonV2", propOrder = { - -}) -public class PersoonV2 { - - @XmlElement(required = true) - protected String id; - @XmlElement(name = "natuurlijk_persoon") - protected NatuurlijkPersoonV2 natuurlijkPersoon; - @XmlElement(name = "niet_natuurlijk_persoon") - protected NietNatuurlijkPersoon nietNatuurlijkPersoon; - @XmlElement(name = "aantekening_beschikkingsbevoegdheid") - protected boolean aantekeningBeschikkingsbevoegdheid; - @XmlElement(name = "indicatie_meer_onroerende_zaken") - protected boolean indicatieMeerOnroerendeZaken; - protected Locatie woonlocatie; - protected Locatie postlocatie; - @XmlElement(name = "niet_volledig_verwerkt_stukken_lijst") - protected StukReferentiesLijst nietVolledigVerwerktStukkenLijst; - @XmlElement(name = "mogelijk_van_belang_stukken_lijst") - protected StukReferentiesLijst mogelijkVanBelangStukkenLijst; - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the natuurlijkPersoon property. - * - * @return - * possible object is - * {@link NatuurlijkPersoonV2 } - * - */ - public NatuurlijkPersoonV2 getNatuurlijkPersoon() { - return natuurlijkPersoon; - } - - /** - * Sets the value of the natuurlijkPersoon property. - * - * @param value - * allowed object is - * {@link NatuurlijkPersoonV2 } - * - */ - public void setNatuurlijkPersoon(NatuurlijkPersoonV2 value) { - this.natuurlijkPersoon = value; - } - - /** - * Gets the value of the nietNatuurlijkPersoon property. - * - * @return - * possible object is - * {@link NietNatuurlijkPersoon } - * - */ - public NietNatuurlijkPersoon getNietNatuurlijkPersoon() { - return nietNatuurlijkPersoon; - } - - /** - * Sets the value of the nietNatuurlijkPersoon property. - * - * @param value - * allowed object is - * {@link NietNatuurlijkPersoon } - * - */ - public void setNietNatuurlijkPersoon(NietNatuurlijkPersoon value) { - this.nietNatuurlijkPersoon = value; - } - - /** - * Gets the value of the aantekeningBeschikkingsbevoegdheid property. - * - */ - public boolean isAantekeningBeschikkingsbevoegdheid() { - return aantekeningBeschikkingsbevoegdheid; - } - - /** - * Sets the value of the aantekeningBeschikkingsbevoegdheid property. - * - */ - public void setAantekeningBeschikkingsbevoegdheid(boolean value) { - this.aantekeningBeschikkingsbevoegdheid = value; - } - - /** - * Gets the value of the indicatieMeerOnroerendeZaken property. - * - */ - public boolean isIndicatieMeerOnroerendeZaken() { - return indicatieMeerOnroerendeZaken; - } - - /** - * Sets the value of the indicatieMeerOnroerendeZaken property. - * - */ - public void setIndicatieMeerOnroerendeZaken(boolean value) { - this.indicatieMeerOnroerendeZaken = value; - } - - /** - * Gets the value of the woonlocatie property. - * - * @return - * possible object is - * {@link Locatie } - * - */ - public Locatie getWoonlocatie() { - return woonlocatie; - } - - /** - * Sets the value of the woonlocatie property. - * - * @param value - * allowed object is - * {@link Locatie } - * - */ - public void setWoonlocatie(Locatie value) { - this.woonlocatie = value; - } - - /** - * Gets the value of the postlocatie property. - * - * @return - * possible object is - * {@link Locatie } - * - */ - public Locatie getPostlocatie() { - return postlocatie; - } - - /** - * Sets the value of the postlocatie property. - * - * @param value - * allowed object is - * {@link Locatie } - * - */ - public void setPostlocatie(Locatie value) { - this.postlocatie = value; - } - - /** - * Gets the value of the nietVolledigVerwerktStukkenLijst property. - * - * @return - * possible object is - * {@link StukReferentiesLijst } - * - */ - public StukReferentiesLijst getNietVolledigVerwerktStukkenLijst() { - return nietVolledigVerwerktStukkenLijst; - } - - /** - * Sets the value of the nietVolledigVerwerktStukkenLijst property. - * - * @param value - * allowed object is - * {@link StukReferentiesLijst } - * - */ - public void setNietVolledigVerwerktStukkenLijst(StukReferentiesLijst value) { - this.nietVolledigVerwerktStukkenLijst = value; - } - - /** - * Gets the value of the mogelijkVanBelangStukkenLijst property. - * - * @return - * possible object is - * {@link StukReferentiesLijst } - * - */ - public StukReferentiesLijst getMogelijkVanBelangStukkenLijst() { - return mogelijkVanBelangStukkenLijst; - } - - /** - * Sets the value of the mogelijkVanBelangStukkenLijst property. - * - * @param value - * allowed object is - * {@link StukReferentiesLijst } - * - */ - public void setMogelijkVanBelangStukkenLijst(StukReferentiesLijst value) { - this.mogelijkVanBelangStukkenLijst = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonV2Array.java deleted file mode 100644 index b0ffd2b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/PersoonV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PersoonV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PersoonV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}PersoonV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PersoonV2Array", propOrder = { - "item" -}) -public class PersoonV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PersoonV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Province.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Province.java deleted file mode 100644 index 0171793..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Province.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Province complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Province">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="provinciecode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="provincienaam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Province", propOrder = { - -}) -public class Province { - - @XmlElement(required = true) - protected String provinciecode; - @XmlElement(required = true) - protected String provincienaam; - - /** - * Gets the value of the provinciecode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvinciecode() { - return provinciecode; - } - - /** - * Sets the value of the provinciecode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvinciecode(String value) { - this.provinciecode = value; - } - - /** - * Gets the value of the provincienaam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvincienaam() { - return provincienaam; - } - - /** - * Sets the value of the provincienaam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvincienaam(String value) { - this.provincienaam = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ProvinceArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ProvinceArray.java deleted file mode 100644 index b0a516e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ProvinceArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ProvinceArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ProvinceArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}Province" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProvinceArray", propOrder = { - "item" -}) -public class ProvinceArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Province } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ProvincePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ProvincePagedResult.java deleted file mode 100644 index 17a02e7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ProvincePagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ProvincePagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ProvincePagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}ProvinceArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProvincePagedResult", propOrder = { - -}) -public class ProvincePagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected ProvinceArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link ProvinceArray } - * - */ - public ProvinceArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link ProvinceArray } - * - */ - public void setResults(ProvinceArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinates.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinates.java deleted file mode 100644 index a1e8644..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinates.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RDCoordinates complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RDCoordinates">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RDCoordinates", propOrder = { - -}) -public class RDCoordinates { - - protected int x; - protected int y; - - /** - * Gets the value of the x property. - * - */ - public int getX() { - return x; - } - - /** - * Sets the value of the x property. - * - */ - public void setX(int value) { - this.x = value; - } - - /** - * Gets the value of the y property. - * - */ - public int getY() { - return y; - } - - /** - * Sets the value of the y property. - * - */ - public void setY(int value) { - this.y = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinatesArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinatesArray.java deleted file mode 100644 index e966928..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinatesArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RDCoordinatesArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RDCoordinatesArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}RDCoordinates" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RDCoordinatesArray", propOrder = { - "item" -}) -public class RDCoordinatesArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RDCoordinates } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinatesMatch.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinatesMatch.java deleted file mode 100644 index 70ae330..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RDCoordinatesMatch.java +++ /dev/null @@ -1,132 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RDCoordinatesMatch complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RDCoordinatesMatch">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="citymatch" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="streetmatch" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RDCoordinatesMatch", propOrder = { - -}) -public class RDCoordinatesMatch { - - protected int x; - protected int y; - @XmlElement(required = true) - protected String citymatch; - @XmlElement(required = true) - protected String streetmatch; - - /** - * Gets the value of the x property. - * - */ - public int getX() { - return x; - } - - /** - * Sets the value of the x property. - * - */ - public void setX(int value) { - this.x = value; - } - - /** - * Gets the value of the y property. - * - */ - public int getY() { - return y; - } - - /** - * Sets the value of the y property. - * - */ - public void setY(int value) { - this.y = value; - } - - /** - * Gets the value of the citymatch property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCitymatch() { - return citymatch; - } - - /** - * Sets the value of the citymatch property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCitymatch(String value) { - this.citymatch = value; - } - - /** - * Gets the value of the streetmatch property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreetmatch() { - return streetmatch; - } - - /** - * Sets the value of the streetmatch property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreetmatch(String value) { - this.streetmatch = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddress.java deleted file mode 100644 index 056c09f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddress.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RangeAddress complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RangeAddress">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="reeks" type="{http://www.webservices.nl/soap/}PCReeks"/>
- *         <element name="huisnr" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="huisnr_toevoeging" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RangeAddress", propOrder = { - -}) -public class RangeAddress { - - @XmlElement(required = true) - protected PCReeks reeks; - protected Integer huisnr; - @XmlElement(name = "huisnr_toevoeging") - protected String huisnrToevoeging; - - /** - * Gets the value of the reeks property. - * - * @return - * possible object is - * {@link PCReeks } - * - */ - public PCReeks getReeks() { - return reeks; - } - - /** - * Sets the value of the reeks property. - * - * @param value - * allowed object is - * {@link PCReeks } - * - */ - public void setReeks(PCReeks value) { - this.reeks = value; - } - - /** - * Gets the value of the huisnr property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHuisnr() { - return huisnr; - } - - /** - * Sets the value of the huisnr property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHuisnr(Integer value) { - this.huisnr = value; - } - - /** - * Gets the value of the huisnrToevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHuisnrToevoeging() { - return huisnrToevoeging; - } - - /** - * Sets the value of the huisnrToevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHuisnrToevoeging(String value) { - this.huisnrToevoeging = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddressArray.java deleted file mode 100644 index 6a9fe32..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddressArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RangeAddressArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RangeAddressArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}RangeAddress" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RangeAddressArray", propOrder = { - "item" -}) -public class RangeAddressArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RangeAddress } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddressPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddressPagedResult.java deleted file mode 100644 index eea921c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RangeAddressPagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RangeAddressPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RangeAddressPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}RangeAddressArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RangeAddressPagedResult", propOrder = { - -}) -public class RangeAddressPagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected RangeAddressArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link RangeAddressArray } - * - */ - public RangeAddressArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link RangeAddressArray } - * - */ - public void setResults(RangeAddressArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Recht.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Recht.java deleted file mode 100644 index a172f95..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Recht.java +++ /dev/null @@ -1,307 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for Recht complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Recht">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="object_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gerechtigde_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="omschrijving_recht" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="aandeel_in_recht" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="totaal_aandeel_in_recht" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="einddatum_recht" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="indicatie_recht_betrokken_in_splitsing" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="ontleend_aan_stukken_lijst" type="{http://www.webservices.nl/soap/}StukMetKadastraleAanduidingLijst" minOccurs="0"/>
- *         <element name="mogelijk_van_belang_stukken_lijst" type="{http://www.webservices.nl/soap/}StukReferentiesLijst" minOccurs="0"/>
- *         <element name="aantekeningen_recht_lijst" type="{http://www.webservices.nl/soap/}AantekeningRechtLijst" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Recht", propOrder = { - -}) -public class Recht { - - @XmlElement(name = "object_id", required = true) - protected String objectId; - @XmlElement(name = "gerechtigde_id", required = true) - protected String gerechtigdeId; - @XmlElement(name = "omschrijving_recht", required = true) - protected String omschrijvingRecht; - @XmlElement(name = "aandeel_in_recht", required = true) - protected String aandeelInRecht; - @XmlElement(name = "totaal_aandeel_in_recht") - protected String totaalAandeelInRecht; - @XmlElement(name = "einddatum_recht") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar einddatumRecht; - @XmlElement(name = "indicatie_recht_betrokken_in_splitsing") - protected boolean indicatieRechtBetrokkenInSplitsing; - @XmlElement(name = "ontleend_aan_stukken_lijst") - protected StukMetKadastraleAanduidingLijst ontleendAanStukkenLijst; - @XmlElement(name = "mogelijk_van_belang_stukken_lijst") - protected StukReferentiesLijst mogelijkVanBelangStukkenLijst; - @XmlElement(name = "aantekeningen_recht_lijst") - protected AantekeningRechtLijst aantekeningenRechtLijst; - - /** - * Gets the value of the objectId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getObjectId() { - return objectId; - } - - /** - * Sets the value of the objectId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setObjectId(String value) { - this.objectId = value; - } - - /** - * Gets the value of the gerechtigdeId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGerechtigdeId() { - return gerechtigdeId; - } - - /** - * Sets the value of the gerechtigdeId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGerechtigdeId(String value) { - this.gerechtigdeId = value; - } - - /** - * Gets the value of the omschrijvingRecht property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOmschrijvingRecht() { - return omschrijvingRecht; - } - - /** - * Sets the value of the omschrijvingRecht property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOmschrijvingRecht(String value) { - this.omschrijvingRecht = value; - } - - /** - * Gets the value of the aandeelInRecht property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAandeelInRecht() { - return aandeelInRecht; - } - - /** - * Sets the value of the aandeelInRecht property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAandeelInRecht(String value) { - this.aandeelInRecht = value; - } - - /** - * Gets the value of the totaalAandeelInRecht property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTotaalAandeelInRecht() { - return totaalAandeelInRecht; - } - - /** - * Sets the value of the totaalAandeelInRecht property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTotaalAandeelInRecht(String value) { - this.totaalAandeelInRecht = value; - } - - /** - * Gets the value of the einddatumRecht property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getEinddatumRecht() { - return einddatumRecht; - } - - /** - * Sets the value of the einddatumRecht property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setEinddatumRecht(XMLGregorianCalendar value) { - this.einddatumRecht = value; - } - - /** - * Gets the value of the indicatieRechtBetrokkenInSplitsing property. - * - */ - public boolean isIndicatieRechtBetrokkenInSplitsing() { - return indicatieRechtBetrokkenInSplitsing; - } - - /** - * Sets the value of the indicatieRechtBetrokkenInSplitsing property. - * - */ - public void setIndicatieRechtBetrokkenInSplitsing(boolean value) { - this.indicatieRechtBetrokkenInSplitsing = value; - } - - /** - * Gets the value of the ontleendAanStukkenLijst property. - * - * @return - * possible object is - * {@link StukMetKadastraleAanduidingLijst } - * - */ - public StukMetKadastraleAanduidingLijst getOntleendAanStukkenLijst() { - return ontleendAanStukkenLijst; - } - - /** - * Sets the value of the ontleendAanStukkenLijst property. - * - * @param value - * allowed object is - * {@link StukMetKadastraleAanduidingLijst } - * - */ - public void setOntleendAanStukkenLijst(StukMetKadastraleAanduidingLijst value) { - this.ontleendAanStukkenLijst = value; - } - - /** - * Gets the value of the mogelijkVanBelangStukkenLijst property. - * - * @return - * possible object is - * {@link StukReferentiesLijst } - * - */ - public StukReferentiesLijst getMogelijkVanBelangStukkenLijst() { - return mogelijkVanBelangStukkenLijst; - } - - /** - * Sets the value of the mogelijkVanBelangStukkenLijst property. - * - * @param value - * allowed object is - * {@link StukReferentiesLijst } - * - */ - public void setMogelijkVanBelangStukkenLijst(StukReferentiesLijst value) { - this.mogelijkVanBelangStukkenLijst = value; - } - - /** - * Gets the value of the aantekeningenRechtLijst property. - * - * @return - * possible object is - * {@link AantekeningRechtLijst } - * - */ - public AantekeningRechtLijst getAantekeningenRechtLijst() { - return aantekeningenRechtLijst; - } - - /** - * Sets the value of the aantekeningenRechtLijst property. - * - * @param value - * allowed object is - * {@link AantekeningRechtLijst } - * - */ - public void setAantekeningenRechtLijst(AantekeningRechtLijst value) { - this.aantekeningenRechtLijst = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RechtArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RechtArray.java deleted file mode 100644 index 08be8c6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RechtArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RechtArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RechtArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}Recht" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RechtArray", propOrder = { - "item" -}) -public class RechtArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Recht } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RechtenLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RechtenLijst.java deleted file mode 100644 index 2f3654e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RechtenLijst.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RechtenLijst complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RechtenLijst">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="rechten" type="{http://www.webservices.nl/soap/}RechtArray"/>
- *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RechtenLijst", propOrder = { - -}) -public class RechtenLijst { - - @XmlElement(required = true) - protected RechtArray rechten; - @XmlElement(name = "indicatie_compleet") - protected boolean indicatieCompleet; - - /** - * Gets the value of the rechten property. - * - * @return - * possible object is - * {@link RechtArray } - * - */ - public RechtArray getRechten() { - return rechten; - } - - /** - * Sets the value of the rechten property. - * - * @param value - * allowed object is - * {@link RechtArray } - * - */ - public void setRechten(RechtArray value) { - this.rechten = value; - } - - /** - * Gets the value of the indicatieCompleet property. - * - */ - public boolean isIndicatieCompleet() { - return indicatieCompleet; - } - - /** - * Sets the value of the indicatieCompleet property. - * - */ - public void setIndicatieCompleet(boolean value) { - this.indicatieCompleet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ResultInfo.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ResultInfo.java deleted file mode 100644 index cb85fe1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/ResultInfo.java +++ /dev/null @@ -1,131 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ResultInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ResultInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="curpage" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="perpage" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="numpages" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="numresults" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maxresults" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResultInfo", propOrder = { - -}) -public class ResultInfo { - - protected int curpage; - protected int perpage; - protected int numpages; - protected int numresults; - protected int maxresults; - - /** - * Gets the value of the curpage property. - * - */ - public int getCurpage() { - return curpage; - } - - /** - * Sets the value of the curpage property. - * - */ - public void setCurpage(int value) { - this.curpage = value; - } - - /** - * Gets the value of the perpage property. - * - */ - public int getPerpage() { - return perpage; - } - - /** - * Sets the value of the perpage property. - * - */ - public void setPerpage(int value) { - this.perpage = value; - } - - /** - * Gets the value of the numpages property. - * - */ - public int getNumpages() { - return numpages; - } - - /** - * Sets the value of the numpages property. - * - */ - public void setNumpages(int value) { - this.numpages = value; - } - - /** - * Gets the value of the numresults property. - * - */ - public int getNumresults() { - return numresults; - } - - /** - * Sets the value of the numresults property. - * - */ - public void setNumresults(int value) { - this.numresults = value; - } - - /** - * Gets the value of the maxresults property. - * - */ - public int getMaxresults() { - return maxresults; - } - - /** - * Sets the value of the maxresults property. - * - */ - public void setMaxresults(int value) { - this.maxresults = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskAddress.java deleted file mode 100644 index 3deaac1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskAddress.java +++ /dev/null @@ -1,279 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskAddress complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskAddress">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="building" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
- *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="municipality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="state" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskAddress", propOrder = { - -}) -public class RiskAddress { - - protected String postcode; - protected String building; - protected String street; - @XmlElement(name = "house_number") - protected BigInteger houseNumber; - @XmlElement(name = "house_number_addition") - protected String houseNumberAddition; - protected String city; - protected String municipality; - protected String state; - protected String country; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the building property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBuilding() { - return building; - } - - /** - * Sets the value of the building property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBuilding(String value) { - this.building = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNumber property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setHouseNumber(BigInteger value) { - this.houseNumber = value; - } - - /** - * Gets the value of the houseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNumberAddition() { - return houseNumberAddition; - } - - /** - * Sets the value of the houseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNumberAddition(String value) { - this.houseNumberAddition = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the municipality property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMunicipality() { - return municipality; - } - - /** - * Sets the value of the municipality property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMunicipality(String value) { - this.municipality = value; - } - - /** - * Gets the value of the state property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getState() { - return state; - } - - /** - * Sets the value of the state property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setState(String value) { - this.state = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckGetRiskPersonCompanyReportRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckGetRiskPersonCompanyReportRequestType.java deleted file mode 100644 index 3eeda32..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckGetRiskPersonCompanyReportRequestType.java +++ /dev/null @@ -1,304 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for riskCheckGetRiskPersonCompanyReportRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="riskCheckGetRiskPersonCompanyReportRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="birth_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "riskCheckGetRiskPersonCompanyReportRequestType", propOrder = { - -}) -public class RiskCheckGetRiskPersonCompanyReportRequestType { - - @XmlElement(required = true) - protected String gender; - @XmlElement(required = true) - protected String initials; - @XmlElement(required = true) - protected String prefix; - @XmlElement(name = "last_name", required = true) - protected String lastName; - @XmlElement(name = "birth_date", required = true) - protected String birthDate; - @XmlElement(required = true) - protected String street; - @XmlElement(name = "house_number") - protected int houseNumber; - @XmlElement(name = "house_number_addition", required = true) - protected String houseNumberAddition; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String city; - - /** - * Gets the value of the gender property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGender() { - return gender; - } - - /** - * Sets the value of the gender property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGender(String value) { - this.gender = value; - } - - /** - * Gets the value of the initials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInitials() { - return initials; - } - - /** - * Sets the value of the initials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInitials(String value) { - this.initials = value; - } - - /** - * Gets the value of the prefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrefix() { - return prefix; - } - - /** - * Sets the value of the prefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrefix(String value) { - this.prefix = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the birthDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBirthDate() { - return birthDate; - } - - /** - * Sets the value of the birthDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBirthDate(String value) { - this.birthDate = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNumber property. - * - */ - public int getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - */ - public void setHouseNumber(int value) { - this.houseNumber = value; - } - - /** - * Gets the value of the houseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNumberAddition() { - return houseNumberAddition; - } - - /** - * Sets the value of the houseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNumberAddition(String value) { - this.houseNumberAddition = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckGetRiskPersonCompanyReportResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckGetRiskPersonCompanyReportResponseType.java deleted file mode 100644 index bd02b83..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckGetRiskPersonCompanyReportResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for riskCheckGetRiskPersonCompanyReportResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="riskCheckGetRiskPersonCompanyReportResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}RiskPersonCompanyReport"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "riskCheckGetRiskPersonCompanyReportResponseType", propOrder = { - -}) -public class RiskCheckGetRiskPersonCompanyReportResponseType { - - @XmlElement(required = true) - protected RiskPersonCompanyReport out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link RiskPersonCompanyReport } - * - */ - public RiskPersonCompanyReport getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link RiskPersonCompanyReport } - * - */ - public void setOut(RiskPersonCompanyReport value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckPersonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckPersonRequestType.java deleted file mode 100644 index d4f79e1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckPersonRequestType.java +++ /dev/null @@ -1,439 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for riskCheckPersonRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="riskCheckPersonRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="birth_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="account_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="phone_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="mobile_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="testing_date" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "riskCheckPersonRequestType", propOrder = { - -}) -public class RiskCheckPersonRequestType { - - @XmlElement(required = true) - protected String gender; - @XmlElement(required = true) - protected String initials; - @XmlElement(required = true) - protected String prefix; - @XmlElement(name = "last_name", required = true) - protected String lastName; - @XmlElement(name = "birth_date", required = true) - protected String birthDate; - @XmlElement(required = true) - protected String street; - @XmlElement(name = "house_number") - protected int houseNumber; - @XmlElement(name = "house_number_addition", required = true) - protected String houseNumberAddition; - @XmlElement(required = true) - protected String postcode; - @XmlElement(required = true) - protected String city; - @XmlElement(name = "account_number", required = true) - protected String accountNumber; - @XmlElement(name = "phone_number", required = true) - protected String phoneNumber; - @XmlElement(name = "mobile_number", required = true) - protected String mobileNumber; - @XmlElement(required = true) - protected String email; - @XmlElement(name = "testing_date", required = true) - protected String testingDate; - - /** - * Gets the value of the gender property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGender() { - return gender; - } - - /** - * Sets the value of the gender property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGender(String value) { - this.gender = value; - } - - /** - * Gets the value of the initials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInitials() { - return initials; - } - - /** - * Sets the value of the initials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInitials(String value) { - this.initials = value; - } - - /** - * Gets the value of the prefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrefix() { - return prefix; - } - - /** - * Sets the value of the prefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrefix(String value) { - this.prefix = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the birthDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBirthDate() { - return birthDate; - } - - /** - * Sets the value of the birthDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBirthDate(String value) { - this.birthDate = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the houseNumber property. - * - */ - public int getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - */ - public void setHouseNumber(int value) { - this.houseNumber = value; - } - - /** - * Gets the value of the houseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNumberAddition() { - return houseNumberAddition; - } - - /** - * Sets the value of the houseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNumberAddition(String value) { - this.houseNumberAddition = value; - } - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the accountNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAccountNumber() { - return accountNumber; - } - - /** - * Sets the value of the accountNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAccountNumber(String value) { - this.accountNumber = value; - } - - /** - * Gets the value of the phoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPhoneNumber() { - return phoneNumber; - } - - /** - * Sets the value of the phoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPhoneNumber(String value) { - this.phoneNumber = value; - } - - /** - * Gets the value of the mobileNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMobileNumber() { - return mobileNumber; - } - - /** - * Sets the value of the mobileNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMobileNumber(String value) { - this.mobileNumber = value; - } - - /** - * Gets the value of the email property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmail() { - return email; - } - - /** - * Sets the value of the email property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmail(String value) { - this.email = value; - } - - /** - * Gets the value of the testingDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTestingDate() { - return testingDate; - } - - /** - * Sets the value of the testingDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTestingDate(String value) { - this.testingDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckPersonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckPersonResponseType.java deleted file mode 100644 index 49bdba2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCheckPersonResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for riskCheckPersonResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="riskCheckPersonResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}RiskResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "riskCheckPersonResponseType", propOrder = { - -}) -public class RiskCheckPersonResponseType { - - @XmlElement(required = true) - protected RiskResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link RiskResult } - * - */ - public RiskResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link RiskResult } - * - */ - public void setOut(RiskResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompany.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompany.java deleted file mode 100644 index dbc345b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompany.java +++ /dev/null @@ -1,313 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for RiskCompany complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskCompany">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="dossier_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="establishment_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="trade_names" type="{http://www.webservices.nl/soap/}stringArray" minOccurs="0"/>
- *         <element name="addresses" type="{http://www.webservices.nl/soap/}RiskCompanyAddressArray" minOccurs="0"/>
- *         <element name="function_title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_authorization" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="function_end_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="insolvencies" type="{http://www.webservices.nl/soap/}RiskInsolvencyArray" minOccurs="0"/>
- *         <element name="mutation_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskCompany", propOrder = { - -}) -public class RiskCompany { - - @XmlElement(name = "dossier_number", required = true) - protected String dossierNumber; - @XmlElement(name = "establishment_number") - protected String establishmentNumber; - protected String status; - @XmlElement(name = "trade_names") - protected StringArray tradeNames; - protected RiskCompanyAddressArray addresses; - @XmlElement(name = "function_title") - protected String functionTitle; - @XmlElement(name = "function_authorization") - protected String functionAuthorization; - @XmlElement(name = "function_end_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar functionEndDate; - protected RiskInsolvencyArray insolvencies; - @XmlElement(name = "mutation_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar mutationDate; - - /** - * Gets the value of the dossierNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDossierNumber() { - return dossierNumber; - } - - /** - * Sets the value of the dossierNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDossierNumber(String value) { - this.dossierNumber = value; - } - - /** - * Gets the value of the establishmentNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEstablishmentNumber() { - return establishmentNumber; - } - - /** - * Sets the value of the establishmentNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEstablishmentNumber(String value) { - this.establishmentNumber = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - - /** - * Gets the value of the tradeNames property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getTradeNames() { - return tradeNames; - } - - /** - * Sets the value of the tradeNames property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setTradeNames(StringArray value) { - this.tradeNames = value; - } - - /** - * Gets the value of the addresses property. - * - * @return - * possible object is - * {@link RiskCompanyAddressArray } - * - */ - public RiskCompanyAddressArray getAddresses() { - return addresses; - } - - /** - * Sets the value of the addresses property. - * - * @param value - * allowed object is - * {@link RiskCompanyAddressArray } - * - */ - public void setAddresses(RiskCompanyAddressArray value) { - this.addresses = value; - } - - /** - * Gets the value of the functionTitle property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionTitle() { - return functionTitle; - } - - /** - * Sets the value of the functionTitle property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionTitle(String value) { - this.functionTitle = value; - } - - /** - * Gets the value of the functionAuthorization property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFunctionAuthorization() { - return functionAuthorization; - } - - /** - * Sets the value of the functionAuthorization property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFunctionAuthorization(String value) { - this.functionAuthorization = value; - } - - /** - * Gets the value of the functionEndDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getFunctionEndDate() { - return functionEndDate; - } - - /** - * Sets the value of the functionEndDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setFunctionEndDate(XMLGregorianCalendar value) { - this.functionEndDate = value; - } - - /** - * Gets the value of the insolvencies property. - * - * @return - * possible object is - * {@link RiskInsolvencyArray } - * - */ - public RiskInsolvencyArray getInsolvencies() { - return insolvencies; - } - - /** - * Sets the value of the insolvencies property. - * - * @param value - * allowed object is - * {@link RiskInsolvencyArray } - * - */ - public void setInsolvencies(RiskInsolvencyArray value) { - this.insolvencies = value; - } - - /** - * Gets the value of the mutationDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMutationDate() { - return mutationDate; - } - - /** - * Sets the value of the mutationDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMutationDate(XMLGregorianCalendar value) { - this.mutationDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyAddress.java deleted file mode 100644 index 2a59b01..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyAddress.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskCompanyAddress complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskCompanyAddress">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="address" type="{http://www.webservices.nl/soap/}RiskAddress"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskCompanyAddress", propOrder = { - -}) -public class RiskCompanyAddress { - - @XmlElement(required = true) - protected String type; - @XmlElement(required = true) - protected RiskAddress address; - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link RiskAddress } - * - */ - public RiskAddress getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link RiskAddress } - * - */ - public void setAddress(RiskAddress value) { - this.address = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyAddressArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyAddressArray.java deleted file mode 100644 index 10b2b39..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyAddressArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskCompanyAddressArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskCompanyAddressArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}RiskCompanyAddress" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskCompanyAddressArray", propOrder = { - "item" -}) -public class RiskCompanyAddressArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RiskCompanyAddress } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyArray.java deleted file mode 100644 index cfa8dbb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskCompanyArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskCompanyArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}RiskCompany" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskCompanyArray", propOrder = { - "item" -}) -public class RiskCompanyArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RiskCompany } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyReport.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyReport.java deleted file mode 100644 index 1f08feb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskCompanyReport.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskCompanyReport complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskCompanyReport">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="companies" type="{http://www.webservices.nl/soap/}RiskCompanyArray" minOccurs="0"/>
- *         <element name="insolvencies" type="{http://www.webservices.nl/soap/}RiskInsolvencyArray" minOccurs="0"/>
- *         <element name="legal_restraint" type="{http://www.webservices.nl/soap/}RiskLegalRestraint" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskCompanyReport", propOrder = { - -}) -public class RiskCompanyReport { - - protected RiskCompanyArray companies; - protected RiskInsolvencyArray insolvencies; - @XmlElement(name = "legal_restraint") - protected RiskLegalRestraint legalRestraint; - - /** - * Gets the value of the companies property. - * - * @return - * possible object is - * {@link RiskCompanyArray } - * - */ - public RiskCompanyArray getCompanies() { - return companies; - } - - /** - * Sets the value of the companies property. - * - * @param value - * allowed object is - * {@link RiskCompanyArray } - * - */ - public void setCompanies(RiskCompanyArray value) { - this.companies = value; - } - - /** - * Gets the value of the insolvencies property. - * - * @return - * possible object is - * {@link RiskInsolvencyArray } - * - */ - public RiskInsolvencyArray getInsolvencies() { - return insolvencies; - } - - /** - * Sets the value of the insolvencies property. - * - * @param value - * allowed object is - * {@link RiskInsolvencyArray } - * - */ - public void setInsolvencies(RiskInsolvencyArray value) { - this.insolvencies = value; - } - - /** - * Gets the value of the legalRestraint property. - * - * @return - * possible object is - * {@link RiskLegalRestraint } - * - */ - public RiskLegalRestraint getLegalRestraint() { - return legalRestraint; - } - - /** - * Sets the value of the legalRestraint property. - * - * @param value - * allowed object is - * {@link RiskLegalRestraint } - * - */ - public void setLegalRestraint(RiskLegalRestraint value) { - this.legalRestraint = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvency.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvency.java deleted file mode 100644 index 29c1934..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvency.java +++ /dev/null @@ -1,145 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskInsolvency complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskInsolvency">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="registration" type="{http://www.webservices.nl/soap/}RiskInsolvencyRegistration" minOccurs="0"/>
- *         <element name="publications" type="{http://www.webservices.nl/soap/}RiskInsolvencyPublicationArray" minOccurs="0"/>
- *         <element name="curators" type="{http://www.webservices.nl/soap/}RiskInsolvencyCuratorArray" minOccurs="0"/>
- *         <element name="judge" type="{http://www.webservices.nl/soap/}RiskInsolvencyJudge" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskInsolvency", propOrder = { - -}) -public class RiskInsolvency { - - protected RiskInsolvencyRegistration registration; - protected RiskInsolvencyPublicationArray publications; - protected RiskInsolvencyCuratorArray curators; - protected RiskInsolvencyJudge judge; - - /** - * Gets the value of the registration property. - * - * @return - * possible object is - * {@link RiskInsolvencyRegistration } - * - */ - public RiskInsolvencyRegistration getRegistration() { - return registration; - } - - /** - * Sets the value of the registration property. - * - * @param value - * allowed object is - * {@link RiskInsolvencyRegistration } - * - */ - public void setRegistration(RiskInsolvencyRegistration value) { - this.registration = value; - } - - /** - * Gets the value of the publications property. - * - * @return - * possible object is - * {@link RiskInsolvencyPublicationArray } - * - */ - public RiskInsolvencyPublicationArray getPublications() { - return publications; - } - - /** - * Sets the value of the publications property. - * - * @param value - * allowed object is - * {@link RiskInsolvencyPublicationArray } - * - */ - public void setPublications(RiskInsolvencyPublicationArray value) { - this.publications = value; - } - - /** - * Gets the value of the curators property. - * - * @return - * possible object is - * {@link RiskInsolvencyCuratorArray } - * - */ - public RiskInsolvencyCuratorArray getCurators() { - return curators; - } - - /** - * Sets the value of the curators property. - * - * @param value - * allowed object is - * {@link RiskInsolvencyCuratorArray } - * - */ - public void setCurators(RiskInsolvencyCuratorArray value) { - this.curators = value; - } - - /** - * Gets the value of the judge property. - * - * @return - * possible object is - * {@link RiskInsolvencyJudge } - * - */ - public RiskInsolvencyJudge getJudge() { - return judge; - } - - /** - * Sets the value of the judge property. - * - * @param value - * allowed object is - * {@link RiskInsolvencyJudge } - * - */ - public void setJudge(RiskInsolvencyJudge value) { - this.judge = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyArray.java deleted file mode 100644 index cf11265..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskInsolvencyArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskInsolvencyArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}RiskInsolvency" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskInsolvencyArray", propOrder = { - "item" -}) -public class RiskInsolvencyArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RiskInsolvency } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyCurator.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyCurator.java deleted file mode 100644 index 2096f50..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyCurator.java +++ /dev/null @@ -1,284 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for RiskInsolvencyCurator complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskInsolvencyCurator">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="titles" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="address" type="{http://www.webservices.nl/soap/}RiskAddress" minOccurs="0"/>
- *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="fax_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="email_address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="mutation_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskInsolvencyCurator", propOrder = { - -}) -public class RiskInsolvencyCurator { - - protected String titles; - protected String initials; - protected String prefix; - @XmlElement(name = "last_name") - protected String lastName; - protected RiskAddress address; - @XmlElement(name = "telephone_number") - protected String telephoneNumber; - @XmlElement(name = "fax_number") - protected String faxNumber; - @XmlElement(name = "email_address") - protected String emailAddress; - @XmlElement(name = "mutation_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar mutationDate; - - /** - * Gets the value of the titles property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTitles() { - return titles; - } - - /** - * Sets the value of the titles property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTitles(String value) { - this.titles = value; - } - - /** - * Gets the value of the initials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInitials() { - return initials; - } - - /** - * Sets the value of the initials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInitials(String value) { - this.initials = value; - } - - /** - * Gets the value of the prefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrefix() { - return prefix; - } - - /** - * Sets the value of the prefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrefix(String value) { - this.prefix = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link RiskAddress } - * - */ - public RiskAddress getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link RiskAddress } - * - */ - public void setAddress(RiskAddress value) { - this.address = value; - } - - /** - * Gets the value of the telephoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNumber() { - return telephoneNumber; - } - - /** - * Sets the value of the telephoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNumber(String value) { - this.telephoneNumber = value; - } - - /** - * Gets the value of the faxNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFaxNumber() { - return faxNumber; - } - - /** - * Sets the value of the faxNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFaxNumber(String value) { - this.faxNumber = value; - } - - /** - * Gets the value of the emailAddress property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmailAddress() { - return emailAddress; - } - - /** - * Sets the value of the emailAddress property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmailAddress(String value) { - this.emailAddress = value; - } - - /** - * Gets the value of the mutationDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getMutationDate() { - return mutationDate; - } - - /** - * Sets the value of the mutationDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setMutationDate(XMLGregorianCalendar value) { - this.mutationDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyCuratorArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyCuratorArray.java deleted file mode 100644 index 4aa5345..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyCuratorArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskInsolvencyCuratorArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskInsolvencyCuratorArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}RiskInsolvencyCurator" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskInsolvencyCuratorArray", propOrder = { - "item" -}) -public class RiskInsolvencyCuratorArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RiskInsolvencyCurator } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyJudge.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyJudge.java deleted file mode 100644 index a7d054d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyJudge.java +++ /dev/null @@ -1,147 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskInsolvencyJudge complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskInsolvencyJudge">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="titles" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskInsolvencyJudge", propOrder = { - -}) -public class RiskInsolvencyJudge { - - protected String titles; - protected String initials; - protected String prefix; - @XmlElement(name = "last_name") - protected String lastName; - - /** - * Gets the value of the titles property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTitles() { - return titles; - } - - /** - * Sets the value of the titles property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTitles(String value) { - this.titles = value; - } - - /** - * Gets the value of the initials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInitials() { - return initials; - } - - /** - * Sets the value of the initials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInitials(String value) { - this.initials = value; - } - - /** - * Gets the value of the prefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrefix() { - return prefix; - } - - /** - * Sets the value of the prefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrefix(String value) { - this.prefix = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyPublication.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyPublication.java deleted file mode 100644 index f2a085d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyPublication.java +++ /dev/null @@ -1,151 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for RiskInsolvencyPublication complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskInsolvencyPublication">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="verdict_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskInsolvencyPublication", propOrder = { - -}) -public class RiskInsolvencyPublication { - - protected String number; - protected String type; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar date; - @XmlElement(name = "verdict_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar verdictDate; - - /** - * Gets the value of the number property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNumber() { - return number; - } - - /** - * Sets the value of the number property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNumber(String value) { - this.number = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the date property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Sets the value of the date property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the verdictDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getVerdictDate() { - return verdictDate; - } - - /** - * Sets the value of the verdictDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setVerdictDate(XMLGregorianCalendar value) { - this.verdictDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyPublicationArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyPublicationArray.java deleted file mode 100644 index 69e4cfb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyPublicationArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskInsolvencyPublicationArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskInsolvencyPublicationArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}RiskInsolvencyPublication" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskInsolvencyPublicationArray", propOrder = { - "item" -}) -public class RiskInsolvencyPublicationArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RiskInsolvencyPublication } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyRegistration.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyRegistration.java deleted file mode 100644 index 5d6449b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskInsolvencyRegistration.java +++ /dev/null @@ -1,226 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskInsolvencyRegistration complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskInsolvencyRegistration">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="case_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="previous_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="court" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="jurisdiction" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="deptor" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="partner" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskInsolvencyRegistration", propOrder = { - -}) -public class RiskInsolvencyRegistration { - - @XmlElement(name = "case_number") - protected String caseNumber; - @XmlElement(name = "previous_number") - protected String previousNumber; - protected String court; - protected String jurisdiction; - protected String district; - protected String deptor; - protected String partner; - - /** - * Gets the value of the caseNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCaseNumber() { - return caseNumber; - } - - /** - * Sets the value of the caseNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCaseNumber(String value) { - this.caseNumber = value; - } - - /** - * Gets the value of the previousNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPreviousNumber() { - return previousNumber; - } - - /** - * Sets the value of the previousNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPreviousNumber(String value) { - this.previousNumber = value; - } - - /** - * Gets the value of the court property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCourt() { - return court; - } - - /** - * Sets the value of the court property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCourt(String value) { - this.court = value; - } - - /** - * Gets the value of the jurisdiction property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getJurisdiction() { - return jurisdiction; - } - - /** - * Sets the value of the jurisdiction property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setJurisdiction(String value) { - this.jurisdiction = value; - } - - /** - * Gets the value of the district property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDistrict() { - return district; - } - - /** - * Sets the value of the district property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDistrict(String value) { - this.district = value; - } - - /** - * Gets the value of the deptor property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeptor() { - return deptor; - } - - /** - * Sets the value of the deptor property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeptor(String value) { - this.deptor = value; - } - - /** - * Gets the value of the partner property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPartner() { - return partner; - } - - /** - * Sets the value of the partner property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPartner(String value) { - this.partner = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraint.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraint.java deleted file mode 100644 index 9ce869d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraint.java +++ /dev/null @@ -1,147 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskLegalRestraint complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskLegalRestraint">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="verdict_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="person" type="{http://www.webservices.nl/soap/}RiskLegalRestraintPerson" minOccurs="0"/>
- *         <element name="registry" type="{http://www.webservices.nl/soap/}RiskLegalRestraintRegistry" minOccurs="0"/>
- *         <element name="decisions" type="{http://www.webservices.nl/soap/}RiskLegalRestraintDecisionArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskLegalRestraint", propOrder = { - -}) -public class RiskLegalRestraint { - - @XmlElement(name = "verdict_number") - protected String verdictNumber; - protected RiskLegalRestraintPerson person; - protected RiskLegalRestraintRegistry registry; - protected RiskLegalRestraintDecisionArray decisions; - - /** - * Gets the value of the verdictNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVerdictNumber() { - return verdictNumber; - } - - /** - * Sets the value of the verdictNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVerdictNumber(String value) { - this.verdictNumber = value; - } - - /** - * Gets the value of the person property. - * - * @return - * possible object is - * {@link RiskLegalRestraintPerson } - * - */ - public RiskLegalRestraintPerson getPerson() { - return person; - } - - /** - * Sets the value of the person property. - * - * @param value - * allowed object is - * {@link RiskLegalRestraintPerson } - * - */ - public void setPerson(RiskLegalRestraintPerson value) { - this.person = value; - } - - /** - * Gets the value of the registry property. - * - * @return - * possible object is - * {@link RiskLegalRestraintRegistry } - * - */ - public RiskLegalRestraintRegistry getRegistry() { - return registry; - } - - /** - * Sets the value of the registry property. - * - * @param value - * allowed object is - * {@link RiskLegalRestraintRegistry } - * - */ - public void setRegistry(RiskLegalRestraintRegistry value) { - this.registry = value; - } - - /** - * Gets the value of the decisions property. - * - * @return - * possible object is - * {@link RiskLegalRestraintDecisionArray } - * - */ - public RiskLegalRestraintDecisionArray getDecisions() { - return decisions; - } - - /** - * Sets the value of the decisions property. - * - * @param value - * allowed object is - * {@link RiskLegalRestraintDecisionArray } - * - */ - public void setDecisions(RiskLegalRestraintDecisionArray value) { - this.decisions = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintAdministrator.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintAdministrator.java deleted file mode 100644 index ea85053..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintAdministrator.java +++ /dev/null @@ -1,119 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskLegalRestraintAdministrator complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskLegalRestraintAdministrator">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="role" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="address" type="{http://www.webservices.nl/soap/}RiskAddress" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskLegalRestraintAdministrator", propOrder = { - -}) -public class RiskLegalRestraintAdministrator { - - protected String role; - protected String name; - protected RiskAddress address; - - /** - * Gets the value of the role property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRole() { - return role; - } - - /** - * Sets the value of the role property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRole(String value) { - this.role = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link RiskAddress } - * - */ - public RiskAddress getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link RiskAddress } - * - */ - public void setAddress(RiskAddress value) { - this.address = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintDecision.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintDecision.java deleted file mode 100644 index 6587098..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintDecision.java +++ /dev/null @@ -1,226 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for RiskLegalRestraintDecision complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskLegalRestraintDecision">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="cause" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="court" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="jurisdiction" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="administrator" type="{http://www.webservices.nl/soap/}RiskLegalRestraintAdministrator" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskLegalRestraintDecision", propOrder = { - -}) -public class RiskLegalRestraintDecision { - - protected String number; - protected String cause; - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar date; - protected String court; - protected String jurisdiction; - protected String district; - protected RiskLegalRestraintAdministrator administrator; - - /** - * Gets the value of the number property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNumber() { - return number; - } - - /** - * Sets the value of the number property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNumber(String value) { - this.number = value; - } - - /** - * Gets the value of the cause property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCause() { - return cause; - } - - /** - * Sets the value of the cause property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCause(String value) { - this.cause = value; - } - - /** - * Gets the value of the date property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDate() { - return date; - } - - /** - * Sets the value of the date property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDate(XMLGregorianCalendar value) { - this.date = value; - } - - /** - * Gets the value of the court property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCourt() { - return court; - } - - /** - * Sets the value of the court property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCourt(String value) { - this.court = value; - } - - /** - * Gets the value of the jurisdiction property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getJurisdiction() { - return jurisdiction; - } - - /** - * Sets the value of the jurisdiction property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setJurisdiction(String value) { - this.jurisdiction = value; - } - - /** - * Gets the value of the district property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDistrict() { - return district; - } - - /** - * Sets the value of the district property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDistrict(String value) { - this.district = value; - } - - /** - * Gets the value of the administrator property. - * - * @return - * possible object is - * {@link RiskLegalRestraintAdministrator } - * - */ - public RiskLegalRestraintAdministrator getAdministrator() { - return administrator; - } - - /** - * Sets the value of the administrator property. - * - * @param value - * allowed object is - * {@link RiskLegalRestraintAdministrator } - * - */ - public void setAdministrator(RiskLegalRestraintAdministrator value) { - this.administrator = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintDecisionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintDecisionArray.java deleted file mode 100644 index edcdbaf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintDecisionArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskLegalRestraintDecisionArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskLegalRestraintDecisionArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}RiskLegalRestraintDecision" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskLegalRestraintDecisionArray", propOrder = { - "item" -}) -public class RiskLegalRestraintDecisionArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RiskLegalRestraintDecision } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintPerson.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintPerson.java deleted file mode 100644 index 9f5c3f2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintPerson.java +++ /dev/null @@ -1,152 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for RiskLegalRestraintPerson complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskLegalRestraintPerson">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="birth_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskLegalRestraintPerson", propOrder = { - -}) -public class RiskLegalRestraintPerson { - - @XmlElement(name = "first_name") - protected String firstName; - protected String prefix; - @XmlElement(name = "last_name") - protected String lastName; - @XmlElement(name = "birth_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar birthDate; - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the prefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrefix() { - return prefix; - } - - /** - * Sets the value of the prefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrefix(String value) { - this.prefix = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the birthDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBirthDate() { - return birthDate; - } - - /** - * Sets the value of the birthDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBirthDate(XMLGregorianCalendar value) { - this.birthDate = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintRegistry.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintRegistry.java deleted file mode 100644 index 6f1ebe7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskLegalRestraintRegistry.java +++ /dev/null @@ -1,122 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskLegalRestraintRegistry complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskLegalRestraintRegistry">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.webservices.nl/soap/}RiskAddress" minOccurs="0"/>
- *         <element name="telephone_number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="email_address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskLegalRestraintRegistry", propOrder = { - -}) -public class RiskLegalRestraintRegistry { - - protected RiskAddress address; - @XmlElement(name = "telephone_number") - protected String telephoneNumber; - @XmlElement(name = "email_address") - protected String emailAddress; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link RiskAddress } - * - */ - public RiskAddress getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link RiskAddress } - * - */ - public void setAddress(RiskAddress value) { - this.address = value; - } - - /** - * Gets the value of the telephoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephoneNumber() { - return telephoneNumber; - } - - /** - * Sets the value of the telephoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephoneNumber(String value) { - this.telephoneNumber = value; - } - - /** - * Gets the value of the emailAddress property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmailAddress() { - return emailAddress; - } - - /** - * Sets the value of the emailAddress property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmailAddress(String value) { - this.emailAddress = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskPerson.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskPerson.java deleted file mode 100644 index 488ac77..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskPerson.java +++ /dev/null @@ -1,230 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for RiskPerson complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskPerson">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="gender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="first_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="initials" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="last_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="birth_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="address" type="{http://www.webservices.nl/soap/}RiskAddress" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskPerson", propOrder = { - -}) -public class RiskPerson { - - protected String gender; - @XmlElement(name = "first_name") - protected String firstName; - protected String initials; - protected String prefix; - @XmlElement(name = "last_name") - protected String lastName; - @XmlElement(name = "birth_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar birthDate; - protected RiskAddress address; - - /** - * Gets the value of the gender property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGender() { - return gender; - } - - /** - * Sets the value of the gender property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGender(String value) { - this.gender = value; - } - - /** - * Gets the value of the firstName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFirstName() { - return firstName; - } - - /** - * Sets the value of the firstName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFirstName(String value) { - this.firstName = value; - } - - /** - * Gets the value of the initials property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInitials() { - return initials; - } - - /** - * Sets the value of the initials property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInitials(String value) { - this.initials = value; - } - - /** - * Gets the value of the prefix property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrefix() { - return prefix; - } - - /** - * Sets the value of the prefix property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrefix(String value) { - this.prefix = value; - } - - /** - * Gets the value of the lastName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastName() { - return lastName; - } - - /** - * Sets the value of the lastName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastName(String value) { - this.lastName = value; - } - - /** - * Gets the value of the birthDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getBirthDate() { - return birthDate; - } - - /** - * Sets the value of the birthDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setBirthDate(XMLGregorianCalendar value) { - this.birthDate = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link RiskAddress } - * - */ - public RiskAddress getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link RiskAddress } - * - */ - public void setAddress(RiskAddress value) { - this.address = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskPersonCompanyReport.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskPersonCompanyReport.java deleted file mode 100644 index 1276a06..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskPersonCompanyReport.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskPersonCompanyReport complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskPersonCompanyReport">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="person" type="{http://www.webservices.nl/soap/}RiskPerson"/>
- *         <element name="conclusion" type="{http://www.webservices.nl/soap/}RiskResult"/>
- *         <element name="report_data" type="{http://www.webservices.nl/soap/}RiskCompanyReport" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskPersonCompanyReport", propOrder = { - -}) -public class RiskPersonCompanyReport { - - @XmlElement(required = true) - protected RiskPerson person; - @XmlElement(required = true) - protected RiskResult conclusion; - @XmlElement(name = "report_data") - protected RiskCompanyReport reportData; - - /** - * Gets the value of the person property. - * - * @return - * possible object is - * {@link RiskPerson } - * - */ - public RiskPerson getPerson() { - return person; - } - - /** - * Sets the value of the person property. - * - * @param value - * allowed object is - * {@link RiskPerson } - * - */ - public void setPerson(RiskPerson value) { - this.person = value; - } - - /** - * Gets the value of the conclusion property. - * - * @return - * possible object is - * {@link RiskResult } - * - */ - public RiskResult getConclusion() { - return conclusion; - } - - /** - * Sets the value of the conclusion property. - * - * @param value - * allowed object is - * {@link RiskResult } - * - */ - public void setConclusion(RiskResult value) { - this.conclusion = value; - } - - /** - * Gets the value of the reportData property. - * - * @return - * possible object is - * {@link RiskCompanyReport } - * - */ - public RiskCompanyReport getReportData() { - return reportData; - } - - /** - * Sets the value of the reportData property. - * - * @param value - * allowed object is - * {@link RiskCompanyReport } - * - */ - public void setReportData(RiskCompanyReport value) { - this.reportData = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskResult.java deleted file mode 100644 index 45db7ac..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RiskResult.java +++ /dev/null @@ -1,124 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.math.BigInteger; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RiskResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RiskResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="person_score" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="address_score" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *         <element name="postcode_score" type="{http://www.w3.org/2001/XMLSchema}integer"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RiskResult", propOrder = { - -}) -public class RiskResult { - - @XmlElement(name = "person_score", required = true) - protected BigInteger personScore; - @XmlElement(name = "address_score", required = true) - protected BigInteger addressScore; - @XmlElement(name = "postcode_score", required = true) - protected BigInteger postcodeScore; - - /** - * Gets the value of the personScore property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getPersonScore() { - return personScore; - } - - /** - * Sets the value of the personScore property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setPersonScore(BigInteger value) { - this.personScore = value; - } - - /** - * Gets the value of the addressScore property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getAddressScore() { - return addressScore; - } - - /** - * Sets the value of the addressScore property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setAddressScore(BigInteger value) { - this.addressScore = value; - } - - /** - * Gets the value of the postcodeScore property. - * - * @return - * possible object is - * {@link BigInteger } - * - */ - public BigInteger getPostcodeScore() { - return postcodeScore; - } - - /** - * Sets the value of the postcodeScore property. - * - * @param value - * allowed object is - * {@link BigInteger } - * - */ - public void setPostcodeScore(BigInteger value) { - this.postcodeScore = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteAddress.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteAddress.java deleted file mode 100644 index 684a70f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteAddress.java +++ /dev/null @@ -1,227 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RouteAddress complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RouteAddress">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="address_key" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RouteAddress", propOrder = { - -}) -public class RouteAddress { - - protected String postcode; - @XmlElement(name = "house_number") - protected Integer houseNumber; - @XmlElement(name = "house_number_addition") - protected String houseNumberAddition; - protected String street; - protected String city; - protected String country; - @XmlElement(name = "address_key") - protected String addressKey; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the houseNumber property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getHouseNumber() { - return houseNumber; - } - - /** - * Sets the value of the houseNumber property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setHouseNumber(Integer value) { - this.houseNumber = value; - } - - /** - * Gets the value of the houseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHouseNumberAddition() { - return houseNumberAddition; - } - - /** - * Sets the value of the houseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHouseNumberAddition(String value) { - this.houseNumberAddition = value; - } - - /** - * Gets the value of the street property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStreet() { - return street; - } - - /** - * Sets the value of the street property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStreet(String value) { - this.street = value; - } - - /** - * Gets the value of the city property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCity() { - return city; - } - - /** - * Sets the value of the city property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCity(String value) { - this.city = value; - } - - /** - * Gets the value of the country property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountry() { - return country; - } - - /** - * Sets the value of the country property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountry(String value) { - this.country = value; - } - - /** - * Gets the value of the addressKey property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddressKey() { - return addressKey; - } - - /** - * Sets the value of the addressKey property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddressKey(String value) { - this.addressKey = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinateLatLong.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinateLatLong.java deleted file mode 100644 index 0737092..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinateLatLong.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RouteCoordinateLatLong complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RouteCoordinateLatLong">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}double"/>
- *         <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}double"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RouteCoordinateLatLong", propOrder = { - -}) -public class RouteCoordinateLatLong { - - protected double latitude; - protected double longitude; - - /** - * Gets the value of the latitude property. - * - */ - public double getLatitude() { - return latitude; - } - - /** - * Sets the value of the latitude property. - * - */ - public void setLatitude(double value) { - this.latitude = value; - } - - /** - * Gets the value of the longitude property. - * - */ - public double getLongitude() { - return longitude; - } - - /** - * Sets the value of the longitude property. - * - */ - public void setLongitude(double value) { - this.longitude = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinateRD.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinateRD.java deleted file mode 100644 index f526a71..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinateRD.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RouteCoordinateRD complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RouteCoordinateRD">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RouteCoordinateRD", propOrder = { - -}) -public class RouteCoordinateRD { - - protected int x; - protected int y; - - /** - * Gets the value of the x property. - * - */ - public int getX() { - return x; - } - - /** - * Sets the value of the x property. - * - */ - public void setX(int value) { - this.x = value; - } - - /** - * Gets the value of the y property. - * - */ - public int getY() { - return y; - } - - /** - * Sets the value of the y property. - * - */ - public void setY(int value) { - this.y = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinates.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinates.java deleted file mode 100644 index 989b7bc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinates.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RouteCoordinates complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RouteCoordinates">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="latlong" type="{http://www.webservices.nl/soap/}RouteCoordinateLatLong"/>
- *         <element name="rd" type="{http://www.webservices.nl/soap/}RouteCoordinateRD" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RouteCoordinates", propOrder = { - -}) -public class RouteCoordinates { - - @XmlElement(required = true) - protected RouteCoordinateLatLong latlong; - protected RouteCoordinateRD rd; - - /** - * Gets the value of the latlong property. - * - * @return - * possible object is - * {@link RouteCoordinateLatLong } - * - */ - public RouteCoordinateLatLong getLatlong() { - return latlong; - } - - /** - * Sets the value of the latlong property. - * - * @param value - * allowed object is - * {@link RouteCoordinateLatLong } - * - */ - public void setLatlong(RouteCoordinateLatLong value) { - this.latlong = value; - } - - /** - * Gets the value of the rd property. - * - * @return - * possible object is - * {@link RouteCoordinateRD } - * - */ - public RouteCoordinateRD getRd() { - return rd; - } - - /** - * Sets the value of the rd property. - * - * @param value - * allowed object is - * {@link RouteCoordinateRD } - * - */ - public void setRd(RouteCoordinateRD value) { - this.rd = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinatesLatLon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinatesLatLon.java deleted file mode 100644 index 9fcb4fb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinatesLatLon.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RouteCoordinatesLatLon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RouteCoordinatesLatLon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="coordinates" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RouteCoordinatesLatLon", propOrder = { - -}) -public class RouteCoordinatesLatLon { - - protected int number; - @XmlElement(required = true) - protected String coordinates; - - /** - * Gets the value of the number property. - * - */ - public int getNumber() { - return number; - } - - /** - * Sets the value of the number property. - * - */ - public void setNumber(int value) { - this.number = value; - } - - /** - * Gets the value of the coordinates property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCoordinates() { - return coordinates; - } - - /** - * Sets the value of the coordinates property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCoordinates(String value) { - this.coordinates = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinatesRD.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinatesRD.java deleted file mode 100644 index 2d4f024..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteCoordinatesRD.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RouteCoordinatesRD complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RouteCoordinatesRD">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="coordinates" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RouteCoordinatesRD", propOrder = { - -}) -public class RouteCoordinatesRD { - - protected int number; - @XmlElement(required = true) - protected String coordinates; - - /** - * Gets the value of the number property. - * - */ - public int getNumber() { - return number; - } - - /** - * Sets the value of the number property. - * - */ - public void setNumber(int value) { - this.number = value; - } - - /** - * Gets the value of the coordinates property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCoordinates() { - return coordinates; - } - - /** - * Sets the value of the coordinates property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCoordinates(String value) { - this.coordinates = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteDescriptionCoordinatesLatLon.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteDescriptionCoordinatesLatLon.java deleted file mode 100644 index d9c3808..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteDescriptionCoordinatesLatLon.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RouteDescriptionCoordinatesLatLon complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RouteDescriptionCoordinatesLatLon">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="routecoordinates" type="{http://www.webservices.nl/soap/}RouteCoordinatesLatLon"/>
- *         <element name="parts" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RouteDescriptionCoordinatesLatLon", propOrder = { - -}) -public class RouteDescriptionCoordinatesLatLon { - - @XmlElement(required = true) - protected RouteCoordinatesLatLon routecoordinates; - @XmlElement(required = true) - protected RoutePartArray parts; - - /** - * Gets the value of the routecoordinates property. - * - * @return - * possible object is - * {@link RouteCoordinatesLatLon } - * - */ - public RouteCoordinatesLatLon getRoutecoordinates() { - return routecoordinates; - } - - /** - * Sets the value of the routecoordinates property. - * - * @param value - * allowed object is - * {@link RouteCoordinatesLatLon } - * - */ - public void setRoutecoordinates(RouteCoordinatesLatLon value) { - this.routecoordinates = value; - } - - /** - * Gets the value of the parts property. - * - * @return - * possible object is - * {@link RoutePartArray } - * - */ - public RoutePartArray getParts() { - return parts; - } - - /** - * Sets the value of the parts property. - * - * @param value - * allowed object is - * {@link RoutePartArray } - * - */ - public void setParts(RoutePartArray value) { - this.parts = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteDescriptionCoordinatesRD.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteDescriptionCoordinatesRD.java deleted file mode 100644 index 23b6c13..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteDescriptionCoordinatesRD.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RouteDescriptionCoordinatesRD complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RouteDescriptionCoordinatesRD">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="routecoordinates" type="{http://www.webservices.nl/soap/}RouteCoordinatesRD"/>
- *         <element name="parts" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RouteDescriptionCoordinatesRD", propOrder = { - -}) -public class RouteDescriptionCoordinatesRD { - - @XmlElement(required = true) - protected RouteCoordinatesRD routecoordinates; - @XmlElement(required = true) - protected RoutePartArray parts; - - /** - * Gets the value of the routecoordinates property. - * - * @return - * possible object is - * {@link RouteCoordinatesRD } - * - */ - public RouteCoordinatesRD getRoutecoordinates() { - return routecoordinates; - } - - /** - * Sets the value of the routecoordinates property. - * - * @param value - * allowed object is - * {@link RouteCoordinatesRD } - * - */ - public void setRoutecoordinates(RouteCoordinatesRD value) { - this.routecoordinates = value; - } - - /** - * Gets the value of the parts property. - * - * @return - * possible object is - * {@link RoutePartArray } - * - */ - public RoutePartArray getParts() { - return parts; - } - - /** - * Sets the value of the parts property. - * - * @param value - * allowed object is - * {@link RoutePartArray } - * - */ - public void setParts(RoutePartArray value) { - this.parts = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteInfo.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteInfo.java deleted file mode 100644 index 825b5cb..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteInfo.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RouteInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RouteInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="time" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RouteInfo", propOrder = { - -}) -public class RouteInfo { - - protected int time; - protected int distance; - - /** - * Gets the value of the time property. - * - */ - public int getTime() { - return time; - } - - /** - * Sets the value of the time property. - * - */ - public void setTime(int value) { - this.time = value; - } - - /** - * Gets the value of the distance property. - * - */ - public int getDistance() { - return distance; - } - - /** - * Sets the value of the distance property. - * - */ - public void setDistance(int value) { - this.distance = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteLocation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteLocation.java deleted file mode 100644 index de1314c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteLocation.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RouteLocation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RouteLocation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="address" type="{http://www.webservices.nl/soap/}RouteAddress"/>
- *         <element name="coordinates" type="{http://www.webservices.nl/soap/}RouteCoordinates"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RouteLocation", propOrder = { - -}) -public class RouteLocation { - - @XmlElement(required = true) - protected RouteAddress address; - @XmlElement(required = true) - protected RouteCoordinates coordinates; - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link RouteAddress } - * - */ - public RouteAddress getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link RouteAddress } - * - */ - public void setAddress(RouteAddress value) { - this.address = value; - } - - /** - * Gets the value of the coordinates property. - * - * @return - * possible object is - * {@link RouteCoordinates } - * - */ - public RouteCoordinates getCoordinates() { - return coordinates; - } - - /** - * Sets the value of the coordinates property. - * - * @param value - * allowed object is - * {@link RouteCoordinates } - * - */ - public void setCoordinates(RouteCoordinates value) { - this.coordinates = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePart.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePart.java deleted file mode 100644 index aa051d5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePart.java +++ /dev/null @@ -1,105 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RoutePart complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RoutePart">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="time" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RoutePart", propOrder = { - -}) -public class RoutePart { - - @XmlElement(required = true) - protected String description; - protected int time; - protected int distance; - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDescription(String value) { - this.description = value; - } - - /** - * Gets the value of the time property. - * - */ - public int getTime() { - return time; - } - - /** - * Sets the value of the time property. - * - */ - public void setTime(int value) { - this.time = value; - } - - /** - * Gets the value of the distance property. - * - */ - public int getDistance() { - return distance; - } - - /** - * Sets the value of the distance property. - * - */ - public void setDistance(int value) { - this.distance = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePartArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePartArray.java deleted file mode 100644 index aac9d2a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePartArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RoutePartArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RoutePartArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}RoutePart" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RoutePartArray", propOrder = { - "item" -}) -public class RoutePartArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RoutePart } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionAddressRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionAddressRequestType.java deleted file mode 100644 index 1b5dc94..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionAddressRequestType.java +++ /dev/null @@ -1,366 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerDescriptionAddressRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerDescriptionAddressRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_houseno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_houseno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerDescriptionAddressRequestType", propOrder = { - -}) -public class RoutePlannerDescriptionAddressRequestType { - - @XmlElement(required = true) - protected String routetype; - @XmlElement(name = "from_postalcode", required = true) - protected String fromPostalcode; - @XmlElement(name = "from_houseno", required = true) - protected String fromHouseno; - @XmlElement(name = "from_street", required = true) - protected String fromStreet; - @XmlElement(name = "from_city", required = true) - protected String fromCity; - @XmlElement(name = "from_country", required = true) - protected String fromCountry; - @XmlElement(name = "to_postalcode", required = true) - protected String toPostalcode; - @XmlElement(name = "to_houseno", required = true) - protected String toHouseno; - @XmlElement(name = "to_street", required = true) - protected String toStreet; - @XmlElement(name = "to_city", required = true) - protected String toCity; - @XmlElement(name = "to_country", required = true) - protected String toCountry; - @XmlElement(required = true) - protected String language; - - /** - * Gets the value of the routetype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoutetype() { - return routetype; - } - - /** - * Sets the value of the routetype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoutetype(String value) { - this.routetype = value; - } - - /** - * Gets the value of the fromPostalcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromPostalcode() { - return fromPostalcode; - } - - /** - * Sets the value of the fromPostalcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromPostalcode(String value) { - this.fromPostalcode = value; - } - - /** - * Gets the value of the fromHouseno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromHouseno() { - return fromHouseno; - } - - /** - * Sets the value of the fromHouseno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromHouseno(String value) { - this.fromHouseno = value; - } - - /** - * Gets the value of the fromStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromStreet() { - return fromStreet; - } - - /** - * Sets the value of the fromStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromStreet(String value) { - this.fromStreet = value; - } - - /** - * Gets the value of the fromCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromCity() { - return fromCity; - } - - /** - * Sets the value of the fromCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromCity(String value) { - this.fromCity = value; - } - - /** - * Gets the value of the fromCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromCountry() { - return fromCountry; - } - - /** - * Sets the value of the fromCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromCountry(String value) { - this.fromCountry = value; - } - - /** - * Gets the value of the toPostalcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToPostalcode() { - return toPostalcode; - } - - /** - * Sets the value of the toPostalcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToPostalcode(String value) { - this.toPostalcode = value; - } - - /** - * Gets the value of the toHouseno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToHouseno() { - return toHouseno; - } - - /** - * Sets the value of the toHouseno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToHouseno(String value) { - this.toHouseno = value; - } - - /** - * Gets the value of the toStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToStreet() { - return toStreet; - } - - /** - * Sets the value of the toStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToStreet(String value) { - this.toStreet = value; - } - - /** - * Gets the value of the toCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToCity() { - return toCity; - } - - /** - * Sets the value of the toCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToCity(String value) { - this.toCity = value; - } - - /** - * Gets the value of the toCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToCountry() { - return toCountry; - } - - /** - * Sets the value of the toCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToCountry(String value) { - this.toCountry = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionAddressResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionAddressResponseType.java deleted file mode 100644 index d40c0f5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionAddressResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerDescriptionAddressResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerDescriptionAddressResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="route" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerDescriptionAddressResponseType", propOrder = { - -}) -public class RoutePlannerDescriptionAddressResponseType { - - @XmlElement(required = true) - protected RoutePartArray route; - - /** - * Gets the value of the route property. - * - * @return - * possible object is - * {@link RoutePartArray } - * - */ - public RoutePartArray getRoute() { - return route; - } - - /** - * Sets the value of the route property. - * - * @param value - * allowed object is - * {@link RoutePartArray } - * - */ - public void setRoute(RoutePartArray value) { - this.route = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionCoordinatesRDRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionCoordinatesRDRequestType.java deleted file mode 100644 index beb5080..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionCoordinatesRDRequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerDescriptionCoordinatesRDRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerDescriptionCoordinatesRDRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcodeto" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="english" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerDescriptionCoordinatesRDRequestType", propOrder = { - -}) -public class RoutePlannerDescriptionCoordinatesRDRequestType { - - @XmlElement(required = true) - protected String postcodefrom; - @XmlElement(required = true) - protected String postcodeto; - @XmlElement(required = true) - protected String routetype; - protected boolean english; - - /** - * Gets the value of the postcodefrom property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcodefrom() { - return postcodefrom; - } - - /** - * Sets the value of the postcodefrom property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcodefrom(String value) { - this.postcodefrom = value; - } - - /** - * Gets the value of the postcodeto property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcodeto() { - return postcodeto; - } - - /** - * Sets the value of the postcodeto property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcodeto(String value) { - this.postcodeto = value; - } - - /** - * Gets the value of the routetype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoutetype() { - return routetype; - } - - /** - * Sets the value of the routetype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoutetype(String value) { - this.routetype = value; - } - - /** - * Gets the value of the english property. - * - */ - public boolean isEnglish() { - return english; - } - - /** - * Sets the value of the english property. - * - */ - public void setEnglish(boolean value) { - this.english = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionCoordinatesRDResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionCoordinatesRDResponseType.java deleted file mode 100644 index e819747..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionCoordinatesRDResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerDescriptionCoordinatesRDResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerDescriptionCoordinatesRDResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="route" type="{http://www.webservices.nl/soap/}RouteDescriptionCoordinatesRD"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerDescriptionCoordinatesRDResponseType", propOrder = { - -}) -public class RoutePlannerDescriptionCoordinatesRDResponseType { - - @XmlElement(required = true) - protected RouteDescriptionCoordinatesRD route; - - /** - * Gets the value of the route property. - * - * @return - * possible object is - * {@link RouteDescriptionCoordinatesRD } - * - */ - public RouteDescriptionCoordinatesRD getRoute() { - return route; - } - - /** - * Sets the value of the route property. - * - * @param value - * allowed object is - * {@link RouteDescriptionCoordinatesRD } - * - */ - public void setRoute(RouteDescriptionCoordinatesRD value) { - this.route = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionDutchAddressRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionDutchAddressRequestType.java deleted file mode 100644 index bd88a4f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionDutchAddressRequestType.java +++ /dev/null @@ -1,312 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerDescriptionDutchAddressRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerDescriptionDutchAddressRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_housno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_housno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerDescriptionDutchAddressRequestType", propOrder = { - -}) -public class RoutePlannerDescriptionDutchAddressRequestType { - - @XmlElement(required = true) - protected String routetype; - @XmlElement(name = "from_postalcode", required = true) - protected String fromPostalcode; - @XmlElement(name = "from_housno", required = true) - protected String fromHousno; - @XmlElement(name = "from_street", required = true) - protected String fromStreet; - @XmlElement(name = "from_city", required = true) - protected String fromCity; - @XmlElement(name = "to_postalcode", required = true) - protected String toPostalcode; - @XmlElement(name = "to_housno", required = true) - protected String toHousno; - @XmlElement(name = "to_street", required = true) - protected String toStreet; - @XmlElement(name = "to_city", required = true) - protected String toCity; - @XmlElement(required = true) - protected String language; - - /** - * Gets the value of the routetype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoutetype() { - return routetype; - } - - /** - * Sets the value of the routetype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoutetype(String value) { - this.routetype = value; - } - - /** - * Gets the value of the fromPostalcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromPostalcode() { - return fromPostalcode; - } - - /** - * Sets the value of the fromPostalcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromPostalcode(String value) { - this.fromPostalcode = value; - } - - /** - * Gets the value of the fromHousno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromHousno() { - return fromHousno; - } - - /** - * Sets the value of the fromHousno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromHousno(String value) { - this.fromHousno = value; - } - - /** - * Gets the value of the fromStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromStreet() { - return fromStreet; - } - - /** - * Sets the value of the fromStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromStreet(String value) { - this.fromStreet = value; - } - - /** - * Gets the value of the fromCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromCity() { - return fromCity; - } - - /** - * Sets the value of the fromCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromCity(String value) { - this.fromCity = value; - } - - /** - * Gets the value of the toPostalcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToPostalcode() { - return toPostalcode; - } - - /** - * Sets the value of the toPostalcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToPostalcode(String value) { - this.toPostalcode = value; - } - - /** - * Gets the value of the toHousno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToHousno() { - return toHousno; - } - - /** - * Sets the value of the toHousno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToHousno(String value) { - this.toHousno = value; - } - - /** - * Gets the value of the toStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToStreet() { - return toStreet; - } - - /** - * Sets the value of the toStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToStreet(String value) { - this.toStreet = value; - } - - /** - * Gets the value of the toCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToCity() { - return toCity; - } - - /** - * Sets the value of the toCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToCity(String value) { - this.toCity = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionDutchAddressResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionDutchAddressResponseType.java deleted file mode 100644 index 57e63b7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionDutchAddressResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerDescriptionDutchAddressResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerDescriptionDutchAddressResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="route" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerDescriptionDutchAddressResponseType", propOrder = { - -}) -public class RoutePlannerDescriptionDutchAddressResponseType { - - @XmlElement(required = true) - protected RoutePartArray route; - - /** - * Gets the value of the route property. - * - * @return - * possible object is - * {@link RoutePartArray } - * - */ - public RoutePartArray getRoute() { - return route; - } - - /** - * Sets the value of the route property. - * - * @param value - * allowed object is - * {@link RoutePartArray } - * - */ - public void setRoute(RoutePartArray value) { - this.route = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionRequestType.java deleted file mode 100644 index 41cc4df..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionRequestType.java +++ /dev/null @@ -1,114 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerDescriptionRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerDescriptionRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcodeto" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="english" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerDescriptionRequestType", propOrder = { - -}) -public class RoutePlannerDescriptionRequestType { - - @XmlElement(required = true) - protected String postcodefrom; - @XmlElement(required = true) - protected String postcodeto; - protected boolean english; - - /** - * Gets the value of the postcodefrom property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcodefrom() { - return postcodefrom; - } - - /** - * Sets the value of the postcodefrom property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcodefrom(String value) { - this.postcodefrom = value; - } - - /** - * Gets the value of the postcodeto property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcodeto() { - return postcodeto; - } - - /** - * Sets the value of the postcodeto property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcodeto(String value) { - this.postcodeto = value; - } - - /** - * Gets the value of the english property. - * - */ - public boolean isEnglish() { - return english; - } - - /** - * Sets the value of the english property. - * - */ - public void setEnglish(boolean value) { - this.english = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionResponseType.java deleted file mode 100644 index da040d8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerDescriptionResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerDescriptionResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="route" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerDescriptionResponseType", propOrder = { - -}) -public class RoutePlannerDescriptionResponseType { - - @XmlElement(required = true) - protected RoutePartArray route; - - /** - * Gets the value of the route property. - * - * @return - * possible object is - * {@link RoutePartArray } - * - */ - public RoutePartArray getRoute() { - return route; - } - - /** - * Sets the value of the route property. - * - * @param value - * allowed object is - * {@link RoutePartArray } - * - */ - public void setRoute(RoutePartArray value) { - this.route = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionShortestRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionShortestRequestType.java deleted file mode 100644 index 4ce6050..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionShortestRequestType.java +++ /dev/null @@ -1,114 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerDescriptionShortestRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerDescriptionShortestRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcodeto" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="english" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerDescriptionShortestRequestType", propOrder = { - -}) -public class RoutePlannerDescriptionShortestRequestType { - - @XmlElement(required = true) - protected String postcodefrom; - @XmlElement(required = true) - protected String postcodeto; - protected boolean english; - - /** - * Gets the value of the postcodefrom property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcodefrom() { - return postcodefrom; - } - - /** - * Sets the value of the postcodefrom property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcodefrom(String value) { - this.postcodefrom = value; - } - - /** - * Gets the value of the postcodeto property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcodeto() { - return postcodeto; - } - - /** - * Sets the value of the postcodeto property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcodeto(String value) { - this.postcodeto = value; - } - - /** - * Gets the value of the english property. - * - */ - public boolean isEnglish() { - return english; - } - - /** - * Sets the value of the english property. - * - */ - public void setEnglish(boolean value) { - this.english = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionShortestResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionShortestResponseType.java deleted file mode 100644 index f61fdc2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerDescriptionShortestResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerDescriptionShortestResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerDescriptionShortestResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="route" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerDescriptionShortestResponseType", propOrder = { - -}) -public class RoutePlannerDescriptionShortestResponseType { - - @XmlElement(required = true) - protected RoutePartArray route; - - /** - * Gets the value of the route property. - * - * @return - * possible object is - * {@link RoutePartArray } - * - */ - public RoutePartArray getRoute() { - return route; - } - - /** - * Sets the value of the route property. - * - * @param value - * allowed object is - * {@link RoutePartArray } - * - */ - public void setRoute(RoutePartArray value) { - this.route = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionCoordinatesLatLonRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionCoordinatesLatLonRequestType.java deleted file mode 100644 index f8016cc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionCoordinatesLatLonRequestType.java +++ /dev/null @@ -1,168 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerEUDescriptionCoordinatesLatLonRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerEUDescriptionCoordinatesLatLonRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="latitudefrom" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitudefrom" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="latitudeto" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitudeto" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerEUDescriptionCoordinatesLatLonRequestType", propOrder = { - -}) -public class RoutePlannerEUDescriptionCoordinatesLatLonRequestType { - - protected float latitudefrom; - protected float longitudefrom; - protected float latitudeto; - protected float longitudeto; - @XmlElement(required = true) - protected String routetype; - @XmlElement(required = true) - protected String language; - - /** - * Gets the value of the latitudefrom property. - * - */ - public float getLatitudefrom() { - return latitudefrom; - } - - /** - * Sets the value of the latitudefrom property. - * - */ - public void setLatitudefrom(float value) { - this.latitudefrom = value; - } - - /** - * Gets the value of the longitudefrom property. - * - */ - public float getLongitudefrom() { - return longitudefrom; - } - - /** - * Sets the value of the longitudefrom property. - * - */ - public void setLongitudefrom(float value) { - this.longitudefrom = value; - } - - /** - * Gets the value of the latitudeto property. - * - */ - public float getLatitudeto() { - return latitudeto; - } - - /** - * Sets the value of the latitudeto property. - * - */ - public void setLatitudeto(float value) { - this.latitudeto = value; - } - - /** - * Gets the value of the longitudeto property. - * - */ - public float getLongitudeto() { - return longitudeto; - } - - /** - * Sets the value of the longitudeto property. - * - */ - public void setLongitudeto(float value) { - this.longitudeto = value; - } - - /** - * Gets the value of the routetype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoutetype() { - return routetype; - } - - /** - * Sets the value of the routetype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoutetype(String value) { - this.routetype = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionCoordinatesLatLonResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionCoordinatesLatLonResponseType.java deleted file mode 100644 index c9754ce..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionCoordinatesLatLonResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerEUDescriptionCoordinatesLatLonResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerEUDescriptionCoordinatesLatLonResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="route" type="{http://www.webservices.nl/soap/}RouteDescriptionCoordinatesLatLon"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerEUDescriptionCoordinatesLatLonResponseType", propOrder = { - -}) -public class RoutePlannerEUDescriptionCoordinatesLatLonResponseType { - - @XmlElement(required = true) - protected RouteDescriptionCoordinatesLatLon route; - - /** - * Gets the value of the route property. - * - * @return - * possible object is - * {@link RouteDescriptionCoordinatesLatLon } - * - */ - public RouteDescriptionCoordinatesLatLon getRoute() { - return route; - } - - /** - * Sets the value of the route property. - * - * @param value - * allowed object is - * {@link RouteDescriptionCoordinatesLatLon } - * - */ - public void setRoute(RouteDescriptionCoordinatesLatLon value) { - this.route = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionRequestType.java deleted file mode 100644 index 2b68de2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionRequestType.java +++ /dev/null @@ -1,168 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerEUDescriptionRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerEUDescriptionRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="latitudefrom" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitudefrom" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="latitudeto" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitudeto" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerEUDescriptionRequestType", propOrder = { - -}) -public class RoutePlannerEUDescriptionRequestType { - - protected float latitudefrom; - protected float longitudefrom; - protected float latitudeto; - protected float longitudeto; - @XmlElement(required = true) - protected String routetype; - @XmlElement(required = true) - protected String language; - - /** - * Gets the value of the latitudefrom property. - * - */ - public float getLatitudefrom() { - return latitudefrom; - } - - /** - * Sets the value of the latitudefrom property. - * - */ - public void setLatitudefrom(float value) { - this.latitudefrom = value; - } - - /** - * Gets the value of the longitudefrom property. - * - */ - public float getLongitudefrom() { - return longitudefrom; - } - - /** - * Sets the value of the longitudefrom property. - * - */ - public void setLongitudefrom(float value) { - this.longitudefrom = value; - } - - /** - * Gets the value of the latitudeto property. - * - */ - public float getLatitudeto() { - return latitudeto; - } - - /** - * Sets the value of the latitudeto property. - * - */ - public void setLatitudeto(float value) { - this.latitudeto = value; - } - - /** - * Gets the value of the longitudeto property. - * - */ - public float getLongitudeto() { - return longitudeto; - } - - /** - * Sets the value of the longitudeto property. - * - */ - public void setLongitudeto(float value) { - this.longitudeto = value; - } - - /** - * Gets the value of the routetype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoutetype() { - return routetype; - } - - /** - * Sets the value of the routetype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoutetype(String value) { - this.routetype = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionResponseType.java deleted file mode 100644 index 28e2c05..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUDescriptionResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerEUDescriptionResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerEUDescriptionResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="route" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerEUDescriptionResponseType", propOrder = { - -}) -public class RoutePlannerEUDescriptionResponseType { - - @XmlElement(required = true) - protected RoutePartArray route; - - /** - * Gets the value of the route property. - * - * @return - * possible object is - * {@link RoutePartArray } - * - */ - public RoutePartArray getRoute() { - return route; - } - - /** - * Sets the value of the route property. - * - * @param value - * allowed object is - * {@link RoutePartArray } - * - */ - public void setRoute(RoutePartArray value) { - this.route = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUInformationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUInformationRequestType.java deleted file mode 100644 index aa1b105..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUInformationRequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerEUInformationRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerEUInformationRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="latitudefrom" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitudefrom" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="latitudeto" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitudeto" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerEUInformationRequestType", propOrder = { - -}) -public class RoutePlannerEUInformationRequestType { - - protected float latitudefrom; - protected float longitudefrom; - protected float latitudeto; - protected float longitudeto; - @XmlElement(required = true) - protected String routetype; - - /** - * Gets the value of the latitudefrom property. - * - */ - public float getLatitudefrom() { - return latitudefrom; - } - - /** - * Sets the value of the latitudefrom property. - * - */ - public void setLatitudefrom(float value) { - this.latitudefrom = value; - } - - /** - * Gets the value of the longitudefrom property. - * - */ - public float getLongitudefrom() { - return longitudefrom; - } - - /** - * Sets the value of the longitudefrom property. - * - */ - public void setLongitudefrom(float value) { - this.longitudefrom = value; - } - - /** - * Gets the value of the latitudeto property. - * - */ - public float getLatitudeto() { - return latitudeto; - } - - /** - * Sets the value of the latitudeto property. - * - */ - public void setLatitudeto(float value) { - this.latitudeto = value; - } - - /** - * Gets the value of the longitudeto property. - * - */ - public float getLongitudeto() { - return longitudeto; - } - - /** - * Sets the value of the longitudeto property. - * - */ - public void setLongitudeto(float value) { - this.longitudeto = value; - } - - /** - * Gets the value of the routetype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoutetype() { - return routetype; - } - - /** - * Sets the value of the routetype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoutetype(String value) { - this.routetype = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUInformationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUInformationResponseType.java deleted file mode 100644 index 3c94323..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUInformationResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerEUInformationResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerEUInformationResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="route" type="{http://www.webservices.nl/soap/}RouteInfo"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerEUInformationResponseType", propOrder = { - -}) -public class RoutePlannerEUInformationResponseType { - - @XmlElement(required = true) - protected RouteInfo route; - - /** - * Gets the value of the route property. - * - * @return - * possible object is - * {@link RouteInfo } - * - */ - public RouteInfo getRoute() { - return route; - } - - /** - * Sets the value of the route property. - * - * @param value - * allowed object is - * {@link RouteInfo } - * - */ - public void setRoute(RouteInfo value) { - this.route = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUMapRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUMapRequestType.java deleted file mode 100644 index 282ac3d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUMapRequestType.java +++ /dev/null @@ -1,258 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerEUMapRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerEUMapRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="latitudefrom" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitudefrom" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="latitudeto" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="longitudeto" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="width" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="height" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="view" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerEUMapRequestType", propOrder = { - -}) -public class RoutePlannerEUMapRequestType { - - protected float latitudefrom; - protected float longitudefrom; - protected float latitudeto; - protected float longitudeto; - @XmlElement(required = true) - protected String routetype; - @XmlElement(required = true) - protected String language; - @XmlElement(required = true) - protected String format; - protected int width; - protected int height; - @XmlElement(required = true) - protected String view; - - /** - * Gets the value of the latitudefrom property. - * - */ - public float getLatitudefrom() { - return latitudefrom; - } - - /** - * Sets the value of the latitudefrom property. - * - */ - public void setLatitudefrom(float value) { - this.latitudefrom = value; - } - - /** - * Gets the value of the longitudefrom property. - * - */ - public float getLongitudefrom() { - return longitudefrom; - } - - /** - * Sets the value of the longitudefrom property. - * - */ - public void setLongitudefrom(float value) { - this.longitudefrom = value; - } - - /** - * Gets the value of the latitudeto property. - * - */ - public float getLatitudeto() { - return latitudeto; - } - - /** - * Sets the value of the latitudeto property. - * - */ - public void setLatitudeto(float value) { - this.latitudeto = value; - } - - /** - * Gets the value of the longitudeto property. - * - */ - public float getLongitudeto() { - return longitudeto; - } - - /** - * Sets the value of the longitudeto property. - * - */ - public void setLongitudeto(float value) { - this.longitudeto = value; - } - - /** - * Gets the value of the routetype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoutetype() { - return routetype; - } - - /** - * Sets the value of the routetype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoutetype(String value) { - this.routetype = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - - /** - * Gets the value of the format property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFormat() { - return format; - } - - /** - * Sets the value of the format property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFormat(String value) { - this.format = value; - } - - /** - * Gets the value of the width property. - * - */ - public int getWidth() { - return width; - } - - /** - * Sets the value of the width property. - * - */ - public void setWidth(int value) { - this.width = value; - } - - /** - * Gets the value of the height property. - * - */ - public int getHeight() { - return height; - } - - /** - * Sets the value of the height property. - * - */ - public void setHeight(int value) { - this.height = value; - } - - /** - * Gets the value of the view property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getView() { - return view; - } - - /** - * Sets the value of the view property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setView(String value) { - this.view = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUMapResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUMapResponseType.java deleted file mode 100644 index 45c009b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerEUMapResponseType.java +++ /dev/null @@ -1,67 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerEUMapResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerEUMapResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="image" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerEUMapResponseType", propOrder = { - -}) -public class RoutePlannerEUMapResponseType { - - @XmlElement(required = true) - protected byte[] image; - - /** - * Gets the value of the image property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getImage() { - return image; - } - - /** - * Sets the value of the image property. - * - * @param value - * allowed object is - * byte[] - */ - public void setImage(byte[] value) { - this.image = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerGetRouteRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerGetRouteRequestType.java deleted file mode 100644 index 4608f78..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerGetRouteRequestType.java +++ /dev/null @@ -1,404 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerGetRouteRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerGetRouteRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="start_postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="start_house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="start_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="start_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="start_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="start_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="destination_postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="destination_house_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="destination_house_number_addition" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="destination_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="destination_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="destination_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="route_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerGetRouteRequestType", propOrder = { - -}) -public class RoutePlannerGetRouteRequestType { - - @XmlElement(name = "start_postcode", required = true) - protected String startPostcode; - @XmlElement(name = "start_house_number") - protected int startHouseNumber; - @XmlElement(name = "start_house_number_addition", required = true) - protected String startHouseNumberAddition; - @XmlElement(name = "start_street", required = true) - protected String startStreet; - @XmlElement(name = "start_city", required = true) - protected String startCity; - @XmlElement(name = "start_country", required = true) - protected String startCountry; - @XmlElement(name = "destination_postcode", required = true) - protected String destinationPostcode; - @XmlElement(name = "destination_house_number") - protected int destinationHouseNumber; - @XmlElement(name = "destination_house_number_addition", required = true) - protected String destinationHouseNumberAddition; - @XmlElement(name = "destination_street", required = true) - protected String destinationStreet; - @XmlElement(name = "destination_city", required = true) - protected String destinationCity; - @XmlElement(name = "destination_country", required = true) - protected String destinationCountry; - @XmlElement(name = "route_type", required = true) - protected String routeType; - @XmlElement(required = true) - protected String language; - - /** - * Gets the value of the startPostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStartPostcode() { - return startPostcode; - } - - /** - * Sets the value of the startPostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStartPostcode(String value) { - this.startPostcode = value; - } - - /** - * Gets the value of the startHouseNumber property. - * - */ - public int getStartHouseNumber() { - return startHouseNumber; - } - - /** - * Sets the value of the startHouseNumber property. - * - */ - public void setStartHouseNumber(int value) { - this.startHouseNumber = value; - } - - /** - * Gets the value of the startHouseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStartHouseNumberAddition() { - return startHouseNumberAddition; - } - - /** - * Sets the value of the startHouseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStartHouseNumberAddition(String value) { - this.startHouseNumberAddition = value; - } - - /** - * Gets the value of the startStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStartStreet() { - return startStreet; - } - - /** - * Sets the value of the startStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStartStreet(String value) { - this.startStreet = value; - } - - /** - * Gets the value of the startCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStartCity() { - return startCity; - } - - /** - * Sets the value of the startCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStartCity(String value) { - this.startCity = value; - } - - /** - * Gets the value of the startCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStartCountry() { - return startCountry; - } - - /** - * Sets the value of the startCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStartCountry(String value) { - this.startCountry = value; - } - - /** - * Gets the value of the destinationPostcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDestinationPostcode() { - return destinationPostcode; - } - - /** - * Sets the value of the destinationPostcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDestinationPostcode(String value) { - this.destinationPostcode = value; - } - - /** - * Gets the value of the destinationHouseNumber property. - * - */ - public int getDestinationHouseNumber() { - return destinationHouseNumber; - } - - /** - * Sets the value of the destinationHouseNumber property. - * - */ - public void setDestinationHouseNumber(int value) { - this.destinationHouseNumber = value; - } - - /** - * Gets the value of the destinationHouseNumberAddition property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDestinationHouseNumberAddition() { - return destinationHouseNumberAddition; - } - - /** - * Sets the value of the destinationHouseNumberAddition property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDestinationHouseNumberAddition(String value) { - this.destinationHouseNumberAddition = value; - } - - /** - * Gets the value of the destinationStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDestinationStreet() { - return destinationStreet; - } - - /** - * Sets the value of the destinationStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDestinationStreet(String value) { - this.destinationStreet = value; - } - - /** - * Gets the value of the destinationCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDestinationCity() { - return destinationCity; - } - - /** - * Sets the value of the destinationCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDestinationCity(String value) { - this.destinationCity = value; - } - - /** - * Gets the value of the destinationCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDestinationCountry() { - return destinationCountry; - } - - /** - * Sets the value of the destinationCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDestinationCountry(String value) { - this.destinationCountry = value; - } - - /** - * Gets the value of the routeType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRouteType() { - return routeType; - } - - /** - * Sets the value of the routeType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRouteType(String value) { - this.routeType = value; - } - - /** - * Gets the value of the language property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLanguage() { - return language; - } - - /** - * Sets the value of the language property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLanguage(String value) { - this.language = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerGetRouteResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerGetRouteResponseType.java deleted file mode 100644 index b100344..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerGetRouteResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerGetRouteResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerGetRouteResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="route" type="{http://www.webservices.nl/soap/}RoutePlannerRoute"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerGetRouteResponseType", propOrder = { - -}) -public class RoutePlannerGetRouteResponseType { - - @XmlElement(required = true) - protected RoutePlannerRoute route; - - /** - * Gets the value of the route property. - * - * @return - * possible object is - * {@link RoutePlannerRoute } - * - */ - public RoutePlannerRoute getRoute() { - return route; - } - - /** - * Sets the value of the route property. - * - * @param value - * allowed object is - * {@link RoutePlannerRoute } - * - */ - public void setRoute(RoutePlannerRoute value) { - this.route = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationAddressRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationAddressRequestType.java deleted file mode 100644 index a1c4e6b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationAddressRequestType.java +++ /dev/null @@ -1,339 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerInformationAddressRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerInformationAddressRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_houseno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_houseno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_country" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerInformationAddressRequestType", propOrder = { - -}) -public class RoutePlannerInformationAddressRequestType { - - @XmlElement(required = true) - protected String routetype; - @XmlElement(name = "from_postalcode", required = true) - protected String fromPostalcode; - @XmlElement(name = "from_houseno", required = true) - protected String fromHouseno; - @XmlElement(name = "from_street", required = true) - protected String fromStreet; - @XmlElement(name = "from_city", required = true) - protected String fromCity; - @XmlElement(name = "from_country", required = true) - protected String fromCountry; - @XmlElement(name = "to_postalcode", required = true) - protected String toPostalcode; - @XmlElement(name = "to_houseno", required = true) - protected String toHouseno; - @XmlElement(name = "to_street", required = true) - protected String toStreet; - @XmlElement(name = "to_city", required = true) - protected String toCity; - @XmlElement(name = "to_country", required = true) - protected String toCountry; - - /** - * Gets the value of the routetype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoutetype() { - return routetype; - } - - /** - * Sets the value of the routetype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoutetype(String value) { - this.routetype = value; - } - - /** - * Gets the value of the fromPostalcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromPostalcode() { - return fromPostalcode; - } - - /** - * Sets the value of the fromPostalcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromPostalcode(String value) { - this.fromPostalcode = value; - } - - /** - * Gets the value of the fromHouseno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromHouseno() { - return fromHouseno; - } - - /** - * Sets the value of the fromHouseno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromHouseno(String value) { - this.fromHouseno = value; - } - - /** - * Gets the value of the fromStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromStreet() { - return fromStreet; - } - - /** - * Sets the value of the fromStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromStreet(String value) { - this.fromStreet = value; - } - - /** - * Gets the value of the fromCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromCity() { - return fromCity; - } - - /** - * Sets the value of the fromCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromCity(String value) { - this.fromCity = value; - } - - /** - * Gets the value of the fromCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromCountry() { - return fromCountry; - } - - /** - * Sets the value of the fromCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromCountry(String value) { - this.fromCountry = value; - } - - /** - * Gets the value of the toPostalcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToPostalcode() { - return toPostalcode; - } - - /** - * Sets the value of the toPostalcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToPostalcode(String value) { - this.toPostalcode = value; - } - - /** - * Gets the value of the toHouseno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToHouseno() { - return toHouseno; - } - - /** - * Sets the value of the toHouseno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToHouseno(String value) { - this.toHouseno = value; - } - - /** - * Gets the value of the toStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToStreet() { - return toStreet; - } - - /** - * Sets the value of the toStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToStreet(String value) { - this.toStreet = value; - } - - /** - * Gets the value of the toCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToCity() { - return toCity; - } - - /** - * Sets the value of the toCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToCity(String value) { - this.toCity = value; - } - - /** - * Gets the value of the toCountry property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToCountry() { - return toCountry; - } - - /** - * Sets the value of the toCountry property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToCountry(String value) { - this.toCountry = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationAddressResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationAddressResponseType.java deleted file mode 100644 index 1120cd1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationAddressResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerInformationAddressResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerInformationAddressResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="route" type="{http://www.webservices.nl/soap/}RouteInfo"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerInformationAddressResponseType", propOrder = { - -}) -public class RoutePlannerInformationAddressResponseType { - - @XmlElement(required = true) - protected RouteInfo route; - - /** - * Gets the value of the route property. - * - * @return - * possible object is - * {@link RouteInfo } - * - */ - public RouteInfo getRoute() { - return route; - } - - /** - * Sets the value of the route property. - * - * @param value - * allowed object is - * {@link RouteInfo } - * - */ - public void setRoute(RouteInfo value) { - this.route = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationDutchAddressRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationDutchAddressRequestType.java deleted file mode 100644 index 260cc32..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationDutchAddressRequestType.java +++ /dev/null @@ -1,285 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerInformationDutchAddressRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerInformationDutchAddressRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_housno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="from_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_postalcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_housno" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_street" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="to_city" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerInformationDutchAddressRequestType", propOrder = { - -}) -public class RoutePlannerInformationDutchAddressRequestType { - - @XmlElement(required = true) - protected String routetype; - @XmlElement(name = "from_postalcode", required = true) - protected String fromPostalcode; - @XmlElement(name = "from_housno", required = true) - protected String fromHousno; - @XmlElement(name = "from_street", required = true) - protected String fromStreet; - @XmlElement(name = "from_city", required = true) - protected String fromCity; - @XmlElement(name = "to_postalcode", required = true) - protected String toPostalcode; - @XmlElement(name = "to_housno", required = true) - protected String toHousno; - @XmlElement(name = "to_street", required = true) - protected String toStreet; - @XmlElement(name = "to_city", required = true) - protected String toCity; - - /** - * Gets the value of the routetype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoutetype() { - return routetype; - } - - /** - * Sets the value of the routetype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoutetype(String value) { - this.routetype = value; - } - - /** - * Gets the value of the fromPostalcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromPostalcode() { - return fromPostalcode; - } - - /** - * Sets the value of the fromPostalcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromPostalcode(String value) { - this.fromPostalcode = value; - } - - /** - * Gets the value of the fromHousno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromHousno() { - return fromHousno; - } - - /** - * Sets the value of the fromHousno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromHousno(String value) { - this.fromHousno = value; - } - - /** - * Gets the value of the fromStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromStreet() { - return fromStreet; - } - - /** - * Sets the value of the fromStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromStreet(String value) { - this.fromStreet = value; - } - - /** - * Gets the value of the fromCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFromCity() { - return fromCity; - } - - /** - * Sets the value of the fromCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFromCity(String value) { - this.fromCity = value; - } - - /** - * Gets the value of the toPostalcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToPostalcode() { - return toPostalcode; - } - - /** - * Sets the value of the toPostalcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToPostalcode(String value) { - this.toPostalcode = value; - } - - /** - * Gets the value of the toHousno property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToHousno() { - return toHousno; - } - - /** - * Sets the value of the toHousno property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToHousno(String value) { - this.toHousno = value; - } - - /** - * Gets the value of the toStreet property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToStreet() { - return toStreet; - } - - /** - * Sets the value of the toStreet property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToStreet(String value) { - this.toStreet = value; - } - - /** - * Gets the value of the toCity property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToCity() { - return toCity; - } - - /** - * Sets the value of the toCity property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToCity(String value) { - this.toCity = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationDutchAddressResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationDutchAddressResponseType.java deleted file mode 100644 index e8e0d59..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationDutchAddressResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerInformationDutchAddressResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerInformationDutchAddressResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="route" type="{http://www.webservices.nl/soap/}RouteInfo"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerInformationDutchAddressResponseType", propOrder = { - -}) -public class RoutePlannerInformationDutchAddressResponseType { - - @XmlElement(required = true) - protected RouteInfo route; - - /** - * Gets the value of the route property. - * - * @return - * possible object is - * {@link RouteInfo } - * - */ - public RouteInfo getRoute() { - return route; - } - - /** - * Sets the value of the route property. - * - * @param value - * allowed object is - * {@link RouteInfo } - * - */ - public void setRoute(RouteInfo value) { - this.route = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationRequestType.java deleted file mode 100644 index fb2788f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationRequestType.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerInformationRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerInformationRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcodefrom" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="postcodeto" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerInformationRequestType", propOrder = { - -}) -public class RoutePlannerInformationRequestType { - - @XmlElement(required = true) - protected String postcodefrom; - @XmlElement(required = true) - protected String postcodeto; - @XmlElement(required = true) - protected String routetype; - - /** - * Gets the value of the postcodefrom property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcodefrom() { - return postcodefrom; - } - - /** - * Sets the value of the postcodefrom property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcodefrom(String value) { - this.postcodefrom = value; - } - - /** - * Gets the value of the postcodeto property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcodeto() { - return postcodeto; - } - - /** - * Sets the value of the postcodeto property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcodeto(String value) { - this.postcodeto = value; - } - - /** - * Gets the value of the routetype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoutetype() { - return routetype; - } - - /** - * Sets the value of the routetype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoutetype(String value) { - this.routetype = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationResponseType.java deleted file mode 100644 index 31305c0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerInformationResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerInformationResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerInformationResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="route" type="{http://www.webservices.nl/soap/}RouteInfo"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerInformationResponseType", propOrder = { - -}) -public class RoutePlannerInformationResponseType { - - @XmlElement(required = true) - protected RouteInfo route; - - /** - * Gets the value of the route property. - * - * @return - * possible object is - * {@link RouteInfo } - * - */ - public RouteInfo getRoute() { - return route; - } - - /** - * Sets the value of the route property. - * - * @param value - * allowed object is - * {@link RouteInfo } - * - */ - public void setRoute(RouteInfo value) { - this.route = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionCoordinatesRDRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionCoordinatesRDRequestType.java deleted file mode 100644 index c4ef2e7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionCoordinatesRDRequestType.java +++ /dev/null @@ -1,159 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerRDDescriptionCoordinatesRDRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerRDDescriptionCoordinatesRDRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="xfrom" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="yfrom" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="xto" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="yto" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="english" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerRDDescriptionCoordinatesRDRequestType", propOrder = { - -}) -public class RoutePlannerRDDescriptionCoordinatesRDRequestType { - - protected int xfrom; - protected int yfrom; - protected int xto; - protected int yto; - @XmlElement(required = true) - protected String routetype; - protected boolean english; - - /** - * Gets the value of the xfrom property. - * - */ - public int getXfrom() { - return xfrom; - } - - /** - * Sets the value of the xfrom property. - * - */ - public void setXfrom(int value) { - this.xfrom = value; - } - - /** - * Gets the value of the yfrom property. - * - */ - public int getYfrom() { - return yfrom; - } - - /** - * Sets the value of the yfrom property. - * - */ - public void setYfrom(int value) { - this.yfrom = value; - } - - /** - * Gets the value of the xto property. - * - */ - public int getXto() { - return xto; - } - - /** - * Sets the value of the xto property. - * - */ - public void setXto(int value) { - this.xto = value; - } - - /** - * Gets the value of the yto property. - * - */ - public int getYto() { - return yto; - } - - /** - * Sets the value of the yto property. - * - */ - public void setYto(int value) { - this.yto = value; - } - - /** - * Gets the value of the routetype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoutetype() { - return routetype; - } - - /** - * Sets the value of the routetype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoutetype(String value) { - this.routetype = value; - } - - /** - * Gets the value of the english property. - * - */ - public boolean isEnglish() { - return english; - } - - /** - * Sets the value of the english property. - * - */ - public void setEnglish(boolean value) { - this.english = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionCoordinatesRDResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionCoordinatesRDResponseType.java deleted file mode 100644 index 24b678c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionCoordinatesRDResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerRDDescriptionCoordinatesRDResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerRDDescriptionCoordinatesRDResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="route" type="{http://www.webservices.nl/soap/}RouteDescriptionCoordinatesRD"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerRDDescriptionCoordinatesRDResponseType", propOrder = { - -}) -public class RoutePlannerRDDescriptionCoordinatesRDResponseType { - - @XmlElement(required = true) - protected RouteDescriptionCoordinatesRD route; - - /** - * Gets the value of the route property. - * - * @return - * possible object is - * {@link RouteDescriptionCoordinatesRD } - * - */ - public RouteDescriptionCoordinatesRD getRoute() { - return route; - } - - /** - * Sets the value of the route property. - * - * @param value - * allowed object is - * {@link RouteDescriptionCoordinatesRD } - * - */ - public void setRoute(RouteDescriptionCoordinatesRD value) { - this.route = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionRequestType.java deleted file mode 100644 index 68261e0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionRequestType.java +++ /dev/null @@ -1,159 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerRDDescriptionRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerRDDescriptionRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="xfrom" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="yfrom" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="xto" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="yto" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="english" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerRDDescriptionRequestType", propOrder = { - -}) -public class RoutePlannerRDDescriptionRequestType { - - protected int xfrom; - protected int yfrom; - protected int xto; - protected int yto; - @XmlElement(required = true) - protected String routetype; - protected boolean english; - - /** - * Gets the value of the xfrom property. - * - */ - public int getXfrom() { - return xfrom; - } - - /** - * Sets the value of the xfrom property. - * - */ - public void setXfrom(int value) { - this.xfrom = value; - } - - /** - * Gets the value of the yfrom property. - * - */ - public int getYfrom() { - return yfrom; - } - - /** - * Sets the value of the yfrom property. - * - */ - public void setYfrom(int value) { - this.yfrom = value; - } - - /** - * Gets the value of the xto property. - * - */ - public int getXto() { - return xto; - } - - /** - * Sets the value of the xto property. - * - */ - public void setXto(int value) { - this.xto = value; - } - - /** - * Gets the value of the yto property. - * - */ - public int getYto() { - return yto; - } - - /** - * Sets the value of the yto property. - * - */ - public void setYto(int value) { - this.yto = value; - } - - /** - * Gets the value of the routetype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoutetype() { - return routetype; - } - - /** - * Sets the value of the routetype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoutetype(String value) { - this.routetype = value; - } - - /** - * Gets the value of the english property. - * - */ - public boolean isEnglish() { - return english; - } - - /** - * Sets the value of the english property. - * - */ - public void setEnglish(boolean value) { - this.english = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionResponseType.java deleted file mode 100644 index 4069fb9..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDDescriptionResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerRDDescriptionResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerRDDescriptionResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="route" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerRDDescriptionResponseType", propOrder = { - -}) -public class RoutePlannerRDDescriptionResponseType { - - @XmlElement(required = true) - protected RoutePartArray route; - - /** - * Gets the value of the route property. - * - * @return - * possible object is - * {@link RoutePartArray } - * - */ - public RoutePartArray getRoute() { - return route; - } - - /** - * Sets the value of the route property. - * - * @param value - * allowed object is - * {@link RoutePartArray } - * - */ - public void setRoute(RoutePartArray value) { - this.route = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDInformationRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDInformationRequestType.java deleted file mode 100644 index 2f471bf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDInformationRequestType.java +++ /dev/null @@ -1,141 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerRDInformationRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerRDInformationRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="xfrom" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="yfrom" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="xto" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="yto" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="routetype" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerRDInformationRequestType", propOrder = { - -}) -public class RoutePlannerRDInformationRequestType { - - protected int xfrom; - protected int yfrom; - protected int xto; - protected int yto; - @XmlElement(required = true) - protected String routetype; - - /** - * Gets the value of the xfrom property. - * - */ - public int getXfrom() { - return xfrom; - } - - /** - * Sets the value of the xfrom property. - * - */ - public void setXfrom(int value) { - this.xfrom = value; - } - - /** - * Gets the value of the yfrom property. - * - */ - public int getYfrom() { - return yfrom; - } - - /** - * Sets the value of the yfrom property. - * - */ - public void setYfrom(int value) { - this.yfrom = value; - } - - /** - * Gets the value of the xto property. - * - */ - public int getXto() { - return xto; - } - - /** - * Sets the value of the xto property. - * - */ - public void setXto(int value) { - this.xto = value; - } - - /** - * Gets the value of the yto property. - * - */ - public int getYto() { - return yto; - } - - /** - * Sets the value of the yto property. - * - */ - public void setYto(int value) { - this.yto = value; - } - - /** - * Gets the value of the routetype property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoutetype() { - return routetype; - } - - /** - * Sets the value of the routetype property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoutetype(String value) { - this.routetype = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDInformationResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDInformationResponseType.java deleted file mode 100644 index 7d06882..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRDInformationResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for routePlannerRDInformationResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="routePlannerRDInformationResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="route" type="{http://www.webservices.nl/soap/}RouteInfo"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "routePlannerRDInformationResponseType", propOrder = { - -}) -public class RoutePlannerRDInformationResponseType { - - @XmlElement(required = true) - protected RouteInfo route; - - /** - * Gets the value of the route property. - * - * @return - * possible object is - * {@link RouteInfo } - * - */ - public RouteInfo getRoute() { - return route; - } - - /** - * Sets the value of the route property. - * - * @param value - * allowed object is - * {@link RouteInfo } - * - */ - public void setRoute(RouteInfo value) { - this.route = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRoute.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRoute.java deleted file mode 100644 index 403a10e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RoutePlannerRoute.java +++ /dev/null @@ -1,174 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RoutePlannerRoute complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RoutePlannerRoute">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="start" type="{http://www.webservices.nl/soap/}RouteLocation"/>
- *         <element name="destination" type="{http://www.webservices.nl/soap/}RouteLocation"/>
- *         <element name="summary" type="{http://www.webservices.nl/soap/}RouteSummary"/>
- *         <element name="description" type="{http://www.webservices.nl/soap/}RoutePartArray"/>
- *         <element name="map" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RoutePlannerRoute", propOrder = { - -}) -public class RoutePlannerRoute { - - @XmlElement(required = true) - protected RouteLocation start; - @XmlElement(required = true) - protected RouteLocation destination; - @XmlElement(required = true) - protected RouteSummary summary; - @XmlElement(required = true) - protected RoutePartArray description; - protected byte[] map; - - /** - * Gets the value of the start property. - * - * @return - * possible object is - * {@link RouteLocation } - * - */ - public RouteLocation getStart() { - return start; - } - - /** - * Sets the value of the start property. - * - * @param value - * allowed object is - * {@link RouteLocation } - * - */ - public void setStart(RouteLocation value) { - this.start = value; - } - - /** - * Gets the value of the destination property. - * - * @return - * possible object is - * {@link RouteLocation } - * - */ - public RouteLocation getDestination() { - return destination; - } - - /** - * Sets the value of the destination property. - * - * @param value - * allowed object is - * {@link RouteLocation } - * - */ - public void setDestination(RouteLocation value) { - this.destination = value; - } - - /** - * Gets the value of the summary property. - * - * @return - * possible object is - * {@link RouteSummary } - * - */ - public RouteSummary getSummary() { - return summary; - } - - /** - * Sets the value of the summary property. - * - * @param value - * allowed object is - * {@link RouteSummary } - * - */ - public void setSummary(RouteSummary value) { - this.summary = value; - } - - /** - * Gets the value of the description property. - * - * @return - * possible object is - * {@link RoutePartArray } - * - */ - public RoutePartArray getDescription() { - return description; - } - - /** - * Sets the value of the description property. - * - * @param value - * allowed object is - * {@link RoutePartArray } - * - */ - public void setDescription(RoutePartArray value) { - this.description = value; - } - - /** - * Gets the value of the map property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getMap() { - return map; - } - - /** - * Sets the value of the map property. - * - * @param value - * allowed object is - * byte[] - */ - public void setMap(byte[] value) { - this.map = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteSummary.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteSummary.java deleted file mode 100644 index 5b15715..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/RouteSummary.java +++ /dev/null @@ -1,105 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RouteSummary complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RouteSummary">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="time" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RouteSummary", propOrder = { - -}) -public class RouteSummary { - - protected int time; - protected int distance; - @XmlElement(required = true) - protected String type; - - /** - * Gets the value of the time property. - * - */ - public int getTime() { - return time; - } - - /** - * Sets the value of the time property. - * - */ - public void setTime(int value) { - this.time = value; - } - - /** - * Gets the value of the distance property. - * - */ - public int getDistance() { - return distance; - } - - /** - * Sets the value of the distance property. - * - */ - public void setDistance(int value) { - this.distance = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SearchParts.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SearchParts.java deleted file mode 100644 index 0421410..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SearchParts.java +++ /dev/null @@ -1,276 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SearchParts complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SearchParts">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="huisnr" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="toevoeging" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="wijkcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="lettercombinatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="straat" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="plaats" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="gemeente" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="provincie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="reeksindicatie" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SearchParts", propOrder = { - -}) -public class SearchParts { - - protected int huisnr; - @XmlElement(required = true) - protected String toevoeging; - @XmlElement(required = true) - protected String wijkcode; - @XmlElement(required = true) - protected String lettercombinatie; - @XmlElement(required = true) - protected String straat; - @XmlElement(required = true) - protected String plaats; - @XmlElement(required = true) - protected String gemeente; - @XmlElement(required = true) - protected String provincie; - @XmlElement(required = true) - protected String reeksindicatie; - - /** - * Gets the value of the huisnr property. - * - */ - public int getHuisnr() { - return huisnr; - } - - /** - * Sets the value of the huisnr property. - * - */ - public void setHuisnr(int value) { - this.huisnr = value; - } - - /** - * Gets the value of the toevoeging property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getToevoeging() { - return toevoeging; - } - - /** - * Sets the value of the toevoeging property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setToevoeging(String value) { - this.toevoeging = value; - } - - /** - * Gets the value of the wijkcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWijkcode() { - return wijkcode; - } - - /** - * Sets the value of the wijkcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWijkcode(String value) { - this.wijkcode = value; - } - - /** - * Gets the value of the lettercombinatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLettercombinatie() { - return lettercombinatie; - } - - /** - * Sets the value of the lettercombinatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLettercombinatie(String value) { - this.lettercombinatie = value; - } - - /** - * Gets the value of the straat property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStraat() { - return straat; - } - - /** - * Sets the value of the straat property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStraat(String value) { - this.straat = value; - } - - /** - * Gets the value of the plaats property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPlaats() { - return plaats; - } - - /** - * Sets the value of the plaats property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPlaats(String value) { - this.plaats = value; - } - - /** - * Gets the value of the gemeente property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGemeente() { - return gemeente; - } - - /** - * Sets the value of the gemeente property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGemeente(String value) { - this.gemeente = value; - } - - /** - * Gets the value of the provincie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProvincie() { - return provincie; - } - - /** - * Sets the value of the provincie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProvincie(String value) { - this.provincie = value; - } - - /** - * Gets the value of the reeksindicatie property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReeksindicatie() { - return reeksindicatie; - } - - /** - * Sets the value of the reeksindicatie property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReeksindicatie(String value) { - this.reeksindicatie = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankAccountData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankAccountData.java deleted file mode 100644 index 85af9e6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankAccountData.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SepaBankAccountData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SepaBankAccountData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bban" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="bic" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SepaBankAccountData", propOrder = { - -}) -public class SepaBankAccountData { - - @XmlElement(required = true) - protected String bban; - @XmlElement(required = true) - protected String iban; - @XmlElement(required = true) - protected String bic; - - /** - * Gets the value of the bban property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBban() { - return bban; - } - - /** - * Sets the value of the bban property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBban(String value) { - this.bban = value; - } - - /** - * Gets the value of the iban property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIban() { - return iban; - } - - /** - * Sets the value of the iban property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIban(String value) { - this.iban = value; - } - - /** - * Gets the value of the bic property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBic() { - return bic; - } - - /** - * Sets the value of the bic property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBic(String value) { - this.bic = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankAccountIbanData.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankAccountIbanData.java deleted file mode 100644 index e3cbe35..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankAccountIbanData.java +++ /dev/null @@ -1,142 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SepaBankAccountIbanData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SepaBankAccountIbanData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="iban_details" type="{http://www.webservices.nl/soap/}SepaIbanDetails"/>
- *         <element name="bank_details" type="{http://www.webservices.nl/soap/}SepaBankDetails" minOccurs="0"/>
- *         <element name="is_sepa_member" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SepaBankAccountIbanData", propOrder = { - -}) -public class SepaBankAccountIbanData { - - @XmlElement(required = true) - protected String iban; - @XmlElement(name = "iban_details", required = true) - protected SepaIbanDetails ibanDetails; - @XmlElement(name = "bank_details") - protected SepaBankDetails bankDetails; - @XmlElement(name = "is_sepa_member") - protected boolean isSepaMember; - - /** - * Gets the value of the iban property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIban() { - return iban; - } - - /** - * Sets the value of the iban property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIban(String value) { - this.iban = value; - } - - /** - * Gets the value of the ibanDetails property. - * - * @return - * possible object is - * {@link SepaIbanDetails } - * - */ - public SepaIbanDetails getIbanDetails() { - return ibanDetails; - } - - /** - * Sets the value of the ibanDetails property. - * - * @param value - * allowed object is - * {@link SepaIbanDetails } - * - */ - public void setIbanDetails(SepaIbanDetails value) { - this.ibanDetails = value; - } - - /** - * Gets the value of the bankDetails property. - * - * @return - * possible object is - * {@link SepaBankDetails } - * - */ - public SepaBankDetails getBankDetails() { - return bankDetails; - } - - /** - * Sets the value of the bankDetails property. - * - * @param value - * allowed object is - * {@link SepaBankDetails } - * - */ - public void setBankDetails(SepaBankDetails value) { - this.bankDetails = value; - } - - /** - * Gets the value of the isSepaMember property. - * - */ - public boolean isIsSepaMember() { - return isSepaMember; - } - - /** - * Sets the value of the isSepaMember property. - * - */ - public void setIsSepaMember(boolean value) { - this.isSepaMember = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankDetails.java deleted file mode 100644 index adbcdb4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaBankDetails.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SepaBankDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SepaBankDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bank_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="bank_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="bic" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SepaBankDetails", propOrder = { - -}) -public class SepaBankDetails { - - @XmlElement(name = "bank_code", required = true) - protected String bankCode; - @XmlElement(name = "bank_name", required = true) - protected String bankName; - @XmlElement(required = true) - protected String bic; - - /** - * Gets the value of the bankCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBankCode() { - return bankCode; - } - - /** - * Sets the value of the bankCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBankCode(String value) { - this.bankCode = value; - } - - /** - * Gets the value of the bankName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBankName() { - return bankName; - } - - /** - * Sets the value of the bankName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBankName(String value) { - this.bankName = value; - } - - /** - * Gets the value of the bic property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBic() { - return bic; - } - - /** - * Sets the value of the bic property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBic(String value) { - this.bic = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBankAccountNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBankAccountNumberRequestType.java deleted file mode 100644 index 3a877d3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBankAccountNumberRequestType.java +++ /dev/null @@ -1,123 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for sepaConvertBankAccountNumberRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="sepaConvertBankAccountNumberRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="account_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="nbi" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "sepaConvertBankAccountNumberRequestType", propOrder = { - -}) -public class SepaConvertBankAccountNumberRequestType { - - @XmlElement(name = "account_number", required = true) - protected String accountNumber; - @XmlElement(required = true) - protected String nbi; - @XmlElement(name = "country_code", required = true) - protected String countryCode; - - /** - * Gets the value of the accountNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAccountNumber() { - return accountNumber; - } - - /** - * Sets the value of the accountNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAccountNumber(String value) { - this.accountNumber = value; - } - - /** - * Gets the value of the nbi property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNbi() { - return nbi; - } - - /** - * Sets the value of the nbi property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNbi(String value) { - this.nbi = value; - } - - /** - * Gets the value of the countryCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryCode() { - return countryCode; - } - - /** - * Sets the value of the countryCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryCode(String value) { - this.countryCode = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBankAccountNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBankAccountNumberResponseType.java deleted file mode 100644 index 3522987..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBankAccountNumberResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for sepaConvertBankAccountNumberResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="sepaConvertBankAccountNumberResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="response" type="{http://www.webservices.nl/soap/}SepaBankAccountIbanData"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "sepaConvertBankAccountNumberResponseType", propOrder = { - -}) -public class SepaConvertBankAccountNumberResponseType { - - @XmlElement(required = true) - protected SepaBankAccountIbanData response; - - /** - * Gets the value of the response property. - * - * @return - * possible object is - * {@link SepaBankAccountIbanData } - * - */ - public SepaBankAccountIbanData getResponse() { - return response; - } - - /** - * Sets the value of the response property. - * - * @param value - * allowed object is - * {@link SepaBankAccountIbanData } - * - */ - public void setResponse(SepaBankAccountIbanData value) { - this.response = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBasicBankAccountNumberRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBasicBankAccountNumberRequestType.java deleted file mode 100644 index 91fd3dd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBasicBankAccountNumberRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for sepaConvertBasicBankAccountNumberRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="sepaConvertBasicBankAccountNumberRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bban" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country_iso" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "sepaConvertBasicBankAccountNumberRequestType", propOrder = { - -}) -public class SepaConvertBasicBankAccountNumberRequestType { - - @XmlElement(required = true) - protected String bban; - @XmlElement(name = "country_iso", required = true) - protected String countryIso; - - /** - * Gets the value of the bban property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBban() { - return bban; - } - - /** - * Sets the value of the bban property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBban(String value) { - this.bban = value; - } - - /** - * Gets the value of the countryIso property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryIso() { - return countryIso; - } - - /** - * Sets the value of the countryIso property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryIso(String value) { - this.countryIso = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBasicBankAccountNumberResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBasicBankAccountNumberResponseType.java deleted file mode 100644 index 4d4ec89..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaConvertBasicBankAccountNumberResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for sepaConvertBasicBankAccountNumberResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="sepaConvertBasicBankAccountNumberResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="bankaccount" type="{http://www.webservices.nl/soap/}SepaBankAccountData"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "sepaConvertBasicBankAccountNumberResponseType", propOrder = { - -}) -public class SepaConvertBasicBankAccountNumberResponseType { - - @XmlElement(required = true) - protected SepaBankAccountData bankaccount; - - /** - * Gets the value of the bankaccount property. - * - * @return - * possible object is - * {@link SepaBankAccountData } - * - */ - public SepaBankAccountData getBankaccount() { - return bankaccount; - } - - /** - * Sets the value of the bankaccount property. - * - * @param value - * allowed object is - * {@link SepaBankAccountData } - * - */ - public void setBankaccount(SepaBankAccountData value) { - this.bankaccount = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetails.java deleted file mode 100644 index 6c6e512..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetails.java +++ /dev/null @@ -1,150 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SepaIbanDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SepaIbanDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="check_digits" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="bban" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="bban_details" type="{http://www.webservices.nl/soap/}BbanDetails"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SepaIbanDetails", propOrder = { - -}) -public class SepaIbanDetails { - - @XmlElement(name = "check_digits", required = true) - protected String checkDigits; - @XmlElement(name = "country_code", required = true) - protected String countryCode; - @XmlElement(required = true) - protected String bban; - @XmlElement(name = "bban_details", required = true) - protected BbanDetails bbanDetails; - - /** - * Gets the value of the checkDigits property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCheckDigits() { - return checkDigits; - } - - /** - * Sets the value of the checkDigits property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCheckDigits(String value) { - this.checkDigits = value; - } - - /** - * Gets the value of the countryCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryCode() { - return countryCode; - } - - /** - * Sets the value of the countryCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryCode(String value) { - this.countryCode = value; - } - - /** - * Gets the value of the bban property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBban() { - return bban; - } - - /** - * Sets the value of the bban property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBban(String value) { - this.bban = value; - } - - /** - * Gets the value of the bbanDetails property. - * - * @return - * possible object is - * {@link BbanDetails } - * - */ - public BbanDetails getBbanDetails() { - return bbanDetails; - } - - /** - * Sets the value of the bbanDetails property. - * - * @param value - * allowed object is - * {@link BbanDetails } - * - */ - public void setBbanDetails(BbanDetails value) { - this.bbanDetails = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetailsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetailsRequestType.java deleted file mode 100644 index 9fd916d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetailsRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for sepaIbanDetailsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="sepaIbanDetailsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "sepaIbanDetailsRequestType", propOrder = { - -}) -public class SepaIbanDetailsRequestType { - - @XmlElement(required = true) - protected String iban; - - /** - * Gets the value of the iban property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIban() { - return iban; - } - - /** - * Sets the value of the iban property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIban(String value) { - this.iban = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetailsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetailsResponseType.java deleted file mode 100644 index 67a2292..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaIbanDetailsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for sepaIbanDetailsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="sepaIbanDetailsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="iban_details" type="{http://www.webservices.nl/soap/}SepaBankAccountIbanData"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "sepaIbanDetailsResponseType", propOrder = { - -}) -public class SepaIbanDetailsResponseType { - - @XmlElement(name = "iban_details", required = true) - protected SepaBankAccountIbanData ibanDetails; - - /** - * Gets the value of the ibanDetails property. - * - * @return - * possible object is - * {@link SepaBankAccountIbanData } - * - */ - public SepaBankAccountIbanData getIbanDetails() { - return ibanDetails; - } - - /** - * Sets the value of the ibanDetails property. - * - * @param value - * allowed object is - * {@link SepaBankAccountIbanData } - * - */ - public void setIbanDetails(SepaBankAccountIbanData value) { - this.ibanDetails = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaInternationalBankAccountNumberFormatValidationReport.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaInternationalBankAccountNumberFormatValidationReport.java deleted file mode 100644 index 6cec6cf..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaInternationalBankAccountNumberFormatValidationReport.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SepaInternationalBankAccountNumberFormatValidationReport complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SepaInternationalBankAccountNumberFormatValidationReport">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="valid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SepaInternationalBankAccountNumberFormatValidationReport", propOrder = { - -}) -public class SepaInternationalBankAccountNumberFormatValidationReport { - - @XmlElement(required = true) - protected String iban; - protected boolean valid; - - /** - * Gets the value of the iban property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIban() { - return iban; - } - - /** - * Sets the value of the iban property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIban(String value) { - this.iban = value; - } - - /** - * Gets the value of the valid property. - * - */ - public boolean isValid() { - return valid; - } - - /** - * Sets the value of the valid property. - * - */ - public void setValid(boolean value) { - this.valid = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderRequestType.java deleted file mode 100644 index 8a333e8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderRequestType.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for sepaMatchAccountHolderRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="sepaMatchAccountHolderRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "sepaMatchAccountHolderRequestType", propOrder = { - -}) -public class SepaMatchAccountHolderRequestType { - - @XmlElement(required = true) - protected String iban; - @XmlElement(required = true) - protected String name; - - /** - * Gets the value of the iban property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIban() { - return iban; - } - - /** - * Sets the value of the iban property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIban(String value) { - this.iban = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderResponseType.java deleted file mode 100644 index 84d4bc4..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for sepaMatchAccountHolderResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="sepaMatchAccountHolderResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="match_account_holder" type="{http://www.webservices.nl/soap/}SepaMatchAccountHolderResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "sepaMatchAccountHolderResponseType", propOrder = { - -}) -public class SepaMatchAccountHolderResponseType { - - @XmlElement(name = "match_account_holder", required = true) - protected SepaMatchAccountHolderResult matchAccountHolder; - - /** - * Gets the value of the matchAccountHolder property. - * - * @return - * possible object is - * {@link SepaMatchAccountHolderResult } - * - */ - public SepaMatchAccountHolderResult getMatchAccountHolder() { - return matchAccountHolder; - } - - /** - * Sets the value of the matchAccountHolder property. - * - * @param value - * allowed object is - * {@link SepaMatchAccountHolderResult } - * - */ - public void setMatchAccountHolder(SepaMatchAccountHolderResult value) { - this.matchAccountHolder = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderResult.java deleted file mode 100644 index 9282d18..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchAccountHolderResult.java +++ /dev/null @@ -1,169 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SepaMatchAccountHolderResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SepaMatchAccountHolderResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="iban_found" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="bank_account_details" type="{http://www.webservices.nl/soap/}SepaMatchBankAccountDetails" minOccurs="0"/>
- *         <element name="bank_account_holder" type="{http://www.webservices.nl/soap/}SepaMatchBankAccountHolder" minOccurs="0"/>
- *         <element name="name_matching_result" type="{http://www.webservices.nl/soap/}SepaMatchNameMatchingResult" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SepaMatchAccountHolderResult", propOrder = { - -}) -public class SepaMatchAccountHolderResult { - - @XmlElement(required = true) - protected String iban; - @XmlElement(name = "iban_found") - protected boolean ibanFound; - @XmlElement(name = "bank_account_details") - protected SepaMatchBankAccountDetails bankAccountDetails; - @XmlElement(name = "bank_account_holder") - protected SepaMatchBankAccountHolder bankAccountHolder; - @XmlElement(name = "name_matching_result") - protected SepaMatchNameMatchingResult nameMatchingResult; - - /** - * Gets the value of the iban property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIban() { - return iban; - } - - /** - * Sets the value of the iban property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIban(String value) { - this.iban = value; - } - - /** - * Gets the value of the ibanFound property. - * - */ - public boolean isIbanFound() { - return ibanFound; - } - - /** - * Sets the value of the ibanFound property. - * - */ - public void setIbanFound(boolean value) { - this.ibanFound = value; - } - - /** - * Gets the value of the bankAccountDetails property. - * - * @return - * possible object is - * {@link SepaMatchBankAccountDetails } - * - */ - public SepaMatchBankAccountDetails getBankAccountDetails() { - return bankAccountDetails; - } - - /** - * Sets the value of the bankAccountDetails property. - * - * @param value - * allowed object is - * {@link SepaMatchBankAccountDetails } - * - */ - public void setBankAccountDetails(SepaMatchBankAccountDetails value) { - this.bankAccountDetails = value; - } - - /** - * Gets the value of the bankAccountHolder property. - * - * @return - * possible object is - * {@link SepaMatchBankAccountHolder } - * - */ - public SepaMatchBankAccountHolder getBankAccountHolder() { - return bankAccountHolder; - } - - /** - * Sets the value of the bankAccountHolder property. - * - * @param value - * allowed object is - * {@link SepaMatchBankAccountHolder } - * - */ - public void setBankAccountHolder(SepaMatchBankAccountHolder value) { - this.bankAccountHolder = value; - } - - /** - * Gets the value of the nameMatchingResult property. - * - * @return - * possible object is - * {@link SepaMatchNameMatchingResult } - * - */ - public SepaMatchNameMatchingResult getNameMatchingResult() { - return nameMatchingResult; - } - - /** - * Sets the value of the nameMatchingResult property. - * - * @param value - * allowed object is - * {@link SepaMatchNameMatchingResult } - * - */ - public void setNameMatchingResult(SepaMatchNameMatchingResult value) { - this.nameMatchingResult = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchBankAccountDetails.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchBankAccountDetails.java deleted file mode 100644 index 70dce80..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchBankAccountDetails.java +++ /dev/null @@ -1,121 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SepaMatchBankAccountDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SepaMatchBankAccountDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="foreign" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SepaMatchBankAccountDetails", propOrder = { - -}) -public class SepaMatchBankAccountDetails { - - protected Boolean foreign; - @XmlElement(name = "country_code") - protected String countryCode; - protected String status; - - /** - * Gets the value of the foreign property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isForeign() { - return foreign; - } - - /** - * Sets the value of the foreign property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setForeign(Boolean value) { - this.foreign = value; - } - - /** - * Gets the value of the countryCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryCode() { - return countryCode; - } - - /** - * Sets the value of the countryCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryCode(String value) { - this.countryCode = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStatus(String value) { - this.status = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchBankAccountHolder.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchBankAccountHolder.java deleted file mode 100644 index 2c89803..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchBankAccountHolder.java +++ /dev/null @@ -1,149 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SepaMatchBankAccountHolder complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SepaMatchBankAccountHolder">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="number_of_account_holders" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="joint_account" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="municipality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SepaMatchBankAccountHolder", propOrder = { - -}) -public class SepaMatchBankAccountHolder { - - @XmlElement(required = true) - protected String type; - @XmlElement(name = "number_of_account_holders") - protected Integer numberOfAccountHolders; - @XmlElement(name = "joint_account") - protected Boolean jointAccount; - protected String municipality; - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the numberOfAccountHolders property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getNumberOfAccountHolders() { - return numberOfAccountHolders; - } - - /** - * Sets the value of the numberOfAccountHolders property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setNumberOfAccountHolders(Integer value) { - this.numberOfAccountHolders = value; - } - - /** - * Gets the value of the jointAccount property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isJointAccount() { - return jointAccount; - } - - /** - * Sets the value of the jointAccount property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setJointAccount(Boolean value) { - this.jointAccount = value; - } - - /** - * Gets the value of the municipality property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMunicipality() { - return municipality; - } - - /** - * Sets the value of the municipality property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMunicipality(String value) { - this.municipality = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchNameMatchingResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchNameMatchingResult.java deleted file mode 100644 index aec911e..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaMatchNameMatchingResult.java +++ /dev/null @@ -1,95 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SepaMatchNameMatchingResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SepaMatchNameMatchingResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="name_suggestion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SepaMatchNameMatchingResult", propOrder = { - -}) -public class SepaMatchNameMatchingResult { - - protected String type; - @XmlElement(name = "name_suggestion") - protected String nameSuggestion; - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the nameSuggestion property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNameSuggestion() { - return nameSuggestion; - } - - /** - * Sets the value of the nameSuggestion property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNameSuggestion(String value) { - this.nameSuggestion = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaValidateInternationalBankAccountNumberFormatRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaValidateInternationalBankAccountNumberFormatRequestType.java deleted file mode 100644 index b240126..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaValidateInternationalBankAccountNumberFormatRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for sepaValidateInternationalBankAccountNumberFormatRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="sepaValidateInternationalBankAccountNumberFormatRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="iban" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "sepaValidateInternationalBankAccountNumberFormatRequestType", propOrder = { - -}) -public class SepaValidateInternationalBankAccountNumberFormatRequestType { - - @XmlElement(required = true) - protected String iban; - - /** - * Gets the value of the iban property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIban() { - return iban; - } - - /** - * Sets the value of the iban property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIban(String value) { - this.iban = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaValidateInternationalBankAccountNumberFormatResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaValidateInternationalBankAccountNumberFormatResponseType.java deleted file mode 100644 index fd1ac21..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SepaValidateInternationalBankAccountNumberFormatResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for sepaValidateInternationalBankAccountNumberFormatResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="sepaValidateInternationalBankAccountNumberFormatResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="validation_report" type="{http://www.webservices.nl/soap/}SepaInternationalBankAccountNumberFormatValidationReport"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "sepaValidateInternationalBankAccountNumberFormatResponseType", propOrder = { - -}) -public class SepaValidateInternationalBankAccountNumberFormatResponseType { - - @XmlElement(name = "validation_report", required = true) - protected SepaInternationalBankAccountNumberFormatValidationReport validationReport; - - /** - * Gets the value of the validationReport property. - * - * @return - * possible object is - * {@link SepaInternationalBankAccountNumberFormatValidationReport } - * - */ - public SepaInternationalBankAccountNumberFormatValidationReport getValidationReport() { - return validationReport; - } - - /** - * Sets the value of the validationReport property. - * - * @param value - * allowed object is - * {@link SepaInternationalBankAccountNumberFormatValidationReport } - * - */ - public void setValidationReport(SepaInternationalBankAccountNumberFormatValidationReport value) { - this.validationReport = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Session.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Session.java deleted file mode 100644 index 240f9da..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Session.java +++ /dev/null @@ -1,214 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Session complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Session">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="reactid" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="user_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="user_nickname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="creationtime" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="lastvisit" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="hits" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="ip" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Session", propOrder = { - -}) -public class Session { - - @XmlElement(required = true) - protected String reactid; - @XmlElement(name = "user_id") - protected int userId; - @XmlElement(name = "user_nickname", required = true) - protected String userNickname; - @XmlElement(required = true) - protected String creationtime; - @XmlElement(required = true) - protected String lastvisit; - protected int hits; - @XmlElement(required = true) - protected String ip; - - /** - * Gets the value of the reactid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReactid() { - return reactid; - } - - /** - * Sets the value of the reactid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReactid(String value) { - this.reactid = value; - } - - /** - * Gets the value of the userId property. - * - */ - public int getUserId() { - return userId; - } - - /** - * Sets the value of the userId property. - * - */ - public void setUserId(int value) { - this.userId = value; - } - - /** - * Gets the value of the userNickname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUserNickname() { - return userNickname; - } - - /** - * Sets the value of the userNickname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUserNickname(String value) { - this.userNickname = value; - } - - /** - * Gets the value of the creationtime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreationtime() { - return creationtime; - } - - /** - * Sets the value of the creationtime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreationtime(String value) { - this.creationtime = value; - } - - /** - * Gets the value of the lastvisit property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastvisit() { - return lastvisit; - } - - /** - * Sets the value of the lastvisit property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastvisit(String value) { - this.lastvisit = value; - } - - /** - * Gets the value of the hits property. - * - */ - public int getHits() { - return hits; - } - - /** - * Sets the value of the hits property. - * - */ - public void setHits(int value) { - this.hits = value; - } - - /** - * Gets the value of the ip property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIp() { - return ip; - } - - /** - * Sets the value of the ip property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIp(String value) { - this.ip = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SessionArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SessionArray.java deleted file mode 100644 index e9ba1b1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SessionArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SessionArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SessionArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}Session" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SessionArray", propOrder = { - "item" -}) -public class SessionArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Session } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SessionPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SessionPagedResult.java deleted file mode 100644 index 5020fa1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SessionPagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SessionPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SessionPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}SessionArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SessionPagedResult", propOrder = { - -}) -public class SessionPagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected SessionArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link SessionArray } - * - */ - public SessionArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link SessionArray } - * - */ - public void setResults(SessionArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcode.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcode.java deleted file mode 100644 index 8c7c409..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcode.java +++ /dev/null @@ -1,114 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SortedPostcode complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SortedPostcode">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="distance" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="precision" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SortedPostcode", propOrder = { - -}) -public class SortedPostcode { - - @XmlElement(required = true) - protected String postcode; - protected int distance; - @XmlElement(required = true) - protected String precision; - - /** - * Gets the value of the postcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPostcode() { - return postcode; - } - - /** - * Sets the value of the postcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPostcode(String value) { - this.postcode = value; - } - - /** - * Gets the value of the distance property. - * - */ - public int getDistance() { - return distance; - } - - /** - * Sets the value of the distance property. - * - */ - public void setDistance(int value) { - this.distance = value; - } - - /** - * Gets the value of the precision property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrecision() { - return precision; - } - - /** - * Sets the value of the precision property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrecision(String value) { - this.precision = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcodeArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcodeArray.java deleted file mode 100644 index a493482..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcodeArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SortedPostcodeArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SortedPostcodeArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}SortedPostcode" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SortedPostcodeArray", propOrder = { - "item" -}) -public class SortedPostcodeArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SortedPostcode } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcodePagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcodePagedResult.java deleted file mode 100644 index eeec259..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/SortedPostcodePagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SortedPostcodePagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SortedPostcodePagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}SortedPostcodeArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SortedPostcodePagedResult", propOrder = { - -}) -public class SortedPostcodePagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected SortedPostcodeArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link SortedPostcodeArray } - * - */ - public SortedPostcodeArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link SortedPostcodeArray } - * - */ - public void setResults(SortedPostcodeArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StringArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StringArray.java deleted file mode 100644 index f37ea99..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StringArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for stringArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="stringArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "stringArray", propOrder = { - "item" -}) -public class StringArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Stuk.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Stuk.java deleted file mode 100644 index a746428..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/Stuk.java +++ /dev/null @@ -1,206 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for Stuk complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Stuk">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="aanduiding_soort_register" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="deel" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="nummer" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="reeks" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="datum_aanbieding" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Stuk", propOrder = { - -}) -public class Stuk { - - @XmlElement(required = true) - protected String id; - @XmlElement(name = "aanduiding_soort_register", required = true) - protected String aanduidingSoortRegister; - @XmlElement(required = true) - protected String deel; - @XmlElement(required = true) - protected String nummer; - protected String reeks; - @XmlElement(name = "datum_aanbieding") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar datumAanbieding; - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the aanduidingSoortRegister property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAanduidingSoortRegister() { - return aanduidingSoortRegister; - } - - /** - * Sets the value of the aanduidingSoortRegister property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAanduidingSoortRegister(String value) { - this.aanduidingSoortRegister = value; - } - - /** - * Gets the value of the deel property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeel() { - return deel; - } - - /** - * Sets the value of the deel property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeel(String value) { - this.deel = value; - } - - /** - * Gets the value of the nummer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNummer() { - return nummer; - } - - /** - * Sets the value of the nummer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNummer(String value) { - this.nummer = value; - } - - /** - * Gets the value of the reeks property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReeks() { - return reeks; - } - - /** - * Sets the value of the reeks property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReeks(String value) { - this.reeks = value; - } - - /** - * Gets the value of the datumAanbieding property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getDatumAanbieding() { - return datumAanbieding; - } - - /** - * Sets the value of the datumAanbieding property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setDatumAanbieding(XMLGregorianCalendar value) { - this.datumAanbieding = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukArray.java deleted file mode 100644 index 5a42dc2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for StukArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="StukArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}Stuk" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "StukArray", propOrder = { - "item" -}) -public class StukArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Stuk } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduiding.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduiding.java deleted file mode 100644 index b2f72a2..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduiding.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for StukMetKadastraleAanduiding complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="StukMetKadastraleAanduiding">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="kadastrale_aanduiding" type="{http://www.webservices.nl/soap/}KadastraleAanduiding" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "StukMetKadastraleAanduiding", propOrder = { - -}) -public class StukMetKadastraleAanduiding { - - @XmlElement(required = true) - protected String id; - @XmlElement(name = "kadastrale_aanduiding") - protected KadastraleAanduiding kadastraleAanduiding; - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setId(String value) { - this.id = value; - } - - /** - * Gets the value of the kadastraleAanduiding property. - * - * @return - * possible object is - * {@link KadastraleAanduiding } - * - */ - public KadastraleAanduiding getKadastraleAanduiding() { - return kadastraleAanduiding; - } - - /** - * Sets the value of the kadastraleAanduiding property. - * - * @param value - * allowed object is - * {@link KadastraleAanduiding } - * - */ - public void setKadastraleAanduiding(KadastraleAanduiding value) { - this.kadastraleAanduiding = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduidingArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduidingArray.java deleted file mode 100644 index 2124914..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduidingArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for StukMetKadastraleAanduidingArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="StukMetKadastraleAanduidingArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}StukMetKadastraleAanduiding" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "StukMetKadastraleAanduidingArray", propOrder = { - "item" -}) -public class StukMetKadastraleAanduidingArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link StukMetKadastraleAanduiding } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduidingLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduidingLijst.java deleted file mode 100644 index aa887ba..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukMetKadastraleAanduidingLijst.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for StukMetKadastraleAanduidingLijst complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="StukMetKadastraleAanduidingLijst">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="stukken" type="{http://www.webservices.nl/soap/}StukMetKadastraleAanduidingArray"/>
- *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "StukMetKadastraleAanduidingLijst", propOrder = { - -}) -public class StukMetKadastraleAanduidingLijst { - - @XmlElement(required = true) - protected StukMetKadastraleAanduidingArray stukken; - @XmlElement(name = "indicatie_compleet") - protected boolean indicatieCompleet; - - /** - * Gets the value of the stukken property. - * - * @return - * possible object is - * {@link StukMetKadastraleAanduidingArray } - * - */ - public StukMetKadastraleAanduidingArray getStukken() { - return stukken; - } - - /** - * Sets the value of the stukken property. - * - * @param value - * allowed object is - * {@link StukMetKadastraleAanduidingArray } - * - */ - public void setStukken(StukMetKadastraleAanduidingArray value) { - this.stukken = value; - } - - /** - * Gets the value of the indicatieCompleet property. - * - */ - public boolean isIndicatieCompleet() { - return indicatieCompleet; - } - - /** - * Sets the value of the indicatieCompleet property. - * - */ - public void setIndicatieCompleet(boolean value) { - this.indicatieCompleet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukReferentiesLijst.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukReferentiesLijst.java deleted file mode 100644 index c245275..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/StukReferentiesLijst.java +++ /dev/null @@ -1,88 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for StukReferentiesLijst complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="StukReferentiesLijst">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="stukken" type="{http://www.webservices.nl/soap/}stringArray"/>
- *         <element name="indicatie_compleet" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "StukReferentiesLijst", propOrder = { - -}) -public class StukReferentiesLijst { - - @XmlElement(required = true) - protected StringArray stukken; - @XmlElement(name = "indicatie_compleet") - protected boolean indicatieCompleet; - - /** - * Gets the value of the stukken property. - * - * @return - * possible object is - * {@link StringArray } - * - */ - public StringArray getStukken() { - return stukken; - } - - /** - * Sets the value of the stukken property. - * - * @param value - * allowed object is - * {@link StringArray } - * - */ - public void setStukken(StringArray value) { - this.stukken = value; - } - - /** - * Gets the value of the indicatieCompleet property. - * - */ - public boolean isIndicatieCompleet() { - return indicatieCompleet; - } - - /** - * Sets the value of the indicatieCompleet property. - * - */ - public void setIndicatieCompleet(boolean value) { - this.indicatieCompleet = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UittrekselKadastraleKaart.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UittrekselKadastraleKaart.java deleted file mode 100644 index 660bd3f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UittrekselKadastraleKaart.java +++ /dev/null @@ -1,120 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for UittrekselKadastraleKaart complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UittrekselKadastraleKaart">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="kaart" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
- *         <element name="kadastrale_aanduidingen" type="{http://www.webservices.nl/soap/}KadastraleAanduidingArray"/>
- *         <element name="afbeeldingen" type="{http://www.webservices.nl/soap/}base64BinaryArray" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UittrekselKadastraleKaart", propOrder = { - -}) -public class UittrekselKadastraleKaart { - - @XmlElement(required = true) - protected byte[] kaart; - @XmlElement(name = "kadastrale_aanduidingen", required = true) - protected KadastraleAanduidingArray kadastraleAanduidingen; - protected Base64BinaryArray afbeeldingen; - - /** - * Gets the value of the kaart property. - * - * @return - * possible object is - * byte[] - */ - public byte[] getKaart() { - return kaart; - } - - /** - * Sets the value of the kaart property. - * - * @param value - * allowed object is - * byte[] - */ - public void setKaart(byte[] value) { - this.kaart = value; - } - - /** - * Gets the value of the kadastraleAanduidingen property. - * - * @return - * possible object is - * {@link KadastraleAanduidingArray } - * - */ - public KadastraleAanduidingArray getKadastraleAanduidingen() { - return kadastraleAanduidingen; - } - - /** - * Sets the value of the kadastraleAanduidingen property. - * - * @param value - * allowed object is - * {@link KadastraleAanduidingArray } - * - */ - public void setKadastraleAanduidingen(KadastraleAanduidingArray value) { - this.kadastraleAanduidingen = value; - } - - /** - * Gets the value of the afbeeldingen property. - * - * @return - * possible object is - * {@link Base64BinaryArray } - * - */ - public Base64BinaryArray getAfbeeldingen() { - return afbeeldingen; - } - - /** - * Sets the value of the afbeeldingen property. - * - * @param value - * allowed object is - * {@link Base64BinaryArray } - * - */ - public void setAfbeeldingen(Base64BinaryArray value) { - this.afbeeldingen = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/User.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/User.java deleted file mode 100644 index 45ba9fd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/User.java +++ /dev/null @@ -1,538 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for User complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="User">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="nickname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="companyname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contactemail" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="credits" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="clientcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="comments" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="creationtime" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="lastmodified" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="account_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="account_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="usergroups" type="{http://www.webservices.nl/soap/}UserGroupArray"/>
- *         <element name="creditthreshold" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="notificationrecipients" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "User", propOrder = { - -}) -public class User { - - protected int id; - @XmlElement(required = true) - protected String nickname; - @XmlElement(required = true) - protected String email; - @XmlElement(required = true) - protected String companyname; - @XmlElement(required = true) - protected String address; - @XmlElement(required = true) - protected String contactname; - @XmlElement(required = true) - protected String contactemail; - @XmlElement(required = true) - protected String telephone; - @XmlElement(required = true) - protected String fax; - protected int credits; - @XmlElement(required = true) - protected String clientcode; - @XmlElement(required = true) - protected String comments; - @XmlElement(required = true) - protected String creationtime; - @XmlElement(required = true) - protected String lastmodified; - protected boolean active; - @XmlElement(name = "account_id") - protected int accountId; - @XmlElement(name = "account_name", required = true) - protected String accountName; - @XmlElement(required = true) - protected UserGroupArray usergroups; - protected int creditthreshold; - @XmlElement(required = true) - protected String notificationrecipients; - - /** - * Gets the value of the id property. - * - */ - public int getId() { - return id; - } - - /** - * Sets the value of the id property. - * - */ - public void setId(int value) { - this.id = value; - } - - /** - * Gets the value of the nickname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNickname() { - return nickname; - } - - /** - * Sets the value of the nickname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNickname(String value) { - this.nickname = value; - } - - /** - * Gets the value of the email property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmail() { - return email; - } - - /** - * Sets the value of the email property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmail(String value) { - this.email = value; - } - - /** - * Gets the value of the companyname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyname() { - return companyname; - } - - /** - * Sets the value of the companyname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyname(String value) { - this.companyname = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the contactname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactname() { - return contactname; - } - - /** - * Sets the value of the contactname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactname(String value) { - this.contactname = value; - } - - /** - * Gets the value of the contactemail property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactemail() { - return contactemail; - } - - /** - * Sets the value of the contactemail property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactemail(String value) { - this.contactemail = value; - } - - /** - * Gets the value of the telephone property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephone() { - return telephone; - } - - /** - * Sets the value of the telephone property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephone(String value) { - this.telephone = value; - } - - /** - * Gets the value of the fax property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFax() { - return fax; - } - - /** - * Sets the value of the fax property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFax(String value) { - this.fax = value; - } - - /** - * Gets the value of the credits property. - * - */ - public int getCredits() { - return credits; - } - - /** - * Sets the value of the credits property. - * - */ - public void setCredits(int value) { - this.credits = value; - } - - /** - * Gets the value of the clientcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClientcode() { - return clientcode; - } - - /** - * Sets the value of the clientcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClientcode(String value) { - this.clientcode = value; - } - - /** - * Gets the value of the comments property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getComments() { - return comments; - } - - /** - * Sets the value of the comments property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setComments(String value) { - this.comments = value; - } - - /** - * Gets the value of the creationtime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreationtime() { - return creationtime; - } - - /** - * Sets the value of the creationtime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreationtime(String value) { - this.creationtime = value; - } - - /** - * Gets the value of the lastmodified property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastmodified() { - return lastmodified; - } - - /** - * Sets the value of the lastmodified property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastmodified(String value) { - this.lastmodified = value; - } - - /** - * Gets the value of the active property. - * - */ - public boolean isActive() { - return active; - } - - /** - * Sets the value of the active property. - * - */ - public void setActive(boolean value) { - this.active = value; - } - - /** - * Gets the value of the accountId property. - * - */ - public int getAccountId() { - return accountId; - } - - /** - * Sets the value of the accountId property. - * - */ - public void setAccountId(int value) { - this.accountId = value; - } - - /** - * Gets the value of the accountName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAccountName() { - return accountName; - } - - /** - * Sets the value of the accountName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAccountName(String value) { - this.accountName = value; - } - - /** - * Gets the value of the usergroups property. - * - * @return - * possible object is - * {@link UserGroupArray } - * - */ - public UserGroupArray getUsergroups() { - return usergroups; - } - - /** - * Sets the value of the usergroups property. - * - * @param value - * allowed object is - * {@link UserGroupArray } - * - */ - public void setUsergroups(UserGroupArray value) { - this.usergroups = value; - } - - /** - * Gets the value of the creditthreshold property. - * - */ - public int getCreditthreshold() { - return creditthreshold; - } - - /** - * Sets the value of the creditthreshold property. - * - */ - public void setCreditthreshold(int value) { - this.creditthreshold = value; - } - - /** - * Gets the value of the notificationrecipients property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNotificationrecipients() { - return notificationrecipients; - } - - /** - * Sets the value of the notificationrecipients property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNotificationrecipients(String value) { - this.notificationrecipients = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserAddGroupRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserAddGroupRequestType.java deleted file mode 100644 index bb8fd3c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserAddGroupRequestType.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userAddGroupRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userAddGroupRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="usergroupid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userAddGroupRequestType", propOrder = { - -}) -public class UserAddGroupRequestType { - - protected int userid; - protected int usergroupid; - - /** - * Gets the value of the userid property. - * - */ - public int getUserid() { - return userid; - } - - /** - * Sets the value of the userid property. - * - */ - public void setUserid(int value) { - this.userid = value; - } - - /** - * Gets the value of the usergroupid property. - * - */ - public int getUsergroupid() { - return usergroupid; - } - - /** - * Sets the value of the usergroupid property. - * - */ - public void setUsergroupid(int value) { - this.usergroupid = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserAddGroupResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserAddGroupResponseType.java deleted file mode 100644 index cb1ad2c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserAddGroupResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userAddGroupResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userAddGroupResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userAddGroupResponseType") -public class UserAddGroupResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserChangePasswordRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserChangePasswordRequestType.java deleted file mode 100644 index 7e255fd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserChangePasswordRequestType.java +++ /dev/null @@ -1,114 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userChangePasswordRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userChangePasswordRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="old_password" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="new_password" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userChangePasswordRequestType", propOrder = { - -}) -public class UserChangePasswordRequestType { - - protected int userid; - @XmlElement(name = "old_password", required = true) - protected String oldPassword; - @XmlElement(name = "new_password", required = true) - protected String newPassword; - - /** - * Gets the value of the userid property. - * - */ - public int getUserid() { - return userid; - } - - /** - * Sets the value of the userid property. - * - */ - public void setUserid(int value) { - this.userid = value; - } - - /** - * Gets the value of the oldPassword property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOldPassword() { - return oldPassword; - } - - /** - * Sets the value of the oldPassword property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOldPassword(String value) { - this.oldPassword = value; - } - - /** - * Gets the value of the newPassword property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNewPassword() { - return newPassword; - } - - /** - * Sets the value of the newPassword property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNewPassword(String value) { - this.newPassword = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserChangePasswordResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserChangePasswordResponseType.java deleted file mode 100644 index 306c04d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserChangePasswordResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userChangePasswordResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userChangePasswordResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userChangePasswordResponseType") -public class UserChangePasswordResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCreateV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCreateV2RequestType.java deleted file mode 100644 index 1b73768..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCreateV2RequestType.java +++ /dev/null @@ -1,384 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userCreateV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userCreateV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="nickname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="usergroups" type="{http://www.webservices.nl/soap/}intArray"/>
- *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="companyname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contactemail" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="clientcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="comments" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userCreateV2RequestType", propOrder = { - -}) -public class UserCreateV2RequestType { - - protected int accountid; - @XmlElement(required = true) - protected String nickname; - @XmlElement(required = true) - protected String password; - @XmlElement(required = true) - protected IntArray usergroups; - @XmlElement(required = true) - protected String email; - @XmlElement(required = true) - protected String companyname; - @XmlElement(required = true) - protected String address; - @XmlElement(required = true) - protected String contactname; - @XmlElement(required = true) - protected String contactemail; - @XmlElement(required = true) - protected String telephone; - @XmlElement(required = true) - protected String fax; - @XmlElement(required = true) - protected String clientcode; - @XmlElement(required = true) - protected String comments; - - /** - * Gets the value of the accountid property. - * - */ - public int getAccountid() { - return accountid; - } - - /** - * Sets the value of the accountid property. - * - */ - public void setAccountid(int value) { - this.accountid = value; - } - - /** - * Gets the value of the nickname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNickname() { - return nickname; - } - - /** - * Sets the value of the nickname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNickname(String value) { - this.nickname = value; - } - - /** - * Gets the value of the password property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPassword() { - return password; - } - - /** - * Sets the value of the password property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPassword(String value) { - this.password = value; - } - - /** - * Gets the value of the usergroups property. - * - * @return - * possible object is - * {@link IntArray } - * - */ - public IntArray getUsergroups() { - return usergroups; - } - - /** - * Sets the value of the usergroups property. - * - * @param value - * allowed object is - * {@link IntArray } - * - */ - public void setUsergroups(IntArray value) { - this.usergroups = value; - } - - /** - * Gets the value of the email property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmail() { - return email; - } - - /** - * Sets the value of the email property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmail(String value) { - this.email = value; - } - - /** - * Gets the value of the companyname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyname() { - return companyname; - } - - /** - * Sets the value of the companyname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyname(String value) { - this.companyname = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the contactname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactname() { - return contactname; - } - - /** - * Sets the value of the contactname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactname(String value) { - this.contactname = value; - } - - /** - * Gets the value of the contactemail property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactemail() { - return contactemail; - } - - /** - * Sets the value of the contactemail property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactemail(String value) { - this.contactemail = value; - } - - /** - * Gets the value of the telephone property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephone() { - return telephone; - } - - /** - * Sets the value of the telephone property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephone(String value) { - this.telephone = value; - } - - /** - * Gets the value of the fax property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFax() { - return fax; - } - - /** - * Sets the value of the fax property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFax(String value) { - this.fax = value; - } - - /** - * Gets the value of the clientcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClientcode() { - return clientcode; - } - - /** - * Sets the value of the clientcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClientcode(String value) { - this.clientcode = value; - } - - /** - * Gets the value of the comments property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getComments() { - return comments; - } - - /** - * Sets the value of the comments property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setComments(String value) { - this.comments = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCreateV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCreateV2ResponseType.java deleted file mode 100644 index 2b9bf56..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCreateV2ResponseType.java +++ /dev/null @@ -1,114 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userCreateV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userCreateV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="nickname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userCreateV2ResponseType", propOrder = { - -}) -public class UserCreateV2ResponseType { - - protected int id; - @XmlElement(required = true) - protected String nickname; - @XmlElement(required = true) - protected String password; - - /** - * Gets the value of the id property. - * - */ - public int getId() { - return id; - } - - /** - * Sets the value of the id property. - * - */ - public void setId(int value) { - this.id = value; - } - - /** - * Gets the value of the nickname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNickname() { - return nickname; - } - - /** - * Sets the value of the nickname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNickname(String value) { - this.nickname = value; - } - - /** - * Gets the value of the password property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPassword() { - return password; - } - - /** - * Sets the value of the password property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPassword(String value) { - this.password = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCredentials.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCredentials.java deleted file mode 100644 index 2e36fc0..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserCredentials.java +++ /dev/null @@ -1,114 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for UserCredentials complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UserCredentials">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="username" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserCredentials", propOrder = { - -}) -public class UserCredentials { - - protected int id; - @XmlElement(required = true) - protected String username; - @XmlElement(required = true) - protected String password; - - /** - * Gets the value of the id property. - * - */ - public int getId() { - return id; - } - - /** - * Sets the value of the id property. - * - */ - public void setId(int value) { - this.id = value; - } - - /** - * Gets the value of the username property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUsername() { - return username; - } - - /** - * Sets the value of the username property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUsername(String value) { - this.username = value; - } - - /** - * Gets the value of the password property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPassword() { - return password; - } - - /** - * Sets the value of the password property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPassword(String value) { - this.password = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditBalanceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditBalanceRequestType.java deleted file mode 100644 index 87c23c8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditBalanceRequestType.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userEditBalanceRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userEditBalanceRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="balance" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userEditBalanceRequestType", propOrder = { - -}) -public class UserEditBalanceRequestType { - - protected int userid; - protected float balance; - - /** - * Gets the value of the userid property. - * - */ - public int getUserid() { - return userid; - } - - /** - * Sets the value of the userid property. - * - */ - public void setUserid(int value) { - this.userid = value; - } - - /** - * Gets the value of the balance property. - * - */ - public float getBalance() { - return balance; - } - - /** - * Sets the value of the balance property. - * - */ - public void setBalance(float value) { - this.balance = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditBalanceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditBalanceResponseType.java deleted file mode 100644 index a56f6fc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditBalanceResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userEditBalanceResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userEditBalanceResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userEditBalanceResponseType") -public class UserEditBalanceResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditExtendedV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditExtendedV2RequestType.java deleted file mode 100644 index 6e35754..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditExtendedV2RequestType.java +++ /dev/null @@ -1,420 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userEditExtendedV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userEditExtendedV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="nickname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="companyname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contactemail" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="clientcode" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="comments" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="accountid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="balancethreshold" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="notificationrecipients" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userEditExtendedV2RequestType", propOrder = { - -}) -public class UserEditExtendedV2RequestType { - - protected int userid; - @XmlElement(required = true) - protected String nickname; - @XmlElement(required = true) - protected String password; - @XmlElement(required = true) - protected String email; - @XmlElement(required = true) - protected String companyname; - @XmlElement(required = true) - protected String address; - @XmlElement(required = true) - protected String contactname; - @XmlElement(required = true) - protected String contactemail; - @XmlElement(required = true) - protected String telephone; - @XmlElement(required = true) - protected String fax; - @XmlElement(required = true) - protected String clientcode; - @XmlElement(required = true) - protected String comments; - protected int accountid; - protected float balancethreshold; - @XmlElement(required = true) - protected String notificationrecipients; - - /** - * Gets the value of the userid property. - * - */ - public int getUserid() { - return userid; - } - - /** - * Sets the value of the userid property. - * - */ - public void setUserid(int value) { - this.userid = value; - } - - /** - * Gets the value of the nickname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNickname() { - return nickname; - } - - /** - * Sets the value of the nickname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNickname(String value) { - this.nickname = value; - } - - /** - * Gets the value of the password property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPassword() { - return password; - } - - /** - * Sets the value of the password property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPassword(String value) { - this.password = value; - } - - /** - * Gets the value of the email property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmail() { - return email; - } - - /** - * Sets the value of the email property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmail(String value) { - this.email = value; - } - - /** - * Gets the value of the companyname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyname() { - return companyname; - } - - /** - * Sets the value of the companyname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyname(String value) { - this.companyname = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the contactname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactname() { - return contactname; - } - - /** - * Sets the value of the contactname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactname(String value) { - this.contactname = value; - } - - /** - * Gets the value of the contactemail property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactemail() { - return contactemail; - } - - /** - * Sets the value of the contactemail property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactemail(String value) { - this.contactemail = value; - } - - /** - * Gets the value of the telephone property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephone() { - return telephone; - } - - /** - * Sets the value of the telephone property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephone(String value) { - this.telephone = value; - } - - /** - * Gets the value of the fax property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFax() { - return fax; - } - - /** - * Sets the value of the fax property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFax(String value) { - this.fax = value; - } - - /** - * Gets the value of the clientcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClientcode() { - return clientcode; - } - - /** - * Sets the value of the clientcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClientcode(String value) { - this.clientcode = value; - } - - /** - * Gets the value of the comments property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getComments() { - return comments; - } - - /** - * Sets the value of the comments property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setComments(String value) { - this.comments = value; - } - - /** - * Gets the value of the accountid property. - * - */ - public int getAccountid() { - return accountid; - } - - /** - * Sets the value of the accountid property. - * - */ - public void setAccountid(int value) { - this.accountid = value; - } - - /** - * Gets the value of the balancethreshold property. - * - */ - public float getBalancethreshold() { - return balancethreshold; - } - - /** - * Sets the value of the balancethreshold property. - * - */ - public void setBalancethreshold(float value) { - this.balancethreshold = value; - } - - /** - * Gets the value of the notificationrecipients property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNotificationrecipients() { - return notificationrecipients; - } - - /** - * Sets the value of the notificationrecipients property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNotificationrecipients(String value) { - this.notificationrecipients = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditExtendedV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditExtendedV2ResponseType.java deleted file mode 100644 index aaf7fce..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditExtendedV2ResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userEditExtendedV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userEditExtendedV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userEditExtendedV2ResponseType") -public class UserEditExtendedV2ResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditHostRestrictionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditHostRestrictionsRequestType.java deleted file mode 100644 index 46908d8..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditHostRestrictionsRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userEditHostRestrictionsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userEditHostRestrictionsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="restrictions" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userEditHostRestrictionsRequestType", propOrder = { - -}) -public class UserEditHostRestrictionsRequestType { - - protected int userid; - @XmlElement(required = true) - protected String restrictions; - - /** - * Gets the value of the userid property. - * - */ - public int getUserid() { - return userid; - } - - /** - * Sets the value of the userid property. - * - */ - public void setUserid(int value) { - this.userid = value; - } - - /** - * Gets the value of the restrictions property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRestrictions() { - return restrictions; - } - - /** - * Sets the value of the restrictions property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRestrictions(String value) { - this.restrictions = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditHostRestrictionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditHostRestrictionsResponseType.java deleted file mode 100644 index fb8e716..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditHostRestrictionsResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userEditHostRestrictionsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userEditHostRestrictionsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userEditHostRestrictionsResponseType") -public class UserEditHostRestrictionsResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditV2RequestType.java deleted file mode 100644 index 4479b7f..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditV2RequestType.java +++ /dev/null @@ -1,249 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userEditV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userEditV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contactemail" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userEditV2RequestType", propOrder = { - -}) -public class UserEditV2RequestType { - - protected int userid; - @XmlElement(required = true) - protected String email; - @XmlElement(required = true) - protected String address; - @XmlElement(required = true) - protected String contactname; - @XmlElement(required = true) - protected String contactemail; - @XmlElement(required = true) - protected String telephone; - @XmlElement(required = true) - protected String fax; - @XmlElement(required = true) - protected String password; - - /** - * Gets the value of the userid property. - * - */ - public int getUserid() { - return userid; - } - - /** - * Sets the value of the userid property. - * - */ - public void setUserid(int value) { - this.userid = value; - } - - /** - * Gets the value of the email property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmail() { - return email; - } - - /** - * Sets the value of the email property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmail(String value) { - this.email = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the contactname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactname() { - return contactname; - } - - /** - * Sets the value of the contactname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactname(String value) { - this.contactname = value; - } - - /** - * Gets the value of the contactemail property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactemail() { - return contactemail; - } - - /** - * Sets the value of the contactemail property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactemail(String value) { - this.contactemail = value; - } - - /** - * Gets the value of the telephone property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephone() { - return telephone; - } - - /** - * Sets the value of the telephone property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephone(String value) { - this.telephone = value; - } - - /** - * Gets the value of the fax property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFax() { - return fax; - } - - /** - * Sets the value of the fax property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFax(String value) { - this.fax = value; - } - - /** - * Gets the value of the password property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPassword() { - return password; - } - - /** - * Sets the value of the password property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPassword(String value) { - this.password = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditV2ResponseType.java deleted file mode 100644 index 539721c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserEditV2ResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userEditV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userEditV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userEditV2ResponseType") -public class UserEditV2ResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroup.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroup.java deleted file mode 100644 index c5acc19..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroup.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for UserGroup complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UserGroup">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserGroup", propOrder = { - -}) -public class UserGroup { - - protected int id; - @XmlElement(required = true) - protected String name; - - /** - * Gets the value of the id property. - * - */ - public int getId() { - return id; - } - - /** - * Sets the value of the id property. - * - */ - public void setId(int value) { - this.id = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroupArray.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroupArray.java deleted file mode 100644 index a43edf5..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroupArray.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for UserGroupArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UserGroupArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}UserGroup" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserGroupArray", propOrder = { - "item" -}) -public class UserGroupArray { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UserGroup } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroupPagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroupPagedResult.java deleted file mode 100644 index 818b3e7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserGroupPagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for UserGroupPagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UserGroupPagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}UserGroupArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserGroupPagedResult", propOrder = { - -}) -public class UserGroupPagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected UserGroupArray results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link UserGroupArray } - * - */ - public UserGroupArray getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link UserGroupArray } - * - */ - public void setResults(UserGroupArray value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserListAssignableGroupsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserListAssignableGroupsRequestType.java deleted file mode 100644 index 9180cbd..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserListAssignableGroupsRequestType.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userListAssignableGroupsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userListAssignableGroupsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userListAssignableGroupsRequestType", propOrder = { - -}) -public class UserListAssignableGroupsRequestType { - - protected int userid; - protected int page; - - /** - * Gets the value of the userid property. - * - */ - public int getUserid() { - return userid; - } - - /** - * Sets the value of the userid property. - * - */ - public void setUserid(int value) { - this.userid = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserListAssignableGroupsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserListAssignableGroupsResponseType.java deleted file mode 100644 index e6c5d03..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserListAssignableGroupsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userListAssignableGroupsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userListAssignableGroupsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}UserGroupPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userListAssignableGroupsResponseType", propOrder = { - -}) -public class UserListAssignableGroupsResponseType { - - @XmlElement(required = true) - protected UserGroupPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link UserGroupPagedResult } - * - */ - public UserGroupPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link UserGroupPagedResult } - * - */ - public void setOut(UserGroupPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserNotifyRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserNotifyRequestType.java deleted file mode 100644 index ffe8839..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserNotifyRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userNotifyRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userNotifyRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userNotifyRequestType", propOrder = { - -}) -public class UserNotifyRequestType { - - protected int userid; - @XmlElement(required = true) - protected String password; - - /** - * Gets the value of the userid property. - * - */ - public int getUserid() { - return userid; - } - - /** - * Sets the value of the userid property. - * - */ - public void setUserid(int value) { - this.userid = value; - } - - /** - * Gets the value of the password property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPassword() { - return password; - } - - /** - * Sets the value of the password property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPassword(String value) { - this.password = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserNotifyResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserNotifyResponseType.java deleted file mode 100644 index 31a6817..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserNotifyResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userNotifyResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userNotifyResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userNotifyResponseType", propOrder = { - -}) -public class UserNotifyResponseType { - - @XmlElement(required = true) - protected String out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOut(String value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveGroupRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveGroupRequestType.java deleted file mode 100644 index 2705832..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveGroupRequestType.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userRemoveGroupRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userRemoveGroupRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="usergroupid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userRemoveGroupRequestType", propOrder = { - -}) -public class UserRemoveGroupRequestType { - - protected int userid; - protected int usergroupid; - - /** - * Gets the value of the userid property. - * - */ - public int getUserid() { - return userid; - } - - /** - * Sets the value of the userid property. - * - */ - public void setUserid(int value) { - this.userid = value; - } - - /** - * Gets the value of the usergroupid property. - * - */ - public int getUsergroupid() { - return usergroupid; - } - - /** - * Sets the value of the usergroupid property. - * - */ - public void setUsergroupid(int value) { - this.usergroupid = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveGroupResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveGroupResponseType.java deleted file mode 100644 index acb4355..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveGroupResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userRemoveGroupResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userRemoveGroupResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userRemoveGroupResponseType") -public class UserRemoveGroupResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveRequestType.java deleted file mode 100644 index 5ca5fd3..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveRequestType.java +++ /dev/null @@ -1,59 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userRemoveRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userRemoveRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userRemoveRequestType", propOrder = { - -}) -public class UserRemoveRequestType { - - protected int userid; - - /** - * Gets the value of the userid property. - * - */ - public int getUserid() { - return userid; - } - - /** - * Sets the value of the userid property. - * - */ - public void setUserid(int value) { - this.userid = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveResponseType.java deleted file mode 100644 index 65e082b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserRemoveResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userRemoveResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userRemoveResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userRemoveResponseType") -public class UserRemoveResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionListRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionListRequestType.java deleted file mode 100644 index 55193c1..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionListRequestType.java +++ /dev/null @@ -1,77 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userSessionListRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userSessionListRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="page" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userSessionListRequestType", propOrder = { - -}) -public class UserSessionListRequestType { - - protected int userid; - protected int page; - - /** - * Gets the value of the userid property. - * - */ - public int getUserid() { - return userid; - } - - /** - * Sets the value of the userid property. - * - */ - public void setUserid(int value) { - this.userid = value; - } - - /** - * Gets the value of the page property. - * - */ - public int getPage() { - return page; - } - - /** - * Sets the value of the page property. - * - */ - public void setPage(int value) { - this.page = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionListResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionListResponseType.java deleted file mode 100644 index 3416523..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionListResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userSessionListResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userSessionListResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}SessionPagedResult"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userSessionListResponseType", propOrder = { - -}) -public class UserSessionListResponseType { - - @XmlElement(required = true) - protected SessionPagedResult out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link SessionPagedResult } - * - */ - public SessionPagedResult getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link SessionPagedResult } - * - */ - public void setOut(SessionPagedResult value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionRemoveRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionRemoveRequestType.java deleted file mode 100644 index 21d3197..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionRemoveRequestType.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userSessionRemoveRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userSessionRemoveRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="reactid" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userSessionRemoveRequestType", propOrder = { - -}) -public class UserSessionRemoveRequestType { - - protected int userid; - @XmlElement(required = true) - protected String reactid; - - /** - * Gets the value of the userid property. - * - */ - public int getUserid() { - return userid; - } - - /** - * Sets the value of the userid property. - * - */ - public void setUserid(int value) { - this.userid = value; - } - - /** - * Gets the value of the reactid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getReactid() { - return reactid; - } - - /** - * Sets the value of the reactid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setReactid(String value) { - this.reactid = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionRemoveResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionRemoveResponseType.java deleted file mode 100644 index 4b17c12..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserSessionRemoveResponseType.java +++ /dev/null @@ -1,37 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userSessionRemoveResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userSessionRemoveResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userSessionRemoveResponseType") -public class UserSessionRemoveResponseType { - - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2.java deleted file mode 100644 index 0f87114..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2.java +++ /dev/null @@ -1,534 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for UserV2 complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UserV2">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="nickname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="balance" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="balancethreshold" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *         <element name="notificationrecipients" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="companyname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contactname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="contactemail" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="telephone" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="fax" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="clientcode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="comments" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="creationtime" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="lastmodified" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="account_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="account_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="usergroups" type="{http://www.webservices.nl/soap/}UserGroupArray"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserV2", propOrder = { - -}) -public class UserV2 { - - protected int id; - @XmlElement(required = true) - protected String nickname; - @XmlElement(required = true) - protected String email; - protected float balance; - protected float balancethreshold; - @XmlElement(required = true) - protected String notificationrecipients; - @XmlElement(required = true) - protected String companyname; - @XmlElement(required = true) - protected String address; - @XmlElement(required = true) - protected String contactname; - @XmlElement(required = true) - protected String contactemail; - @XmlElement(required = true) - protected String telephone; - @XmlElement(required = true) - protected String fax; - protected String clientcode; - protected String comments; - protected String creationtime; - protected String lastmodified; - protected boolean active; - @XmlElement(name = "account_id") - protected int accountId; - @XmlElement(name = "account_name", required = true) - protected String accountName; - @XmlElement(required = true) - protected UserGroupArray usergroups; - - /** - * Gets the value of the id property. - * - */ - public int getId() { - return id; - } - - /** - * Sets the value of the id property. - * - */ - public void setId(int value) { - this.id = value; - } - - /** - * Gets the value of the nickname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNickname() { - return nickname; - } - - /** - * Sets the value of the nickname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNickname(String value) { - this.nickname = value; - } - - /** - * Gets the value of the email property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmail() { - return email; - } - - /** - * Sets the value of the email property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmail(String value) { - this.email = value; - } - - /** - * Gets the value of the balance property. - * - */ - public float getBalance() { - return balance; - } - - /** - * Sets the value of the balance property. - * - */ - public void setBalance(float value) { - this.balance = value; - } - - /** - * Gets the value of the balancethreshold property. - * - */ - public float getBalancethreshold() { - return balancethreshold; - } - - /** - * Sets the value of the balancethreshold property. - * - */ - public void setBalancethreshold(float value) { - this.balancethreshold = value; - } - - /** - * Gets the value of the notificationrecipients property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNotificationrecipients() { - return notificationrecipients; - } - - /** - * Sets the value of the notificationrecipients property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNotificationrecipients(String value) { - this.notificationrecipients = value; - } - - /** - * Gets the value of the companyname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyname() { - return companyname; - } - - /** - * Sets the value of the companyname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyname(String value) { - this.companyname = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - - /** - * Gets the value of the contactname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactname() { - return contactname; - } - - /** - * Sets the value of the contactname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactname(String value) { - this.contactname = value; - } - - /** - * Gets the value of the contactemail property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactemail() { - return contactemail; - } - - /** - * Sets the value of the contactemail property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactemail(String value) { - this.contactemail = value; - } - - /** - * Gets the value of the telephone property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTelephone() { - return telephone; - } - - /** - * Sets the value of the telephone property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTelephone(String value) { - this.telephone = value; - } - - /** - * Gets the value of the fax property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFax() { - return fax; - } - - /** - * Sets the value of the fax property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFax(String value) { - this.fax = value; - } - - /** - * Gets the value of the clientcode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getClientcode() { - return clientcode; - } - - /** - * Sets the value of the clientcode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setClientcode(String value) { - this.clientcode = value; - } - - /** - * Gets the value of the comments property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getComments() { - return comments; - } - - /** - * Sets the value of the comments property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setComments(String value) { - this.comments = value; - } - - /** - * Gets the value of the creationtime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreationtime() { - return creationtime; - } - - /** - * Sets the value of the creationtime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreationtime(String value) { - this.creationtime = value; - } - - /** - * Gets the value of the lastmodified property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLastmodified() { - return lastmodified; - } - - /** - * Sets the value of the lastmodified property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLastmodified(String value) { - this.lastmodified = value; - } - - /** - * Gets the value of the active property. - * - */ - public boolean isActive() { - return active; - } - - /** - * Sets the value of the active property. - * - */ - public void setActive(boolean value) { - this.active = value; - } - - /** - * Gets the value of the accountId property. - * - */ - public int getAccountId() { - return accountId; - } - - /** - * Sets the value of the accountId property. - * - */ - public void setAccountId(int value) { - this.accountId = value; - } - - /** - * Gets the value of the accountName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAccountName() { - return accountName; - } - - /** - * Sets the value of the accountName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAccountName(String value) { - this.accountName = value; - } - - /** - * Gets the value of the usergroups property. - * - * @return - * possible object is - * {@link UserGroupArray } - * - */ - public UserGroupArray getUsergroups() { - return usergroups; - } - - /** - * Sets the value of the usergroups property. - * - * @param value - * allowed object is - * {@link UserGroupArray } - * - */ - public void setUsergroups(UserGroupArray value) { - this.usergroups = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2Array.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2Array.java deleted file mode 100644 index f7204f6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2Array.java +++ /dev/null @@ -1,74 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for UserV2Array complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UserV2Array">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.webservices.nl/soap/}UserV2" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserV2Array", propOrder = { - "item" -}) -public class UserV2Array { - - protected List item; - - /** - * Gets the value of the item property. - * - *

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UserV2 } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2PagedResult.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2PagedResult.java deleted file mode 100644 index 13459de..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserV2PagedResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for UserV2PagedResult complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UserV2PagedResult">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="paging" type="{http://www.webservices.nl/soap/}ResultInfo"/>
- *         <element name="results" type="{http://www.webservices.nl/soap/}UserV2Array"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserV2PagedResult", propOrder = { - -}) -public class UserV2PagedResult { - - @XmlElement(required = true) - protected ResultInfo paging; - @XmlElement(required = true) - protected UserV2Array results; - - /** - * Gets the value of the paging property. - * - * @return - * possible object is - * {@link ResultInfo } - * - */ - public ResultInfo getPaging() { - return paging; - } - - /** - * Sets the value of the paging property. - * - * @param value - * allowed object is - * {@link ResultInfo } - * - */ - public void setPaging(ResultInfo value) { - this.paging = value; - } - - /** - * Gets the value of the results property. - * - * @return - * possible object is - * {@link UserV2Array } - * - */ - public UserV2Array getResults() { - return results; - } - - /** - * Sets the value of the results property. - * - * @param value - * allowed object is - * {@link UserV2Array } - * - */ - public void setResults(UserV2Array value) { - this.results = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewBalanceRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewBalanceRequestType.java deleted file mode 100644 index ebe418b..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewBalanceRequestType.java +++ /dev/null @@ -1,59 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userViewBalanceRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userViewBalanceRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userViewBalanceRequestType", propOrder = { - -}) -public class UserViewBalanceRequestType { - - protected int userid; - - /** - * Gets the value of the userid property. - * - */ - public int getUserid() { - return userid; - } - - /** - * Sets the value of the userid property. - * - */ - public void setUserid(int value) { - this.userid = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewBalanceResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewBalanceResponseType.java deleted file mode 100644 index e82bd8d..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewBalanceResponseType.java +++ /dev/null @@ -1,59 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userViewBalanceResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userViewBalanceResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="balance" type="{http://www.w3.org/2001/XMLSchema}float"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userViewBalanceResponseType", propOrder = { - -}) -public class UserViewBalanceResponseType { - - protected float balance; - - /** - * Gets the value of the balance property. - * - */ - public float getBalance() { - return balance; - } - - /** - * Sets the value of the balance property. - * - */ - public void setBalance(float value) { - this.balance = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewHostRestrictionsRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewHostRestrictionsRequestType.java deleted file mode 100644 index 48e9453..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewHostRestrictionsRequestType.java +++ /dev/null @@ -1,59 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userViewHostRestrictionsRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userViewHostRestrictionsRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userViewHostRestrictionsRequestType", propOrder = { - -}) -public class UserViewHostRestrictionsRequestType { - - protected int userid; - - /** - * Gets the value of the userid property. - * - */ - public int getUserid() { - return userid; - } - - /** - * Sets the value of the userid property. - * - */ - public void setUserid(int value) { - this.userid = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewHostRestrictionsResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewHostRestrictionsResponseType.java deleted file mode 100644 index 7ea3cbe..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewHostRestrictionsResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userViewHostRestrictionsResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userViewHostRestrictionsResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userViewHostRestrictionsResponseType", propOrder = { - -}) -public class UserViewHostRestrictionsResponseType { - - @XmlElement(required = true) - protected String out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOut(String value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewV2RequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewV2RequestType.java deleted file mode 100644 index 5df3621..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewV2RequestType.java +++ /dev/null @@ -1,59 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userViewV2RequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userViewV2RequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="userid" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userViewV2RequestType", propOrder = { - -}) -public class UserViewV2RequestType { - - protected int userid; - - /** - * Gets the value of the userid property. - * - */ - public int getUserid() { - return userid; - } - - /** - * Sets the value of the userid property. - * - */ - public void setUserid(int value) { - this.userid = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewV2ResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewV2ResponseType.java deleted file mode 100644 index 3134741..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/UserViewV2ResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for userViewV2ResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="userViewV2ResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}UserV2"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "userViewV2ResponseType", propOrder = { - -}) -public class UserViewV2ResponseType { - - @XmlElement(required = true) - protected UserV2 out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link UserV2 } - * - */ - public UserV2 getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link UserV2 } - * - */ - public void setOut(UserV2 value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatProxyViesCheckVatResponse.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatProxyViesCheckVatResponse.java deleted file mode 100644 index 7d8bee6..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatProxyViesCheckVatResponse.java +++ /dev/null @@ -1,196 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for VatProxyViesCheckVatResponse complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="VatProxyViesCheckVatResponse">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="request_date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- *         <element name="valid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VatProxyViesCheckVatResponse", propOrder = { - -}) -public class VatProxyViesCheckVatResponse { - - @XmlElement(name = "country_code", required = true) - protected String countryCode; - @XmlElement(name = "vat_number", required = true) - protected String vatNumber; - @XmlElement(name = "request_date") - @XmlSchemaType(name = "date") - protected XMLGregorianCalendar requestDate; - protected boolean valid; - protected String name; - protected String address; - - /** - * Gets the value of the countryCode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCountryCode() { - return countryCode; - } - - /** - * Sets the value of the countryCode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCountryCode(String value) { - this.countryCode = value; - } - - /** - * Gets the value of the vatNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVatNumber() { - return vatNumber; - } - - /** - * Sets the value of the vatNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVatNumber(String value) { - this.vatNumber = value; - } - - /** - * Gets the value of the requestDate property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getRequestDate() { - return requestDate; - } - - /** - * Sets the value of the requestDate property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setRequestDate(XMLGregorianCalendar value) { - this.requestDate = value; - } - - /** - * Gets the value of the valid property. - * - */ - public boolean isValid() { - return valid; - } - - /** - * Sets the value of the valid property. - * - */ - public void setValid(boolean value) { - this.valid = value; - } - - /** - * Gets the value of the name property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddress() { - return address; - } - - /** - * Sets the value of the address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddress(String value) { - this.address = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidateRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidateRequestType.java deleted file mode 100644 index bcd7a1a..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidateRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for vatValidateRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="vatValidateRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "vatValidateRequestType", propOrder = { - -}) -public class VatValidateRequestType { - - @XmlElement(name = "vat_number", required = true) - protected String vatNumber; - - /** - * Gets the value of the vatNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVatNumber() { - return vatNumber; - } - - /** - * Sets the value of the vatNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVatNumber(String value) { - this.vatNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidateResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidateResponseType.java deleted file mode 100644 index e355724..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidateResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for vatValidateResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="vatValidateResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}VatValidation"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "vatValidateResponseType", propOrder = { - -}) -public class VatValidateResponseType { - - @XmlElement(required = true) - protected VatValidation out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link VatValidation } - * - */ - public VatValidation getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link VatValidation } - * - */ - public void setOut(VatValidation value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidation.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidation.java deleted file mode 100644 index c14accc..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatValidation.java +++ /dev/null @@ -1,87 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for VatValidation complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="VatValidation">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="valid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VatValidation", propOrder = { - -}) -public class VatValidation { - - @XmlElement(name = "vat_number", required = true) - protected String vatNumber; - protected boolean valid; - - /** - * Gets the value of the vatNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVatNumber() { - return vatNumber; - } - - /** - * Sets the value of the vatNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVatNumber(String value) { - this.vatNumber = value; - } - - /** - * Gets the value of the valid property. - * - */ - public boolean isValid() { - return valid; - } - - /** - * Sets the value of the valid property. - * - */ - public void setValid(boolean value) { - this.valid = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatViesProxyCheckVatRequestType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatViesProxyCheckVatRequestType.java deleted file mode 100644 index f82d541..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatViesProxyCheckVatRequestType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for vatViesProxyCheckVatRequestType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="vatViesProxyCheckVatRequestType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="vat_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "vatViesProxyCheckVatRequestType", propOrder = { - -}) -public class VatViesProxyCheckVatRequestType { - - @XmlElement(name = "vat_number", required = true) - protected String vatNumber; - - /** - * Gets the value of the vatNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVatNumber() { - return vatNumber; - } - - /** - * Sets the value of the vatNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVatNumber(String value) { - this.vatNumber = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatViesProxyCheckVatResponseType.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatViesProxyCheckVatResponseType.java deleted file mode 100644 index 3e04a6c..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VatViesProxyCheckVatResponseType.java +++ /dev/null @@ -1,69 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for vatViesProxyCheckVatResponseType complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="vatViesProxyCheckVatResponseType">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="out" type="{http://www.webservices.nl/soap/}VatProxyViesCheckVatResponse"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "vatViesProxyCheckVatResponseType", propOrder = { - -}) -public class VatViesProxyCheckVatResponseType { - - @XmlElement(required = true) - protected VatProxyViesCheckVatResponse out; - - /** - * Gets the value of the out property. - * - * @return - * possible object is - * {@link VatProxyViesCheckVatResponse } - * - */ - public VatProxyViesCheckVatResponse getOut() { - return out; - } - - /** - * Sets the value of the out property. - * - * @param value - * allowed object is - * {@link VatProxyViesCheckVatResponse } - * - */ - public void setOut(VatProxyViesCheckVatResponse value) { - this.out = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VerenigingVanEigenaren.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VerenigingVanEigenaren.java deleted file mode 100644 index 2dd8181..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/VerenigingVanEigenaren.java +++ /dev/null @@ -1,96 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - - -package org.suggs.companydatafinderlib.companyinfo.wsdl; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for VerenigingVanEigenaren complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="VerenigingVanEigenaren">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="naam" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="bestuurder_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "VerenigingVanEigenaren", propOrder = { - -}) -public class VerenigingVanEigenaren { - - @XmlElement(required = true) - protected String naam; - @XmlElement(name = "bestuurder_id") - protected String bestuurderId; - - /** - * Gets the value of the naam property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNaam() { - return naam; - } - - /** - * Sets the value of the naam property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNaam(String value) { - this.naam = value; - } - - /** - * Gets the value of the bestuurderId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBestuurderId() { - return bestuurderId; - } - - /** - * Sets the value of the bestuurderId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBestuurderId(String value) { - this.bestuurderId = value; - } - -} diff --git a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/package-info.java b/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/package-info.java deleted file mode 100644 index 73b08e7..0000000 --- a/company-data-finder-lib/src/main/java/org/suggs/companydatafinderlib/companyinfo/wsdl/package-info.java +++ /dev/null @@ -1,9 +0,0 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7-b41 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2020.01.02 at 09:16:36 AM GMT -// - -@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.webservices.nl/soap/", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package org.suggs.companydatafinderlib.companyinfo.wsdl; diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyinfoProxy.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyinfoProxy.kt deleted file mode 100644 index da4a34f..0000000 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyinfoProxy.kt +++ /dev/null @@ -1,98 +0,0 @@ -package org.suggs.companydatafinderlib.companyinfo - -import org.slf4j.LoggerFactory -import org.springframework.http.HttpEntity -import org.springframework.http.HttpHeaders -import org.springframework.http.HttpMethod -import org.springframework.http.MediaType.APPLICATION_PDF -import org.springframework.http.client.BufferingClientHttpRequestFactory -import org.springframework.http.client.SimpleClientHttpRequestFactory -import org.springframework.web.client.RestTemplate -import org.suggs.companydatafinderlib.companyinfo.domain.CompanyinfoCompanyProfile -import org.suggs.companydatafinderlib.companyinfo.domain.CompanyinfoDocumentMetadata -import org.suggs.companydatafinderlib.companyinfo.converters.CompanyinfoDocumentHttpMessageConverter -import org.suggs.companydatafinderlib.companyinfo.domain.CompanyinfoDocument -import org.suggs.companydatafinderlib.companyinfo.domain.CompanyinfoFilingHistoryList -import org.suggs.companydatafinderlib.companyinfo.interceptors.CompanyInfoAuthInterceptor -import org.suggs.companydatafinderlib.companyinfo.interceptors.RequestResponseLoggingInterceptor - -class CompanyinfoProxy(private val authUsername: String) { - - private val restTemplate = createRestTemplateWithInterceptorsForAuthentication() - private val log = LoggerFactory.getLogger(this::class.java) - - private fun createRestTemplateWithInterceptorsForAuthentication(): RestTemplate { - val factory = BufferingClientHttpRequestFactory(SimpleClientHttpRequestFactory()) - val template = RestTemplate(factory) - template.interceptors = listOf( - RequestResponseLoggingInterceptor(), - CompanyInfoAuthInterceptor(authUsername)) - template.messageConverters.add(CompanyinfoDocumentHttpMessageConverter()) - return template - } - - /** - * Retrieves company profile data for a given companies house company id - */ - fun getCompanyDataFor(companyId: String): CompanyinfoCompanyProfile { - log.debug("Retrieving company profile data for company id $companyId") - val url = "https://api.companieshouse.gov.uk/company/$companyId" - return when (val profile = restTemplate.getForObject(url, CompanyinfoCompanyProfile::class.java)) { - null -> throw IllegalStateException("Could not create company profile for company number $companyId") - else -> profile - } - } - - /** - * Retrieves company filings history by for a given category. Category types can be found at - * @see FilingHistoryList - */ - fun getCompanyFilingHistoryFor(companyId: String, category: String, itemsPerPage: Int = 1): CompanyinfoFilingHistoryList { - log.debug("Retrieving $category filing history for company number $companyId") - val url = "https://api.companieshouse.gov.uk/company/$companyId/filing-history?category=$category&items_per_page=$itemsPerPage" - return when (val filingHistory = restTemplate.getForObject(url, CompanyinfoFilingHistoryList::class.java)) { - null -> throw IllegalStateException("Could not create filing history list for company number $companyId") - else -> filingHistory - } - } - - /** - * Retrieves document metadata from a defined url. Document metadata url can be found from a @see CompaniesHouseFilingHistoryList - */ - fun getDocumentMetadataFor(documentMetadataUrl: String): CompanyinfoDocumentMetadata { - log.debug("Retrieving document metadata from url $documentMetadataUrl") - return when (val documentMetadata = restTemplate.getForObject(documentMetadataUrl, CompanyinfoDocumentMetadata::class.java)) { - null -> throw IllegalStateException("Could not build CompaniesHouseDocumentMetadata from url [$documentMetadataUrl]") - else -> documentMetadata - } - } - - /** - * Retrieves a document based on a defined url. - */ - fun getDocumentFor(documentUrl: String): CompanyinfoDocument { - log.debug("Retrieving document from url $documentUrl") - return when (val document = restTemplate.exchange(documentUrl, HttpMethod.GET, createPdfAcceptingHeaders(), CompanyinfoDocument::class.java).body) { - null -> throw java.lang.IllegalStateException("Could not retrieve document from url $documentUrl") - else -> document - } - } - - /** - * Navigates the various interfaces to find the latest filed document for a given company and criteria. - */ - fun getLatestFiledDocumentForCategory(companyId: String, category: String): CompanyinfoDocument { - val documentMetadataLink = getCompanyFilingHistoryFor(companyId, category).latestFiledItemUrl() - val documentUrl = getDocumentMetadataFor(documentMetadataLink).documentUrl() - return getDocumentFor(documentUrl) - } - - private fun createPdfAcceptingHeaders(): HttpEntity { - val headers = HttpHeaders() - headers.accept = listOf(APPLICATION_PDF) - return HttpEntity(headers) - } -} - - - diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/README.md b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/README.md deleted file mode 100644 index b25994e..0000000 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/README.md +++ /dev/null @@ -1,6 +0,0 @@ -# Companyinfo API -Use this API for accessing data and documents from the Netherlands based Companyinfo website - (NL registered companies). -See the tests for details on how to use the api and simplified api access. -API access is directly to Companies House. -Details for connection etc can be found at the [Companyinfo API](https://testclient.webservices.nl/advanced) pages. diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/converters/CompanyinfoDocumentHttpMessageConverter.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/converters/CompanyinfoDocumentHttpMessageConverter.kt deleted file mode 100644 index 0795119..0000000 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/converters/CompanyinfoDocumentHttpMessageConverter.kt +++ /dev/null @@ -1,41 +0,0 @@ -package org.suggs.companydatafinderlib.companyinfo.converters - -import org.springframework.http.HttpInputMessage -import org.springframework.http.HttpOutputMessage -import org.springframework.http.MediaType -import org.springframework.http.converter.AbstractHttpMessageConverter -import org.springframework.util.StreamUtils -import org.suggs.companydatafinderlib.companyinfo.domain.CompanyinfoDocument -import java.io.ByteArrayOutputStream - - -/** - * HttpMessageConverter specifically for PDF documents. - */ -class CompanyinfoDocumentHttpMessageConverter : AbstractHttpMessageConverter(MediaType.APPLICATION_PDF) { - - override fun supports(clazz: Class<*>): Boolean { - return CompanyinfoDocument::class.java == clazz - } - - override fun writeInternal(document: CompanyinfoDocument, outputMessage: HttpOutputMessage) { - StreamUtils.copy(document.bytes, outputMessage.body) - } - - override fun readInternal(clazz: Class, inputMessage: HttpInputMessage): CompanyinfoDocument { - val contentLength = inputMessage.headers.contentLength.toInt() - val bos = ByteArrayOutputStream(if (contentLength >= 0) contentLength else StreamUtils.BUFFER_SIZE) - StreamUtils.copy(inputMessage.body, bos) - return CompanyinfoDocument(bos.toByteArray(), - inputMessage.headers.contentType, - inputMessage.headers.contentLength, - inputMessage.headers.eTag, - inputMessage.headers.lastModified, - inputMessage.headers.date) - } - - override fun getContentLength(document: CompanyinfoDocument, contentType: MediaType?): Long? { - return document.bytes.size.toLong() - } - -} \ No newline at end of file diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoCompanyProfile.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoCompanyProfile.kt deleted file mode 100644 index 323e684..0000000 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoCompanyProfile.kt +++ /dev/null @@ -1,27 +0,0 @@ -package org.suggs.companydatafinderlib.companyinfo.domain - -import com.fasterxml.jackson.annotation.JsonIgnoreProperties -import com.fasterxml.jackson.annotation.JsonInclude -import com.fasterxml.jackson.annotation.JsonProperty -import java.util.* - -@JsonIgnoreProperties(ignoreUnknown = true) -@JsonInclude(JsonInclude.Include.NON_EMPTY) -data class CompanyinfoCompanyProfile(@JsonProperty("company_number") val companyNumber: String, - @JsonProperty("date_of_creation") val dateOfCreation: Date, - @JsonProperty("type") val type: String, - @JsonProperty("jurisdiction") val jurisdiction: String, - @JsonProperty("company_name") val companyName: String, - @JsonProperty("registered_office_address") val registeredAddress: RegisteredAddress, - @JsonProperty("sic_codes") val sicCodes: List, - @JsonProperty("company_status") val companyStatus: String, - @JsonProperty("etag") val etag: String, - @JsonProperty("links") val links: Map) - -@JsonIgnoreProperties(ignoreUnknown = true) -@JsonInclude(JsonInclude.Include.NON_EMPTY) -data class RegisteredAddress(@JsonProperty("address_line_1") val addressLine1: String?, - @JsonProperty("address_line_2") val addressLine2: String?, - @JsonProperty("locality") val locality: String?, - @JsonProperty("postal_code") val postCode: String?, - @JsonProperty("country") val country: String?) \ No newline at end of file diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoDocument.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoDocument.kt deleted file mode 100644 index 1148310..0000000 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoDocument.kt +++ /dev/null @@ -1,29 +0,0 @@ -package org.suggs.companydatafinderlib.companyinfo.domain - -import org.slf4j.LoggerFactory -import org.springframework.http.MediaType -import java.io.File - -data class CompanyinfoDocument(val bytes: ByteArray, - val contentType: MediaType?, - val contentLength: Long, - val eTag: String?, - val lastModified: Long, - val retrievedDate: Long) { - - private val log = LoggerFactory.getLogger(this::class.java) - - fun writeTo(fileLocation: String) { - File(fileLocation).writeBytes(bytes) - log.debug("Written ${bytes.size} to $fileLocation") - } - - override fun toString(): String { - return "CompanyinfoDocument(bytes=${bytes.size}, " + - "contentType=$contentType, " + - "contentLength=$contentLength, " + - "eTag=$eTag, " + - "lastModified=$lastModified, " + - "retrievedDate=$retrievedDate)" - } -} diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoDocumentMetadata.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoDocumentMetadata.kt deleted file mode 100644 index 154fa74..0000000 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoDocumentMetadata.kt +++ /dev/null @@ -1,19 +0,0 @@ -package org.suggs.companydatafinderlib.companyinfo.domain - -import com.fasterxml.jackson.annotation.JsonProperty -import java.util.* - -data class CompanyinfoDocumentMetadata(@JsonProperty("company_number") val companyNumber: String, - @JsonProperty("barcode") val barcode: String, - @JsonProperty("created_at") val createdAt: Date, - @JsonProperty("category") val category: String, - @JsonProperty("etag") val etag: String, - @JsonProperty("links") val links: Map) { - - fun documentUrl(): String { - return when (val documentLink = links["document"]) { - null -> throw IllegalStateException("Could not find document link in document metadata") - else -> documentLink - } - } -} diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoFilingHistoryList.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoFilingHistoryList.kt deleted file mode 100644 index debaae8..0000000 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyinfoFilingHistoryList.kt +++ /dev/null @@ -1,34 +0,0 @@ -package org.suggs.companydatafinderlib.companyinfo.domain - -import com.fasterxml.jackson.annotation.JsonIgnoreProperties -import com.fasterxml.jackson.annotation.JsonInclude -import com.fasterxml.jackson.annotation.JsonProperty -import java.util.* - -/** - * @see FilingHistoryList - * for details of available fields for mapping - */ -@JsonIgnoreProperties(ignoreUnknown = true) -@JsonInclude(JsonInclude.Include.NON_EMPTY) -data class CompanyinfoFilingHistoryList(@JsonProperty("start_index") val startIndex: Int, - @JsonProperty("filing_history_status") val filingHistoryStatus: String, - @JsonProperty("items_per_page") val itemsPerPage: Int, - @JsonProperty("items") val items: List) { - - fun latestFiledItemUrl(): String { - return when (val url = items.maxBy { it.date }!!.links["document_metadata"]) { - null -> throw IllegalStateException("Could not extract document metadata link from filing history list") - else -> url - } - } -} - -/** - * @see FilingHistoryItem - * for details of available fields for mapping - */ -@JsonIgnoreProperties(ignoreUnknown = true) -@JsonInclude(JsonInclude.Include.NON_EMPTY) -data class FilingHistoryItem(@JsonProperty("date") val date: Date, - @JsonProperty("links") val links: Map) \ No newline at end of file diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/interceptors/CompanyInfoAuthInterceptor.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/interceptors/CompanyInfoAuthInterceptor.kt deleted file mode 100644 index d49ab5b..0000000 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/interceptors/CompanyInfoAuthInterceptor.kt +++ /dev/null @@ -1,16 +0,0 @@ -package org.suggs.companydatafinderlib.companyinfo.interceptors - -import org.springframework.http.HttpRequest -import org.springframework.http.client.ClientHttpRequestExecution -import org.springframework.http.client.ClientHttpRequestInterceptor -import org.springframework.http.client.ClientHttpResponse -import java.util.* - -class CompanyInfoAuthInterceptor(private val username: String) : ClientHttpRequestInterceptor { - override fun intercept(request: HttpRequest, body: ByteArray, execution: ClientHttpRequestExecution): ClientHttpResponse { - val auth = "$username:" - val encodedAuth = Base64.getEncoder().encodeToString(auth.toByteArray()) - request.headers.add("Authorization", "Basic $encodedAuth") - return execution.execute(request, body) - } -} \ No newline at end of file diff --git a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/interceptors/RequestResponseLoggingInterceptor.kt b/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/interceptors/RequestResponseLoggingInterceptor.kt deleted file mode 100644 index 20d524a..0000000 --- a/company-data-finder-lib/src/main/kotlin/org/suggs/companydatafinderlib/companyinfo/interceptors/RequestResponseLoggingInterceptor.kt +++ /dev/null @@ -1,52 +0,0 @@ -package org.suggs.companydatafinderlib.companyinfo.interceptors - -import org.slf4j.LoggerFactory -import org.springframework.http.HttpRequest -import org.springframework.http.MediaType -import org.springframework.http.client.ClientHttpRequestExecution -import org.springframework.http.client.ClientHttpRequestInterceptor -import org.springframework.http.client.ClientHttpResponse -import org.springframework.util.StreamUtils -import java.io.IOException -import java.nio.charset.Charset - -class RequestResponseLoggingInterceptor : ClientHttpRequestInterceptor { - - private val log = LoggerFactory.getLogger(this::class.java) - - override fun intercept(request: HttpRequest, body: ByteArray, execution: ClientHttpRequestExecution): ClientHttpResponse { - logRequest(request, body) - val response = execution.execute(request, body) - logResponse(response) - return response - } - - @Throws(IOException::class) - private fun logRequest(request: HttpRequest, body: ByteArray) { - if (log.isDebugEnabled) { - log.debug("===========================request begin================================================") - log.debug("URI : ${request.uri}") - log.debug("Method : ${request.method}") - log.debug("Headers : ${request.headers}") - log.debug("Request body: ${String(body, Charset.forName("UTF-8"))}") - log.debug("==========================request end================================================") - } - } - - @Throws(IOException::class) - private fun logResponse(response: ClientHttpResponse) { - if (log.isDebugEnabled) { - log.debug("============================response begin==========================================") - log.debug("Status code : ${response.statusCode}") - log.debug("Status text : ${response.statusText}") - log.debug("Headers : ${response.headers}") - if (response.headers.contentType!!.compareTo(MediaType.APPLICATION_JSON) == 0) { - log.debug("Response body: ${StreamUtils.copyToString(response.body, Charset.defaultCharset())}") - } else { - log.debug("Response body: {huge blob of data}") - } - log.debug("=======================response end=================================================") - } - } - -} \ No newline at end of file diff --git a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyInfoTest.kt b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyInfoTest.kt deleted file mode 100644 index cc1c523..0000000 --- a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/CompanyInfoTest.kt +++ /dev/null @@ -1,65 +0,0 @@ -package org.suggs.companydatafinderlib.companyinfo - -import org.assertj.core.api.Assertions.assertThat -import org.junit.jupiter.api.DisplayName -import org.junit.jupiter.api.Test -import org.slf4j.LoggerFactory -import org.suggs.companydatafinderlib.companyinfo.CompanyinfoProxy -import org.yaml.snakeyaml.Yaml - -@DisplayName("Companyinfo Proxy allows us to") -class CompanyInfoTest { - - private val log = LoggerFactory.getLogger(this::class.java) - private val config = loadConfig() - private var companyinfo = CompanyinfoProxy(config.get("auth")) - - @Test fun `retrieve data using ID`() { - val companyData = companyinfo.getCompanyDataFor("02868209") - log.debug("Companies House Data: $companyData") - assertThat(companyData).isNotNull - } - - @Test fun `retrieve incorporation filing history using companies house ID`() { - val filingHistory = companyinfo.getCompanyFilingHistoryFor("02868209", "incorporation") - log.debug("Filing History: $filingHistory") - assertThat(filingHistory).isNotNull - } - - @Test fun `retrieves address filing history using companies house ID`() { - val filingHistory = companyinfo.getCompanyFilingHistoryFor("02868209", "address") - log.debug("Filing History: $filingHistory") - assertThat(filingHistory).isNotNull - } - - @Test fun `read document metadata from the last filed incorporation information to retrieve the document`() { - val document = companyinfo.getLatestFiledDocumentForCategory("02868209", "incorporation") - log.debug(document.toString()) - //document.writeTo("/tmp/02868209-incorporation.pdf") - } - - @Test fun `read document metadata from the last filed address information to retrieve the document`() { - val document = companyinfo.getLatestFiledDocumentForCategory("02868209", "address") - log.debug(document.toString()) - //document.writeTo("/tmp/02868209-address.pdf") - } - - @Test fun `read a document from companies house`() { - val document = companyinfo.getDocumentFor("https://document-api.companieshouse.gov.uk/document/lakwoqyUeDVLMpj-Xg6XbD0C318iqLfKE-W0pG3npgY/content") - assertThat(document.contentLength).isGreaterThan(0) - log.debug(document.toString()) - } - - private fun loadConfig(): AppConfig { - return AppConfig(Yaml().load(this.javaClass.classLoader.getResourceAsStream("application.yml"))) - } -} - -data class AppConfig(val configData: Map) { - fun get(key: String): String { - return when (val data = configData[key]) { - null -> throw IllegalStateException("Could not locate configuration data for key: $key") - else -> data - } - } -} \ No newline at end of file diff --git a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyInfoCompanyDataParseTest.kt b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyInfoCompanyDataParseTest.kt deleted file mode 100644 index c3ba7ab..0000000 --- a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companyinfo/domain/CompanyInfoCompanyDataParseTest.kt +++ /dev/null @@ -1,73 +0,0 @@ -package org.suggs.companydatafinderlib.companyinfo.domain - -import com.fasterxml.jackson.databind.ObjectMapper -import com.fasterxml.jackson.module.kotlin.KotlinModule -import com.fasterxml.jackson.module.kotlin.readValue -import org.assertj.core.api.Assertions.assertThat -import org.junit.jupiter.api.Assertions.assertAll -import org.junit.jupiter.api.DisplayName -import org.junit.jupiter.api.Test -import org.junit.jupiter.api.function.Executable -import org.slf4j.LoggerFactory -import org.suggs.companydatafinderlib.companyinfo.domain.CompanyinfoCompanyProfile - -@DisplayName("Companyinfo Response contains company data directly from KVK") -class CompanyInfoCompanyDataParseTest { - - private val JSON = """{ - |"company_number":"00000006", - |"date_of_creation":"1862-10-25", - |"last_full_members_list_date":"1986-07-02", - |"type":"private-unlimited-nsc", - |"jurisdiction":"england-wales", - |"company_name":"MARINE AND GENERAL MUTUAL LIFE ASSURANCE SOCIETY", - |"registered_office_address":{ - |"postal_code":"EC4N 6AF", - |"address_line_2":"78 Cannon Street", - |"country":"England", - |"address_line_1":"Cms Cameron Mckenna Llp Cannon Place", - |"locality":"London" - |}, - |"accounts":{ - |"accounting_reference_date":{ - |"month":"12", - |"day":"31" - |}, - |"last_accounts":{ - |"made_up_to":"2014-12-31", - |"type":"full", - |"period_end_on":"2014-12-31" - |} - |}, - |"sic_codes":["65110"], - |"undeliverable_registered_office_address":false, - |"has_insolvency_history":false, - |"company_status":"dissolved", - |"etag":"0f74ad6c3c366269ac39899e0939851b2ebd15e3", - |"has_charges":true, - |"links":{ - |"self":"/company/00000006", - |"filing_history":"/company/00000006/filing-history", - |"officers":"/company/00000006/officers", - |"charges":"/company/00000006/charges" - |}, - |"registered_office_is_in_dispute":false, - |"date_of_cessation":"2018-07-10", - |"can_file":false}""".trimMargin() - - private val mapper = ObjectMapper().registerModule(KotlinModule()) - private val log = LoggerFactory.getLogger(this::class.java) - - @Test - fun `can create companies house response from JSON`() { - val response = mapper.readValue(JSON) - log.debug(response.toString()) - assertAll( - Executable { assertThat(response.companyName).isNotNull() }, - Executable { assertThat(response.companyNumber).isEqualTo("00000006") }, - Executable { assertThat(response.dateOfCreation).isNotNull() }, - Executable { assertThat(response.registeredAddress).isNotNull() } - - ) - } -} \ No newline at end of file diff --git a/company-data-finder-lib/src/test/resources/soap_doclit.wsdl.xml b/company-data-finder-lib/src/test/resources/soap_doclit.wsdl.xml deleted file mode 100644 index 0cfd727..0000000 --- a/company-data-finder-lib/src/test/resources/soap_doclit.wsdl.xml +++ /dev/null @@ -1,17812 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Retrieve a token with which a new account may be created via the Webview - - - - - Get the id of an account created with a token retrieved using accountGetCreationToken - - - - - Retrieve a token that can be used order account balance via the <Webview Interface> - - - - - Removes all sessions of a user, or just a single session if reactid is not 0 - - - - - Lists all the current sessions of a user - - - - - Returns the users balance - - - - - Change the user's balance - - - - - Returns the accounts balance - - - - - View users details - - - - - Edit a users details, the users current password is required - - - - - Edit details only an admin may change, such as a users nickname and password.notificationrecipients must have one of the following values: accountcontact, user, - accountcontact_and_user. Otherwise it will default to accountcontact. - - - - - Create and notify a new user - - - - - Create a WebservicesNl test user - - - - - Change a users password - - - - - Deletes a user - - - - - Activates the user and sends user login information to users email address - - - - - Returns a list of all groups the user may assign to other users - - - - - Add a user to a group - - - - - Remove a user from a group - - - - - View the account details - - - - - Edit an accounts details - - - - - Returns a list of all users in the account - - - - - Returns a list of users that are in the account and match the search phrase - - - - - Sets host restrictions for the account - - - - - Gets host restrictions for the account - - - - - Edit host restrictions for this user - - - - - View host restrictions for this user - - - - - Get an address by providing its complete postcode (including house number). This is a reeks level function. - - - - - Get an address by providing the address, postcode, city. This is a reeks level function. - - - - - Look for an address by province, municipality, city, street, house number and house number addition. Returns a list of matches. This is a reeks level function. - - - - - Look for an address by province, municipality, city, street, house number and house number addition. Returns a list of matches. This is a reeks level function. - - - - - Look for an perceel address by simply providing a phrase such as "Somestreet 123". Returns a list of matches. This is a perceel level function (more accurate than reeks level). - - - - - Look for an perceel address by province, municipality, city, street, house number and house number addition. Returns a list of matches This is a perceel level function (more accurate than reeks level). - - - - - Returns a list of all neighborhood codes in the province - - - - - Returns a list of municipalities which are in the specified province - - - - - Returns a list of all provinces - - - - - Returns a list of provinces which match the given name - - - - - Returns a list of municipalities which match the given name - - - - - Returns a list of cities which are in the specified municipality - - - - - Returns a list of all neighborhood codes in the municipality - - - - - Search for all cities that match a phrase. Cities are also matched if input matches a commonly used alternative city name. Exact matches on the official name are listed first, the rest of the results is sorted alphabetically. - - - - - Returns a list of all neighborhood codes in the city - - - - - This is a deprecated function. Please use "addressPerceelFullParameterSearchV2" instead. - - - - - This is a deprecated function. Please use "addressPerceelFullParameterSearchV2" or "addressPerceelPhraseSearch" instead. - - - - - This function is deprecated and will not be available in the future. Use "addressReeksAddressSearch" or "addressReeksFullParameterSearch" instead. - - - - - This function is about to be removed! - - - - - This function is about to be removed! - - - - - Get the telephone area codes belonging to the neighborhood - - - - - Get the neighborhood codes of the neighborhoods that have the specified area code - - - - - Get the telephone areacodes related to a given postcode - - - - - Logs the user in using username and password, returns a reactid for authentication in further requests - - - - - Logs the user out, destroys the session associated with the reactid - - - - - Retrieve data on a belgian business establishment - - - - - Retrieve a Bovag member using a Bovag identifier. - - - - - Retrieve a Bovag member using a DutchBusiness identifiers. - - - - - Retrieve the establishment number (Dutch 'Vestigingsnummer') for a business. - - - - - Look up a BIK ('Bedrijfsindeling kamers van koophandel') code, which is the type of code returned in a <BusinessDossier> as the Primary or Secondary activity code. The description for all levels of the BIK code is returned, even if the full length BIK code does not exist. Descriptions of the section associated with the BIK code is also returned. - - - - - Look up a SBI ('Standaard Bedrijfs Indeling 2008') code. - - - - - - - - - - - - - Look up a business Dossier. The subdossierno parameter can be left empty to get all Sub Dossiers of one Dossier. - - - - - Look up an extended business Dossier. - - - - - Look up a business using its dossier number. - - - - - Look up a business using its postcode address. nbcode is required, other parameters may be left empty. - - - - - Lookup a business using its address. Specified parameters are compared against both establishment and correspondence addresses to find a match. Parameters may be left empty. - - - - - Lookup a business using its name. - - - - - Look up a business by a number of parameters. At least a tradename, neighborhood code, street, city or telephone number is required. Lookups based on postbus address are possible by specifying streetname "Postbus" and specifying the postbus number in the houseno parameter. Specified address parameters are compared against both establishment and correspondence addresses to find a match. - - - - - Look up a business by a number of parameters. At least a tradename, neighborhood code, street, city or telephone number is required. Lookups based on postbus address are possible by specifying streetname "Postbus" and specifying the postbus number in the houseno parameter. Specified address parameters are compared against both establishment and correspondence addresses to find a match. - - - - - Look up a business using its location and SBI code. - - - - - Look up a business using its location and SBI code. - - - - - Returns the SBI codes and their descriptions for a dossier. - - - - - - - - - Retrieve dossier numbers for all dossiers changed since the given date. - - - - - Returns a list of all dossiers that have been updated since they were last retrieved by the user - - - - - Add a dossier to the list of dossiers for which the user (the user whose credentials are used to make the call) wants to receive updates - - - - - Remove a dossier from the list of dossiers for which the user (the user whose credentials are used to make the call) wants to receive updates. - - - - - Look up a business by a number of parameters. At least a tradename, neighborhood code, street, city or telephone number is required. Lookups based on postbus address are possible by specifying streetname "Postbus" and specifying the postbus number in the houseno parameter. Specified address parameters are compared against both establishment and correspondence addresses to find a match. - - - - - Check the validity of a license plate and check code ('meldcode') combination - - - - - Retrieves data of a car with a Dutch license plate, including a list of types matched if more information is available. - - - - - Find a specific Dutch car's data, including BPM and power and types - - - - - Find a specific Dutch car's data, including European Approval Mark - - - - - Retrieves data of a car with a Dutch license plate, including catalog price. - - - - - Find a specific Dutch car's data, including information about extra options - - - - - Check the validity of a license plate and check code ('meldcode') combination - - - - - - - - - - - - - Retrieve options of a specific model of a car - - - - - - - - - - - - - - - - - - - - - Retrieve photos of a specific model of a car - - - - - Retrieve Autodisk price information - - - - - Find a specific Dutch car's data - - - - - Retrieves data of a car with a Dutch license plate, including a list of types matched if more information is available. - - - - - Find a specific Dutch car's data, including BPM and power - - - - - Retrieve a list of person entities based on search criteria - - - - - Retrieve a person entity based on a provided id - - - - - Retrieve a list of business entities based on search criteria - - - - - Retrieve a business based on a provided id - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Look up a business and return basic information about the business. - - - - - Retrieve a DNBBusinessReference with name, address and D&B business key for a specific business. - - - - - Retrieve basic WorldBase business information - - - - - Retrieve detailed WorldBase business information - - - - - Detailed WorldBase information, including information on a business' family tree - - - - - Do a D&B Quick Check on a business. - - - - - Do a D&B Business Verification on a business. - - - - - Retrieve D&B Enterprise Management for a business. - - - - - Look up a business and return basic information about the business. - - - - - Given two neighborhood codes, the drive distance in meters between the neighborhoodsis returned, for both the fastest and the shortest route - - - - - Given two neighborhood codes, the drivetime in minutes between the neighborhoods is returned, for both the fastest and the shortest route - - - - - Validate and complete an address based on postcode and house number. - - - - - Retrieve data on a business establishment - - - - - Retrieve data on a business establishment - - - - - Retrieve data on a business establishment - - - - - Retrieve SBI Information on a company - - - - - Retrieve data on a business establishment - - - - - Retrieve position data on a business establishment - - - - - Retrieve legal entity data on a business establishment - - - - - Retrieve the organization tree of a company - - - - - Determine if a Company has non-marketing indicator - - - - - Search for business establishments using a known identifier - - - - - Search for an overview of Corporate Group Relationships aka 'concern relaties' for specified dossier number - - - - - Get all known details of a Corporate Group Relationships (concernrelaties) for specified dossier number - - - - - Find business establishments using a variety of parameters - - - - - Find business establishments using a variety of parameters - - - - - Search for business establishments using a known identifier - - - - - Find business establishments based on postcode and house number - - - - - Search for businesses matching all of the given criteria. - - - - - Simple search for businesses matching all of the given criteria. - - - - - Look up a SBI ('Standaard Bedrijfs Indeling 2008') code. - - - - - Get an annual financial statement for a dutch-business - - - - - Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) - - - - - Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) - - - - - Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) - - - - - Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) - - - - - Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) - - - - - Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) - - - - - Retrieve a list of extract document references - - - - - Retrieve a list of extract document references - - - - - Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) - - - - - Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) - - - - - Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) - - - - - Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) - - - - - Get a list of logged updates for a specific business dossier - - - - - Returns a list of all dossiers (that have been added to the users follow list) thathave been updated since they were last retrieved by the user (the user whose credentials are used to make the call). - - - - - Retrieve information on the last change to a company. - - - - - Retrieve dossier numbers for all companies that changed since the given date. - - - - - Add a company to the follow list for which the user (the user whose credentials are used to make the call) wants to receive updates. - - - - - Remove a company from the follow list for which the user (the user whose credentials are used to make the call) wants to receive updates. - - - - - Get a complete overview of all the companies that are on the follow list for the user (the user whose credentials are used to make the call). - - - - - Get a paged result of all news items found. - - - - - Starts a UBO investigation for given dossierNumber and establishmentNumber - - - - - Checks the status of a UBO investigation - - - - - Pickup the result of a UBO investigation - - - - - Return the costs of a finished UBO investigation - - - - - Labels the natural persons found in an UBO Investigation according to a set of rules. - - - - - Retrieve Lei information for a business using the Chamber of Commerce number - - - - - Find business establishments using a variety of parameters - - - - - Retrieves the positions, current and historical, of a functionary. - - - - - Get the information of a dutch vehicle - - - - - Get the price information of a dutch vehicle - - - - - Get all the (previous) owners of a dutch vehicle - - - - - Get all the current market value of a vehicle - - - - - Get the information of a dutch vehicle - - - - - Provides a credit score for a person identified by a set of parameters. - - - - - Returns the coordinates in the RD system of the neighborhood, given the neighborhood code - - - - - Returns the coordinates of the given postcode in the RD system. - - - - - Returns the coordinates in degrees of latitude/longitude of the neighborhood, given the neighborhood code - - - - - Returns the coordinates of the given postcode in degrees of latitude/longitude. - - - - - Returns the coordinates of the given address in degrees of latitude/longitude. Address may be specified by postcode + house number or by city + street + house number. - - - - - Returns the coordinates of the given address in the RD system. Address may be specified by postcode + house number or by city + street + house number. - - - - - Returns the postcode of the address closest to the specified latitude/longitude coordinate in the Netherlands. - - - - - Returns the address closest to the specified latitude/longitude coordinate in the Netherlands. The returned x, y, latitude and logitude values are the coordinates of the retrieved address. Distance is the distance between these coordinates and the input coordinate in meters - - - - - Returns the postcode of the address closest to the specified Rijksdriehoeksmeting coordinate in the Netherlands. - - - - - Returns the address closest to the specified Rijksdriehoeksmeting coordinate in the Netherlands. The returned x, y, latitude and logitude values are the coordinates of the retrieved address. Distance is the distance between these coordinates and the input coordinate in meters - - - - - Returns the coordinates of the given postcode in degrees of latitude/longitude. Most countries are supported in the function. Accuracy of the result may vary between countries. - - - - - Returns the coordinates of the given address in degrees of latitude/longitude. Most countries are supported in the function. Accuracy of the result may vary between countries. Since the street and city have to contain the complete name and since this method acts with international data, we recommend to use <geoLocationInternationalPostcodeCoordinatesLatLon> if you know the postcode, since working with postcodes is less error prone. - - - - - Returns the coordinates of the given address in degrees of latitude/longitude. Most countries are supported in the function. Accuracy of the result may vary between countries. - - - - - Returns the address closest to the specified latitude/longitude coordinate. The returned latitude and logitude values make up the coordinate of the retrieved address. Distance is the distance between this coordinate and the input coordinate in meters - - - - - Returns the estimated distance in meters (in a direct line) between the two neighborhoods, given the neighborhood codes - - - - - Returns the estimated distance in meters (in a direct line) between the two postcodes. - - - - - Returns the distance in meters (in a direct line) between two latitude/longitude coordinates - - - - - Returns the neighborhood codes list sorted in order of increasing distance from a given neighborhood. - - - - - Returns the neighborhood codes list sorted in order of increasing distance from a given neighborhood, within a given radius (in meters). - - - - - Returns a list of postcodes sorted in order of increasing distance from a given postcode, within a given radius (in meters). If the radius is larger than 1500 meters, the result will be based on neighborhood codes - - - - - Returns a given postcode list sorted in order of increasingdistance from a given postcode. - - - - - Convert a latitude/longitude coordinate to a RD ('Rijksdriehoeksmeting') coordinate. - - - - - Convert a RD ('Rijksdriehoeksmeting') coordinate to a latitude/longitude coordinate. - - - - - Retrieve a Graydon credit report of a company registered in the Netherlands. - - - - - Search international Graydon credit report databases for a company using an identifier. - - - - - Search international Graydon credit report database for a company by name. - - - - - Search international Graydon credit report database for a company using postcode. - - - - - Retrieve a Graydon pd ratings and credit flag of a company registered in the Netherlands. - - - - - Retrieve various Graydon credit ratings of a company registered in the Netherlands. - - - - - Retrieve the BTW (VAT) number of a company registered in the Netherlands. - - - - - Retrieve top-parent, parent and sibling companies of a company registered in the Netherlands. - - - - - Retrieve company management credit scores of a company registered in the Netherlands. - - - - - Fetch a insolvency case from a given publication. - - - - - Search for insolvency publication for a business - - - - - Search for insolvency publication for a person - - - - - Returns up to 20 suggestions of valid addresses using the partial or full address data given. Returns more data than internationalAddressSearch. - - - - - Returns up to 20 suggestions of valid addresses using the partial or full address data given. Returns more data than internationalAddressSearch. - - - - - Find a 'Eigendomsbericht' by parcel details. Returns the result in a file of the specified format. If the input matches more than one parcel, a list of the parcels found is returned instead. - - - - - Find a 'Eigendomsbericht' by postcode and house number. Returns the result in a file of the specified format. If the input matches more than one parcel, a list of the parcels found is returned instead. - - - - - Find a 'Eigendomsbericht' by parcel details. Returns the result as a <BerichtObjectResultaatV2>. In addition to the structured result, a file of the specified format is returned. If the input matches more than one parcel, a list of the parcels found is returned instead. - - - - - Find a 'Eigendomsbericht' by postcode and house number. Returns the result as a <BerichtObjectResultaatV2>. In addition to the structured result, a file of the specified format is returned. If the input matches more than one parcel, a list of the parcels found is returned instead. - - - - - Returns a koopsommenoverzicht (in English: real estate transactions overview), which is a list of all transactions of the past five years in the given postcode range. - - - - - Returns a 'Uittreksel Kadastrale Kaart' (a map showing the boundaries of a parcel and buildings on that parcel) in the specified format. - - - - - Returns a 'Uittreksel Kadastrale Kaart' (a map showing the boundaries of a parcel and buildings on that parcel) in the specified format. - - - - - Find a 'Hypothecair bericht' by postcode and house number. If the input matches more than one parcel, a list of the parcels found is returned instead. - - - - - Find a 'Hypothecair bericht' by parcel details. - - - - - Find a 'brondocument', a document which is the basis for an ascription. - - - - - - - - - - - - - Returns the coordinates of the given address in both the RD system and the latitude/longitude system. The lat/lon coordinates are derived from the RD coordinates.The address may be specified by giving the postcode, house number & house number addition or by giving the cityname, streetname, house number & house number addition. - - - - - Returns a 'Kadata WMS De Kadastrale Kaart' map in the specified format. - - - - - Returns a 'Kadata WMS De Kadastrale Kaart' map in the specified format. - - - - - This function is deprecated and will not be available in the future. Use "kadasterUittrekselKadastraleKaartPerceelV2" instead. - - - - - This function is deprecated and will not be available in the future. Use "kadasterUittrekselKadastraleKaartPostcodeV2" instead. - - - - - Find a 'Hypothecair bericht' by postcode and house number. If the input matches more than one parcel, a list of the parcels found is returned instead. - - - - - Find a 'Hypothecair bericht' by parcel details. - - - - - Find a 'Eigendomsbericht' by parcel details. Returns the result as a <BerichtObjectResultaat>. In addition to the structured result, a file of the specified format is returned. If the input matches more than one parcel, a list of the parcels found is returned instead. - - - - - Find a 'Eigendomsbericht' by postcode and house number. Returns the result as a <BerichtObjectResultaat>. In addition to the structured result, a file of the specified format is returned. If the input matches more than one parcel, a list of the parcels found is returned instead. - - - - - Returns a 'Uittreksel Kadastrale Kaart' (a map showing the boundaries of a parcel and buildings on that parcel) in the specified format. - - - - - Returns a 'Uittreksel Kadastrale Kaart' (a map showing the boundaries of a parcel and buildings on that parcel) in the specified format. - - - - - Returns a 'Kadata WMS De Kadastrale Kaart' map in the specified format. - - - - - Returns a 'Kadata WMS De Kadastrale Kaart' map in the specified format. - - - - - Find a 'Hypothecair bericht' by postcode and house number. If the input matches more than one parcel, a list of the parcels found is returned instead. - - - - - Find a 'Hypothecair bericht' by parcel details. - - - - - Returns a koopsommenoverzicht (in English: real estate transactions overview), which is a list of all transactions of the past five years in the given postcode range. - - - - - Fetch a "KadastraalBerichtObject" using an address - - - - - Fetch a "KadastraalBerichtObject" using a designation for the parcel - - - - - Fetch a "KadastraalBerichtObject" using its identifier - - - - - Fetch a "HypothecairBerichtObject" using an address - - - - - Fetch a "HypothecairBerichtObject" using a designation for the parcel - - - - - Fetch a "HypothecairBerichtObject" using its identifier - - - - - Fetch an "UittrekselKadastraleKaart" using an address - - - - - Fetch an "UittrekselKadastraleKaart" using a designation for the parcel - - - - - Fetch an "UittrekselKadastraleKaart" using its identifier - - - - - Fetch a list of "Koopsommen" using an address - - - - - Fetch a "KadasterV2BronDocumentResponse" - - - - - Retrieve data on a business establishment - - - - - Search for business establishments using a known identifier - - - - - Find business establishments using a variety of parameters - - - - - Find business establishments based on postcode and house number - - - - - Search for businesses matching all of the given criteria. - - - - - Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) - - - - - Retrieve information on the last change of a business establishment - - - - - Retrieve all dossiers changed since the given date. - - - - - Returns a list of all dossiers that have been updated since they were last retrieved by the user - - - - - Add a dossier to the list of dossiers for which the user (the user whose credentials are used to make the call) wants to receive updates - - - - - Remove a dossier from the list of dossiers for which the user (the user whose credentials are used to make the call) wants to receive updates. - - - - - Returns a map in JPG or PNG format showing the location of the given postcode - - - - - Returns a map showing the location of the given coordinate (centerlat, centerlon). extra_latlon is an array of other locations to be shown. format can be 'jpg' or 'png' (default). The width and height parameters can be [1 - 2048]. Scale in meters per pixel [0.298 - 156412] - - - - - Returns a map showing the location of the given Rijksdriehoeksmeting coordinate (centerx, centery). extra_xy is an array of other locations to be shown. format can be 'jpg' or 'png' (default). The width and height parameters can be [1-2048]. Scale in meters per pixel [0.298 - 156412] - - - - - Returns a map showing the location of the given coordinate (latitude, longitude) - - - - - Fetch a list of all Webservices.nl endpoints (interfaces). Provide interface parameter [optional] for specific binding - - - - - Returns a list of methods for provided webservice (Endpoint) - - - - - Returns a detailed overview of the requested method - - - - - Returns a value estimate for the real estate at the specified address - - - - - Determines the creditworthiness of a person, address and postcode area. - The creditworthiness is expressed as a number between 0 and 11. - A credit score of 0 indicates that there is no information available for the given search. - A score between 1 and 11 indicates the creditworthiness, where a higher score means less creditworthiness, - thus higher risk. - - - - - Retrieve information about a persons creditworthiness based on his/her business ownerships and insolvency registrations. - - - - - Get description and image for a route between two addresses - - - - - Summary information about a route calculated between two addresses - - - - - Detailed information about a route calculated between two addresses - - - - - Returns a description of the fastest route between two postcodes. For every part of the route the drivetime in seconds and drivedistance in meters are given as well. If the english argument is true the description will be in english, otherwise it will be in dutch. - - - - - Returns a description of the shortest route between two postcodes. For every part of the route the drivetime in seconds and drivedistance in meters are given as well. If the english argument is true the description will be in english, otherwise it will be in dutch. - - - - - Returns a description of the route between two dutch postcodes, including the RD coordinates along the route. For every part of the route the drivetime in seconds and drivedistance in meters are given as well. The routetype can be shortest or fastest. By default the fastest route will be calculated. If the english argument is true the description will be in english, otherwise it will be in dutch. - - - - - Returns information (drivetime in seconds and drivedistance in meters) of the route between two postcodes. The routetype can be shortest or fastest. By default the fastest route will be calculated. - - - - - Returns a description of the route between two coordinates in the RD (Rijksdriehoeksmeting) coordinate system. For every part of the route the drivetime in seconds and drivedistance in meters are given as well. The description is available in dutch and english, depending on the english parameter toggle. The fastest or shortest route can be calculated depending on theroutetype parameter. - - - - - Returns the route distance and drive time between two coordinates in the RD (Rijksdriehoeksmeting) coordinate system. The fastest or shorted route can be calculated depending on the routetypeparameter. - - - - - Returns a description of the route between two coordinates in the RD (Rijksdriehoeksmeting) coordinate system, including the RD coordinates along the route. For every part of the route the drivetime in seconds and drivedistance in meters are given as well. The fastest or shortest route can be calculated depending on the routetype parameter. The description is available in dutch and english, depending on the english parameter toggle. - - - - - Summary information about a route calculated between two dutch-addresses - - - - - Detailed information about a route calculated between two dutch-addresses - - - - - Returns a description of the route between two latitude/longitude coordinates in Europe. For every part of the route the drivetime and drivedistance are given as well. The description is available in several languages depending on the language parameter. The fastest or shortest route is be calculated depending on the routetype parameter. - - - - - Returns the route distance and drive time for the route between two latitude/longitude coordinates in Europe. The fastest or shortest route can be calculated depending on the routetype parameter. - - - - - Returns a description of the route between two latitude/longitude coordinates in Europe, including the latitude/longitude coordinates along the route. For every part of the route the drivetime in seconds and drivedistance in meters are given as well. The routetype can be shortest or fastest. By default information on the fastest route will be returned. The description is available in several languages depending on the language parameter. - - - - - Returns a map showing the route between two latitude/longitude coordinates in Europe. - - - - - Convert a bank account number, bank code and country code to an IBAN number - - - - - Validate format of an International Bank Account Number (IBAN) - - - - - Validate and display values of IBAN values - - - - - Verify IBAN-name combinations - - - - - Convert a local Basic Bank Account Number (BBAN) number to its International Bank Account Number (IBAN) counterpart. - - - - - Check if a VAT number is valid - - - - - Check if a VAT number is valid - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file From ad978e0e58eddd4c012282fcb9b2e74c229703f4 Mon Sep 17 00:00:00 2001 From: harrydb Date: Mon, 27 Apr 2020 15:48:49 +0100 Subject: [PATCH 10/10] Removed stubs for Companyinfo --- .travis.yml | 2 +- company-data-finder-app/build.gradle | 24 +++++++++++++++++++ company-data-finder-lib/build.gradle | 19 +++++++++++++++ .../companieshouse/CompaniesHouseTest.kt | 1 + 4 files changed, 45 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d400f0c..d2a8934 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: java jdk: - - openjdk8 + - oraclejdk11 before_install: - chmod +x gradlew - chmod +x gradle/wrapper/gradle-wrapper.jar diff --git a/company-data-finder-app/build.gradle b/company-data-finder-app/build.gradle index ce067d7..54bdc66 100644 --- a/company-data-finder-app/build.gradle +++ b/company-data-finder-app/build.gradle @@ -1,4 +1,5 @@ apply plugin: 'org.springframework.boot' +apply plugin: 'kotlin' bootJar { archiveBaseName = 'company-data-finder-app' @@ -15,4 +16,27 @@ dependencies { testImplementation libs.test.restAssured runtime project(':company-data-finder-lib') + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" +} +buildscript { + ext.kotlin_version = '1.3.72' + repositories { + mavenCentral() + } + dependencies { + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} +repositories { + mavenCentral() +} +compileKotlin { + kotlinOptions { + jvmTarget = "1.8" + } +} +compileTestKotlin { + kotlinOptions { + jvmTarget = "1.8" + } } \ No newline at end of file diff --git a/company-data-finder-lib/build.gradle b/company-data-finder-lib/build.gradle index cf5c082..01f0fad 100644 --- a/company-data-finder-lib/build.gradle +++ b/company-data-finder-lib/build.gradle @@ -1,5 +1,24 @@ +plugins { + id 'org.jetbrains.kotlin.jvm' +} jar { archiveBaseName = 'company-data-finder-lib' version = '0.0.1' } +repositories { + mavenCentral() +} +dependencies { + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" +} +compileKotlin { + kotlinOptions { + jvmTarget = "1.8" + } +} +compileTestKotlin { + kotlinOptions { + jvmTarget = "1.8" + } +} diff --git a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companieshouse/CompaniesHouseTest.kt b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companieshouse/CompaniesHouseTest.kt index 3c79633..ccb2996 100644 --- a/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companieshouse/CompaniesHouseTest.kt +++ b/company-data-finder-lib/src/test/kotlin/org/suggs/companydatafinderlib/companieshouse/CompaniesHouseTest.kt @@ -6,6 +6,7 @@ import org.junit.jupiter.api.Test import org.slf4j.LoggerFactory import org.yaml.snakeyaml.Yaml + @DisplayName("Companies House Proxy allows us to") class CompaniesHouseTest {